Skip to content

Commit af8afb0

Browse files
committed
feat: allowedToCreateChains in TeamResponse
1 parent ee6bd4f commit af8afb0

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

packages/service-utils/src/core/api.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ export type TeamResponse = {
5151
billingEmail: string | null;
5252
billingStatus: "noPayment" | "validPayment" | "invalidPayment" | null;
5353
growthTrialEligible: false;
54+
canCreatePublicChains: boolean | null;
5455
enabledScopes: ServiceName[];
5556
};
5657

packages/service-utils/src/mocks.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export const validTeamResponse: TeamResponse = {
4646
billingEmail: "[email protected]",
4747
billingStatus: "noPayment",
4848
growthTrialEligible: false,
49+
canCreatePublicChains: false,
4950
enabledScopes: ["storage", "rpc", "bundler"],
5051
};
5152

0 commit comments

Comments
 (0)