twenty-sdk 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +139 -44
- package/dist/HtmlTagToRemoteComponent-Bd5sgek2.js +1 -0
- package/dist/HtmlTagToRemoteComponent-DlsAI7JU.mjs +146 -0
- package/dist/RatingValues-CT-y6O0b-CsGZSJKO.mjs +402 -0
- package/dist/RatingValues-CT-y6O0b-D7JSZAMu.js +1 -0
- package/dist/cli/commands/app/app-dev.d.ts +25 -0
- package/dist/cli/commands/{app-generate.command.d.ts → app/app-generate.d.ts} +1 -1
- package/dist/cli/commands/{app-uninstall.command.d.ts → app/app-uninstall.d.ts} +1 -1
- package/dist/cli/commands/app-command.d.ts +2 -0
- package/dist/cli/commands/auth/auth-list.d.ts +4 -0
- package/dist/cli/commands/auth/auth-login.d.ts +8 -0
- package/dist/cli/commands/auth/auth-logout.d.ts +4 -0
- package/dist/cli/commands/auth/auth-status.d.ts +5 -0
- package/dist/cli/commands/auth/auth-switch.d.ts +7 -0
- package/dist/cli/commands/entity/entity-add.d.ts +12 -0
- package/dist/cli/commands/logic-function/logic-function-execute.d.ts +10 -0
- package/dist/cli/commands/{app-logs.command.d.ts → logic-function/logic-function-logs.d.ts} +1 -1
- package/dist/cli/utilities/api/api-service.d.ts +51 -0
- package/dist/cli/utilities/build/common/cleanup-removed-files.d.ts +1 -0
- package/dist/cli/utilities/build/common/esbuild-result-processor.d.ts +11 -0
- package/dist/cli/utilities/build/common/esbuild-watcher.d.ts +37 -0
- package/dist/cli/utilities/build/common/file-upload-watcher.d.ts +24 -0
- package/dist/cli/utilities/build/common/front-component-build/jsx-transform-to-remote-dom-worker-format-plugin.d.ts +3 -0
- package/dist/cli/utilities/build/common/front-component-build/react-globals-plugin.d.ts +2 -0
- package/dist/cli/utilities/build/common/front-component-build/types/ParsedImportSpecifier.d.ts +4 -0
- package/dist/cli/utilities/build/common/front-component-build/utils/extract-names-from-import-specifier.d.ts +2 -0
- package/dist/cli/utilities/build/common/front-component-build/utils/replace-html-tags-with-remote-components.d.ts +1 -0
- package/dist/cli/utilities/build/common/front-component-build/utils/unwrap-define-front-component-to-direct-export.d.ts +1 -0
- package/dist/cli/utilities/build/common/restartable-watcher-interface.d.ts +25 -0
- package/dist/cli/utilities/build/manifest/manifest-build.d.ts +7 -0
- package/dist/cli/utilities/build/manifest/manifest-extract-config-from-file.d.ts +5 -0
- package/dist/cli/utilities/build/manifest/manifest-extract-config.d.ts +20 -0
- package/dist/cli/utilities/build/manifest/manifest-types.d.ts +4 -0
- package/dist/cli/utilities/build/manifest/manifest-update-checksums.d.ts +17 -0
- package/dist/cli/utilities/build/manifest/manifest-validate.d.ts +6 -0
- package/dist/cli/utilities/build/manifest/manifest-watcher.d.ts +12 -0
- package/dist/cli/utilities/build/manifest/manifest-writer.d.ts +2 -0
- package/dist/cli/{services/generate.service.d.ts → utilities/client/client-service.d.ts} +2 -2
- package/dist/cli/{services/config.service.d.ts → utilities/config/config-service.d.ts} +4 -0
- package/dist/cli/utilities/dev/dev-mode-orchestrator.d.ts +42 -0
- package/dist/cli/utilities/dev/dev-ui-state-manager.d.ts +31 -0
- package/dist/cli/utilities/dev/dev-ui-state.d.ts +27 -0
- package/dist/cli/utilities/dev/dev-ui.d.ts +4 -0
- package/dist/cli/utilities/entity/entity-field-template.d.ts +11 -0
- package/dist/cli/utilities/entity/entity-front-component-template.d.ts +4 -0
- package/dist/cli/utilities/entity/entity-logic-function-template.d.ts +4 -0
- package/dist/cli/{utils/get-new-object-file-content.d.ts → utilities/entity/entity-object-template.d.ts} +1 -1
- package/dist/cli/{utils/jsonc-parser.d.ts → utilities/file/file-jsonc.d.ts} +1 -5
- package/dist/cli/utilities/file/file-tarball.d.ts +16 -0
- package/dist/cli/utilities/file/file-uploader.d.ts +14 -0
- package/dist/cli/{utils/get-ts-program-and-diagnostics.d.ts → utilities/typescript/typescript-program.d.ts} +1 -1
- package/dist/cli.cjs +280 -179
- package/dist/cli.mjs +11094 -9467
- package/dist/front-component/host/components/FrontComponentRenderer.d.ts +8 -0
- package/dist/front-component/host/generated/host-component-registry.d.ts +4 -0
- package/dist/front-component/host/generated/host-index.d.ts +1 -0
- package/dist/front-component/index.d.ts +10 -0
- package/dist/front-component/remote/components/FrontComponentWorkerEffect.d.ts +8 -0
- package/dist/front-component/remote/generated/remote-components.d.ts +44 -0
- package/dist/front-component/remote/generated/remote-elements.d.ts +195 -0
- package/dist/front-component/remote/generated/remote-index.d.ts +2 -0
- package/dist/front-component/remote/mock/mock-front-component.d.ts +3 -0
- package/dist/front-component/remote/worker/createRemoteWorker.d.ts +1 -0
- package/dist/front-component/remote/worker/remote-worker.d.ts +0 -0
- package/dist/front-component/types/HostToWorkerRenderContext.d.ts +3 -0
- package/dist/front-component/types/PropertySchema.d.ts +4 -0
- package/dist/front-component/types/WorkerExports.d.ts +5 -0
- package/dist/front-component-constants/AllowedHtmlElements.d.ts +11 -0
- package/dist/front-component-constants/AllowedUiComponents.d.ts +9 -0
- package/dist/front-component-constants/CommonHtmlEvents.d.ts +1 -0
- package/dist/front-component-constants/EventToReact.d.ts +1 -0
- package/dist/front-component-constants/HtmlCommonProperties.d.ts +2 -0
- package/dist/front-component-constants/HtmlTagToRemoteComponent.d.ts +1 -0
- package/dist/front-component-constants/index.d.ts +8 -0
- package/dist/front-component-constants.cjs +1 -0
- package/dist/front-component-constants.mjs +77 -0
- package/dist/front-component.cjs +328 -0
- package/dist/front-component.mjs +42579 -0
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +2183 -242
- package/dist/jsx-runtime-C9ldtZbm.mjs +10472 -0
- package/dist/jsx-runtime-CfccAQK_.js +54 -0
- package/dist/sdk/application/application-config.d.ts +2 -0
- package/dist/sdk/application/define-application.d.ts +3 -0
- package/dist/sdk/common/types/define-entity.type.d.ts +11 -0
- package/dist/sdk/common/utils/create-validation-result.d.ts +5 -0
- package/dist/{application → sdk}/fields/composite-fields.d.ts +1 -1
- package/dist/sdk/fields/define-field.d.ts +3 -0
- package/dist/sdk/fields/validate-fields.d.ts +2 -0
- package/dist/sdk/front-components/define-front-component.d.ts +3 -0
- package/dist/sdk/front-components/front-component-config.d.ts +5 -0
- package/dist/sdk/index.d.ts +22 -0
- package/dist/sdk/logic-functions/define-logic-function.d.ts +3 -0
- package/dist/sdk/logic-functions/logic-function-config.d.ts +6 -0
- package/dist/sdk/logic-functions/triggers/route-payload-type.d.ts +1 -0
- package/dist/sdk/objects/define-object.d.ts +3 -0
- package/dist/sdk/objects/standard-object-ids.d.ts +1 -0
- package/dist/sdk/roles/define-role.d.ts +3 -0
- package/dist/sdk/roles/permission-flag-type.d.ts +1 -0
- package/dist/types-Bg4PAegr.js +1 -0
- package/dist/types-DVJsIqkp.mjs +7 -0
- package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-BZ0Penru.js +1 -0
- package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-DmLx4uDl.mjs +263 -0
- package/dist/vendor/twenty-shared/RatingValues-Bd_cXQ5v.js +1 -0
- package/dist/vendor/twenty-shared/RatingValues-CT-y6O0b.mjs +388 -0
- package/dist/vendor/twenty-shared/application/applicationType.d.ts +17 -4
- package/dist/vendor/twenty-shared/application/applicationType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/application/assetManifestType.d.ts +7 -0
- package/dist/vendor/twenty-shared/application/assetManifestType.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/constants/AssetDirectory.d.ts +2 -0
- package/dist/vendor/twenty-shared/application/constants/AssetDirectory.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/constants/GeneratedDirectory.d.ts +2 -0
- package/dist/vendor/twenty-shared/application/constants/GeneratedDirectory.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/constants/OutputDirectory.d.ts +2 -0
- package/dist/vendor/twenty-shared/application/constants/OutputDirectory.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/enums/syncable-entities.enum.d.ts +8 -0
- package/dist/vendor/twenty-shared/application/enums/syncable-entities.enum.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/fieldManifestType.d.ts +12 -1
- package/dist/vendor/twenty-shared/application/fieldManifestType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/application/frontComponentManifestType.d.ts +10 -0
- package/dist/vendor/twenty-shared/application/frontComponentManifestType.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/index.d.ts +11 -5
- package/dist/vendor/twenty-shared/application/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/application/{serverlessFunctionManifestType.d.ts → logicFunctionManifestType.d.ts} +9 -5
- package/dist/vendor/twenty-shared/application/logicFunctionManifestType.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/manifestType.d.ts +20 -0
- package/dist/vendor/twenty-shared/application/manifestType.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/objectFieldManifest.type.d.ts +5 -0
- package/dist/vendor/twenty-shared/application/objectFieldManifest.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/objectManifestType.d.ts +2 -2
- package/dist/vendor/twenty-shared/application/objectManifestType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/application/roleManifestType.d.ts +3 -18
- package/dist/vendor/twenty-shared/application/roleManifestType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/application.cjs +1 -1
- package/dist/vendor/twenty-shared/application.mjs +8 -3
- package/dist/vendor/twenty-shared/constants/DocumentationBaseUrl.d.ts +2 -0
- package/dist/vendor/twenty-shared/constants/DocumentationBaseUrl.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/DocumentationDefaultLanguage.d.ts +2 -0
- package/dist/vendor/twenty-shared/constants/DocumentationDefaultLanguage.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/DocumentationDefaultPath.d.ts +2 -0
- package/dist/vendor/twenty-shared/constants/DocumentationDefaultPath.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/DocumentationPaths.d.ts +165 -0
- package/dist/vendor/twenty-shared/constants/DocumentationPaths.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/DocumentationSupportedLanguages.d.ts +3 -0
- package/dist/vendor/twenty-shared/constants/DocumentationSupportedLanguages.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/FilesFieldMaxNumberOfValues.d.ts +2 -0
- package/dist/vendor/twenty-shared/constants/FilesFieldMaxNumberOfValues.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/PermissionFlagType.d.ts +1 -0
- package/dist/vendor/twenty-shared/constants/PermissionFlagType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/constants/index.d.ts +8 -0
- package/dist/vendor/twenty-shared/constants/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/constants.cjs +1 -1
- package/dist/vendor/twenty-shared/constants.mjs +56 -35
- package/dist/vendor/twenty-shared/database-events/database-event-payload.type.d.ts +1 -1
- package/dist/vendor/twenty-shared/database-events/database-event-payload.type.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/database-events/object-record-delete.event.d.ts +4 -0
- package/dist/vendor/twenty-shared/database-events/object-record-delete.event.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/database-events/object-record-restore.event.d.ts +4 -0
- package/dist/vendor/twenty-shared/database-events/object-record-restore.event.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/database-events/object-record-update.event.d.ts +3 -3
- package/dist/vendor/twenty-shared/database-events/object-record-update.event.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/isValidCountryCode-D-UqlXRW.js +4 -0
- package/dist/vendor/twenty-shared/{isValidCountryCode-E35rsxfD.mjs → isValidCountryCode-Dyji5s5r.mjs} +2351 -2320
- package/dist/vendor/twenty-shared/metadata/MetadataValidationError.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/metadata/all-metadata-name.constant.d.ts +5 -4
- package/dist/vendor/twenty-shared/metadata/all-metadata-name.constant.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/metadata/index.d.ts +1 -1
- package/dist/vendor/twenty-shared/metadata/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/metadata/standard-object.constant.d.ts +2196 -0
- package/dist/vendor/twenty-shared/metadata/standard-object.constant.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/metadata.cjs +1 -1
- package/dist/vendor/twenty-shared/metadata.mjs +2025 -69
- package/dist/vendor/twenty-shared/translations/constants/AppLocales.d.ts +1 -0
- package/dist/vendor/twenty-shared/translations/constants/AppLocales.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/translations/index.d.ts +1 -0
- package/dist/vendor/twenty-shared/translations/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/translations.cjs +1 -1
- package/dist/vendor/twenty-shared/translations.mjs +2 -2
- package/dist/vendor/twenty-shared/types/ExtractSerializedRelationProperties.type.d.ts +6 -0
- package/dist/vendor/twenty-shared/types/ExtractSerializedRelationProperties.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/FieldMetadataDefaultValue.d.ts +44 -88
- package/dist/vendor/twenty-shared/types/FieldMetadataDefaultValue.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/FieldMetadataOptions.d.ts +2 -1
- package/dist/vendor/twenty-shared/types/FieldMetadataOptions.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/FieldMetadataSettings.d.ts +15 -9
- package/dist/vendor/twenty-shared/types/FieldMetadataSettings.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/FieldMetadataType.d.ts +18 -17
- package/dist/vendor/twenty-shared/types/FieldMetadataType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/FileCategory.d.ts +12 -0
- package/dist/vendor/twenty-shared/types/FileCategory.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/FileFolder.d.ts +14 -0
- package/dist/vendor/twenty-shared/types/FileFolder.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/IsEmptyObject.type.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/IsEmptyObject.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/IsEmptyRecord.type.d.ts +1 -1
- package/dist/vendor/twenty-shared/types/IsEmptyRecord.type.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/IsNever.type.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/IsNever.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/IsSerializedRelation.type.d.ts +4 -0
- package/dist/vendor/twenty-shared/types/IsSerializedRelation.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/LogicFunctionEvent.d.ts +28 -0
- package/dist/vendor/twenty-shared/types/LogicFunctionEvent.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/ObjectPermissions.d.ts +4 -0
- package/dist/vendor/twenty-shared/types/ObjectPermissions.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/OrderBy.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/OrderBy.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/QueryCursorDirection.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/QueryCursorDirection.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RecordGqlFieldsDeprecated.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/RecordGqlFieldsDeprecated.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RecordGqlOperationGqlRecordFields.d.ts +4 -0
- package/dist/vendor/twenty-shared/types/RecordGqlOperationGqlRecordFields.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RecordGqlOperationOrderBy.d.ts +10 -0
- package/dist/vendor/twenty-shared/types/RecordGqlOperationOrderBy.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RecordGqlOperationSignature.d.ts +9 -0
- package/dist/vendor/twenty-shared/types/RecordGqlOperationSignature.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RecordGqlOperationVariables.d.ts +14 -0
- package/dist/vendor/twenty-shared/types/RecordGqlOperationVariables.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicate.d.ts +15 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicate.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroup.d.ts +11 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroupLogicalOperator.d.ts +5 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroupLogicalOperator.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateOperand.d.ts +19 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateOperand.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateValue.d.ts +6 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateValue.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/SerializedRelation.type.d.ts +5 -0
- package/dist/vendor/twenty-shared/types/SerializedRelation.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/SettingsPath.d.ts +5 -4
- package/dist/vendor/twenty-shared/types/SettingsPath.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/__tests__/extract-serialized-relation-properties.type-test.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/__tests__/extract-serialized-relation-properties.type-test.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/index.d.ts +29 -4
- package/dist/vendor/twenty-shared/types/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/page-layout/PageLayoutTabLayoutMode.d.ts +6 -0
- package/dist/vendor/twenty-shared/types/page-layout/PageLayoutTabLayoutMode.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/page-layout/PageLayoutWidgetConditionalDisplay.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/page-layout/PageLayoutWidgetConditionalDisplay.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/page-layout/page-layout-widget-position.type.d.ts +18 -0
- package/dist/vendor/twenty-shared/types/page-layout/page-layout-widget-position.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types.cjs +1 -1
- package/dist/vendor/twenty-shared/types.mjs +85 -76
- package/dist/vendor/twenty-shared/utils/array/compareArraysOfObjectsByProperty.d.ts +2 -0
- package/dist/vendor/twenty-shared/utils/array/compareArraysOfObjectsByProperty.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/files/extractFolderPathFilenameAndTypeOrThrow.util.d.ts +6 -0
- package/dist/vendor/twenty-shared/utils/files/extractFolderPathFilenameAndTypeOrThrow.util.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/index.d.ts +13 -0
- package/dist/vendor/twenty-shared/utils/filter/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingArrayFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingArrayFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingBooleanFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingBooleanFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingCurrencyFilter.d.ts +10 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingCurrencyFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingDateFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingDateFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingFloatFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingFloatFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingMultiSelectFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingMultiSelectFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRatingFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRatingFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRawJsonFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRawJsonFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRichTextV2Filter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRichTextV2Filter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingSelectFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingSelectFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingStringFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingStringFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingTSVectorFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingTSVectorFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingUUIDFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingUUIDFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/format/formatToShortNumber.d.ts +2 -0
- package/dist/vendor/twenty-shared/utils/format/formatToShortNumber.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/index.d.ts +19 -0
- package/dist/vendor/twenty-shared/utils/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/utils/strings/index.d.ts +1 -0
- package/dist/vendor/twenty-shared/utils/strings/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/utils/strings/pascalCase.d.ts +2 -0
- package/dist/vendor/twenty-shared/utils/strings/pascalCase.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/strings/stringifySafely.d.ts +2 -0
- package/dist/vendor/twenty-shared/utils/strings/stringifySafely.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/typeguard/isPlainObject.d.ts +2 -0
- package/dist/vendor/twenty-shared/utils/typeguard/isPlainObject.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/validation/isValidLocale.d.ts +2 -2
- package/dist/vendor/twenty-shared/utils/validation/isValidLocale.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/utils/validation/normalizeLocale.d.ts +2 -5
- package/dist/vendor/twenty-shared/utils/validation/normalizeLocale.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/utils.cjs +2 -2
- package/dist/vendor/twenty-shared/utils.mjs +994 -522
- package/dist/vendor/twenty-shared/workflow/index.d.ts +4 -0
- package/dist/vendor/twenty-shared/workflow/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/code-action-schema.d.ts +2 -3
- package/dist/vendor/twenty-shared/workflow/schemas/code-action-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/code-action-settings-schema.d.ts +2 -3
- package/dist/vendor/twenty-shared/workflow/schemas/code-action-settings-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-schema.d.ts +29 -0
- package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-schema.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-settings-schema.d.ts +18 -0
- package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-settings-schema.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-schema.d.ts +5 -1
- package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-settings-schema.d.ts +5 -1
- package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-settings-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-action-schema.d.ts +32 -4
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-action-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-schema.d.ts +32 -4
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-state-schema.d.ts +32 -4
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-state-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/types/EmailRecipients.d.ts +6 -0
- package/dist/vendor/twenty-shared/workflow/types/EmailRecipients.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/workflow/utils/variable-path.util.d.ts +12 -0
- package/dist/vendor/twenty-shared/workflow/utils/variable-path.util.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/workflow.cjs +3 -3
- package/dist/vendor/twenty-shared/workflow.mjs +205 -166
- package/package.json +39 -15
- package/dist/ObjectRecordGroupByDateGranularity-CtpRADP1-Bft-VMSh.mjs +0 -3151
- package/dist/ObjectRecordGroupByDateGranularity-CtpRADP1-Duv5iOeZ.js +0 -20
- package/dist/application/application-config.d.ts +0 -2
- package/dist/application/define-app.d.ts +0 -18
- package/dist/application/fields/field.decorator.d.ts +0 -3
- package/dist/application/fields/relation.decorator.d.ts +0 -28
- package/dist/application/functions/define-function.d.ts +0 -28
- package/dist/application/functions/function-config.d.ts +0 -9
- package/dist/application/index.d.ts +0 -19
- package/dist/application/objects/define-object.d.ts +0 -35
- package/dist/application/objects/object.decorator.d.ts +0 -4
- package/dist/application/objects/standard-object-ids.d.ts +0 -1
- package/dist/application/permission-flag-type.d.ts +0 -1
- package/dist/application/role-config.d.ts +0 -2
- package/dist/application/roles/define-role.d.ts +0 -26
- package/dist/cli/commands/app-add.command.d.ts +0 -13
- package/dist/cli/commands/app-dev.command.d.ts +0 -11
- package/dist/cli/commands/app-sync.command.d.ts +0 -7
- package/dist/cli/commands/app.command.d.ts +0 -10
- package/dist/cli/commands/auth.command.d.ts +0 -9
- package/dist/cli/services/api.service.d.ts +0 -20
- package/dist/cli/utils/config-loader.d.ts +0 -43
- package/dist/cli/utils/display-entity-summary.d.ts +0 -2
- package/dist/cli/utils/display-errors.d.ts +0 -2
- package/dist/cli/utils/display-warnings.d.ts +0 -2
- package/dist/cli/utils/get-function-base-file.d.ts +0 -4
- package/dist/cli/utils/load-env-variables.d.ts +0 -2
- package/dist/cli/utils/load-manifest.d.ts +0 -41
- package/dist/cli/utils/validate-manifest.d.ts +0 -22
- package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-BwpmSE4s.js +0 -1
- package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-CtpRADP1.mjs +0 -500
- package/dist/vendor/twenty-shared/RatingValues-B_wgYyso.js +0 -1
- package/dist/vendor/twenty-shared/RatingValues-DNSj7xKA.mjs +0 -224
- package/dist/vendor/twenty-shared/application/applicationManifestType.d.ts +0 -12
- package/dist/vendor/twenty-shared/application/applicationManifestType.d.ts.map +0 -1
- package/dist/vendor/twenty-shared/application/packageJsonType.d.ts +0 -14
- package/dist/vendor/twenty-shared/application/packageJsonType.d.ts.map +0 -1
- package/dist/vendor/twenty-shared/application/serverlessFunctionManifestType.d.ts.map +0 -1
- package/dist/vendor/twenty-shared/isValidCountryCode-WBKj_GIR.js +0 -4
- package/dist/vendor/twenty-shared/metadata/standard-object-ids.d.ts +0 -51
- package/dist/vendor/twenty-shared/metadata/standard-object-ids.d.ts.map +0 -1
- /package/dist/cli/{types/api-response.types.d.ts → utilities/api/api-response-type.d.ts} +0 -0
- /package/dist/cli/{constants → utilities/config}/current-execution-directory.d.ts +0 -0
- /package/dist/cli/{utils/convert-to-label.d.ts → utilities/entity/entity-label.d.ts} +0 -0
- /package/dist/cli/{utils/get-role-base-file.d.ts → utilities/entity/entity-role-template.d.ts} +0 -0
- /package/dist/cli/{utils/find-path-file.d.ts → utilities/file/file-find.d.ts} +0 -0
- /package/dist/cli/{utils/format-path.d.ts → utilities/file/file-path.d.ts} +0 -0
- /package/dist/cli/{utils/format-and-warn-ts-diagnostics.d.ts → utilities/typescript/typescript-diagnostics.d.ts} +0 -0
- /package/dist/{application → sdk/common/types}/syncable-entity-options.type.d.ts +0 -0
- /package/dist/{application → sdk}/fields/field-type.d.ts +0 -0
- /package/dist/{application → sdk}/fields/on-delete-action.d.ts +0 -0
- /package/dist/{application → sdk}/fields/relation-type.d.ts +0 -0
- /package/dist/{application/functions → sdk/logic-functions}/triggers/cron-payload-type.d.ts +0 -0
- /package/dist/{application/functions → sdk/logic-functions}/triggers/database-event-payload-type.d.ts +0 -0
|
@@ -0,0 +1,388 @@
|
|
|
1
|
+
import { F as e, O as _ } from "./ObjectRecordGroupByDateGranularity-DmLx4uDl.mjs";
|
|
2
|
+
import "class-validator";
|
|
3
|
+
const l = {
|
|
4
|
+
[e.CURRENCY]: {
|
|
5
|
+
amountMicros: "amountMicros",
|
|
6
|
+
currencyCode: "currencyCode"
|
|
7
|
+
},
|
|
8
|
+
[e.EMAILS]: {
|
|
9
|
+
primaryEmail: "primaryEmail",
|
|
10
|
+
additionalEmails: "additionalEmails"
|
|
11
|
+
},
|
|
12
|
+
[e.LINKS]: {
|
|
13
|
+
primaryLinkUrl: "primaryLinkUrl",
|
|
14
|
+
primaryLinkLabel: "primaryLinkLabel",
|
|
15
|
+
secondaryLinks: "secondaryLinks"
|
|
16
|
+
},
|
|
17
|
+
[e.PHONES]: {
|
|
18
|
+
primaryPhoneCallingCode: "primaryPhoneCallingCode",
|
|
19
|
+
primaryPhoneCountryCode: "primaryPhoneCountryCode",
|
|
20
|
+
primaryPhoneNumber: "primaryPhoneNumber",
|
|
21
|
+
additionalPhones: "additionalPhones"
|
|
22
|
+
},
|
|
23
|
+
[e.FULL_NAME]: {
|
|
24
|
+
firstName: "firstName",
|
|
25
|
+
lastName: "lastName"
|
|
26
|
+
},
|
|
27
|
+
[e.ADDRESS]: {
|
|
28
|
+
addressStreet1: "addressStreet1",
|
|
29
|
+
addressStreet2: "addressStreet2",
|
|
30
|
+
addressCity: "addressCity",
|
|
31
|
+
addressState: "addressState",
|
|
32
|
+
addressCountry: "addressCountry",
|
|
33
|
+
addressPostcode: "addressPostcode",
|
|
34
|
+
addressLat: "addressLat",
|
|
35
|
+
addressLng: "addressLng"
|
|
36
|
+
},
|
|
37
|
+
[e.ACTOR]: {
|
|
38
|
+
source: "source",
|
|
39
|
+
name: "name",
|
|
40
|
+
workspaceMemberId: "workspaceMemberId",
|
|
41
|
+
context: "context"
|
|
42
|
+
},
|
|
43
|
+
[e.RICH_TEXT_V2]: {
|
|
44
|
+
blocknote: "blocknote",
|
|
45
|
+
markdown: "markdown"
|
|
46
|
+
}
|
|
47
|
+
}, I = {
|
|
48
|
+
AED: { label: "UAE dirham" },
|
|
49
|
+
AFN: { label: "Afghan afghani" },
|
|
50
|
+
ALL: { label: "Albanian lek" },
|
|
51
|
+
AMD: { label: "Armenian dram" },
|
|
52
|
+
ANG: { label: "Netherlands Antillean guilder" },
|
|
53
|
+
AOA: { label: "Angolan kwanza" },
|
|
54
|
+
ARS: { label: "Argentine peso" },
|
|
55
|
+
AUD: { label: "Australian dollar" },
|
|
56
|
+
AWG: { label: "Aruban florin" },
|
|
57
|
+
AZN: { label: "Azerbaijani manat" },
|
|
58
|
+
BAM: { label: "Bosnia and Herzegovina mark" },
|
|
59
|
+
BBD: { label: "Barbados dollar" },
|
|
60
|
+
BDT: { label: "Bangladeshi taka" },
|
|
61
|
+
BGN: { label: "Bulgarian lev" },
|
|
62
|
+
BHD: { label: "Bahraini dinar" },
|
|
63
|
+
BIF: { label: "Burundian franc" },
|
|
64
|
+
BMD: { label: "Bermudian dollar" },
|
|
65
|
+
BND: { label: "Brunei dollar" },
|
|
66
|
+
BOB: { label: "Boliviano" },
|
|
67
|
+
BRL: { label: "Brazilian real" },
|
|
68
|
+
BSD: { label: "Bahamian dollar" },
|
|
69
|
+
BTN: { label: "Bhutanese ngultrum" },
|
|
70
|
+
BWP: { label: "Botswana pula" },
|
|
71
|
+
BYN: { label: "Belarusian ruble" },
|
|
72
|
+
BZD: { label: "Belize dollar" },
|
|
73
|
+
CAD: { label: "Canadian dollar" },
|
|
74
|
+
CDF: { label: "Congolese franc" },
|
|
75
|
+
CHF: { label: "Swiss franc" },
|
|
76
|
+
CLP: { label: "Chilean peso" },
|
|
77
|
+
CNY: { label: "Chinese yuan" },
|
|
78
|
+
COP: { label: "Colombian peso" },
|
|
79
|
+
CRC: { label: "Costa Rican colon" },
|
|
80
|
+
CUP: { label: "Cuban peso" },
|
|
81
|
+
CVE: { label: "Cape Verdean escudo" },
|
|
82
|
+
CZK: { label: "Czech koruna" },
|
|
83
|
+
DJF: { label: "Djiboutian franc" },
|
|
84
|
+
DKK: { label: "Danish krone" },
|
|
85
|
+
DOP: { label: "Dominican peso" },
|
|
86
|
+
DZD: { label: "Algerian Dinar" },
|
|
87
|
+
EGP: { label: "Egyptian pound" },
|
|
88
|
+
ERN: { label: "Eritrean nakfa" },
|
|
89
|
+
ETB: { label: "Ethiopian birr" },
|
|
90
|
+
EUR: { label: "Euro" },
|
|
91
|
+
FJD: { label: "Fiji dollar" },
|
|
92
|
+
FKP: { label: "Falkland Islands pound" },
|
|
93
|
+
GBP: { label: "British pound" },
|
|
94
|
+
GEL: { label: "Georgian lari" },
|
|
95
|
+
GHS: { label: "Ghanaian cedi" },
|
|
96
|
+
GIP: { label: "Gibraltar pound" },
|
|
97
|
+
GMD: { label: "Gambian dalasi" },
|
|
98
|
+
GNF: { label: "Guinean franc" },
|
|
99
|
+
GTQ: { label: "Guatemalan quetzal" },
|
|
100
|
+
GYD: { label: "Guyanese dollar" },
|
|
101
|
+
HKD: { label: "Hong Kong dollar" },
|
|
102
|
+
HNL: { label: "Honduran lempira" },
|
|
103
|
+
HTG: { label: "Haitian gourde" },
|
|
104
|
+
HUF: { label: "Hungarian forint" },
|
|
105
|
+
IDR: { label: "Indonesian rupiah" },
|
|
106
|
+
ILS: { label: "Israeli shekel" },
|
|
107
|
+
INR: { label: "Indian rupee" },
|
|
108
|
+
IQD: { label: "Iraqi dinar" },
|
|
109
|
+
IRR: { label: "Iranian rial" },
|
|
110
|
+
ISK: { label: "Icelandic króna" },
|
|
111
|
+
JMD: { label: "Jamaican dollar" },
|
|
112
|
+
JOD: { label: "Jordanian dinar" },
|
|
113
|
+
JPY: { label: "Japanese yen" },
|
|
114
|
+
KES: { label: "Kenyan shilling" },
|
|
115
|
+
KGS: { label: "Kyrgyzstani som" },
|
|
116
|
+
KHR: { label: "Cambodian riel" },
|
|
117
|
+
KMF: { label: "Comoro franc" },
|
|
118
|
+
KPW: { label: "North Korean won" },
|
|
119
|
+
KRW: { label: "South Korean won" },
|
|
120
|
+
KWD: { label: "Kuwaiti dinar" },
|
|
121
|
+
KYD: { label: "Cayman Islands dollar" },
|
|
122
|
+
KZT: { label: "Kazakhstani tenge" },
|
|
123
|
+
LAK: { label: "Lao kip" },
|
|
124
|
+
LBP: { label: "Lebanese pound" },
|
|
125
|
+
LKR: { label: "Sri Lankan rupee" },
|
|
126
|
+
LRD: { label: "Liberian dollar" },
|
|
127
|
+
LSL: { label: "Lesotho loti" },
|
|
128
|
+
LYD: { label: "Libyan dinar" },
|
|
129
|
+
MAD: { label: "Moroccan dirham" },
|
|
130
|
+
MDL: { label: "Moldovan leu" },
|
|
131
|
+
MGA: { label: "Malagasy ariary" },
|
|
132
|
+
MKD: { label: "Macedonian denar" },
|
|
133
|
+
MMK: { label: "Myanmar kyat" },
|
|
134
|
+
MNT: { label: "Mongolian tögrög" },
|
|
135
|
+
MOP: { label: "Macanese pataca" },
|
|
136
|
+
MRU: { label: "Mauritanian ouguiya" },
|
|
137
|
+
MUR: { label: "Mauritian rupee" },
|
|
138
|
+
MVR: { label: "Maldivian rufiyaa" },
|
|
139
|
+
MWK: { label: "Malawian kwacha" },
|
|
140
|
+
MXN: { label: "Mexican peso" },
|
|
141
|
+
MYR: { label: "Malaysian ringgit" },
|
|
142
|
+
MZN: { label: "Mozambican metical" },
|
|
143
|
+
NAD: { label: "Namibian dollar" },
|
|
144
|
+
NGN: { label: "Nigerian naira" },
|
|
145
|
+
NIO: { label: "Nicaraguan córdoba" },
|
|
146
|
+
NOK: { label: "Norwegian krone" },
|
|
147
|
+
NPR: { label: "Nepalese rupee" },
|
|
148
|
+
NZD: { label: "New Zealand dollar" },
|
|
149
|
+
OMR: { label: "Omani rial" },
|
|
150
|
+
PAB: { label: "Panamanian balboa" },
|
|
151
|
+
PEN: { label: "Peruvian sol" },
|
|
152
|
+
PGK: { label: "Papua New Guinean kina" },
|
|
153
|
+
PHP: { label: "Philippine peso" },
|
|
154
|
+
PKR: { label: "Pakistani rupee" },
|
|
155
|
+
PLN: { label: "Polish złoty" },
|
|
156
|
+
PYG: { label: "Paraguayan guaraní" },
|
|
157
|
+
QAR: { label: "Qatari riyal" },
|
|
158
|
+
RON: { label: "Romanian leu" },
|
|
159
|
+
RSD: { label: "Serbian dinar" },
|
|
160
|
+
RUB: { label: "Russian ruble" },
|
|
161
|
+
RWF: { label: "Rwandan franc" },
|
|
162
|
+
SAR: { label: "Saudi riyal" },
|
|
163
|
+
SBD: { label: "Solomon Islands dollar" },
|
|
164
|
+
SCR: { label: "Seychelles rupee" },
|
|
165
|
+
SDG: { label: "Sudanese pound" },
|
|
166
|
+
SEK: { label: "Swedish krona" },
|
|
167
|
+
SGD: { label: "Singapore dollar" },
|
|
168
|
+
SHP: { label: "Saint Helena pound" },
|
|
169
|
+
SLE: { label: "Sierra Leonean leone" },
|
|
170
|
+
SOS: { label: "Somalian shilling" },
|
|
171
|
+
SRD: { label: "Surinamese dollar" },
|
|
172
|
+
SSP: { label: "South Sudanese pound" },
|
|
173
|
+
STN: { label: "São Tomé and Príncipe dobra" },
|
|
174
|
+
SVC: { label: "Salvadoran colón" },
|
|
175
|
+
SYP: { label: "Syrian pound" },
|
|
176
|
+
SZL: { label: "Swazi lilangeni" },
|
|
177
|
+
THB: { label: "Thai Baht" },
|
|
178
|
+
TJS: { label: "Tajikistani somoni" },
|
|
179
|
+
TMT: { label: "Turkmenistan manat" },
|
|
180
|
+
TND: { label: "Tunisian dinar" },
|
|
181
|
+
TOP: { label: "Tongan paʻanga" },
|
|
182
|
+
TRY: { label: "Turkish lira" },
|
|
183
|
+
TTD: { label: "Trinidad and Tobago dollar" },
|
|
184
|
+
TWD: { label: "Taiwanese dollar" },
|
|
185
|
+
TZS: { label: "Tanzanian shilling" },
|
|
186
|
+
UAH: { label: "Ukrainian hryvnia" },
|
|
187
|
+
UGX: { label: "Ugandan shilling" },
|
|
188
|
+
USD: { label: "United States dollar" },
|
|
189
|
+
UYU: { label: "Uruguayan peso" },
|
|
190
|
+
UZS: { label: "Uzbekistani sum" },
|
|
191
|
+
VES: { label: "Venezuelan bolívar" },
|
|
192
|
+
VND: { label: "Vietnamese đồng" },
|
|
193
|
+
VUV: { label: "Vanuatu vatu" },
|
|
194
|
+
WST: { label: "Samoan tala" },
|
|
195
|
+
XOF: { label: "West African CFA franc" },
|
|
196
|
+
XCD: { label: "East Caribbean dollar" },
|
|
197
|
+
YER: { label: "Yemeni rial" },
|
|
198
|
+
ZAR: { label: "South African rand" },
|
|
199
|
+
ZMW: { label: "Zambian kwacha" },
|
|
200
|
+
ZWG: { label: "Zimbabwe Gold" }
|
|
201
|
+
}, a = {
|
|
202
|
+
DEVELOPERS_CONTRIBUTE_CAPABILITIES_BACKEND_DEVELOPMENT_BEST_PRACTICES_SERVER: "/developers/contribute/capabilities/backend-development/best-practices-server",
|
|
203
|
+
DEVELOPERS_CONTRIBUTE_CAPABILITIES_BACKEND_DEVELOPMENT_CUSTOM_OBJECTS: "/developers/contribute/capabilities/backend-development/custom-objects",
|
|
204
|
+
DEVELOPERS_CONTRIBUTE_CAPABILITIES_BACKEND_DEVELOPMENT_FEATURE_FLAGS: "/developers/contribute/capabilities/backend-development/feature-flags",
|
|
205
|
+
DEVELOPERS_CONTRIBUTE_CAPABILITIES_BACKEND_DEVELOPMENT_FOLDER_ARCHITECTURE_SERVER: "/developers/contribute/capabilities/backend-development/folder-architecture-server",
|
|
206
|
+
DEVELOPERS_CONTRIBUTE_CAPABILITIES_BACKEND_DEVELOPMENT_QUEUE: "/developers/contribute/capabilities/backend-development/queue",
|
|
207
|
+
DEVELOPERS_CONTRIBUTE_CAPABILITIES_BACKEND_DEVELOPMENT_SERVER_COMMANDS: "/developers/contribute/capabilities/backend-development/server-commands",
|
|
208
|
+
DEVELOPERS_CONTRIBUTE_CAPABILITIES_BACKEND_DEVELOPMENT_ZAPIER: "/developers/contribute/capabilities/backend-development/zapier",
|
|
209
|
+
DEVELOPERS_CONTRIBUTE_CAPABILITIES_BUG_AND_REQUESTS: "/developers/contribute/capabilities/bug-and-requests",
|
|
210
|
+
DEVELOPERS_CONTRIBUTE_CAPABILITIES_FRONTEND_DEVELOPMENT_BEST_PRACTICES_FRONT: "/developers/contribute/capabilities/frontend-development/best-practices-front",
|
|
211
|
+
DEVELOPERS_CONTRIBUTE_CAPABILITIES_FRONTEND_DEVELOPMENT_FOLDER_ARCHITECTURE_FRONT: "/developers/contribute/capabilities/frontend-development/folder-architecture-front",
|
|
212
|
+
DEVELOPERS_CONTRIBUTE_CAPABILITIES_FRONTEND_DEVELOPMENT_FRONTEND_COMMANDS: "/developers/contribute/capabilities/frontend-development/frontend-commands",
|
|
213
|
+
DEVELOPERS_CONTRIBUTE_CAPABILITIES_FRONTEND_DEVELOPMENT_HOTKEYS: "/developers/contribute/capabilities/frontend-development/hotkeys",
|
|
214
|
+
DEVELOPERS_CONTRIBUTE_CAPABILITIES_FRONTEND_DEVELOPMENT_STORYBOOK: "/developers/contribute/capabilities/frontend-development/storybook",
|
|
215
|
+
DEVELOPERS_CONTRIBUTE_CAPABILITIES_FRONTEND_DEVELOPMENT_STYLE_GUIDE: "/developers/contribute/capabilities/frontend-development/style-guide",
|
|
216
|
+
DEVELOPERS_CONTRIBUTE_CAPABILITIES_FRONTEND_DEVELOPMENT_WORK_WITH_FIGMA: "/developers/contribute/capabilities/frontend-development/work-with-figma",
|
|
217
|
+
DEVELOPERS_CONTRIBUTE_CAPABILITIES_LOCAL_SETUP: "/developers/contribute/capabilities/local-setup",
|
|
218
|
+
DEVELOPERS_CONTRIBUTE_CONTRIBUTE: "/developers/contribute/contribute",
|
|
219
|
+
DEVELOPERS_EXTEND_CAPABILITIES_APIS: "/developers/extend/capabilities/apis",
|
|
220
|
+
DEVELOPERS_EXTEND_CAPABILITIES_APPS: "/developers/extend/capabilities/apps",
|
|
221
|
+
DEVELOPERS_EXTEND_CAPABILITIES_WEBHOOKS: "/developers/extend/capabilities/webhooks",
|
|
222
|
+
DEVELOPERS_EXTEND_EXTEND: "/developers/extend/extend",
|
|
223
|
+
DEVELOPERS_INTRODUCTION: "/developers/introduction",
|
|
224
|
+
DEVELOPERS_SELF_HOST_CAPABILITIES_CLOUD_PROVIDERS: "/developers/self-host/capabilities/cloud-providers",
|
|
225
|
+
DEVELOPERS_SELF_HOST_CAPABILITIES_DOCKER_COMPOSE: "/developers/self-host/capabilities/docker-compose",
|
|
226
|
+
DEVELOPERS_SELF_HOST_CAPABILITIES_SETUP: "/developers/self-host/capabilities/setup",
|
|
227
|
+
DEVELOPERS_SELF_HOST_CAPABILITIES_TROUBLESHOOTING: "/developers/self-host/capabilities/troubleshooting",
|
|
228
|
+
DEVELOPERS_SELF_HOST_CAPABILITIES_UPGRADE_GUIDE: "/developers/self-host/capabilities/upgrade-guide",
|
|
229
|
+
DEVELOPERS_SELF_HOST_SELF_HOST: "/developers/self-host/self-host",
|
|
230
|
+
TWENTY_UI_DISPLAY_APP_TOOLTIP: "/twenty-ui/display/app-tooltip",
|
|
231
|
+
TWENTY_UI_DISPLAY_CHECKMARK: "/twenty-ui/display/checkmark",
|
|
232
|
+
TWENTY_UI_DISPLAY_CHIP: "/twenty-ui/display/chip",
|
|
233
|
+
TWENTY_UI_DISPLAY_ICONS: "/twenty-ui/display/icons",
|
|
234
|
+
TWENTY_UI_DISPLAY_SOON_PILL: "/twenty-ui/display/soon-pill",
|
|
235
|
+
TWENTY_UI_DISPLAY_TAG: "/twenty-ui/display/tag",
|
|
236
|
+
TWENTY_UI_INPUT_BLOCK_EDITOR: "/twenty-ui/input/block-editor",
|
|
237
|
+
TWENTY_UI_INPUT_BUTTONS: "/twenty-ui/input/buttons",
|
|
238
|
+
TWENTY_UI_INPUT_CHECKBOX: "/twenty-ui/input/checkbox",
|
|
239
|
+
TWENTY_UI_INPUT_COLOR_SCHEME: "/twenty-ui/input/color-scheme",
|
|
240
|
+
TWENTY_UI_INPUT_ICON_PICKER: "/twenty-ui/input/icon-picker",
|
|
241
|
+
TWENTY_UI_INPUT_IMAGE_INPUT: "/twenty-ui/input/image-input",
|
|
242
|
+
TWENTY_UI_INPUT_RADIO: "/twenty-ui/input/radio",
|
|
243
|
+
TWENTY_UI_INPUT_SELECT: "/twenty-ui/input/select",
|
|
244
|
+
TWENTY_UI_INPUT_TEXT: "/twenty-ui/input/text",
|
|
245
|
+
TWENTY_UI_INPUT_TOGGLE: "/twenty-ui/input/toggle",
|
|
246
|
+
TWENTY_UI_INTRODUCTION: "/twenty-ui/introduction",
|
|
247
|
+
TWENTY_UI_NAVIGATION: "/twenty-ui/navigation",
|
|
248
|
+
TWENTY_UI_NAVIGATION_BREADCRUMB: "/twenty-ui/navigation/breadcrumb",
|
|
249
|
+
TWENTY_UI_NAVIGATION_LINKS: "/twenty-ui/navigation/links",
|
|
250
|
+
TWENTY_UI_NAVIGATION_MENU_ITEM: "/twenty-ui/navigation/menu-item",
|
|
251
|
+
TWENTY_UI_NAVIGATION_NAVIGATION_BAR: "/twenty-ui/navigation/navigation-bar",
|
|
252
|
+
TWENTY_UI_NAVIGATION_STEP_BAR: "/twenty-ui/navigation/step-bar",
|
|
253
|
+
TWENTY_UI_PROGRESS_BAR: "/twenty-ui/progress-bar",
|
|
254
|
+
USER_GUIDE_AI_CAPABILITIES_AI_AGENTS: "/user-guide/ai/capabilities/ai-agents",
|
|
255
|
+
USER_GUIDE_AI_CAPABILITIES_AI_CHATBOT: "/user-guide/ai/capabilities/ai-chatbot",
|
|
256
|
+
USER_GUIDE_AI_CAPABILITIES_PERMISSIONS_ACCESS_CONTROL: "/user-guide/ai/capabilities/permissions-access-control",
|
|
257
|
+
USER_GUIDE_AI_HOW_TOS_AI_FAQ: "/user-guide/ai/how-tos/ai-faq",
|
|
258
|
+
USER_GUIDE_AI_OVERVIEW: "/user-guide/ai/overview",
|
|
259
|
+
USER_GUIDE_BILLING_CAPABILITIES_PRICING_PLANS: "/user-guide/billing/capabilities/pricing-plans",
|
|
260
|
+
USER_GUIDE_BILLING_CAPABILITIES_WORKFLOW_CREDITS: "/user-guide/billing/capabilities/workflow-credits",
|
|
261
|
+
USER_GUIDE_BILLING_HOW_TOS_BILLING_FAQ: "/user-guide/billing/how-tos/billing-faq",
|
|
262
|
+
USER_GUIDE_BILLING_OVERVIEW: "/user-guide/billing/overview",
|
|
263
|
+
USER_GUIDE_CALENDAR_EMAILS_CAPABILITIES_CALENDAR: "/user-guide/calendar-emails/capabilities/calendar",
|
|
264
|
+
USER_GUIDE_CALENDAR_EMAILS_CAPABILITIES_MAILBOX: "/user-guide/calendar-emails/capabilities/mailbox",
|
|
265
|
+
USER_GUIDE_CALENDAR_EMAILS_HOW_TOS_CAN_I_BOOK_MEETINGS_FROM_TWENTY: "/user-guide/calendar-emails/how-tos/can-i-book-meetings-from-twenty",
|
|
266
|
+
USER_GUIDE_CALENDAR_EMAILS_HOW_TOS_CAN_I_SEND_EMAILS_FROM_TWENTY: "/user-guide/calendar-emails/how-tos/can-i-send-emails-from-twenty",
|
|
267
|
+
USER_GUIDE_CALENDAR_EMAILS_HOW_TOS_CAN_I_TRACK_EMAIL_ACTIVITY_ON_ALL_OBJECTS: "/user-guide/calendar-emails/how-tos/can-i-track-email-activity-on-all-objects",
|
|
268
|
+
USER_GUIDE_CALENDAR_EMAILS_HOW_TOS_CONNECT_SEVERAL_MAILBOXES_PER_USER: "/user-guide/calendar-emails/how-tos/connect-several-mailboxes-per-user",
|
|
269
|
+
USER_GUIDE_CALENDAR_EMAILS_HOW_TOS_I_DONT_SEE_EMAILS_ON_RECORDS: "/user-guide/calendar-emails/how-tos/i-dont-see-emails-on-records",
|
|
270
|
+
USER_GUIDE_CALENDAR_EMAILS_HOW_TOS_LIMIT_EMAILS_IMPORTED: "/user-guide/calendar-emails/how-tos/limit-emails-imported",
|
|
271
|
+
USER_GUIDE_CALENDAR_EMAILS_OVERVIEW: "/user-guide/calendar-emails/overview",
|
|
272
|
+
USER_GUIDE_DASHBOARDS_CAPABILITIES_CHART_SETTINGS: "/user-guide/dashboards/capabilities/chart-settings",
|
|
273
|
+
USER_GUIDE_DASHBOARDS_CAPABILITIES_DASHBOARDS: "/user-guide/dashboards/capabilities/dashboards",
|
|
274
|
+
USER_GUIDE_DASHBOARDS_CAPABILITIES_WIDGETS: "/user-guide/dashboards/capabilities/widgets",
|
|
275
|
+
USER_GUIDE_DASHBOARDS_HOW_TOS_DASHBOARDS_FAQ: "/user-guide/dashboards/how-tos/dashboards-faq",
|
|
276
|
+
USER_GUIDE_DASHBOARDS_HOW_TOS_WIDGET_FAQ: "/user-guide/dashboards/how-tos/widget-faq",
|
|
277
|
+
USER_GUIDE_DASHBOARDS_OVERVIEW: "/user-guide/dashboards/overview",
|
|
278
|
+
USER_GUIDE_DATA_MIGRATION_CAPABILITIES_ERROR_HANDLING: "/user-guide/data-migration/capabilities/error-handling",
|
|
279
|
+
USER_GUIDE_DATA_MIGRATION_CAPABILITIES_FIELD_MAPPING: "/user-guide/data-migration/capabilities/field-mapping",
|
|
280
|
+
USER_GUIDE_DATA_MIGRATION_CAPABILITIES_FILE_FORMATS: "/user-guide/data-migration/capabilities/file-formats",
|
|
281
|
+
USER_GUIDE_DATA_MIGRATION_CAPABILITIES_IMPORT_RELATIONS: "/user-guide/data-migration/capabilities/import-relations",
|
|
282
|
+
USER_GUIDE_DATA_MIGRATION_CAPABILITIES_UNIQUENESS_CONSTRAINTS: "/user-guide/data-migration/capabilities/uniqueness-constraints",
|
|
283
|
+
USER_GUIDE_DATA_MIGRATION_HOW_TOS_EXPORT_YOUR_DATA: "/user-guide/data-migration/how-tos/export-your-data",
|
|
284
|
+
USER_GUIDE_DATA_MIGRATION_HOW_TOS_FIX_IMPORT_ERRORS: "/user-guide/data-migration/how-tos/fix-import-errors",
|
|
285
|
+
USER_GUIDE_DATA_MIGRATION_HOW_TOS_IMPORT_COMPANIES_VIA_CSV: "/user-guide/data-migration/how-tos/import-companies-via-csv",
|
|
286
|
+
USER_GUIDE_DATA_MIGRATION_HOW_TOS_IMPORT_CONTACTS_VIA_CSV: "/user-guide/data-migration/how-tos/import-contacts-via-csv",
|
|
287
|
+
USER_GUIDE_DATA_MIGRATION_HOW_TOS_IMPORT_DATA_VIA_API: "/user-guide/data-migration/how-tos/import-data-via-api",
|
|
288
|
+
USER_GUIDE_DATA_MIGRATION_HOW_TOS_IMPORT_RELATIONS_BETWEEN_OBJECTS_VIA_CSV: "/user-guide/data-migration/how-tos/import-relations-between-objects-via-csv",
|
|
289
|
+
USER_GUIDE_DATA_MIGRATION_HOW_TOS_MIGRATING_FROM_OTHER_CRMS: "/user-guide/data-migration/how-tos/migrating-from-other-crms",
|
|
290
|
+
USER_GUIDE_DATA_MIGRATION_HOW_TOS_MIGRATING_FROM_SELF_HOSTED_TO_CLOUD: "/user-guide/data-migration/how-tos/migrating-from-self-hosted-to-cloud",
|
|
291
|
+
USER_GUIDE_DATA_MIGRATION_HOW_TOS_PREPARE_YOUR_CSV_FILES: "/user-guide/data-migration/how-tos/prepare-your-csv-files",
|
|
292
|
+
USER_GUIDE_DATA_MIGRATION_HOW_TOS_UPDATE_EXISTING_RECORDS_VIA_IMPORT: "/user-guide/data-migration/how-tos/update-existing-records-via-import",
|
|
293
|
+
USER_GUIDE_DATA_MIGRATION_OVERVIEW: "/user-guide/data-migration/overview",
|
|
294
|
+
USER_GUIDE_DATA_MODEL_CAPABILITIES_FIELDS: "/user-guide/data-model/capabilities/fields",
|
|
295
|
+
USER_GUIDE_DATA_MODEL_CAPABILITIES_OBJECTS: "/user-guide/data-model/capabilities/objects",
|
|
296
|
+
USER_GUIDE_DATA_MODEL_CAPABILITIES_RELATION_FIELDS: "/user-guide/data-model/capabilities/relation-fields",
|
|
297
|
+
USER_GUIDE_DATA_MODEL_HOW_TOS_CREATE_CUSTOM_FIELDS: "/user-guide/data-model/how-tos/create-custom-fields",
|
|
298
|
+
USER_GUIDE_DATA_MODEL_HOW_TOS_CREATE_CUSTOM_OBJECTS: "/user-guide/data-model/how-tos/create-custom-objects",
|
|
299
|
+
USER_GUIDE_DATA_MODEL_HOW_TOS_CREATE_MANY_TO_MANY_RELATIONS: "/user-guide/data-model/how-tos/create-many-to-many-relations",
|
|
300
|
+
USER_GUIDE_DATA_MODEL_HOW_TOS_CREATE_RELATION_FIELDS: "/user-guide/data-model/how-tos/create-relation-fields",
|
|
301
|
+
USER_GUIDE_DATA_MODEL_HOW_TOS_CUSTOMIZE_YOUR_DATA_MODEL: "/user-guide/data-model/how-tos/customize-your-data-model",
|
|
302
|
+
USER_GUIDE_DATA_MODEL_HOW_TOS_DATA_MODEL_FAQ: "/user-guide/data-model/how-tos/data-model-faq",
|
|
303
|
+
USER_GUIDE_DATA_MODEL_OVERVIEW: "/user-guide/data-model/overview",
|
|
304
|
+
USER_GUIDE_GETTING_STARTED_CAPABILITIES_GLOSSARY: "/user-guide/getting-started/capabilities/glossary",
|
|
305
|
+
USER_GUIDE_GETTING_STARTED_CAPABILITIES_IMPLEMENTATION_SERVICES: "/user-guide/getting-started/capabilities/implementation-services",
|
|
306
|
+
USER_GUIDE_GETTING_STARTED_CAPABILITIES_WHAT_IS_TWENTY: "/user-guide/getting-started/capabilities/what-is-twenty",
|
|
307
|
+
USER_GUIDE_GETTING_STARTED_HOW_TOS_CONFIGURE_YOUR_WORKSPACE: "/user-guide/getting-started/how-tos/configure-your-workspace",
|
|
308
|
+
USER_GUIDE_GETTING_STARTED_HOW_TOS_CREATE_WORKSPACE: "/user-guide/getting-started/how-tos/create-workspace",
|
|
309
|
+
USER_GUIDE_GETTING_STARTED_HOW_TOS_NAVIGATE_AROUND_TWENTY: "/user-guide/getting-started/how-tos/navigate-around-twenty",
|
|
310
|
+
USER_GUIDE_INTRODUCTION: "/user-guide/introduction",
|
|
311
|
+
USER_GUIDE_PERMISSIONS_ACCESS_CAPABILITIES_PERMISSIONS: "/user-guide/permissions-access/capabilities/permissions",
|
|
312
|
+
USER_GUIDE_PERMISSIONS_ACCESS_CAPABILITIES_SSO_CONFIGURATION: "/user-guide/permissions-access/capabilities/sso-configuration",
|
|
313
|
+
USER_GUIDE_PERMISSIONS_ACCESS_HOW_TOS_PERMISSIONS_FAQ: "/user-guide/permissions-access/how-tos/permissions-faq",
|
|
314
|
+
USER_GUIDE_PERMISSIONS_ACCESS_OVERVIEW: "/user-guide/permissions-access/overview",
|
|
315
|
+
USER_GUIDE_SETTINGS_CAPABILITIES_DOMAINS_SETTINGS: "/user-guide/settings/capabilities/domains-settings",
|
|
316
|
+
USER_GUIDE_SETTINGS_CAPABILITIES_EXPERIENCE_SETTINGS: "/user-guide/settings/capabilities/experience-settings",
|
|
317
|
+
USER_GUIDE_SETTINGS_CAPABILITIES_MEMBER_MANAGEMENT: "/user-guide/settings/capabilities/member-management",
|
|
318
|
+
USER_GUIDE_SETTINGS_CAPABILITIES_PROFILE_SETTINGS: "/user-guide/settings/capabilities/profile-settings",
|
|
319
|
+
USER_GUIDE_SETTINGS_CAPABILITIES_UPDATES_SETTINGS: "/user-guide/settings/capabilities/updates-settings",
|
|
320
|
+
USER_GUIDE_SETTINGS_CAPABILITIES_WORKSPACE_SETTINGS: "/user-guide/settings/capabilities/workspace-settings",
|
|
321
|
+
USER_GUIDE_SETTINGS_HOW_TOS_SETTINGS_FAQ: "/user-guide/settings/how-tos/settings-faq",
|
|
322
|
+
USER_GUIDE_SETTINGS_OVERVIEW: "/user-guide/settings/overview",
|
|
323
|
+
USER_GUIDE_VIEWS_PIPELINES_CAPABILITIES_CALENDAR_VIEW: "/user-guide/views-pipelines/capabilities/calendar-view",
|
|
324
|
+
USER_GUIDE_VIEWS_PIPELINES_CAPABILITIES_FIELDS_AND_COLUMNS: "/user-guide/views-pipelines/capabilities/fields-and-columns",
|
|
325
|
+
USER_GUIDE_VIEWS_PIPELINES_CAPABILITIES_FILTERS_AND_SORTING: "/user-guide/views-pipelines/capabilities/filters-and-sorting",
|
|
326
|
+
USER_GUIDE_VIEWS_PIPELINES_CAPABILITIES_KANBAN_VIEWS: "/user-guide/views-pipelines/capabilities/kanban-views",
|
|
327
|
+
USER_GUIDE_VIEWS_PIPELINES_CAPABILITIES_TABLE_VIEWS: "/user-guide/views-pipelines/capabilities/table-views",
|
|
328
|
+
USER_GUIDE_VIEWS_PIPELINES_CAPABILITIES_VIEW_SETTINGS: "/user-guide/views-pipelines/capabilities/view-settings",
|
|
329
|
+
USER_GUIDE_VIEWS_PIPELINES_HOW_TOS_CREATE_A_CALENDAR_VIEW_FOR_TASKS_DUE: "/user-guide/views-pipelines/how-tos/create-a-calendar-view-for-tasks-due",
|
|
330
|
+
USER_GUIDE_VIEWS_PIPELINES_HOW_TOS_CREATE_A_KANBAN_VIEW_FOR_PROJECTS: "/user-guide/views-pipelines/how-tos/create-a-kanban-view-for-projects",
|
|
331
|
+
USER_GUIDE_VIEWS_PIPELINES_HOW_TOS_CREATE_A_TABLE_VIEW_WITH_GROUPING: "/user-guide/views-pipelines/how-tos/create-a-table-view-with-grouping",
|
|
332
|
+
USER_GUIDE_VIEWS_PIPELINES_HOW_TOS_RESTRICT_ACCESS_TO_YOUR_VIEW: "/user-guide/views-pipelines/how-tos/restrict-access-to-your-view",
|
|
333
|
+
USER_GUIDE_VIEWS_PIPELINES_HOW_TOS_SET_UP_A_SALES_PIPELINE: "/user-guide/views-pipelines/how-tos/set-up-a-sales-pipeline",
|
|
334
|
+
USER_GUIDE_VIEWS_PIPELINES_HOW_TOS_SHOW_EXPECTED_AMOUNT_IN_PIPELINE: "/user-guide/views-pipelines/how-tos/show-expected-amount-in-pipeline",
|
|
335
|
+
USER_GUIDE_VIEWS_PIPELINES_HOW_TOS_TRACK_TIME_IN_STAGE: "/user-guide/views-pipelines/how-tos/track-time-in-stage",
|
|
336
|
+
USER_GUIDE_VIEWS_PIPELINES_OVERVIEW: "/user-guide/views-pipelines/overview",
|
|
337
|
+
USER_GUIDE_WORKFLOWS_CAPABILITIES_SEND_EMAILS_FROM_WORKFLOWS: "/user-guide/workflows/capabilities/send-emails-from-workflows",
|
|
338
|
+
USER_GUIDE_WORKFLOWS_CAPABILITIES_USE_BRANCHES_IN_WORKFLOWS: "/user-guide/workflows/capabilities/use-branches-in-workflows",
|
|
339
|
+
USER_GUIDE_WORKFLOWS_CAPABILITIES_USE_ITERATOR: "/user-guide/workflows/capabilities/use-iterator",
|
|
340
|
+
USER_GUIDE_WORKFLOWS_CAPABILITIES_WORKFLOW_ACTIONS: "/user-guide/workflows/capabilities/workflow-actions",
|
|
341
|
+
USER_GUIDE_WORKFLOWS_CAPABILITIES_WORKFLOW_BRANCHES: "/user-guide/workflows/capabilities/workflow-branches",
|
|
342
|
+
USER_GUIDE_WORKFLOWS_CAPABILITIES_WORKFLOW_CREDITS: "/user-guide/workflows/capabilities/workflow-credits",
|
|
343
|
+
USER_GUIDE_WORKFLOWS_CAPABILITIES_WORKFLOW_RUNS: "/user-guide/workflows/capabilities/workflow-runs",
|
|
344
|
+
USER_GUIDE_WORKFLOWS_CAPABILITIES_WORKFLOW_TRIGGERS: "/user-guide/workflows/capabilities/workflow-triggers",
|
|
345
|
+
USER_GUIDE_WORKFLOWS_CAPABILITIES_WORKFLOW_VERSIONS: "/user-guide/workflows/capabilities/workflow-versions",
|
|
346
|
+
USER_GUIDE_WORKFLOWS_HOW_TOS_ADVANCED_CONFIGURATIONS_HANDLE_ARRAYS_IN_CODE_ACTIONS: "/user-guide/workflows/how-tos/advanced-configurations/handle-arrays-in-code-actions",
|
|
347
|
+
USER_GUIDE_WORKFLOWS_HOW_TOS_CONNECT_TO_OTHER_TOOLS_BRING_PRODUCT_DATA_IN_TWENTY: "/user-guide/workflows/how-tos/connect-to-other-tools/bring-product-data-in-twenty",
|
|
348
|
+
USER_GUIDE_WORKFLOWS_HOW_TOS_CONNECT_TO_OTHER_TOOLS_BRING_TYPEFORM_SUBMISSIONS_IN_TWENTY: "/user-guide/workflows/how-tos/connect-to-other-tools/bring-typeform-submissions-in-twenty",
|
|
349
|
+
USER_GUIDE_WORKFLOWS_HOW_TOS_CONNECT_TO_OTHER_TOOLS_GENERATE_PDF_FROM_TWENTY: "/user-guide/workflows/how-tos/connect-to-other-tools/generate-pdf-from-twenty",
|
|
350
|
+
USER_GUIDE_WORKFLOWS_HOW_TOS_CONNECT_TO_OTHER_TOOLS_GENERATE_QUOTE_OR_INVOICE_FROM_TWENTY: "/user-guide/workflows/how-tos/connect-to-other-tools/generate-quote-or-invoice-from-twenty",
|
|
351
|
+
USER_GUIDE_WORKFLOWS_HOW_TOS_CONNECT_TO_OTHER_TOOLS_SET_UP_A_WEBHOOK_TRIGGER: "/user-guide/workflows/how-tos/connect-to-other-tools/set-up-a-webhook-trigger",
|
|
352
|
+
USER_GUIDE_WORKFLOWS_HOW_TOS_CRM_AUTOMATIONS_CLOSED_WON_AUTOMATIONS: "/user-guide/workflows/how-tos/crm-automations/closed-won-automations",
|
|
353
|
+
USER_GUIDE_WORKFLOWS_HOW_TOS_CRM_AUTOMATIONS_DETECT_STALE_OPPORTUNITIES: "/user-guide/workflows/how-tos/crm-automations/detect-stale-opportunities",
|
|
354
|
+
USER_GUIDE_WORKFLOWS_HOW_TOS_CRM_AUTOMATIONS_DISPLAY_NUMBER_OF_EMAILS_RECEIVED: "/user-guide/workflows/how-tos/crm-automations/display-number-of-emails-received",
|
|
355
|
+
USER_GUIDE_WORKFLOWS_HOW_TOS_CRM_AUTOMATIONS_DISPLAY_RELATED_RECORD_DATA: "/user-guide/workflows/how-tos/crm-automations/display-related-record-data",
|
|
356
|
+
USER_GUIDE_WORKFLOWS_HOW_TOS_CRM_AUTOMATIONS_FORMULA_FIELDS: "/user-guide/workflows/how-tos/crm-automations/formula-fields",
|
|
357
|
+
USER_GUIDE_WORKFLOWS_HOW_TOS_CRM_AUTOMATIONS_NOTIFY_TEAMMATES_OF_NOTE_TO_REVIEW: "/user-guide/workflows/how-tos/crm-automations/notify-teammates-of-note-to-review",
|
|
358
|
+
USER_GUIDE_WORKFLOWS_HOW_TOS_CRM_AUTOMATIONS_SEND_EMAIL_ALERTS_WITH_TASKS_DUE: "/user-guide/workflows/how-tos/crm-automations/send-email-alerts-with-tasks-due",
|
|
359
|
+
USER_GUIDE_WORKFLOWS_HOW_TOS_NEED_MORE_HELP_PROFESSIONAL_SERVICES: "/user-guide/workflows/how-tos/need-more-help/professional-services",
|
|
360
|
+
USER_GUIDE_WORKFLOWS_HOW_TOS_NEED_MORE_HELP_WORKFLOW_TROUBLESHOOTING: "/user-guide/workflows/how-tos/need-more-help/workflow-troubleshooting",
|
|
361
|
+
USER_GUIDE_WORKFLOWS_HOW_TOS_NEED_MORE_HELP_WORKFLOWS_FAQ: "/user-guide/workflows/how-tos/need-more-help/workflows-faq",
|
|
362
|
+
USER_GUIDE_WORKFLOWS_OVERVIEW: "/user-guide/workflows/overview"
|
|
363
|
+
}, s = a.USER_GUIDE_INTRODUCTION, o = [
|
|
364
|
+
_.DAY,
|
|
365
|
+
_.WEEK,
|
|
366
|
+
_.MONTH,
|
|
367
|
+
_.QUARTER,
|
|
368
|
+
_.YEAR
|
|
369
|
+
], t = [
|
|
370
|
+
e.TEXT,
|
|
371
|
+
e.FULL_NAME,
|
|
372
|
+
e.UUID
|
|
373
|
+
], S = [
|
|
374
|
+
"RATING_1",
|
|
375
|
+
"RATING_2",
|
|
376
|
+
"RATING_3",
|
|
377
|
+
"RATING_4",
|
|
378
|
+
"RATING_5"
|
|
379
|
+
];
|
|
380
|
+
export {
|
|
381
|
+
l as C,
|
|
382
|
+
s as D,
|
|
383
|
+
o as G,
|
|
384
|
+
t as L,
|
|
385
|
+
S as R,
|
|
386
|
+
I as a,
|
|
387
|
+
a as b
|
|
388
|
+
};
|
|
@@ -1,11 +1,24 @@
|
|
|
1
1
|
import { SyncableEntityOptions } from './syncableEntityOptionsType';
|
|
2
|
-
import { ApplicationVariables } from '
|
|
2
|
+
import { ApplicationVariables } from './applicationVariablesType';
|
|
3
3
|
|
|
4
|
-
export type
|
|
5
|
-
|
|
4
|
+
export type ApplicationMarketplaceData = {
|
|
5
|
+
author?: string;
|
|
6
|
+
category?: string;
|
|
7
|
+
logo?: string;
|
|
8
|
+
screenshots?: string[];
|
|
9
|
+
aboutDescription?: string;
|
|
10
|
+
providers?: string[];
|
|
11
|
+
websiteUrl?: string;
|
|
12
|
+
termsUrl?: string;
|
|
13
|
+
};
|
|
14
|
+
export type ApplicationManifest = SyncableEntityOptions & {
|
|
15
|
+
defaultRoleUniversalIdentifier: string;
|
|
16
|
+
displayName: string;
|
|
6
17
|
description?: string;
|
|
7
18
|
icon?: string;
|
|
8
19
|
applicationVariables?: ApplicationVariables;
|
|
9
|
-
|
|
20
|
+
marketplaceData?: ApplicationMarketplaceData;
|
|
21
|
+
packageJsonChecksum: string | null;
|
|
22
|
+
yarnLockChecksum: string | null;
|
|
10
23
|
};
|
|
11
24
|
//# sourceMappingURL=applicationType.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"applicationType.d.ts","sourceRoot":"","sources":["../../src/application/applicationType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,oBAAoB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"applicationType.d.ts","sourceRoot":"","sources":["../../src/application/applicationType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AACvE,OAAO,EAAE,KAAK,qBAAqB,EAAE,MAAM,6BAA6B,CAAC;AAEzE,MAAM,MAAM,0BAA0B,GAAG;IACvC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG,qBAAqB,GAAG;IACxD,8BAA8B,EAAE,MAAM,CAAC;IACvC,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,oBAAoB,CAAC,EAAE,oBAAoB,CAAC;IAC5C,eAAe,CAAC,EAAE,0BAA0B,CAAC;IAC7C,mBAAmB,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;CACjC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"assetManifestType.d.ts","sourceRoot":"","sources":["../../src/application/assetManifestType.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG;IAC1B,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;CACzB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AssetDirectory.d.ts","sourceRoot":"","sources":["../../../src/application/constants/AssetDirectory.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU,WAAW,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GeneratedDirectory.d.ts","sourceRoot":"","sources":["../../../src/application/constants/GeneratedDirectory.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa,cAAc,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OutputDirectory.d.ts","sourceRoot":"","sources":["../../../src/application/constants/OutputDirectory.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU,mBAAmB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"syncable-entities.enum.d.ts","sourceRoot":"","sources":["../../../src/application/enums/syncable-entities.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,aAAa,kBAAkB;IAC/B,cAAc,mBAAmB;IACjC,IAAI,SAAS;CACd"}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import { RelationType } from '../types/RelationType';
|
|
2
|
+
import { RelationOnDeleteAction } from '../types/RelationOnDeleteAction.type';
|
|
1
3
|
import { SyncableEntityOptions } from './syncableEntityOptionsType';
|
|
2
4
|
import { FieldMetadataType, FieldMetadataSettings, FieldMetadataOptions, FieldMetadataDefaultValue } from '../types';
|
|
3
5
|
|
|
4
|
-
export type
|
|
6
|
+
export type RegularFieldManifest<T extends FieldMetadataType = Exclude<FieldMetadataType, FieldMetadataType.RELATION>> = SyncableEntityOptions & {
|
|
5
7
|
type: T;
|
|
6
8
|
name: string;
|
|
7
9
|
label: string;
|
|
@@ -11,5 +13,14 @@ export type FieldManifest<T extends FieldMetadataType = Exclude<FieldMetadataTyp
|
|
|
11
13
|
options?: FieldMetadataOptions<T>;
|
|
12
14
|
settings?: FieldMetadataSettings<T>;
|
|
13
15
|
isNullable?: boolean;
|
|
16
|
+
objectUniversalIdentifier: string;
|
|
14
17
|
};
|
|
18
|
+
export type RelationFieldManifest = RegularFieldManifest<FieldMetadataType.RELATION> & {
|
|
19
|
+
relationType: RelationType;
|
|
20
|
+
targetObjectUniversalIdentifier: string;
|
|
21
|
+
targetFieldLabel: string;
|
|
22
|
+
targetFieldIcon?: string;
|
|
23
|
+
onDelete?: RelationOnDeleteAction;
|
|
24
|
+
};
|
|
25
|
+
export type FieldManifest<T extends FieldMetadataType = Exclude<FieldMetadataType, FieldMetadataType.RELATION>> = RegularFieldManifest<T> | RelationFieldManifest;
|
|
15
26
|
//# sourceMappingURL=fieldManifestType.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fieldManifestType.d.ts","sourceRoot":"","sources":["../../src/application/fieldManifestType.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,iBAAiB,EACtB,KAAK,qBAAqB,EAC1B,KAAK,oBAAoB,EACzB,KAAK,yBAAyB,EAC/B,MAAM,SAAS,CAAC;AACjB,OAAO,EAAE,KAAK,qBAAqB,EAAE,MAAM,yCAAyC,CAAC;
|
|
1
|
+
{"version":3,"file":"fieldManifestType.d.ts","sourceRoot":"","sources":["../../src/application/fieldManifestType.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,iBAAiB,EACtB,KAAK,qBAAqB,EAC1B,KAAK,oBAAoB,EACzB,KAAK,yBAAyB,EAC/B,MAAM,SAAS,CAAC;AACjB,OAAO,EAAE,KAAK,qBAAqB,EAAE,MAAM,yCAAyC,CAAC;AACrF,OAAO,EAAE,KAAK,sBAAsB,EAAE,MAAM,qCAAqC,CAAC;AAClF,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAEzD,MAAM,MAAM,oBAAoB,CAC9B,CAAC,SAAS,iBAAiB,GAAG,OAAO,CACnC,iBAAiB,EACjB,iBAAiB,CAAC,QAAQ,CAC3B,IACC,qBAAqB,GAAG;IAC1B,IAAI,EAAE,CAAC,CAAC;IACR,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,YAAY,CAAC,EAAE,yBAAyB,CAAC,CAAC,CAAC,CAAC;IAC5C,OAAO,CAAC,EAAE,oBAAoB,CAAC,CAAC,CAAC,CAAC;IAClC,QAAQ,CAAC,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC;IACpC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,yBAAyB,EAAE,MAAM,CAAC;CACnC,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAC/B,oBAAoB,CAAC,iBAAiB,CAAC,QAAQ,CAAC,GAAG;IACjD,YAAY,EAAE,YAAY,CAAC;IAC3B,+BAA+B,EAAE,MAAM,CAAC;IACxC,gBAAgB,EAAE,MAAM,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,EAAE,sBAAsB,CAAC;CACnC,CAAC;AAEJ,MAAM,MAAM,aAAa,CACvB,CAAC,SAAS,iBAAiB,GAAG,OAAO,CACnC,iBAAiB,EACjB,iBAAiB,CAAC,QAAQ,CAC3B,IACC,oBAAoB,CAAC,CAAC,CAAC,GAAG,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export type FrontComponentManifest = {
|
|
2
|
+
universalIdentifier: string;
|
|
3
|
+
name?: string;
|
|
4
|
+
description?: string;
|
|
5
|
+
sourceComponentPath: string;
|
|
6
|
+
builtComponentPath: string;
|
|
7
|
+
builtComponentChecksum: string | null;
|
|
8
|
+
componentName: string;
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=frontComponentManifestType.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"frontComponentManifestType.d.ts","sourceRoot":"","sources":["../../src/application/frontComponentManifestType.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,sBAAsB,GAAG;IACnC,mBAAmB,EAAE,MAAM,CAAC;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,kBAAkB,EAAE,MAAM,CAAC;IAC3B,sBAAsB,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC,aAAa,EAAE,MAAM,CAAC;CACvB,CAAC"}
|
|
@@ -1,12 +1,18 @@
|
|
|
1
|
-
export type { ApplicationManifest } from './
|
|
2
|
-
export type { Application } from './applicationType';
|
|
1
|
+
export type { ApplicationMarketplaceData, ApplicationManifest, } from './applicationType';
|
|
3
2
|
export type { ApplicationVariables } from './applicationVariablesType';
|
|
3
|
+
export type { AssetManifest } from './assetManifestType';
|
|
4
|
+
export { ASSETS_DIR } from './constants/AssetDirectory';
|
|
4
5
|
export { DEFAULT_API_KEY_NAME } from './constants/DefaultApiKeyName';
|
|
5
6
|
export { DEFAULT_API_URL_NAME } from './constants/DefaultApiUrlName';
|
|
6
|
-
export
|
|
7
|
+
export { GENERATED_DIR } from './constants/GeneratedDirectory';
|
|
8
|
+
export { OUTPUT_DIR } from './constants/OutputDirectory';
|
|
9
|
+
export { SyncableEntity } from './enums/syncable-entities.enum';
|
|
10
|
+
export type { RegularFieldManifest, RelationFieldManifest, FieldManifest, } from './fieldManifestType';
|
|
11
|
+
export type { FrontComponentManifest } from './frontComponentManifestType';
|
|
12
|
+
export type { InputJsonSchema, LogicFunctionManifest, DatabaseEventTrigger, CronTrigger, RouteTrigger, LogicFunctionTriggerManifest, } from './logicFunctionManifestType';
|
|
13
|
+
export type { Manifest } from './manifestType';
|
|
14
|
+
export type { ObjectFieldManifest } from './objectFieldManifest.type';
|
|
7
15
|
export type { ObjectManifest } from './objectManifestType';
|
|
8
|
-
export type { PackageJson } from './packageJsonType';
|
|
9
16
|
export type { RoleManifest } from './roleManifestType';
|
|
10
|
-
export type { InputJsonSchema, ServerlessFunctionManifest, DatabaseEventTrigger, CronTrigger, RouteTrigger, ServerlessFunctionTriggerManifest, } from './serverlessFunctionManifestType';
|
|
11
17
|
export type { SyncableEntityOptions } from './syncableEntityOptionsType';
|
|
12
18
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/application/index.ts"],"names":[],"mappings":"AASA,YAAY,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/application/index.ts"],"names":[],"mappings":"AASA,YAAY,EACV,0BAA0B,EAC1B,mBAAmB,GACpB,MAAM,mBAAmB,CAAC;AAC3B,YAAY,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AACvE,YAAY,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AACxD,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAC/D,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AACzD,OAAO,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAChE,YAAY,EACV,oBAAoB,EACpB,qBAAqB,EACrB,aAAa,GACd,MAAM,qBAAqB,CAAC;AAC7B,YAAY,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAC;AAC3E,YAAY,EACV,eAAe,EACf,qBAAqB,EACrB,oBAAoB,EACpB,WAAW,EACX,YAAY,EACZ,4BAA4B,GAC7B,MAAM,6BAA6B,CAAC;AACrC,YAAY,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC/C,YAAY,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AACtE,YAAY,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAC3D,YAAY,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AACvD,YAAY,EAAE,qBAAqB,EAAE,MAAM,6BAA6B,CAAC"}
|
|
@@ -10,12 +10,14 @@ export type InputJsonSchema = {
|
|
|
10
10
|
required?: string[];
|
|
11
11
|
additionalProperties?: boolean | InputJsonSchema;
|
|
12
12
|
};
|
|
13
|
-
export type
|
|
13
|
+
export type LogicFunctionManifest = SyncableEntityOptions & {
|
|
14
14
|
name?: string;
|
|
15
15
|
description?: string;
|
|
16
16
|
timeoutSeconds?: number;
|
|
17
|
-
triggers:
|
|
18
|
-
|
|
17
|
+
triggers: LogicFunctionTriggerManifest[];
|
|
18
|
+
sourceHandlerPath: string;
|
|
19
|
+
builtHandlerPath: string;
|
|
20
|
+
builtHandlerChecksum: string | null;
|
|
19
21
|
handlerName: string;
|
|
20
22
|
toolInputSchema?: InputJsonSchema;
|
|
21
23
|
isTool?: boolean;
|
|
@@ -23,6 +25,7 @@ export type ServerlessFunctionManifest = SyncableEntityOptions & {
|
|
|
23
25
|
export type DatabaseEventTrigger = {
|
|
24
26
|
type: 'databaseEvent';
|
|
25
27
|
eventName: string;
|
|
28
|
+
updatedFields?: string[];
|
|
26
29
|
};
|
|
27
30
|
export type CronTrigger = {
|
|
28
31
|
type: 'cron';
|
|
@@ -33,6 +36,7 @@ export type RouteTrigger = {
|
|
|
33
36
|
path: string;
|
|
34
37
|
httpMethod: `${HTTPMethod}`;
|
|
35
38
|
isAuthRequired: boolean;
|
|
39
|
+
forwardedRequestHeaders?: string[];
|
|
36
40
|
};
|
|
37
|
-
export type
|
|
38
|
-
//# sourceMappingURL=
|
|
41
|
+
export type LogicFunctionTriggerManifest = SyncableEntityOptions & (CronTrigger | DatabaseEventTrigger | RouteTrigger);
|
|
42
|
+
//# sourceMappingURL=logicFunctionManifestType.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logicFunctionManifestType.d.ts","sourceRoot":"","sources":["../../src/application/logicFunctionManifestType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,qBAAqB,EAAE,MAAM,yCAAyC,CAAC;AACrF,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,SAAS,CAAC;AAG1C,MAAM,MAAM,eAAe,GAAG;IAC5B,IAAI,CAAC,EACD,QAAQ,GACR,QAAQ,GACR,SAAS,GACT,QAAQ,GACR,OAAO,GACP,SAAS,GACT,MAAM,CAAC;IACX,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,OAAO,EAAE,CAAC;IACjB,KAAK,CAAC,EAAE,eAAe,CAAC;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;IAC7C,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,oBAAoB,CAAC,EAAE,OAAO,GAAG,eAAe,CAAC;CAClD,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG,qBAAqB,GAAG;IAC1D,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,QAAQ,EAAE,4BAA4B,EAAE,CAAC;IACzC,iBAAiB,EAAE,MAAM,CAAC;IAC1B,gBAAgB,EAAE,MAAM,CAAC;IACzB,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,CAAC,EAAE,eAAe,CAAC;IAClC,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG;IACjC,IAAI,EAAE,eAAe,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,OAAO,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,GAAG,UAAU,EAAE,CAAC;IAC5B,cAAc,EAAE,OAAO,CAAC;IACxB,uBAAuB,CAAC,EAAE,MAAM,EAAE,CAAC;CACpC,CAAC;AAEF,MAAM,MAAM,4BAA4B,GAAG,qBAAqB,GAC9D,CAAC,WAAW,GAAG,oBAAoB,GAAG,YAAY,CAAC,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { RoleManifest } from './roleManifestType';
|
|
2
|
+
import { ObjectManifest } from './objectManifestType';
|
|
3
|
+
import { LogicFunctionManifest } from './logicFunctionManifestType';
|
|
4
|
+
import { FrontComponentManifest } from './frontComponentManifestType';
|
|
5
|
+
import { FieldManifest } from './fieldManifestType';
|
|
6
|
+
import { AssetManifest } from './assetManifestType';
|
|
7
|
+
import { ApplicationManifest } from './applicationType';
|
|
8
|
+
import { Sources } from '../types';
|
|
9
|
+
|
|
10
|
+
export type Manifest = {
|
|
11
|
+
application: ApplicationManifest;
|
|
12
|
+
objects: ObjectManifest[];
|
|
13
|
+
fields: FieldManifest[];
|
|
14
|
+
logicFunctions: LogicFunctionManifest[];
|
|
15
|
+
frontComponents: FrontComponentManifest[];
|
|
16
|
+
roles: RoleManifest[];
|
|
17
|
+
publicAssets: AssetManifest[];
|
|
18
|
+
sources: Sources;
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=manifestType.d.ts.map
|