twenty-sdk 0.3.1 → 0.4.1
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 -9469
- 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 +155 -0
- package/dist/front-component.mjs +23453 -0
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +2197 -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-BSOjxfFi.mjs +7 -0
- package/dist/types-DqLnNRPE.js +1 -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 +2206 -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 +2039 -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 +15 -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/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 +22 -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/dist/vendor/twenty-ui/AllIcons-CGPKtPQS.js +4188 -0
- package/dist/vendor/twenty-ui/AllIcons-CcTQbSjc.cjs +1 -0
- package/dist/vendor/twenty-ui/Animation-Dqlz22Qp.cjs +1 -0
- package/dist/vendor/twenty-ui/Animation-W4Sjfu-g.js +11 -0
- package/dist/vendor/twenty-ui/Avatar-Cg4dvBA_.js +130 -0
- package/dist/vendor/twenty-ui/Avatar-zyamQwOj.cjs +1 -0
- package/dist/vendor/twenty-ui/Button-BChGSHVB.js +257 -0
- package/dist/vendor/twenty-ui/Button-PLd38fEI.cjs +24 -0
- package/dist/vendor/twenty-ui/ColorSample-BEUix7Ah.cjs +16 -0
- package/dist/vendor/twenty-ui/ColorSample-Bp-he5lO.js +28 -0
- package/dist/vendor/twenty-ui/HoverBackground-D630rSrX.cjs +1 -0
- package/dist/vendor/twenty-ui/HoverBackground-bYDC0iDZ.js +5 -0
- package/dist/vendor/twenty-ui/Loader-9V3BLpiM.cjs +2 -0
- package/dist/vendor/twenty-ui/Loader-BmJ693nz.js +43 -0
- package/dist/vendor/twenty-ui/MainColorNames-DNUaoKmR.cjs +1 -0
- package/dist/vendor/twenty-ui/MainColorNames-O_b9E7H3.js +5 -0
- package/dist/vendor/twenty-ui/MainColorsLight-GOpmobTe.cjs +1 -0
- package/dist/vendor/twenty-ui/MainColorsLight-x_vjLhiq.js +1682 -0
- package/dist/vendor/twenty-ui/MobileViewport-BcwxurOJ.cjs +1 -0
- package/dist/vendor/twenty-ui/MobileViewport-CDXq37n6.js +4 -0
- package/dist/vendor/twenty-ui/OverflowingTextWithTooltip-1P96Lw-o.cjs +1 -0
- package/dist/vendor/twenty-ui/OverflowingTextWithTooltip-F-KEqUMB.js +132 -0
- package/dist/vendor/twenty-ui/Pill-C3ErQi9y.js +16 -0
- package/dist/vendor/twenty-ui/Pill-D732nsLI.cjs +1 -0
- package/dist/vendor/twenty-ui/Tag-CfX8tARK.js +99 -0
- package/dist/vendor/twenty-ui/Tag-DIE1bmT7.cjs +1 -0
- package/dist/vendor/twenty-ui/ThemeCommon-BiQXECTo.cjs +1 -0
- package/dist/vendor/twenty-ui/ThemeCommon-CUpBXrDJ.js +867 -0
- package/dist/vendor/twenty-ui/ThemeContextProvider-DRVSWXAb.js +26 -0
- package/dist/vendor/twenty-ui/ThemeContextProvider-DZWArlAl.cjs +1 -0
- package/dist/vendor/twenty-ui/Toggle-8vjP6D_0.cjs +4 -0
- package/dist/vendor/twenty-ui/Toggle-Bd3-khQW.js +169 -0
- package/dist/vendor/twenty-ui/VisibilityHidden-Bkyg_zrv.cjs +1 -0
- package/dist/vendor/twenty-ui/VisibilityHidden-D9rwE91j.js +11 -0
- package/dist/vendor/twenty-ui/VisibilityHiddenInput-B3xu3qIM.cjs +1 -0
- package/dist/vendor/twenty-ui/VisibilityHiddenInput-CpO8FZey.js +8 -0
- package/dist/vendor/twenty-ui/accessibility/components/VisibilityHidden.d.ts +4 -0
- package/dist/vendor/twenty-ui/accessibility/components/VisibilityHidden.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/accessibility/components/VisibilityHiddenInput.d.ts +5 -0
- package/dist/vendor/twenty-ui/accessibility/components/VisibilityHiddenInput.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/accessibility/index.d.ts +4 -0
- package/dist/vendor/twenty-ui/accessibility/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/accessibility/utils/visibility-hidden.d.ts +2 -0
- package/dist/vendor/twenty-ui/accessibility/utils/visibility-hidden.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/accessibility.cjs +1 -0
- package/dist/vendor/twenty-ui/accessibility.mjs +8 -0
- package/dist/vendor/twenty-ui/assets/index.d.ts +1 -0
- package/dist/vendor/twenty-ui/assets/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/assets.cjs +1 -0
- package/dist/vendor/twenty-ui/assets.mjs +1 -0
- package/dist/vendor/twenty-ui/components/Pill/Pill.d.ts +10 -0
- package/dist/vendor/twenty-ui/components/Pill/Pill.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/components/avatar-chip/AvatarChip.d.ts +18 -0
- package/dist/vendor/twenty-ui/components/avatar-chip/AvatarChip.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/components/avatar-chip/MultipleAvatarChip.d.ts +15 -0
- package/dist/vendor/twenty-ui/components/avatar-chip/MultipleAvatarChip.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/components/chip/Chip.d.ts +34 -0
- package/dist/vendor/twenty-ui/components/chip/Chip.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/components/chip/LinkChip.d.ts +13 -0
- package/dist/vendor/twenty-ui/components/chip/LinkChip.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/components/chip/constants/LinkChipClickOutsideId.d.ts +2 -0
- package/dist/vendor/twenty-ui/components/chip/constants/LinkChipClickOutsideId.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/components/index.d.ts +13 -0
- package/dist/vendor/twenty-ui/components/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/components/tag/Tag.d.ts +20 -0
- package/dist/vendor/twenty-ui/components/tag/Tag.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/components.cjs +1 -0
- package/dist/vendor/twenty-ui/components.mjs +235 -0
- package/dist/vendor/twenty-ui/config-D3RPmuwk.cjs +1 -0
- package/dist/vendor/twenty-ui/config-D9UgCg2c.js +18 -0
- package/dist/vendor/twenty-ui/createState---bO_WLW.cjs +1 -0
- package/dist/vendor/twenty-ui/createState-DvtGszbK.js +9 -0
- package/dist/vendor/twenty-ui/display/avatar/components/Avatar.d.ts +20 -0
- package/dist/vendor/twenty-ui/display/avatar/components/Avatar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/avatar/components/AvatarGroup.d.ts +7 -0
- package/dist/vendor/twenty-ui/display/avatar/components/AvatarGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/avatar/components/states/isInvalidAvatarUrlState.d.ts +2 -0
- package/dist/vendor/twenty-ui/display/avatar/components/states/isInvalidAvatarUrlState.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/avatar/constants/AvatarPropertiesBySize.d.ts +23 -0
- package/dist/vendor/twenty-ui/display/avatar/constants/AvatarPropertiesBySize.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/avatar/types/AvatarSize.d.ts +2 -0
- package/dist/vendor/twenty-ui/display/avatar/types/AvatarSize.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/avatar/types/AvatarType.d.ts +2 -0
- package/dist/vendor/twenty-ui/display/avatar/types/AvatarType.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/banner/components/Banner.d.ts +9 -0
- package/dist/vendor/twenty-ui/display/banner/components/Banner.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/banner/components/SidePanelInformationBanner.d.ts +8 -0
- package/dist/vendor/twenty-ui/display/banner/components/SidePanelInformationBanner.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/checkmark/components/AnimatedCheckmark.d.ts +10 -0
- package/dist/vendor/twenty-ui/display/checkmark/components/AnimatedCheckmark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/checkmark/components/Checkmark.d.ts +7 -0
- package/dist/vendor/twenty-ui/display/checkmark/components/Checkmark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/color/components/ColorSample.d.ts +14 -0
- package/dist/vendor/twenty-ui/display/color/components/ColorSample.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/command-block/components/CommandBlock.d.ts +9 -0
- package/dist/vendor/twenty-ui/display/command-block/components/CommandBlock.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconAddressBook.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconAddressBook.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconChartBarHorizontal.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconChartBarHorizontal.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconGmail.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconGmail.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconGoogle.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconGoogle.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconGoogleCalendar.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconGoogleCalendar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconLock.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconLock.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoft.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoft.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoftCalendar.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoftCalendar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoftOutlook.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoftOutlook.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconRelationManyToOne.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconRelationManyToOne.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconTrashXOff.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconTrashXOff.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconTwentyStar.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconTwentyStar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconTwentyStarFilled.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconTwentyStarFilled.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconArray.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconArray.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCalendarEvent.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCalendarEvent.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCalendarTime.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCalendarTime.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCurrency.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCurrency.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconFile.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconFile.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconJson.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconJson.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconLink.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconMail.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconMail.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconManyToMany.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconManyToMany.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconMap.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconMap.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconNumbers.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconNumbers.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconOneToMany.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconOneToMany.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconOneToOne.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconOneToOne.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconPhone.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconPhone.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconSetting.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconSetting.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconStar.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconStar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconTag.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconTag.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconTags.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconTags.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconText.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconText.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconToggle.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconToggle.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconUid.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconUid.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconUser.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconUser.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconWrapper.d.ts +5 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconWrapper.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/TablerIcons.d.ts +3 -0
- package/dist/vendor/twenty-ui/display/icon/components/TablerIcons.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/hooks/useIcons.d.ts +5 -0
- package/dist/vendor/twenty-ui/display/icon/hooks/useIcons.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/providers/IconsProvider.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/providers/IconsProvider.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/providers/internal/AllIcons.d.ts +4185 -0
- package/dist/vendor/twenty-ui/display/icon/providers/internal/AllIcons.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/states/iconsState.d.ts +4 -0
- package/dist/vendor/twenty-ui/display/icon/states/iconsState.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/types/IconComponent.d.ts +11 -0
- package/dist/vendor/twenty-ui/display/icon/types/IconComponent.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/index.d.ts +76 -0
- package/dist/vendor/twenty-ui/display/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/info/components/Info.d.ts +12 -0
- package/dist/vendor/twenty-ui/display/info/components/Info.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/status/components/Status.d.ts +13 -0
- package/dist/vendor/twenty-ui/display/status/components/Status.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/text/components/HorizontalSeparator.d.ts +11 -0
- package/dist/vendor/twenty-ui/display/text/components/HorizontalSeparator.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/text/components/SeparatorLineText.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/text/components/SeparatorLineText.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/tooltip/AppTooltip.d.ts +31 -0
- package/dist/vendor/twenty-ui/display/tooltip/AppTooltip.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/tooltip/OverflowingTextWithTooltip.d.ts +16 -0
- package/dist/vendor/twenty-ui/display/tooltip/OverflowingTextWithTooltip.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/typography/components/H1Title.d.ts +15 -0
- package/dist/vendor/twenty-ui/display/typography/components/H1Title.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/typography/components/H2Title.d.ts +9 -0
- package/dist/vendor/twenty-ui/display/typography/components/H2Title.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/typography/components/H3Title.d.ts +10 -0
- package/dist/vendor/twenty-ui/display/typography/components/H3Title.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/typography/components/Label.d.ts +9 -0
- package/dist/vendor/twenty-ui/display/typography/components/Label.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/typography/components/StyledText.d.ts +20 -0
- package/dist/vendor/twenty-ui/display/typography/components/StyledText.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display.cjs +8 -0
- package/dist/vendor/twenty-ui/display.mjs +1194 -0
- package/dist/vendor/twenty-ui/emotion-react-jsx-runtime.browser.esm-BUNawPtg.js +1765 -0
- package/dist/vendor/twenty-ui/emotion-react-jsx-runtime.browser.esm-pt_kQSCG.cjs +44 -0
- package/dist/vendor/twenty-ui/feedback/index.d.ts +6 -0
- package/dist/vendor/twenty-ui/feedback/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/feedback/loader/components/Loader.d.ts +8 -0
- package/dist/vendor/twenty-ui/feedback/loader/components/Loader.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/feedback/progress-bar/components/CircularProgressBar.d.ts +8 -0
- package/dist/vendor/twenty-ui/feedback/progress-bar/components/CircularProgressBar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/feedback/progress-bar/components/ProgressBar.d.ts +14 -0
- package/dist/vendor/twenty-ui/feedback/progress-bar/components/ProgressBar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/feedback/progress-bar/hooks/useProgressAnimation.d.ts +13 -0
- package/dist/vendor/twenty-ui/feedback/progress-bar/hooks/useProgressAnimation.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/feedback.cjs +1 -0
- package/dist/vendor/twenty-ui/feedback.mjs +124 -0
- package/dist/vendor/twenty-ui/getDisplayValueByUrlType-BMzTxZmB.cjs +1 -0
- package/dist/vendor/twenty-ui/getDisplayValueByUrlType-BqPVhhu2.js +20 -0
- package/dist/vendor/twenty-ui/index.cjs +1 -0
- package/dist/vendor/twenty-ui/index.d.ts +3 -0
- package/dist/vendor/twenty-ui/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/index.mjs +4 -0
- package/dist/vendor/twenty-ui/input/button/components/AnimatedButton.d.ts +9 -0
- package/dist/vendor/twenty-ui/input/button/components/AnimatedButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/AnimatedLightIconButton.d.ts +19 -0
- package/dist/vendor/twenty-ui/input/button/components/AnimatedLightIconButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/Button.d.ts +32 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/Button.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/constant.d.ts +2 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/constant.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonHotKeys.d.ts +9 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonHotKeys.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonIcon.d.ts +7 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonIcon.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonSoon.d.ts +6 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonSoon.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonText.d.ts +6 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonText.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/ButtonGroup.d.ts +9 -0
- package/dist/vendor/twenty-ui/input/button/components/ButtonGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/ColorPickerButton.d.ts +9 -0
- package/dist/vendor/twenty-ui/input/button/components/ColorPickerButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/FloatingButton.d.ts +18 -0
- package/dist/vendor/twenty-ui/input/button/components/FloatingButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/FloatingButtonGroup.d.ts +9 -0
- package/dist/vendor/twenty-ui/input/button/components/FloatingButtonGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/FloatingIconButton.d.ts +19 -0
- package/dist/vendor/twenty-ui/input/button/components/FloatingIconButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/FloatingIconButtonGroup.d.ts +13 -0
- package/dist/vendor/twenty-ui/input/button/components/FloatingIconButtonGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/IconButton.d.ts +23 -0
- package/dist/vendor/twenty-ui/input/button/components/IconButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/IconButtonGroup.d.ts +13 -0
- package/dist/vendor/twenty-ui/input/button/components/IconButtonGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/InsideButton.d.ts +11 -0
- package/dist/vendor/twenty-ui/input/button/components/InsideButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/LightButton.d.ts +17 -0
- package/dist/vendor/twenty-ui/input/button/components/LightButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/LightIconButton.d.ts +19 -0
- package/dist/vendor/twenty-ui/input/button/components/LightIconButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/LightIconButtonGroup.d.ts +19 -0
- package/dist/vendor/twenty-ui/input/button/components/LightIconButtonGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/MainButton.d.ts +19 -0
- package/dist/vendor/twenty-ui/input/button/components/MainButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/RoundedIconButton.d.ts +8 -0
- package/dist/vendor/twenty-ui/input/button/components/RoundedIconButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/TabButton/TabButton.d.ts +21 -0
- package/dist/vendor/twenty-ui/input/button/components/TabButton/TabButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/TabButton/internals/components/StyledTabBase.d.ts +22 -0
- package/dist/vendor/twenty-ui/input/button/components/TabButton/internals/components/StyledTabBase.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/TabButton/internals/components/TabContent.d.ts +17 -0
- package/dist/vendor/twenty-ui/input/button/components/TabButton/internals/components/TabContent.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/code-editor/components/CodeEditor.d.ts +14 -0
- package/dist/vendor/twenty-ui/input/code-editor/components/CodeEditor.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/code-editor/components/CodeEditorHeader.d.ts +7 -0
- package/dist/vendor/twenty-ui/input/code-editor/components/CodeEditorHeader.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/code-editor/constants/BaseCodeEditorThemeId.d.ts +2 -0
- package/dist/vendor/twenty-ui/input/code-editor/constants/BaseCodeEditorThemeId.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/code-editor/index.d.ts +4 -0
- package/dist/vendor/twenty-ui/input/code-editor/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/code-editor/theme/utils/getBaseCodeEditorTheme.d.ts +7 -0
- package/dist/vendor/twenty-ui/input/code-editor/theme/utils/getBaseCodeEditorTheme.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/color-scheme/components/ColorSchemeCard.d.ts +15 -0
- package/dist/vendor/twenty-ui/input/color-scheme/components/ColorSchemeCard.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/color-scheme/components/ColorSchemePicker.d.ts +12 -0
- package/dist/vendor/twenty-ui/input/color-scheme/components/ColorSchemePicker.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/components/CardPicker.d.ts +10 -0
- package/dist/vendor/twenty-ui/input/components/CardPicker.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/components/Checkbox.d.ts +34 -0
- package/dist/vendor/twenty-ui/input/components/Checkbox.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/components/IconListViewGrip.d.ts +6 -0
- package/dist/vendor/twenty-ui/input/components/IconListViewGrip.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/components/Radio.d.ts +33 -0
- package/dist/vendor/twenty-ui/input/components/Radio.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/components/RadioGroup.d.ts +10 -0
- package/dist/vendor/twenty-ui/input/components/RadioGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/components/SearchInput.d.ts +13 -0
- package/dist/vendor/twenty-ui/input/components/SearchInput.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/components/Toggle.d.ts +12 -0
- package/dist/vendor/twenty-ui/input/components/Toggle.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/index.d.ts +59 -0
- package/dist/vendor/twenty-ui/input/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/types/ColorScheme.d.ts +2 -0
- package/dist/vendor/twenty-ui/input/types/ColorScheme.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/types/SelectOption.d.ts +12 -0
- package/dist/vendor/twenty-ui/input/types/SelectOption.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input.cjs +179 -0
- package/dist/vendor/twenty-ui/input.mjs +1247 -0
- package/dist/vendor/twenty-ui/isValidCountryCode-Dyji5s5r-B7O5eJvP.js +10526 -0
- package/dist/vendor/twenty-ui/isValidCountryCode-Dyji5s5r-MH68p3NE.cjs +25 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonArrayNode.d.ts +11 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonArrayNode.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonNestedNode.d.ts +19 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonNestedNode.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonNode.d.ts +9 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonNode.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonObjectNode.d.ts +11 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonObjectNode.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonTree.d.ts +16 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonTree.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonTreeContextProvider.d.ts +7 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonTreeContextProvider.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonValueNode.d.ts +16 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonValueNode.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonArrow.d.ts +6 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonArrow.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonList.d.ts +8 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonList.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonListItem.d.ts +6 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonListItem.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonNodeLabel.d.ts +9 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonNodeLabel.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonNodeValue.d.ts +7 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonNodeValue.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/contexts/JsonTreeContext.d.ts +18 -0
- package/dist/vendor/twenty-ui/json-visualizer/contexts/JsonTreeContext.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/hooks/useJsonTreeContextOrThrow.d.ts +2 -0
- package/dist/vendor/twenty-ui/json-visualizer/hooks/useJsonTreeContextOrThrow.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/index.d.ts +15 -0
- package/dist/vendor/twenty-ui/json-visualizer/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/types/GetJsonNodeHighlighting.d.ts +4 -0
- package/dist/vendor/twenty-ui/json-visualizer/types/GetJsonNodeHighlighting.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/types/JsonNodeHighlighting.d.ts +4 -0
- package/dist/vendor/twenty-ui/json-visualizer/types/JsonNodeHighlighting.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/utils/isArray.d.ts +2 -0
- package/dist/vendor/twenty-ui/json-visualizer/utils/isArray.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/utils/isTwoFirstDepths.d.ts +4 -0
- package/dist/vendor/twenty-ui/json-visualizer/utils/isTwoFirstDepths.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer.cjs +7 -0
- package/dist/vendor/twenty-ui/json-visualizer.mjs +271 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/components/AnimatedExpandableContainer.d.ts +17 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/components/AnimatedExpandableContainer.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDimension.d.ts +2 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDimension.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDurationObject.d.ts +5 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDurationObject.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDurations.d.ts +4 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDurations.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationMode.d.ts +2 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationMode.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationSize.d.ts +2 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationSize.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getCommonStyles.d.ts +16 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getCommonStyles.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getExpandableAnimationConfig.d.ts +45 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getExpandableAnimationConfig.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getTransitionValues.d.ts +15 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getTransitionValues.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/components/AnimatedPlaceholder.d.ts +10 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/components/AnimatedPlaceholder.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/components/EmptyPlaceholderStyled.d.ts +31 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/components/EmptyPlaceholderStyled.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/components/ErrorPlaceholderStyled.d.ts +21 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/components/ErrorPlaceholderStyled.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/Background.d.ts +2 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/Background.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/DarkBackground.d.ts +2 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/DarkBackground.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/DarkMovingImage.d.ts +2 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/DarkMovingImage.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/MovingImage.d.ts +2 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/MovingImage.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/index.d.ts +8 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/card/components/Card.d.ts +9 -0
- package/dist/vendor/twenty-ui/layout/card/components/Card.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/card/components/CardContent.d.ts +7 -0
- package/dist/vendor/twenty-ui/layout/card/components/CardContent.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/card/components/CardFooter.d.ts +8 -0
- package/dist/vendor/twenty-ui/layout/card/components/CardFooter.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/card/components/CardHeader.d.ts +6 -0
- package/dist/vendor/twenty-ui/layout/card/components/CardHeader.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/index.d.ts +23 -0
- package/dist/vendor/twenty-ui/layout/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/section/components/Section.d.ts +21 -0
- package/dist/vendor/twenty-ui/layout/section/components/Section.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout.cjs +6 -0
- package/dist/vendor/twenty-ui/layout.mjs +266 -0
- package/dist/vendor/twenty-ui/navigation/index.d.ts +43 -0
- package/dist/vendor/twenty-ui/navigation/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/AdvancedSettingsToggle.d.ts +8 -0
- package/dist/vendor/twenty-ui/navigation/link/components/AdvancedSettingsToggle.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/ClickToActionLink.d.ts +8 -0
- package/dist/vendor/twenty-ui/navigation/link/components/ClickToActionLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/ContactLink.d.ts +10 -0
- package/dist/vendor/twenty-ui/navigation/link/components/ContactLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/GithubVersionLink.d.ts +6 -0
- package/dist/vendor/twenty-ui/navigation/link/components/GithubVersionLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/RawLink.d.ts +10 -0
- package/dist/vendor/twenty-ui/navigation/link/components/RawLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/RoundedLink.d.ts +9 -0
- package/dist/vendor/twenty-ui/navigation/link/components/RoundedLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/SocialLink.d.ts +16 -0
- package/dist/vendor/twenty-ui/navigation/link/components/SocialLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/UndecoratedLink.d.ts +12 -0
- package/dist/vendor/twenty-ui/navigation/link/components/UndecoratedLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/index.d.ts +9 -0
- package/dist/vendor/twenty-ui/navigation/link/components/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/constants/Cal.d.ts +2 -0
- package/dist/vendor/twenty-ui/navigation/link/constants/Cal.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/constants/GithubLink.d.ts +2 -0
- package/dist/vendor/twenty-ui/navigation/link/constants/GithubLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/constants/TwentyPricingLink.d.ts +2 -0
- package/dist/vendor/twenty-ui/navigation/link/constants/TwentyPricingLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/index.d.ts +4 -0
- package/dist/vendor/twenty-ui/navigation/link/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/components/MenuPicker.d.ts +18 -0
- package/dist/vendor/twenty-ui/navigation/menu/components/MenuPicker.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/components/index.d.ts +2 -0
- package/dist/vendor/twenty-ui/navigation/menu/components/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/index.d.ts +3 -0
- package/dist/vendor/twenty-ui/navigation/menu/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItem.d.ts +41 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItem.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemAvatar.d.ts +22 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemAvatar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemDraggable.d.ts +21 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemDraggable.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemHotKeys.d.ts +6 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemHotKeys.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelect.d.ts +16 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelect.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelectAvatar.d.ts +14 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelectAvatar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelectTag.d.ts +15 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelectTag.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemNavigate.d.ts +11 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemNavigate.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelect.d.ts +29 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelect.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectAvatar.d.ts +16 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectAvatar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectColor.d.ts +17 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectColor.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectTag.d.ts +17 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectTag.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSuggestion.d.ts +13 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSuggestion.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemToggle.d.ts +16 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemToggle.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/index.d.ts +16 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/index.d.ts +5 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/internals/components/MenuItemLeftContent.d.ts +17 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/internals/components/MenuItemLeftContent.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/internals/components/StyledMenuItemBase.d.ts +64 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/internals/components/StyledMenuItemBase.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/types/MenuItemAccent.d.ts +2 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/types/MenuItemAccent.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/navigation-bar/components/NavigationBar.d.ts +13 -0
- package/dist/vendor/twenty-ui/navigation/navigation-bar/components/NavigationBar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/navigation-bar/components/NavigationBarItem.d.ts +10 -0
- package/dist/vendor/twenty-ui/navigation/navigation-bar/components/NavigationBarItem.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/notification-counter/components/NotificationCounter.d.ts +8 -0
- package/dist/vendor/twenty-ui/navigation/notification-counter/components/NotificationCounter.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation.cjs +42 -0
- package/dist/vendor/twenty-ui/navigation.mjs +887 -0
- package/dist/vendor/twenty-ui/style.css +1 -0
- package/dist/vendor/twenty-ui/testing/ComponentStorybookLayout.d.ts +9 -0
- package/dist/vendor/twenty-ui/testing/ComponentStorybookLayout.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing/decorators/CatalogDecorator.d.ts +18 -0
- package/dist/vendor/twenty-ui/testing/decorators/CatalogDecorator.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing/decorators/ComponentDecorator.d.ts +4 -0
- package/dist/vendor/twenty-ui/testing/decorators/ComponentDecorator.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing/decorators/ComponentWithRouterDecorator.d.ts +11 -0
- package/dist/vendor/twenty-ui/testing/decorators/ComponentWithRouterDecorator.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing/decorators/RecoilRootDecorator.d.ts +4 -0
- package/dist/vendor/twenty-ui/testing/decorators/RecoilRootDecorator.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing/decorators/RouterDecorator.d.ts +4 -0
- package/dist/vendor/twenty-ui/testing/decorators/RouterDecorator.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing/index.d.ts +11 -0
- package/dist/vendor/twenty-ui/testing/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing/mocks/avatarUrlMock.d.ts +2 -0
- package/dist/vendor/twenty-ui/testing/mocks/avatarUrlMock.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing/types/CatalogStory.d.ts +18 -0
- package/dist/vendor/twenty-ui/testing/types/CatalogStory.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing.cjs +3 -0
- package/dist/vendor/twenty-ui/testing.mjs +156 -0
- package/dist/vendor/twenty-ui/theme/constants/AccentDark.d.ts +21 -0
- package/dist/vendor/twenty-ui/theme/constants/AccentDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/AccentLight.d.ts +21 -0
- package/dist/vendor/twenty-ui/theme/constants/AccentLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/Animation.d.ts +10 -0
- package/dist/vendor/twenty-ui/theme/constants/Animation.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BackgroundDark.d.ts +30 -0
- package/dist/vendor/twenty-ui/theme/constants/BackgroundDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BackgroundLight.d.ts +30 -0
- package/dist/vendor/twenty-ui/theme/constants/BackgroundLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BlurDark.d.ts +6 -0
- package/dist/vendor/twenty-ui/theme/constants/BlurDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BlurLight.d.ts +6 -0
- package/dist/vendor/twenty-ui/theme/constants/BlurLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BorderCommon.d.ts +12 -0
- package/dist/vendor/twenty-ui/theme/constants/BorderCommon.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BorderDark.d.ts +22 -0
- package/dist/vendor/twenty-ui/theme/constants/BorderDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BorderLight.d.ts +22 -0
- package/dist/vendor/twenty-ui/theme/constants/BorderLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BoxShadowDark.d.ts +8 -0
- package/dist/vendor/twenty-ui/theme/constants/BoxShadowDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BoxShadowLight.d.ts +8 -0
- package/dist/vendor/twenty-ui/theme/constants/BoxShadowLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/CodeDark.d.ts +13 -0
- package/dist/vendor/twenty-ui/theme/constants/CodeDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/CodeLight.d.ts +13 -0
- package/dist/vendor/twenty-ui/theme/constants/CodeLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/ColorsDark.d.ts +750 -0
- package/dist/vendor/twenty-ui/theme/constants/ColorsDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/ColorsLight.d.ts +750 -0
- package/dist/vendor/twenty-ui/theme/constants/ColorsLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/FontCommon.d.ts +18 -0
- package/dist/vendor/twenty-ui/theme/constants/FontCommon.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/FontDark.d.ts +27 -0
- package/dist/vendor/twenty-ui/theme/constants/FontDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/FontLight.d.ts +27 -0
- package/dist/vendor/twenty-ui/theme/constants/FontLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/GrayScaleDark.d.ts +15 -0
- package/dist/vendor/twenty-ui/theme/constants/GrayScaleDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/GrayScaleDarkAlpha.d.ts +15 -0
- package/dist/vendor/twenty-ui/theme/constants/GrayScaleDarkAlpha.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/GrayScaleLight.d.ts +15 -0
- package/dist/vendor/twenty-ui/theme/constants/GrayScaleLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/GrayScaleLightAlpha.d.ts +15 -0
- package/dist/vendor/twenty-ui/theme/constants/GrayScaleLightAlpha.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/HoverBackground.d.ts +2 -0
- package/dist/vendor/twenty-ui/theme/constants/HoverBackground.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/Icon.d.ts +14 -0
- package/dist/vendor/twenty-ui/theme/constants/Icon.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/IllustrationIconDark.d.ts +11 -0
- package/dist/vendor/twenty-ui/theme/constants/IllustrationIconDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/IllustrationIconLight.d.ts +11 -0
- package/dist/vendor/twenty-ui/theme/constants/IllustrationIconLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/MainColorNames.d.ts +5 -0
- package/dist/vendor/twenty-ui/theme/constants/MainColorNames.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/MainColorsDark.d.ts +28 -0
- package/dist/vendor/twenty-ui/theme/constants/MainColorsDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/MainColorsLight.d.ts +28 -0
- package/dist/vendor/twenty-ui/theme/constants/MainColorsLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/MobileViewport.d.ts +2 -0
- package/dist/vendor/twenty-ui/theme/constants/MobileViewport.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/Modal.d.ts +9 -0
- package/dist/vendor/twenty-ui/theme/constants/Modal.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/Rgba.d.ts +2 -0
- package/dist/vendor/twenty-ui/theme/constants/Rgba.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/SecondaryColorsDark.d.ts +363 -0
- package/dist/vendor/twenty-ui/theme/constants/SecondaryColorsDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/SecondaryColorsLight.d.ts +363 -0
- package/dist/vendor/twenty-ui/theme/constants/SecondaryColorsLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/SnackBarDark.d.ts +23 -0
- package/dist/vendor/twenty-ui/theme/constants/SnackBarDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/SnackBarLight.d.ts +23 -0
- package/dist/vendor/twenty-ui/theme/constants/SnackBarLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/TagDark.d.ts +67 -0
- package/dist/vendor/twenty-ui/theme/constants/TagDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/TagLight.d.ts +67 -0
- package/dist/vendor/twenty-ui/theme/constants/TagLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/Text.d.ts +12 -0
- package/dist/vendor/twenty-ui/theme/constants/Text.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/TextInputStyle.d.ts +6 -0
- package/dist/vendor/twenty-ui/theme/constants/TextInputStyle.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/ThemeCommon.d.ts +57 -0
- package/dist/vendor/twenty-ui/theme/constants/ThemeCommon.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/ThemeDark.d.ts +4 -0
- package/dist/vendor/twenty-ui/theme/constants/ThemeDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/ThemeLight.d.ts +1039 -0
- package/dist/vendor/twenty-ui/theme/constants/ThemeLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/TransparentColorsDark.d.ts +363 -0
- package/dist/vendor/twenty-ui/theme/constants/TransparentColorsDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/TransparentColorsLight.d.ts +363 -0
- package/dist/vendor/twenty-ui/theme/constants/TransparentColorsLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/index.d.ts +54 -0
- package/dist/vendor/twenty-ui/theme/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/provider/ThemeContextProvider.d.ts +11 -0
- package/dist/vendor/twenty-ui/theme/provider/ThemeContextProvider.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/provider/ThemeProvider.d.ts +10 -0
- package/dist/vendor/twenty-ui/theme/provider/ThemeProvider.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/types/ThemeType.d.ts +4 -0
- package/dist/vendor/twenty-ui/theme/types/ThemeType.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/utils/getNextThemeColor.d.ts +4 -0
- package/dist/vendor/twenty-ui/theme/utils/getNextThemeColor.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/utils/themeColorSchema.d.ts +30 -0
- package/dist/vendor/twenty-ui/theme/utils/themeColorSchema.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme.cjs +1 -0
- package/dist/vendor/twenty-ui/theme.mjs +1223 -0
- package/dist/vendor/twenty-ui/themeColorSchema-CgAr-Bzv.js +6 -0
- package/dist/vendor/twenty-ui/themeColorSchema-DSPsU2O5.cjs +1 -0
- package/dist/vendor/twenty-ui/useIsMobile-DqVdogVd.js +13 -0
- package/dist/vendor/twenty-ui/useIsMobile-p7nY1Vab.cjs +1 -0
- package/dist/vendor/twenty-ui/useMouseDownNavigation-C_8Q5KFZ.cjs +1 -0
- package/dist/vendor/twenty-ui/useMouseDownNavigation-qpLZC7wJ.js +29 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedCircleLoading.d.ts +6 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedCircleLoading.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedContainer.d.ts +6 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedContainer.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedEaseIn.d.ts +9 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedEaseIn.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedEaseInOut.d.ts +13 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedEaseInOut.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedFadeOut.d.ts +12 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedFadeOut.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedRotate.d.ts +10 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedRotate.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedTextWord.d.ts +9 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedTextWord.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedTranslation.d.ts +6 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedTranslation.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/animation/index.d.ts +8 -0
- package/dist/vendor/twenty-ui/utilities/animation/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/color/utils/getMainColorNameFromPaletteColorName.d.ts +4 -0
- package/dist/vendor/twenty-ui/utilities/color/utils/getMainColorNameFromPaletteColorName.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/color/utils/stringToThemeColorP3String.d.ts +9 -0
- package/dist/vendor/twenty-ui/utilities/color/utils/stringToThemeColorP3String.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/config.d.ts +2 -0
- package/dist/vendor/twenty-ui/utilities/config.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/device/getOsControlSymbol.d.ts +2 -0
- package/dist/vendor/twenty-ui/utilities/device/getOsControlSymbol.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/device/getOsShortcutSeparator.d.ts +2 -0
- package/dist/vendor/twenty-ui/utilities/device/getOsShortcutSeparator.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/device/getUserDevice.d.ts +2 -0
- package/dist/vendor/twenty-ui/utilities/device/getUserDevice.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/dimensions/components/AutogrowWrapper.d.ts +10 -0
- package/dist/vendor/twenty-ui/utilities/dimensions/components/AutogrowWrapper.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/index.d.ts +26 -0
- package/dist/vendor/twenty-ui/utilities/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/navigation/hooks/useMouseDownNavigation.d.ts +17 -0
- package/dist/vendor/twenty-ui/utilities/navigation/hooks/useMouseDownNavigation.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/navigation/hooks/useResetLocationHash.d.ts +4 -0
- package/dist/vendor/twenty-ui/utilities/navigation/hooks/useResetLocationHash.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/navigation/isNavigationModifierPressed.d.ts +4 -0
- package/dist/vendor/twenty-ui/utilities/navigation/isNavigationModifierPressed.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/navigation/types/trigger-event.type.d.ts +2 -0
- package/dist/vendor/twenty-ui/utilities/navigation/types/trigger-event.type.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/responsive/hooks/useIsMobile.d.ts +2 -0
- package/dist/vendor/twenty-ui/utilities/responsive/hooks/useIsMobile.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/screen-size/hooks/useScreenSize.d.ts +5 -0
- package/dist/vendor/twenty-ui/utilities/screen-size/hooks/useScreenSize.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/state/utils/createState.d.ts +8 -0
- package/dist/vendor/twenty-ui/utilities/state/utils/createState.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/types/ClickOutsideAttributes.d.ts +5 -0
- package/dist/vendor/twenty-ui/utilities/types/ClickOutsideAttributes.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/types/Nullable.d.ts +2 -0
- package/dist/vendor/twenty-ui/utilities/types/Nullable.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/utils/getDisplayValueByUrlType.d.ts +9 -0
- package/dist/vendor/twenty-ui/utilities/utils/getDisplayValueByUrlType.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities.cjs +1 -0
- package/dist/vendor/twenty-ui/utilities.mjs +275 -0
- package/dist/vendor/twenty-ui/visibility-hidden-00WyuQUL.cjs +1 -0
- package/dist/vendor/twenty-ui/visibility-hidden-DANnDHvJ.js +5 -0
- package/package.json +42 -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,74 +1,75 @@
|
|
|
1
|
-
import { a as c, d as
|
|
2
|
-
import { F as
|
|
3
|
-
import { isObject as
|
|
4
|
-
import
|
|
5
|
-
import
|
|
1
|
+
import { a as c, d as ye, X as y, C as we, t as Q, e as T, b as V, r as Oe, c as P } from "./isValidCountryCode-Dyji5s5r.mjs";
|
|
2
|
+
import { F as tn, a0 as rn, _ as nn, $ as sn, p as on, V as an, W as cn, j as un, k as fn, n as dn, o as ln, l as pn, m as gn, N as hn, O as mn, P as yn, L as wn, M as On, Q as Sn, q as Dn, R as En, a1 as Nn, a5 as An, S as vn, T as bn, s as Rn, u as Tn, v as In, J as xn, U as Cn, g as Un, h as Pn, f as $n, a6 as Mn, a2 as Ln, i as _n, a3 as qn, Z as jn, a4 as Yn, Y as kn, w as Wn, x as Gn, y as Jn, z as Bn, A as Fn, B as Hn, D as Kn, E as zn, G as Zn, H as Xn, I as Qn, K as Vn } from "./isValidCountryCode-Dyji5s5r.mjs";
|
|
3
|
+
import { isObject as $, isNumber as ee, isString as Se, isNumberOrNaN as De, isNonEmptyString as D, isUndefined as v } from "@sniptt/guards";
|
|
4
|
+
import q from "handlebars";
|
|
5
|
+
import Ee from "lodash.camelcase";
|
|
6
|
+
import { F as A } from "./ObjectRecordGroupByDateGranularity-DmLx4uDl.mjs";
|
|
6
7
|
import "class-validator";
|
|
7
|
-
import { L as
|
|
8
|
-
import
|
|
9
|
-
import { generatePath as
|
|
10
|
-
import { R as
|
|
11
|
-
import { C as
|
|
12
|
-
import { F as
|
|
13
|
-
import { APP_LOCALES as
|
|
14
|
-
function
|
|
8
|
+
import { L as Ne } from "./RatingValues-CT-y6O0b.mjs";
|
|
9
|
+
import te from "qs";
|
|
10
|
+
import { generatePath as re } from "react-router-dom";
|
|
11
|
+
import { R as j, A as Y } from "./RecordFilterGroupLogicalOperator-DZy8SCuT.mjs";
|
|
12
|
+
import { C as w } from "./CalendarStartDay-izukv6nx.mjs";
|
|
13
|
+
import { F as h } from "./ViewFilterOperandDeprecated-DHNmFtYo.mjs";
|
|
14
|
+
import { APP_LOCALES as Ae } from "./translations.mjs";
|
|
15
|
+
function ve(e, t = new Error("Value not defined")) {
|
|
15
16
|
if (!c(e)) throw t;
|
|
16
17
|
}
|
|
17
|
-
const
|
|
18
|
+
const Tt = (e) => e !== null && e in Ae, ne = Symbol("micropatch-delete"), se = ["__proto__", "constructor", "prototype"], It = (e, t) => {
|
|
18
19
|
if (!c(e))
|
|
19
20
|
throw new Error("Cannot apply diff to null or undefined object");
|
|
20
21
|
if (!Array.isArray(t))
|
|
21
22
|
throw new Error("Diffs must be an array");
|
|
22
|
-
const r =
|
|
23
|
-
for (const
|
|
24
|
-
if (!(!
|
|
23
|
+
const r = Ue(e), n = [];
|
|
24
|
+
for (const s of t)
|
|
25
|
+
if (!(!s || !s.path || s.path.length === 0))
|
|
25
26
|
try {
|
|
26
|
-
|
|
27
|
-
} catch (
|
|
27
|
+
be(r, s, n);
|
|
28
|
+
} catch (o) {
|
|
28
29
|
throw new Error(
|
|
29
|
-
`Failed to apply diff at path ${
|
|
30
|
+
`Failed to apply diff at path ${s.path.join(".")}: ${o}`
|
|
30
31
|
);
|
|
31
32
|
}
|
|
32
|
-
return n.forEach((
|
|
33
|
-
},
|
|
34
|
-
const { path: n, type:
|
|
35
|
-
switch (
|
|
33
|
+
return n.forEach((s) => s()), r;
|
|
34
|
+
}, be = (e, t, r) => {
|
|
35
|
+
const { path: n, type: s } = t, o = "value" in t ? t.value : void 0, a = n.length, u = n[a - 1], f = Re(e, n);
|
|
36
|
+
switch (s) {
|
|
36
37
|
case "CREATE":
|
|
37
38
|
case "CHANGE":
|
|
38
|
-
|
|
39
|
+
Te(f, u, o);
|
|
39
40
|
break;
|
|
40
41
|
case "REMOVE":
|
|
41
|
-
|
|
42
|
+
Ie(
|
|
42
43
|
e,
|
|
43
44
|
n,
|
|
44
|
-
|
|
45
|
-
|
|
45
|
+
f,
|
|
46
|
+
u,
|
|
46
47
|
r
|
|
47
48
|
);
|
|
48
49
|
break;
|
|
49
50
|
default:
|
|
50
|
-
throw new Error(`Unsupported diff type: ${
|
|
51
|
+
throw new Error(`Unsupported diff type: ${s}`);
|
|
51
52
|
}
|
|
52
|
-
},
|
|
53
|
+
}, Re = (e, t) => {
|
|
53
54
|
let r = e;
|
|
54
55
|
for (let n = 0; n < t.length - 1; n++) {
|
|
55
|
-
const
|
|
56
|
+
const s = t[n];
|
|
56
57
|
if (r == null)
|
|
57
58
|
throw new Error(
|
|
58
59
|
`Cannot traverse path: found null/undefined at element ${n}`
|
|
59
60
|
);
|
|
60
|
-
if (
|
|
61
|
+
if (ee(s) && !Array.isArray(r))
|
|
61
62
|
throw new Error(
|
|
62
63
|
`Expected array at path element ${n}, got ${typeof r}`
|
|
63
64
|
);
|
|
64
|
-
if (
|
|
65
|
+
if (Se(s) && Array.isArray(r))
|
|
65
66
|
throw new Error(`Expected object at path element ${n}, got array`);
|
|
66
|
-
Array.isArray(r), r = r[
|
|
67
|
+
Array.isArray(r), r = r[s];
|
|
67
68
|
}
|
|
68
69
|
return r;
|
|
69
|
-
},
|
|
70
|
+
}, Te = (e, t, r) => {
|
|
70
71
|
if (Array.isArray(e)) {
|
|
71
|
-
if (!
|
|
72
|
+
if (!ee(t))
|
|
72
73
|
throw new Error(
|
|
73
74
|
`Expected numeric index for array, got ${typeof t}`
|
|
74
75
|
);
|
|
@@ -79,8 +80,8 @@ const Qe = (e) => e !== null && e in ue, K = Symbol("micropatch-delete"), H = ["
|
|
|
79
80
|
`Cannot set array element at index ${t}: ${n}. Array may be non-extensible.`
|
|
80
81
|
);
|
|
81
82
|
}
|
|
82
|
-
} else if (
|
|
83
|
-
if (
|
|
83
|
+
} else if ($(e)) {
|
|
84
|
+
if (se.includes(t))
|
|
84
85
|
throw new Error(
|
|
85
86
|
`Refusing to set forbidden property key '${t}' on object (prototype pollution protection)`
|
|
86
87
|
);
|
|
@@ -93,567 +94,1002 @@ const Qe = (e) => e !== null && e in ue, K = Symbol("micropatch-delete"), H = ["
|
|
|
93
94
|
}
|
|
94
95
|
} else
|
|
95
96
|
throw new Error(`Expected object or array, got ${typeof e}`);
|
|
96
|
-
},
|
|
97
|
-
Array.isArray(r) ?
|
|
97
|
+
}, Ie = (e, t, r, n, s) => {
|
|
98
|
+
Array.isArray(r) ? xe(
|
|
98
99
|
e,
|
|
99
100
|
t,
|
|
100
101
|
r,
|
|
101
102
|
n,
|
|
102
|
-
|
|
103
|
-
) :
|
|
104
|
-
},
|
|
103
|
+
s
|
|
104
|
+
) : Ce(r, n);
|
|
105
|
+
}, xe = (e, t, r, n, s) => {
|
|
105
106
|
if (typeof n != "number")
|
|
106
107
|
throw new Error(
|
|
107
108
|
`Expected numeric index for array removal, got ${typeof n}`
|
|
108
109
|
);
|
|
109
|
-
r[n] =
|
|
110
|
-
t.length === 1 ? Array.isArray(e) &&
|
|
110
|
+
r[n] = ne, s.push(() => {
|
|
111
|
+
t.length === 1 ? Array.isArray(e) && k(e) : k(r);
|
|
111
112
|
});
|
|
112
|
-
},
|
|
113
|
-
|
|
114
|
-
},
|
|
113
|
+
}, Ce = (e, t) => {
|
|
114
|
+
se.includes(t) || delete e[t];
|
|
115
|
+
}, k = (e) => {
|
|
115
116
|
const t = [];
|
|
116
117
|
for (let r = 0; r < e.length; r++)
|
|
117
|
-
e[r] ===
|
|
118
|
+
e[r] === ne && t.push(r);
|
|
118
119
|
for (let r = t.length - 1; r >= 0; r--)
|
|
119
120
|
e.splice(t[r], 1);
|
|
120
|
-
},
|
|
121
|
-
if (e === null ||
|
|
121
|
+
}, Ue = (e) => {
|
|
122
|
+
if (e === null || !$(e))
|
|
122
123
|
return e;
|
|
123
124
|
if (typeof structuredClone < "u")
|
|
124
125
|
try {
|
|
125
126
|
return structuredClone(e);
|
|
126
127
|
} catch {
|
|
127
|
-
return
|
|
128
|
+
return W(e);
|
|
128
129
|
}
|
|
129
|
-
return
|
|
130
|
-
},
|
|
130
|
+
return W(e);
|
|
131
|
+
}, W = (e) => {
|
|
131
132
|
try {
|
|
132
133
|
return JSON.parse(JSON.stringify(e));
|
|
133
134
|
} catch {
|
|
134
135
|
throw new Error("Failed to clone object");
|
|
135
136
|
}
|
|
136
|
-
},
|
|
137
|
+
}, xt = (e, t, r) => e.length !== t.length || e.some(
|
|
138
|
+
(n) => !t.some((s) => s[r] === n[r])
|
|
139
|
+
) || t.some(
|
|
140
|
+
(n) => !e.some((s) => s[r] === n[r])
|
|
141
|
+
), Ct = (e, t) => (r) => r[e] !== t, oe = (e) => (t) => t.id === e, Ut = (e, t) => (r) => r[e] === t, Pt = (e, t, r = new Error("Element not found")) => {
|
|
137
142
|
const n = e.find(t);
|
|
138
|
-
return
|
|
139
|
-
},
|
|
143
|
+
return ve(n, r), n;
|
|
144
|
+
}, $t = (e, t = 0) => Array.from(
|
|
140
145
|
{ length: e },
|
|
141
146
|
(r, n) => t + n
|
|
142
|
-
),
|
|
147
|
+
), Mt = (e) => e.id, Lt = (e) => (t) => t[e], _t = (e) => (t, r) => (typeof t != "number" && (t = 0), De(r[e]) && (t += r[e]), t), qt = (e, t) => {
|
|
143
148
|
const r = e.findIndex(
|
|
144
|
-
|
|
149
|
+
oe(t.id)
|
|
145
150
|
);
|
|
146
151
|
if (r > -1) {
|
|
147
|
-
const
|
|
148
|
-
return
|
|
152
|
+
const s = [...e];
|
|
153
|
+
return s.splice(r, 1, t), s;
|
|
149
154
|
} else
|
|
150
155
|
return e.concat(t);
|
|
151
|
-
},
|
|
156
|
+
}, jt = (e, t) => {
|
|
152
157
|
const r = e.findIndex(
|
|
153
|
-
|
|
158
|
+
oe(t.id)
|
|
154
159
|
);
|
|
155
160
|
if (r > -1) {
|
|
156
|
-
const
|
|
161
|
+
const s = [...e], o = {
|
|
157
162
|
...e[r],
|
|
158
163
|
...t
|
|
159
164
|
};
|
|
160
|
-
return
|
|
165
|
+
return s.splice(r, 1, o), s;
|
|
161
166
|
} else
|
|
162
167
|
return e.concat({
|
|
163
168
|
...t
|
|
164
169
|
});
|
|
165
|
-
},
|
|
170
|
+
}, G = (e, t) => t.reduce((r, n) => ({
|
|
166
171
|
...r,
|
|
167
172
|
[n]: e[n]
|
|
168
|
-
}), {}),
|
|
173
|
+
}), {}), Yt = ({
|
|
169
174
|
existingObjects: e,
|
|
170
175
|
receivedObjects: t,
|
|
171
176
|
propertiesToCompare: r
|
|
172
177
|
}) => {
|
|
173
|
-
const n = [],
|
|
174
|
-
e.map((
|
|
175
|
-
),
|
|
176
|
-
t.map((
|
|
178
|
+
const n = [], s = [], o = [], a = new Map(
|
|
179
|
+
e.map((i) => [i.id, i])
|
|
180
|
+
), u = new Map(
|
|
181
|
+
t.map((i) => [i.id, i])
|
|
177
182
|
);
|
|
178
|
-
for (const
|
|
179
|
-
const g =
|
|
183
|
+
for (const i of t) {
|
|
184
|
+
const g = a.get(i.id);
|
|
180
185
|
if (c(g))
|
|
181
186
|
if (c(g.deletedAt))
|
|
182
|
-
|
|
187
|
+
o.push(i);
|
|
183
188
|
else {
|
|
184
|
-
const
|
|
189
|
+
const O = G(
|
|
185
190
|
g,
|
|
186
191
|
r
|
|
187
|
-
),
|
|
188
|
-
|
|
192
|
+
), me = G(
|
|
193
|
+
i,
|
|
189
194
|
r
|
|
190
195
|
);
|
|
191
|
-
|
|
196
|
+
ye(O, me) || s.push(i);
|
|
192
197
|
}
|
|
193
198
|
else
|
|
194
|
-
n.push(
|
|
199
|
+
n.push(i);
|
|
195
200
|
}
|
|
196
|
-
const
|
|
201
|
+
const f = e.filter((i) => !c(i.deletedAt)).filter((i) => !u.has(i.id)).map((i) => i.id);
|
|
197
202
|
return {
|
|
198
203
|
toCreate: n,
|
|
199
|
-
toUpdate:
|
|
200
|
-
toRestoreAndUpdate:
|
|
201
|
-
idsToDelete:
|
|
204
|
+
toUpdate: s,
|
|
205
|
+
toRestoreAndUpdate: o,
|
|
206
|
+
idsToDelete: f
|
|
202
207
|
};
|
|
203
|
-
},
|
|
208
|
+
}, kt = (e, t) => y.PlainDate.compare(e, t) === 1, Wt = (e, t) => y.PlainDate.compare(e, t) === -1, Gt = (e, t) => y.PlainDate.compare(e, t) <= 0, Jt = (e, t) => e.month === t.month && e.year === t.year, Bt = (e) => e.dayOfWeek > 5, Ft = (e, t) => y.PlainDate.compare(e, t) === 0, Ht = (e) => {
|
|
204
209
|
try {
|
|
205
|
-
return
|
|
210
|
+
return y.Instant.from(e).toZonedDateTimeISO("UTC").toPlainDate();
|
|
206
211
|
} catch {
|
|
207
212
|
}
|
|
208
213
|
try {
|
|
209
|
-
return
|
|
214
|
+
return y.PlainDate.from(e);
|
|
210
215
|
} catch {
|
|
211
216
|
}
|
|
212
217
|
throw new Error(`Cannot parse date string as PlainDate : "${e}"`);
|
|
213
|
-
},
|
|
214
|
-
const n =
|
|
218
|
+
}, Kt = (e) => (t, r) => {
|
|
219
|
+
const n = y.PlainDate.compare(t, r);
|
|
215
220
|
return n === 0 ? 0 : e === "asc" ? n : -n;
|
|
216
|
-
},
|
|
221
|
+
}, zt = (e) => y.PlainDate.from({
|
|
217
222
|
day: e.getDate(),
|
|
218
223
|
month: e.getMonth() + 1,
|
|
219
224
|
year: e.getFullYear()
|
|
220
|
-
}),
|
|
225
|
+
}), Zt = (e, t) => e.toZonedDateTime(t).toInstant().toString(), Xt = (e) => {
|
|
221
226
|
const t = Intl.DateTimeFormat().resolvedOptions().timeZone, r = e.toZonedDateTime(t).toInstant().toString();
|
|
222
227
|
return new Date(r);
|
|
223
|
-
},
|
|
228
|
+
}, Pe = (e, t) => {
|
|
224
229
|
if (!e) return t;
|
|
225
230
|
if (!t) return e;
|
|
226
231
|
const r = { ...e };
|
|
227
232
|
return Object.keys(t).forEach((n) => {
|
|
228
|
-
const
|
|
229
|
-
if (
|
|
230
|
-
if (
|
|
233
|
+
const s = e[n], o = t[n];
|
|
234
|
+
if (o !== void 0) {
|
|
235
|
+
if (o === null) {
|
|
231
236
|
r[n] = null;
|
|
232
237
|
return;
|
|
233
238
|
}
|
|
234
|
-
if (Array.isArray(
|
|
235
|
-
r[n] = [...
|
|
239
|
+
if (Array.isArray(s) && Array.isArray(o)) {
|
|
240
|
+
r[n] = [...s, ...o];
|
|
236
241
|
return;
|
|
237
242
|
}
|
|
238
|
-
if (
|
|
239
|
-
r[n] =
|
|
243
|
+
if (o instanceof Date || o instanceof RegExp || s instanceof Date || s instanceof RegExp) {
|
|
244
|
+
r[n] = o;
|
|
240
245
|
return;
|
|
241
246
|
}
|
|
242
|
-
if (
|
|
243
|
-
r[n] =
|
|
244
|
-
|
|
245
|
-
|
|
247
|
+
if (s && o && typeof s == "object" && typeof o == "object" && !Array.isArray(s) && !Array.isArray(o)) {
|
|
248
|
+
r[n] = Pe(
|
|
249
|
+
s,
|
|
250
|
+
o
|
|
246
251
|
);
|
|
247
252
|
return;
|
|
248
253
|
}
|
|
249
|
-
r[n] =
|
|
254
|
+
r[n] = o;
|
|
250
255
|
}
|
|
251
256
|
}), r;
|
|
252
|
-
},
|
|
257
|
+
}, I = (e, t) => {
|
|
253
258
|
try {
|
|
254
|
-
|
|
255
|
-
const r = e.replace("{{", "{{{ json ").replace("}}", " }}}"), n =
|
|
259
|
+
q.registerHelper("json", (s) => JSON.stringify(s));
|
|
260
|
+
const r = e.replace("{{", "{{{ json ").replace("}}", " }}}"), n = q.compile(r)(t, {
|
|
256
261
|
helpers: {
|
|
257
|
-
json: (
|
|
262
|
+
json: (s) => JSON.stringify(s)
|
|
258
263
|
}
|
|
259
264
|
});
|
|
260
265
|
return JSON.parse(n);
|
|
261
266
|
} catch {
|
|
262
267
|
return;
|
|
263
268
|
}
|
|
264
|
-
},
|
|
265
|
-
const n = (
|
|
266
|
-
if (
|
|
267
|
-
if (
|
|
269
|
+
}, $e = /\s+/g, ie = (e) => e.trim().replace($e, " "), Qt = (e, t, r = 10) => {
|
|
270
|
+
const n = (s, o) => {
|
|
271
|
+
if (s !== void 0) {
|
|
272
|
+
if (s === null)
|
|
268
273
|
return null;
|
|
269
|
-
if (
|
|
270
|
-
return
|
|
271
|
-
if (Array.isArray(
|
|
272
|
-
return
|
|
273
|
-
if (typeof
|
|
274
|
-
const
|
|
275
|
-
return Object.keys(
|
|
276
|
-
(
|
|
277
|
-
...
|
|
278
|
-
[
|
|
274
|
+
if (o >= r)
|
|
275
|
+
return s;
|
|
276
|
+
if (Array.isArray(s))
|
|
277
|
+
return s.map((a) => n(a, o));
|
|
278
|
+
if (typeof s == "object") {
|
|
279
|
+
const a = s;
|
|
280
|
+
return Object.keys(a).reduce(
|
|
281
|
+
(f, i) => ({
|
|
282
|
+
...f,
|
|
283
|
+
[i]: n(a[i], o + 1)
|
|
279
284
|
}),
|
|
280
285
|
{}
|
|
281
286
|
);
|
|
282
287
|
}
|
|
283
|
-
return typeof
|
|
288
|
+
return typeof s == "string" ? ie(s) : s;
|
|
284
289
|
}
|
|
285
290
|
};
|
|
286
|
-
return t.reduce((
|
|
287
|
-
const
|
|
288
|
-
return
|
|
289
|
-
...
|
|
290
|
-
[
|
|
291
|
+
return t.reduce((s, o) => {
|
|
292
|
+
const a = n(e[o], 0);
|
|
293
|
+
return a === void 0 ? s : {
|
|
294
|
+
...s,
|
|
295
|
+
[o]: a
|
|
291
296
|
};
|
|
292
297
|
}, {});
|
|
293
|
-
},
|
|
298
|
+
}, Me = "(Copy)", Le = "(copy)", Vt = (e) => !D(e) || e.toLowerCase().endsWith(Le) ? e : `${e} ${Me}`, x = (e) => D(e) ? e[0].toUpperCase() + e.slice(1) : "", er = (e) => x(Ee(e)), tr = ({
|
|
294
299
|
fieldName: e,
|
|
295
300
|
relationType: t,
|
|
296
301
|
targetObjectMetadataNameSingular: r,
|
|
297
302
|
targetObjectMetadataNamePlural: n
|
|
298
303
|
}) => {
|
|
299
304
|
if (t === "MANY_TO_ONE")
|
|
300
|
-
return `${e}${
|
|
305
|
+
return `${e}${x(r)}`;
|
|
301
306
|
if (t === "ONE_TO_MANY")
|
|
302
|
-
return `${e}${
|
|
303
|
-
throw new
|
|
307
|
+
return `${e}${x(n)}`;
|
|
308
|
+
throw new we(
|
|
304
309
|
`Invalid relation type (${t}) for field ${e} on ${r}`,
|
|
305
310
|
"INVALID_RELATION_TYPE_FOR_COMPUTE_MORPH_RELATION_FIELD_NAME"
|
|
306
311
|
);
|
|
307
|
-
},
|
|
312
|
+
}, rr = (e) => e === A.DATE || e === A.DATE_TIME, nr = (e) => e === A.SELECT || e === A.MULTI_SELECT, sr = (e) => {
|
|
313
|
+
if (!D(e))
|
|
314
|
+
throw new Error("Invalid fullPath provided");
|
|
315
|
+
const t = e.split("/"), r = t.pop() || "", n = t.join("/"), s = r.lastIndexOf("."), o = s !== -1 ? r.slice(s + 1) : "";
|
|
316
|
+
return { folderPath: n, filename: r, type: o };
|
|
317
|
+
}, ae = ({
|
|
308
318
|
filterValueDependencies: e,
|
|
309
319
|
filters: t,
|
|
310
320
|
fields: r,
|
|
311
321
|
recordFilterGroups: n,
|
|
312
|
-
currentRecordFilterGroupId:
|
|
322
|
+
currentRecordFilterGroupId: s
|
|
313
323
|
}) => {
|
|
314
|
-
const
|
|
315
|
-
(
|
|
324
|
+
const o = n.find(
|
|
325
|
+
(i) => i.id === s
|
|
316
326
|
);
|
|
317
|
-
if (!c(
|
|
327
|
+
if (!c(o))
|
|
318
328
|
return;
|
|
319
|
-
const
|
|
320
|
-
(
|
|
329
|
+
const u = t.filter(
|
|
330
|
+
(i) => i.recordFilterGroupId === s
|
|
321
331
|
).map(
|
|
322
|
-
(
|
|
332
|
+
(i) => Q({
|
|
323
333
|
filterValueDependencies: e,
|
|
324
|
-
recordFilter:
|
|
334
|
+
recordFilter: i,
|
|
325
335
|
fieldMetadataItems: r
|
|
326
336
|
})
|
|
327
|
-
).filter(c),
|
|
328
|
-
(
|
|
337
|
+
).filter(c), f = n.filter(
|
|
338
|
+
(i) => i.parentRecordFilterGroupId === s
|
|
329
339
|
).map(
|
|
330
|
-
(
|
|
340
|
+
(i) => ae({
|
|
331
341
|
filterValueDependencies: e,
|
|
332
342
|
filters: t,
|
|
333
343
|
fields: r,
|
|
334
344
|
recordFilterGroups: n,
|
|
335
|
-
currentRecordFilterGroupId:
|
|
345
|
+
currentRecordFilterGroupId: i.id
|
|
336
346
|
})
|
|
337
347
|
).filter(c);
|
|
338
|
-
if (
|
|
348
|
+
if (o.logicalOperator === j.AND)
|
|
339
349
|
return {
|
|
340
350
|
and: [
|
|
341
|
-
...
|
|
342
|
-
...
|
|
351
|
+
...u,
|
|
352
|
+
...f
|
|
343
353
|
]
|
|
344
354
|
};
|
|
345
|
-
if (
|
|
355
|
+
if (o.logicalOperator === j.OR)
|
|
346
356
|
return {
|
|
347
357
|
or: [
|
|
348
|
-
...
|
|
349
|
-
...
|
|
358
|
+
...u,
|
|
359
|
+
...f
|
|
350
360
|
]
|
|
351
361
|
};
|
|
352
362
|
throw new Error(
|
|
353
|
-
`Unknown logical operator ${
|
|
363
|
+
`Unknown logical operator ${o.logicalOperator}`
|
|
354
364
|
);
|
|
355
|
-
},
|
|
365
|
+
}, or = ({
|
|
356
366
|
fields: e,
|
|
357
367
|
recordFilters: t,
|
|
358
368
|
recordFilterGroups: r,
|
|
359
369
|
filterValueDependencies: n
|
|
360
370
|
}) => {
|
|
361
|
-
const
|
|
362
|
-
recordFilter:
|
|
371
|
+
const s = t.filter((i) => !c(i.recordFilterGroupId)).map((i) => Q({
|
|
372
|
+
recordFilter: i,
|
|
363
373
|
fieldMetadataItems: e,
|
|
364
374
|
filterValueDependencies: n
|
|
365
|
-
})).filter(c),
|
|
366
|
-
(
|
|
367
|
-
)?.id,
|
|
375
|
+
})).filter(c), o = r.find(
|
|
376
|
+
(i) => !i.parentRecordFilterGroupId
|
|
377
|
+
)?.id, a = ae({
|
|
368
378
|
filterValueDependencies: n,
|
|
369
379
|
filters: t,
|
|
370
380
|
fields: e,
|
|
371
381
|
recordFilterGroups: r,
|
|
372
|
-
currentRecordFilterGroupId:
|
|
373
|
-
}),
|
|
374
|
-
...
|
|
375
|
-
|
|
382
|
+
currentRecordFilterGroupId: o
|
|
383
|
+
}), u = [
|
|
384
|
+
...s,
|
|
385
|
+
a
|
|
376
386
|
].filter(c);
|
|
377
|
-
return
|
|
378
|
-
and:
|
|
387
|
+
return u.length === 0 ? {} : u.length === 1 ? u[0] : {
|
|
388
|
+
and: u
|
|
379
389
|
};
|
|
380
|
-
},
|
|
390
|
+
}, ir = (e) => {
|
|
381
391
|
const t = e.filter(
|
|
382
392
|
(r) => Object.keys(r).length > 0
|
|
383
393
|
);
|
|
384
394
|
return t.length === 0 ? {} : t.length === 1 ? t[0] : {
|
|
385
395
|
and: t
|
|
386
396
|
};
|
|
397
|
+
}, ar = ({
|
|
398
|
+
arrayFilter: e,
|
|
399
|
+
value: t
|
|
400
|
+
}) => {
|
|
401
|
+
switch (!0) {
|
|
402
|
+
case e.is !== void 0:
|
|
403
|
+
return e.is === "NULL" ? t === null : t !== null;
|
|
404
|
+
case e.isEmptyArray !== void 0:
|
|
405
|
+
return Array.isArray(t) && t.length === 0;
|
|
406
|
+
case e.containsIlike !== void 0: {
|
|
407
|
+
const r = e.containsIlike.toLowerCase();
|
|
408
|
+
return Array.isArray(t) && t.some((n) => n.toLowerCase().includes(r));
|
|
409
|
+
}
|
|
410
|
+
default:
|
|
411
|
+
throw new Error(
|
|
412
|
+
`Unexpected value for array filter: ${JSON.stringify(e)}`
|
|
413
|
+
);
|
|
414
|
+
}
|
|
415
|
+
}, cr = ({
|
|
416
|
+
booleanFilter: e,
|
|
417
|
+
value: t
|
|
418
|
+
}) => {
|
|
419
|
+
if (e.eq !== void 0)
|
|
420
|
+
return t === e.eq;
|
|
421
|
+
if (e.is !== void 0)
|
|
422
|
+
return e.is === "NULL" ? t === null : t !== null;
|
|
423
|
+
throw new Error(
|
|
424
|
+
`Unexpected value for string filter : ${JSON.stringify(e)}`
|
|
425
|
+
);
|
|
426
|
+
}, J = (e, t) => {
|
|
427
|
+
switch (!0) {
|
|
428
|
+
case e?.in !== void 0:
|
|
429
|
+
return D(t) && e.in.includes(t);
|
|
430
|
+
case e?.is !== void 0:
|
|
431
|
+
return e.is === "NULL" ? t === null : t !== null;
|
|
432
|
+
default:
|
|
433
|
+
throw new Error(
|
|
434
|
+
`Unexpected operand for currency code filter : ${JSON.stringify(
|
|
435
|
+
e
|
|
436
|
+
)}`
|
|
437
|
+
);
|
|
438
|
+
}
|
|
439
|
+
}, B = (e, t) => {
|
|
440
|
+
switch (!0) {
|
|
441
|
+
case e?.eq !== void 0:
|
|
442
|
+
return t === e.eq;
|
|
443
|
+
case e?.neq !== void 0:
|
|
444
|
+
return t !== e.neq;
|
|
445
|
+
case e?.gt !== void 0:
|
|
446
|
+
return c(t) && t > e.gt;
|
|
447
|
+
case e?.gte !== void 0:
|
|
448
|
+
return c(t) && t >= e.gte;
|
|
449
|
+
case e?.lt !== void 0:
|
|
450
|
+
return c(t) && t < e.lt;
|
|
451
|
+
case e?.lte !== void 0:
|
|
452
|
+
return c(t) && t <= e.lte;
|
|
453
|
+
case e?.is !== void 0:
|
|
454
|
+
return e.is === "NULL" ? t === null : t !== null;
|
|
455
|
+
default:
|
|
456
|
+
throw new Error(
|
|
457
|
+
`Unexpected operand for currency amount micros filter : ${JSON.stringify(
|
|
458
|
+
e
|
|
459
|
+
)}`
|
|
460
|
+
);
|
|
461
|
+
}
|
|
462
|
+
}, ur = ({
|
|
463
|
+
currencyFilter: e,
|
|
464
|
+
value: t
|
|
465
|
+
}) => {
|
|
466
|
+
const r = c(e.currencyCode), n = c(e.amountMicros);
|
|
467
|
+
if (r && n)
|
|
468
|
+
return B(
|
|
469
|
+
e.amountMicros,
|
|
470
|
+
t.amountMicros
|
|
471
|
+
) && J(
|
|
472
|
+
e.currencyCode,
|
|
473
|
+
t.currencyCode
|
|
474
|
+
);
|
|
475
|
+
if (n)
|
|
476
|
+
return B(
|
|
477
|
+
e.amountMicros,
|
|
478
|
+
t.amountMicros
|
|
479
|
+
);
|
|
480
|
+
if (r)
|
|
481
|
+
return J(
|
|
482
|
+
e.currencyCode,
|
|
483
|
+
t.currencyCode
|
|
484
|
+
);
|
|
485
|
+
throw new Error(
|
|
486
|
+
`Unexpected filter for currency : ${JSON.stringify(e)}`
|
|
487
|
+
);
|
|
387
488
|
};
|
|
388
|
-
function
|
|
489
|
+
function C(e) {
|
|
389
490
|
"@babel/helpers - typeof";
|
|
390
|
-
return
|
|
491
|
+
return C = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(t) {
|
|
391
492
|
return typeof t;
|
|
392
493
|
} : function(t) {
|
|
393
494
|
return t && typeof Symbol == "function" && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t;
|
|
394
|
-
},
|
|
495
|
+
}, C(e);
|
|
395
496
|
}
|
|
396
|
-
function
|
|
497
|
+
function l(e) {
|
|
397
498
|
if (e === null || e === !0 || e === !1)
|
|
398
499
|
return NaN;
|
|
399
500
|
var t = Number(e);
|
|
400
501
|
return isNaN(t) ? t : t < 0 ? Math.ceil(t) : Math.floor(t);
|
|
401
502
|
}
|
|
402
|
-
function
|
|
503
|
+
function d(e, t) {
|
|
403
504
|
if (t.length < e)
|
|
404
505
|
throw new TypeError(e + " argument" + (e > 1 ? "s" : "") + " required, but only " + t.length + " present");
|
|
405
506
|
}
|
|
406
|
-
function
|
|
407
|
-
|
|
507
|
+
function m(e) {
|
|
508
|
+
d(1, arguments);
|
|
408
509
|
var t = Object.prototype.toString.call(e);
|
|
409
|
-
return e instanceof Date ||
|
|
510
|
+
return e instanceof Date || C(e) === "object" && t === "[object Date]" ? new Date(e.getTime()) : typeof e == "number" || t === "[object Number]" ? new Date(e) : ((typeof e == "string" || t === "[object String]") && typeof console < "u" && (console.warn("Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments"), console.warn(new Error().stack)), /* @__PURE__ */ new Date(NaN));
|
|
410
511
|
}
|
|
411
|
-
function
|
|
412
|
-
|
|
413
|
-
var r =
|
|
512
|
+
function M(e, t) {
|
|
513
|
+
d(2, arguments);
|
|
514
|
+
var r = m(e), n = l(t);
|
|
414
515
|
return isNaN(n) ? /* @__PURE__ */ new Date(NaN) : (n && r.setDate(r.getDate() + n), r);
|
|
415
516
|
}
|
|
416
|
-
function
|
|
417
|
-
|
|
418
|
-
var r =
|
|
517
|
+
function L(e, t) {
|
|
518
|
+
d(2, arguments);
|
|
519
|
+
var r = m(e), n = l(t);
|
|
419
520
|
if (isNaN(n))
|
|
420
521
|
return /* @__PURE__ */ new Date(NaN);
|
|
421
522
|
if (!n)
|
|
422
523
|
return r;
|
|
423
|
-
var
|
|
424
|
-
|
|
425
|
-
var
|
|
426
|
-
return
|
|
427
|
-
}
|
|
428
|
-
function
|
|
429
|
-
|
|
430
|
-
var r =
|
|
524
|
+
var s = r.getDate(), o = new Date(r.getTime());
|
|
525
|
+
o.setMonth(r.getMonth() + n + 1, 0);
|
|
526
|
+
var a = o.getDate();
|
|
527
|
+
return s >= a ? o : (r.setFullYear(o.getFullYear(), o.getMonth(), s), r);
|
|
528
|
+
}
|
|
529
|
+
function _(e, t) {
|
|
530
|
+
d(2, arguments);
|
|
531
|
+
var r = m(e).getTime(), n = l(t);
|
|
431
532
|
return new Date(r + n);
|
|
432
533
|
}
|
|
433
|
-
var
|
|
434
|
-
function
|
|
435
|
-
|
|
436
|
-
var r =
|
|
437
|
-
return
|
|
438
|
-
}
|
|
439
|
-
var
|
|
440
|
-
function
|
|
441
|
-
|
|
442
|
-
var r =
|
|
443
|
-
return
|
|
444
|
-
}
|
|
445
|
-
function
|
|
446
|
-
|
|
447
|
-
var r =
|
|
448
|
-
return
|
|
449
|
-
}
|
|
450
|
-
function
|
|
451
|
-
|
|
452
|
-
var r =
|
|
453
|
-
return
|
|
454
|
-
}
|
|
455
|
-
function
|
|
456
|
-
|
|
457
|
-
var r =
|
|
458
|
-
return
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
var r
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
534
|
+
var _e = 36e5;
|
|
535
|
+
function ce(e, t) {
|
|
536
|
+
d(2, arguments);
|
|
537
|
+
var r = l(t);
|
|
538
|
+
return _(e, r * _e);
|
|
539
|
+
}
|
|
540
|
+
var qe = 6e4;
|
|
541
|
+
function ue(e, t) {
|
|
542
|
+
d(2, arguments);
|
|
543
|
+
var r = l(t);
|
|
544
|
+
return _(e, r * qe);
|
|
545
|
+
}
|
|
546
|
+
function fe(e, t) {
|
|
547
|
+
d(2, arguments);
|
|
548
|
+
var r = l(t);
|
|
549
|
+
return _(e, r * 1e3);
|
|
550
|
+
}
|
|
551
|
+
function de(e, t) {
|
|
552
|
+
d(2, arguments);
|
|
553
|
+
var r = l(t), n = r * 7;
|
|
554
|
+
return M(e, n);
|
|
555
|
+
}
|
|
556
|
+
function le(e, t) {
|
|
557
|
+
d(2, arguments);
|
|
558
|
+
var r = l(t);
|
|
559
|
+
return L(e, r * 12);
|
|
560
|
+
}
|
|
561
|
+
var pe = 6e4, ge = 36e5;
|
|
562
|
+
function F(e, t) {
|
|
563
|
+
d(2, arguments);
|
|
564
|
+
var r = m(e), n = m(t);
|
|
565
|
+
return r.getTime() > n.getTime();
|
|
566
|
+
}
|
|
567
|
+
function H(e, t) {
|
|
568
|
+
d(2, arguments);
|
|
569
|
+
var r = m(e), n = m(t);
|
|
570
|
+
return r.getTime() < n.getTime();
|
|
571
|
+
}
|
|
572
|
+
function E(e, t) {
|
|
573
|
+
d(2, arguments);
|
|
574
|
+
var r = m(e), n = m(t);
|
|
575
|
+
return r.getTime() === n.getTime();
|
|
576
|
+
}
|
|
577
|
+
function je(e, t) {
|
|
578
|
+
d(2, arguments);
|
|
579
|
+
var r = l(t);
|
|
580
|
+
return M(e, -r);
|
|
581
|
+
}
|
|
582
|
+
function p(e, t) {
|
|
583
|
+
var r;
|
|
584
|
+
d(1, arguments);
|
|
585
|
+
var n = l((r = void 0) !== null && r !== void 0 ? r : 2);
|
|
586
|
+
if (n !== 2 && n !== 1 && n !== 0)
|
|
587
|
+
throw new RangeError("additionalDigits must be 0, 1 or 2");
|
|
588
|
+
if (!(typeof e == "string" || Object.prototype.toString.call(e) === "[object String]"))
|
|
589
|
+
return /* @__PURE__ */ new Date(NaN);
|
|
590
|
+
var s = Ge(e), o;
|
|
591
|
+
if (s.date) {
|
|
592
|
+
var a = Je(s.date, n);
|
|
593
|
+
o = Be(a.restDateString, a.year);
|
|
594
|
+
}
|
|
595
|
+
if (!o || isNaN(o.getTime()))
|
|
596
|
+
return /* @__PURE__ */ new Date(NaN);
|
|
597
|
+
var u = o.getTime(), f = 0, i;
|
|
598
|
+
if (s.time && (f = Fe(s.time), isNaN(f)))
|
|
599
|
+
return /* @__PURE__ */ new Date(NaN);
|
|
600
|
+
if (s.timezone) {
|
|
601
|
+
if (i = He(s.timezone), isNaN(i))
|
|
602
|
+
return /* @__PURE__ */ new Date(NaN);
|
|
603
|
+
} else {
|
|
604
|
+
var g = new Date(u + f), O = /* @__PURE__ */ new Date(0);
|
|
605
|
+
return O.setFullYear(g.getUTCFullYear(), g.getUTCMonth(), g.getUTCDate()), O.setHours(g.getUTCHours(), g.getUTCMinutes(), g.getUTCSeconds(), g.getUTCMilliseconds()), O;
|
|
606
|
+
}
|
|
607
|
+
return new Date(u + f + i);
|
|
608
|
+
}
|
|
609
|
+
var N = {
|
|
610
|
+
dateTimeDelimiter: /[T ]/,
|
|
611
|
+
timeZoneDelimiter: /[Z ]/i,
|
|
612
|
+
timezone: /([Z+-].*)$/
|
|
613
|
+
}, Ye = /^-?(?:(\d{3})|(\d{2})(?:-?(\d{2}))?|W(\d{2})(?:-?(\d{1}))?|)$/, ke = /^(\d{2}(?:[.,]\d*)?)(?::?(\d{2}(?:[.,]\d*)?))?(?::?(\d{2}(?:[.,]\d*)?))?$/, We = /^([+-])(\d{2})(?::?(\d{2}))?$/;
|
|
614
|
+
function Ge(e) {
|
|
615
|
+
var t = {}, r = e.split(N.dateTimeDelimiter), n;
|
|
616
|
+
if (r.length > 2)
|
|
617
|
+
return t;
|
|
618
|
+
if (/:/.test(r[0]) ? n = r[0] : (t.date = r[0], n = r[1], N.timeZoneDelimiter.test(t.date) && (t.date = e.split(N.timeZoneDelimiter)[0], n = e.substr(t.date.length, e.length))), n) {
|
|
619
|
+
var s = N.timezone.exec(n);
|
|
620
|
+
s ? (t.time = n.replace(s[1], ""), t.timezone = s[1]) : t.time = n;
|
|
621
|
+
}
|
|
622
|
+
return t;
|
|
623
|
+
}
|
|
624
|
+
function Je(e, t) {
|
|
625
|
+
var r = new RegExp("^(?:(\\d{4}|[+-]\\d{" + (4 + t) + "})|(\\d{2}|[+-]\\d{" + (2 + t) + "})$)"), n = e.match(r);
|
|
626
|
+
if (!n) return {
|
|
627
|
+
year: NaN,
|
|
628
|
+
restDateString: ""
|
|
629
|
+
};
|
|
630
|
+
var s = n[1] ? parseInt(n[1]) : null, o = n[2] ? parseInt(n[2]) : null;
|
|
631
|
+
return {
|
|
632
|
+
year: o === null ? s : o * 100,
|
|
633
|
+
restDateString: e.slice((n[1] || n[2]).length)
|
|
634
|
+
};
|
|
635
|
+
}
|
|
636
|
+
function Be(e, t) {
|
|
637
|
+
if (t === null) return /* @__PURE__ */ new Date(NaN);
|
|
638
|
+
var r = e.match(Ye);
|
|
639
|
+
if (!r) return /* @__PURE__ */ new Date(NaN);
|
|
640
|
+
var n = !!r[4], s = S(r[1]), o = S(r[2]) - 1, a = S(r[3]), u = S(r[4]), f = S(r[5]) - 1;
|
|
641
|
+
if (n)
|
|
642
|
+
return Qe(t, u, f) ? Ke(t, u, f) : /* @__PURE__ */ new Date(NaN);
|
|
643
|
+
var i = /* @__PURE__ */ new Date(0);
|
|
644
|
+
return !Ze(t, o, a) || !Xe(t, s) ? /* @__PURE__ */ new Date(NaN) : (i.setUTCFullYear(t, o, Math.max(s, a)), i);
|
|
645
|
+
}
|
|
646
|
+
function S(e) {
|
|
647
|
+
return e ? parseInt(e) : 1;
|
|
648
|
+
}
|
|
649
|
+
function Fe(e) {
|
|
650
|
+
var t = e.match(ke);
|
|
651
|
+
if (!t) return NaN;
|
|
652
|
+
var r = b(t[1]), n = b(t[2]), s = b(t[3]);
|
|
653
|
+
return Ve(r, n, s) ? r * ge + n * pe + s * 1e3 : NaN;
|
|
654
|
+
}
|
|
655
|
+
function b(e) {
|
|
656
|
+
return e && parseFloat(e.replace(",", ".")) || 0;
|
|
657
|
+
}
|
|
658
|
+
function He(e) {
|
|
659
|
+
if (e === "Z") return 0;
|
|
660
|
+
var t = e.match(We);
|
|
661
|
+
if (!t) return 0;
|
|
662
|
+
var r = t[1] === "+" ? -1 : 1, n = parseInt(t[2]), s = t[3] && parseInt(t[3]) || 0;
|
|
663
|
+
return et(n, s) ? r * (n * ge + s * pe) : NaN;
|
|
664
|
+
}
|
|
665
|
+
function Ke(e, t, r) {
|
|
666
|
+
var n = /* @__PURE__ */ new Date(0);
|
|
667
|
+
n.setUTCFullYear(e, 0, 4);
|
|
668
|
+
var s = n.getUTCDay() || 7, o = (t - 1) * 7 + r + 1 - s;
|
|
669
|
+
return n.setUTCDate(n.getUTCDate() + o), n;
|
|
670
|
+
}
|
|
671
|
+
var ze = [31, null, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
|
|
672
|
+
function he(e) {
|
|
673
|
+
return e % 400 === 0 || e % 4 === 0 && e % 100 !== 0;
|
|
674
|
+
}
|
|
675
|
+
function Ze(e, t, r) {
|
|
676
|
+
return t >= 0 && t <= 11 && r >= 1 && r <= (ze[t] || (he(e) ? 29 : 28));
|
|
677
|
+
}
|
|
678
|
+
function Xe(e, t) {
|
|
679
|
+
return t >= 1 && t <= (he(e) ? 366 : 365);
|
|
680
|
+
}
|
|
681
|
+
function Qe(e, t, r) {
|
|
682
|
+
return t >= 1 && t <= 53 && r >= 0 && r <= 6;
|
|
683
|
+
}
|
|
684
|
+
function Ve(e, t, r) {
|
|
685
|
+
return e === 24 ? t === 0 && r === 0 : r >= 0 && r < 60 && t >= 0 && t < 60 && e >= 0 && e < 25;
|
|
686
|
+
}
|
|
687
|
+
function et(e, t) {
|
|
688
|
+
return t >= 0 && t <= 59;
|
|
689
|
+
}
|
|
690
|
+
function tt(e, t) {
|
|
691
|
+
d(2, arguments);
|
|
692
|
+
var r = l(t);
|
|
693
|
+
return L(e, -r);
|
|
694
|
+
}
|
|
695
|
+
function rt(e, t) {
|
|
696
|
+
d(2, arguments);
|
|
697
|
+
var r = l(t);
|
|
698
|
+
return ce(e, -r);
|
|
699
|
+
}
|
|
700
|
+
function nt(e, t) {
|
|
701
|
+
d(2, arguments);
|
|
702
|
+
var r = l(t);
|
|
703
|
+
return ue(e, -r);
|
|
704
|
+
}
|
|
705
|
+
function st(e, t) {
|
|
706
|
+
d(2, arguments);
|
|
707
|
+
var r = l(t);
|
|
708
|
+
return fe(e, -r);
|
|
709
|
+
}
|
|
710
|
+
function ot(e, t) {
|
|
711
|
+
d(2, arguments);
|
|
712
|
+
var r = l(t);
|
|
713
|
+
return de(e, -r);
|
|
714
|
+
}
|
|
715
|
+
function it(e, t) {
|
|
716
|
+
d(2, arguments);
|
|
717
|
+
var r = l(t);
|
|
718
|
+
return le(e, -r);
|
|
719
|
+
}
|
|
720
|
+
const fr = ({
|
|
721
|
+
dateFilter: e,
|
|
722
|
+
value: t
|
|
723
|
+
}) => {
|
|
724
|
+
switch (!0) {
|
|
725
|
+
case e.eq !== void 0:
|
|
726
|
+
return E(p(t), p(e.eq));
|
|
727
|
+
case e.neq !== void 0:
|
|
728
|
+
return !E(p(t), p(e.neq));
|
|
729
|
+
case e.in !== void 0:
|
|
730
|
+
return e.in.includes(t);
|
|
731
|
+
case e.is !== void 0:
|
|
732
|
+
return e.is === "NULL" ? t === null : t !== null;
|
|
733
|
+
case e.gt !== void 0:
|
|
734
|
+
return F(p(t), p(e.gt));
|
|
735
|
+
case e.gte !== void 0: {
|
|
736
|
+
const r = p(t), n = p(e.gte);
|
|
737
|
+
return F(r, n) || E(r, n);
|
|
738
|
+
}
|
|
739
|
+
case e.lt !== void 0:
|
|
740
|
+
return H(p(t), p(e.lt));
|
|
741
|
+
case e.lte !== void 0: {
|
|
742
|
+
const r = p(t), n = p(e.lte);
|
|
743
|
+
return H(r, n) || E(r, n);
|
|
744
|
+
}
|
|
745
|
+
default:
|
|
746
|
+
throw new Error(
|
|
747
|
+
`Unexpected value for string filter : ${JSON.stringify(e)}`
|
|
748
|
+
);
|
|
749
|
+
}
|
|
750
|
+
}, dr = ({
|
|
751
|
+
floatFilter: e,
|
|
752
|
+
value: t
|
|
753
|
+
}) => {
|
|
754
|
+
switch (!0) {
|
|
755
|
+
case e.eq !== void 0:
|
|
756
|
+
return t === e.eq;
|
|
757
|
+
case e.neq !== void 0:
|
|
758
|
+
return t !== e.neq;
|
|
759
|
+
case e.gt !== void 0:
|
|
760
|
+
return t > e.gt;
|
|
761
|
+
case e.gte !== void 0:
|
|
762
|
+
return t >= e.gte;
|
|
763
|
+
case e.lt !== void 0:
|
|
764
|
+
return t < e.lt;
|
|
765
|
+
case e.lte !== void 0:
|
|
766
|
+
return t <= e.lte;
|
|
767
|
+
case e.in !== void 0:
|
|
768
|
+
return e.in.includes(t);
|
|
769
|
+
case e.is !== void 0:
|
|
770
|
+
return e.is === "NULL" ? t === null : t !== null;
|
|
771
|
+
default:
|
|
772
|
+
throw new Error(
|
|
773
|
+
`Unexpected value for float filter : ${JSON.stringify(e)}`
|
|
774
|
+
);
|
|
775
|
+
}
|
|
776
|
+
}, lr = ({
|
|
777
|
+
multiSelectFilter: e,
|
|
778
|
+
value: t
|
|
779
|
+
}) => {
|
|
780
|
+
switch (!0) {
|
|
781
|
+
case e.containsAny !== void 0:
|
|
782
|
+
return Array.isArray(t) && e.containsAny.every((r) => t.includes(r));
|
|
783
|
+
case e.isEmptyArray !== void 0:
|
|
784
|
+
return Array.isArray(t) && t.length === 0;
|
|
785
|
+
case e.is !== void 0:
|
|
786
|
+
return e.is === "NULL" ? t === null : t !== null;
|
|
787
|
+
default:
|
|
788
|
+
throw new Error(
|
|
789
|
+
`Unexpected value for multi-select filter: ${JSON.stringify(
|
|
790
|
+
e
|
|
791
|
+
)}`
|
|
792
|
+
);
|
|
793
|
+
}
|
|
794
|
+
}, pr = ({
|
|
795
|
+
ratingFilter: e,
|
|
796
|
+
value: t
|
|
797
|
+
}) => {
|
|
798
|
+
switch (!0) {
|
|
799
|
+
case e.eq !== void 0:
|
|
800
|
+
return t === e.eq;
|
|
801
|
+
case e.in !== void 0:
|
|
802
|
+
return t !== null && e.in.includes(t);
|
|
803
|
+
case e.is !== void 0:
|
|
804
|
+
return e.is === "NULL" ? t === null : t !== null;
|
|
805
|
+
default:
|
|
806
|
+
throw new Error(
|
|
807
|
+
`Unexpected value for rating filter : ${JSON.stringify(e)}`
|
|
808
|
+
);
|
|
809
|
+
}
|
|
810
|
+
}, gr = ({
|
|
811
|
+
rawJsonFilter: e,
|
|
812
|
+
value: t
|
|
813
|
+
}) => {
|
|
814
|
+
switch (!0) {
|
|
815
|
+
case e.like !== void 0: {
|
|
816
|
+
const r = e.like.replace(/%/g, ".*"), n = new RegExp(`^${r}$`, "is"), s = JSON.stringify(t, null, 1);
|
|
817
|
+
return n.test(s);
|
|
818
|
+
}
|
|
819
|
+
case e.is !== void 0:
|
|
820
|
+
return e.is === "NULL" ? t === null : t !== null;
|
|
821
|
+
default:
|
|
822
|
+
throw new Error(
|
|
823
|
+
`Unexpected value for string filter : ${JSON.stringify(e)}`
|
|
824
|
+
);
|
|
825
|
+
}
|
|
826
|
+
}, hr = ({
|
|
827
|
+
richTextV2Filter: e,
|
|
828
|
+
value: t
|
|
829
|
+
}) => {
|
|
830
|
+
switch (!0) {
|
|
831
|
+
case e.markdown !== void 0: {
|
|
832
|
+
const n = T(e.markdown.ilike).replace(/%/g, ".*");
|
|
833
|
+
return new RegExp(`^${n}$`, "i").test(t);
|
|
834
|
+
}
|
|
835
|
+
default:
|
|
836
|
+
throw new Error(
|
|
837
|
+
`Unexpected value for RICH_TEXT_V2 filter : ${JSON.stringify(e)}`
|
|
838
|
+
);
|
|
839
|
+
}
|
|
840
|
+
}, mr = ({
|
|
841
|
+
selectFilter: e,
|
|
842
|
+
value: t
|
|
843
|
+
}) => {
|
|
844
|
+
switch (!0) {
|
|
845
|
+
case e.in !== void 0:
|
|
846
|
+
return e.in.includes(t);
|
|
847
|
+
case e.is !== void 0:
|
|
848
|
+
return e.is === "NULL" ? t === null : t !== null;
|
|
849
|
+
case e.eq !== void 0:
|
|
850
|
+
return t === e.eq;
|
|
851
|
+
case e.neq !== void 0:
|
|
852
|
+
return t !== e.neq;
|
|
853
|
+
default:
|
|
854
|
+
throw new Error(
|
|
855
|
+
`Unexpected value for select filter : ${JSON.stringify(e)}`
|
|
856
|
+
);
|
|
857
|
+
}
|
|
858
|
+
}, yr = ({
|
|
859
|
+
stringFilter: e,
|
|
860
|
+
value: t
|
|
861
|
+
}) => {
|
|
862
|
+
switch (!0) {
|
|
863
|
+
case e.eq !== void 0:
|
|
864
|
+
return t === e.eq;
|
|
865
|
+
case e.neq !== void 0:
|
|
866
|
+
return t !== e.neq;
|
|
867
|
+
case e.like !== void 0: {
|
|
868
|
+
const n = T(e.like).replace(/%/g, ".*");
|
|
869
|
+
return new RegExp(`^${n}$`).test(t);
|
|
870
|
+
}
|
|
871
|
+
case e.ilike !== void 0: {
|
|
872
|
+
const n = T(e.ilike).replace(/%/g, ".*");
|
|
873
|
+
return new RegExp(`^${n}$`, "i").test(t);
|
|
874
|
+
}
|
|
875
|
+
case e.in !== void 0:
|
|
876
|
+
return e.in.includes(t);
|
|
877
|
+
case e.is !== void 0:
|
|
878
|
+
return e.is === "NULL" ? t === null : t !== null;
|
|
879
|
+
case e.regex !== void 0: {
|
|
880
|
+
const r = e.regex;
|
|
881
|
+
return new RegExp(r).test(t);
|
|
882
|
+
}
|
|
883
|
+
case e.iregex !== void 0: {
|
|
884
|
+
const r = e.iregex;
|
|
885
|
+
return new RegExp(r, "i").test(t);
|
|
886
|
+
}
|
|
887
|
+
case e.startsWith !== void 0:
|
|
888
|
+
return t.startsWith(e.startsWith);
|
|
889
|
+
default:
|
|
890
|
+
throw new Error(
|
|
891
|
+
`Unexpected value for string filter : ${JSON.stringify(e)}`
|
|
892
|
+
);
|
|
893
|
+
}
|
|
894
|
+
}, wr = ({
|
|
895
|
+
tsVectorFilter: e,
|
|
896
|
+
value: t
|
|
897
|
+
}) => {
|
|
898
|
+
if (t === void 0)
|
|
899
|
+
return !0;
|
|
900
|
+
switch (!0) {
|
|
901
|
+
case e.search !== void 0: {
|
|
902
|
+
const r = e.search.toLowerCase(), n = t.toLowerCase();
|
|
903
|
+
return r.split(/\s+/).filter(Boolean).every((o) => n.includes(o));
|
|
904
|
+
}
|
|
905
|
+
default:
|
|
906
|
+
throw new Error(
|
|
907
|
+
`Unexpected value for ts_vector filter : ${JSON.stringify(e)}`
|
|
908
|
+
);
|
|
909
|
+
}
|
|
910
|
+
}, Or = ({
|
|
911
|
+
uuidFilter: e,
|
|
912
|
+
value: t
|
|
913
|
+
}) => {
|
|
914
|
+
switch (!0) {
|
|
915
|
+
case e.eq !== void 0:
|
|
916
|
+
return t === e.eq;
|
|
917
|
+
case e.neq !== void 0:
|
|
918
|
+
return t !== e.neq;
|
|
919
|
+
case e.in !== void 0:
|
|
920
|
+
return e.in.includes(t);
|
|
921
|
+
case e.is !== void 0:
|
|
922
|
+
return e.is === "NULL" ? t === null : t !== null;
|
|
923
|
+
default:
|
|
924
|
+
throw new Error(
|
|
925
|
+
`Unexpected value for string filter : ${JSON.stringify(e)}`
|
|
926
|
+
);
|
|
927
|
+
}
|
|
928
|
+
}, Sr = (e, t, r) => {
|
|
496
929
|
switch (r) {
|
|
497
930
|
case "SECOND":
|
|
498
|
-
return
|
|
931
|
+
return fe(e, t);
|
|
499
932
|
case "MINUTE":
|
|
500
|
-
return
|
|
933
|
+
return ue(e, t);
|
|
501
934
|
case "HOUR":
|
|
502
|
-
return
|
|
935
|
+
return ce(e, t);
|
|
503
936
|
case "DAY":
|
|
504
|
-
return
|
|
937
|
+
return M(e, t);
|
|
505
938
|
case "WEEK":
|
|
506
|
-
return
|
|
939
|
+
return de(e, t);
|
|
507
940
|
case "MONTH":
|
|
508
|
-
return
|
|
941
|
+
return L(e, t);
|
|
509
942
|
case "YEAR":
|
|
510
|
-
return
|
|
943
|
+
return le(e, t);
|
|
511
944
|
}
|
|
512
|
-
},
|
|
945
|
+
}, Dr = (e, t) => {
|
|
513
946
|
switch (e) {
|
|
514
|
-
case
|
|
515
|
-
return
|
|
516
|
-
case
|
|
517
|
-
return
|
|
518
|
-
case
|
|
519
|
-
return
|
|
520
|
-
case
|
|
947
|
+
case w.MONDAY:
|
|
948
|
+
return h.MONDAY;
|
|
949
|
+
case w.SATURDAY:
|
|
950
|
+
return h.SATURDAY;
|
|
951
|
+
case w.SUNDAY:
|
|
952
|
+
return h.SUNDAY;
|
|
953
|
+
case w.SYSTEM:
|
|
521
954
|
return t;
|
|
522
955
|
default:
|
|
523
|
-
return
|
|
956
|
+
return V();
|
|
524
957
|
}
|
|
525
|
-
},
|
|
958
|
+
}, Er = (e) => {
|
|
526
959
|
switch (e) {
|
|
527
|
-
case
|
|
528
|
-
return
|
|
529
|
-
case
|
|
530
|
-
return
|
|
531
|
-
case
|
|
532
|
-
return
|
|
533
|
-
}
|
|
534
|
-
},
|
|
960
|
+
case h.MONDAY:
|
|
961
|
+
return w.MONDAY;
|
|
962
|
+
case h.SATURDAY:
|
|
963
|
+
return w.SATURDAY;
|
|
964
|
+
case h.SUNDAY:
|
|
965
|
+
return w.SUNDAY;
|
|
966
|
+
}
|
|
967
|
+
}, Nr = (e) => {
|
|
535
968
|
switch (e) {
|
|
536
|
-
case
|
|
969
|
+
case h.MONDAY:
|
|
537
970
|
return 1;
|
|
538
|
-
case
|
|
971
|
+
case h.SATURDAY:
|
|
539
972
|
return 6;
|
|
540
|
-
case
|
|
973
|
+
case h.SUNDAY:
|
|
541
974
|
return 0;
|
|
542
975
|
default:
|
|
543
|
-
return
|
|
976
|
+
return V();
|
|
544
977
|
}
|
|
545
|
-
},
|
|
978
|
+
}, Ar = (e, t, r) => {
|
|
546
979
|
switch (r) {
|
|
547
980
|
case "SECOND":
|
|
548
|
-
return
|
|
981
|
+
return st(e, t);
|
|
549
982
|
case "MINUTE":
|
|
550
|
-
return
|
|
983
|
+
return nt(e, t);
|
|
551
984
|
case "HOUR":
|
|
552
|
-
return
|
|
985
|
+
return rt(e, t);
|
|
553
986
|
case "DAY":
|
|
554
|
-
return
|
|
987
|
+
return je(e, t);
|
|
555
988
|
case "WEEK":
|
|
556
|
-
return
|
|
989
|
+
return ot(e, t);
|
|
557
990
|
case "MONTH":
|
|
558
|
-
return
|
|
991
|
+
return tt(e, t);
|
|
559
992
|
case "YEAR":
|
|
560
|
-
return
|
|
993
|
+
return it(e, t);
|
|
561
994
|
}
|
|
562
|
-
},
|
|
995
|
+
}, vr = (e) => typeof e == "string" ? e : JSON.stringify(e ?? ""), br = (e) => {
|
|
996
|
+
const t = e < 0 ? "-" : "", r = Math.abs(e);
|
|
997
|
+
return r < 1e3 ? t + r.toFixed(1).replace(/\.?0+$/, "") : r < 1e6 ? t + (r / 1e3).toFixed(1).replace(/\.?0+$/, "") + "k" : r < 1e9 ? t + (r / 1e6).toFixed(1).replace(/\.?0+$/, "") + "m" : t + (r / 1e9).toFixed(1).replace(/\.?0+$/, "") + "b";
|
|
998
|
+
}, Rr = ({
|
|
563
999
|
array: e,
|
|
564
1000
|
uniqueKey: t
|
|
565
1001
|
}) => e.reduce((r, n) => {
|
|
566
|
-
const
|
|
567
|
-
if (c(r[
|
|
1002
|
+
const s = n[t];
|
|
1003
|
+
if (c(r[s]))
|
|
568
1004
|
throw new Error(
|
|
569
1005
|
`Should never occur, flat array contains twice the same unique key ${n[t]}`
|
|
570
1006
|
);
|
|
571
1007
|
return {
|
|
572
1008
|
...r,
|
|
573
|
-
[
|
|
1009
|
+
[s]: n
|
|
574
1010
|
};
|
|
575
|
-
}, {}),
|
|
1011
|
+
}, {}), Tr = ({
|
|
576
1012
|
array: e,
|
|
577
1013
|
key: t
|
|
578
1014
|
}) => e.reduce((r, n) => {
|
|
579
|
-
const
|
|
580
|
-
return c(
|
|
1015
|
+
const s = n[t], o = r[s];
|
|
1016
|
+
return c(o) ? {
|
|
581
1017
|
...r,
|
|
582
|
-
[
|
|
1018
|
+
[s]: [...o, n]
|
|
583
1019
|
} : {
|
|
584
1020
|
...r,
|
|
585
|
-
[
|
|
1021
|
+
[s]: [n]
|
|
586
1022
|
};
|
|
587
|
-
}, {}),
|
|
1023
|
+
}, {}), at = (e) => {
|
|
588
1024
|
try {
|
|
589
1025
|
return new URL(e);
|
|
590
1026
|
} catch {
|
|
591
1027
|
return null;
|
|
592
1028
|
}
|
|
593
|
-
},
|
|
1029
|
+
}, Ir = ({
|
|
594
1030
|
imageUrl: e,
|
|
595
1031
|
baseUrl: t
|
|
596
|
-
}) => e.startsWith("https:") || e.startsWith("http:") ? e : e.startsWith("/") ? new URL(`/files${e}`, t).toString() : new URL(`/files/${e}`, t).toString(),
|
|
597
|
-
const t =
|
|
1032
|
+
}) => e.startsWith("https:") || e.startsWith("http:") ? e : e.startsWith("/") ? new URL(`/files${e}`, t).toString() : new URL(`/files/${e}`, t).toString(), ct = (e) => e ? e.replace(/(https?:\/\/)|(www\.)/g, "").replace(/\/$/, "") : "", xr = (e) => {
|
|
1033
|
+
const t = ct(e);
|
|
598
1034
|
return t ? `https://twenty-icons.com/${t}` : void 0;
|
|
599
|
-
},
|
|
1035
|
+
}, Cr = (e) => {
|
|
600
1036
|
const t = e.indexMetadatas.filter(
|
|
601
|
-
(
|
|
1037
|
+
(o) => o.isUnique
|
|
602
1038
|
), r = new Map(
|
|
603
|
-
e.fields.map((
|
|
1039
|
+
e.fields.map((o) => [o.id, o])
|
|
604
1040
|
), n = e.fields.find(
|
|
605
|
-
(
|
|
1041
|
+
(o) => o.name === "id"
|
|
606
1042
|
);
|
|
607
1043
|
if (!c(n))
|
|
608
1044
|
throw new Error(
|
|
609
1045
|
`Primary key constraint field not found for object metadata ${e.id}`
|
|
610
1046
|
);
|
|
611
|
-
const
|
|
612
|
-
(
|
|
613
|
-
const
|
|
614
|
-
if (!c(
|
|
1047
|
+
const s = t.map(
|
|
1048
|
+
(o) => o.indexFieldMetadatas.map((a) => {
|
|
1049
|
+
const u = r.get(a.fieldMetadataId);
|
|
1050
|
+
if (!c(u))
|
|
615
1051
|
throw new Error(
|
|
616
|
-
`Index field not found for field id ${
|
|
1052
|
+
`Index field not found for field id ${a.fieldMetadataId} in index metadata ${o.id}`
|
|
617
1053
|
);
|
|
618
|
-
return
|
|
1054
|
+
return u;
|
|
619
1055
|
})
|
|
620
1056
|
);
|
|
621
|
-
return [[n], ...
|
|
622
|
-
},
|
|
1057
|
+
return [[n], ...s];
|
|
1058
|
+
}, R = (e, t) => {
|
|
623
1059
|
if (e === t) return !0;
|
|
624
1060
|
if (e && t && typeof e == "object" && typeof t == "object") {
|
|
625
1061
|
if (e.constructor !== t.constructor) return !1;
|
|
626
1062
|
if (Array.isArray(e)) {
|
|
627
|
-
const
|
|
628
|
-
if (
|
|
629
|
-
for (let
|
|
630
|
-
if (!
|
|
1063
|
+
const s = e, o = t;
|
|
1064
|
+
if (s.length !== o.length) return !1;
|
|
1065
|
+
for (let a = s.length; a-- !== 0; )
|
|
1066
|
+
if (!R(s[a], o[a])) return !1;
|
|
631
1067
|
return !0;
|
|
632
1068
|
}
|
|
633
1069
|
if (e instanceof Map && t instanceof Map) {
|
|
634
1070
|
if (e.size !== t.size) return !1;
|
|
635
|
-
for (const [
|
|
636
|
-
if (!t.has(
|
|
637
|
-
for (const [
|
|
638
|
-
if (!
|
|
1071
|
+
for (const [s] of e.entries())
|
|
1072
|
+
if (!t.has(s)) return !1;
|
|
1073
|
+
for (const [s, o] of e.entries())
|
|
1074
|
+
if (!R(o, t.get(s))) return !1;
|
|
639
1075
|
return !0;
|
|
640
1076
|
}
|
|
641
1077
|
if (e instanceof Set && t instanceof Set) {
|
|
642
1078
|
if (e.size !== t.size) return !1;
|
|
643
|
-
for (const
|
|
644
|
-
if (!t.has(
|
|
1079
|
+
for (const s of e)
|
|
1080
|
+
if (!t.has(s)) return !1;
|
|
645
1081
|
return !0;
|
|
646
1082
|
}
|
|
647
1083
|
if (ArrayBuffer.isView(e) && ArrayBuffer.isView(t)) {
|
|
648
|
-
const
|
|
649
|
-
if (
|
|
650
|
-
for (let
|
|
651
|
-
if (
|
|
1084
|
+
const s = e, o = t;
|
|
1085
|
+
if (s.length !== o.length) return !1;
|
|
1086
|
+
for (let a = s.length; a-- !== 0; )
|
|
1087
|
+
if (s[a] !== o[a]) return !1;
|
|
652
1088
|
return !0;
|
|
653
1089
|
}
|
|
654
1090
|
if (e.constructor === RegExp) {
|
|
655
|
-
const
|
|
656
|
-
return
|
|
1091
|
+
const s = e, o = t;
|
|
1092
|
+
return s.source === o.source && s.flags === o.flags;
|
|
657
1093
|
}
|
|
658
1094
|
if (e.valueOf !== Object.prototype.valueOf)
|
|
659
1095
|
return e.valueOf() === t.valueOf();
|
|
@@ -661,121 +1097,138 @@ const Nt = (e, t, r) => {
|
|
|
661
1097
|
return e.toString() === t.toString();
|
|
662
1098
|
const r = Object.keys(e), n = Object.keys(t);
|
|
663
1099
|
if (r.length !== n.length) return !1;
|
|
664
|
-
for (let
|
|
665
|
-
if (!(r[
|
|
666
|
-
for (let
|
|
667
|
-
const
|
|
668
|
-
if (!
|
|
669
|
-
e[
|
|
670
|
-
t[
|
|
1100
|
+
for (let s = r.length; s-- !== 0; )
|
|
1101
|
+
if (!(r[s] in t)) return !1;
|
|
1102
|
+
for (let s = r.length; s-- !== 0; ) {
|
|
1103
|
+
const o = r[s];
|
|
1104
|
+
if (!R(
|
|
1105
|
+
e[o],
|
|
1106
|
+
t[o]
|
|
671
1107
|
))
|
|
672
1108
|
return !1;
|
|
673
1109
|
}
|
|
674
1110
|
return !0;
|
|
675
1111
|
}
|
|
676
1112
|
return e !== e && t !== t;
|
|
677
|
-
},
|
|
1113
|
+
}, Ur = (e, t, r) => {
|
|
678
1114
|
let n = e;
|
|
679
|
-
if (c(t) && (n =
|
|
680
|
-
const
|
|
681
|
-
Object.entries(r).filter(([
|
|
682
|
-
),
|
|
683
|
-
|
|
1115
|
+
if (c(t) && (n = re(e, t)), c(r)) {
|
|
1116
|
+
const s = Object.fromEntries(
|
|
1117
|
+
Object.entries(r).filter(([a, u]) => c(u))
|
|
1118
|
+
), o = te.stringify(s);
|
|
1119
|
+
o !== "" && (n += `?${o}`);
|
|
684
1120
|
}
|
|
685
1121
|
return n;
|
|
686
|
-
},
|
|
687
|
-
let
|
|
688
|
-
if (c(t) && (
|
|
689
|
-
`/${
|
|
1122
|
+
}, Pr = (e, t, r, n) => {
|
|
1123
|
+
let s = `/${Y.Settings}/${e}`;
|
|
1124
|
+
if (c(t) && (s = re(
|
|
1125
|
+
`/${Y.Settings}/${e}`,
|
|
690
1126
|
t
|
|
691
1127
|
)), c(r)) {
|
|
692
|
-
const
|
|
693
|
-
Object.entries(r).filter(([
|
|
694
|
-
),
|
|
695
|
-
|
|
1128
|
+
const o = Object.fromEntries(
|
|
1129
|
+
Object.entries(r).filter(([u, f]) => c(f))
|
|
1130
|
+
), a = te.stringify(o);
|
|
1131
|
+
a !== "" && (s += `?${a}`);
|
|
696
1132
|
}
|
|
697
|
-
return c(n) && (
|
|
698
|
-
},
|
|
1133
|
+
return c(n) && (s += `#${n.replace(/^#/, "")}`), s;
|
|
1134
|
+
}, $r = (e) => {
|
|
699
1135
|
try {
|
|
700
1136
|
return !c(e) || e === "" ? null : JSON.parse("[" + e + "]")[0];
|
|
701
1137
|
} catch {
|
|
702
1138
|
return null;
|
|
703
1139
|
}
|
|
704
|
-
},
|
|
1140
|
+
}, Mr = (e, t) => {
|
|
705
1141
|
const r = { ...e };
|
|
706
1142
|
for (const n of t)
|
|
707
1143
|
delete r[n];
|
|
708
1144
|
return r;
|
|
709
|
-
},
|
|
1145
|
+
}, K = (e) => e === void 0 || e === null || typeof e != "object" ? e : Array.isArray(e) ? e.map((t) => K(t)).filter((t) => !v(t)) : Object.entries(e).reduce(
|
|
710
1146
|
(t, [r, n]) => {
|
|
711
|
-
if (
|
|
1147
|
+
if (v(n))
|
|
712
1148
|
return t;
|
|
713
1149
|
if (n === null || n instanceof Date)
|
|
714
1150
|
return { ...t, [r]: n };
|
|
715
1151
|
if (typeof n == "object") {
|
|
716
|
-
const
|
|
717
|
-
return !
|
|
1152
|
+
const s = K(n);
|
|
1153
|
+
return !v(s) && Object.keys(s).length > 0 ? { ...t, [r]: s } : t;
|
|
718
1154
|
}
|
|
719
1155
|
return { ...t, [r]: n };
|
|
720
1156
|
},
|
|
721
1157
|
{}
|
|
722
|
-
),
|
|
1158
|
+
), ut = /\{"type":"variableTag","attrs":\{"variable":"(\{\{[^{}]+\}\})"\}\}|\{"attrs":\{"variable":"(\{\{[^{}]+\}\})"\},"type":"variableTag"\}/g, z = (e) => JSON.stringify(e).slice(1, -1), ft = (e) => {
|
|
723
1159
|
const t = e.split(`
|
|
724
1160
|
`);
|
|
725
|
-
return t.length === 1 ? `{"type":"text","text":"${
|
|
726
|
-
const
|
|
727
|
-
return n < t.length - 1 ? `${
|
|
1161
|
+
return t.length === 1 ? `{"type":"text","text":"${z(e)}"}` : t.map((r, n) => {
|
|
1162
|
+
const s = `{"type":"text","text":"${z(r)}"}`;
|
|
1163
|
+
return n < t.length - 1 ? `${s},{"type":"hardBreak"}` : s;
|
|
728
1164
|
}).join(",");
|
|
729
|
-
},
|
|
1165
|
+
}, Lr = (e, t) => {
|
|
730
1166
|
if (c(e))
|
|
731
1167
|
return e.replace(
|
|
732
|
-
|
|
733
|
-
(r, n,
|
|
734
|
-
const
|
|
735
|
-
return
|
|
1168
|
+
ut,
|
|
1169
|
+
(r, n, s) => {
|
|
1170
|
+
const a = I(n ?? s, t), u = c(a) ? String(a) : "";
|
|
1171
|
+
return ft(u);
|
|
736
1172
|
}
|
|
737
1173
|
);
|
|
738
|
-
},
|
|
1174
|
+
}, _r = (e) => {
|
|
739
1175
|
try {
|
|
740
|
-
const t = JSON.parse(e), r =
|
|
1176
|
+
const t = JSON.parse(e), r = Oe.safeParse(t);
|
|
741
1177
|
return r.success ? r.data : void 0;
|
|
742
1178
|
} catch {
|
|
743
1179
|
return;
|
|
744
1180
|
}
|
|
745
|
-
},
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
1181
|
+
}, qr = (e) => e?.match(/^[A-Z][a-z]*/)?.[0], jr = (e) => e.split("_").map((t) => t.charAt(0)?.toUpperCase() + t.slice(1)?.toLowerCase()).join(" "), Yr = (e) => {
|
|
1182
|
+
try {
|
|
1183
|
+
if (e === void 0)
|
|
1184
|
+
return "undefined";
|
|
1185
|
+
if (e === null)
|
|
1186
|
+
return "null";
|
|
1187
|
+
if (e === 1 / 0)
|
|
1188
|
+
return "Infinity";
|
|
1189
|
+
if (e === -1 / 0)
|
|
1190
|
+
return "-Infinity";
|
|
1191
|
+
if (typeof e == "number" && isNaN(e))
|
|
1192
|
+
return "NaN";
|
|
1193
|
+
const t = JSON.stringify(e);
|
|
1194
|
+
return t === void 0 ? String(e) : t;
|
|
1195
|
+
} catch {
|
|
1196
|
+
return String(e);
|
|
1197
|
+
}
|
|
1198
|
+
}, kr = (e) => e.charAt(0).toLowerCase() + e.slice(1), Wr = (e, t, r) => t.reduce(
|
|
1199
|
+
(n, s) => {
|
|
1200
|
+
const o = e[s];
|
|
1201
|
+
return o === void 0 || typeof o != "string" || o === null ? n : {
|
|
749
1202
|
...n,
|
|
750
|
-
[
|
|
1203
|
+
[s]: ie(o)
|
|
751
1204
|
};
|
|
752
1205
|
},
|
|
753
1206
|
r ? {} : e
|
|
754
|
-
),
|
|
1207
|
+
), Gr = (e) => typeof e == "object" && e !== null && !Array.isArray(e), Jr = (e, t) => {
|
|
755
1208
|
if (e == null)
|
|
756
1209
|
throw new Error(
|
|
757
1210
|
`Value must be defined for variable ${t}, this should not happen`
|
|
758
1211
|
);
|
|
759
|
-
},
|
|
1212
|
+
}, Br = ({
|
|
760
1213
|
path: e,
|
|
761
1214
|
token: t
|
|
762
1215
|
}) => {
|
|
763
1216
|
if (e.startsWith("https:") || e.startsWith("http:"))
|
|
764
1217
|
return e;
|
|
765
1218
|
const r = e.split("/"), n = r.pop();
|
|
766
|
-
if (!
|
|
1219
|
+
if (!D(n))
|
|
767
1220
|
throw new Error(
|
|
768
1221
|
`Filename empty: cannot build signed path from folderPath '${e}'`
|
|
769
1222
|
);
|
|
770
1223
|
return `${r.join("/")}/${t}/${n}`;
|
|
771
|
-
},
|
|
1224
|
+
}, Fr = (e) => {
|
|
772
1225
|
try {
|
|
773
|
-
return
|
|
1226
|
+
return P.parse(e);
|
|
774
1227
|
} catch {
|
|
775
1228
|
throw new Error("Invalid URL");
|
|
776
1229
|
}
|
|
777
|
-
},
|
|
778
|
-
const t =
|
|
1230
|
+
}, Hr = (e) => {
|
|
1231
|
+
const t = P.safeParse(e);
|
|
779
1232
|
if (!t.success)
|
|
780
1233
|
throw new Error("Invalid URL");
|
|
781
1234
|
try {
|
|
@@ -783,166 +1236,185 @@ const Nt = (e, t, r) => {
|
|
|
783
1236
|
} catch {
|
|
784
1237
|
throw new Error("Invalid URL");
|
|
785
1238
|
}
|
|
786
|
-
},
|
|
1239
|
+
}, Kr = (e) => P.safeParse(e).success, Z = (e) => {
|
|
787
1240
|
try {
|
|
788
1241
|
return decodeURIComponent(e);
|
|
789
1242
|
} catch {
|
|
790
1243
|
return e;
|
|
791
1244
|
}
|
|
792
|
-
},
|
|
793
|
-
const t =
|
|
1245
|
+
}, zr = (e) => {
|
|
1246
|
+
const t = at(e);
|
|
794
1247
|
if (!c(t))
|
|
795
1248
|
return e;
|
|
796
|
-
const r = t.origin.toLowerCase(), n =
|
|
1249
|
+
const r = t.origin.toLowerCase(), n = Z(t.pathname) + Z(t.search) + t.hash;
|
|
797
1250
|
return (r + n).replace(/\/$/, "");
|
|
798
|
-
},
|
|
1251
|
+
}, Zr = (e) => {
|
|
799
1252
|
const t = e.replace(/-/g, "");
|
|
800
1253
|
return BigInt("0x" + t).toString(36);
|
|
801
|
-
},
|
|
1254
|
+
}, Xr = (e) => $(e) && Object.keys(e).length === 0, Qr = (e) => Ne.includes(e), dt = (e) => typeof e == "string", X = RegExp("\\{\\{([^{}]+)\\}\\}", "g"), U = (e, t) => c(e) ? dt(e) ? gt(e, t) : Array.isArray(e) ? lt(e, t) : typeof e == "object" && e !== null ? pt(e, t) : e : e, lt = (e, t) => {
|
|
802
1255
|
const r = e;
|
|
803
1256
|
for (let n = 0; n < e.length; ++n)
|
|
804
|
-
r[n] =
|
|
1257
|
+
r[n] = U(e[n], t);
|
|
805
1258
|
return r;
|
|
806
|
-
},
|
|
807
|
-
(r, [n,
|
|
808
|
-
const
|
|
809
|
-
return r[typeof
|
|
1259
|
+
}, pt = (e, t) => Object.entries(e).reduce(
|
|
1260
|
+
(r, [n, s]) => {
|
|
1261
|
+
const o = U(n, t);
|
|
1262
|
+
return r[typeof o == "string" ? o : String(o)] = U(s, t), r;
|
|
810
1263
|
},
|
|
811
1264
|
{}
|
|
812
|
-
),
|
|
813
|
-
const r = e.match(
|
|
814
|
-
return !r || r.length === 0 ? e : r.length === 1 && r[0] === e ?
|
|
1265
|
+
), gt = (e, t) => {
|
|
1266
|
+
const r = e.match(X);
|
|
1267
|
+
return !r || r.length === 0 ? e : r.length === 1 && r[0] === e ? I(e, t) : e.replace(X, (n, s) => I(n, t));
|
|
815
1268
|
};
|
|
816
1269
|
export {
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
1270
|
+
we as CustomError,
|
|
1271
|
+
tn as FIRST_DAY_OF_WEEK_ISO_8601_MONDAY,
|
|
1272
|
+
rn as TIPTAP_MARKS_RENDER_ORDER,
|
|
1273
|
+
nn as TIPTAP_MARK_TYPES,
|
|
1274
|
+
sn as TIPTAP_NODE_TYPES,
|
|
1275
|
+
P as absoluteUrlSchema,
|
|
1276
|
+
Sr as addUnitToDateTime,
|
|
1277
|
+
on as addUnitToZonedDateTime,
|
|
1278
|
+
Vt as appendCopySuffix,
|
|
1279
|
+
It as applyDiff,
|
|
1280
|
+
an as arrayOfStringsOrVariablesSchema,
|
|
1281
|
+
cn as arrayOfUuidOrVariableSchema,
|
|
1282
|
+
ve as assertIsDefinedOrThrow,
|
|
1283
|
+
V as assertUnreachable,
|
|
1284
|
+
Br as buildSignedPath,
|
|
1285
|
+
x as capitalize,
|
|
1286
|
+
un as checkIfShouldComputeEmptinessFilter,
|
|
1287
|
+
fn as checkIfShouldSkipFiltering,
|
|
1288
|
+
ir as combineFilters,
|
|
1289
|
+
xt as compareArraysOfObjectsByProperty,
|
|
1290
|
+
Yt as computeDiffBetweenObjects,
|
|
1291
|
+
dn as computeEmptyGqlOperationFilterForEmails,
|
|
1292
|
+
ln as computeEmptyGqlOperationFilterForLinks,
|
|
1293
|
+
pn as computeGqlOperationFilterForEmails,
|
|
1294
|
+
gn as computeGqlOperationFilterForLinks,
|
|
1295
|
+
tr as computeMorphRelationFieldName,
|
|
1296
|
+
or as computeRecordGqlOperationFilter,
|
|
1297
|
+
Dr as convertCalendarStartDayNonIsoNumberToFirstDayOfTheWeek,
|
|
1298
|
+
Er as convertFirstDayOfTheWeekToCalendarStartDayNumber,
|
|
1299
|
+
hn as convertGreaterThanOrEqualRatingToArrayOfRatingValues,
|
|
1300
|
+
mn as convertLessThanOrEqualRatingToArrayOfRatingValues,
|
|
1301
|
+
yn as convertRatingToRatingValue,
|
|
1302
|
+
wn as convertViewFilterOperandToCoreOperand,
|
|
1303
|
+
vr as convertViewFilterValueToString,
|
|
1304
|
+
On as createAnyFieldRecordFilterBaseProperties,
|
|
1305
|
+
Pe as deepMerge,
|
|
1306
|
+
I as evalFromContext,
|
|
1307
|
+
Qt as extractAndSanitizeObjectStringFields,
|
|
1308
|
+
sr as extractFolderPathFilenameAndTypeOrThrow,
|
|
1309
|
+
R as fastDeepEqual,
|
|
1310
|
+
Ct as filterOutByProperty,
|
|
1311
|
+
Sn as filterSelectOptionsOfFieldMetadataItem,
|
|
1312
|
+
oe as findById,
|
|
1313
|
+
Ut as findByProperty,
|
|
1314
|
+
Pt as findOrThrow,
|
|
1315
|
+
Dn as firstDayOfWeekSchema,
|
|
1316
|
+
br as formatToShortNumber,
|
|
1317
|
+
Rr as fromArrayToUniqueKeyRecord,
|
|
1318
|
+
Tr as fromArrayToValuesByKeyRecord,
|
|
1319
|
+
En as generateILikeFiltersForCompositeFields,
|
|
1320
|
+
Nn as getAbsoluteUrl,
|
|
1321
|
+
Fr as getAbsoluteUrlOrThrow,
|
|
1322
|
+
Ur as getAppPath,
|
|
1323
|
+
$t as getContiguousIncrementalValues,
|
|
1324
|
+
An as getCountryCodesForCallingCode,
|
|
1325
|
+
vn as getEmptyRecordGqlOperationFilter,
|
|
1326
|
+
bn as getFilterTypeFromFieldType,
|
|
1327
|
+
Nr as getFirstDayOfTheWeekAsANumberForDateFNS,
|
|
1328
|
+
Rn as getFirstDayOfTheWeekAsISONumber,
|
|
1329
|
+
qr as getGenericOperationName,
|
|
1330
|
+
jr as getHumanReadableNameFromCode,
|
|
1331
|
+
Ir as getImageAbsoluteURI,
|
|
1332
|
+
xr as getLogoUrlFromDomainName,
|
|
1333
|
+
Tn as getNextPeriodStart,
|
|
1334
|
+
In as getPeriodStart,
|
|
1335
|
+
Pr as getSettingsPath,
|
|
1336
|
+
at as getURLSafely,
|
|
1337
|
+
Cr as getUniqueConstraintsFields,
|
|
1338
|
+
Hr as getUrlHostnameOrThrow,
|
|
883
1339
|
c as isDefined,
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
zr as
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
1340
|
+
xn as isEmptinessOperand,
|
|
1341
|
+
Xr as isEmptyObject,
|
|
1342
|
+
Cn as isExpectedSubFieldName,
|
|
1343
|
+
rr as isFieldMetadataDateKind,
|
|
1344
|
+
Un as isFieldMetadataNumericKind,
|
|
1345
|
+
nr as isFieldMetadataSelectKind,
|
|
1346
|
+
Pn as isFieldMetadataTextKind,
|
|
1347
|
+
Qr as isLabelIdentifierFieldMetadataTypes,
|
|
1348
|
+
ar as isMatchingArrayFilter,
|
|
1349
|
+
cr as isMatchingBooleanFilter,
|
|
1350
|
+
ur as isMatchingCurrencyFilter,
|
|
1351
|
+
fr as isMatchingDateFilter,
|
|
1352
|
+
dr as isMatchingFloatFilter,
|
|
1353
|
+
lr as isMatchingMultiSelectFilter,
|
|
1354
|
+
pr as isMatchingRatingFilter,
|
|
1355
|
+
gr as isMatchingRawJsonFilter,
|
|
1356
|
+
hr as isMatchingRichTextV2Filter,
|
|
1357
|
+
mr as isMatchingSelectFilter,
|
|
1358
|
+
yr as isMatchingStringFilter,
|
|
1359
|
+
wr as isMatchingTSVectorFilter,
|
|
1360
|
+
Or as isMatchingUUIDFilter,
|
|
1361
|
+
$n as isNonEmptyArray,
|
|
1362
|
+
kt as isPlainDateAfter,
|
|
1363
|
+
Wt as isPlainDateBefore,
|
|
1364
|
+
Gt as isPlainDateBeforeOrEqual,
|
|
1365
|
+
Jt as isPlainDateInSameMonth,
|
|
1366
|
+
Bt as isPlainDateInWeekend,
|
|
1367
|
+
Gr as isPlainObject,
|
|
1368
|
+
Ft as isSamePlainDate,
|
|
1369
|
+
Mn as isValidCountryCode,
|
|
1370
|
+
Ln as isValidHostname,
|
|
1371
|
+
Tt as isValidLocale,
|
|
1372
|
+
Kr as isValidUrl,
|
|
1373
|
+
_n as isValidUuid,
|
|
1374
|
+
qn as isValidVariable,
|
|
1375
|
+
jn as jsonRelationFilterValueSchema,
|
|
1376
|
+
zr as lowercaseUrlOriginAndRemoveTrailingSlash,
|
|
1377
|
+
Mt as mapById,
|
|
1378
|
+
Lt as mapByProperty,
|
|
1379
|
+
Yn as normalizeLocale,
|
|
1380
|
+
$r as parseJson,
|
|
1381
|
+
Ht as parseToPlainDateOrThrow,
|
|
1382
|
+
er as pascalCase,
|
|
1383
|
+
kn as relationFilterValueSchemaObject,
|
|
1384
|
+
Wn as relativeDateFilterAmountSchema,
|
|
1385
|
+
Gn as relativeDateFilterDirectionSchema,
|
|
1386
|
+
Oe as relativeDateFilterSchema,
|
|
1387
|
+
Jn as relativeDateFilterStringifiedSchema,
|
|
1388
|
+
Bn as relativeDateFilterUnitSchema,
|
|
1389
|
+
Mr as removePropertiesFromRecord,
|
|
1390
|
+
K as removeUndefinedFields,
|
|
1391
|
+
Fn as resolveDateFilter,
|
|
1392
|
+
Hn as resolveDateTimeFilter,
|
|
1393
|
+
U as resolveInput,
|
|
1394
|
+
Kn as resolveRelativeDateFilter,
|
|
1395
|
+
zn as resolveRelativeDateFilterStringified,
|
|
1396
|
+
Zn as resolveRelativeDateTimeFilter,
|
|
1397
|
+
Xn as resolveRelativeDateTimeFilterStringified,
|
|
1398
|
+
Lr as resolveRichTextVariables,
|
|
1399
|
+
Z as safeDecodeURIComponent,
|
|
1400
|
+
_r as safeParseRelativeDateFilterJSONStringified,
|
|
1401
|
+
ct as sanitizeURL,
|
|
1402
|
+
Kt as sortPlainDate,
|
|
1403
|
+
Yr as stringifySafely,
|
|
1404
|
+
Ar as subUnitFromDateTime,
|
|
1405
|
+
Qn as subUnitFromZonedDateTime,
|
|
1406
|
+
_t as sumByProperty,
|
|
1407
|
+
Jr as throwIfNotDefined,
|
|
1408
|
+
Wr as trimAndRemoveDuplicatedWhitespacesFromObjectStringProperties,
|
|
1409
|
+
ie as trimAndRemoveDuplicatedWhitespacesFromString,
|
|
1410
|
+
Vn as turnAnyFieldFilterIntoRecordGqlFilter,
|
|
1411
|
+
zt as turnJSDateToPlainDate,
|
|
1412
|
+
Zt as turnPlainDateIntoUserTimeZoneInstantString,
|
|
1413
|
+
Xt as turnPlainDateToShiftedDateInSystemTimeZone,
|
|
1414
|
+
ae as turnRecordFilterGroupsIntoGqlOperationFilter,
|
|
1415
|
+
Q as turnRecordFilterIntoRecordGqlOperationFilter,
|
|
1416
|
+
kr as uncapitalize,
|
|
1417
|
+
qt as upsertIntoArrayOfObjectsComparingId,
|
|
1418
|
+
jt as upsertPropertiesOfItemIntoArrayOfObjectsComparingId,
|
|
1419
|
+
Zr as uuidToBase36
|
|
948
1420
|
};
|