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 = {
4545 slug : string ;
4646 image : string | null ;
4747 billingPlan : "free" | "starter" | "growth" | "pro" ;
48+ billingPlanVersion : number ;
4849 createdAt : Date ;
4950 updatedAt : Date | null ;
5051 billingEmail : string | null ;
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ export const validTeamResponse: TeamResponse = {
4242 createdAt : new Date ( "2024-06-01" ) ,
4343 updatedAt : new Date ( "2024-06-01" ) ,
4444 billingPlan : "free" ,
45+ billingPlanVersion : 1 ,
4546 billingEmail :
"[email protected] " , 4647 billingStatus : "noPayment" ,
4748 growthTrialEligible : false ,
You can’t perform that action at this time.
0 commit comments