File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
packages/service-utils/src Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @thirdweb-dev/service-utils " : patch
3
+ ---
4
+
5
+ add ` billingPlanVersion ` to ` TeamResponse `
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ export type TeamResponse = {
45
45
slug : string ;
46
46
image : string | null ;
47
47
billingPlan : "free" | "starter" | "growth" | "pro" ;
48
+ billingPlanVersion : number ;
48
49
createdAt : Date ;
49
50
updatedAt : Date | null ;
50
51
billingEmail : string | null ;
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ export const validTeamResponse: TeamResponse = {
42
42
createdAt : new Date ( "2024-06-01" ) ,
43
43
updatedAt : new Date ( "2024-06-01" ) ,
44
44
billingPlan : "free" ,
45
+ billingPlanVersion : 1 ,
45
46
billingEmail :
"[email protected] " ,
46
47
billingStatus : "noPayment" ,
47
48
growthTrialEligible : false ,
You can’t perform that action at this time.
0 commit comments