diff --git a/src/index.tsx b/src/index.tsx index 7e1008f..cad02e6 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1654,6 +1654,7 @@ export type GetDeployedConfigQuery = { devMode: boolean; environment: string; firebase: boolean; + minimumAllowedAppVersion: string; }; }; @@ -2388,6 +2389,7 @@ export const GetDeployedConfigDocument = gql` devMode environment firebase + minimumAllowedAppVersion } } `; diff --git a/src/operations/config.gql b/src/operations/config.gql index 8027580..e825f26 100644 --- a/src/operations/config.gql +++ b/src/operations/config.gql @@ -4,5 +4,6 @@ query getDeployedConfig { devMode environment firebase + minimumAllowedAppVersion } }