add minimum app version to get config call #38

Merged
colonelpanic merged 1 commits from loewy/add-operation-minimum-app-version into master 2024-08-16 16:40:40 -06:00
2 changed files with 3 additions and 0 deletions
Showing only changes of commit dd5ce77102 - Show all commits

View File

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

View File

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