twenty-sdk 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +139 -44
- package/dist/HtmlTagToRemoteComponent-Bd5sgek2.js +1 -0
- package/dist/HtmlTagToRemoteComponent-DlsAI7JU.mjs +146 -0
- package/dist/RatingValues-CT-y6O0b-CsGZSJKO.mjs +402 -0
- package/dist/RatingValues-CT-y6O0b-D7JSZAMu.js +1 -0
- package/dist/cli/commands/app/app-dev.d.ts +25 -0
- package/dist/cli/commands/{app-generate.command.d.ts → app/app-generate.d.ts} +1 -1
- package/dist/cli/commands/{app-uninstall.command.d.ts → app/app-uninstall.d.ts} +1 -1
- package/dist/cli/commands/app-command.d.ts +2 -0
- package/dist/cli/commands/auth/auth-list.d.ts +4 -0
- package/dist/cli/commands/auth/auth-login.d.ts +8 -0
- package/dist/cli/commands/auth/auth-logout.d.ts +4 -0
- package/dist/cli/commands/auth/auth-status.d.ts +5 -0
- package/dist/cli/commands/auth/auth-switch.d.ts +7 -0
- package/dist/cli/commands/entity/entity-add.d.ts +12 -0
- package/dist/cli/commands/logic-function/logic-function-execute.d.ts +10 -0
- package/dist/cli/commands/{app-logs.command.d.ts → logic-function/logic-function-logs.d.ts} +1 -1
- package/dist/cli/utilities/api/api-service.d.ts +51 -0
- package/dist/cli/utilities/build/common/cleanup-removed-files.d.ts +1 -0
- package/dist/cli/utilities/build/common/esbuild-result-processor.d.ts +11 -0
- package/dist/cli/utilities/build/common/esbuild-watcher.d.ts +37 -0
- package/dist/cli/utilities/build/common/file-upload-watcher.d.ts +24 -0
- package/dist/cli/utilities/build/common/front-component-build/jsx-transform-to-remote-dom-worker-format-plugin.d.ts +3 -0
- package/dist/cli/utilities/build/common/front-component-build/react-globals-plugin.d.ts +2 -0
- package/dist/cli/utilities/build/common/front-component-build/types/ParsedImportSpecifier.d.ts +4 -0
- package/dist/cli/utilities/build/common/front-component-build/utils/extract-names-from-import-specifier.d.ts +2 -0
- package/dist/cli/utilities/build/common/front-component-build/utils/replace-html-tags-with-remote-components.d.ts +1 -0
- package/dist/cli/utilities/build/common/front-component-build/utils/unwrap-define-front-component-to-direct-export.d.ts +1 -0
- package/dist/cli/utilities/build/common/restartable-watcher-interface.d.ts +25 -0
- package/dist/cli/utilities/build/manifest/manifest-build.d.ts +7 -0
- package/dist/cli/utilities/build/manifest/manifest-extract-config-from-file.d.ts +5 -0
- package/dist/cli/utilities/build/manifest/manifest-extract-config.d.ts +20 -0
- package/dist/cli/utilities/build/manifest/manifest-types.d.ts +4 -0
- package/dist/cli/utilities/build/manifest/manifest-update-checksums.d.ts +17 -0
- package/dist/cli/utilities/build/manifest/manifest-validate.d.ts +6 -0
- package/dist/cli/utilities/build/manifest/manifest-watcher.d.ts +12 -0
- package/dist/cli/utilities/build/manifest/manifest-writer.d.ts +2 -0
- package/dist/cli/{services/generate.service.d.ts → utilities/client/client-service.d.ts} +2 -2
- package/dist/cli/{services/config.service.d.ts → utilities/config/config-service.d.ts} +4 -0
- package/dist/cli/utilities/dev/dev-mode-orchestrator.d.ts +42 -0
- package/dist/cli/utilities/dev/dev-ui-state-manager.d.ts +31 -0
- package/dist/cli/utilities/dev/dev-ui-state.d.ts +27 -0
- package/dist/cli/utilities/dev/dev-ui.d.ts +4 -0
- package/dist/cli/utilities/entity/entity-field-template.d.ts +11 -0
- package/dist/cli/utilities/entity/entity-front-component-template.d.ts +4 -0
- package/dist/cli/utilities/entity/entity-logic-function-template.d.ts +4 -0
- package/dist/cli/{utils/get-new-object-file-content.d.ts → utilities/entity/entity-object-template.d.ts} +1 -1
- package/dist/cli/{utils/jsonc-parser.d.ts → utilities/file/file-jsonc.d.ts} +1 -5
- package/dist/cli/utilities/file/file-tarball.d.ts +16 -0
- package/dist/cli/utilities/file/file-uploader.d.ts +14 -0
- package/dist/cli/{utils/get-ts-program-and-diagnostics.d.ts → utilities/typescript/typescript-program.d.ts} +1 -1
- package/dist/cli.cjs +280 -179
- package/dist/cli.mjs +11094 -9467
- package/dist/front-component/host/components/FrontComponentRenderer.d.ts +8 -0
- package/dist/front-component/host/generated/host-component-registry.d.ts +4 -0
- package/dist/front-component/host/generated/host-index.d.ts +1 -0
- package/dist/front-component/index.d.ts +10 -0
- package/dist/front-component/remote/components/FrontComponentWorkerEffect.d.ts +8 -0
- package/dist/front-component/remote/generated/remote-components.d.ts +44 -0
- package/dist/front-component/remote/generated/remote-elements.d.ts +195 -0
- package/dist/front-component/remote/generated/remote-index.d.ts +2 -0
- package/dist/front-component/remote/mock/mock-front-component.d.ts +3 -0
- package/dist/front-component/remote/worker/createRemoteWorker.d.ts +1 -0
- package/dist/front-component/remote/worker/remote-worker.d.ts +0 -0
- package/dist/front-component/types/HostToWorkerRenderContext.d.ts +3 -0
- package/dist/front-component/types/PropertySchema.d.ts +4 -0
- package/dist/front-component/types/WorkerExports.d.ts +5 -0
- package/dist/front-component-constants/AllowedHtmlElements.d.ts +11 -0
- package/dist/front-component-constants/AllowedUiComponents.d.ts +9 -0
- package/dist/front-component-constants/CommonHtmlEvents.d.ts +1 -0
- package/dist/front-component-constants/EventToReact.d.ts +1 -0
- package/dist/front-component-constants/HtmlCommonProperties.d.ts +2 -0
- package/dist/front-component-constants/HtmlTagToRemoteComponent.d.ts +1 -0
- package/dist/front-component-constants/index.d.ts +8 -0
- package/dist/front-component-constants.cjs +1 -0
- package/dist/front-component-constants.mjs +77 -0
- package/dist/front-component.cjs +328 -0
- package/dist/front-component.mjs +42579 -0
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +2183 -242
- package/dist/jsx-runtime-C9ldtZbm.mjs +10472 -0
- package/dist/jsx-runtime-CfccAQK_.js +54 -0
- package/dist/sdk/application/application-config.d.ts +2 -0
- package/dist/sdk/application/define-application.d.ts +3 -0
- package/dist/sdk/common/types/define-entity.type.d.ts +11 -0
- package/dist/sdk/common/utils/create-validation-result.d.ts +5 -0
- package/dist/{application → sdk}/fields/composite-fields.d.ts +1 -1
- package/dist/sdk/fields/define-field.d.ts +3 -0
- package/dist/sdk/fields/validate-fields.d.ts +2 -0
- package/dist/sdk/front-components/define-front-component.d.ts +3 -0
- package/dist/sdk/front-components/front-component-config.d.ts +5 -0
- package/dist/sdk/index.d.ts +22 -0
- package/dist/sdk/logic-functions/define-logic-function.d.ts +3 -0
- package/dist/sdk/logic-functions/logic-function-config.d.ts +6 -0
- package/dist/sdk/logic-functions/triggers/route-payload-type.d.ts +1 -0
- package/dist/sdk/objects/define-object.d.ts +3 -0
- package/dist/sdk/objects/standard-object-ids.d.ts +1 -0
- package/dist/sdk/roles/define-role.d.ts +3 -0
- package/dist/sdk/roles/permission-flag-type.d.ts +1 -0
- package/dist/types-Bg4PAegr.js +1 -0
- package/dist/types-DVJsIqkp.mjs +7 -0
- package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-BZ0Penru.js +1 -0
- package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-DmLx4uDl.mjs +263 -0
- package/dist/vendor/twenty-shared/RatingValues-Bd_cXQ5v.js +1 -0
- package/dist/vendor/twenty-shared/RatingValues-CT-y6O0b.mjs +388 -0
- package/dist/vendor/twenty-shared/application/applicationType.d.ts +17 -4
- package/dist/vendor/twenty-shared/application/applicationType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/application/assetManifestType.d.ts +7 -0
- package/dist/vendor/twenty-shared/application/assetManifestType.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/constants/AssetDirectory.d.ts +2 -0
- package/dist/vendor/twenty-shared/application/constants/AssetDirectory.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/constants/GeneratedDirectory.d.ts +2 -0
- package/dist/vendor/twenty-shared/application/constants/GeneratedDirectory.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/constants/OutputDirectory.d.ts +2 -0
- package/dist/vendor/twenty-shared/application/constants/OutputDirectory.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/enums/syncable-entities.enum.d.ts +8 -0
- package/dist/vendor/twenty-shared/application/enums/syncable-entities.enum.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/fieldManifestType.d.ts +12 -1
- package/dist/vendor/twenty-shared/application/fieldManifestType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/application/frontComponentManifestType.d.ts +10 -0
- package/dist/vendor/twenty-shared/application/frontComponentManifestType.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/index.d.ts +11 -5
- package/dist/vendor/twenty-shared/application/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/application/{serverlessFunctionManifestType.d.ts → logicFunctionManifestType.d.ts} +9 -5
- package/dist/vendor/twenty-shared/application/logicFunctionManifestType.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/manifestType.d.ts +20 -0
- package/dist/vendor/twenty-shared/application/manifestType.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/objectFieldManifest.type.d.ts +5 -0
- package/dist/vendor/twenty-shared/application/objectFieldManifest.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/objectManifestType.d.ts +2 -2
- package/dist/vendor/twenty-shared/application/objectManifestType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/application/roleManifestType.d.ts +3 -18
- package/dist/vendor/twenty-shared/application/roleManifestType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/application.cjs +1 -1
- package/dist/vendor/twenty-shared/application.mjs +8 -3
- package/dist/vendor/twenty-shared/constants/DocumentationBaseUrl.d.ts +2 -0
- package/dist/vendor/twenty-shared/constants/DocumentationBaseUrl.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/DocumentationDefaultLanguage.d.ts +2 -0
- package/dist/vendor/twenty-shared/constants/DocumentationDefaultLanguage.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/DocumentationDefaultPath.d.ts +2 -0
- package/dist/vendor/twenty-shared/constants/DocumentationDefaultPath.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/DocumentationPaths.d.ts +165 -0
- package/dist/vendor/twenty-shared/constants/DocumentationPaths.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/DocumentationSupportedLanguages.d.ts +3 -0
- package/dist/vendor/twenty-shared/constants/DocumentationSupportedLanguages.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/FilesFieldMaxNumberOfValues.d.ts +2 -0
- package/dist/vendor/twenty-shared/constants/FilesFieldMaxNumberOfValues.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/PermissionFlagType.d.ts +1 -0
- package/dist/vendor/twenty-shared/constants/PermissionFlagType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/constants/index.d.ts +8 -0
- package/dist/vendor/twenty-shared/constants/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/constants.cjs +1 -1
- package/dist/vendor/twenty-shared/constants.mjs +56 -35
- package/dist/vendor/twenty-shared/database-events/database-event-payload.type.d.ts +1 -1
- package/dist/vendor/twenty-shared/database-events/database-event-payload.type.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/database-events/object-record-delete.event.d.ts +4 -0
- package/dist/vendor/twenty-shared/database-events/object-record-delete.event.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/database-events/object-record-restore.event.d.ts +4 -0
- package/dist/vendor/twenty-shared/database-events/object-record-restore.event.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/database-events/object-record-update.event.d.ts +3 -3
- package/dist/vendor/twenty-shared/database-events/object-record-update.event.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/isValidCountryCode-D-UqlXRW.js +4 -0
- package/dist/vendor/twenty-shared/{isValidCountryCode-E35rsxfD.mjs → isValidCountryCode-Dyji5s5r.mjs} +2351 -2320
- package/dist/vendor/twenty-shared/metadata/MetadataValidationError.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/metadata/all-metadata-name.constant.d.ts +5 -4
- package/dist/vendor/twenty-shared/metadata/all-metadata-name.constant.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/metadata/index.d.ts +1 -1
- package/dist/vendor/twenty-shared/metadata/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/metadata/standard-object.constant.d.ts +2196 -0
- package/dist/vendor/twenty-shared/metadata/standard-object.constant.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/metadata.cjs +1 -1
- package/dist/vendor/twenty-shared/metadata.mjs +2025 -69
- package/dist/vendor/twenty-shared/translations/constants/AppLocales.d.ts +1 -0
- package/dist/vendor/twenty-shared/translations/constants/AppLocales.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/translations/index.d.ts +1 -0
- package/dist/vendor/twenty-shared/translations/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/translations.cjs +1 -1
- package/dist/vendor/twenty-shared/translations.mjs +2 -2
- package/dist/vendor/twenty-shared/types/ExtractSerializedRelationProperties.type.d.ts +6 -0
- package/dist/vendor/twenty-shared/types/ExtractSerializedRelationProperties.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/FieldMetadataDefaultValue.d.ts +44 -88
- package/dist/vendor/twenty-shared/types/FieldMetadataDefaultValue.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/FieldMetadataOptions.d.ts +2 -1
- package/dist/vendor/twenty-shared/types/FieldMetadataOptions.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/FieldMetadataSettings.d.ts +15 -9
- package/dist/vendor/twenty-shared/types/FieldMetadataSettings.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/FieldMetadataType.d.ts +18 -17
- package/dist/vendor/twenty-shared/types/FieldMetadataType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/FileCategory.d.ts +12 -0
- package/dist/vendor/twenty-shared/types/FileCategory.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/FileFolder.d.ts +14 -0
- package/dist/vendor/twenty-shared/types/FileFolder.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/IsEmptyObject.type.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/IsEmptyObject.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/IsEmptyRecord.type.d.ts +1 -1
- package/dist/vendor/twenty-shared/types/IsEmptyRecord.type.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/IsNever.type.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/IsNever.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/IsSerializedRelation.type.d.ts +4 -0
- package/dist/vendor/twenty-shared/types/IsSerializedRelation.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/LogicFunctionEvent.d.ts +28 -0
- package/dist/vendor/twenty-shared/types/LogicFunctionEvent.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/ObjectPermissions.d.ts +4 -0
- package/dist/vendor/twenty-shared/types/ObjectPermissions.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/OrderBy.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/OrderBy.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/QueryCursorDirection.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/QueryCursorDirection.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RecordGqlFieldsDeprecated.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/RecordGqlFieldsDeprecated.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RecordGqlOperationGqlRecordFields.d.ts +4 -0
- package/dist/vendor/twenty-shared/types/RecordGqlOperationGqlRecordFields.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RecordGqlOperationOrderBy.d.ts +10 -0
- package/dist/vendor/twenty-shared/types/RecordGqlOperationOrderBy.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RecordGqlOperationSignature.d.ts +9 -0
- package/dist/vendor/twenty-shared/types/RecordGqlOperationSignature.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RecordGqlOperationVariables.d.ts +14 -0
- package/dist/vendor/twenty-shared/types/RecordGqlOperationVariables.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicate.d.ts +15 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicate.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroup.d.ts +11 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroupLogicalOperator.d.ts +5 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroupLogicalOperator.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateOperand.d.ts +19 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateOperand.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateValue.d.ts +6 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateValue.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/SerializedRelation.type.d.ts +5 -0
- package/dist/vendor/twenty-shared/types/SerializedRelation.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/SettingsPath.d.ts +5 -4
- package/dist/vendor/twenty-shared/types/SettingsPath.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/__tests__/extract-serialized-relation-properties.type-test.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/__tests__/extract-serialized-relation-properties.type-test.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/index.d.ts +29 -4
- package/dist/vendor/twenty-shared/types/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/page-layout/PageLayoutTabLayoutMode.d.ts +6 -0
- package/dist/vendor/twenty-shared/types/page-layout/PageLayoutTabLayoutMode.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/page-layout/PageLayoutWidgetConditionalDisplay.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/page-layout/PageLayoutWidgetConditionalDisplay.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/page-layout/page-layout-widget-position.type.d.ts +18 -0
- package/dist/vendor/twenty-shared/types/page-layout/page-layout-widget-position.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types.cjs +1 -1
- package/dist/vendor/twenty-shared/types.mjs +85 -76
- package/dist/vendor/twenty-shared/utils/array/compareArraysOfObjectsByProperty.d.ts +2 -0
- package/dist/vendor/twenty-shared/utils/array/compareArraysOfObjectsByProperty.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/files/extractFolderPathFilenameAndTypeOrThrow.util.d.ts +6 -0
- package/dist/vendor/twenty-shared/utils/files/extractFolderPathFilenameAndTypeOrThrow.util.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/index.d.ts +13 -0
- package/dist/vendor/twenty-shared/utils/filter/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingArrayFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingArrayFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingBooleanFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingBooleanFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingCurrencyFilter.d.ts +10 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingCurrencyFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingDateFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingDateFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingFloatFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingFloatFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingMultiSelectFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingMultiSelectFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRatingFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRatingFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRawJsonFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRawJsonFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRichTextV2Filter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRichTextV2Filter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingSelectFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingSelectFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingStringFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingStringFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingTSVectorFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingTSVectorFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingUUIDFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingUUIDFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/format/formatToShortNumber.d.ts +2 -0
- package/dist/vendor/twenty-shared/utils/format/formatToShortNumber.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/index.d.ts +19 -0
- package/dist/vendor/twenty-shared/utils/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/utils/strings/index.d.ts +1 -0
- package/dist/vendor/twenty-shared/utils/strings/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/utils/strings/pascalCase.d.ts +2 -0
- package/dist/vendor/twenty-shared/utils/strings/pascalCase.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/strings/stringifySafely.d.ts +2 -0
- package/dist/vendor/twenty-shared/utils/strings/stringifySafely.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/typeguard/isPlainObject.d.ts +2 -0
- package/dist/vendor/twenty-shared/utils/typeguard/isPlainObject.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/validation/isValidLocale.d.ts +2 -2
- package/dist/vendor/twenty-shared/utils/validation/isValidLocale.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/utils/validation/normalizeLocale.d.ts +2 -5
- package/dist/vendor/twenty-shared/utils/validation/normalizeLocale.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/utils.cjs +2 -2
- package/dist/vendor/twenty-shared/utils.mjs +994 -522
- package/dist/vendor/twenty-shared/workflow/index.d.ts +4 -0
- package/dist/vendor/twenty-shared/workflow/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/code-action-schema.d.ts +2 -3
- package/dist/vendor/twenty-shared/workflow/schemas/code-action-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/code-action-settings-schema.d.ts +2 -3
- package/dist/vendor/twenty-shared/workflow/schemas/code-action-settings-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-schema.d.ts +29 -0
- package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-schema.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-settings-schema.d.ts +18 -0
- package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-settings-schema.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-schema.d.ts +5 -1
- package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-settings-schema.d.ts +5 -1
- package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-settings-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-action-schema.d.ts +32 -4
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-action-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-schema.d.ts +32 -4
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-state-schema.d.ts +32 -4
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-state-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/types/EmailRecipients.d.ts +6 -0
- package/dist/vendor/twenty-shared/workflow/types/EmailRecipients.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/workflow/utils/variable-path.util.d.ts +12 -0
- package/dist/vendor/twenty-shared/workflow/utils/variable-path.util.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/workflow.cjs +3 -3
- package/dist/vendor/twenty-shared/workflow.mjs +205 -166
- package/package.json +39 -15
- package/dist/ObjectRecordGroupByDateGranularity-CtpRADP1-Bft-VMSh.mjs +0 -3151
- package/dist/ObjectRecordGroupByDateGranularity-CtpRADP1-Duv5iOeZ.js +0 -20
- package/dist/application/application-config.d.ts +0 -2
- package/dist/application/define-app.d.ts +0 -18
- package/dist/application/fields/field.decorator.d.ts +0 -3
- package/dist/application/fields/relation.decorator.d.ts +0 -28
- package/dist/application/functions/define-function.d.ts +0 -28
- package/dist/application/functions/function-config.d.ts +0 -9
- package/dist/application/index.d.ts +0 -19
- package/dist/application/objects/define-object.d.ts +0 -35
- package/dist/application/objects/object.decorator.d.ts +0 -4
- package/dist/application/objects/standard-object-ids.d.ts +0 -1
- package/dist/application/permission-flag-type.d.ts +0 -1
- package/dist/application/role-config.d.ts +0 -2
- package/dist/application/roles/define-role.d.ts +0 -26
- package/dist/cli/commands/app-add.command.d.ts +0 -13
- package/dist/cli/commands/app-dev.command.d.ts +0 -11
- package/dist/cli/commands/app-sync.command.d.ts +0 -7
- package/dist/cli/commands/app.command.d.ts +0 -10
- package/dist/cli/commands/auth.command.d.ts +0 -9
- package/dist/cli/services/api.service.d.ts +0 -20
- package/dist/cli/utils/config-loader.d.ts +0 -43
- package/dist/cli/utils/display-entity-summary.d.ts +0 -2
- package/dist/cli/utils/display-errors.d.ts +0 -2
- package/dist/cli/utils/display-warnings.d.ts +0 -2
- package/dist/cli/utils/get-function-base-file.d.ts +0 -4
- package/dist/cli/utils/load-env-variables.d.ts +0 -2
- package/dist/cli/utils/load-manifest.d.ts +0 -41
- package/dist/cli/utils/validate-manifest.d.ts +0 -22
- package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-BwpmSE4s.js +0 -1
- package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-CtpRADP1.mjs +0 -500
- package/dist/vendor/twenty-shared/RatingValues-B_wgYyso.js +0 -1
- package/dist/vendor/twenty-shared/RatingValues-DNSj7xKA.mjs +0 -224
- package/dist/vendor/twenty-shared/application/applicationManifestType.d.ts +0 -12
- package/dist/vendor/twenty-shared/application/applicationManifestType.d.ts.map +0 -1
- package/dist/vendor/twenty-shared/application/packageJsonType.d.ts +0 -14
- package/dist/vendor/twenty-shared/application/packageJsonType.d.ts.map +0 -1
- package/dist/vendor/twenty-shared/application/serverlessFunctionManifestType.d.ts.map +0 -1
- package/dist/vendor/twenty-shared/isValidCountryCode-WBKj_GIR.js +0 -4
- package/dist/vendor/twenty-shared/metadata/standard-object-ids.d.ts +0 -51
- package/dist/vendor/twenty-shared/metadata/standard-object-ids.d.ts.map +0 -1
- /package/dist/cli/{types/api-response.types.d.ts → utilities/api/api-response-type.d.ts} +0 -0
- /package/dist/cli/{constants → utilities/config}/current-execution-directory.d.ts +0 -0
- /package/dist/cli/{utils/convert-to-label.d.ts → utilities/entity/entity-label.d.ts} +0 -0
- /package/dist/cli/{utils/get-role-base-file.d.ts → utilities/entity/entity-role-template.d.ts} +0 -0
- /package/dist/cli/{utils/find-path-file.d.ts → utilities/file/file-find.d.ts} +0 -0
- /package/dist/cli/{utils/format-path.d.ts → utilities/file/file-path.d.ts} +0 -0
- /package/dist/cli/{utils/format-and-warn-ts-diagnostics.d.ts → utilities/typescript/typescript-diagnostics.d.ts} +0 -0
- /package/dist/{application → sdk/common/types}/syncable-entity-options.type.d.ts +0 -0
- /package/dist/{application → sdk}/fields/field-type.d.ts +0 -0
- /package/dist/{application → sdk}/fields/on-delete-action.d.ts +0 -0
- /package/dist/{application → sdk}/fields/relation-type.d.ts +0 -0
- /package/dist/{application/functions → sdk/logic-functions}/triggers/cron-payload-type.d.ts +0 -0
- /package/dist/{application/functions → sdk/logic-functions}/triggers/database-event-payload-type.d.ts +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";const T=require("zod"),a=require("class-validator");let f;const J=new Uint8Array(16);function Q(){if(!f&&(f=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!f))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return f(J)}const i=[];for(let e=0;e<256;++e)i.push((e+256).toString(16).slice(1));function z(e,t=0){return i[e[t+0]]+i[e[t+1]]+i[e[t+2]]+i[e[t+3]]+"-"+i[e[t+4]]+i[e[t+5]]+"-"+i[e[t+6]]+i[e[t+7]]+"-"+i[e[t+8]]+i[e[t+9]]+"-"+i[e[t+10]]+i[e[t+11]]+i[e[t+12]]+i[e[t+13]]+i[e[t+14]]+i[e[t+15]]}const $=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto),C={randomUUID:$};function D(e,t,u){if(C.randomUUID&&!e)return C.randomUUID();e=e||{};const o=e.random||(e.rng||Q)();return o[6]=o[6]&15|64,o[8]=o[8]&63|128,z(o)}var l=(e=>(e.UUID="UUID",e.TEXT="TEXT",e.PHONES="PHONES",e.EMAILS="EMAILS",e.DATE_TIME="DATE_TIME",e.DATE="DATE",e.BOOLEAN="BOOLEAN",e.NUMBER="NUMBER",e.NUMERIC="NUMERIC",e.LINKS="LINKS",e.CURRENCY="CURRENCY",e.FULL_NAME="FULL_NAME",e.RATING="RATING",e.SELECT="SELECT",e.MULTI_SELECT="MULTI_SELECT",e.RELATION="RELATION",e.MORPH_RELATION="MORPH_RELATION",e.POSITION="POSITION",e.ADDRESS="ADDRESS",e.RAW_JSON="RAW_JSON",e.RICH_TEXT="RICH_TEXT",e.RICH_TEXT_V2="RICH_TEXT_V2",e.ACTOR="ACTOR",e.ARRAY="ARRAY",e.TS_VECTOR="TS_VECTOR",e))(l||{}),I=(e=>(e.EMAIL="EMAIL",e.CALENDAR="CALENDAR",e.WORKFLOW="WORKFLOW",e.AGENT="AGENT",e.API="API",e.IMPORT="IMPORT",e.MANUAL="MANUAL",e.SYSTEM="SYSTEM",e.WEBHOOK="WEBHOOK",e.APPLICATION="APPLICATION",e))(I||{});const S={type:l.ACTOR,properties:[{name:"source",type:l.SELECT,hidden:!1,isRequired:!0,options:Object.keys(I).map((e,t)=>({id:D(),label:`${I[e].toLowerCase()}`,value:e,position:t}))},{name:"workspaceMemberId",type:l.UUID,hidden:"input",isRequired:!1},{name:"name",type:l.TEXT,hidden:"input",isRequired:!0},{name:"context",type:l.RAW_JSON,hidden:!1,isRequired:!1}]},b={type:l.ADDRESS,properties:[{name:"addressStreet1",type:l.TEXT,hidden:!1,isRequired:!1},{name:"addressStreet2",type:l.TEXT,hidden:!1,isRequired:!1},{name:"addressCity",type:l.TEXT,hidden:!1,isRequired:!1},{name:"addressPostcode",type:l.TEXT,hidden:!1,isRequired:!1},{name:"addressState",type:l.TEXT,hidden:!1,isRequired:!1},{name:"addressCountry",type:l.TEXT,hidden:!1,isRequired:!1},{name:"addressLat",type:l.NUMERIC,hidden:!1,isRequired:!1},{name:"addressLng",type:l.NUMERIC,hidden:!1,isRequired:!1}]},M={type:l.CURRENCY,properties:[{name:"amountMicros",type:l.NUMERIC,hidden:!1,isRequired:!1},{name:"currencyCode",type:l.TEXT,hidden:!1,isRequired:!1}]},h={type:l.EMAILS,properties:[{name:"primaryEmail",type:l.TEXT,hidden:!1,isRequired:!1,isIncludedInUniqueConstraint:!0},{name:"additionalEmails",type:l.RAW_JSON,hidden:!1,isRequired:!1}]},L={type:l.FULL_NAME,properties:[{name:"firstName",type:l.TEXT,hidden:!1,isRequired:!1,isIncludedInUniqueConstraint:!1},{name:"lastName",type:l.TEXT,hidden:!1,isRequired:!1,isIncludedInUniqueConstraint:!1}]},O={type:l.LINKS,properties:[{name:"primaryLinkLabel",type:l.TEXT,hidden:!1,isRequired:!1},{name:"primaryLinkUrl",type:l.TEXT,hidden:!1,isRequired:!1,isIncludedInUniqueConstraint:!0},{name:"secondaryLinks",type:l.RAW_JSON,hidden:!1,isRequired:!1}]},U={type:l.PHONES,properties:[{name:"primaryPhoneNumber",type:l.TEXT,hidden:!1,isRequired:!1,isIncludedInUniqueConstraint:!0},{name:"primaryPhoneCountryCode",type:l.TEXT,hidden:!1,isRequired:!1},{name:"primaryPhoneCallingCode",type:l.TEXT,hidden:!1,isRequired:!1},{name:"additionalPhones",type:l.RAW_JSON,hidden:!1,isRequired:!1}]},g={type:l.RICH_TEXT_V2,properties:[{name:"blocknote",type:l.TEXT,hidden:!1,isRequired:!1},{name:"markdown",type:l.TEXT,hidden:!1,isRequired:!1}]},B=T.z.object({blocknote:T.z.string().nullable().optional(),markdown:T.z.string().nullable()}),Z=new Map([[l.LINKS,O],[l.CURRENCY,M],[l.FULL_NAME,L],[l.ADDRESS,b],[l.ACTOR,S],[l.EMAILS,h],[l.PHONES,U],[l.RICH_TEXT_V2,g]]);var G=Object.defineProperty,s=(e,t,u,o)=>{for(var r=void 0,m=e.length-1,A;m>=0;m--)(A=e[m])&&(r=A(t,u,r)||r);return r&&G(t,u,r),r};const n=e=>(t,u)=>{a.registerDecorator({name:"isQuotedString",target:t.constructor,propertyName:u,options:e,validator:{validate:o=>typeof o=="string"&&/^'{1}.*'{1}$/.test(o),defaultMessage:o=>`${o.property} must be a quoted string`}})},y={UUID:"uuid",NOW:"now"};class j{}s([a.ValidateIf((e,t)=>t!==null),n()],j.prototype,"value");class q{}s([a.ValidateIf((e,t)=>t!==null),a.IsObject()],q.prototype,"value");class R{}s([a.ValidateIf((e,t)=>t!==null),n()],R.prototype,"blocknote");s([a.ValidateIf((e,t)=>t!==null),n()],R.prototype,"markdown");class P{}s([a.ValidateIf((e,t)=>t!==null),a.IsString()],P.prototype,"value");class F{}s([a.ValidateIf((e,t)=>t!==null),a.IsNumber()],F.prototype,"value");class X{}s([a.ValidateIf((e,t)=>t!==null),a.IsBoolean()],X.prototype,"value");class v{}s([a.ValidateIf((e,t)=>t!==null),a.IsArray(),n({each:!0})],v.prototype,"value");class H{}s([a.ValidateIf((e,t)=>t!==null),a.IsDate()],H.prototype,"value");class k{}s([a.ValidateIf((e,t)=>t!==null),a.IsDate()],k.prototype,"value");class V{}s([a.ValidateIf((e,t)=>t!==null),a.IsNumberString()],V.prototype,"amountMicros");s([a.ValidateIf((e,t)=>t!==null),n()],V.prototype,"currencyCode");class _{}s([a.ValidateIf((e,t)=>t!==null),n()],_.prototype,"firstName");s([a.ValidateIf((e,t)=>t!==null),n()],_.prototype,"lastName");class W{}s([a.Matches(y.UUID),a.IsNotEmpty()],W.prototype,"value");class Y{}s([a.Matches(y.NOW),a.IsNotEmpty()],Y.prototype,"value");class d{}s([a.ValidateIf((e,t)=>t!==null),a.IsString()],d.prototype,"addressStreet1");s([a.ValidateIf((e,t)=>t!==null),a.IsString()],d.prototype,"addressStreet2");s([a.ValidateIf((e,t)=>t!==null),a.IsString()],d.prototype,"addressCity");s([a.ValidateIf((e,t)=>t!==null),a.IsString()],d.prototype,"addressPostcode");s([a.ValidateIf((e,t)=>t!==null),a.IsString()],d.prototype,"addressState");s([a.ValidateIf((e,t)=>t!==null),a.IsString()],d.prototype,"addressCountry");s([a.ValidateIf((e,t)=>t!==null),a.IsNumber()],d.prototype,"addressLat");s([a.ValidateIf((e,t)=>t!==null),a.IsNumber()],d.prototype,"addressLng");class w{}s([a.IsString()],w.prototype,"label");s([a.IsString()],w.prototype,"url");class c{}s([a.ValidateIf((e,t)=>t!==null),n()],c.prototype,"primaryLinkLabel");s([a.ValidateIf((e,t)=>t!==null),n()],c.prototype,"primaryLinkUrl");s([a.ValidateIf((e,t)=>t!==null),a.IsArray()],c.prototype,"secondaryLinks");class E{}s([a.ValidateIf((e,t)=>t!==null),a.IsString()],E.prototype,"source");s([a.ValidateIf((e,t)=>t!==null),a.IsOptional(),a.IsUUID()],E.prototype,"workspaceMemberId");s([a.ValidateIf((e,t)=>t!==null),a.IsString()],E.prototype,"name");class N{}s([a.ValidateIf((e,t)=>t!==null),n()],N.prototype,"primaryEmail");s([a.ValidateIf((e,t)=>t!==null),a.IsObject()],N.prototype,"additionalEmails");class p{}s([a.ValidateIf((e,t)=>t!==null),n()],p.prototype,"primaryPhoneNumber");s([a.ValidateIf((e,t)=>t!==null),n()],p.prototype,"primaryPhoneCountryCode");s([a.ValidateIf((e,t)=>t!==null),n()],p.prototype,"primaryPhoneCallingCode");s([a.ValidateIf((e,t)=>t!==null),a.IsObject()],p.prototype,"additionalPhones");class x{}s([a.ValidateIf((e,t)=>t!==null),a.IsArray()],x.prototype,"value");var K=(e=>(e.DAY="DAY",e.MONTH="MONTH",e.QUARTER="QUARTER",e.YEAR="YEAR",e.WEEK="WEEK",e.DAY_OF_THE_WEEK="DAY_OF_THE_WEEK",e.MONTH_OF_THE_YEAR="MONTH_OF_THE_YEAR",e.QUARTER_OF_THE_YEAR="QUARTER_OF_THE_YEAR",e.NONE="NONE",e))(K||{});exports.FieldActorSource=I;exports.FieldMetadataDefaultActor=E;exports.FieldMetadataDefaultArray=x;exports.FieldMetadataDefaultValueAddress=d;exports.FieldMetadataDefaultValueBoolean=X;exports.FieldMetadataDefaultValueCurrency=V;exports.FieldMetadataDefaultValueDate=k;exports.FieldMetadataDefaultValueDateTime=H;exports.FieldMetadataDefaultValueEmails=N;exports.FieldMetadataDefaultValueFullName=_;exports.FieldMetadataDefaultValueLinks=c;exports.FieldMetadataDefaultValueNowFunction=Y;exports.FieldMetadataDefaultValueNumber=F;exports.FieldMetadataDefaultValuePhones=p;exports.FieldMetadataDefaultValueRawJson=q;exports.FieldMetadataDefaultValueRichText=P;exports.FieldMetadataDefaultValueRichTextV2=R;exports.FieldMetadataDefaultValueString=j;exports.FieldMetadataDefaultValueStringArray=v;exports.FieldMetadataDefaultValueUuidFunction=W;exports.FieldMetadataType=l;exports.ObjectRecordGroupByDateGranularity=K;exports.actorCompositeType=S;exports.addressCompositeType=b;exports.compositeTypeDefinitions=Z;exports.currencyCompositeType=M;exports.emailsCompositeType=h;exports.fieldMetadataDefaultValueFunctionName=y;exports.fullNameCompositeType=L;exports.linksCompositeType=O;exports.phonesCompositeType=U;exports.richTextV2CompositeType=g;exports.richTextV2ValueSchema=B;exports.v4=D;
|
|
@@ -1,500 +0,0 @@
|
|
|
1
|
-
import { z as R } from "zod";
|
|
2
|
-
import { ValidateIf as n, IsObject as y, IsString as r, IsNumber as _, IsBoolean as j, IsArray as I, IsDate as b, IsNumberString as V, Matches as L, IsNotEmpty as U, IsOptional as P, IsUUID as g, registerDecorator as X } from "class-validator";
|
|
3
|
-
let E;
|
|
4
|
-
const v = new Uint8Array(16);
|
|
5
|
-
function H() {
|
|
6
|
-
if (!E && (E = typeof crypto < "u" && crypto.getRandomValues && crypto.getRandomValues.bind(crypto), !E))
|
|
7
|
-
throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");
|
|
8
|
-
return E(v);
|
|
9
|
-
}
|
|
10
|
-
const l = [];
|
|
11
|
-
for (let e = 0; e < 256; ++e)
|
|
12
|
-
l.push((e + 256).toString(16).slice(1));
|
|
13
|
-
function k(e, t = 0) {
|
|
14
|
-
return l[e[t + 0]] + l[e[t + 1]] + l[e[t + 2]] + l[e[t + 3]] + "-" + l[e[t + 4]] + l[e[t + 5]] + "-" + l[e[t + 6]] + l[e[t + 7]] + "-" + l[e[t + 8]] + l[e[t + 9]] + "-" + l[e[t + 10]] + l[e[t + 11]] + l[e[t + 12]] + l[e[t + 13]] + l[e[t + 14]] + l[e[t + 15]];
|
|
15
|
-
}
|
|
16
|
-
const W = typeof crypto < "u" && crypto.randomUUID && crypto.randomUUID.bind(crypto), C = {
|
|
17
|
-
randomUUID: W
|
|
18
|
-
};
|
|
19
|
-
function Y(e, t, p) {
|
|
20
|
-
if (C.randomUUID && !e)
|
|
21
|
-
return C.randomUUID();
|
|
22
|
-
e = e || {};
|
|
23
|
-
const i = e.random || (e.rng || H)();
|
|
24
|
-
return i[6] = i[6] & 15 | 64, i[8] = i[8] & 63 | 128, k(i);
|
|
25
|
-
}
|
|
26
|
-
var s = /* @__PURE__ */ ((e) => (e.UUID = "UUID", e.TEXT = "TEXT", e.PHONES = "PHONES", e.EMAILS = "EMAILS", e.DATE_TIME = "DATE_TIME", e.DATE = "DATE", e.BOOLEAN = "BOOLEAN", e.NUMBER = "NUMBER", e.NUMERIC = "NUMERIC", e.LINKS = "LINKS", e.CURRENCY = "CURRENCY", e.FULL_NAME = "FULL_NAME", e.RATING = "RATING", e.SELECT = "SELECT", e.MULTI_SELECT = "MULTI_SELECT", e.RELATION = "RELATION", e.MORPH_RELATION = "MORPH_RELATION", e.POSITION = "POSITION", e.ADDRESS = "ADDRESS", e.RAW_JSON = "RAW_JSON", e.RICH_TEXT = "RICH_TEXT", e.RICH_TEXT_V2 = "RICH_TEXT_V2", e.ACTOR = "ACTOR", e.ARRAY = "ARRAY", e.TS_VECTOR = "TS_VECTOR", e))(s || {}), T = /* @__PURE__ */ ((e) => (e.EMAIL = "EMAIL", e.CALENDAR = "CALENDAR", e.WORKFLOW = "WORKFLOW", e.AGENT = "AGENT", e.API = "API", e.IMPORT = "IMPORT", e.MANUAL = "MANUAL", e.SYSTEM = "SYSTEM", e.WEBHOOK = "WEBHOOK", e.APPLICATION = "APPLICATION", e))(T || {});
|
|
27
|
-
const w = {
|
|
28
|
-
type: s.ACTOR,
|
|
29
|
-
properties: [
|
|
30
|
-
{
|
|
31
|
-
name: "source",
|
|
32
|
-
type: s.SELECT,
|
|
33
|
-
hidden: !1,
|
|
34
|
-
isRequired: !0,
|
|
35
|
-
options: Object.keys(T).map(
|
|
36
|
-
(e, t) => ({
|
|
37
|
-
id: Y(),
|
|
38
|
-
// @ts-expect-error legacy noImplicitAny
|
|
39
|
-
label: `${T[e].toLowerCase()}`,
|
|
40
|
-
value: e,
|
|
41
|
-
position: t
|
|
42
|
-
})
|
|
43
|
-
)
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
name: "workspaceMemberId",
|
|
47
|
-
type: s.UUID,
|
|
48
|
-
hidden: "input",
|
|
49
|
-
isRequired: !1
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
name: "name",
|
|
53
|
-
type: s.TEXT,
|
|
54
|
-
hidden: "input",
|
|
55
|
-
isRequired: !0
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
name: "context",
|
|
59
|
-
type: s.RAW_JSON,
|
|
60
|
-
hidden: !1,
|
|
61
|
-
isRequired: !1
|
|
62
|
-
}
|
|
63
|
-
]
|
|
64
|
-
}, x = {
|
|
65
|
-
type: s.ADDRESS,
|
|
66
|
-
properties: [
|
|
67
|
-
{
|
|
68
|
-
name: "addressStreet1",
|
|
69
|
-
type: s.TEXT,
|
|
70
|
-
hidden: !1,
|
|
71
|
-
isRequired: !1
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
name: "addressStreet2",
|
|
75
|
-
type: s.TEXT,
|
|
76
|
-
hidden: !1,
|
|
77
|
-
isRequired: !1
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
name: "addressCity",
|
|
81
|
-
type: s.TEXT,
|
|
82
|
-
hidden: !1,
|
|
83
|
-
isRequired: !1
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
name: "addressPostcode",
|
|
87
|
-
type: s.TEXT,
|
|
88
|
-
hidden: !1,
|
|
89
|
-
isRequired: !1
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
name: "addressState",
|
|
93
|
-
type: s.TEXT,
|
|
94
|
-
hidden: !1,
|
|
95
|
-
isRequired: !1
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
name: "addressCountry",
|
|
99
|
-
type: s.TEXT,
|
|
100
|
-
hidden: !1,
|
|
101
|
-
isRequired: !1
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
name: "addressLat",
|
|
105
|
-
type: s.NUMERIC,
|
|
106
|
-
hidden: !1,
|
|
107
|
-
isRequired: !1
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
name: "addressLng",
|
|
111
|
-
type: s.NUMERIC,
|
|
112
|
-
hidden: !1,
|
|
113
|
-
isRequired: !1
|
|
114
|
-
}
|
|
115
|
-
]
|
|
116
|
-
}, K = {
|
|
117
|
-
type: s.CURRENCY,
|
|
118
|
-
properties: [
|
|
119
|
-
{
|
|
120
|
-
name: "amountMicros",
|
|
121
|
-
type: s.NUMERIC,
|
|
122
|
-
hidden: !1,
|
|
123
|
-
isRequired: !1
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
name: "currencyCode",
|
|
127
|
-
type: s.TEXT,
|
|
128
|
-
hidden: !1,
|
|
129
|
-
isRequired: !1
|
|
130
|
-
}
|
|
131
|
-
]
|
|
132
|
-
}, J = {
|
|
133
|
-
type: s.EMAILS,
|
|
134
|
-
properties: [
|
|
135
|
-
{
|
|
136
|
-
name: "primaryEmail",
|
|
137
|
-
type: s.TEXT,
|
|
138
|
-
hidden: !1,
|
|
139
|
-
isRequired: !1,
|
|
140
|
-
isIncludedInUniqueConstraint: !0
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
name: "additionalEmails",
|
|
144
|
-
type: s.RAW_JSON,
|
|
145
|
-
hidden: !1,
|
|
146
|
-
isRequired: !1
|
|
147
|
-
}
|
|
148
|
-
]
|
|
149
|
-
}, Q = {
|
|
150
|
-
type: s.FULL_NAME,
|
|
151
|
-
properties: [
|
|
152
|
-
{
|
|
153
|
-
name: "firstName",
|
|
154
|
-
type: s.TEXT,
|
|
155
|
-
hidden: !1,
|
|
156
|
-
isRequired: !1,
|
|
157
|
-
isIncludedInUniqueConstraint: !1
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
name: "lastName",
|
|
161
|
-
type: s.TEXT,
|
|
162
|
-
hidden: !1,
|
|
163
|
-
isRequired: !1,
|
|
164
|
-
isIncludedInUniqueConstraint: !1
|
|
165
|
-
}
|
|
166
|
-
]
|
|
167
|
-
}, F = {
|
|
168
|
-
type: s.LINKS,
|
|
169
|
-
properties: [
|
|
170
|
-
{
|
|
171
|
-
name: "primaryLinkLabel",
|
|
172
|
-
type: s.TEXT,
|
|
173
|
-
hidden: !1,
|
|
174
|
-
isRequired: !1
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
name: "primaryLinkUrl",
|
|
178
|
-
type: s.TEXT,
|
|
179
|
-
hidden: !1,
|
|
180
|
-
isRequired: !1,
|
|
181
|
-
isIncludedInUniqueConstraint: !0
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
name: "secondaryLinks",
|
|
185
|
-
type: s.RAW_JSON,
|
|
186
|
-
hidden: !1,
|
|
187
|
-
isRequired: !1
|
|
188
|
-
}
|
|
189
|
-
]
|
|
190
|
-
}, $ = {
|
|
191
|
-
type: s.PHONES,
|
|
192
|
-
properties: [
|
|
193
|
-
{
|
|
194
|
-
name: "primaryPhoneNumber",
|
|
195
|
-
type: s.TEXT,
|
|
196
|
-
hidden: !1,
|
|
197
|
-
isRequired: !1,
|
|
198
|
-
isIncludedInUniqueConstraint: !0
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
name: "primaryPhoneCountryCode",
|
|
202
|
-
type: s.TEXT,
|
|
203
|
-
hidden: !1,
|
|
204
|
-
isRequired: !1
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
name: "primaryPhoneCallingCode",
|
|
208
|
-
type: s.TEXT,
|
|
209
|
-
hidden: !1,
|
|
210
|
-
isRequired: !1
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
name: "additionalPhones",
|
|
214
|
-
type: s.RAW_JSON,
|
|
215
|
-
hidden: !1,
|
|
216
|
-
isRequired: !1
|
|
217
|
-
}
|
|
218
|
-
]
|
|
219
|
-
}, z = {
|
|
220
|
-
type: s.RICH_TEXT_V2,
|
|
221
|
-
properties: [
|
|
222
|
-
{
|
|
223
|
-
name: "blocknote",
|
|
224
|
-
type: s.TEXT,
|
|
225
|
-
hidden: !1,
|
|
226
|
-
isRequired: !1
|
|
227
|
-
},
|
|
228
|
-
{
|
|
229
|
-
name: "markdown",
|
|
230
|
-
type: s.TEXT,
|
|
231
|
-
hidden: !1,
|
|
232
|
-
isRequired: !1
|
|
233
|
-
}
|
|
234
|
-
]
|
|
235
|
-
}, Ee = R.object({
|
|
236
|
-
blocknote: R.string().nullable().optional(),
|
|
237
|
-
markdown: R.string().nullable()
|
|
238
|
-
}), ce = /* @__PURE__ */ new Map([
|
|
239
|
-
[s.LINKS, F],
|
|
240
|
-
[s.CURRENCY, K],
|
|
241
|
-
[s.FULL_NAME, Q],
|
|
242
|
-
[s.ADDRESS, x],
|
|
243
|
-
[s.ACTOR, w],
|
|
244
|
-
[s.EMAILS, J],
|
|
245
|
-
[s.PHONES, $],
|
|
246
|
-
[s.RICH_TEXT_V2, z]
|
|
247
|
-
]);
|
|
248
|
-
var B = Object.defineProperty, a = (e, t, p, i) => {
|
|
249
|
-
for (var d = void 0, m = e.length - 1, A; m >= 0; m--)
|
|
250
|
-
(A = e[m]) && (d = A(t, p, d) || d);
|
|
251
|
-
return d && B(t, p, d), d;
|
|
252
|
-
};
|
|
253
|
-
const o = (e) => (t, p) => {
|
|
254
|
-
X({
|
|
255
|
-
name: "isQuotedString",
|
|
256
|
-
target: t.constructor,
|
|
257
|
-
propertyName: p,
|
|
258
|
-
options: e,
|
|
259
|
-
validator: {
|
|
260
|
-
validate: (i) => typeof i == "string" && /^'{1}.*'{1}$/.test(i),
|
|
261
|
-
defaultMessage: (i) => `${i.property} must be a quoted string`
|
|
262
|
-
}
|
|
263
|
-
});
|
|
264
|
-
}, O = {
|
|
265
|
-
UUID: "uuid",
|
|
266
|
-
NOW: "now"
|
|
267
|
-
};
|
|
268
|
-
class Z {
|
|
269
|
-
}
|
|
270
|
-
a([
|
|
271
|
-
n((e, t) => t !== null),
|
|
272
|
-
o()
|
|
273
|
-
], Z.prototype, "value");
|
|
274
|
-
class G {
|
|
275
|
-
}
|
|
276
|
-
a([
|
|
277
|
-
n((e, t) => t !== null),
|
|
278
|
-
y()
|
|
279
|
-
], G.prototype, "value");
|
|
280
|
-
class h {
|
|
281
|
-
}
|
|
282
|
-
a([
|
|
283
|
-
n((e, t) => t !== null),
|
|
284
|
-
o()
|
|
285
|
-
], h.prototype, "blocknote");
|
|
286
|
-
a([
|
|
287
|
-
n((e, t) => t !== null),
|
|
288
|
-
o()
|
|
289
|
-
], h.prototype, "markdown");
|
|
290
|
-
class ee {
|
|
291
|
-
}
|
|
292
|
-
a([
|
|
293
|
-
n((e, t) => t !== null),
|
|
294
|
-
r()
|
|
295
|
-
], ee.prototype, "value");
|
|
296
|
-
class te {
|
|
297
|
-
}
|
|
298
|
-
a([
|
|
299
|
-
n((e, t) => t !== null),
|
|
300
|
-
_()
|
|
301
|
-
], te.prototype, "value");
|
|
302
|
-
class se {
|
|
303
|
-
}
|
|
304
|
-
a([
|
|
305
|
-
n((e, t) => t !== null),
|
|
306
|
-
j()
|
|
307
|
-
], se.prototype, "value");
|
|
308
|
-
class ae {
|
|
309
|
-
}
|
|
310
|
-
a([
|
|
311
|
-
n((e, t) => t !== null),
|
|
312
|
-
I(),
|
|
313
|
-
o({ each: !0 })
|
|
314
|
-
], ae.prototype, "value");
|
|
315
|
-
class ne {
|
|
316
|
-
}
|
|
317
|
-
a([
|
|
318
|
-
n((e, t) => t !== null),
|
|
319
|
-
b()
|
|
320
|
-
], ne.prototype, "value");
|
|
321
|
-
class le {
|
|
322
|
-
}
|
|
323
|
-
a([
|
|
324
|
-
n((e, t) => t !== null),
|
|
325
|
-
b()
|
|
326
|
-
], le.prototype, "value");
|
|
327
|
-
class D {
|
|
328
|
-
}
|
|
329
|
-
a([
|
|
330
|
-
n((e, t) => t !== null),
|
|
331
|
-
V()
|
|
332
|
-
], D.prototype, "amountMicros");
|
|
333
|
-
a([
|
|
334
|
-
n((e, t) => t !== null),
|
|
335
|
-
o()
|
|
336
|
-
], D.prototype, "currencyCode");
|
|
337
|
-
class S {
|
|
338
|
-
}
|
|
339
|
-
a([
|
|
340
|
-
n((e, t) => t !== null),
|
|
341
|
-
o()
|
|
342
|
-
], S.prototype, "firstName");
|
|
343
|
-
a([
|
|
344
|
-
n((e, t) => t !== null),
|
|
345
|
-
o()
|
|
346
|
-
], S.prototype, "lastName");
|
|
347
|
-
class oe {
|
|
348
|
-
}
|
|
349
|
-
a([
|
|
350
|
-
L(O.UUID),
|
|
351
|
-
U()
|
|
352
|
-
], oe.prototype, "value");
|
|
353
|
-
class ie {
|
|
354
|
-
}
|
|
355
|
-
a([
|
|
356
|
-
L(O.NOW),
|
|
357
|
-
U()
|
|
358
|
-
], ie.prototype, "value");
|
|
359
|
-
class u {
|
|
360
|
-
}
|
|
361
|
-
a([
|
|
362
|
-
n((e, t) => t !== null),
|
|
363
|
-
r()
|
|
364
|
-
], u.prototype, "addressStreet1");
|
|
365
|
-
a([
|
|
366
|
-
n((e, t) => t !== null),
|
|
367
|
-
r()
|
|
368
|
-
], u.prototype, "addressStreet2");
|
|
369
|
-
a([
|
|
370
|
-
n((e, t) => t !== null),
|
|
371
|
-
r()
|
|
372
|
-
], u.prototype, "addressCity");
|
|
373
|
-
a([
|
|
374
|
-
n((e, t) => t !== null),
|
|
375
|
-
r()
|
|
376
|
-
], u.prototype, "addressPostcode");
|
|
377
|
-
a([
|
|
378
|
-
n((e, t) => t !== null),
|
|
379
|
-
r()
|
|
380
|
-
], u.prototype, "addressState");
|
|
381
|
-
a([
|
|
382
|
-
n((e, t) => t !== null),
|
|
383
|
-
r()
|
|
384
|
-
], u.prototype, "addressCountry");
|
|
385
|
-
a([
|
|
386
|
-
n((e, t) => t !== null),
|
|
387
|
-
_()
|
|
388
|
-
], u.prototype, "addressLat");
|
|
389
|
-
a([
|
|
390
|
-
n((e, t) => t !== null),
|
|
391
|
-
_()
|
|
392
|
-
], u.prototype, "addressLng");
|
|
393
|
-
class M {
|
|
394
|
-
}
|
|
395
|
-
a([
|
|
396
|
-
r()
|
|
397
|
-
], M.prototype, "label");
|
|
398
|
-
a([
|
|
399
|
-
r()
|
|
400
|
-
], M.prototype, "url");
|
|
401
|
-
class f {
|
|
402
|
-
}
|
|
403
|
-
a([
|
|
404
|
-
n((e, t) => t !== null),
|
|
405
|
-
o()
|
|
406
|
-
], f.prototype, "primaryLinkLabel");
|
|
407
|
-
a([
|
|
408
|
-
n((e, t) => t !== null),
|
|
409
|
-
o()
|
|
410
|
-
], f.prototype, "primaryLinkUrl");
|
|
411
|
-
a([
|
|
412
|
-
n((e, t) => t !== null),
|
|
413
|
-
I()
|
|
414
|
-
], f.prototype, "secondaryLinks");
|
|
415
|
-
class N {
|
|
416
|
-
}
|
|
417
|
-
a([
|
|
418
|
-
n((e, t) => t !== null),
|
|
419
|
-
r()
|
|
420
|
-
], N.prototype, "source");
|
|
421
|
-
a([
|
|
422
|
-
n((e, t) => t !== null),
|
|
423
|
-
P(),
|
|
424
|
-
g()
|
|
425
|
-
], N.prototype, "workspaceMemberId");
|
|
426
|
-
a([
|
|
427
|
-
n((e, t) => t !== null),
|
|
428
|
-
r()
|
|
429
|
-
], N.prototype, "name");
|
|
430
|
-
class q {
|
|
431
|
-
}
|
|
432
|
-
a([
|
|
433
|
-
n((e, t) => t !== null),
|
|
434
|
-
o()
|
|
435
|
-
], q.prototype, "primaryEmail");
|
|
436
|
-
a([
|
|
437
|
-
n((e, t) => t !== null),
|
|
438
|
-
y()
|
|
439
|
-
], q.prototype, "additionalEmails");
|
|
440
|
-
class c {
|
|
441
|
-
}
|
|
442
|
-
a([
|
|
443
|
-
n((e, t) => t !== null),
|
|
444
|
-
o()
|
|
445
|
-
], c.prototype, "primaryPhoneNumber");
|
|
446
|
-
a([
|
|
447
|
-
n((e, t) => t !== null),
|
|
448
|
-
o()
|
|
449
|
-
], c.prototype, "primaryPhoneCountryCode");
|
|
450
|
-
a([
|
|
451
|
-
n((e, t) => t !== null),
|
|
452
|
-
o()
|
|
453
|
-
], c.prototype, "primaryPhoneCallingCode");
|
|
454
|
-
a([
|
|
455
|
-
n((e, t) => t !== null),
|
|
456
|
-
y()
|
|
457
|
-
], c.prototype, "additionalPhones");
|
|
458
|
-
class re {
|
|
459
|
-
}
|
|
460
|
-
a([
|
|
461
|
-
n((e, t) => t !== null),
|
|
462
|
-
I()
|
|
463
|
-
], re.prototype, "value");
|
|
464
|
-
var ue = /* @__PURE__ */ ((e) => (e.DAY = "DAY", e.MONTH = "MONTH", e.QUARTER = "QUARTER", e.YEAR = "YEAR", e.WEEK = "WEEK", e.DAY_OF_THE_WEEK = "DAY_OF_THE_WEEK", e.MONTH_OF_THE_YEAR = "MONTH_OF_THE_YEAR", e.QUARTER_OF_THE_YEAR = "QUARTER_OF_THE_YEAR", e.NONE = "NONE", e))(ue || {});
|
|
465
|
-
export {
|
|
466
|
-
f as A,
|
|
467
|
-
N as B,
|
|
468
|
-
q as C,
|
|
469
|
-
c as D,
|
|
470
|
-
re as E,
|
|
471
|
-
s as F,
|
|
472
|
-
Y as G,
|
|
473
|
-
ue as O,
|
|
474
|
-
T as a,
|
|
475
|
-
w as b,
|
|
476
|
-
x as c,
|
|
477
|
-
ce as d,
|
|
478
|
-
K as e,
|
|
479
|
-
J as f,
|
|
480
|
-
Q as g,
|
|
481
|
-
Ee as h,
|
|
482
|
-
O as i,
|
|
483
|
-
Z as j,
|
|
484
|
-
G as k,
|
|
485
|
-
F as l,
|
|
486
|
-
h as m,
|
|
487
|
-
ee as n,
|
|
488
|
-
te as o,
|
|
489
|
-
$ as p,
|
|
490
|
-
se as q,
|
|
491
|
-
z as r,
|
|
492
|
-
ae as s,
|
|
493
|
-
ne as t,
|
|
494
|
-
le as u,
|
|
495
|
-
D as v,
|
|
496
|
-
S as w,
|
|
497
|
-
oe as x,
|
|
498
|
-
ie as y,
|
|
499
|
-
u as z
|
|
500
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";const a=require("./ObjectRecordGroupByDateGranularity-BwpmSE4s.js");require("class-validator");const l={[a.FieldMetadataType.CURRENCY]:{amountMicros:"amountMicros",currencyCode:"currencyCode"},[a.FieldMetadataType.EMAILS]:{primaryEmail:"primaryEmail",additionalEmails:"additionalEmails"},[a.FieldMetadataType.LINKS]:{primaryLinkUrl:"primaryLinkUrl",primaryLinkLabel:"primaryLinkLabel",secondaryLinks:"secondaryLinks"},[a.FieldMetadataType.PHONES]:{primaryPhoneCallingCode:"primaryPhoneCallingCode",primaryPhoneCountryCode:"primaryPhoneCountryCode",primaryPhoneNumber:"primaryPhoneNumber",additionalPhones:"additionalPhones"},[a.FieldMetadataType.FULL_NAME]:{firstName:"firstName",lastName:"lastName"},[a.FieldMetadataType.ADDRESS]:{addressStreet1:"addressStreet1",addressStreet2:"addressStreet2",addressCity:"addressCity",addressState:"addressState",addressCountry:"addressCountry",addressPostcode:"addressPostcode",addressLat:"addressLat",addressLng:"addressLng"},[a.FieldMetadataType.ACTOR]:{source:"source",name:"name",workspaceMemberId:"workspaceMemberId",context:"context"},[a.FieldMetadataType.RICH_TEXT_V2]:{blocknote:"blocknote",markdown:"markdown"}},e={AED:{label:"UAE dirham"},AFN:{label:"Afghan afghani"},ALL:{label:"Albanian lek"},AMD:{label:"Armenian dram"},ANG:{label:"Netherlands Antillean guilder"},AOA:{label:"Angolan kwanza"},ARS:{label:"Argentine peso"},AUD:{label:"Australian dollar"},AWG:{label:"Aruban florin"},AZN:{label:"Azerbaijani manat"},BAM:{label:"Bosnia and Herzegovina mark"},BBD:{label:"Barbados dollar"},BDT:{label:"Bangladeshi taka"},BGN:{label:"Bulgarian lev"},BHD:{label:"Bahraini dinar"},BIF:{label:"Burundian franc"},BMD:{label:"Bermudian dollar"},BND:{label:"Brunei dollar"},BOB:{label:"Boliviano"},BRL:{label:"Brazilian real"},BSD:{label:"Bahamian dollar"},BTN:{label:"Bhutanese ngultrum"},BWP:{label:"Botswana pula"},BYN:{label:"Belarusian ruble"},BZD:{label:"Belize dollar"},CAD:{label:"Canadian dollar"},CDF:{label:"Congolese franc"},CHF:{label:"Swiss franc"},CLP:{label:"Chilean peso"},CNY:{label:"Chinese yuan"},COP:{label:"Colombian peso"},CRC:{label:"Costa Rican colon"},CUP:{label:"Cuban peso"},CVE:{label:"Cape Verdean escudo"},CZK:{label:"Czech koruna"},DJF:{label:"Djiboutian franc"},DKK:{label:"Danish krone"},DOP:{label:"Dominican peso"},DZD:{label:"Algerian Dinar"},EGP:{label:"Egyptian pound"},ERN:{label:"Eritrean nakfa"},ETB:{label:"Ethiopian birr"},EUR:{label:"Euro"},FJD:{label:"Fiji dollar"},FKP:{label:"Falkland Islands pound"},GBP:{label:"British pound"},GEL:{label:"Georgian lari"},GHS:{label:"Ghanaian cedi"},GIP:{label:"Gibraltar pound"},GMD:{label:"Gambian dalasi"},GNF:{label:"Guinean franc"},GTQ:{label:"Guatemalan quetzal"},GYD:{label:"Guyanese dollar"},HKD:{label:"Hong Kong dollar"},HNL:{label:"Honduran lempira"},HTG:{label:"Haitian gourde"},HUF:{label:"Hungarian forint"},IDR:{label:"Indonesian rupiah"},ILS:{label:"Israeli shekel"},INR:{label:"Indian rupee"},IQD:{label:"Iraqi dinar"},IRR:{label:"Iranian rial"},ISK:{label:"Icelandic króna"},JMD:{label:"Jamaican dollar"},JOD:{label:"Jordanian dinar"},JPY:{label:"Japanese yen"},KES:{label:"Kenyan shilling"},KGS:{label:"Kyrgyzstani som"},KHR:{label:"Cambodian riel"},KMF:{label:"Comoro franc"},KPW:{label:"North Korean won"},KRW:{label:"South Korean won"},KWD:{label:"Kuwaiti dinar"},KYD:{label:"Cayman Islands dollar"},KZT:{label:"Kazakhstani tenge"},LAK:{label:"Lao kip"},LBP:{label:"Lebanese pound"},LKR:{label:"Sri Lankan rupee"},LRD:{label:"Liberian dollar"},LSL:{label:"Lesotho loti"},LYD:{label:"Libyan dinar"},MAD:{label:"Moroccan dirham"},MDL:{label:"Moldovan leu"},MGA:{label:"Malagasy ariary"},MKD:{label:"Macedonian denar"},MMK:{label:"Myanmar kyat"},MNT:{label:"Mongolian tögrög"},MOP:{label:"Macanese pataca"},MRU:{label:"Mauritanian ouguiya"},MUR:{label:"Mauritian rupee"},MVR:{label:"Maldivian rufiyaa"},MWK:{label:"Malawian kwacha"},MXN:{label:"Mexican peso"},MYR:{label:"Malaysian ringgit"},MZN:{label:"Mozambican metical"},NAD:{label:"Namibian dollar"},NGN:{label:"Nigerian naira"},NIO:{label:"Nicaraguan córdoba"},NOK:{label:"Norwegian krone"},NPR:{label:"Nepalese rupee"},NZD:{label:"New Zealand dollar"},OMR:{label:"Omani rial"},PAB:{label:"Panamanian balboa"},PEN:{label:"Peruvian sol"},PGK:{label:"Papua New Guinean kina"},PHP:{label:"Philippine peso"},PKR:{label:"Pakistani rupee"},PLN:{label:"Polish złoty"},PYG:{label:"Paraguayan guaraní"},QAR:{label:"Qatari riyal"},RON:{label:"Romanian leu"},RSD:{label:"Serbian dinar"},RUB:{label:"Russian ruble"},RWF:{label:"Rwandan franc"},SAR:{label:"Saudi riyal"},SBD:{label:"Solomon Islands dollar"},SCR:{label:"Seychelles rupee"},SDG:{label:"Sudanese pound"},SEK:{label:"Swedish krona"},SGD:{label:"Singapore dollar"},SHP:{label:"Saint Helena pound"},SLE:{label:"Sierra Leonean leone"},SOS:{label:"Somalian shilling"},SRD:{label:"Surinamese dollar"},SSP:{label:"South Sudanese pound"},STN:{label:"São Tomé and Príncipe dobra"},SVC:{label:"Salvadoran colón"},SYP:{label:"Syrian pound"},SZL:{label:"Swazi lilangeni"},THB:{label:"Thai Baht"},TJS:{label:"Tajikistani somoni"},TMT:{label:"Turkmenistan manat"},TND:{label:"Tunisian dinar"},TOP:{label:"Tongan paʻanga"},TRY:{label:"Turkish lira"},TTD:{label:"Trinidad and Tobago dollar"},TWD:{label:"Taiwanese dollar"},TZS:{label:"Tanzanian shilling"},UAH:{label:"Ukrainian hryvnia"},UGX:{label:"Ugandan shilling"},USD:{label:"United States dollar"},UYU:{label:"Uruguayan peso"},UZS:{label:"Uzbekistani sum"},VES:{label:"Venezuelan bolívar"},VND:{label:"Vietnamese đồng"},VUV:{label:"Vanuatu vatu"},WST:{label:"Samoan tala"},XOF:{label:"West African CFA franc"},XCD:{label:"East Caribbean dollar"},YER:{label:"Yemeni rial"},ZAR:{label:"South African rand"},ZMW:{label:"Zambian kwacha"},ZWG:{label:"Zimbabwe Gold"}},n=[a.ObjectRecordGroupByDateGranularity.DAY,a.ObjectRecordGroupByDateGranularity.WEEK,a.ObjectRecordGroupByDateGranularity.MONTH,a.ObjectRecordGroupByDateGranularity.QUARTER,a.ObjectRecordGroupByDateGranularity.YEAR],r=[a.FieldMetadataType.TEXT,a.FieldMetadataType.FULL_NAME,a.FieldMetadataType.UUID],i=["RATING_1","RATING_2","RATING_3","RATING_4","RATING_5"];exports.COMPOSITE_FIELD_TYPE_SUB_FIELDS_NAMES=l;exports.CURRENCY_CODE_LABELS=e;exports.GROUP_BY_DATE_GRANULARITY_THAT_REQUIRE_TIME_ZONE=n;exports.LABEL_IDENTIFIER_FIELD_METADATA_TYPES=r;exports.RATING_VALUES=i;
|