Updates
This commit is contained in:
Vendored
+12
@@ -1199,4 +1199,16 @@ export type SendOneTimeCodeEmailResponse = {
|
||||
email?: string;
|
||||
msg?: string;
|
||||
};
|
||||
export type CookieObject = {
|
||||
name: string;
|
||||
value: string;
|
||||
domain?: string;
|
||||
path?: string;
|
||||
expires?: Date;
|
||||
maxAge?: number;
|
||||
secure?: boolean;
|
||||
httpOnly?: boolean;
|
||||
sameSite?: "Strict" | "Lax" | "None";
|
||||
priority?: "Low" | "Medium" | "High";
|
||||
};
|
||||
export {};
|
||||
|
||||
@@ -1421,3 +1421,16 @@ export type SendOneTimeCodeEmailResponse = {
|
||||
email?: string;
|
||||
msg?: string;
|
||||
};
|
||||
|
||||
export type CookieObject = {
|
||||
name: string;
|
||||
value: string;
|
||||
domain?: string;
|
||||
path?: string;
|
||||
expires?: Date;
|
||||
maxAge?: number;
|
||||
secure?: boolean;
|
||||
httpOnly?: boolean;
|
||||
sameSite?: "Strict" | "Lax" | "None";
|
||||
priority?: "Low" | "Medium" | "High";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user