Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

export the correct cookie options interface #223

Merged
merged 1 commit into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions types/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import type * as Fastify from 'fastify';
import { FastifyPluginCallback } from 'fastify';
import { SerializeOptions } from "@fastify/cookie"
import { CookieSerializeOptions } from "@fastify/cookie"

declare module 'fastify' {
interface FastifyInstance {
decryptSession<Request extends Record<string, any> = FastifyRequest>(sessionId: string, request: Request, cookieOpts: SerializeOptions, callback: Callback): void;
decryptSession<Request extends Record<string, any> = FastifyRequest>(sessionId: string, request: Request, cookieOpts: fastifySession.CookieOptions, callback: Callback): void;
decryptSession<Request extends Record<string, any> = FastifyRequest>(sessionId: string, request: Request, callback: Callback): void;
}

Expand Down Expand Up @@ -56,7 +56,7 @@ interface Signer {
}

declare namespace fastifySession {

export interface FastifySessionObject extends Fastify.Session {
sessionId: string;

Expand Down Expand Up @@ -142,7 +142,7 @@ declare namespace fastifySession {
*
* @link https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie
*/
cookie?: SerializeOptions;
cookie?: CookieOptions;

/**
* A session store.
Expand Down Expand Up @@ -174,6 +174,8 @@ declare namespace fastifySession {
cookiePrefix?: string;
}

export interface CookieOptions extends Omit<CookieSerializeOptions, 'signed'> {}

export class MemoryStore implements fastifySession.SessionStore {
constructor(map?: Map<string, Fastify.Session>);
set(
Expand Down
2 changes: 1 addition & 1 deletion types/types.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ app.register(plugin, {
app.register(plugin, {
secret,
cookie: {
secure: false
secure: 'auto'
}
});
app.register(plugin, {
Expand Down
Loading