From dabaa3d1e1530ae665b2b6ba3729efd8e378de97 Mon Sep 17 00:00:00 2001 From: Mike Kalange Date: Fri, 16 Aug 2024 12:21:46 -0700 Subject: [PATCH] Add minimum allowed AppVersion to deployed config --- src/index.tsx | 1 + src/schema.gql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 18e6d3d..aa46e38 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -122,6 +122,7 @@ export type DeployedConfigGql = { devMode: Scalars["Boolean"]["output"]; environment: Scalars["String"]["output"]; firebase: Scalars["Boolean"]["output"]; + minimumAllowedAppVersion: Scalars["String"]["output"]; }; export enum DeviceTypeEnum { diff --git a/src/schema.gql b/src/schema.gql index 64a6368..ef7a826 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -156,6 +156,7 @@ type DeployedConfigGQL { firebase: Boolean! devMode: Boolean! environment: String! + minimumAllowedAppVersion: String! } type MakePercentageIntervalGQL {