2024-04-25 21:52:28 +00:00
|
|
|
import { CaptchaDriverType } from '~/generated/graphql';
|
2024-04-17 14:24:04 +00:00
|
|
|
import { ClientConfig } from '~/generated-metadata/graphql';
|
|
|
|
|
|
|
|
|
|
export const mockedClientConfig: ClientConfig = {
|
2023-12-20 17:36:58 +00:00
|
|
|
signInPrefilled: true,
|
2024-01-11 10:48:14 +00:00
|
|
|
signUpDisabled: false,
|
2023-12-20 17:36:58 +00:00
|
|
|
debugMode: false,
|
|
|
|
|
authProviders: {
|
|
|
|
|
google: true,
|
|
|
|
|
password: true,
|
|
|
|
|
magicLink: false,
|
2024-04-26 12:37:34 +00:00
|
|
|
microsoft: false,
|
2023-12-20 17:36:58 +00:00
|
|
|
__typename: 'AuthProviders',
|
|
|
|
|
},
|
|
|
|
|
telemetry: {
|
|
|
|
|
enabled: false,
|
|
|
|
|
anonymizationEnabled: true,
|
|
|
|
|
__typename: 'Telemetry',
|
|
|
|
|
},
|
|
|
|
|
support: {
|
|
|
|
|
supportDriver: 'front',
|
|
|
|
|
supportFrontChatId: null,
|
|
|
|
|
__typename: 'Support',
|
|
|
|
|
},
|
2024-04-17 14:24:04 +00:00
|
|
|
sentry: {
|
|
|
|
|
dsn: 'MOCKED_DSN',
|
|
|
|
|
release: 'MOCKED_RELEASE',
|
|
|
|
|
environment: 'MOCKED_ENVIRONMENT',
|
|
|
|
|
__typename: 'Sentry',
|
|
|
|
|
},
|
2023-12-20 17:36:58 +00:00
|
|
|
billing: {
|
|
|
|
|
isBillingEnabled: true,
|
|
|
|
|
billingUrl: '',
|
2024-02-28 18:51:04 +00:00
|
|
|
billingFreeTrialDurationInDays: 10,
|
2023-12-20 17:36:58 +00:00
|
|
|
__typename: 'Billing',
|
|
|
|
|
},
|
2024-04-25 21:52:28 +00:00
|
|
|
captcha: {
|
|
|
|
|
provider: CaptchaDriverType.GoogleRecatpcha,
|
|
|
|
|
siteKey: 'MOCKED_SITE_KEY',
|
|
|
|
|
__typename: 'Captcha',
|
|
|
|
|
},
|
2023-12-20 17:36:58 +00:00
|
|
|
};
|