feat(auth): mark test accounts in login requests

This commit is contained in:
2026-06-26 14:05:53 +08:00
parent 8cb60ed7e3
commit abf6d5ae88
16 changed files with 78 additions and 36 deletions
@@ -8,6 +8,7 @@ export const FacebookLoginRequestSchema = z.object({
accessToken: z.string(),
platform: z.string(),
guestId: z.string().default(""),
isTestAccount: z.boolean().default(false),
});
export type FacebookLoginRequestInput = z.input<typeof FacebookLoginRequestSchema>;