feat: add length, price, and status fields to subscription plan schema and forms

This commit is contained in:
fredy.siswanto
2025-03-10 23:00:32 +07:00
parent d3f0dac69f
commit f97c79aaa9
4 changed files with 54 additions and 7 deletions
+3
View File
@@ -8,6 +8,9 @@ const subscriptionResponseSchema = z.object({
id: z.string(),
code: z.string(),
name: z.string(),
length: z.number().optional(),
price: z.number().optional(),
status: z.number().optional(),
}),
),
})