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