Update enums to be all caps (#12372)
- Make custom domain public (remove from lab) - Use ALL_CAPS definition for enums
This commit is contained in:
@ -40,7 +40,7 @@ export const mockedClientConfig: ClientConfig = {
|
||||
],
|
||||
},
|
||||
captcha: {
|
||||
provider: CaptchaDriverType.GoogleRecaptcha,
|
||||
provider: CaptchaDriverType.GOOGLE_RECAPTCHA,
|
||||
siteKey: 'MOCKED_SITE_KEY',
|
||||
},
|
||||
api: { mutationMaximumAffectedRecords: 100 },
|
||||
|
||||
@ -59,15 +59,15 @@ export const mockCurrentWorkspace: Workspace = {
|
||||
isMicrosoftAuthEnabled: false,
|
||||
featureFlags: [
|
||||
{
|
||||
key: FeatureFlagKey.IsAirtableIntegrationEnabled,
|
||||
key: FeatureFlagKey.IS_AIRTABLE_INTEGRATION_ENABLED,
|
||||
value: true,
|
||||
},
|
||||
{
|
||||
key: FeatureFlagKey.IsPostgreSQLIntegrationEnabled,
|
||||
key: FeatureFlagKey.IS_POSTGRESQL_INTEGRATION_ENABLED,
|
||||
value: true,
|
||||
},
|
||||
{
|
||||
key: FeatureFlagKey.IsWorkflowEnabled,
|
||||
key: FeatureFlagKey.IS_WORKFLOW_ENABLED,
|
||||
value: true,
|
||||
},
|
||||
],
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
import { AGGREGATE_OPERATIONS } from '@/object-record/record-table/constants/AggregateOperations';
|
||||
import { AggregateOperations } from '@/object-record/record-table/constants/AggregateOperations';
|
||||
import { View } from '@/views/types/View';
|
||||
import { ViewKey } from '@/views/types/ViewKey';
|
||||
import { ViewOpenRecordInType } from '@/views/types/ViewOpenRecordInType';
|
||||
@ -26,7 +26,7 @@ export const mockedViewsData: View[] = [
|
||||
icon: 'IconSkyline',
|
||||
key: ViewKey.Index,
|
||||
kanbanFieldMetadataId: '',
|
||||
kanbanAggregateOperation: AGGREGATE_OPERATIONS.count,
|
||||
kanbanAggregateOperation: AggregateOperations.COUNT,
|
||||
kanbanAggregateOperationFieldMetadataId: '',
|
||||
position: 0,
|
||||
isCompact: false,
|
||||
@ -46,7 +46,7 @@ export const mockedViewsData: View[] = [
|
||||
icon: 'IconPerson',
|
||||
key: ViewKey.Index,
|
||||
kanbanFieldMetadataId: '',
|
||||
kanbanAggregateOperation: AGGREGATE_OPERATIONS.count,
|
||||
kanbanAggregateOperation: AggregateOperations.COUNT,
|
||||
kanbanAggregateOperationFieldMetadataId: '',
|
||||
position: 0,
|
||||
isCompact: false,
|
||||
@ -66,7 +66,7 @@ export const mockedViewsData: View[] = [
|
||||
icon: 'IconOpportunity',
|
||||
key: ViewKey.Index,
|
||||
kanbanFieldMetadataId: '',
|
||||
kanbanAggregateOperation: AGGREGATE_OPERATIONS.count,
|
||||
kanbanAggregateOperation: AggregateOperations.COUNT,
|
||||
kanbanAggregateOperationFieldMetadataId: '',
|
||||
position: 0,
|
||||
isCompact: false,
|
||||
@ -86,7 +86,7 @@ export const mockedViewsData: View[] = [
|
||||
icon: 'IconSkyline',
|
||||
key: null,
|
||||
kanbanFieldMetadataId: '',
|
||||
kanbanAggregateOperation: AGGREGATE_OPERATIONS.count,
|
||||
kanbanAggregateOperation: AggregateOperations.COUNT,
|
||||
kanbanAggregateOperationFieldMetadataId: '',
|
||||
position: 0,
|
||||
isCompact: false,
|
||||
|
||||
Reference in New Issue
Block a user