diff --git a/src/index.tsx b/src/index.tsx index 1e5c093..85ac0b6 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -217,6 +217,7 @@ export type DeployedConfigGql = { environment: Scalars["String"]["output"]; firebase: Scalars["Boolean"]["output"]; minimumAllowedAppVersion: Scalars["String"]["output"]; + subscriptionGatingEnabled: Scalars["Boolean"]["output"]; }; export type DoesNotOwnShotErr = { diff --git a/src/schema.gql b/src/schema.gql index d8b4eba..0d3645d 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -297,6 +297,7 @@ type DeployedConfigGQL { devMode: Boolean! environment: String! minimumAllowedAppVersion: String! + subscriptionGatingEnabled: Boolean! bannerMessages: [BannerGQL!]! }