chore: increase edge case handling

This commit is contained in:
Charlie Lamb
2026-02-02 16:52:56 +00:00
parent 80c060e218
commit c4bedbeee2
27 changed files with 1407 additions and 348 deletions

View File

@@ -7,6 +7,7 @@ export const PreviewLineItemSchema = z.object({
is_base: z.boolean().optional(),
total_quantity: z.number(),
paid_quantity: z.number(),
plan_id: z.string(),
});
export type PreviewLineItem = z.infer<typeof PreviewLineItemSchema>;