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:
@@ -273,6 +273,7 @@ export type DeployedConfigGql = {
|
|||||||
__typename?: "DeployedConfigGQL";
|
__typename?: "DeployedConfigGQL";
|
||||||
allowNewUsers: Scalars["Boolean"]["output"];
|
allowNewUsers: Scalars["Boolean"]["output"];
|
||||||
bannerMessages: Array<BannerGql>;
|
bannerMessages: Array<BannerGql>;
|
||||||
|
defaultAndroidRecordingFormat: StreamSegmentTypeEnum;
|
||||||
devMode: Scalars["Boolean"]["output"];
|
devMode: Scalars["Boolean"]["output"];
|
||||||
environment: Scalars["String"]["output"];
|
environment: Scalars["String"]["output"];
|
||||||
firebase: Scalars["Boolean"]["output"];
|
firebase: Scalars["Boolean"]["output"];
|
||||||
@@ -3975,6 +3976,7 @@ export type GetDeployedConfigQuery = {
|
|||||||
firebase: boolean;
|
firebase: boolean;
|
||||||
minimumAllowedAppVersion: string;
|
minimumAllowedAppVersion: string;
|
||||||
subscriptionGatingEnabled: boolean;
|
subscriptionGatingEnabled: boolean;
|
||||||
|
defaultAndroidRecordingFormat: StreamSegmentTypeEnum;
|
||||||
bannerMessages: Array<{
|
bannerMessages: Array<{
|
||||||
__typename?: "BannerGQL";
|
__typename?: "BannerGQL";
|
||||||
color: string;
|
color: string;
|
||||||
@@ -8216,6 +8218,7 @@ export const GetDeployedConfigDocument = gql`
|
|||||||
message
|
message
|
||||||
priority
|
priority
|
||||||
}
|
}
|
||||||
|
defaultAndroidRecordingFormat
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -14,5 +14,6 @@ query getDeployedConfig {
|
|||||||
message
|
message
|
||||||
priority
|
priority
|
||||||
}
|
}
|
||||||
|
defaultAndroidRecordingFormat
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -668,6 +668,7 @@ type DeployedConfigGQL {
|
|||||||
minimumAllowedAppVersion: String!
|
minimumAllowedAppVersion: String!
|
||||||
subscriptionGatingEnabled: Boolean!
|
subscriptionGatingEnabled: Boolean!
|
||||||
bannerMessages: [BannerGQL!]!
|
bannerMessages: [BannerGQL!]!
|
||||||
|
defaultAndroidRecordingFormat: StreamSegmentTypeEnum!
|
||||||
}
|
}
|
||||||
|
|
||||||
type BannerGQL {
|
type BannerGQL {
|
||||||
|
|||||||
Reference in New Issue
Block a user