|
|
|
|
@ -30,6 +30,11 @@ export type Analytics = {
|
|
|
|
|
success: Scalars['Boolean'];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type ApiConfig = {
|
|
|
|
|
__typename?: 'ApiConfig';
|
|
|
|
|
mutationMaximumRecordAffected: Scalars['Float'];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type ApiKeyToken = {
|
|
|
|
|
__typename?: 'ApiKeyToken';
|
|
|
|
|
token: Scalars['String'];
|
|
|
|
|
@ -136,6 +141,7 @@ export enum CaptchaDriverType {
|
|
|
|
|
|
|
|
|
|
export type ClientConfig = {
|
|
|
|
|
__typename?: 'ClientConfig';
|
|
|
|
|
api: ApiConfig;
|
|
|
|
|
authProviders: AuthProviders;
|
|
|
|
|
billing: Billing;
|
|
|
|
|
captcha: Captcha;
|
|
|
|
|
@ -1229,7 +1235,7 @@ export type UpdateBillingSubscriptionMutation = { __typename?: 'Mutation', updat
|
|
|
|
|
export type GetClientConfigQueryVariables = Exact<{ [key: string]: never; }>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type GetClientConfigQuery = { __typename?: 'Query', clientConfig: { __typename?: 'ClientConfig', signInPrefilled: boolean, signUpDisabled: boolean, debugMode: boolean, chromeExtensionId?: string | null, authProviders: { __typename?: 'AuthProviders', google: boolean, password: boolean, microsoft: boolean }, billing: { __typename?: 'Billing', isBillingEnabled: boolean, billingUrl?: string | null, billingFreeTrialDurationInDays?: number | null }, telemetry: { __typename?: 'Telemetry', enabled: boolean }, support: { __typename?: 'Support', supportDriver: string, supportFrontChatId?: string | null }, sentry: { __typename?: 'Sentry', dsn?: string | null, environment?: string | null, release?: string | null }, captcha: { __typename?: 'Captcha', provider?: CaptchaDriverType | null, siteKey?: string | null } } };
|
|
|
|
|
export type GetClientConfigQuery = { __typename?: 'Query', clientConfig: { __typename?: 'ClientConfig', signInPrefilled: boolean, signUpDisabled: boolean, debugMode: boolean, chromeExtensionId?: string | null, authProviders: { __typename?: 'AuthProviders', google: boolean, password: boolean, microsoft: boolean }, billing: { __typename?: 'Billing', isBillingEnabled: boolean, billingUrl?: string | null, billingFreeTrialDurationInDays?: number | null }, telemetry: { __typename?: 'Telemetry', enabled: boolean }, support: { __typename?: 'Support', supportDriver: string, supportFrontChatId?: string | null }, sentry: { __typename?: 'Sentry', dsn?: string | null, environment?: string | null, release?: string | null }, captcha: { __typename?: 'Captcha', provider?: CaptchaDriverType | null, siteKey?: string | null }, api: { __typename?: 'ApiConfig', mutationMaximumRecordAffected: number } } };
|
|
|
|
|
|
|
|
|
|
export type SkipSyncEmailOnboardingStepMutationVariables = Exact<{ [key: string]: never; }>;
|
|
|
|
|
|
|
|
|
|
@ -2355,6 +2361,9 @@ export const GetClientConfigDocument = gql`
|
|
|
|
|
provider
|
|
|
|
|
siteKey
|
|
|
|
|
}
|
|
|
|
|
api {
|
|
|
|
|
mutationMaximumRecordAffected
|
|
|
|
|
}
|
|
|
|
|
chromeExtensionId
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|