add android recording format to deployed config
All checks were successful
Tests / Tests (pull_request) Successful in 9s

This commit is contained in:
2026-01-03 10:17:58 -08:00
parent 2bb4fdd08f
commit 88de1ef807
3 changed files with 5 additions and 0 deletions

View File

@@ -273,6 +273,7 @@ export type DeployedConfigGql = {
__typename?: "DeployedConfigGQL";
allowNewUsers: Scalars["Boolean"]["output"];
bannerMessages: Array<BannerGql>;
defaultAndroidRecordingFormat: StreamSegmentTypeEnum;
devMode: Scalars["Boolean"]["output"];
environment: Scalars["String"]["output"];
firebase: Scalars["Boolean"]["output"];
@@ -3975,6 +3976,7 @@ export type GetDeployedConfigQuery = {
firebase: boolean;
minimumAllowedAppVersion: string;
subscriptionGatingEnabled: boolean;
defaultAndroidRecordingFormat: StreamSegmentTypeEnum;
bannerMessages: Array<{
__typename?: "BannerGQL";
color: string;
@@ -8216,6 +8218,7 @@ export const GetDeployedConfigDocument = gql`
message
priority
}
defaultAndroidRecordingFormat
}
}
`;

View File

@@ -14,5 +14,6 @@ query getDeployedConfig {
message
priority
}
defaultAndroidRecordingFormat
}
}

View File

@@ -668,6 +668,7 @@ type DeployedConfigGQL {
minimumAllowedAppVersion: String!
subscriptionGatingEnabled: Boolean!
bannerMessages: [BannerGQL!]!
defaultAndroidRecordingFormat: StreamSegmentTypeEnum!
}
type BannerGQL {