15 lines
433 B
TypeScript
15 lines
433 B
TypeScript
/**
|
|
* 刷新 Token 响应
|
|
* 原始 Dart: RefreshTokenResponse (lib/data/models/auth/auth_response.dart)
|
|
*/
|
|
import { z } from "zod";
|
|
|
|
export const RefreshTokenResponseSchema = z.object({
|
|
token: z.string(),
|
|
refreshToken: z.string(),
|
|
userId: z.string(),
|
|
});
|
|
|
|
export type RefreshTokenResponseInput = z.input<typeof RefreshTokenResponseSchema>;
|
|
export type RefreshTokenResponseData = z.output<typeof RefreshTokenResponseSchema>;
|