fix: change user status type from string to number in userResponseSchema
This commit is contained in:
parent
ff51941647
commit
01f9cf06ca
@ -12,7 +12,7 @@ const userResponseSchema = z.object({
|
|||||||
subscribe_plan_id: z.string(),
|
subscribe_plan_id: z.string(),
|
||||||
start_date: z.string(),
|
start_date: z.string(),
|
||||||
end_date: z.string().nullable(),
|
end_date: z.string().nullable(),
|
||||||
status: z.string(),
|
status: z.number(),
|
||||||
auto_renew: z.boolean(),
|
auto_renew: z.boolean(),
|
||||||
subscribe_plan: z.object({
|
subscribe_plan: z.object({
|
||||||
id: z.string(),
|
id: z.string(),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user