Compare commits

...

2 Commits

Author SHA1 Message Date
abc7e9fd05 Merge pull request 'add minimum app version to get config call' (#38) from loewy/add-operation-minimum-app-version into master
Reviewed-on: #38
2024-08-16 16:40:39 -06:00
dd5ce77102 add minimum app version to get config call
All checks were successful
Tests / Tests (pull_request) Successful in 15s
2024-08-16 14:26:24 -07:00
2 changed files with 3 additions and 0 deletions

View File

@ -1608,6 +1608,7 @@ export type GetDeployedConfigQuery = {
devMode: boolean; devMode: boolean;
environment: string; environment: string;
firebase: boolean; firebase: boolean;
minimumAllowedAppVersion: string;
}; };
}; };
@ -2279,6 +2280,7 @@ export const GetDeployedConfigDocument = gql`
devMode devMode
environment environment
firebase firebase
minimumAllowedAppVersion
} }
} }
`; `;

View File

@ -4,5 +4,6 @@ query getDeployedConfig {
devMode devMode
environment environment
firebase firebase
minimumAllowedAppVersion
} }
} }