add bannerMessages to getDeployedConfig operation
All checks were successful
Tests / Tests (pull_request) Successful in 7s
All checks were successful
Tests / Tests (pull_request) Successful in 7s
This commit is contained in:
parent
de7dc675a1
commit
31cf492889
@ -3269,6 +3269,15 @@ export type GetDeployedConfigQuery = {
|
||||
environment: string;
|
||||
firebase: boolean;
|
||||
minimumAllowedAppVersion: string;
|
||||
bannerMessages: Array<{
|
||||
__typename?: "BannerGQL";
|
||||
color: string;
|
||||
dismissible: boolean;
|
||||
id: number;
|
||||
kind: BannerKindEnum;
|
||||
message: string;
|
||||
priority: number;
|
||||
}>;
|
||||
};
|
||||
};
|
||||
|
||||
@ -5984,6 +5993,14 @@ export const GetDeployedConfigDocument = gql`
|
||||
environment
|
||||
firebase
|
||||
minimumAllowedAppVersion
|
||||
bannerMessages {
|
||||
color
|
||||
dismissible
|
||||
id
|
||||
kind
|
||||
message
|
||||
priority
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
@ -5,5 +5,13 @@ query getDeployedConfig {
|
||||
environment
|
||||
firebase
|
||||
minimumAllowedAppVersion
|
||||
bannerMessages {
|
||||
color
|
||||
dismissible
|
||||
id
|
||||
kind
|
||||
message
|
||||
priority
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user