WIP: Add subscriptionGatingEnabled prop to deployed config #196

Draft
loewy wants to merge 1 commits from loewy/add-subscription-gating-enabled into master
2 changed files with 2 additions and 0 deletions
Showing only changes of commit 77477d63db - Show all commits

View File

@ -217,6 +217,7 @@ export type DeployedConfigGql = {
environment: Scalars["String"]["output"]; environment: Scalars["String"]["output"];
firebase: Scalars["Boolean"]["output"]; firebase: Scalars["Boolean"]["output"];
minimumAllowedAppVersion: Scalars["String"]["output"]; minimumAllowedAppVersion: Scalars["String"]["output"];
subscriptionGatingEnabled: Scalars["Boolean"]["output"];
}; };
export type DoesNotOwnShotErr = { export type DoesNotOwnShotErr = {

View File

@ -297,6 +297,7 @@ type DeployedConfigGQL {
devMode: Boolean! devMode: Boolean!
environment: String! environment: String!
minimumAllowedAppVersion: String! minimumAllowedAppVersion: String!
subscriptionGatingEnabled: Boolean!
bannerMessages: [BannerGQL!]! bannerMessages: [BannerGQL!]!
} }