* Init add choose your plan page component * Update price format * Add billing refund trial duration env variable * Add billing benefits * Add Button * Call checkout endpoint * Fix theme color * Add Payment success modale * Add loader to createWorkspace submit button * Fix lint * Fix dark mode * Code review returns * Use a resolver for front requests * Fix 'create workspace' loader at sign up * Fix 'create workspace' with enter key bug
31 lines
662 B
TypeScript
31 lines
662 B
TypeScript
export const mockedClientConfig = {
|
|
signInPrefilled: true,
|
|
signUpDisabled: false,
|
|
dataModelSettingsEnabled: true,
|
|
developersSettingsEnabled: true,
|
|
debugMode: false,
|
|
authProviders: {
|
|
google: true,
|
|
password: true,
|
|
magicLink: false,
|
|
__typename: 'AuthProviders',
|
|
},
|
|
telemetry: {
|
|
enabled: false,
|
|
anonymizationEnabled: true,
|
|
__typename: 'Telemetry',
|
|
},
|
|
support: {
|
|
supportDriver: 'front',
|
|
supportFrontChatId: null,
|
|
__typename: 'Support',
|
|
},
|
|
billing: {
|
|
isBillingEnabled: true,
|
|
billingUrl: '',
|
|
billingFreeTrialDurationInDays: 10,
|
|
__typename: 'Billing',
|
|
},
|
|
__typename: 'ClientConfig',
|
|
};
|