/** * Facebook identity 绑定响应 DTO */ import { FacebookIdentityResponseSchema, } from "@/data/schemas/auth/response/facebook_identity_response"; import { createSchemaDto, type SchemaDto, } from "@/data/dto/schema_dto"; export type FacebookIdentityResponse = SchemaDto< typeof FacebookIdentityResponseSchema >; export const FacebookIdentityResponse = createSchemaDto( FacebookIdentityResponseSchema, );