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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AppLocales.d.ts","sourceRoot":"","sources":["../../../src/translations/constants/AppLocales.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgCd,CAAC"}
|
|
1
|
+
{"version":3,"file":"AppLocales.d.ts","sourceRoot":"","sources":["../../../src/translations/constants/AppLocales.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgCd,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,MAAM,OAAO,WAAW,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/translations/index.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/translations/index.ts"],"names":[],"mappings":"AASA,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="en",r={
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="en",r={en:e,"pseudo-en":"pseudo-en","af-ZA":"af-ZA","ar-SA":"ar-SA","ca-ES":"ca-ES","cs-CZ":"cs-CZ","da-DK":"da-DK","de-DE":"de-DE","el-GR":"el-GR","es-ES":"es-ES","fi-FI":"fi-FI","fr-FR":"fr-FR","he-IL":"he-IL","hu-HU":"hu-HU","it-IT":"it-IT","ja-JP":"ja-JP","ko-KR":"ko-KR","nl-NL":"nl-NL","no-NO":"no-NO","pl-PL":"pl-PL","pt-BR":"pt-BR","pt-PT":"pt-PT","ro-RO":"ro-RO","ru-RU":"ru-RU","sr-Cyrl":"sr-Cyrl","sv-SE":"sv-SE","tr-TR":"tr-TR","uk-UA":"uk-UA","vi-VN":"vi-VN","zh-CN":"zh-CN","zh-TW":"zh-TW"};exports.APP_LOCALES=r;exports.SOURCE_LOCALE=e;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const R = "en",
|
|
1
|
+
const R = "en", e = {
|
|
2
2
|
en: "en",
|
|
3
3
|
"pseudo-en": "pseudo-en",
|
|
4
4
|
"af-ZA": "af-ZA",
|
|
@@ -32,6 +32,6 @@ const R = "en", r = {
|
|
|
32
32
|
"zh-TW": "zh-TW"
|
|
33
33
|
};
|
|
34
34
|
export {
|
|
35
|
-
|
|
35
|
+
e as APP_LOCALES,
|
|
36
36
|
R as SOURCE_LOCALE
|
|
37
37
|
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IsSerializedRelation } from './IsSerializedRelation.type';
|
|
2
|
+
|
|
3
|
+
export type ExtractSerializedRelationProperties<T> = T extends unknown ? T extends object ? {
|
|
4
|
+
[P in keyof T]-?: [NonNullable<T[P]>] extends [never] ? never : IsSerializedRelation<NonNullable<T[P]>> extends true ? P : never;
|
|
5
|
+
}[keyof T] : never : never;
|
|
6
|
+
//# sourceMappingURL=ExtractSerializedRelationProperties.type.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ExtractSerializedRelationProperties.type.d.ts","sourceRoot":"","sources":["../../src/types/ExtractSerializedRelationProperties.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AAEzE,MAAM,MAAM,mCAAmC,CAAC,CAAC,IAAI,CAAC,SAAS,OAAO,GAClE,CAAC,SAAS,MAAM,GACd;KACG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,KAAK,CAAC,GACjD,KAAK,GACL,oBAAoB,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,IAAI,GAClD,CAAC,GACD,KAAK;CACZ,CAAC,MAAM,CAAC,CAAC,GACV,KAAK,GACP,KAAK,CAAC"}
|
|
@@ -1,54 +1,27 @@
|
|
|
1
1
|
import { IsExactly } from './IsExactly';
|
|
2
2
|
import { FieldMetadataType } from './FieldMetadataType';
|
|
3
|
+
import { LinkMetadata } from './composite-types/links.composite-type';
|
|
3
4
|
|
|
4
5
|
export declare const fieldMetadataDefaultValueFunctionName: {
|
|
5
6
|
readonly UUID: "uuid";
|
|
6
7
|
readonly NOW: "now";
|
|
7
8
|
};
|
|
8
9
|
export type FieldMetadataDefaultValueFunctionNames = (typeof fieldMetadataDefaultValueFunctionName)[keyof typeof fieldMetadataDefaultValueFunctionName];
|
|
9
|
-
export
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
export declare class FieldMetadataDefaultValueRawJson {
|
|
13
|
-
value: object | null;
|
|
14
|
-
}
|
|
15
|
-
export declare class FieldMetadataDefaultValueRichTextV2 {
|
|
10
|
+
export type FieldMetadataDefaultValueUuidFunction = typeof fieldMetadataDefaultValueFunctionName.UUID;
|
|
11
|
+
export type FieldMetadataDefaultValueNowFunction = typeof fieldMetadataDefaultValueFunctionName.NOW;
|
|
12
|
+
export type FieldMetadataDefaultValueRichTextV2 = {
|
|
16
13
|
blocknote: string | null;
|
|
17
14
|
markdown: string | null;
|
|
18
|
-
}
|
|
19
|
-
export
|
|
20
|
-
value: string | null;
|
|
21
|
-
}
|
|
22
|
-
export declare class FieldMetadataDefaultValueNumber {
|
|
23
|
-
value: number | null;
|
|
24
|
-
}
|
|
25
|
-
export declare class FieldMetadataDefaultValueBoolean {
|
|
26
|
-
value: boolean | null;
|
|
27
|
-
}
|
|
28
|
-
export declare class FieldMetadataDefaultValueStringArray {
|
|
29
|
-
value: string[] | null;
|
|
30
|
-
}
|
|
31
|
-
export declare class FieldMetadataDefaultValueDateTime {
|
|
32
|
-
value: Date | null;
|
|
33
|
-
}
|
|
34
|
-
export declare class FieldMetadataDefaultValueDate {
|
|
35
|
-
value: Date | null;
|
|
36
|
-
}
|
|
37
|
-
export declare class FieldMetadataDefaultValueCurrency {
|
|
15
|
+
};
|
|
16
|
+
export type FieldMetadataDefaultValueCurrency = {
|
|
38
17
|
amountMicros: string | null;
|
|
39
18
|
currencyCode: string | null;
|
|
40
|
-
}
|
|
41
|
-
export
|
|
19
|
+
};
|
|
20
|
+
export type FieldMetadataDefaultValueFullName = {
|
|
42
21
|
firstName: string | null;
|
|
43
22
|
lastName: string | null;
|
|
44
|
-
}
|
|
45
|
-
export
|
|
46
|
-
value: typeof fieldMetadataDefaultValueFunctionName.UUID;
|
|
47
|
-
}
|
|
48
|
-
export declare class FieldMetadataDefaultValueNowFunction {
|
|
49
|
-
value: typeof fieldMetadataDefaultValueFunctionName.NOW;
|
|
50
|
-
}
|
|
51
|
-
export declare class FieldMetadataDefaultValueAddress {
|
|
23
|
+
};
|
|
24
|
+
export type FieldMetadataDefaultValueAddress = {
|
|
52
25
|
addressStreet1: string | null;
|
|
53
26
|
addressStreet2: string | null;
|
|
54
27
|
addressCity: string | null;
|
|
@@ -57,69 +30,52 @@ export declare class FieldMetadataDefaultValueAddress {
|
|
|
57
30
|
addressCountry: string | null;
|
|
58
31
|
addressLat: number | null;
|
|
59
32
|
addressLng: number | null;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
label: string;
|
|
63
|
-
url: string;
|
|
64
|
-
}
|
|
65
|
-
export declare class FieldMetadataDefaultValueLinks {
|
|
33
|
+
};
|
|
34
|
+
export type FieldMetadataDefaultValueLinks = {
|
|
66
35
|
primaryLinkLabel: string | null;
|
|
67
36
|
primaryLinkUrl: string | null;
|
|
68
37
|
secondaryLinks: LinkMetadata[] | null;
|
|
69
|
-
}
|
|
70
|
-
export
|
|
38
|
+
};
|
|
39
|
+
export type FieldMetadataDefaultActor = {
|
|
71
40
|
source: string;
|
|
72
41
|
workspaceMemberId?: string | null;
|
|
73
42
|
name: string;
|
|
74
|
-
}
|
|
75
|
-
export
|
|
43
|
+
};
|
|
44
|
+
export type FieldMetadataDefaultValueEmails = {
|
|
76
45
|
primaryEmail: string | null;
|
|
77
46
|
additionalEmails: object | null;
|
|
78
|
-
}
|
|
79
|
-
export
|
|
47
|
+
};
|
|
48
|
+
export type FieldMetadataDefaultValuePhones = {
|
|
80
49
|
primaryPhoneNumber: string | null;
|
|
81
50
|
primaryPhoneCountryCode: string | null;
|
|
82
51
|
primaryPhoneCallingCode: string | null;
|
|
83
52
|
additionalPhones: object | null;
|
|
84
|
-
}
|
|
85
|
-
export declare class FieldMetadataDefaultArray {
|
|
86
|
-
value: string[] | null;
|
|
87
|
-
}
|
|
88
|
-
type ExtractValueType<T> = T extends {
|
|
89
|
-
value: infer V;
|
|
90
|
-
} ? V : T;
|
|
91
|
-
type UnionOfValues<T> = T[keyof T];
|
|
92
|
-
type FieldMetadataDefaultValueMapping = {
|
|
93
|
-
[FieldMetadataType.UUID]: FieldMetadataDefaultValueString | FieldMetadataDefaultValueUuidFunction;
|
|
94
|
-
[FieldMetadataType.TEXT]: FieldMetadataDefaultValueString;
|
|
95
|
-
[FieldMetadataType.PHONES]: FieldMetadataDefaultValuePhones;
|
|
96
|
-
[FieldMetadataType.EMAILS]: FieldMetadataDefaultValueEmails;
|
|
97
|
-
[FieldMetadataType.DATE_TIME]: FieldMetadataDefaultValueDateTime | FieldMetadataDefaultValueNowFunction;
|
|
98
|
-
[FieldMetadataType.DATE]: FieldMetadataDefaultValueDateTime | FieldMetadataDefaultValueNowFunction;
|
|
99
|
-
[FieldMetadataType.BOOLEAN]: FieldMetadataDefaultValueBoolean;
|
|
100
|
-
[FieldMetadataType.NUMBER]: FieldMetadataDefaultValueNumber;
|
|
101
|
-
[FieldMetadataType.POSITION]: FieldMetadataDefaultValueNumber;
|
|
102
|
-
[FieldMetadataType.NUMERIC]: FieldMetadataDefaultValueString;
|
|
103
|
-
[FieldMetadataType.LINKS]: FieldMetadataDefaultValueLinks;
|
|
104
|
-
[FieldMetadataType.CURRENCY]: FieldMetadataDefaultValueCurrency;
|
|
105
|
-
[FieldMetadataType.FULL_NAME]: FieldMetadataDefaultValueFullName;
|
|
106
|
-
[FieldMetadataType.ADDRESS]: FieldMetadataDefaultValueAddress;
|
|
107
|
-
[FieldMetadataType.RATING]: FieldMetadataDefaultValueString;
|
|
108
|
-
[FieldMetadataType.SELECT]: FieldMetadataDefaultValueString;
|
|
109
|
-
[FieldMetadataType.MULTI_SELECT]: FieldMetadataDefaultValueStringArray;
|
|
110
|
-
[FieldMetadataType.RAW_JSON]: FieldMetadataDefaultValueRawJson;
|
|
111
|
-
[FieldMetadataType.RICH_TEXT]: FieldMetadataDefaultValueRichText;
|
|
112
|
-
[FieldMetadataType.ACTOR]: FieldMetadataDefaultActor;
|
|
113
|
-
[FieldMetadataType.ARRAY]: FieldMetadataDefaultArray;
|
|
114
53
|
};
|
|
115
|
-
export type
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
[
|
|
54
|
+
export type FieldMetadataDefaultValueMapping = {
|
|
55
|
+
[FieldMetadataType.UUID]: string | FieldMetadataDefaultValueUuidFunction | null;
|
|
56
|
+
[FieldMetadataType.TEXT]: string | null;
|
|
57
|
+
[FieldMetadataType.PHONES]: FieldMetadataDefaultValuePhones | null;
|
|
58
|
+
[FieldMetadataType.EMAILS]: FieldMetadataDefaultValueEmails | null;
|
|
59
|
+
[FieldMetadataType.DATE_TIME]: Date | FieldMetadataDefaultValueNowFunction | null;
|
|
60
|
+
[FieldMetadataType.DATE]: Date | FieldMetadataDefaultValueNowFunction | null;
|
|
61
|
+
[FieldMetadataType.BOOLEAN]: boolean | null;
|
|
62
|
+
[FieldMetadataType.NUMBER]: number | null;
|
|
63
|
+
[FieldMetadataType.POSITION]: number | null;
|
|
64
|
+
[FieldMetadataType.NUMERIC]: string | null;
|
|
65
|
+
[FieldMetadataType.LINKS]: FieldMetadataDefaultValueLinks | null;
|
|
66
|
+
[FieldMetadataType.CURRENCY]: FieldMetadataDefaultValueCurrency | null;
|
|
67
|
+
[FieldMetadataType.FULL_NAME]: FieldMetadataDefaultValueFullName | null;
|
|
68
|
+
[FieldMetadataType.ADDRESS]: FieldMetadataDefaultValueAddress | null;
|
|
69
|
+
[FieldMetadataType.RATING]: string | null;
|
|
70
|
+
[FieldMetadataType.SELECT]: string | null;
|
|
71
|
+
[FieldMetadataType.MULTI_SELECT]: string[] | null;
|
|
72
|
+
[FieldMetadataType.RAW_JSON]: object | null;
|
|
73
|
+
[FieldMetadataType.RICH_TEXT]: string | null;
|
|
74
|
+
[FieldMetadataType.RICH_TEXT_V2]: FieldMetadataDefaultValueRichTextV2 | null;
|
|
75
|
+
[FieldMetadataType.ACTOR]: FieldMetadataDefaultActor | null;
|
|
76
|
+
[FieldMetadataType.ARRAY]: string[] | null;
|
|
122
77
|
};
|
|
123
|
-
export type
|
|
124
|
-
export
|
|
78
|
+
export type FieldMetadataFunctionDefaultValue = FieldMetadataDefaultValueUuidFunction | FieldMetadataDefaultValueNowFunction;
|
|
79
|
+
export type FieldMetadataDefaultValueForAnyType = null | FieldMetadataDefaultValueMapping[keyof FieldMetadataDefaultValueMapping];
|
|
80
|
+
export type FieldMetadataDefaultValue<T extends FieldMetadataType = FieldMetadataType> = IsExactly<T, FieldMetadataType> extends true ? FieldMetadataDefaultValueForAnyType : T extends keyof FieldMetadataDefaultValueMapping ? FieldMetadataDefaultValueMapping[T] : never | null;
|
|
125
81
|
//# sourceMappingURL=FieldMetadataDefaultValue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FieldMetadataDefaultValue.d.ts","sourceRoot":"","sources":["../../src/types/FieldMetadataDefaultValue.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"FieldMetadataDefaultValue.d.ts","sourceRoot":"","sources":["../../src/types/FieldMetadataDefaultValue.ts"],"names":[],"mappings":"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"}
|
|
@@ -16,6 +16,7 @@ type FieldMetadataOptionsMapping = {
|
|
|
16
16
|
[FieldMetadataType.SELECT]: FieldMetadataComplexOption[];
|
|
17
17
|
[FieldMetadataType.MULTI_SELECT]: FieldMetadataComplexOption[];
|
|
18
18
|
};
|
|
19
|
-
export type
|
|
19
|
+
export type FieldMetadataOptionForAnyType = null | FieldMetadataOptionsMapping[keyof FieldMetadataOptionsMapping];
|
|
20
|
+
export type FieldMetadataOptions<T extends FieldMetadataType = FieldMetadataType> = IsExactly<T, FieldMetadataType> extends true ? FieldMetadataOptionForAnyType : T extends keyof FieldMetadataOptionsMapping ? FieldMetadataOptionsMapping[T] : never | null;
|
|
20
21
|
export {};
|
|
21
22
|
//# sourceMappingURL=FieldMetadataOptions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FieldMetadataOptions.d.ts","sourceRoot":"","sources":["../../src/types/FieldMetadataOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAEnD,MAAM,MAAM,QAAQ,GAChB,OAAO,GACP,WAAW,GACX,KAAK,GACL,MAAM,GACN,QAAQ,GACR,MAAM,GACN,KAAK,GACL,QAAQ,GACR,QAAQ,GACR,MAAM,CAAC;AAEX,qBAAa,0BAA0B;IACrC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf;AAED,qBAAa,0BAA2B,SAAQ,0BAA0B;IACxE,KAAK,EAAE,QAAQ,CAAC;CACjB;AAED,KAAK,2BAA2B,GAAG;IACjC,CAAC,iBAAiB,CAAC,MAAM,CAAC,EAAE,0BAA0B,EAAE,CAAC;IACzD,CAAC,iBAAiB,CAAC,MAAM,CAAC,EAAE,0BAA0B,EAAE,CAAC;IACzD,CAAC,iBAAiB,CAAC,YAAY,CAAC,EAAE,0BAA0B,EAAE,CAAC;CAChE,CAAC;AAEF,MAAM,MAAM,oBAAoB,CAC9B,CAAC,SAAS,iBAAiB,GAAG,iBAAiB,IAE/C,SAAS,CAAC,CAAC,EAAE,iBAAiB,CAAC,SAAS,IAAI,GACxC,
|
|
1
|
+
{"version":3,"file":"FieldMetadataOptions.d.ts","sourceRoot":"","sources":["../../src/types/FieldMetadataOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAEnD,MAAM,MAAM,QAAQ,GAChB,OAAO,GACP,WAAW,GACX,KAAK,GACL,MAAM,GACN,QAAQ,GACR,MAAM,GACN,KAAK,GACL,QAAQ,GACR,QAAQ,GACR,MAAM,CAAC;AAEX,qBAAa,0BAA0B;IACrC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf;AAED,qBAAa,0BAA2B,SAAQ,0BAA0B;IACxE,KAAK,EAAE,QAAQ,CAAC;CACjB;AAED,KAAK,2BAA2B,GAAG;IACjC,CAAC,iBAAiB,CAAC,MAAM,CAAC,EAAE,0BAA0B,EAAE,CAAC;IACzD,CAAC,iBAAiB,CAAC,MAAM,CAAC,EAAE,0BAA0B,EAAE,CAAC;IACzD,CAAC,iBAAiB,CAAC,YAAY,CAAC,EAAE,0BAA0B,EAAE,CAAC;CAChE,CAAC;AAEF,MAAM,MAAM,6BAA6B,GACrC,IAAI,GACJ,2BAA2B,CAAC,MAAM,2BAA2B,CAAC,CAAC;AAEnE,MAAM,MAAM,oBAAoB,CAC9B,CAAC,SAAS,iBAAiB,GAAG,iBAAiB,IAE/C,SAAS,CAAC,CAAC,EAAE,iBAAiB,CAAC,SAAS,IAAI,GACxC,6BAA6B,GAC7B,CAAC,SAAS,MAAM,2BAA2B,GACzC,2BAA2B,CAAC,CAAC,CAAC,GAC9B,KAAK,GAAG,IAAI,CAAC"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { SerializedRelation } from './SerializedRelation.type';
|
|
2
|
+
import { RelationType } from './RelationType';
|
|
1
3
|
import { RelationOnDeleteAction } from './RelationOnDeleteAction.type';
|
|
2
4
|
import { IsExactly } from './IsExactly';
|
|
3
5
|
import { FieldMetadataType } from './FieldMetadataType';
|
|
4
|
-
import { RelationType } from './RelationType';
|
|
5
6
|
import { FieldMetadataMultiItemSettings } from './FieldMetadataMultiItemSettings';
|
|
6
7
|
import { AllowedAddressSubField } from './AddressFieldsType';
|
|
7
8
|
|
|
@@ -16,33 +17,37 @@ export declare enum DateDisplayFormat {
|
|
|
16
17
|
CUSTOM = "CUSTOM"
|
|
17
18
|
}
|
|
18
19
|
export type FieldNumberVariant = 'number' | 'percentage';
|
|
19
|
-
|
|
20
|
+
type FieldMetadataNumberSettings = {
|
|
20
21
|
dataType?: NumberDataType;
|
|
21
22
|
decimals?: number;
|
|
22
23
|
type?: FieldNumberVariant;
|
|
23
24
|
};
|
|
24
|
-
|
|
25
|
+
type FieldMetadataTextSettings = {
|
|
25
26
|
displayedMaxRows?: number;
|
|
26
27
|
};
|
|
27
|
-
|
|
28
|
+
type FieldMetadataDateSettings = {
|
|
28
29
|
displayFormat?: DateDisplayFormat;
|
|
29
30
|
};
|
|
30
|
-
|
|
31
|
+
type FieldMetadataDateTimeSettings = {
|
|
31
32
|
displayFormat?: DateDisplayFormat;
|
|
32
33
|
};
|
|
33
|
-
|
|
34
|
+
type FieldMetadataRelationSettings = {
|
|
34
35
|
relationType: RelationType;
|
|
35
36
|
onDelete?: RelationOnDeleteAction;
|
|
36
37
|
joinColumnName?: string | null;
|
|
38
|
+
junctionTargetFieldId?: SerializedRelation;
|
|
37
39
|
};
|
|
38
|
-
|
|
40
|
+
type FieldMetadataAddressSettings = {
|
|
39
41
|
subFields?: AllowedAddressSubField[];
|
|
40
42
|
};
|
|
41
|
-
|
|
43
|
+
type FieldMetadataFilesSettings = {
|
|
44
|
+
maxNumberOfValues: number;
|
|
45
|
+
};
|
|
46
|
+
type FieldMetadataTsVectorSettings = {
|
|
42
47
|
asExpression?: string;
|
|
43
48
|
generatedType?: 'STORED' | 'VIRTUAL';
|
|
44
49
|
};
|
|
45
|
-
type FieldMetadataSettingsMapping = {
|
|
50
|
+
export type FieldMetadataSettingsMapping = {
|
|
46
51
|
[FieldMetadataType.NUMBER]: FieldMetadataNumberSettings | null;
|
|
47
52
|
[FieldMetadataType.DATE]: FieldMetadataDateSettings | null;
|
|
48
53
|
[FieldMetadataType.DATE_TIME]: FieldMetadataDateTimeSettings | null;
|
|
@@ -55,6 +60,7 @@ type FieldMetadataSettingsMapping = {
|
|
|
55
60
|
[FieldMetadataType.EMAILS]: FieldMetadataMultiItemSettings | null;
|
|
56
61
|
[FieldMetadataType.LINKS]: FieldMetadataMultiItemSettings | null;
|
|
57
62
|
[FieldMetadataType.ARRAY]: FieldMetadataMultiItemSettings | null;
|
|
63
|
+
[FieldMetadataType.FILES]: FieldMetadataFilesSettings;
|
|
58
64
|
};
|
|
59
65
|
export type AllFieldMetadataSettings = FieldMetadataSettingsMapping[keyof FieldMetadataSettingsMapping];
|
|
60
66
|
export type FieldMetadataSettings<T extends FieldMetadataType = FieldMetadataType> = IsExactly<T, FieldMetadataType> extends true ? null | AllFieldMetadataSettings : T extends keyof FieldMetadataSettingsMapping ? FieldMetadataSettingsMapping[T] : never | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FieldMetadataSettings.d.ts","sourceRoot":"","sources":["../../src/types/FieldMetadataSettings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,KAAK,8BAA8B,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,KAAK,
|
|
1
|
+
{"version":3,"file":"FieldMetadataSettings.d.ts","sourceRoot":"","sources":["../../src/types/FieldMetadataSettings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,EAAE,KAAK,8BAA8B,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,KAAK,sBAAsB,EAAE,MAAM,qCAAqC,CAAC;AAClF,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAE1E,oBAAY,cAAc;IACxB,KAAK,UAAU;IACf,GAAG,QAAQ;IACX,MAAM,WAAW;CAClB;AAED,oBAAY,iBAAiB;IAC3B,QAAQ,aAAa;IACrB,aAAa,kBAAkB;IAC/B,MAAM,WAAW;CAClB;AAED,MAAM,MAAM,kBAAkB,GAAG,QAAQ,GAAG,YAAY,CAAC;AAEzD,KAAK,2BAA2B,GAAG;IACjC,QAAQ,CAAC,EAAE,cAAc,CAAC;IAC1B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,kBAAkB,CAAC;CAC3B,CAAC;AAEF,KAAK,yBAAyB,GAAG;IAC/B,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF,KAAK,yBAAyB,GAAG;IAC/B,aAAa,CAAC,EAAE,iBAAiB,CAAC;CACnC,CAAC;AAEF,KAAK,6BAA6B,GAAG;IACnC,aAAa,CAAC,EAAE,iBAAiB,CAAC;CACnC,CAAC;AAEF,KAAK,6BAA6B,GAAG;IACnC,YAAY,EAAE,YAAY,CAAC;IAC3B,QAAQ,CAAC,EAAE,sBAAsB,CAAC;IAClC,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAG/B,qBAAqB,CAAC,EAAE,kBAAkB,CAAC;CAC5C,CAAC;AAEF,KAAK,4BAA4B,GAAG;IAClC,SAAS,CAAC,EAAE,sBAAsB,EAAE,CAAC;CACtC,CAAC;AAEF,KAAK,0BAA0B,GAAG;IAChC,iBAAiB,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF,KAAK,6BAA6B,GAAG;IACnC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,aAAa,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,4BAA4B,GAAG;IACzC,CAAC,iBAAiB,CAAC,MAAM,CAAC,EAAE,2BAA2B,GAAG,IAAI,CAAC;IAC/D,CAAC,iBAAiB,CAAC,IAAI,CAAC,EAAE,yBAAyB,GAAG,IAAI,CAAC;IAC3D,CAAC,iBAAiB,CAAC,SAAS,CAAC,EAAE,6BAA6B,GAAG,IAAI,CAAC;IACpE,CAAC,iBAAiB,CAAC,IAAI,CAAC,EAAE,yBAAyB,GAAG,IAAI,CAAC;IAC3D,CAAC,iBAAiB,CAAC,QAAQ,CAAC,EAAE,6BAA6B,CAAC;IAC5D,CAAC,iBAAiB,CAAC,OAAO,CAAC,EAAE,4BAA4B,GAAG,IAAI,CAAC;IACjE,CAAC,iBAAiB,CAAC,cAAc,CAAC,EAAE,6BAA6B,CAAC;IAClE,CAAC,iBAAiB,CAAC,SAAS,CAAC,EAAE,6BAA6B,GAAG,IAAI,CAAC;IACpE,CAAC,iBAAiB,CAAC,MAAM,CAAC,EAAE,8BAA8B,GAAG,IAAI,CAAC;IAClE,CAAC,iBAAiB,CAAC,MAAM,CAAC,EAAE,8BAA8B,GAAG,IAAI,CAAC;IAClE,CAAC,iBAAiB,CAAC,KAAK,CAAC,EAAE,8BAA8B,GAAG,IAAI,CAAC;IACjE,CAAC,iBAAiB,CAAC,KAAK,CAAC,EAAE,8BAA8B,GAAG,IAAI,CAAC;IACjE,CAAC,iBAAiB,CAAC,KAAK,CAAC,EAAE,0BAA0B,CAAC;CACvD,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAClC,4BAA4B,CAAC,MAAM,4BAA4B,CAAC,CAAC;AAEnE,MAAM,MAAM,qBAAqB,CAC/B,CAAC,SAAS,iBAAiB,GAAG,iBAAiB,IAE/C,SAAS,CAAC,CAAC,EAAE,iBAAiB,CAAC,SAAS,IAAI,GACxC,IAAI,GAAG,wBAAwB,GAC/B,CAAC,SAAS,MAAM,4BAA4B,GAC1C,4BAA4B,CAAC,CAAC,CAAC,GAC/B,KAAK,GAAG,IAAI,CAAC"}
|
|
@@ -1,28 +1,29 @@
|
|
|
1
1
|
export declare enum FieldMetadataType {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
EMAILS = "EMAILS",
|
|
6
|
-
DATE_TIME = "DATE_TIME",
|
|
7
|
-
DATE = "DATE",
|
|
2
|
+
ACTOR = "ACTOR",
|
|
3
|
+
ADDRESS = "ADDRESS",
|
|
4
|
+
ARRAY = "ARRAY",
|
|
8
5
|
BOOLEAN = "BOOLEAN",
|
|
9
|
-
NUMBER = "NUMBER",
|
|
10
|
-
NUMERIC = "NUMERIC",
|
|
11
|
-
LINKS = "LINKS",
|
|
12
6
|
CURRENCY = "CURRENCY",
|
|
7
|
+
DATE = "DATE",
|
|
8
|
+
DATE_TIME = "DATE_TIME",
|
|
9
|
+
EMAILS = "EMAILS",
|
|
10
|
+
FILES = "FILES",
|
|
13
11
|
FULL_NAME = "FULL_NAME",
|
|
14
|
-
|
|
15
|
-
SELECT = "SELECT",
|
|
16
|
-
MULTI_SELECT = "MULTI_SELECT",
|
|
17
|
-
RELATION = "RELATION",
|
|
12
|
+
LINKS = "LINKS",
|
|
18
13
|
MORPH_RELATION = "MORPH_RELATION",
|
|
14
|
+
MULTI_SELECT = "MULTI_SELECT",
|
|
15
|
+
NUMBER = "NUMBER",
|
|
16
|
+
NUMERIC = "NUMERIC",
|
|
17
|
+
PHONES = "PHONES",
|
|
19
18
|
POSITION = "POSITION",
|
|
20
|
-
|
|
19
|
+
RATING = "RATING",
|
|
21
20
|
RAW_JSON = "RAW_JSON",
|
|
21
|
+
RELATION = "RELATION",
|
|
22
22
|
RICH_TEXT = "RICH_TEXT",
|
|
23
23
|
RICH_TEXT_V2 = "RICH_TEXT_V2",
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
TS_VECTOR = "TS_VECTOR"
|
|
24
|
+
SELECT = "SELECT",
|
|
25
|
+
TEXT = "TEXT",
|
|
26
|
+
TS_VECTOR = "TS_VECTOR",
|
|
27
|
+
UUID = "UUID"
|
|
27
28
|
}
|
|
28
29
|
//# sourceMappingURL=FieldMetadataType.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FieldMetadataType.d.ts","sourceRoot":"","sources":["../../src/types/FieldMetadataType.ts"],"names":[],"mappings":"AAAA,oBAAY,iBAAiB;IAC3B,
|
|
1
|
+
{"version":3,"file":"FieldMetadataType.d.ts","sourceRoot":"","sources":["../../src/types/FieldMetadataType.ts"],"names":[],"mappings":"AAAA,oBAAY,iBAAiB;IAC3B,KAAK,UAAU;IACf,OAAO,YAAY;IACnB,KAAK,UAAU;IACf,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,KAAK,UAAU;IACf,cAAc,mBAAmB;IACjC,YAAY,iBAAiB;IAC7B,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,YAAY,iBAAiB;IAC7B,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,SAAS,cAAc;IACvB,IAAI,SAAS;CACd"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const FILE_CATEGORIES: {
|
|
2
|
+
readonly ARCHIVE: "ARCHIVE";
|
|
3
|
+
readonly AUDIO: "AUDIO";
|
|
4
|
+
readonly IMAGE: "IMAGE";
|
|
5
|
+
readonly PRESENTATION: "PRESENTATION";
|
|
6
|
+
readonly SPREADSHEET: "SPREADSHEET";
|
|
7
|
+
readonly TEXT_DOCUMENT: "TEXT_DOCUMENT";
|
|
8
|
+
readonly VIDEO: "VIDEO";
|
|
9
|
+
readonly OTHER: "OTHER";
|
|
10
|
+
};
|
|
11
|
+
export type FileCategory = keyof typeof FILE_CATEGORIES;
|
|
12
|
+
//# sourceMappingURL=FileCategory.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FileCategory.d.ts","sourceRoot":"","sources":["../../src/types/FileCategory.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe;;;;;;;;;CASlB,CAAC;AAEX,MAAM,MAAM,YAAY,GAAG,MAAM,OAAO,eAAe,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare enum FileFolder {
|
|
2
|
+
ProfilePicture = "profile-picture",
|
|
3
|
+
WorkspaceLogo = "workspace-logo",
|
|
4
|
+
Attachment = "attachment",
|
|
5
|
+
PersonPicture = "person-picture",
|
|
6
|
+
File = "file",
|
|
7
|
+
AgentChat = "agent-chat",
|
|
8
|
+
BuiltLogicFunction = "built-logic-function",
|
|
9
|
+
BuiltFrontComponent = "built-front-component",
|
|
10
|
+
PublicAsset = "public-asset",
|
|
11
|
+
Source = "source",
|
|
12
|
+
FilesField = "files-field",
|
|
13
|
+
Dependencies = "dependencies"
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=FileFolder.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FileFolder.d.ts","sourceRoot":"","sources":["../../src/types/FileFolder.ts"],"names":[],"mappings":"AAAA,oBAAY,UAAU;IACpB,cAAc,oBAAoB;IAClC,aAAa,mBAAmB;IAChC,UAAU,eAAe;IACzB,aAAa,mBAAmB;IAChC,IAAI,SAAS;IACb,SAAS,eAAe;IACxB,kBAAkB,yBAAyB;IAC3C,mBAAmB,0BAA0B;IAC7C,WAAW,iBAAiB;IAC5B,MAAM,WAAW;IACjB,UAAU,gBAAgB;IAC1B,YAAY,iBAAiB;CAC9B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IsEmptyObject.type.d.ts","sourceRoot":"","sources":["../../src/types/IsEmptyObject.type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,MAAM,IAAI,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,KAAK,CAAC,GACnE,IAAI,GACJ,KAAK,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type IsEmptyRecord<T extends
|
|
1
|
+
export type IsEmptyRecord<T extends object> = keyof T extends never ? true : false;
|
|
2
2
|
//# sourceMappingURL=IsEmptyRecord.type.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IsEmptyRecord.type.d.ts","sourceRoot":"","sources":["../../src/types/IsEmptyRecord.type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,
|
|
1
|
+
{"version":3,"file":"IsEmptyRecord.type.d.ts","sourceRoot":"","sources":["../../src/types/IsEmptyRecord.type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,CAAC,SAAS,KAAK,GAC/D,IAAI,GACJ,KAAK,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IsNever.type.d.ts","sourceRoot":"","sources":["../../src/types/IsNever.type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,IAAI,GAAG,KAAK,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IsSerializedRelation.type.d.ts","sourceRoot":"","sources":["../../src/types/IsSerializedRelation.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,iCAAiC,CAAC;AAE5E,MAAM,MAAM,oBAAoB,CAAC,CAAC,IAChC,OAAO,yBAAyB,SAAS,MAAM,CAAC,GAAG,IAAI,GAAG,KAAK,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AWS HTTP API v2 compatible request format for logic functions
|
|
3
|
+
* @see https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-lambda.html
|
|
4
|
+
*
|
|
5
|
+
* @typeParam TBody - The type of the request body. Defaults to `object` for parsed JSON bodies.
|
|
6
|
+
*/
|
|
7
|
+
export type LogicFunctionEvent<TBody = object> = {
|
|
8
|
+
/** HTTP headers (filtered by forwardedRequestHeaders in route trigger) */
|
|
9
|
+
headers: Record<string, string | undefined>;
|
|
10
|
+
/** Query string parameters (multiple values are joined with commas, e.g., "1,2,3") */
|
|
11
|
+
queryStringParameters: Record<string, string | undefined>;
|
|
12
|
+
/** Path parameters extracted from the route pattern (e.g., /users/:id → { id: '123' }). Multiple values are joined with commas. */
|
|
13
|
+
pathParameters: Record<string, string | undefined>;
|
|
14
|
+
/** Request body */
|
|
15
|
+
body: TBody | null;
|
|
16
|
+
/** Whether the body is base64 encoded */
|
|
17
|
+
isBase64Encoded: boolean;
|
|
18
|
+
/** Request context containing HTTP method, path, and other metadata */
|
|
19
|
+
requestContext: {
|
|
20
|
+
http: {
|
|
21
|
+
/** HTTP method (GET, POST, PUT, PATCH, DELETE) */
|
|
22
|
+
method: string;
|
|
23
|
+
/** Raw request path (e.g., /users/123) */
|
|
24
|
+
path: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
//# sourceMappingURL=LogicFunctionEvent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LogicFunctionEvent.d.ts","sourceRoot":"","sources":["../../src/types/LogicFunctionEvent.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,MAAM,MAAM,kBAAkB,CAAC,KAAK,GAAG,MAAM,IAAI;IAC/C,0EAA0E;IAC1E,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,CAAC;IAE5C,sFAAsF;IACtF,qBAAqB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,CAAC;IAE1D,mIAAmI;IACnI,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,CAAC;IAEnD,mBAAmB;IACnB,IAAI,EAAE,KAAK,GAAG,IAAI,CAAC;IAEnB,yCAAyC;IACzC,eAAe,EAAE,OAAO,CAAC;IAEzB,uEAAuE;IACvE,cAAc,EAAE;QACd,IAAI,EAAE;YACJ,kDAAkD;YAClD,MAAM,EAAE,MAAM,CAAC;YACf,0CAA0C;YAC1C,IAAI,EAAE,MAAM,CAAC;SACd,CAAC;KACH,CAAC;CACH,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { RowLevelPermissionPredicateGroup } from './RowLevelPermissionPredicateGroup';
|
|
2
|
+
import { RowLevelPermissionPredicate } from './RowLevelPermissionPredicate';
|
|
1
3
|
import { RestrictedFieldsPermissions } from './RestrictedFieldsPermissions';
|
|
2
4
|
|
|
3
5
|
export type ObjectPermissions = {
|
|
@@ -6,5 +8,7 @@ export type ObjectPermissions = {
|
|
|
6
8
|
canSoftDeleteObjectRecords: boolean;
|
|
7
9
|
canDestroyObjectRecords: boolean;
|
|
8
10
|
restrictedFields: RestrictedFieldsPermissions;
|
|
11
|
+
rowLevelPermissionPredicates: RowLevelPermissionPredicate[];
|
|
12
|
+
rowLevelPermissionPredicateGroups: RowLevelPermissionPredicateGroup[];
|
|
9
13
|
};
|
|
10
14
|
//# sourceMappingURL=ObjectPermissions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ObjectPermissions.d.ts","sourceRoot":"","sources":["../../src/types/ObjectPermissions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,2BAA2B,EAAE,MAAM,+BAA+B,CAAC;
|
|
1
|
+
{"version":3,"file":"ObjectPermissions.d.ts","sourceRoot":"","sources":["../../src/types/ObjectPermissions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,2BAA2B,EAAE,MAAM,+BAA+B,CAAC;AACjF,OAAO,EAAE,KAAK,2BAA2B,EAAE,MAAM,+BAA+B,CAAC;AACjF,OAAO,EAAE,KAAK,gCAAgC,EAAE,MAAM,oCAAoC,CAAC;AAE3F,MAAM,MAAM,iBAAiB,GAAG;IAC9B,oBAAoB,EAAE,OAAO,CAAC;IAC9B,sBAAsB,EAAE,OAAO,CAAC;IAChC,0BAA0B,EAAE,OAAO,CAAC;IACpC,uBAAuB,EAAE,OAAO,CAAC;IACjC,gBAAgB,EAAE,2BAA2B,CAAC;IAC9C,4BAA4B,EAAE,2BAA2B,EAAE,CAAC;IAC5D,iCAAiC,EAAE,gCAAgC,EAAE,CAAC;CACvE,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { RowLevelPermissionPredicateValue } from './RowLevelPermissionPredicateValue';
|
|
2
|
+
import { RowLevelPermissionPredicateOperand } from './RowLevelPermissionPredicateOperand';
|
|
3
|
+
|
|
4
|
+
export type RowLevelPermissionPredicate = {
|
|
5
|
+
id: string;
|
|
6
|
+
fieldMetadataId: string;
|
|
7
|
+
objectMetadataId: string;
|
|
8
|
+
operand: RowLevelPermissionPredicateOperand;
|
|
9
|
+
value: RowLevelPermissionPredicateValue;
|
|
10
|
+
subFieldName: string | null;
|
|
11
|
+
workspaceMemberFieldMetadataId: string | null;
|
|
12
|
+
workspaceMemberSubFieldName: string | null;
|
|
13
|
+
roleId: string;
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=RowLevelPermissionPredicate.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RowLevelPermissionPredicate.d.ts","sourceRoot":"","sources":["../../src/types/RowLevelPermissionPredicate.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,kCAAkC,EAAE,MAAM,4CAA4C,CAAC;AACrG,OAAO,EAAE,KAAK,gCAAgC,EAAE,MAAM,0CAA0C,CAAC;AAEjG,MAAM,MAAM,2BAA2B,GAAG;IACxC,EAAE,EAAE,MAAM,CAAC;IACX,eAAe,EAAE,MAAM,CAAC;IACxB,gBAAgB,EAAE,MAAM,CAAC;IACzB,OAAO,EAAE,kCAAkC,CAAC;IAC5C,KAAK,EAAE,gCAAgC,CAAC;IACxC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,8BAA8B,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9C,2BAA2B,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3C,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { RowLevelPermissionPredicateGroupLogicalOperator } from './RowLevelPermissionPredicateGroupLogicalOperator';
|
|
2
|
+
|
|
3
|
+
export type RowLevelPermissionPredicateGroup = {
|
|
4
|
+
id: string;
|
|
5
|
+
logicalOperator: RowLevelPermissionPredicateGroupLogicalOperator;
|
|
6
|
+
objectMetadataId: string;
|
|
7
|
+
parentRowLevelPermissionPredicateGroupId: string | null;
|
|
8
|
+
positionInRowLevelPermissionPredicateGroup: number | null;
|
|
9
|
+
roleId: string;
|
|
10
|
+
};
|
|
11
|
+
//# sourceMappingURL=RowLevelPermissionPredicateGroup.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RowLevelPermissionPredicateGroup.d.ts","sourceRoot":"","sources":["../../src/types/RowLevelPermissionPredicateGroup.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,+CAA+C,EAAE,MAAM,yDAAyD,CAAC;AAE/H,MAAM,MAAM,gCAAgC,GAAG;IAC7C,EAAE,EAAE,MAAM,CAAC;IACX,eAAe,EAAE,+CAA+C,CAAC;IACjE,gBAAgB,EAAE,MAAM,CAAC;IACzB,wCAAwC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxD,0CAA0C,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1D,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC"}
|
package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroupLogicalOperator.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RowLevelPermissionPredicateGroupLogicalOperator.d.ts","sourceRoot":"","sources":["../../src/types/RowLevelPermissionPredicateGroupLogicalOperator.ts"],"names":[],"mappings":"AAEA,oBAAY,+CAA+C;IACzD,GAAG,QAAQ;IACX,EAAE,OAAO;CACV"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export declare enum RowLevelPermissionPredicateOperand {
|
|
2
|
+
IS = "IS",
|
|
3
|
+
IS_NOT_NULL = "IS_NOT_NULL",
|
|
4
|
+
IS_NOT = "IS_NOT",
|
|
5
|
+
LESS_THAN_OR_EQUAL = "LESS_THAN_OR_EQUAL",
|
|
6
|
+
GREATER_THAN_OR_EQUAL = "GREATER_THAN_OR_EQUAL",
|
|
7
|
+
IS_BEFORE = "IS_BEFORE",
|
|
8
|
+
IS_AFTER = "IS_AFTER",
|
|
9
|
+
CONTAINS = "CONTAINS",
|
|
10
|
+
DOES_NOT_CONTAIN = "DOES_NOT_CONTAIN",
|
|
11
|
+
IS_EMPTY = "IS_EMPTY",
|
|
12
|
+
IS_NOT_EMPTY = "IS_NOT_EMPTY",
|
|
13
|
+
IS_RELATIVE = "IS_RELATIVE",
|
|
14
|
+
IS_IN_PAST = "IS_IN_PAST",
|
|
15
|
+
IS_IN_FUTURE = "IS_IN_FUTURE",
|
|
16
|
+
IS_TODAY = "IS_TODAY",
|
|
17
|
+
VECTOR_SEARCH = "VECTOR_SEARCH"
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=RowLevelPermissionPredicateOperand.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RowLevelPermissionPredicateOperand.d.ts","sourceRoot":"","sources":["../../src/types/RowLevelPermissionPredicateOperand.ts"],"names":[],"mappings":"AAEA,oBAAY,kCAAkC;IAC5C,EAAE,OAAO;IACT,WAAW,gBAAgB;IAC3B,MAAM,WAAW;IACjB,kBAAkB,uBAAuB;IACzC,qBAAqB,0BAA0B;IAC/C,SAAS,cAAc;IACvB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,gBAAgB,qBAAqB;IACrC,QAAQ,aAAa;IACrB,YAAY,iBAAiB;IAC7B,WAAW,gBAAgB;IAC3B,UAAU,eAAe;IACzB,YAAY,iBAAiB;IAC7B,QAAQ,aAAa;IACrB,aAAa,kBAAkB;CAChC"}
|