From 505725b10c2c02bf623ac66932cb598b1b9a0a64 Mon Sep 17 00:00:00 2001 From: George Oastler Date: Wed, 4 Dec 2024 15:17:12 +0000 Subject: [PATCH] pending checkout fields for user type (#1556) --- packages/types/src/client/user.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/types/src/client/user.ts b/packages/types/src/client/user.ts index bf3f61fd8..505ba99b6 100644 --- a/packages/types/src/client/user.ts +++ b/packages/types/src/client/user.ts @@ -54,6 +54,8 @@ export interface IUserData { stripeTierNextAt?: number; // the time the user will move to the next tier, if any stripeTierCancelAt?: number; // the time the user's subscription will be cancelled (e.g. if cancelling at end of billing period) stripeUpdatedAt?: number; // the time the user's stripe details were last updated (needed for webhook ordering) + pendingCheckoutTier?: Tier; // the pending checkout tier, if any + pendingCheckoutTierRequestQuota?: number; // the pending checkout tier request quota, if any } export interface IUserSettings {