6e51cb7d16
- Updated comments in various components, schemas, and repositories to remove references to original Dart files. - Ensured consistency in documentation while maintaining the context of the code.
16 lines
420 B
TypeScript
16 lines
420 B
TypeScript
/**
|
|
* Facebook 登录请求
|
|
*
|
|
*/
|
|
import { z } from "zod";
|
|
|
|
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>;
|
|
export type FacebookLoginRequestData = z.output<typeof FacebookLoginRequestSchema>;
|