We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c98238 commit 0b4b481Copy full SHA for 0b4b481
2 files changed
.changeset/quiet-doors-wave.md
@@ -0,0 +1,5 @@
1
+---
2
+'@clerk/backend': patch
3
4
+
5
+Allow `null` for `period_end` in `BillingSubscriptionItemWebhookEventJSON`
packages/backend/src/api/resources/JSON.ts
@@ -907,7 +907,7 @@ export interface BillingSubscriptionItemWebhookEventJSON extends ClerkResourceJS
907
proration_date: string;
908
plan_period: 'month' | 'annual';
909
period_start: number;
910
- period_end?: number;
+ period_end: number | null;
911
canceled_at?: number;
912
past_due_at?: number;
913
lifetime_paid: number;
0 commit comments