Compare commits
1 Commits
loewy/soci
...
loewy/soci
| Author | SHA1 | Date | |
|---|---|---|---|
| 1b46160e95 |
@@ -409,10 +409,10 @@ export type DeployedConfigGql = {
|
||||
defaultAndroidRecordingFormat: StreamSegmentTypeEnum;
|
||||
devMode: Scalars["Boolean"]["output"];
|
||||
environment: Scalars["String"]["output"];
|
||||
externalSignInProviderAvailability: Array<ExternalSignInProviderAvailability>;
|
||||
firebase: Scalars["Boolean"]["output"];
|
||||
minimumAllowedAppVersion: Scalars["String"]["output"];
|
||||
quotaEnforcementEnabled: Scalars["Boolean"]["output"];
|
||||
socialAuthProviderAvailability: Array<SocialAuthProviderAvailabilityGql>;
|
||||
storageLimitEnforcementEnabled: Scalars["Boolean"]["output"];
|
||||
subscriptionGatingEnabled: Scalars["Boolean"]["output"];
|
||||
};
|
||||
@@ -472,6 +472,25 @@ export type EnumAggregation = {
|
||||
feature: Scalars["String"]["input"];
|
||||
};
|
||||
|
||||
export enum ExternalSignInPlatform {
|
||||
Android = "ANDROID",
|
||||
Ios = "IOS",
|
||||
Web = "WEB",
|
||||
}
|
||||
|
||||
export enum ExternalSignInProvider {
|
||||
Apple = "APPLE",
|
||||
Facebook = "FACEBOOK",
|
||||
Google = "GOOGLE",
|
||||
}
|
||||
|
||||
export type ExternalSignInProviderAvailability = {
|
||||
__typename?: "ExternalSignInProviderAvailability";
|
||||
enabled: Scalars["Boolean"]["output"];
|
||||
platform: ExternalSignInPlatform;
|
||||
provider: ExternalSignInProvider;
|
||||
};
|
||||
|
||||
export type FilterInput =
|
||||
| {
|
||||
andFilters: Array<FilterInput>;
|
||||
@@ -4096,25 +4115,6 @@ export enum SimulationEventType {
|
||||
StickBall = "STICK_BALL",
|
||||
}
|
||||
|
||||
export enum SocialAuthPlatformEnum {
|
||||
Android = "ANDROID",
|
||||
Ios = "IOS",
|
||||
Web = "WEB",
|
||||
}
|
||||
|
||||
export type SocialAuthProviderAvailabilityGql = {
|
||||
__typename?: "SocialAuthProviderAvailabilityGQL";
|
||||
enabled: Scalars["Boolean"]["output"];
|
||||
platform: SocialAuthPlatformEnum;
|
||||
provider: SocialAuthProviderEnum;
|
||||
};
|
||||
|
||||
export enum SocialAuthProviderEnum {
|
||||
Apple = "APPLE",
|
||||
Facebook = "FACEBOOK",
|
||||
Google = "GOOGLE",
|
||||
}
|
||||
|
||||
export type SpinTypeBreakdownGql = {
|
||||
__typename?: "SpinTypeBreakdownGQL";
|
||||
center: Scalars["Int"]["output"];
|
||||
|
||||
@@ -361,7 +361,7 @@ type DeployedConfigGQL {
|
||||
storageLimitEnforcementEnabled: Boolean!
|
||||
capabilityEnforcementEnabled: Boolean!
|
||||
bannerMessages: [BannerGQL!]!
|
||||
socialAuthProviderAvailability: [SocialAuthProviderAvailabilityGQL!]!
|
||||
externalSignInProviderAvailability: [ExternalSignInProviderAvailability!]!
|
||||
defaultAndroidRecordingFormat: StreamSegmentTypeEnum!
|
||||
bucketUrl: String!
|
||||
}
|
||||
@@ -418,6 +418,24 @@ input EnumAggregation {
|
||||
feature: String!
|
||||
}
|
||||
|
||||
enum ExternalSignInPlatform {
|
||||
WEB
|
||||
IOS
|
||||
ANDROID
|
||||
}
|
||||
|
||||
enum ExternalSignInProvider {
|
||||
GOOGLE
|
||||
APPLE
|
||||
FACEBOOK
|
||||
}
|
||||
|
||||
type ExternalSignInProviderAvailability {
|
||||
provider: ExternalSignInProvider!
|
||||
platform: ExternalSignInPlatform!
|
||||
enabled: Boolean!
|
||||
}
|
||||
|
||||
input FilterInput @oneOf {
|
||||
andFilters: [FilterInput!]
|
||||
orFilters: [FilterInput!]
|
||||
@@ -1645,24 +1663,6 @@ enum SimulationEventType {
|
||||
BALL_STOP
|
||||
}
|
||||
|
||||
enum SocialAuthPlatformEnum {
|
||||
WEB
|
||||
IOS
|
||||
ANDROID
|
||||
}
|
||||
|
||||
type SocialAuthProviderAvailabilityGQL {
|
||||
provider: SocialAuthProviderEnum!
|
||||
platform: SocialAuthPlatformEnum!
|
||||
enabled: Boolean!
|
||||
}
|
||||
|
||||
enum SocialAuthProviderEnum {
|
||||
GOOGLE
|
||||
APPLE
|
||||
FACEBOOK
|
||||
}
|
||||
|
||||
type SpinTypeBreakdownGQL {
|
||||
draw: Int!
|
||||
center: Int!
|
||||
|
||||
Reference in New Issue
Block a user