Merge pull request 'Add android recording format to deployed config' (#221) from loewy/add-recording-format-to-deployed-config into master

Reviewed-on: #221
This commit is contained in:
2026-01-04 00:45:37 +00:00
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 {