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.
Files changed (1035) hide show
  1. package/README.md +139 -44
  2. package/dist/HtmlTagToRemoteComponent-Bd5sgek2.js +1 -0
  3. package/dist/HtmlTagToRemoteComponent-DlsAI7JU.mjs +146 -0
  4. package/dist/RatingValues-CT-y6O0b-CsGZSJKO.mjs +402 -0
  5. package/dist/RatingValues-CT-y6O0b-D7JSZAMu.js +1 -0
  6. package/dist/cli/commands/app/app-dev.d.ts +25 -0
  7. package/dist/cli/commands/{app-generate.command.d.ts → app/app-generate.d.ts} +1 -1
  8. package/dist/cli/commands/{app-uninstall.command.d.ts → app/app-uninstall.d.ts} +1 -1
  9. package/dist/cli/commands/app-command.d.ts +2 -0
  10. package/dist/cli/commands/auth/auth-list.d.ts +4 -0
  11. package/dist/cli/commands/auth/auth-login.d.ts +8 -0
  12. package/dist/cli/commands/auth/auth-logout.d.ts +4 -0
  13. package/dist/cli/commands/auth/auth-status.d.ts +5 -0
  14. package/dist/cli/commands/auth/auth-switch.d.ts +7 -0
  15. package/dist/cli/commands/entity/entity-add.d.ts +12 -0
  16. package/dist/cli/commands/logic-function/logic-function-execute.d.ts +10 -0
  17. package/dist/cli/commands/{app-logs.command.d.ts → logic-function/logic-function-logs.d.ts} +1 -1
  18. package/dist/cli/utilities/api/api-service.d.ts +51 -0
  19. package/dist/cli/utilities/build/common/cleanup-removed-files.d.ts +1 -0
  20. package/dist/cli/utilities/build/common/esbuild-result-processor.d.ts +11 -0
  21. package/dist/cli/utilities/build/common/esbuild-watcher.d.ts +37 -0
  22. package/dist/cli/utilities/build/common/file-upload-watcher.d.ts +24 -0
  23. package/dist/cli/utilities/build/common/front-component-build/jsx-transform-to-remote-dom-worker-format-plugin.d.ts +3 -0
  24. package/dist/cli/utilities/build/common/front-component-build/react-globals-plugin.d.ts +2 -0
  25. package/dist/cli/utilities/build/common/front-component-build/types/ParsedImportSpecifier.d.ts +4 -0
  26. package/dist/cli/utilities/build/common/front-component-build/utils/extract-names-from-import-specifier.d.ts +2 -0
  27. package/dist/cli/utilities/build/common/front-component-build/utils/replace-html-tags-with-remote-components.d.ts +1 -0
  28. package/dist/cli/utilities/build/common/front-component-build/utils/unwrap-define-front-component-to-direct-export.d.ts +1 -0
  29. package/dist/cli/utilities/build/common/restartable-watcher-interface.d.ts +25 -0
  30. package/dist/cli/utilities/build/manifest/manifest-build.d.ts +7 -0
  31. package/dist/cli/utilities/build/manifest/manifest-extract-config-from-file.d.ts +5 -0
  32. package/dist/cli/utilities/build/manifest/manifest-extract-config.d.ts +20 -0
  33. package/dist/cli/utilities/build/manifest/manifest-types.d.ts +4 -0
  34. package/dist/cli/utilities/build/manifest/manifest-update-checksums.d.ts +17 -0
  35. package/dist/cli/utilities/build/manifest/manifest-validate.d.ts +6 -0
  36. package/dist/cli/utilities/build/manifest/manifest-watcher.d.ts +12 -0
  37. package/dist/cli/utilities/build/manifest/manifest-writer.d.ts +2 -0
  38. package/dist/cli/{services/generate.service.d.ts → utilities/client/client-service.d.ts} +2 -2
  39. package/dist/cli/{services/config.service.d.ts → utilities/config/config-service.d.ts} +4 -0
  40. package/dist/cli/utilities/dev/dev-mode-orchestrator.d.ts +42 -0
  41. package/dist/cli/utilities/dev/dev-ui-state-manager.d.ts +31 -0
  42. package/dist/cli/utilities/dev/dev-ui-state.d.ts +27 -0
  43. package/dist/cli/utilities/dev/dev-ui.d.ts +4 -0
  44. package/dist/cli/utilities/entity/entity-field-template.d.ts +11 -0
  45. package/dist/cli/utilities/entity/entity-front-component-template.d.ts +4 -0
  46. package/dist/cli/utilities/entity/entity-logic-function-template.d.ts +4 -0
  47. package/dist/cli/{utils/get-new-object-file-content.d.ts → utilities/entity/entity-object-template.d.ts} +1 -1
  48. package/dist/cli/{utils/jsonc-parser.d.ts → utilities/file/file-jsonc.d.ts} +1 -5
  49. package/dist/cli/utilities/file/file-tarball.d.ts +16 -0
  50. package/dist/cli/utilities/file/file-uploader.d.ts +14 -0
  51. package/dist/cli/{utils/get-ts-program-and-diagnostics.d.ts → utilities/typescript/typescript-program.d.ts} +1 -1
  52. package/dist/cli.cjs +280 -179
  53. package/dist/cli.mjs +11094 -9469
  54. package/dist/front-component/host/components/FrontComponentRenderer.d.ts +8 -0
  55. package/dist/front-component/host/generated/host-component-registry.d.ts +4 -0
  56. package/dist/front-component/host/generated/host-index.d.ts +1 -0
  57. package/dist/front-component/index.d.ts +10 -0
  58. package/dist/front-component/remote/components/FrontComponentWorkerEffect.d.ts +8 -0
  59. package/dist/front-component/remote/generated/remote-components.d.ts +44 -0
  60. package/dist/front-component/remote/generated/remote-elements.d.ts +195 -0
  61. package/dist/front-component/remote/generated/remote-index.d.ts +2 -0
  62. package/dist/front-component/remote/mock/mock-front-component.d.ts +3 -0
  63. package/dist/front-component/remote/worker/createRemoteWorker.d.ts +1 -0
  64. package/dist/front-component/remote/worker/remote-worker.d.ts +0 -0
  65. package/dist/front-component/types/HostToWorkerRenderContext.d.ts +3 -0
  66. package/dist/front-component/types/PropertySchema.d.ts +4 -0
  67. package/dist/front-component/types/WorkerExports.d.ts +5 -0
  68. package/dist/front-component-constants/AllowedHtmlElements.d.ts +11 -0
  69. package/dist/front-component-constants/AllowedUiComponents.d.ts +9 -0
  70. package/dist/front-component-constants/CommonHtmlEvents.d.ts +1 -0
  71. package/dist/front-component-constants/EventToReact.d.ts +1 -0
  72. package/dist/front-component-constants/HtmlCommonProperties.d.ts +2 -0
  73. package/dist/front-component-constants/HtmlTagToRemoteComponent.d.ts +1 -0
  74. package/dist/front-component-constants/index.d.ts +8 -0
  75. package/dist/front-component-constants.cjs +1 -0
  76. package/dist/front-component-constants.mjs +77 -0
  77. package/dist/front-component.cjs +155 -0
  78. package/dist/front-component.mjs +23453 -0
  79. package/dist/index.cjs +2 -2
  80. package/dist/index.d.ts +1 -1
  81. package/dist/index.mjs +2197 -242
  82. package/dist/jsx-runtime-C9ldtZbm.mjs +10472 -0
  83. package/dist/jsx-runtime-CfccAQK_.js +54 -0
  84. package/dist/sdk/application/application-config.d.ts +2 -0
  85. package/dist/sdk/application/define-application.d.ts +3 -0
  86. package/dist/sdk/common/types/define-entity.type.d.ts +11 -0
  87. package/dist/sdk/common/utils/create-validation-result.d.ts +5 -0
  88. package/dist/{application → sdk}/fields/composite-fields.d.ts +1 -1
  89. package/dist/sdk/fields/define-field.d.ts +3 -0
  90. package/dist/sdk/fields/validate-fields.d.ts +2 -0
  91. package/dist/sdk/front-components/define-front-component.d.ts +3 -0
  92. package/dist/sdk/front-components/front-component-config.d.ts +5 -0
  93. package/dist/sdk/index.d.ts +22 -0
  94. package/dist/sdk/logic-functions/define-logic-function.d.ts +3 -0
  95. package/dist/sdk/logic-functions/logic-function-config.d.ts +6 -0
  96. package/dist/sdk/logic-functions/triggers/route-payload-type.d.ts +1 -0
  97. package/dist/sdk/objects/define-object.d.ts +3 -0
  98. package/dist/sdk/objects/standard-object-ids.d.ts +1 -0
  99. package/dist/sdk/roles/define-role.d.ts +3 -0
  100. package/dist/sdk/roles/permission-flag-type.d.ts +1 -0
  101. package/dist/types-BSOjxfFi.mjs +7 -0
  102. package/dist/types-DqLnNRPE.js +1 -0
  103. package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-BZ0Penru.js +1 -0
  104. package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-DmLx4uDl.mjs +263 -0
  105. package/dist/vendor/twenty-shared/RatingValues-Bd_cXQ5v.js +1 -0
  106. package/dist/vendor/twenty-shared/RatingValues-CT-y6O0b.mjs +388 -0
  107. package/dist/vendor/twenty-shared/application/applicationType.d.ts +17 -4
  108. package/dist/vendor/twenty-shared/application/applicationType.d.ts.map +1 -1
  109. package/dist/vendor/twenty-shared/application/assetManifestType.d.ts +7 -0
  110. package/dist/vendor/twenty-shared/application/assetManifestType.d.ts.map +1 -0
  111. package/dist/vendor/twenty-shared/application/constants/AssetDirectory.d.ts +2 -0
  112. package/dist/vendor/twenty-shared/application/constants/AssetDirectory.d.ts.map +1 -0
  113. package/dist/vendor/twenty-shared/application/constants/GeneratedDirectory.d.ts +2 -0
  114. package/dist/vendor/twenty-shared/application/constants/GeneratedDirectory.d.ts.map +1 -0
  115. package/dist/vendor/twenty-shared/application/constants/OutputDirectory.d.ts +2 -0
  116. package/dist/vendor/twenty-shared/application/constants/OutputDirectory.d.ts.map +1 -0
  117. package/dist/vendor/twenty-shared/application/enums/syncable-entities.enum.d.ts +8 -0
  118. package/dist/vendor/twenty-shared/application/enums/syncable-entities.enum.d.ts.map +1 -0
  119. package/dist/vendor/twenty-shared/application/fieldManifestType.d.ts +12 -1
  120. package/dist/vendor/twenty-shared/application/fieldManifestType.d.ts.map +1 -1
  121. package/dist/vendor/twenty-shared/application/frontComponentManifestType.d.ts +10 -0
  122. package/dist/vendor/twenty-shared/application/frontComponentManifestType.d.ts.map +1 -0
  123. package/dist/vendor/twenty-shared/application/index.d.ts +11 -5
  124. package/dist/vendor/twenty-shared/application/index.d.ts.map +1 -1
  125. package/dist/vendor/twenty-shared/application/{serverlessFunctionManifestType.d.ts → logicFunctionManifestType.d.ts} +9 -5
  126. package/dist/vendor/twenty-shared/application/logicFunctionManifestType.d.ts.map +1 -0
  127. package/dist/vendor/twenty-shared/application/manifestType.d.ts +20 -0
  128. package/dist/vendor/twenty-shared/application/manifestType.d.ts.map +1 -0
  129. package/dist/vendor/twenty-shared/application/objectFieldManifest.type.d.ts +5 -0
  130. package/dist/vendor/twenty-shared/application/objectFieldManifest.type.d.ts.map +1 -0
  131. package/dist/vendor/twenty-shared/application/objectManifestType.d.ts +2 -2
  132. package/dist/vendor/twenty-shared/application/objectManifestType.d.ts.map +1 -1
  133. package/dist/vendor/twenty-shared/application/roleManifestType.d.ts +3 -18
  134. package/dist/vendor/twenty-shared/application/roleManifestType.d.ts.map +1 -1
  135. package/dist/vendor/twenty-shared/application.cjs +1 -1
  136. package/dist/vendor/twenty-shared/application.mjs +8 -3
  137. package/dist/vendor/twenty-shared/constants/DocumentationBaseUrl.d.ts +2 -0
  138. package/dist/vendor/twenty-shared/constants/DocumentationBaseUrl.d.ts.map +1 -0
  139. package/dist/vendor/twenty-shared/constants/DocumentationDefaultLanguage.d.ts +2 -0
  140. package/dist/vendor/twenty-shared/constants/DocumentationDefaultLanguage.d.ts.map +1 -0
  141. package/dist/vendor/twenty-shared/constants/DocumentationDefaultPath.d.ts +2 -0
  142. package/dist/vendor/twenty-shared/constants/DocumentationDefaultPath.d.ts.map +1 -0
  143. package/dist/vendor/twenty-shared/constants/DocumentationPaths.d.ts +165 -0
  144. package/dist/vendor/twenty-shared/constants/DocumentationPaths.d.ts.map +1 -0
  145. package/dist/vendor/twenty-shared/constants/DocumentationSupportedLanguages.d.ts +3 -0
  146. package/dist/vendor/twenty-shared/constants/DocumentationSupportedLanguages.d.ts.map +1 -0
  147. package/dist/vendor/twenty-shared/constants/FilesFieldMaxNumberOfValues.d.ts +2 -0
  148. package/dist/vendor/twenty-shared/constants/FilesFieldMaxNumberOfValues.d.ts.map +1 -0
  149. package/dist/vendor/twenty-shared/constants/PermissionFlagType.d.ts +1 -0
  150. package/dist/vendor/twenty-shared/constants/PermissionFlagType.d.ts.map +1 -1
  151. package/dist/vendor/twenty-shared/constants/index.d.ts +8 -0
  152. package/dist/vendor/twenty-shared/constants/index.d.ts.map +1 -1
  153. package/dist/vendor/twenty-shared/constants.cjs +1 -1
  154. package/dist/vendor/twenty-shared/constants.mjs +56 -35
  155. package/dist/vendor/twenty-shared/database-events/database-event-payload.type.d.ts +1 -1
  156. package/dist/vendor/twenty-shared/database-events/database-event-payload.type.d.ts.map +1 -1
  157. package/dist/vendor/twenty-shared/database-events/object-record-delete.event.d.ts +4 -0
  158. package/dist/vendor/twenty-shared/database-events/object-record-delete.event.d.ts.map +1 -1
  159. package/dist/vendor/twenty-shared/database-events/object-record-restore.event.d.ts +4 -0
  160. package/dist/vendor/twenty-shared/database-events/object-record-restore.event.d.ts.map +1 -1
  161. package/dist/vendor/twenty-shared/database-events/object-record-update.event.d.ts +3 -3
  162. package/dist/vendor/twenty-shared/database-events/object-record-update.event.d.ts.map +1 -1
  163. package/dist/vendor/twenty-shared/isValidCountryCode-D-UqlXRW.js +4 -0
  164. package/dist/vendor/twenty-shared/{isValidCountryCode-E35rsxfD.mjs → isValidCountryCode-Dyji5s5r.mjs} +2351 -2320
  165. package/dist/vendor/twenty-shared/metadata/MetadataValidationError.d.ts.map +1 -1
  166. package/dist/vendor/twenty-shared/metadata/all-metadata-name.constant.d.ts +5 -4
  167. package/dist/vendor/twenty-shared/metadata/all-metadata-name.constant.d.ts.map +1 -1
  168. package/dist/vendor/twenty-shared/metadata/index.d.ts +1 -1
  169. package/dist/vendor/twenty-shared/metadata/index.d.ts.map +1 -1
  170. package/dist/vendor/twenty-shared/metadata/standard-object.constant.d.ts +2206 -0
  171. package/dist/vendor/twenty-shared/metadata/standard-object.constant.d.ts.map +1 -0
  172. package/dist/vendor/twenty-shared/metadata.cjs +1 -1
  173. package/dist/vendor/twenty-shared/metadata.mjs +2039 -69
  174. package/dist/vendor/twenty-shared/translations/constants/AppLocales.d.ts +1 -0
  175. package/dist/vendor/twenty-shared/translations/constants/AppLocales.d.ts.map +1 -1
  176. package/dist/vendor/twenty-shared/translations/index.d.ts +1 -0
  177. package/dist/vendor/twenty-shared/translations/index.d.ts.map +1 -1
  178. package/dist/vendor/twenty-shared/translations.cjs +1 -1
  179. package/dist/vendor/twenty-shared/translations.mjs +2 -2
  180. package/dist/vendor/twenty-shared/types/ExtractSerializedRelationProperties.type.d.ts +6 -0
  181. package/dist/vendor/twenty-shared/types/ExtractSerializedRelationProperties.type.d.ts.map +1 -0
  182. package/dist/vendor/twenty-shared/types/FieldMetadataDefaultValue.d.ts +44 -88
  183. package/dist/vendor/twenty-shared/types/FieldMetadataDefaultValue.d.ts.map +1 -1
  184. package/dist/vendor/twenty-shared/types/FieldMetadataOptions.d.ts +2 -1
  185. package/dist/vendor/twenty-shared/types/FieldMetadataOptions.d.ts.map +1 -1
  186. package/dist/vendor/twenty-shared/types/FieldMetadataSettings.d.ts +15 -9
  187. package/dist/vendor/twenty-shared/types/FieldMetadataSettings.d.ts.map +1 -1
  188. package/dist/vendor/twenty-shared/types/FieldMetadataType.d.ts +18 -17
  189. package/dist/vendor/twenty-shared/types/FieldMetadataType.d.ts.map +1 -1
  190. package/dist/vendor/twenty-shared/types/FileCategory.d.ts +12 -0
  191. package/dist/vendor/twenty-shared/types/FileCategory.d.ts.map +1 -0
  192. package/dist/vendor/twenty-shared/types/FileFolder.d.ts +15 -0
  193. package/dist/vendor/twenty-shared/types/FileFolder.d.ts.map +1 -0
  194. package/dist/vendor/twenty-shared/types/IsEmptyObject.type.d.ts +2 -0
  195. package/dist/vendor/twenty-shared/types/IsEmptyObject.type.d.ts.map +1 -0
  196. package/dist/vendor/twenty-shared/types/IsEmptyRecord.type.d.ts +1 -1
  197. package/dist/vendor/twenty-shared/types/IsEmptyRecord.type.d.ts.map +1 -1
  198. package/dist/vendor/twenty-shared/types/IsNever.type.d.ts +2 -0
  199. package/dist/vendor/twenty-shared/types/IsNever.type.d.ts.map +1 -0
  200. package/dist/vendor/twenty-shared/types/IsSerializedRelation.type.d.ts +4 -0
  201. package/dist/vendor/twenty-shared/types/IsSerializedRelation.type.d.ts.map +1 -0
  202. package/dist/vendor/twenty-shared/types/LogicFunctionEvent.d.ts +28 -0
  203. package/dist/vendor/twenty-shared/types/LogicFunctionEvent.d.ts.map +1 -0
  204. package/dist/vendor/twenty-shared/types/ObjectPermissions.d.ts +4 -0
  205. package/dist/vendor/twenty-shared/types/ObjectPermissions.d.ts.map +1 -1
  206. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicate.d.ts +15 -0
  207. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicate.d.ts.map +1 -0
  208. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroup.d.ts +11 -0
  209. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroup.d.ts.map +1 -0
  210. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroupLogicalOperator.d.ts +5 -0
  211. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroupLogicalOperator.d.ts.map +1 -0
  212. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateOperand.d.ts +19 -0
  213. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateOperand.d.ts.map +1 -0
  214. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateValue.d.ts +6 -0
  215. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateValue.d.ts.map +1 -0
  216. package/dist/vendor/twenty-shared/types/SerializedRelation.type.d.ts +5 -0
  217. package/dist/vendor/twenty-shared/types/SerializedRelation.type.d.ts.map +1 -0
  218. package/dist/vendor/twenty-shared/types/SettingsPath.d.ts +5 -4
  219. package/dist/vendor/twenty-shared/types/SettingsPath.d.ts.map +1 -1
  220. package/dist/vendor/twenty-shared/types/__tests__/extract-serialized-relation-properties.type-test.d.ts +2 -0
  221. package/dist/vendor/twenty-shared/types/__tests__/extract-serialized-relation-properties.type-test.d.ts.map +1 -0
  222. package/dist/vendor/twenty-shared/types/index.d.ts +22 -4
  223. package/dist/vendor/twenty-shared/types/index.d.ts.map +1 -1
  224. package/dist/vendor/twenty-shared/types/page-layout/PageLayoutTabLayoutMode.d.ts +6 -0
  225. package/dist/vendor/twenty-shared/types/page-layout/PageLayoutTabLayoutMode.d.ts.map +1 -0
  226. package/dist/vendor/twenty-shared/types/page-layout/PageLayoutWidgetConditionalDisplay.d.ts +2 -0
  227. package/dist/vendor/twenty-shared/types/page-layout/PageLayoutWidgetConditionalDisplay.d.ts.map +1 -0
  228. package/dist/vendor/twenty-shared/types/page-layout/page-layout-widget-position.type.d.ts +18 -0
  229. package/dist/vendor/twenty-shared/types/page-layout/page-layout-widget-position.type.d.ts.map +1 -0
  230. package/dist/vendor/twenty-shared/types.cjs +1 -1
  231. package/dist/vendor/twenty-shared/types.mjs +85 -76
  232. package/dist/vendor/twenty-shared/utils/array/compareArraysOfObjectsByProperty.d.ts +2 -0
  233. package/dist/vendor/twenty-shared/utils/array/compareArraysOfObjectsByProperty.d.ts.map +1 -0
  234. package/dist/vendor/twenty-shared/utils/files/extractFolderPathFilenameAndTypeOrThrow.util.d.ts +6 -0
  235. package/dist/vendor/twenty-shared/utils/files/extractFolderPathFilenameAndTypeOrThrow.util.d.ts.map +1 -0
  236. package/dist/vendor/twenty-shared/utils/filter/index.d.ts +13 -0
  237. package/dist/vendor/twenty-shared/utils/filter/index.d.ts.map +1 -1
  238. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingArrayFilter.d.ts +7 -0
  239. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingArrayFilter.d.ts.map +1 -0
  240. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingBooleanFilter.d.ts +7 -0
  241. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingBooleanFilter.d.ts.map +1 -0
  242. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingCurrencyFilter.d.ts +10 -0
  243. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingCurrencyFilter.d.ts.map +1 -0
  244. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingDateFilter.d.ts +7 -0
  245. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingDateFilter.d.ts.map +1 -0
  246. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingFloatFilter.d.ts +7 -0
  247. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingFloatFilter.d.ts.map +1 -0
  248. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingMultiSelectFilter.d.ts +7 -0
  249. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingMultiSelectFilter.d.ts.map +1 -0
  250. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRatingFilter.d.ts +7 -0
  251. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRatingFilter.d.ts.map +1 -0
  252. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRawJsonFilter.d.ts +7 -0
  253. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRawJsonFilter.d.ts.map +1 -0
  254. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRichTextV2Filter.d.ts +7 -0
  255. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRichTextV2Filter.d.ts.map +1 -0
  256. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingSelectFilter.d.ts +7 -0
  257. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingSelectFilter.d.ts.map +1 -0
  258. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingStringFilter.d.ts +7 -0
  259. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingStringFilter.d.ts.map +1 -0
  260. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingTSVectorFilter.d.ts +7 -0
  261. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingTSVectorFilter.d.ts.map +1 -0
  262. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingUUIDFilter.d.ts +7 -0
  263. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingUUIDFilter.d.ts.map +1 -0
  264. package/dist/vendor/twenty-shared/utils/format/formatToShortNumber.d.ts +2 -0
  265. package/dist/vendor/twenty-shared/utils/format/formatToShortNumber.d.ts.map +1 -0
  266. package/dist/vendor/twenty-shared/utils/index.d.ts +19 -0
  267. package/dist/vendor/twenty-shared/utils/index.d.ts.map +1 -1
  268. package/dist/vendor/twenty-shared/utils/strings/index.d.ts +1 -0
  269. package/dist/vendor/twenty-shared/utils/strings/index.d.ts.map +1 -1
  270. package/dist/vendor/twenty-shared/utils/strings/pascalCase.d.ts +2 -0
  271. package/dist/vendor/twenty-shared/utils/strings/pascalCase.d.ts.map +1 -0
  272. package/dist/vendor/twenty-shared/utils/strings/stringifySafely.d.ts +2 -0
  273. package/dist/vendor/twenty-shared/utils/strings/stringifySafely.d.ts.map +1 -0
  274. package/dist/vendor/twenty-shared/utils/typeguard/isPlainObject.d.ts +2 -0
  275. package/dist/vendor/twenty-shared/utils/typeguard/isPlainObject.d.ts.map +1 -0
  276. package/dist/vendor/twenty-shared/utils/validation/isValidLocale.d.ts +2 -2
  277. package/dist/vendor/twenty-shared/utils/validation/isValidLocale.d.ts.map +1 -1
  278. package/dist/vendor/twenty-shared/utils/validation/normalizeLocale.d.ts +2 -5
  279. package/dist/vendor/twenty-shared/utils/validation/normalizeLocale.d.ts.map +1 -1
  280. package/dist/vendor/twenty-shared/utils.cjs +2 -2
  281. package/dist/vendor/twenty-shared/utils.mjs +994 -522
  282. package/dist/vendor/twenty-shared/workflow/index.d.ts +4 -0
  283. package/dist/vendor/twenty-shared/workflow/index.d.ts.map +1 -1
  284. package/dist/vendor/twenty-shared/workflow/schemas/code-action-schema.d.ts +2 -3
  285. package/dist/vendor/twenty-shared/workflow/schemas/code-action-schema.d.ts.map +1 -1
  286. package/dist/vendor/twenty-shared/workflow/schemas/code-action-settings-schema.d.ts +2 -3
  287. package/dist/vendor/twenty-shared/workflow/schemas/code-action-settings-schema.d.ts.map +1 -1
  288. package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-schema.d.ts +29 -0
  289. package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-schema.d.ts.map +1 -0
  290. package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-settings-schema.d.ts +18 -0
  291. package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-settings-schema.d.ts.map +1 -0
  292. package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-schema.d.ts +5 -1
  293. package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-schema.d.ts.map +1 -1
  294. package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-settings-schema.d.ts +5 -1
  295. package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-settings-schema.d.ts.map +1 -1
  296. package/dist/vendor/twenty-shared/workflow/schemas/workflow-action-schema.d.ts +32 -4
  297. package/dist/vendor/twenty-shared/workflow/schemas/workflow-action-schema.d.ts.map +1 -1
  298. package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-schema.d.ts +32 -4
  299. package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-schema.d.ts.map +1 -1
  300. package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-state-schema.d.ts +32 -4
  301. package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-state-schema.d.ts.map +1 -1
  302. package/dist/vendor/twenty-shared/workflow/types/EmailRecipients.d.ts +6 -0
  303. package/dist/vendor/twenty-shared/workflow/types/EmailRecipients.d.ts.map +1 -0
  304. package/dist/vendor/twenty-shared/workflow/utils/variable-path.util.d.ts +12 -0
  305. package/dist/vendor/twenty-shared/workflow/utils/variable-path.util.d.ts.map +1 -0
  306. package/dist/vendor/twenty-shared/workflow.cjs +3 -3
  307. package/dist/vendor/twenty-shared/workflow.mjs +205 -166
  308. package/dist/vendor/twenty-ui/AllIcons-CGPKtPQS.js +4188 -0
  309. package/dist/vendor/twenty-ui/AllIcons-CcTQbSjc.cjs +1 -0
  310. package/dist/vendor/twenty-ui/Animation-Dqlz22Qp.cjs +1 -0
  311. package/dist/vendor/twenty-ui/Animation-W4Sjfu-g.js +11 -0
  312. package/dist/vendor/twenty-ui/Avatar-Cg4dvBA_.js +130 -0
  313. package/dist/vendor/twenty-ui/Avatar-zyamQwOj.cjs +1 -0
  314. package/dist/vendor/twenty-ui/Button-BChGSHVB.js +257 -0
  315. package/dist/vendor/twenty-ui/Button-PLd38fEI.cjs +24 -0
  316. package/dist/vendor/twenty-ui/ColorSample-BEUix7Ah.cjs +16 -0
  317. package/dist/vendor/twenty-ui/ColorSample-Bp-he5lO.js +28 -0
  318. package/dist/vendor/twenty-ui/HoverBackground-D630rSrX.cjs +1 -0
  319. package/dist/vendor/twenty-ui/HoverBackground-bYDC0iDZ.js +5 -0
  320. package/dist/vendor/twenty-ui/Loader-9V3BLpiM.cjs +2 -0
  321. package/dist/vendor/twenty-ui/Loader-BmJ693nz.js +43 -0
  322. package/dist/vendor/twenty-ui/MainColorNames-DNUaoKmR.cjs +1 -0
  323. package/dist/vendor/twenty-ui/MainColorNames-O_b9E7H3.js +5 -0
  324. package/dist/vendor/twenty-ui/MainColorsLight-GOpmobTe.cjs +1 -0
  325. package/dist/vendor/twenty-ui/MainColorsLight-x_vjLhiq.js +1682 -0
  326. package/dist/vendor/twenty-ui/MobileViewport-BcwxurOJ.cjs +1 -0
  327. package/dist/vendor/twenty-ui/MobileViewport-CDXq37n6.js +4 -0
  328. package/dist/vendor/twenty-ui/OverflowingTextWithTooltip-1P96Lw-o.cjs +1 -0
  329. package/dist/vendor/twenty-ui/OverflowingTextWithTooltip-F-KEqUMB.js +132 -0
  330. package/dist/vendor/twenty-ui/Pill-C3ErQi9y.js +16 -0
  331. package/dist/vendor/twenty-ui/Pill-D732nsLI.cjs +1 -0
  332. package/dist/vendor/twenty-ui/Tag-CfX8tARK.js +99 -0
  333. package/dist/vendor/twenty-ui/Tag-DIE1bmT7.cjs +1 -0
  334. package/dist/vendor/twenty-ui/ThemeCommon-BiQXECTo.cjs +1 -0
  335. package/dist/vendor/twenty-ui/ThemeCommon-CUpBXrDJ.js +867 -0
  336. package/dist/vendor/twenty-ui/ThemeContextProvider-DRVSWXAb.js +26 -0
  337. package/dist/vendor/twenty-ui/ThemeContextProvider-DZWArlAl.cjs +1 -0
  338. package/dist/vendor/twenty-ui/Toggle-8vjP6D_0.cjs +4 -0
  339. package/dist/vendor/twenty-ui/Toggle-Bd3-khQW.js +169 -0
  340. package/dist/vendor/twenty-ui/VisibilityHidden-Bkyg_zrv.cjs +1 -0
  341. package/dist/vendor/twenty-ui/VisibilityHidden-D9rwE91j.js +11 -0
  342. package/dist/vendor/twenty-ui/VisibilityHiddenInput-B3xu3qIM.cjs +1 -0
  343. package/dist/vendor/twenty-ui/VisibilityHiddenInput-CpO8FZey.js +8 -0
  344. package/dist/vendor/twenty-ui/accessibility/components/VisibilityHidden.d.ts +4 -0
  345. package/dist/vendor/twenty-ui/accessibility/components/VisibilityHidden.d.ts.map +1 -0
  346. package/dist/vendor/twenty-ui/accessibility/components/VisibilityHiddenInput.d.ts +5 -0
  347. package/dist/vendor/twenty-ui/accessibility/components/VisibilityHiddenInput.d.ts.map +1 -0
  348. package/dist/vendor/twenty-ui/accessibility/index.d.ts +4 -0
  349. package/dist/vendor/twenty-ui/accessibility/index.d.ts.map +1 -0
  350. package/dist/vendor/twenty-ui/accessibility/utils/visibility-hidden.d.ts +2 -0
  351. package/dist/vendor/twenty-ui/accessibility/utils/visibility-hidden.d.ts.map +1 -0
  352. package/dist/vendor/twenty-ui/accessibility.cjs +1 -0
  353. package/dist/vendor/twenty-ui/accessibility.mjs +8 -0
  354. package/dist/vendor/twenty-ui/assets/index.d.ts +1 -0
  355. package/dist/vendor/twenty-ui/assets/index.d.ts.map +1 -0
  356. package/dist/vendor/twenty-ui/assets.cjs +1 -0
  357. package/dist/vendor/twenty-ui/assets.mjs +1 -0
  358. package/dist/vendor/twenty-ui/components/Pill/Pill.d.ts +10 -0
  359. package/dist/vendor/twenty-ui/components/Pill/Pill.d.ts.map +1 -0
  360. package/dist/vendor/twenty-ui/components/avatar-chip/AvatarChip.d.ts +18 -0
  361. package/dist/vendor/twenty-ui/components/avatar-chip/AvatarChip.d.ts.map +1 -0
  362. package/dist/vendor/twenty-ui/components/avatar-chip/MultipleAvatarChip.d.ts +15 -0
  363. package/dist/vendor/twenty-ui/components/avatar-chip/MultipleAvatarChip.d.ts.map +1 -0
  364. package/dist/vendor/twenty-ui/components/chip/Chip.d.ts +34 -0
  365. package/dist/vendor/twenty-ui/components/chip/Chip.d.ts.map +1 -0
  366. package/dist/vendor/twenty-ui/components/chip/LinkChip.d.ts +13 -0
  367. package/dist/vendor/twenty-ui/components/chip/LinkChip.d.ts.map +1 -0
  368. package/dist/vendor/twenty-ui/components/chip/constants/LinkChipClickOutsideId.d.ts +2 -0
  369. package/dist/vendor/twenty-ui/components/chip/constants/LinkChipClickOutsideId.d.ts.map +1 -0
  370. package/dist/vendor/twenty-ui/components/index.d.ts +13 -0
  371. package/dist/vendor/twenty-ui/components/index.d.ts.map +1 -0
  372. package/dist/vendor/twenty-ui/components/tag/Tag.d.ts +20 -0
  373. package/dist/vendor/twenty-ui/components/tag/Tag.d.ts.map +1 -0
  374. package/dist/vendor/twenty-ui/components.cjs +1 -0
  375. package/dist/vendor/twenty-ui/components.mjs +235 -0
  376. package/dist/vendor/twenty-ui/config-D3RPmuwk.cjs +1 -0
  377. package/dist/vendor/twenty-ui/config-D9UgCg2c.js +18 -0
  378. package/dist/vendor/twenty-ui/createState---bO_WLW.cjs +1 -0
  379. package/dist/vendor/twenty-ui/createState-DvtGszbK.js +9 -0
  380. package/dist/vendor/twenty-ui/display/avatar/components/Avatar.d.ts +20 -0
  381. package/dist/vendor/twenty-ui/display/avatar/components/Avatar.d.ts.map +1 -0
  382. package/dist/vendor/twenty-ui/display/avatar/components/AvatarGroup.d.ts +7 -0
  383. package/dist/vendor/twenty-ui/display/avatar/components/AvatarGroup.d.ts.map +1 -0
  384. package/dist/vendor/twenty-ui/display/avatar/components/states/isInvalidAvatarUrlState.d.ts +2 -0
  385. package/dist/vendor/twenty-ui/display/avatar/components/states/isInvalidAvatarUrlState.d.ts.map +1 -0
  386. package/dist/vendor/twenty-ui/display/avatar/constants/AvatarPropertiesBySize.d.ts +23 -0
  387. package/dist/vendor/twenty-ui/display/avatar/constants/AvatarPropertiesBySize.d.ts.map +1 -0
  388. package/dist/vendor/twenty-ui/display/avatar/types/AvatarSize.d.ts +2 -0
  389. package/dist/vendor/twenty-ui/display/avatar/types/AvatarSize.d.ts.map +1 -0
  390. package/dist/vendor/twenty-ui/display/avatar/types/AvatarType.d.ts +2 -0
  391. package/dist/vendor/twenty-ui/display/avatar/types/AvatarType.d.ts.map +1 -0
  392. package/dist/vendor/twenty-ui/display/banner/components/Banner.d.ts +9 -0
  393. package/dist/vendor/twenty-ui/display/banner/components/Banner.d.ts.map +1 -0
  394. package/dist/vendor/twenty-ui/display/banner/components/SidePanelInformationBanner.d.ts +8 -0
  395. package/dist/vendor/twenty-ui/display/banner/components/SidePanelInformationBanner.d.ts.map +1 -0
  396. package/dist/vendor/twenty-ui/display/checkmark/components/AnimatedCheckmark.d.ts +10 -0
  397. package/dist/vendor/twenty-ui/display/checkmark/components/AnimatedCheckmark.d.ts.map +1 -0
  398. package/dist/vendor/twenty-ui/display/checkmark/components/Checkmark.d.ts +7 -0
  399. package/dist/vendor/twenty-ui/display/checkmark/components/Checkmark.d.ts.map +1 -0
  400. package/dist/vendor/twenty-ui/display/color/components/ColorSample.d.ts +14 -0
  401. package/dist/vendor/twenty-ui/display/color/components/ColorSample.d.ts.map +1 -0
  402. package/dist/vendor/twenty-ui/display/command-block/components/CommandBlock.d.ts +9 -0
  403. package/dist/vendor/twenty-ui/display/command-block/components/CommandBlock.d.ts.map +1 -0
  404. package/dist/vendor/twenty-ui/display/icon/components/IconAddressBook.d.ts +6 -0
  405. package/dist/vendor/twenty-ui/display/icon/components/IconAddressBook.d.ts.map +1 -0
  406. package/dist/vendor/twenty-ui/display/icon/components/IconChartBarHorizontal.d.ts +6 -0
  407. package/dist/vendor/twenty-ui/display/icon/components/IconChartBarHorizontal.d.ts.map +1 -0
  408. package/dist/vendor/twenty-ui/display/icon/components/IconGmail.d.ts +6 -0
  409. package/dist/vendor/twenty-ui/display/icon/components/IconGmail.d.ts.map +1 -0
  410. package/dist/vendor/twenty-ui/display/icon/components/IconGoogle.d.ts +6 -0
  411. package/dist/vendor/twenty-ui/display/icon/components/IconGoogle.d.ts.map +1 -0
  412. package/dist/vendor/twenty-ui/display/icon/components/IconGoogleCalendar.d.ts +6 -0
  413. package/dist/vendor/twenty-ui/display/icon/components/IconGoogleCalendar.d.ts.map +1 -0
  414. package/dist/vendor/twenty-ui/display/icon/components/IconLock.d.ts +6 -0
  415. package/dist/vendor/twenty-ui/display/icon/components/IconLock.d.ts.map +1 -0
  416. package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoft.d.ts +6 -0
  417. package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoft.d.ts.map +1 -0
  418. package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoftCalendar.d.ts +6 -0
  419. package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoftCalendar.d.ts.map +1 -0
  420. package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoftOutlook.d.ts +6 -0
  421. package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoftOutlook.d.ts.map +1 -0
  422. package/dist/vendor/twenty-ui/display/icon/components/IconRelationManyToOne.d.ts +6 -0
  423. package/dist/vendor/twenty-ui/display/icon/components/IconRelationManyToOne.d.ts.map +1 -0
  424. package/dist/vendor/twenty-ui/display/icon/components/IconTrashXOff.d.ts +6 -0
  425. package/dist/vendor/twenty-ui/display/icon/components/IconTrashXOff.d.ts.map +1 -0
  426. package/dist/vendor/twenty-ui/display/icon/components/IconTwentyStar.d.ts +6 -0
  427. package/dist/vendor/twenty-ui/display/icon/components/IconTwentyStar.d.ts.map +1 -0
  428. package/dist/vendor/twenty-ui/display/icon/components/IconTwentyStarFilled.d.ts +6 -0
  429. package/dist/vendor/twenty-ui/display/icon/components/IconTwentyStarFilled.d.ts.map +1 -0
  430. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconArray.d.ts +6 -0
  431. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconArray.d.ts.map +1 -0
  432. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCalendarEvent.d.ts +6 -0
  433. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCalendarEvent.d.ts.map +1 -0
  434. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCalendarTime.d.ts +6 -0
  435. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCalendarTime.d.ts.map +1 -0
  436. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCurrency.d.ts +6 -0
  437. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCurrency.d.ts.map +1 -0
  438. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconFile.d.ts +6 -0
  439. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconFile.d.ts.map +1 -0
  440. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconJson.d.ts +6 -0
  441. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconJson.d.ts.map +1 -0
  442. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconLink.d.ts +6 -0
  443. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconLink.d.ts.map +1 -0
  444. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconMail.d.ts +6 -0
  445. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconMail.d.ts.map +1 -0
  446. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconManyToMany.d.ts +6 -0
  447. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconManyToMany.d.ts.map +1 -0
  448. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconMap.d.ts +6 -0
  449. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconMap.d.ts.map +1 -0
  450. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconNumbers.d.ts +6 -0
  451. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconNumbers.d.ts.map +1 -0
  452. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconOneToMany.d.ts +6 -0
  453. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconOneToMany.d.ts.map +1 -0
  454. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconOneToOne.d.ts +6 -0
  455. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconOneToOne.d.ts.map +1 -0
  456. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconPhone.d.ts +6 -0
  457. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconPhone.d.ts.map +1 -0
  458. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconSetting.d.ts +6 -0
  459. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconSetting.d.ts.map +1 -0
  460. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconStar.d.ts +6 -0
  461. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconStar.d.ts.map +1 -0
  462. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconTag.d.ts +6 -0
  463. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconTag.d.ts.map +1 -0
  464. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconTags.d.ts +6 -0
  465. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconTags.d.ts.map +1 -0
  466. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconText.d.ts +6 -0
  467. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconText.d.ts.map +1 -0
  468. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconToggle.d.ts +6 -0
  469. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconToggle.d.ts.map +1 -0
  470. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconUid.d.ts +6 -0
  471. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconUid.d.ts.map +1 -0
  472. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconUser.d.ts +6 -0
  473. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconUser.d.ts.map +1 -0
  474. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconWrapper.d.ts +5 -0
  475. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconWrapper.d.ts.map +1 -0
  476. package/dist/vendor/twenty-ui/display/icon/components/TablerIcons.d.ts +3 -0
  477. package/dist/vendor/twenty-ui/display/icon/components/TablerIcons.d.ts.map +1 -0
  478. package/dist/vendor/twenty-ui/display/icon/hooks/useIcons.d.ts +5 -0
  479. package/dist/vendor/twenty-ui/display/icon/hooks/useIcons.d.ts.map +1 -0
  480. package/dist/vendor/twenty-ui/display/icon/providers/IconsProvider.d.ts +6 -0
  481. package/dist/vendor/twenty-ui/display/icon/providers/IconsProvider.d.ts.map +1 -0
  482. package/dist/vendor/twenty-ui/display/icon/providers/internal/AllIcons.d.ts +4185 -0
  483. package/dist/vendor/twenty-ui/display/icon/providers/internal/AllIcons.d.ts.map +1 -0
  484. package/dist/vendor/twenty-ui/display/icon/states/iconsState.d.ts +4 -0
  485. package/dist/vendor/twenty-ui/display/icon/states/iconsState.d.ts.map +1 -0
  486. package/dist/vendor/twenty-ui/display/icon/types/IconComponent.d.ts +11 -0
  487. package/dist/vendor/twenty-ui/display/icon/types/IconComponent.d.ts.map +1 -0
  488. package/dist/vendor/twenty-ui/display/index.d.ts +76 -0
  489. package/dist/vendor/twenty-ui/display/index.d.ts.map +1 -0
  490. package/dist/vendor/twenty-ui/display/info/components/Info.d.ts +12 -0
  491. package/dist/vendor/twenty-ui/display/info/components/Info.d.ts.map +1 -0
  492. package/dist/vendor/twenty-ui/display/status/components/Status.d.ts +13 -0
  493. package/dist/vendor/twenty-ui/display/status/components/Status.d.ts.map +1 -0
  494. package/dist/vendor/twenty-ui/display/text/components/HorizontalSeparator.d.ts +11 -0
  495. package/dist/vendor/twenty-ui/display/text/components/HorizontalSeparator.d.ts.map +1 -0
  496. package/dist/vendor/twenty-ui/display/text/components/SeparatorLineText.d.ts +6 -0
  497. package/dist/vendor/twenty-ui/display/text/components/SeparatorLineText.d.ts.map +1 -0
  498. package/dist/vendor/twenty-ui/display/tooltip/AppTooltip.d.ts +31 -0
  499. package/dist/vendor/twenty-ui/display/tooltip/AppTooltip.d.ts.map +1 -0
  500. package/dist/vendor/twenty-ui/display/tooltip/OverflowingTextWithTooltip.d.ts +16 -0
  501. package/dist/vendor/twenty-ui/display/tooltip/OverflowingTextWithTooltip.d.ts.map +1 -0
  502. package/dist/vendor/twenty-ui/display/typography/components/H1Title.d.ts +15 -0
  503. package/dist/vendor/twenty-ui/display/typography/components/H1Title.d.ts.map +1 -0
  504. package/dist/vendor/twenty-ui/display/typography/components/H2Title.d.ts +9 -0
  505. package/dist/vendor/twenty-ui/display/typography/components/H2Title.d.ts.map +1 -0
  506. package/dist/vendor/twenty-ui/display/typography/components/H3Title.d.ts +10 -0
  507. package/dist/vendor/twenty-ui/display/typography/components/H3Title.d.ts.map +1 -0
  508. package/dist/vendor/twenty-ui/display/typography/components/Label.d.ts +9 -0
  509. package/dist/vendor/twenty-ui/display/typography/components/Label.d.ts.map +1 -0
  510. package/dist/vendor/twenty-ui/display/typography/components/StyledText.d.ts +20 -0
  511. package/dist/vendor/twenty-ui/display/typography/components/StyledText.d.ts.map +1 -0
  512. package/dist/vendor/twenty-ui/display.cjs +8 -0
  513. package/dist/vendor/twenty-ui/display.mjs +1194 -0
  514. package/dist/vendor/twenty-ui/emotion-react-jsx-runtime.browser.esm-BUNawPtg.js +1765 -0
  515. package/dist/vendor/twenty-ui/emotion-react-jsx-runtime.browser.esm-pt_kQSCG.cjs +44 -0
  516. package/dist/vendor/twenty-ui/feedback/index.d.ts +6 -0
  517. package/dist/vendor/twenty-ui/feedback/index.d.ts.map +1 -0
  518. package/dist/vendor/twenty-ui/feedback/loader/components/Loader.d.ts +8 -0
  519. package/dist/vendor/twenty-ui/feedback/loader/components/Loader.d.ts.map +1 -0
  520. package/dist/vendor/twenty-ui/feedback/progress-bar/components/CircularProgressBar.d.ts +8 -0
  521. package/dist/vendor/twenty-ui/feedback/progress-bar/components/CircularProgressBar.d.ts.map +1 -0
  522. package/dist/vendor/twenty-ui/feedback/progress-bar/components/ProgressBar.d.ts +14 -0
  523. package/dist/vendor/twenty-ui/feedback/progress-bar/components/ProgressBar.d.ts.map +1 -0
  524. package/dist/vendor/twenty-ui/feedback/progress-bar/hooks/useProgressAnimation.d.ts +13 -0
  525. package/dist/vendor/twenty-ui/feedback/progress-bar/hooks/useProgressAnimation.d.ts.map +1 -0
  526. package/dist/vendor/twenty-ui/feedback.cjs +1 -0
  527. package/dist/vendor/twenty-ui/feedback.mjs +124 -0
  528. package/dist/vendor/twenty-ui/getDisplayValueByUrlType-BMzTxZmB.cjs +1 -0
  529. package/dist/vendor/twenty-ui/getDisplayValueByUrlType-BqPVhhu2.js +20 -0
  530. package/dist/vendor/twenty-ui/index.cjs +1 -0
  531. package/dist/vendor/twenty-ui/index.d.ts +3 -0
  532. package/dist/vendor/twenty-ui/index.d.ts.map +1 -0
  533. package/dist/vendor/twenty-ui/index.mjs +4 -0
  534. package/dist/vendor/twenty-ui/input/button/components/AnimatedButton.d.ts +9 -0
  535. package/dist/vendor/twenty-ui/input/button/components/AnimatedButton.d.ts.map +1 -0
  536. package/dist/vendor/twenty-ui/input/button/components/AnimatedLightIconButton.d.ts +19 -0
  537. package/dist/vendor/twenty-ui/input/button/components/AnimatedLightIconButton.d.ts.map +1 -0
  538. package/dist/vendor/twenty-ui/input/button/components/Button/Button.d.ts +32 -0
  539. package/dist/vendor/twenty-ui/input/button/components/Button/Button.d.ts.map +1 -0
  540. package/dist/vendor/twenty-ui/input/button/components/Button/constant.d.ts +2 -0
  541. package/dist/vendor/twenty-ui/input/button/components/Button/constant.d.ts.map +1 -0
  542. package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonHotKeys.d.ts +9 -0
  543. package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonHotKeys.d.ts.map +1 -0
  544. package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonIcon.d.ts +7 -0
  545. package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonIcon.d.ts.map +1 -0
  546. package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonSoon.d.ts +6 -0
  547. package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonSoon.d.ts.map +1 -0
  548. package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonText.d.ts +6 -0
  549. package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonText.d.ts.map +1 -0
  550. package/dist/vendor/twenty-ui/input/button/components/ButtonGroup.d.ts +9 -0
  551. package/dist/vendor/twenty-ui/input/button/components/ButtonGroup.d.ts.map +1 -0
  552. package/dist/vendor/twenty-ui/input/button/components/ColorPickerButton.d.ts +9 -0
  553. package/dist/vendor/twenty-ui/input/button/components/ColorPickerButton.d.ts.map +1 -0
  554. package/dist/vendor/twenty-ui/input/button/components/FloatingButton.d.ts +18 -0
  555. package/dist/vendor/twenty-ui/input/button/components/FloatingButton.d.ts.map +1 -0
  556. package/dist/vendor/twenty-ui/input/button/components/FloatingButtonGroup.d.ts +9 -0
  557. package/dist/vendor/twenty-ui/input/button/components/FloatingButtonGroup.d.ts.map +1 -0
  558. package/dist/vendor/twenty-ui/input/button/components/FloatingIconButton.d.ts +19 -0
  559. package/dist/vendor/twenty-ui/input/button/components/FloatingIconButton.d.ts.map +1 -0
  560. package/dist/vendor/twenty-ui/input/button/components/FloatingIconButtonGroup.d.ts +13 -0
  561. package/dist/vendor/twenty-ui/input/button/components/FloatingIconButtonGroup.d.ts.map +1 -0
  562. package/dist/vendor/twenty-ui/input/button/components/IconButton.d.ts +23 -0
  563. package/dist/vendor/twenty-ui/input/button/components/IconButton.d.ts.map +1 -0
  564. package/dist/vendor/twenty-ui/input/button/components/IconButtonGroup.d.ts +13 -0
  565. package/dist/vendor/twenty-ui/input/button/components/IconButtonGroup.d.ts.map +1 -0
  566. package/dist/vendor/twenty-ui/input/button/components/InsideButton.d.ts +11 -0
  567. package/dist/vendor/twenty-ui/input/button/components/InsideButton.d.ts.map +1 -0
  568. package/dist/vendor/twenty-ui/input/button/components/LightButton.d.ts +17 -0
  569. package/dist/vendor/twenty-ui/input/button/components/LightButton.d.ts.map +1 -0
  570. package/dist/vendor/twenty-ui/input/button/components/LightIconButton.d.ts +19 -0
  571. package/dist/vendor/twenty-ui/input/button/components/LightIconButton.d.ts.map +1 -0
  572. package/dist/vendor/twenty-ui/input/button/components/LightIconButtonGroup.d.ts +19 -0
  573. package/dist/vendor/twenty-ui/input/button/components/LightIconButtonGroup.d.ts.map +1 -0
  574. package/dist/vendor/twenty-ui/input/button/components/MainButton.d.ts +19 -0
  575. package/dist/vendor/twenty-ui/input/button/components/MainButton.d.ts.map +1 -0
  576. package/dist/vendor/twenty-ui/input/button/components/RoundedIconButton.d.ts +8 -0
  577. package/dist/vendor/twenty-ui/input/button/components/RoundedIconButton.d.ts.map +1 -0
  578. package/dist/vendor/twenty-ui/input/button/components/TabButton/TabButton.d.ts +21 -0
  579. package/dist/vendor/twenty-ui/input/button/components/TabButton/TabButton.d.ts.map +1 -0
  580. package/dist/vendor/twenty-ui/input/button/components/TabButton/internals/components/StyledTabBase.d.ts +22 -0
  581. package/dist/vendor/twenty-ui/input/button/components/TabButton/internals/components/StyledTabBase.d.ts.map +1 -0
  582. package/dist/vendor/twenty-ui/input/button/components/TabButton/internals/components/TabContent.d.ts +17 -0
  583. package/dist/vendor/twenty-ui/input/button/components/TabButton/internals/components/TabContent.d.ts.map +1 -0
  584. package/dist/vendor/twenty-ui/input/code-editor/components/CodeEditor.d.ts +14 -0
  585. package/dist/vendor/twenty-ui/input/code-editor/components/CodeEditor.d.ts.map +1 -0
  586. package/dist/vendor/twenty-ui/input/code-editor/components/CodeEditorHeader.d.ts +7 -0
  587. package/dist/vendor/twenty-ui/input/code-editor/components/CodeEditorHeader.d.ts.map +1 -0
  588. package/dist/vendor/twenty-ui/input/code-editor/constants/BaseCodeEditorThemeId.d.ts +2 -0
  589. package/dist/vendor/twenty-ui/input/code-editor/constants/BaseCodeEditorThemeId.d.ts.map +1 -0
  590. package/dist/vendor/twenty-ui/input/code-editor/index.d.ts +4 -0
  591. package/dist/vendor/twenty-ui/input/code-editor/index.d.ts.map +1 -0
  592. package/dist/vendor/twenty-ui/input/code-editor/theme/utils/getBaseCodeEditorTheme.d.ts +7 -0
  593. package/dist/vendor/twenty-ui/input/code-editor/theme/utils/getBaseCodeEditorTheme.d.ts.map +1 -0
  594. package/dist/vendor/twenty-ui/input/color-scheme/components/ColorSchemeCard.d.ts +15 -0
  595. package/dist/vendor/twenty-ui/input/color-scheme/components/ColorSchemeCard.d.ts.map +1 -0
  596. package/dist/vendor/twenty-ui/input/color-scheme/components/ColorSchemePicker.d.ts +12 -0
  597. package/dist/vendor/twenty-ui/input/color-scheme/components/ColorSchemePicker.d.ts.map +1 -0
  598. package/dist/vendor/twenty-ui/input/components/CardPicker.d.ts +10 -0
  599. package/dist/vendor/twenty-ui/input/components/CardPicker.d.ts.map +1 -0
  600. package/dist/vendor/twenty-ui/input/components/Checkbox.d.ts +34 -0
  601. package/dist/vendor/twenty-ui/input/components/Checkbox.d.ts.map +1 -0
  602. package/dist/vendor/twenty-ui/input/components/IconListViewGrip.d.ts +6 -0
  603. package/dist/vendor/twenty-ui/input/components/IconListViewGrip.d.ts.map +1 -0
  604. package/dist/vendor/twenty-ui/input/components/Radio.d.ts +33 -0
  605. package/dist/vendor/twenty-ui/input/components/Radio.d.ts.map +1 -0
  606. package/dist/vendor/twenty-ui/input/components/RadioGroup.d.ts +10 -0
  607. package/dist/vendor/twenty-ui/input/components/RadioGroup.d.ts.map +1 -0
  608. package/dist/vendor/twenty-ui/input/components/SearchInput.d.ts +13 -0
  609. package/dist/vendor/twenty-ui/input/components/SearchInput.d.ts.map +1 -0
  610. package/dist/vendor/twenty-ui/input/components/Toggle.d.ts +12 -0
  611. package/dist/vendor/twenty-ui/input/components/Toggle.d.ts.map +1 -0
  612. package/dist/vendor/twenty-ui/input/index.d.ts +59 -0
  613. package/dist/vendor/twenty-ui/input/index.d.ts.map +1 -0
  614. package/dist/vendor/twenty-ui/input/types/ColorScheme.d.ts +2 -0
  615. package/dist/vendor/twenty-ui/input/types/ColorScheme.d.ts.map +1 -0
  616. package/dist/vendor/twenty-ui/input/types/SelectOption.d.ts +12 -0
  617. package/dist/vendor/twenty-ui/input/types/SelectOption.d.ts.map +1 -0
  618. package/dist/vendor/twenty-ui/input.cjs +179 -0
  619. package/dist/vendor/twenty-ui/input.mjs +1247 -0
  620. package/dist/vendor/twenty-ui/isValidCountryCode-Dyji5s5r-B7O5eJvP.js +10526 -0
  621. package/dist/vendor/twenty-ui/isValidCountryCode-Dyji5s5r-MH68p3NE.cjs +25 -0
  622. package/dist/vendor/twenty-ui/json-visualizer/components/JsonArrayNode.d.ts +11 -0
  623. package/dist/vendor/twenty-ui/json-visualizer/components/JsonArrayNode.d.ts.map +1 -0
  624. package/dist/vendor/twenty-ui/json-visualizer/components/JsonNestedNode.d.ts +19 -0
  625. package/dist/vendor/twenty-ui/json-visualizer/components/JsonNestedNode.d.ts.map +1 -0
  626. package/dist/vendor/twenty-ui/json-visualizer/components/JsonNode.d.ts +9 -0
  627. package/dist/vendor/twenty-ui/json-visualizer/components/JsonNode.d.ts.map +1 -0
  628. package/dist/vendor/twenty-ui/json-visualizer/components/JsonObjectNode.d.ts +11 -0
  629. package/dist/vendor/twenty-ui/json-visualizer/components/JsonObjectNode.d.ts.map +1 -0
  630. package/dist/vendor/twenty-ui/json-visualizer/components/JsonTree.d.ts +16 -0
  631. package/dist/vendor/twenty-ui/json-visualizer/components/JsonTree.d.ts.map +1 -0
  632. package/dist/vendor/twenty-ui/json-visualizer/components/JsonTreeContextProvider.d.ts +7 -0
  633. package/dist/vendor/twenty-ui/json-visualizer/components/JsonTreeContextProvider.d.ts.map +1 -0
  634. package/dist/vendor/twenty-ui/json-visualizer/components/JsonValueNode.d.ts +16 -0
  635. package/dist/vendor/twenty-ui/json-visualizer/components/JsonValueNode.d.ts.map +1 -0
  636. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonArrow.d.ts +6 -0
  637. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonArrow.d.ts.map +1 -0
  638. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonList.d.ts +8 -0
  639. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonList.d.ts.map +1 -0
  640. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonListItem.d.ts +6 -0
  641. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonListItem.d.ts.map +1 -0
  642. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonNodeLabel.d.ts +9 -0
  643. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonNodeLabel.d.ts.map +1 -0
  644. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonNodeValue.d.ts +7 -0
  645. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonNodeValue.d.ts.map +1 -0
  646. package/dist/vendor/twenty-ui/json-visualizer/contexts/JsonTreeContext.d.ts +18 -0
  647. package/dist/vendor/twenty-ui/json-visualizer/contexts/JsonTreeContext.d.ts.map +1 -0
  648. package/dist/vendor/twenty-ui/json-visualizer/hooks/useJsonTreeContextOrThrow.d.ts +2 -0
  649. package/dist/vendor/twenty-ui/json-visualizer/hooks/useJsonTreeContextOrThrow.d.ts.map +1 -0
  650. package/dist/vendor/twenty-ui/json-visualizer/index.d.ts +15 -0
  651. package/dist/vendor/twenty-ui/json-visualizer/index.d.ts.map +1 -0
  652. package/dist/vendor/twenty-ui/json-visualizer/types/GetJsonNodeHighlighting.d.ts +4 -0
  653. package/dist/vendor/twenty-ui/json-visualizer/types/GetJsonNodeHighlighting.d.ts.map +1 -0
  654. package/dist/vendor/twenty-ui/json-visualizer/types/JsonNodeHighlighting.d.ts +4 -0
  655. package/dist/vendor/twenty-ui/json-visualizer/types/JsonNodeHighlighting.d.ts.map +1 -0
  656. package/dist/vendor/twenty-ui/json-visualizer/utils/isArray.d.ts +2 -0
  657. package/dist/vendor/twenty-ui/json-visualizer/utils/isArray.d.ts.map +1 -0
  658. package/dist/vendor/twenty-ui/json-visualizer/utils/isTwoFirstDepths.d.ts +4 -0
  659. package/dist/vendor/twenty-ui/json-visualizer/utils/isTwoFirstDepths.d.ts.map +1 -0
  660. package/dist/vendor/twenty-ui/json-visualizer.cjs +7 -0
  661. package/dist/vendor/twenty-ui/json-visualizer.mjs +271 -0
  662. package/dist/vendor/twenty-ui/layout/animated-expandable-container/components/AnimatedExpandableContainer.d.ts +17 -0
  663. package/dist/vendor/twenty-ui/layout/animated-expandable-container/components/AnimatedExpandableContainer.d.ts.map +1 -0
  664. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDimension.d.ts +2 -0
  665. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDimension.d.ts.map +1 -0
  666. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDurationObject.d.ts +5 -0
  667. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDurationObject.d.ts.map +1 -0
  668. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDurations.d.ts +4 -0
  669. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDurations.d.ts.map +1 -0
  670. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationMode.d.ts +2 -0
  671. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationMode.d.ts.map +1 -0
  672. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationSize.d.ts +2 -0
  673. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationSize.d.ts.map +1 -0
  674. package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getCommonStyles.d.ts +16 -0
  675. package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getCommonStyles.d.ts.map +1 -0
  676. package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getExpandableAnimationConfig.d.ts +45 -0
  677. package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getExpandableAnimationConfig.d.ts.map +1 -0
  678. package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getTransitionValues.d.ts +15 -0
  679. package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getTransitionValues.d.ts.map +1 -0
  680. package/dist/vendor/twenty-ui/layout/animated-placeholder/components/AnimatedPlaceholder.d.ts +10 -0
  681. package/dist/vendor/twenty-ui/layout/animated-placeholder/components/AnimatedPlaceholder.d.ts.map +1 -0
  682. package/dist/vendor/twenty-ui/layout/animated-placeholder/components/EmptyPlaceholderStyled.d.ts +31 -0
  683. package/dist/vendor/twenty-ui/layout/animated-placeholder/components/EmptyPlaceholderStyled.d.ts.map +1 -0
  684. package/dist/vendor/twenty-ui/layout/animated-placeholder/components/ErrorPlaceholderStyled.d.ts +21 -0
  685. package/dist/vendor/twenty-ui/layout/animated-placeholder/components/ErrorPlaceholderStyled.d.ts.map +1 -0
  686. package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/Background.d.ts +2 -0
  687. package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/Background.d.ts.map +1 -0
  688. package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/DarkBackground.d.ts +2 -0
  689. package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/DarkBackground.d.ts.map +1 -0
  690. package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/DarkMovingImage.d.ts +2 -0
  691. package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/DarkMovingImage.d.ts.map +1 -0
  692. package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/MovingImage.d.ts +2 -0
  693. package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/MovingImage.d.ts.map +1 -0
  694. package/dist/vendor/twenty-ui/layout/animated-placeholder/index.d.ts +8 -0
  695. package/dist/vendor/twenty-ui/layout/animated-placeholder/index.d.ts.map +1 -0
  696. package/dist/vendor/twenty-ui/layout/card/components/Card.d.ts +9 -0
  697. package/dist/vendor/twenty-ui/layout/card/components/Card.d.ts.map +1 -0
  698. package/dist/vendor/twenty-ui/layout/card/components/CardContent.d.ts +7 -0
  699. package/dist/vendor/twenty-ui/layout/card/components/CardContent.d.ts.map +1 -0
  700. package/dist/vendor/twenty-ui/layout/card/components/CardFooter.d.ts +8 -0
  701. package/dist/vendor/twenty-ui/layout/card/components/CardFooter.d.ts.map +1 -0
  702. package/dist/vendor/twenty-ui/layout/card/components/CardHeader.d.ts +6 -0
  703. package/dist/vendor/twenty-ui/layout/card/components/CardHeader.d.ts.map +1 -0
  704. package/dist/vendor/twenty-ui/layout/index.d.ts +23 -0
  705. package/dist/vendor/twenty-ui/layout/index.d.ts.map +1 -0
  706. package/dist/vendor/twenty-ui/layout/section/components/Section.d.ts +21 -0
  707. package/dist/vendor/twenty-ui/layout/section/components/Section.d.ts.map +1 -0
  708. package/dist/vendor/twenty-ui/layout.cjs +6 -0
  709. package/dist/vendor/twenty-ui/layout.mjs +266 -0
  710. package/dist/vendor/twenty-ui/navigation/index.d.ts +43 -0
  711. package/dist/vendor/twenty-ui/navigation/index.d.ts.map +1 -0
  712. package/dist/vendor/twenty-ui/navigation/link/components/AdvancedSettingsToggle.d.ts +8 -0
  713. package/dist/vendor/twenty-ui/navigation/link/components/AdvancedSettingsToggle.d.ts.map +1 -0
  714. package/dist/vendor/twenty-ui/navigation/link/components/ClickToActionLink.d.ts +8 -0
  715. package/dist/vendor/twenty-ui/navigation/link/components/ClickToActionLink.d.ts.map +1 -0
  716. package/dist/vendor/twenty-ui/navigation/link/components/ContactLink.d.ts +10 -0
  717. package/dist/vendor/twenty-ui/navigation/link/components/ContactLink.d.ts.map +1 -0
  718. package/dist/vendor/twenty-ui/navigation/link/components/GithubVersionLink.d.ts +6 -0
  719. package/dist/vendor/twenty-ui/navigation/link/components/GithubVersionLink.d.ts.map +1 -0
  720. package/dist/vendor/twenty-ui/navigation/link/components/RawLink.d.ts +10 -0
  721. package/dist/vendor/twenty-ui/navigation/link/components/RawLink.d.ts.map +1 -0
  722. package/dist/vendor/twenty-ui/navigation/link/components/RoundedLink.d.ts +9 -0
  723. package/dist/vendor/twenty-ui/navigation/link/components/RoundedLink.d.ts.map +1 -0
  724. package/dist/vendor/twenty-ui/navigation/link/components/SocialLink.d.ts +16 -0
  725. package/dist/vendor/twenty-ui/navigation/link/components/SocialLink.d.ts.map +1 -0
  726. package/dist/vendor/twenty-ui/navigation/link/components/UndecoratedLink.d.ts +12 -0
  727. package/dist/vendor/twenty-ui/navigation/link/components/UndecoratedLink.d.ts.map +1 -0
  728. package/dist/vendor/twenty-ui/navigation/link/components/index.d.ts +9 -0
  729. package/dist/vendor/twenty-ui/navigation/link/components/index.d.ts.map +1 -0
  730. package/dist/vendor/twenty-ui/navigation/link/constants/Cal.d.ts +2 -0
  731. package/dist/vendor/twenty-ui/navigation/link/constants/Cal.d.ts.map +1 -0
  732. package/dist/vendor/twenty-ui/navigation/link/constants/GithubLink.d.ts +2 -0
  733. package/dist/vendor/twenty-ui/navigation/link/constants/GithubLink.d.ts.map +1 -0
  734. package/dist/vendor/twenty-ui/navigation/link/constants/TwentyPricingLink.d.ts +2 -0
  735. package/dist/vendor/twenty-ui/navigation/link/constants/TwentyPricingLink.d.ts.map +1 -0
  736. package/dist/vendor/twenty-ui/navigation/link/index.d.ts +4 -0
  737. package/dist/vendor/twenty-ui/navigation/link/index.d.ts.map +1 -0
  738. package/dist/vendor/twenty-ui/navigation/menu/components/MenuPicker.d.ts +18 -0
  739. package/dist/vendor/twenty-ui/navigation/menu/components/MenuPicker.d.ts.map +1 -0
  740. package/dist/vendor/twenty-ui/navigation/menu/components/index.d.ts +2 -0
  741. package/dist/vendor/twenty-ui/navigation/menu/components/index.d.ts.map +1 -0
  742. package/dist/vendor/twenty-ui/navigation/menu/index.d.ts +3 -0
  743. package/dist/vendor/twenty-ui/navigation/menu/index.d.ts.map +1 -0
  744. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItem.d.ts +41 -0
  745. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItem.d.ts.map +1 -0
  746. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemAvatar.d.ts +22 -0
  747. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemAvatar.d.ts.map +1 -0
  748. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemDraggable.d.ts +21 -0
  749. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemDraggable.d.ts.map +1 -0
  750. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemHotKeys.d.ts +6 -0
  751. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemHotKeys.d.ts.map +1 -0
  752. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelect.d.ts +16 -0
  753. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelect.d.ts.map +1 -0
  754. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelectAvatar.d.ts +14 -0
  755. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelectAvatar.d.ts.map +1 -0
  756. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelectTag.d.ts +15 -0
  757. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelectTag.d.ts.map +1 -0
  758. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemNavigate.d.ts +11 -0
  759. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemNavigate.d.ts.map +1 -0
  760. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelect.d.ts +29 -0
  761. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelect.d.ts.map +1 -0
  762. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectAvatar.d.ts +16 -0
  763. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectAvatar.d.ts.map +1 -0
  764. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectColor.d.ts +17 -0
  765. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectColor.d.ts.map +1 -0
  766. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectTag.d.ts +17 -0
  767. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectTag.d.ts.map +1 -0
  768. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSuggestion.d.ts +13 -0
  769. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSuggestion.d.ts.map +1 -0
  770. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemToggle.d.ts +16 -0
  771. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemToggle.d.ts.map +1 -0
  772. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/index.d.ts +16 -0
  773. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/index.d.ts.map +1 -0
  774. package/dist/vendor/twenty-ui/navigation/menu/menu-item/index.d.ts +5 -0
  775. package/dist/vendor/twenty-ui/navigation/menu/menu-item/index.d.ts.map +1 -0
  776. package/dist/vendor/twenty-ui/navigation/menu/menu-item/internals/components/MenuItemLeftContent.d.ts +17 -0
  777. package/dist/vendor/twenty-ui/navigation/menu/menu-item/internals/components/MenuItemLeftContent.d.ts.map +1 -0
  778. package/dist/vendor/twenty-ui/navigation/menu/menu-item/internals/components/StyledMenuItemBase.d.ts +64 -0
  779. package/dist/vendor/twenty-ui/navigation/menu/menu-item/internals/components/StyledMenuItemBase.d.ts.map +1 -0
  780. package/dist/vendor/twenty-ui/navigation/menu/menu-item/types/MenuItemAccent.d.ts +2 -0
  781. package/dist/vendor/twenty-ui/navigation/menu/menu-item/types/MenuItemAccent.d.ts.map +1 -0
  782. package/dist/vendor/twenty-ui/navigation/navigation-bar/components/NavigationBar.d.ts +13 -0
  783. package/dist/vendor/twenty-ui/navigation/navigation-bar/components/NavigationBar.d.ts.map +1 -0
  784. package/dist/vendor/twenty-ui/navigation/navigation-bar/components/NavigationBarItem.d.ts +10 -0
  785. package/dist/vendor/twenty-ui/navigation/navigation-bar/components/NavigationBarItem.d.ts.map +1 -0
  786. package/dist/vendor/twenty-ui/navigation/notification-counter/components/NotificationCounter.d.ts +8 -0
  787. package/dist/vendor/twenty-ui/navigation/notification-counter/components/NotificationCounter.d.ts.map +1 -0
  788. package/dist/vendor/twenty-ui/navigation.cjs +42 -0
  789. package/dist/vendor/twenty-ui/navigation.mjs +887 -0
  790. package/dist/vendor/twenty-ui/style.css +1 -0
  791. package/dist/vendor/twenty-ui/testing/ComponentStorybookLayout.d.ts +9 -0
  792. package/dist/vendor/twenty-ui/testing/ComponentStorybookLayout.d.ts.map +1 -0
  793. package/dist/vendor/twenty-ui/testing/decorators/CatalogDecorator.d.ts +18 -0
  794. package/dist/vendor/twenty-ui/testing/decorators/CatalogDecorator.d.ts.map +1 -0
  795. package/dist/vendor/twenty-ui/testing/decorators/ComponentDecorator.d.ts +4 -0
  796. package/dist/vendor/twenty-ui/testing/decorators/ComponentDecorator.d.ts.map +1 -0
  797. package/dist/vendor/twenty-ui/testing/decorators/ComponentWithRouterDecorator.d.ts +11 -0
  798. package/dist/vendor/twenty-ui/testing/decorators/ComponentWithRouterDecorator.d.ts.map +1 -0
  799. package/dist/vendor/twenty-ui/testing/decorators/RecoilRootDecorator.d.ts +4 -0
  800. package/dist/vendor/twenty-ui/testing/decorators/RecoilRootDecorator.d.ts.map +1 -0
  801. package/dist/vendor/twenty-ui/testing/decorators/RouterDecorator.d.ts +4 -0
  802. package/dist/vendor/twenty-ui/testing/decorators/RouterDecorator.d.ts.map +1 -0
  803. package/dist/vendor/twenty-ui/testing/index.d.ts +11 -0
  804. package/dist/vendor/twenty-ui/testing/index.d.ts.map +1 -0
  805. package/dist/vendor/twenty-ui/testing/mocks/avatarUrlMock.d.ts +2 -0
  806. package/dist/vendor/twenty-ui/testing/mocks/avatarUrlMock.d.ts.map +1 -0
  807. package/dist/vendor/twenty-ui/testing/types/CatalogStory.d.ts +18 -0
  808. package/dist/vendor/twenty-ui/testing/types/CatalogStory.d.ts.map +1 -0
  809. package/dist/vendor/twenty-ui/testing.cjs +3 -0
  810. package/dist/vendor/twenty-ui/testing.mjs +156 -0
  811. package/dist/vendor/twenty-ui/theme/constants/AccentDark.d.ts +21 -0
  812. package/dist/vendor/twenty-ui/theme/constants/AccentDark.d.ts.map +1 -0
  813. package/dist/vendor/twenty-ui/theme/constants/AccentLight.d.ts +21 -0
  814. package/dist/vendor/twenty-ui/theme/constants/AccentLight.d.ts.map +1 -0
  815. package/dist/vendor/twenty-ui/theme/constants/Animation.d.ts +10 -0
  816. package/dist/vendor/twenty-ui/theme/constants/Animation.d.ts.map +1 -0
  817. package/dist/vendor/twenty-ui/theme/constants/BackgroundDark.d.ts +30 -0
  818. package/dist/vendor/twenty-ui/theme/constants/BackgroundDark.d.ts.map +1 -0
  819. package/dist/vendor/twenty-ui/theme/constants/BackgroundLight.d.ts +30 -0
  820. package/dist/vendor/twenty-ui/theme/constants/BackgroundLight.d.ts.map +1 -0
  821. package/dist/vendor/twenty-ui/theme/constants/BlurDark.d.ts +6 -0
  822. package/dist/vendor/twenty-ui/theme/constants/BlurDark.d.ts.map +1 -0
  823. package/dist/vendor/twenty-ui/theme/constants/BlurLight.d.ts +6 -0
  824. package/dist/vendor/twenty-ui/theme/constants/BlurLight.d.ts.map +1 -0
  825. package/dist/vendor/twenty-ui/theme/constants/BorderCommon.d.ts +12 -0
  826. package/dist/vendor/twenty-ui/theme/constants/BorderCommon.d.ts.map +1 -0
  827. package/dist/vendor/twenty-ui/theme/constants/BorderDark.d.ts +22 -0
  828. package/dist/vendor/twenty-ui/theme/constants/BorderDark.d.ts.map +1 -0
  829. package/dist/vendor/twenty-ui/theme/constants/BorderLight.d.ts +22 -0
  830. package/dist/vendor/twenty-ui/theme/constants/BorderLight.d.ts.map +1 -0
  831. package/dist/vendor/twenty-ui/theme/constants/BoxShadowDark.d.ts +8 -0
  832. package/dist/vendor/twenty-ui/theme/constants/BoxShadowDark.d.ts.map +1 -0
  833. package/dist/vendor/twenty-ui/theme/constants/BoxShadowLight.d.ts +8 -0
  834. package/dist/vendor/twenty-ui/theme/constants/BoxShadowLight.d.ts.map +1 -0
  835. package/dist/vendor/twenty-ui/theme/constants/CodeDark.d.ts +13 -0
  836. package/dist/vendor/twenty-ui/theme/constants/CodeDark.d.ts.map +1 -0
  837. package/dist/vendor/twenty-ui/theme/constants/CodeLight.d.ts +13 -0
  838. package/dist/vendor/twenty-ui/theme/constants/CodeLight.d.ts.map +1 -0
  839. package/dist/vendor/twenty-ui/theme/constants/ColorsDark.d.ts +750 -0
  840. package/dist/vendor/twenty-ui/theme/constants/ColorsDark.d.ts.map +1 -0
  841. package/dist/vendor/twenty-ui/theme/constants/ColorsLight.d.ts +750 -0
  842. package/dist/vendor/twenty-ui/theme/constants/ColorsLight.d.ts.map +1 -0
  843. package/dist/vendor/twenty-ui/theme/constants/FontCommon.d.ts +18 -0
  844. package/dist/vendor/twenty-ui/theme/constants/FontCommon.d.ts.map +1 -0
  845. package/dist/vendor/twenty-ui/theme/constants/FontDark.d.ts +27 -0
  846. package/dist/vendor/twenty-ui/theme/constants/FontDark.d.ts.map +1 -0
  847. package/dist/vendor/twenty-ui/theme/constants/FontLight.d.ts +27 -0
  848. package/dist/vendor/twenty-ui/theme/constants/FontLight.d.ts.map +1 -0
  849. package/dist/vendor/twenty-ui/theme/constants/GrayScaleDark.d.ts +15 -0
  850. package/dist/vendor/twenty-ui/theme/constants/GrayScaleDark.d.ts.map +1 -0
  851. package/dist/vendor/twenty-ui/theme/constants/GrayScaleDarkAlpha.d.ts +15 -0
  852. package/dist/vendor/twenty-ui/theme/constants/GrayScaleDarkAlpha.d.ts.map +1 -0
  853. package/dist/vendor/twenty-ui/theme/constants/GrayScaleLight.d.ts +15 -0
  854. package/dist/vendor/twenty-ui/theme/constants/GrayScaleLight.d.ts.map +1 -0
  855. package/dist/vendor/twenty-ui/theme/constants/GrayScaleLightAlpha.d.ts +15 -0
  856. package/dist/vendor/twenty-ui/theme/constants/GrayScaleLightAlpha.d.ts.map +1 -0
  857. package/dist/vendor/twenty-ui/theme/constants/HoverBackground.d.ts +2 -0
  858. package/dist/vendor/twenty-ui/theme/constants/HoverBackground.d.ts.map +1 -0
  859. package/dist/vendor/twenty-ui/theme/constants/Icon.d.ts +14 -0
  860. package/dist/vendor/twenty-ui/theme/constants/Icon.d.ts.map +1 -0
  861. package/dist/vendor/twenty-ui/theme/constants/IllustrationIconDark.d.ts +11 -0
  862. package/dist/vendor/twenty-ui/theme/constants/IllustrationIconDark.d.ts.map +1 -0
  863. package/dist/vendor/twenty-ui/theme/constants/IllustrationIconLight.d.ts +11 -0
  864. package/dist/vendor/twenty-ui/theme/constants/IllustrationIconLight.d.ts.map +1 -0
  865. package/dist/vendor/twenty-ui/theme/constants/MainColorNames.d.ts +5 -0
  866. package/dist/vendor/twenty-ui/theme/constants/MainColorNames.d.ts.map +1 -0
  867. package/dist/vendor/twenty-ui/theme/constants/MainColorsDark.d.ts +28 -0
  868. package/dist/vendor/twenty-ui/theme/constants/MainColorsDark.d.ts.map +1 -0
  869. package/dist/vendor/twenty-ui/theme/constants/MainColorsLight.d.ts +28 -0
  870. package/dist/vendor/twenty-ui/theme/constants/MainColorsLight.d.ts.map +1 -0
  871. package/dist/vendor/twenty-ui/theme/constants/MobileViewport.d.ts +2 -0
  872. package/dist/vendor/twenty-ui/theme/constants/MobileViewport.d.ts.map +1 -0
  873. package/dist/vendor/twenty-ui/theme/constants/Modal.d.ts +9 -0
  874. package/dist/vendor/twenty-ui/theme/constants/Modal.d.ts.map +1 -0
  875. package/dist/vendor/twenty-ui/theme/constants/Rgba.d.ts +2 -0
  876. package/dist/vendor/twenty-ui/theme/constants/Rgba.d.ts.map +1 -0
  877. package/dist/vendor/twenty-ui/theme/constants/SecondaryColorsDark.d.ts +363 -0
  878. package/dist/vendor/twenty-ui/theme/constants/SecondaryColorsDark.d.ts.map +1 -0
  879. package/dist/vendor/twenty-ui/theme/constants/SecondaryColorsLight.d.ts +363 -0
  880. package/dist/vendor/twenty-ui/theme/constants/SecondaryColorsLight.d.ts.map +1 -0
  881. package/dist/vendor/twenty-ui/theme/constants/SnackBarDark.d.ts +23 -0
  882. package/dist/vendor/twenty-ui/theme/constants/SnackBarDark.d.ts.map +1 -0
  883. package/dist/vendor/twenty-ui/theme/constants/SnackBarLight.d.ts +23 -0
  884. package/dist/vendor/twenty-ui/theme/constants/SnackBarLight.d.ts.map +1 -0
  885. package/dist/vendor/twenty-ui/theme/constants/TagDark.d.ts +67 -0
  886. package/dist/vendor/twenty-ui/theme/constants/TagDark.d.ts.map +1 -0
  887. package/dist/vendor/twenty-ui/theme/constants/TagLight.d.ts +67 -0
  888. package/dist/vendor/twenty-ui/theme/constants/TagLight.d.ts.map +1 -0
  889. package/dist/vendor/twenty-ui/theme/constants/Text.d.ts +12 -0
  890. package/dist/vendor/twenty-ui/theme/constants/Text.d.ts.map +1 -0
  891. package/dist/vendor/twenty-ui/theme/constants/TextInputStyle.d.ts +6 -0
  892. package/dist/vendor/twenty-ui/theme/constants/TextInputStyle.d.ts.map +1 -0
  893. package/dist/vendor/twenty-ui/theme/constants/ThemeCommon.d.ts +57 -0
  894. package/dist/vendor/twenty-ui/theme/constants/ThemeCommon.d.ts.map +1 -0
  895. package/dist/vendor/twenty-ui/theme/constants/ThemeDark.d.ts +4 -0
  896. package/dist/vendor/twenty-ui/theme/constants/ThemeDark.d.ts.map +1 -0
  897. package/dist/vendor/twenty-ui/theme/constants/ThemeLight.d.ts +1039 -0
  898. package/dist/vendor/twenty-ui/theme/constants/ThemeLight.d.ts.map +1 -0
  899. package/dist/vendor/twenty-ui/theme/constants/TransparentColorsDark.d.ts +363 -0
  900. package/dist/vendor/twenty-ui/theme/constants/TransparentColorsDark.d.ts.map +1 -0
  901. package/dist/vendor/twenty-ui/theme/constants/TransparentColorsLight.d.ts +363 -0
  902. package/dist/vendor/twenty-ui/theme/constants/TransparentColorsLight.d.ts.map +1 -0
  903. package/dist/vendor/twenty-ui/theme/index.d.ts +54 -0
  904. package/dist/vendor/twenty-ui/theme/index.d.ts.map +1 -0
  905. package/dist/vendor/twenty-ui/theme/provider/ThemeContextProvider.d.ts +11 -0
  906. package/dist/vendor/twenty-ui/theme/provider/ThemeContextProvider.d.ts.map +1 -0
  907. package/dist/vendor/twenty-ui/theme/provider/ThemeProvider.d.ts +10 -0
  908. package/dist/vendor/twenty-ui/theme/provider/ThemeProvider.d.ts.map +1 -0
  909. package/dist/vendor/twenty-ui/theme/types/ThemeType.d.ts +4 -0
  910. package/dist/vendor/twenty-ui/theme/types/ThemeType.d.ts.map +1 -0
  911. package/dist/vendor/twenty-ui/theme/utils/getNextThemeColor.d.ts +4 -0
  912. package/dist/vendor/twenty-ui/theme/utils/getNextThemeColor.d.ts.map +1 -0
  913. package/dist/vendor/twenty-ui/theme/utils/themeColorSchema.d.ts +30 -0
  914. package/dist/vendor/twenty-ui/theme/utils/themeColorSchema.d.ts.map +1 -0
  915. package/dist/vendor/twenty-ui/theme.cjs +1 -0
  916. package/dist/vendor/twenty-ui/theme.mjs +1223 -0
  917. package/dist/vendor/twenty-ui/themeColorSchema-CgAr-Bzv.js +6 -0
  918. package/dist/vendor/twenty-ui/themeColorSchema-DSPsU2O5.cjs +1 -0
  919. package/dist/vendor/twenty-ui/useIsMobile-DqVdogVd.js +13 -0
  920. package/dist/vendor/twenty-ui/useIsMobile-p7nY1Vab.cjs +1 -0
  921. package/dist/vendor/twenty-ui/useMouseDownNavigation-C_8Q5KFZ.cjs +1 -0
  922. package/dist/vendor/twenty-ui/useMouseDownNavigation-qpLZC7wJ.js +29 -0
  923. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedCircleLoading.d.ts +6 -0
  924. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedCircleLoading.d.ts.map +1 -0
  925. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedContainer.d.ts +6 -0
  926. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedContainer.d.ts.map +1 -0
  927. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedEaseIn.d.ts +9 -0
  928. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedEaseIn.d.ts.map +1 -0
  929. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedEaseInOut.d.ts +13 -0
  930. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedEaseInOut.d.ts.map +1 -0
  931. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedFadeOut.d.ts +12 -0
  932. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedFadeOut.d.ts.map +1 -0
  933. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedRotate.d.ts +10 -0
  934. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedRotate.d.ts.map +1 -0
  935. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedTextWord.d.ts +9 -0
  936. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedTextWord.d.ts.map +1 -0
  937. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedTranslation.d.ts +6 -0
  938. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedTranslation.d.ts.map +1 -0
  939. package/dist/vendor/twenty-ui/utilities/animation/index.d.ts +8 -0
  940. package/dist/vendor/twenty-ui/utilities/animation/index.d.ts.map +1 -0
  941. package/dist/vendor/twenty-ui/utilities/color/utils/getMainColorNameFromPaletteColorName.d.ts +4 -0
  942. package/dist/vendor/twenty-ui/utilities/color/utils/getMainColorNameFromPaletteColorName.d.ts.map +1 -0
  943. package/dist/vendor/twenty-ui/utilities/color/utils/stringToThemeColorP3String.d.ts +9 -0
  944. package/dist/vendor/twenty-ui/utilities/color/utils/stringToThemeColorP3String.d.ts.map +1 -0
  945. package/dist/vendor/twenty-ui/utilities/config.d.ts +2 -0
  946. package/dist/vendor/twenty-ui/utilities/config.d.ts.map +1 -0
  947. package/dist/vendor/twenty-ui/utilities/device/getOsControlSymbol.d.ts +2 -0
  948. package/dist/vendor/twenty-ui/utilities/device/getOsControlSymbol.d.ts.map +1 -0
  949. package/dist/vendor/twenty-ui/utilities/device/getOsShortcutSeparator.d.ts +2 -0
  950. package/dist/vendor/twenty-ui/utilities/device/getOsShortcutSeparator.d.ts.map +1 -0
  951. package/dist/vendor/twenty-ui/utilities/device/getUserDevice.d.ts +2 -0
  952. package/dist/vendor/twenty-ui/utilities/device/getUserDevice.d.ts.map +1 -0
  953. package/dist/vendor/twenty-ui/utilities/dimensions/components/AutogrowWrapper.d.ts +10 -0
  954. package/dist/vendor/twenty-ui/utilities/dimensions/components/AutogrowWrapper.d.ts.map +1 -0
  955. package/dist/vendor/twenty-ui/utilities/index.d.ts +26 -0
  956. package/dist/vendor/twenty-ui/utilities/index.d.ts.map +1 -0
  957. package/dist/vendor/twenty-ui/utilities/navigation/hooks/useMouseDownNavigation.d.ts +17 -0
  958. package/dist/vendor/twenty-ui/utilities/navigation/hooks/useMouseDownNavigation.d.ts.map +1 -0
  959. package/dist/vendor/twenty-ui/utilities/navigation/hooks/useResetLocationHash.d.ts +4 -0
  960. package/dist/vendor/twenty-ui/utilities/navigation/hooks/useResetLocationHash.d.ts.map +1 -0
  961. package/dist/vendor/twenty-ui/utilities/navigation/isNavigationModifierPressed.d.ts +4 -0
  962. package/dist/vendor/twenty-ui/utilities/navigation/isNavigationModifierPressed.d.ts.map +1 -0
  963. package/dist/vendor/twenty-ui/utilities/navigation/types/trigger-event.type.d.ts +2 -0
  964. package/dist/vendor/twenty-ui/utilities/navigation/types/trigger-event.type.d.ts.map +1 -0
  965. package/dist/vendor/twenty-ui/utilities/responsive/hooks/useIsMobile.d.ts +2 -0
  966. package/dist/vendor/twenty-ui/utilities/responsive/hooks/useIsMobile.d.ts.map +1 -0
  967. package/dist/vendor/twenty-ui/utilities/screen-size/hooks/useScreenSize.d.ts +5 -0
  968. package/dist/vendor/twenty-ui/utilities/screen-size/hooks/useScreenSize.d.ts.map +1 -0
  969. package/dist/vendor/twenty-ui/utilities/state/utils/createState.d.ts +8 -0
  970. package/dist/vendor/twenty-ui/utilities/state/utils/createState.d.ts.map +1 -0
  971. package/dist/vendor/twenty-ui/utilities/types/ClickOutsideAttributes.d.ts +5 -0
  972. package/dist/vendor/twenty-ui/utilities/types/ClickOutsideAttributes.d.ts.map +1 -0
  973. package/dist/vendor/twenty-ui/utilities/types/Nullable.d.ts +2 -0
  974. package/dist/vendor/twenty-ui/utilities/types/Nullable.d.ts.map +1 -0
  975. package/dist/vendor/twenty-ui/utilities/utils/getDisplayValueByUrlType.d.ts +9 -0
  976. package/dist/vendor/twenty-ui/utilities/utils/getDisplayValueByUrlType.d.ts.map +1 -0
  977. package/dist/vendor/twenty-ui/utilities.cjs +1 -0
  978. package/dist/vendor/twenty-ui/utilities.mjs +275 -0
  979. package/dist/vendor/twenty-ui/visibility-hidden-00WyuQUL.cjs +1 -0
  980. package/dist/vendor/twenty-ui/visibility-hidden-DANnDHvJ.js +5 -0
  981. package/package.json +42 -15
  982. package/dist/ObjectRecordGroupByDateGranularity-CtpRADP1-Bft-VMSh.mjs +0 -3151
  983. package/dist/ObjectRecordGroupByDateGranularity-CtpRADP1-Duv5iOeZ.js +0 -20
  984. package/dist/application/application-config.d.ts +0 -2
  985. package/dist/application/define-app.d.ts +0 -18
  986. package/dist/application/fields/field.decorator.d.ts +0 -3
  987. package/dist/application/fields/relation.decorator.d.ts +0 -28
  988. package/dist/application/functions/define-function.d.ts +0 -28
  989. package/dist/application/functions/function-config.d.ts +0 -9
  990. package/dist/application/index.d.ts +0 -19
  991. package/dist/application/objects/define-object.d.ts +0 -35
  992. package/dist/application/objects/object.decorator.d.ts +0 -4
  993. package/dist/application/objects/standard-object-ids.d.ts +0 -1
  994. package/dist/application/permission-flag-type.d.ts +0 -1
  995. package/dist/application/role-config.d.ts +0 -2
  996. package/dist/application/roles/define-role.d.ts +0 -26
  997. package/dist/cli/commands/app-add.command.d.ts +0 -13
  998. package/dist/cli/commands/app-dev.command.d.ts +0 -11
  999. package/dist/cli/commands/app-sync.command.d.ts +0 -7
  1000. package/dist/cli/commands/app.command.d.ts +0 -10
  1001. package/dist/cli/commands/auth.command.d.ts +0 -9
  1002. package/dist/cli/services/api.service.d.ts +0 -20
  1003. package/dist/cli/utils/config-loader.d.ts +0 -43
  1004. package/dist/cli/utils/display-entity-summary.d.ts +0 -2
  1005. package/dist/cli/utils/display-errors.d.ts +0 -2
  1006. package/dist/cli/utils/display-warnings.d.ts +0 -2
  1007. package/dist/cli/utils/get-function-base-file.d.ts +0 -4
  1008. package/dist/cli/utils/load-env-variables.d.ts +0 -2
  1009. package/dist/cli/utils/load-manifest.d.ts +0 -41
  1010. package/dist/cli/utils/validate-manifest.d.ts +0 -22
  1011. package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-BwpmSE4s.js +0 -1
  1012. package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-CtpRADP1.mjs +0 -500
  1013. package/dist/vendor/twenty-shared/RatingValues-B_wgYyso.js +0 -1
  1014. package/dist/vendor/twenty-shared/RatingValues-DNSj7xKA.mjs +0 -224
  1015. package/dist/vendor/twenty-shared/application/applicationManifestType.d.ts +0 -12
  1016. package/dist/vendor/twenty-shared/application/applicationManifestType.d.ts.map +0 -1
  1017. package/dist/vendor/twenty-shared/application/packageJsonType.d.ts +0 -14
  1018. package/dist/vendor/twenty-shared/application/packageJsonType.d.ts.map +0 -1
  1019. package/dist/vendor/twenty-shared/application/serverlessFunctionManifestType.d.ts.map +0 -1
  1020. package/dist/vendor/twenty-shared/isValidCountryCode-WBKj_GIR.js +0 -4
  1021. package/dist/vendor/twenty-shared/metadata/standard-object-ids.d.ts +0 -51
  1022. package/dist/vendor/twenty-shared/metadata/standard-object-ids.d.ts.map +0 -1
  1023. /package/dist/cli/{types/api-response.types.d.ts → utilities/api/api-response-type.d.ts} +0 -0
  1024. /package/dist/cli/{constants → utilities/config}/current-execution-directory.d.ts +0 -0
  1025. /package/dist/cli/{utils/convert-to-label.d.ts → utilities/entity/entity-label.d.ts} +0 -0
  1026. /package/dist/cli/{utils/get-role-base-file.d.ts → utilities/entity/entity-role-template.d.ts} +0 -0
  1027. /package/dist/cli/{utils/find-path-file.d.ts → utilities/file/file-find.d.ts} +0 -0
  1028. /package/dist/cli/{utils/format-path.d.ts → utilities/file/file-path.d.ts} +0 -0
  1029. /package/dist/cli/{utils/format-and-warn-ts-diagnostics.d.ts → utilities/typescript/typescript-diagnostics.d.ts} +0 -0
  1030. /package/dist/{application → sdk/common/types}/syncable-entity-options.type.d.ts +0 -0
  1031. /package/dist/{application → sdk}/fields/field-type.d.ts +0 -0
  1032. /package/dist/{application → sdk}/fields/on-delete-action.d.ts +0 -0
  1033. /package/dist/{application → sdk}/fields/relation-type.d.ts +0 -0
  1034. /package/dist/{application/functions → sdk/logic-functions}/triggers/cron-payload-type.d.ts +0 -0
  1035. /package/dist/{application/functions → sdk/logic-functions}/triggers/database-event-payload-type.d.ts +0 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"manifestType.d.ts","sourceRoot":"","sources":["../../src/application/manifestType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,OAAO,EAAE,MAAM,SAAS,CAAC;AACvC,OAAO,EAAE,KAAK,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAC7D,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,KAAK,sBAAsB,EAAE,MAAM,8BAA8B,CAAC;AAC3E,OAAO,EAAE,KAAK,qBAAqB,EAAE,MAAM,6BAA6B,CAAC;AACzE,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAC3D,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAEvD,MAAM,MAAM,QAAQ,GAAG;IACrB,WAAW,EAAE,mBAAmB,CAAC;IACjC,OAAO,EAAE,cAAc,EAAE,CAAC;IAC1B,MAAM,EAAE,aAAa,EAAE,CAAC;IACxB,cAAc,EAAE,qBAAqB,EAAE,CAAC;IACxC,eAAe,EAAE,sBAAsB,EAAE,CAAC;IAC1C,KAAK,EAAE,YAAY,EAAE,CAAC;IACtB,YAAY,EAAE,aAAa,EAAE,CAAC;IAC9B,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC"}
@@ -0,0 +1,5 @@
1
+ import { FieldMetadataType } from '../types';
2
+ import { FieldManifest } from './fieldManifestType';
3
+
4
+ export type ObjectFieldManifest<T extends FieldMetadataType = Exclude<FieldMetadataType, FieldMetadataType.RELATION>> = Omit<FieldManifest<T>, 'objectUniversalIdentifier'>;
5
+ //# sourceMappingURL=objectFieldManifest.type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"objectFieldManifest.type.d.ts","sourceRoot":"","sources":["../../src/application/objectFieldManifest.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAEjD,MAAM,MAAM,mBAAmB,CAC7B,CAAC,SAAS,iBAAiB,GAAG,OAAO,CACnC,iBAAiB,EACjB,iBAAiB,CAAC,QAAQ,CAC3B,IACC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,2BAA2B,CAAC,CAAC"}
@@ -1,5 +1,5 @@
1
+ import { ObjectFieldManifest } from './objectFieldManifest.type';
1
2
  import { SyncableEntityOptions } from './syncableEntityOptionsType';
2
- import { FieldManifest } from '.';
3
3
 
4
4
  export type ObjectManifest = SyncableEntityOptions & {
5
5
  nameSingular: string;
@@ -8,6 +8,6 @@ export type ObjectManifest = SyncableEntityOptions & {
8
8
  labelPlural: string;
9
9
  description?: string;
10
10
  icon?: string;
11
- fields: FieldManifest[];
11
+ fields: ObjectFieldManifest[];
12
12
  };
13
13
  //# sourceMappingURL=objectManifestType.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"objectManifestType.d.ts","sourceRoot":"","sources":["../../src/application/objectManifestType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,eAAe,CAAC;AACnD,OAAO,EAAE,KAAK,qBAAqB,EAAE,MAAM,yCAAyC,CAAC;AAErF,MAAM,MAAM,cAAc,GAAG,qBAAqB,GAAG;IACnD,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,aAAa,EAAE,CAAC;CACzB,CAAC"}
1
+ {"version":3,"file":"objectManifestType.d.ts","sourceRoot":"","sources":["../../src/application/objectManifestType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,qBAAqB,EAAE,MAAM,yCAAyC,CAAC;AACrF,OAAO,EAAE,KAAK,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAElF,MAAM,MAAM,cAAc,GAAG,qBAAqB,GAAG;IACnD,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,mBAAmB,EAAE,CAAC;CAC/B,CAAC"}
@@ -1,34 +1,19 @@
1
1
  import { SyncableEntityOptions } from './syncableEntityOptionsType';
2
2
  import { PermissionFlagType } from '../constants';
3
3
 
4
- type WithObjectIdentifier = {
4
+ type ObjectPermission = {
5
5
  objectUniversalIdentifier: string;
6
- objectNameSingular?: never;
7
- };
8
- type WithObjectName = {
9
- objectNameSingular: string;
10
- objectUniversalIdentifier?: never;
11
- };
12
- type BaseObjectPermission = {
13
6
  canReadObjectRecords?: boolean;
14
7
  canUpdateObjectRecords?: boolean;
15
8
  canSoftDeleteObjectRecords?: boolean;
16
9
  canDestroyObjectRecords?: boolean;
17
10
  };
18
- type ObjectPermission = (BaseObjectPermission & WithObjectIdentifier) | (BaseObjectPermission & WithObjectName);
19
- type WithFieldIdentifier = {
11
+ type FieldPermission = {
12
+ objectUniversalIdentifier: string;
20
13
  fieldUniversalIdentifier: string;
21
- fieldName?: never;
22
- };
23
- type WithFieldName = {
24
- fieldName: string;
25
- fieldUniversalIdentifier?: never;
26
- };
27
- type BaseFieldPermission = {
28
14
  canReadFieldValue?: boolean;
29
15
  canUpdateFieldValue?: boolean;
30
16
  };
31
- type FieldPermission = (BaseFieldPermission & WithObjectIdentifier & WithFieldIdentifier) | (BaseFieldPermission & WithObjectIdentifier & WithFieldName) | (BaseFieldPermission & WithObjectName & WithFieldIdentifier) | (BaseFieldPermission & WithObjectName & WithFieldName);
32
17
  export type RoleManifest = SyncableEntityOptions & {
33
18
  label: string;
34
19
  description?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"roleManifestType.d.ts","sourceRoot":"","sources":["../../src/application/roleManifestType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACtD,OAAO,EAAE,KAAK,qBAAqB,EAAE,MAAM,yCAAyC,CAAC;AAErF,KAAK,oBAAoB,GAAG;IAC1B,yBAAyB,EAAE,MAAM,CAAC;IAClC,kBAAkB,CAAC,EAAE,KAAK,CAAC;CAC5B,CAAC;AAEF,KAAK,cAAc,GAAG;IACpB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,yBAAyB,CAAC,EAAE,KAAK,CAAC;CACnC,CAAC;AAEF,KAAK,oBAAoB,GAAG;IAC1B,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,0BAA0B,CAAC,EAAE,OAAO,CAAC;IACrC,uBAAuB,CAAC,EAAE,OAAO,CAAC;CACnC,CAAC;AAEF,KAAK,gBAAgB,GACjB,CAAC,oBAAoB,GAAG,oBAAoB,CAAC,GAC7C,CAAC,oBAAoB,GAAG,cAAc,CAAC,CAAC;AAE5C,KAAK,mBAAmB,GAAG;IACzB,wBAAwB,EAAE,MAAM,CAAC;IACjC,SAAS,CAAC,EAAE,KAAK,CAAC;CACnB,CAAC;AAEF,KAAK,aAAa,GAAG;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,wBAAwB,CAAC,EAAE,KAAK,CAAC;CAClC,CAAC;AAEF,KAAK,mBAAmB,GAAG;IACzB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC/B,CAAC;AAEF,KAAK,eAAe,GAChB,CAAC,mBAAmB,GAAG,oBAAoB,GAAG,mBAAmB,CAAC,GAClE,CAAC,mBAAmB,GAAG,oBAAoB,GAAG,aAAa,CAAC,GAC5D,CAAC,mBAAmB,GAAG,cAAc,GAAG,mBAAmB,CAAC,GAC5D,CAAC,mBAAmB,GAAG,cAAc,GAAG,aAAa,CAAC,CAAC;AAE3D,MAAM,MAAM,YAAY,GAAG,qBAAqB,GAAG;IACjD,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,yBAAyB,CAAC,EAAE,OAAO,CAAC;IACpC,6BAA6B,CAAC,EAAE,OAAO,CAAC;IACxC,0BAA0B,CAAC,EAAE,OAAO,CAAC;IACrC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,iBAAiB,CAAC,EAAE,gBAAgB,EAAE,CAAC;IACvC,gBAAgB,CAAC,EAAE,eAAe,EAAE,CAAC;IACrC,eAAe,CAAC,EAAE,kBAAkB,EAAE,CAAC;CACxC,CAAC"}
1
+ {"version":3,"file":"roleManifestType.d.ts","sourceRoot":"","sources":["../../src/application/roleManifestType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,aAAa,CAAC;AACtD,OAAO,EAAE,KAAK,qBAAqB,EAAE,MAAM,yCAAyC,CAAC;AAErF,KAAK,gBAAgB,GAAG;IACtB,yBAAyB,EAAE,MAAM,CAAC;IAClC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,0BAA0B,CAAC,EAAE,OAAO,CAAC;IACrC,uBAAuB,CAAC,EAAE,OAAO,CAAC;CACnC,CAAC;AAEF,KAAK,eAAe,GAAG;IACrB,yBAAyB,EAAE,MAAM,CAAC;IAClC,wBAAwB,EAAE,MAAM,CAAC;IACjC,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC/B,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,qBAAqB,GAAG;IACjD,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,yBAAyB,CAAC,EAAE,OAAO,CAAC;IACpC,6BAA6B,CAAC,EAAE,OAAO,CAAC;IACxC,0BAA0B,CAAC,EAAE,OAAO,CAAC;IACrC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,iBAAiB,CAAC,EAAE,gBAAgB,EAAE,CAAC;IACvC,gBAAgB,CAAC,EAAE,eAAe,EAAE,CAAC;IACrC,eAAe,CAAC,EAAE,kBAAkB,EAAE,CAAC;CACxC,CAAC"}
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const _="TWENTY_API_KEY",A="TWENTY_API_URL";exports.DEFAULT_API_KEY_NAME=_;exports.DEFAULT_API_URL_NAME=A;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="public",t="TWENTY_API_KEY",A="TWENTY_API_URL",E="generated",T=".twenty/output";var _=(o=>(o.Object="object",o.Field="field",o.LogicFunction="logicFunction",o.FrontComponent="frontComponent",o.Role="role",o))(_||{});exports.ASSETS_DIR=e;exports.DEFAULT_API_KEY_NAME=t;exports.DEFAULT_API_URL_NAME=A;exports.GENERATED_DIR=E;exports.OUTPUT_DIR=T;exports.SyncableEntity=_;
@@ -1,5 +1,10 @@
1
- const _ = "TWENTY_API_KEY", A = "TWENTY_API_URL";
1
+ const t = "public", e = "TWENTY_API_KEY", n = "TWENTY_API_URL", A = "generated", T = ".twenty/output";
2
+ var _ = /* @__PURE__ */ ((o) => (o.Object = "object", o.Field = "field", o.LogicFunction = "logicFunction", o.FrontComponent = "frontComponent", o.Role = "role", o))(_ || {});
2
3
  export {
3
- _ as DEFAULT_API_KEY_NAME,
4
- A as DEFAULT_API_URL_NAME
4
+ t as ASSETS_DIR,
5
+ e as DEFAULT_API_KEY_NAME,
6
+ n as DEFAULT_API_URL_NAME,
7
+ A as GENERATED_DIR,
8
+ T as OUTPUT_DIR,
9
+ _ as SyncableEntity
5
10
  };
@@ -0,0 +1,2 @@
1
+ export declare const DOCUMENTATION_BASE_URL = "https://docs.twenty.com";
2
+ //# sourceMappingURL=DocumentationBaseUrl.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DocumentationBaseUrl.d.ts","sourceRoot":"","sources":["../../src/constants/DocumentationBaseUrl.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB,4BAA4B,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const DOCUMENTATION_DEFAULT_LANGUAGE: "en";
2
+ //# sourceMappingURL=DocumentationDefaultLanguage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DocumentationDefaultLanguage.d.ts","sourceRoot":"","sources":["../../src/constants/DocumentationDefaultLanguage.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,8BAA8B,EAAG,IAAa,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const DOCUMENTATION_DEFAULT_PATH: "/user-guide/introduction";
2
+ //# sourceMappingURL=DocumentationDefaultPath.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DocumentationDefaultPath.d.ts","sourceRoot":"","sources":["../../src/constants/DocumentationDefaultPath.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,0BAA0B,4BACM,CAAC"}
@@ -0,0 +1,165 @@
1
+ export declare const DOCUMENTATION_PATHS: {
2
+ readonly DEVELOPERS_CONTRIBUTE_CAPABILITIES_BACKEND_DEVELOPMENT_BEST_PRACTICES_SERVER: "/developers/contribute/capabilities/backend-development/best-practices-server";
3
+ readonly DEVELOPERS_CONTRIBUTE_CAPABILITIES_BACKEND_DEVELOPMENT_CUSTOM_OBJECTS: "/developers/contribute/capabilities/backend-development/custom-objects";
4
+ readonly DEVELOPERS_CONTRIBUTE_CAPABILITIES_BACKEND_DEVELOPMENT_FEATURE_FLAGS: "/developers/contribute/capabilities/backend-development/feature-flags";
5
+ readonly DEVELOPERS_CONTRIBUTE_CAPABILITIES_BACKEND_DEVELOPMENT_FOLDER_ARCHITECTURE_SERVER: "/developers/contribute/capabilities/backend-development/folder-architecture-server";
6
+ readonly DEVELOPERS_CONTRIBUTE_CAPABILITIES_BACKEND_DEVELOPMENT_QUEUE: "/developers/contribute/capabilities/backend-development/queue";
7
+ readonly DEVELOPERS_CONTRIBUTE_CAPABILITIES_BACKEND_DEVELOPMENT_SERVER_COMMANDS: "/developers/contribute/capabilities/backend-development/server-commands";
8
+ readonly DEVELOPERS_CONTRIBUTE_CAPABILITIES_BACKEND_DEVELOPMENT_ZAPIER: "/developers/contribute/capabilities/backend-development/zapier";
9
+ readonly DEVELOPERS_CONTRIBUTE_CAPABILITIES_BUG_AND_REQUESTS: "/developers/contribute/capabilities/bug-and-requests";
10
+ readonly DEVELOPERS_CONTRIBUTE_CAPABILITIES_FRONTEND_DEVELOPMENT_BEST_PRACTICES_FRONT: "/developers/contribute/capabilities/frontend-development/best-practices-front";
11
+ readonly DEVELOPERS_CONTRIBUTE_CAPABILITIES_FRONTEND_DEVELOPMENT_FOLDER_ARCHITECTURE_FRONT: "/developers/contribute/capabilities/frontend-development/folder-architecture-front";
12
+ readonly DEVELOPERS_CONTRIBUTE_CAPABILITIES_FRONTEND_DEVELOPMENT_FRONTEND_COMMANDS: "/developers/contribute/capabilities/frontend-development/frontend-commands";
13
+ readonly DEVELOPERS_CONTRIBUTE_CAPABILITIES_FRONTEND_DEVELOPMENT_HOTKEYS: "/developers/contribute/capabilities/frontend-development/hotkeys";
14
+ readonly DEVELOPERS_CONTRIBUTE_CAPABILITIES_FRONTEND_DEVELOPMENT_STORYBOOK: "/developers/contribute/capabilities/frontend-development/storybook";
15
+ readonly DEVELOPERS_CONTRIBUTE_CAPABILITIES_FRONTEND_DEVELOPMENT_STYLE_GUIDE: "/developers/contribute/capabilities/frontend-development/style-guide";
16
+ readonly DEVELOPERS_CONTRIBUTE_CAPABILITIES_FRONTEND_DEVELOPMENT_WORK_WITH_FIGMA: "/developers/contribute/capabilities/frontend-development/work-with-figma";
17
+ readonly DEVELOPERS_CONTRIBUTE_CAPABILITIES_LOCAL_SETUP: "/developers/contribute/capabilities/local-setup";
18
+ readonly DEVELOPERS_CONTRIBUTE_CONTRIBUTE: "/developers/contribute/contribute";
19
+ readonly DEVELOPERS_EXTEND_CAPABILITIES_APIS: "/developers/extend/capabilities/apis";
20
+ readonly DEVELOPERS_EXTEND_CAPABILITIES_APPS: "/developers/extend/capabilities/apps";
21
+ readonly DEVELOPERS_EXTEND_CAPABILITIES_WEBHOOKS: "/developers/extend/capabilities/webhooks";
22
+ readonly DEVELOPERS_EXTEND_EXTEND: "/developers/extend/extend";
23
+ readonly DEVELOPERS_INTRODUCTION: "/developers/introduction";
24
+ readonly DEVELOPERS_SELF_HOST_CAPABILITIES_CLOUD_PROVIDERS: "/developers/self-host/capabilities/cloud-providers";
25
+ readonly DEVELOPERS_SELF_HOST_CAPABILITIES_DOCKER_COMPOSE: "/developers/self-host/capabilities/docker-compose";
26
+ readonly DEVELOPERS_SELF_HOST_CAPABILITIES_SETUP: "/developers/self-host/capabilities/setup";
27
+ readonly DEVELOPERS_SELF_HOST_CAPABILITIES_TROUBLESHOOTING: "/developers/self-host/capabilities/troubleshooting";
28
+ readonly DEVELOPERS_SELF_HOST_CAPABILITIES_UPGRADE_GUIDE: "/developers/self-host/capabilities/upgrade-guide";
29
+ readonly DEVELOPERS_SELF_HOST_SELF_HOST: "/developers/self-host/self-host";
30
+ readonly TWENTY_UI_DISPLAY_APP_TOOLTIP: "/twenty-ui/display/app-tooltip";
31
+ readonly TWENTY_UI_DISPLAY_CHECKMARK: "/twenty-ui/display/checkmark";
32
+ readonly TWENTY_UI_DISPLAY_CHIP: "/twenty-ui/display/chip";
33
+ readonly TWENTY_UI_DISPLAY_ICONS: "/twenty-ui/display/icons";
34
+ readonly TWENTY_UI_DISPLAY_SOON_PILL: "/twenty-ui/display/soon-pill";
35
+ readonly TWENTY_UI_DISPLAY_TAG: "/twenty-ui/display/tag";
36
+ readonly TWENTY_UI_INPUT_BLOCK_EDITOR: "/twenty-ui/input/block-editor";
37
+ readonly TWENTY_UI_INPUT_BUTTONS: "/twenty-ui/input/buttons";
38
+ readonly TWENTY_UI_INPUT_CHECKBOX: "/twenty-ui/input/checkbox";
39
+ readonly TWENTY_UI_INPUT_COLOR_SCHEME: "/twenty-ui/input/color-scheme";
40
+ readonly TWENTY_UI_INPUT_ICON_PICKER: "/twenty-ui/input/icon-picker";
41
+ readonly TWENTY_UI_INPUT_IMAGE_INPUT: "/twenty-ui/input/image-input";
42
+ readonly TWENTY_UI_INPUT_RADIO: "/twenty-ui/input/radio";
43
+ readonly TWENTY_UI_INPUT_SELECT: "/twenty-ui/input/select";
44
+ readonly TWENTY_UI_INPUT_TEXT: "/twenty-ui/input/text";
45
+ readonly TWENTY_UI_INPUT_TOGGLE: "/twenty-ui/input/toggle";
46
+ readonly TWENTY_UI_INTRODUCTION: "/twenty-ui/introduction";
47
+ readonly TWENTY_UI_NAVIGATION: "/twenty-ui/navigation";
48
+ readonly TWENTY_UI_NAVIGATION_BREADCRUMB: "/twenty-ui/navigation/breadcrumb";
49
+ readonly TWENTY_UI_NAVIGATION_LINKS: "/twenty-ui/navigation/links";
50
+ readonly TWENTY_UI_NAVIGATION_MENU_ITEM: "/twenty-ui/navigation/menu-item";
51
+ readonly TWENTY_UI_NAVIGATION_NAVIGATION_BAR: "/twenty-ui/navigation/navigation-bar";
52
+ readonly TWENTY_UI_NAVIGATION_STEP_BAR: "/twenty-ui/navigation/step-bar";
53
+ readonly TWENTY_UI_PROGRESS_BAR: "/twenty-ui/progress-bar";
54
+ readonly USER_GUIDE_AI_CAPABILITIES_AI_AGENTS: "/user-guide/ai/capabilities/ai-agents";
55
+ readonly USER_GUIDE_AI_CAPABILITIES_AI_CHATBOT: "/user-guide/ai/capabilities/ai-chatbot";
56
+ readonly USER_GUIDE_AI_CAPABILITIES_PERMISSIONS_ACCESS_CONTROL: "/user-guide/ai/capabilities/permissions-access-control";
57
+ readonly USER_GUIDE_AI_HOW_TOS_AI_FAQ: "/user-guide/ai/how-tos/ai-faq";
58
+ readonly USER_GUIDE_AI_OVERVIEW: "/user-guide/ai/overview";
59
+ readonly USER_GUIDE_BILLING_CAPABILITIES_PRICING_PLANS: "/user-guide/billing/capabilities/pricing-plans";
60
+ readonly USER_GUIDE_BILLING_CAPABILITIES_WORKFLOW_CREDITS: "/user-guide/billing/capabilities/workflow-credits";
61
+ readonly USER_GUIDE_BILLING_HOW_TOS_BILLING_FAQ: "/user-guide/billing/how-tos/billing-faq";
62
+ readonly USER_GUIDE_BILLING_OVERVIEW: "/user-guide/billing/overview";
63
+ readonly USER_GUIDE_CALENDAR_EMAILS_CAPABILITIES_CALENDAR: "/user-guide/calendar-emails/capabilities/calendar";
64
+ readonly USER_GUIDE_CALENDAR_EMAILS_CAPABILITIES_MAILBOX: "/user-guide/calendar-emails/capabilities/mailbox";
65
+ readonly USER_GUIDE_CALENDAR_EMAILS_HOW_TOS_CAN_I_BOOK_MEETINGS_FROM_TWENTY: "/user-guide/calendar-emails/how-tos/can-i-book-meetings-from-twenty";
66
+ readonly USER_GUIDE_CALENDAR_EMAILS_HOW_TOS_CAN_I_SEND_EMAILS_FROM_TWENTY: "/user-guide/calendar-emails/how-tos/can-i-send-emails-from-twenty";
67
+ readonly 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";
68
+ readonly USER_GUIDE_CALENDAR_EMAILS_HOW_TOS_CONNECT_SEVERAL_MAILBOXES_PER_USER: "/user-guide/calendar-emails/how-tos/connect-several-mailboxes-per-user";
69
+ readonly USER_GUIDE_CALENDAR_EMAILS_HOW_TOS_I_DONT_SEE_EMAILS_ON_RECORDS: "/user-guide/calendar-emails/how-tos/i-dont-see-emails-on-records";
70
+ readonly USER_GUIDE_CALENDAR_EMAILS_HOW_TOS_LIMIT_EMAILS_IMPORTED: "/user-guide/calendar-emails/how-tos/limit-emails-imported";
71
+ readonly USER_GUIDE_CALENDAR_EMAILS_OVERVIEW: "/user-guide/calendar-emails/overview";
72
+ readonly USER_GUIDE_DASHBOARDS_CAPABILITIES_CHART_SETTINGS: "/user-guide/dashboards/capabilities/chart-settings";
73
+ readonly USER_GUIDE_DASHBOARDS_CAPABILITIES_DASHBOARDS: "/user-guide/dashboards/capabilities/dashboards";
74
+ readonly USER_GUIDE_DASHBOARDS_CAPABILITIES_WIDGETS: "/user-guide/dashboards/capabilities/widgets";
75
+ readonly USER_GUIDE_DASHBOARDS_HOW_TOS_DASHBOARDS_FAQ: "/user-guide/dashboards/how-tos/dashboards-faq";
76
+ readonly USER_GUIDE_DASHBOARDS_HOW_TOS_WIDGET_FAQ: "/user-guide/dashboards/how-tos/widget-faq";
77
+ readonly USER_GUIDE_DASHBOARDS_OVERVIEW: "/user-guide/dashboards/overview";
78
+ readonly USER_GUIDE_DATA_MIGRATION_CAPABILITIES_ERROR_HANDLING: "/user-guide/data-migration/capabilities/error-handling";
79
+ readonly USER_GUIDE_DATA_MIGRATION_CAPABILITIES_FIELD_MAPPING: "/user-guide/data-migration/capabilities/field-mapping";
80
+ readonly USER_GUIDE_DATA_MIGRATION_CAPABILITIES_FILE_FORMATS: "/user-guide/data-migration/capabilities/file-formats";
81
+ readonly USER_GUIDE_DATA_MIGRATION_CAPABILITIES_IMPORT_RELATIONS: "/user-guide/data-migration/capabilities/import-relations";
82
+ readonly USER_GUIDE_DATA_MIGRATION_CAPABILITIES_UNIQUENESS_CONSTRAINTS: "/user-guide/data-migration/capabilities/uniqueness-constraints";
83
+ readonly USER_GUIDE_DATA_MIGRATION_HOW_TOS_EXPORT_YOUR_DATA: "/user-guide/data-migration/how-tos/export-your-data";
84
+ readonly USER_GUIDE_DATA_MIGRATION_HOW_TOS_FIX_IMPORT_ERRORS: "/user-guide/data-migration/how-tos/fix-import-errors";
85
+ readonly USER_GUIDE_DATA_MIGRATION_HOW_TOS_IMPORT_COMPANIES_VIA_CSV: "/user-guide/data-migration/how-tos/import-companies-via-csv";
86
+ readonly USER_GUIDE_DATA_MIGRATION_HOW_TOS_IMPORT_CONTACTS_VIA_CSV: "/user-guide/data-migration/how-tos/import-contacts-via-csv";
87
+ readonly USER_GUIDE_DATA_MIGRATION_HOW_TOS_IMPORT_DATA_VIA_API: "/user-guide/data-migration/how-tos/import-data-via-api";
88
+ readonly USER_GUIDE_DATA_MIGRATION_HOW_TOS_IMPORT_RELATIONS_BETWEEN_OBJECTS_VIA_CSV: "/user-guide/data-migration/how-tos/import-relations-between-objects-via-csv";
89
+ readonly USER_GUIDE_DATA_MIGRATION_HOW_TOS_MIGRATING_FROM_OTHER_CRMS: "/user-guide/data-migration/how-tos/migrating-from-other-crms";
90
+ readonly USER_GUIDE_DATA_MIGRATION_HOW_TOS_MIGRATING_FROM_SELF_HOSTED_TO_CLOUD: "/user-guide/data-migration/how-tos/migrating-from-self-hosted-to-cloud";
91
+ readonly USER_GUIDE_DATA_MIGRATION_HOW_TOS_PREPARE_YOUR_CSV_FILES: "/user-guide/data-migration/how-tos/prepare-your-csv-files";
92
+ readonly USER_GUIDE_DATA_MIGRATION_HOW_TOS_UPDATE_EXISTING_RECORDS_VIA_IMPORT: "/user-guide/data-migration/how-tos/update-existing-records-via-import";
93
+ readonly USER_GUIDE_DATA_MIGRATION_OVERVIEW: "/user-guide/data-migration/overview";
94
+ readonly USER_GUIDE_DATA_MODEL_CAPABILITIES_FIELDS: "/user-guide/data-model/capabilities/fields";
95
+ readonly USER_GUIDE_DATA_MODEL_CAPABILITIES_OBJECTS: "/user-guide/data-model/capabilities/objects";
96
+ readonly USER_GUIDE_DATA_MODEL_CAPABILITIES_RELATION_FIELDS: "/user-guide/data-model/capabilities/relation-fields";
97
+ readonly USER_GUIDE_DATA_MODEL_HOW_TOS_CREATE_CUSTOM_FIELDS: "/user-guide/data-model/how-tos/create-custom-fields";
98
+ readonly USER_GUIDE_DATA_MODEL_HOW_TOS_CREATE_CUSTOM_OBJECTS: "/user-guide/data-model/how-tos/create-custom-objects";
99
+ readonly USER_GUIDE_DATA_MODEL_HOW_TOS_CREATE_MANY_TO_MANY_RELATIONS: "/user-guide/data-model/how-tos/create-many-to-many-relations";
100
+ readonly USER_GUIDE_DATA_MODEL_HOW_TOS_CREATE_RELATION_FIELDS: "/user-guide/data-model/how-tos/create-relation-fields";
101
+ readonly USER_GUIDE_DATA_MODEL_HOW_TOS_CUSTOMIZE_YOUR_DATA_MODEL: "/user-guide/data-model/how-tos/customize-your-data-model";
102
+ readonly USER_GUIDE_DATA_MODEL_HOW_TOS_DATA_MODEL_FAQ: "/user-guide/data-model/how-tos/data-model-faq";
103
+ readonly USER_GUIDE_DATA_MODEL_OVERVIEW: "/user-guide/data-model/overview";
104
+ readonly USER_GUIDE_GETTING_STARTED_CAPABILITIES_GLOSSARY: "/user-guide/getting-started/capabilities/glossary";
105
+ readonly USER_GUIDE_GETTING_STARTED_CAPABILITIES_IMPLEMENTATION_SERVICES: "/user-guide/getting-started/capabilities/implementation-services";
106
+ readonly USER_GUIDE_GETTING_STARTED_CAPABILITIES_WHAT_IS_TWENTY: "/user-guide/getting-started/capabilities/what-is-twenty";
107
+ readonly USER_GUIDE_GETTING_STARTED_HOW_TOS_CONFIGURE_YOUR_WORKSPACE: "/user-guide/getting-started/how-tos/configure-your-workspace";
108
+ readonly USER_GUIDE_GETTING_STARTED_HOW_TOS_CREATE_WORKSPACE: "/user-guide/getting-started/how-tos/create-workspace";
109
+ readonly USER_GUIDE_GETTING_STARTED_HOW_TOS_NAVIGATE_AROUND_TWENTY: "/user-guide/getting-started/how-tos/navigate-around-twenty";
110
+ readonly USER_GUIDE_INTRODUCTION: "/user-guide/introduction";
111
+ readonly USER_GUIDE_PERMISSIONS_ACCESS_CAPABILITIES_PERMISSIONS: "/user-guide/permissions-access/capabilities/permissions";
112
+ readonly USER_GUIDE_PERMISSIONS_ACCESS_CAPABILITIES_SSO_CONFIGURATION: "/user-guide/permissions-access/capabilities/sso-configuration";
113
+ readonly USER_GUIDE_PERMISSIONS_ACCESS_HOW_TOS_PERMISSIONS_FAQ: "/user-guide/permissions-access/how-tos/permissions-faq";
114
+ readonly USER_GUIDE_PERMISSIONS_ACCESS_OVERVIEW: "/user-guide/permissions-access/overview";
115
+ readonly USER_GUIDE_SETTINGS_CAPABILITIES_DOMAINS_SETTINGS: "/user-guide/settings/capabilities/domains-settings";
116
+ readonly USER_GUIDE_SETTINGS_CAPABILITIES_EXPERIENCE_SETTINGS: "/user-guide/settings/capabilities/experience-settings";
117
+ readonly USER_GUIDE_SETTINGS_CAPABILITIES_MEMBER_MANAGEMENT: "/user-guide/settings/capabilities/member-management";
118
+ readonly USER_GUIDE_SETTINGS_CAPABILITIES_PROFILE_SETTINGS: "/user-guide/settings/capabilities/profile-settings";
119
+ readonly USER_GUIDE_SETTINGS_CAPABILITIES_UPDATES_SETTINGS: "/user-guide/settings/capabilities/updates-settings";
120
+ readonly USER_GUIDE_SETTINGS_CAPABILITIES_WORKSPACE_SETTINGS: "/user-guide/settings/capabilities/workspace-settings";
121
+ readonly USER_GUIDE_SETTINGS_HOW_TOS_SETTINGS_FAQ: "/user-guide/settings/how-tos/settings-faq";
122
+ readonly USER_GUIDE_SETTINGS_OVERVIEW: "/user-guide/settings/overview";
123
+ readonly USER_GUIDE_VIEWS_PIPELINES_CAPABILITIES_CALENDAR_VIEW: "/user-guide/views-pipelines/capabilities/calendar-view";
124
+ readonly USER_GUIDE_VIEWS_PIPELINES_CAPABILITIES_FIELDS_AND_COLUMNS: "/user-guide/views-pipelines/capabilities/fields-and-columns";
125
+ readonly USER_GUIDE_VIEWS_PIPELINES_CAPABILITIES_FILTERS_AND_SORTING: "/user-guide/views-pipelines/capabilities/filters-and-sorting";
126
+ readonly USER_GUIDE_VIEWS_PIPELINES_CAPABILITIES_KANBAN_VIEWS: "/user-guide/views-pipelines/capabilities/kanban-views";
127
+ readonly USER_GUIDE_VIEWS_PIPELINES_CAPABILITIES_TABLE_VIEWS: "/user-guide/views-pipelines/capabilities/table-views";
128
+ readonly USER_GUIDE_VIEWS_PIPELINES_CAPABILITIES_VIEW_SETTINGS: "/user-guide/views-pipelines/capabilities/view-settings";
129
+ readonly 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";
130
+ readonly USER_GUIDE_VIEWS_PIPELINES_HOW_TOS_CREATE_A_KANBAN_VIEW_FOR_PROJECTS: "/user-guide/views-pipelines/how-tos/create-a-kanban-view-for-projects";
131
+ readonly USER_GUIDE_VIEWS_PIPELINES_HOW_TOS_CREATE_A_TABLE_VIEW_WITH_GROUPING: "/user-guide/views-pipelines/how-tos/create-a-table-view-with-grouping";
132
+ readonly USER_GUIDE_VIEWS_PIPELINES_HOW_TOS_RESTRICT_ACCESS_TO_YOUR_VIEW: "/user-guide/views-pipelines/how-tos/restrict-access-to-your-view";
133
+ readonly USER_GUIDE_VIEWS_PIPELINES_HOW_TOS_SET_UP_A_SALES_PIPELINE: "/user-guide/views-pipelines/how-tos/set-up-a-sales-pipeline";
134
+ readonly USER_GUIDE_VIEWS_PIPELINES_HOW_TOS_SHOW_EXPECTED_AMOUNT_IN_PIPELINE: "/user-guide/views-pipelines/how-tos/show-expected-amount-in-pipeline";
135
+ readonly USER_GUIDE_VIEWS_PIPELINES_HOW_TOS_TRACK_TIME_IN_STAGE: "/user-guide/views-pipelines/how-tos/track-time-in-stage";
136
+ readonly USER_GUIDE_VIEWS_PIPELINES_OVERVIEW: "/user-guide/views-pipelines/overview";
137
+ readonly USER_GUIDE_WORKFLOWS_CAPABILITIES_SEND_EMAILS_FROM_WORKFLOWS: "/user-guide/workflows/capabilities/send-emails-from-workflows";
138
+ readonly USER_GUIDE_WORKFLOWS_CAPABILITIES_USE_BRANCHES_IN_WORKFLOWS: "/user-guide/workflows/capabilities/use-branches-in-workflows";
139
+ readonly USER_GUIDE_WORKFLOWS_CAPABILITIES_USE_ITERATOR: "/user-guide/workflows/capabilities/use-iterator";
140
+ readonly USER_GUIDE_WORKFLOWS_CAPABILITIES_WORKFLOW_ACTIONS: "/user-guide/workflows/capabilities/workflow-actions";
141
+ readonly USER_GUIDE_WORKFLOWS_CAPABILITIES_WORKFLOW_BRANCHES: "/user-guide/workflows/capabilities/workflow-branches";
142
+ readonly USER_GUIDE_WORKFLOWS_CAPABILITIES_WORKFLOW_CREDITS: "/user-guide/workflows/capabilities/workflow-credits";
143
+ readonly USER_GUIDE_WORKFLOWS_CAPABILITIES_WORKFLOW_RUNS: "/user-guide/workflows/capabilities/workflow-runs";
144
+ readonly USER_GUIDE_WORKFLOWS_CAPABILITIES_WORKFLOW_TRIGGERS: "/user-guide/workflows/capabilities/workflow-triggers";
145
+ readonly USER_GUIDE_WORKFLOWS_CAPABILITIES_WORKFLOW_VERSIONS: "/user-guide/workflows/capabilities/workflow-versions";
146
+ readonly USER_GUIDE_WORKFLOWS_HOW_TOS_ADVANCED_CONFIGURATIONS_HANDLE_ARRAYS_IN_CODE_ACTIONS: "/user-guide/workflows/how-tos/advanced-configurations/handle-arrays-in-code-actions";
147
+ readonly 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";
148
+ readonly 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";
149
+ readonly 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";
150
+ readonly 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";
151
+ readonly 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";
152
+ readonly USER_GUIDE_WORKFLOWS_HOW_TOS_CRM_AUTOMATIONS_CLOSED_WON_AUTOMATIONS: "/user-guide/workflows/how-tos/crm-automations/closed-won-automations";
153
+ readonly USER_GUIDE_WORKFLOWS_HOW_TOS_CRM_AUTOMATIONS_DETECT_STALE_OPPORTUNITIES: "/user-guide/workflows/how-tos/crm-automations/detect-stale-opportunities";
154
+ readonly USER_GUIDE_WORKFLOWS_HOW_TOS_CRM_AUTOMATIONS_DISPLAY_NUMBER_OF_EMAILS_RECEIVED: "/user-guide/workflows/how-tos/crm-automations/display-number-of-emails-received";
155
+ readonly USER_GUIDE_WORKFLOWS_HOW_TOS_CRM_AUTOMATIONS_DISPLAY_RELATED_RECORD_DATA: "/user-guide/workflows/how-tos/crm-automations/display-related-record-data";
156
+ readonly USER_GUIDE_WORKFLOWS_HOW_TOS_CRM_AUTOMATIONS_FORMULA_FIELDS: "/user-guide/workflows/how-tos/crm-automations/formula-fields";
157
+ readonly 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";
158
+ readonly 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";
159
+ readonly USER_GUIDE_WORKFLOWS_HOW_TOS_NEED_MORE_HELP_PROFESSIONAL_SERVICES: "/user-guide/workflows/how-tos/need-more-help/professional-services";
160
+ readonly USER_GUIDE_WORKFLOWS_HOW_TOS_NEED_MORE_HELP_WORKFLOW_TROUBLESHOOTING: "/user-guide/workflows/how-tos/need-more-help/workflow-troubleshooting";
161
+ readonly USER_GUIDE_WORKFLOWS_HOW_TOS_NEED_MORE_HELP_WORKFLOWS_FAQ: "/user-guide/workflows/how-tos/need-more-help/workflows-faq";
162
+ readonly USER_GUIDE_WORKFLOWS_OVERVIEW: "/user-guide/workflows/overview";
163
+ };
164
+ export type DocumentationPath = (typeof DOCUMENTATION_PATHS)[keyof typeof DOCUMENTATION_PATHS];
165
+ //# sourceMappingURL=DocumentationPaths.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DocumentationPaths.d.ts","sourceRoot":"","sources":["../../src/constants/DocumentationPaths.ts"],"names":[],"mappings":"AAaA,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyRtB,CAAC;AAEX,MAAM,MAAM,iBAAiB,GAC3B,CAAC,OAAO,mBAAmB,CAAC,CAAC,MAAM,OAAO,mBAAmB,CAAC,CAAC"}
@@ -0,0 +1,3 @@
1
+ export declare const DOCUMENTATION_SUPPORTED_LANGUAGES: readonly ["en", "fr", "ar", "cs", "de", "es", "it", "ja", "ko", "pt", "ro", "ru", "tr", "zh"];
2
+ export type DocumentationSupportedLanguage = (typeof DOCUMENTATION_SUPPORTED_LANGUAGES)[number];
3
+ //# sourceMappingURL=DocumentationSupportedLanguages.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DocumentationSupportedLanguages.d.ts","sourceRoot":"","sources":["../../src/constants/DocumentationSupportedLanguages.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iCAAiC,+FAepC,CAAC;AAEX,MAAM,MAAM,8BAA8B,GACxC,CAAC,OAAO,iCAAiC,CAAC,CAAC,MAAM,CAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const FILES_FIELD_MAX_NUMBER_OF_VALUES = 10;
2
+ //# sourceMappingURL=FilesFieldMaxNumberOfValues.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FilesFieldMaxNumberOfValues.d.ts","sourceRoot":"","sources":["../../src/constants/FilesFieldMaxNumberOfValues.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gCAAgC,KAAK,CAAC"}
@@ -9,6 +9,7 @@ export declare enum PermissionFlagType {
9
9
  IMPERSONATE = "IMPERSONATE",
10
10
  SSO_BYPASS = "SSO_BYPASS",
11
11
  APPLICATIONS = "APPLICATIONS",
12
+ MARKETPLACE_APPS = "MARKETPLACE_APPS",
12
13
  LAYOUTS = "LAYOUTS",
13
14
  BILLING = "BILLING",
14
15
  AI_SETTINGS = "AI_SETTINGS",
@@ -1 +1 @@
1
- {"version":3,"file":"PermissionFlagType.d.ts","sourceRoot":"","sources":["../../src/constants/PermissionFlagType.ts"],"names":[],"mappings":"AAAA,oBAAY,kBAAkB;IAE5B,qBAAqB,0BAA0B;IAC/C,SAAS,cAAc;IACvB,iBAAiB,sBAAsB;IACvC,KAAK,UAAU;IACf,UAAU,eAAe;IACzB,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,UAAU,eAAe;IACzB,YAAY,iBAAiB;IAC7B,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAG3B,EAAE,OAAO;IACT,KAAK,UAAU;IACf,WAAW,gBAAgB;IAC3B,aAAa,kBAAkB;IAC/B,eAAe,oBAAoB;IACnC,iBAAiB,sBAAsB;IACvC,qBAAqB,0BAA0B;IAC/C,UAAU,eAAe;IACzB,UAAU,eAAe;IACzB,kBAAkB,uBAAuB;IACzC,mBAAmB,wBAAwB;CAC5C"}
1
+ {"version":3,"file":"PermissionFlagType.d.ts","sourceRoot":"","sources":["../../src/constants/PermissionFlagType.ts"],"names":[],"mappings":"AAAA,oBAAY,kBAAkB;IAE5B,qBAAqB,0BAA0B;IAC/C,SAAS,cAAc;IACvB,iBAAiB,sBAAsB;IACvC,KAAK,UAAU;IACf,UAAU,eAAe;IACzB,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,UAAU,eAAe;IACzB,YAAY,iBAAiB;IAC7B,gBAAgB,qBAAqB;IACrC,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAG3B,EAAE,OAAO;IACT,KAAK,UAAU;IACf,WAAW,gBAAgB;IAC3B,aAAa,kBAAkB;IAC/B,eAAe,oBAAoB;IACnC,iBAAiB,sBAAsB;IACvC,qBAAqB,0BAA0B;IAC/C,UAAU,eAAe;IACzB,UAAU,eAAe;IACzB,kBAAkB,uBAAuB;IACzC,mBAAmB,wBAAwB;CAC5C"}
@@ -5,9 +5,17 @@ export { CURRENCY_CODE_LABELS } from './CurrencyCodeLabels';
5
5
  export { DATE_TYPE_FORMAT } from './DateTypeFormat';
6
6
  export { DEFAULT_NUMBER_OF_GROUPS_LIMIT } from './DefaultNumberOfGroupsLimit';
7
7
  export { DEFAULT_RELATIVE_DATE_FILTER_VALUE } from './DefaultRelativeDateFilterValue';
8
+ export { DOCUMENTATION_BASE_URL } from './DocumentationBaseUrl';
9
+ export { DOCUMENTATION_DEFAULT_LANGUAGE } from './DocumentationDefaultLanguage';
10
+ export { DOCUMENTATION_DEFAULT_PATH } from './DocumentationDefaultPath';
11
+ export type { DocumentationPath } from './DocumentationPaths';
12
+ export { DOCUMENTATION_PATHS } from './DocumentationPaths';
13
+ export type { DocumentationSupportedLanguage } from './DocumentationSupportedLanguages';
14
+ export { DOCUMENTATION_SUPPORTED_LANGUAGES } from './DocumentationSupportedLanguages';
8
15
  export { FIELD_FOR_TOTAL_COUNT_AGGREGATE_OPERATION } from './FieldForTotalCountAggregateOperation';
9
16
  export { MAX_OPTIONS_TO_DISPLAY } from './FieldMetadataMaxOptionsToDisplay';
10
17
  export { FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED } from './FieldRestrictedAdditionalPermissionsRequired';
18
+ export { FILES_FIELD_MAX_NUMBER_OF_VALUES } from './FilesFieldMaxNumberOfValues';
11
19
  export { GROUP_BY_DATE_GRANULARITY_THAT_REQUIRE_TIME_ZONE } from './GroupByDateGranularityThatRequireTimeZone';
12
20
  export { LABEL_IDENTIFIER_FIELD_METADATA_TYPES } from './LabelIdentifierFieldMetadataTypes';
13
21
  export { MULTI_ITEM_FIELD_DEFAULT_MAX_VALUES } from './MultiItemFieldDefaultMaxValues';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/constants/index.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,qCAAqC,EAAE,MAAM,oCAAoC,CAAC;AAC3F,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,8BAA8B,EAAE,MAAM,8BAA8B,CAAC;AAC9E,OAAO,EAAE,kCAAkC,EAAE,MAAM,kCAAkC,CAAC;AACtF,OAAO,EAAE,yCAAyC,EAAE,MAAM,wCAAwC,CAAC;AACnG,OAAO,EAAE,sBAAsB,EAAE,MAAM,oCAAoC,CAAC;AAC5E,OAAO,EAAE,gDAAgD,EAAE,MAAM,gDAAgD,CAAC;AAClH,OAAO,EAAE,gDAAgD,EAAE,MAAM,6CAA6C,CAAC;AAC/G,OAAO,EAAE,qCAAqC,EAAE,MAAM,qCAAqC,CAAC;AAC5F,OAAO,EAAE,mCAAmC,EAAE,MAAM,kCAAkC,CAAC;AACvF,OAAO,EAAE,+BAA+B,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,0BAA0B,EAAE,MAAM,2BAA2B,CAAC;AACvE,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,6BAA6B,EAAE,MAAM,iCAAiC,CAAC;AAChF,OAAO,EAAE,2BAA2B,EAAE,MAAM,4BAA4B,CAAC;AACzE,OAAO,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAE,+BAA+B,EAAE,MAAM,+BAA+B,CAAC;AAChF,OAAO,EAAE,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;AAC1D,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC/C,OAAO,EAAE,8BAA8B,EAAE,MAAM,gCAAgC,CAAC;AAChF,OAAO,EAAE,wDAAwD,EAAE,MAAM,sDAAsD,CAAC;AAChI,OAAO,EAAE,yBAAyB,EAAE,MAAM,0BAA0B,CAAC;AACrE,OAAO,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAC;AAC7D,OAAO,EAAE,8BAA8B,EAAE,MAAM,8BAA8B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/constants/index.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,qCAAqC,EAAE,MAAM,oCAAoC,CAAC;AAC3F,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,8BAA8B,EAAE,MAAM,8BAA8B,CAAC;AAC9E,OAAO,EAAE,kCAAkC,EAAE,MAAM,kCAAkC,CAAC;AACtF,OAAO,EAAE,sBAAsB,EAAE,MAAM,wBAAwB,CAAC;AAChE,OAAO,EAAE,8BAA8B,EAAE,MAAM,gCAAgC,CAAC;AAChF,OAAO,EAAE,0BAA0B,EAAE,MAAM,4BAA4B,CAAC;AACxE,YAAY,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAC3D,YAAY,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACxF,OAAO,EAAE,iCAAiC,EAAE,MAAM,mCAAmC,CAAC;AACtF,OAAO,EAAE,yCAAyC,EAAE,MAAM,wCAAwC,CAAC;AACnG,OAAO,EAAE,sBAAsB,EAAE,MAAM,oCAAoC,CAAC;AAC5E,OAAO,EAAE,gDAAgD,EAAE,MAAM,gDAAgD,CAAC;AAClH,OAAO,EAAE,gCAAgC,EAAE,MAAM,+BAA+B,CAAC;AACjF,OAAO,EAAE,gDAAgD,EAAE,MAAM,6CAA6C,CAAC;AAC/G,OAAO,EAAE,qCAAqC,EAAE,MAAM,qCAAqC,CAAC;AAC5F,OAAO,EAAE,mCAAmC,EAAE,MAAM,kCAAkC,CAAC;AACvF,OAAO,EAAE,+BAA+B,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,0BAA0B,EAAE,MAAM,2BAA2B,CAAC;AACvE,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,6BAA6B,EAAE,MAAM,iCAAiC,CAAC;AAChF,OAAO,EAAE,2BAA2B,EAAE,MAAM,4BAA4B,CAAC;AACzE,OAAO,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAE,+BAA+B,EAAE,MAAM,+BAA+B,CAAC;AAChF,OAAO,EAAE,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;AAC1D,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC/C,OAAO,EAAE,8BAA8B,EAAE,MAAM,gCAAgC,CAAC;AAChF,OAAO,EAAE,wDAAwD,EAAE,MAAM,sDAAsD,CAAC;AAChI,OAAO,EAAE,yBAAyB,EAAE,MAAM,0BAA0B,CAAC;AACrE,OAAO,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAC;AAC7D,OAAO,EAAE,8BAA8B,EAAE,MAAM,8BAA8B,CAAC"}
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const T=require("./CalendarStartDay-C44FicI4.js"),_=require("./RatingValues-B_wgYyso.js");var R=(E=>(E.AED="AED",E.AFN="AFN",E.ALL="ALL",E.AMD="AMD",E.ANG="ANG",E.AOA="AOA",E.ARS="ARS",E.AUD="AUD",E.AWG="AWG",E.AZN="AZN",E.BAM="BAM",E.BBD="BBD",E.BDT="BDT",E.BGN="BGN",E.BHD="BHD",E.BIF="BIF",E.BMD="BMD",E.BND="BND",E.BOB="BOB",E.BRL="BRL",E.BSD="BSD",E.BTN="BTN",E.BWP="BWP",E.BYN="BYN",E.BZD="BZD",E.CAD="CAD",E.CDF="CDF",E.CHF="CHF",E.CLP="CLP",E.CNY="CNY",E.COP="COP",E.CRC="CRC",E.CUP="CUP",E.CVE="CVE",E.CZK="CZK",E.DJF="DJF",E.DKK="DKK",E.DOP="DOP",E.DZD="DZD",E.EGP="EGP",E.ERN="ERN",E.ETB="ETB",E.EUR="EUR",E.FJD="FJD",E.FKP="FKP",E.GBP="GBP",E.GEL="GEL",E.GHS="GHS",E.GIP="GIP",E.GMD="GMD",E.GNF="GNF",E.GTQ="GTQ",E.GYD="GYD",E.HKD="HKD",E.HNL="HNL",E.HTG="HTG",E.HUF="HUF",E.IDR="IDR",E.ILS="ILS",E.INR="INR",E.IQD="IQD",E.IRR="IRR",E.ISK="ISK",E.JMD="JMD",E.JOD="JOD",E.JPY="JPY",E.KES="KES",E.KGS="KGS",E.KHR="KHR",E.KMF="KMF",E.KPW="KPW",E.KRW="KRW",E.KWD="KWD",E.KYD="KYD",E.KZT="KZT",E.LAK="LAK",E.LBP="LBP",E.LKR="LKR",E.LRD="LRD",E.LSL="LSL",E.LYD="LYD",E.MAD="MAD",E.MDL="MDL",E.MGA="MGA",E.MKD="MKD",E.MMK="MMK",E.MNT="MNT",E.MOP="MOP",E.MRU="MRU",E.MUR="MUR",E.MVR="MVR",E.MWK="MWK",E.MXN="MXN",E.MYR="MYR",E.MZN="MZN",E.NAD="NAD",E.NGN="NGN",E.NIO="NIO",E.NOK="NOK",E.NPR="NPR",E.NZD="NZD",E.OMR="OMR",E.PAB="PAB",E.PEN="PEN",E.PGK="PGK",E.PHP="PHP",E.PKR="PKR",E.PLN="PLN",E.PYG="PYG",E.QAR="QAR",E.RON="RON",E.RSD="RSD",E.RUB="RUB",E.RWF="RWF",E.SAR="SAR",E.SBD="SBD",E.SCR="SCR",E.SDG="SDG",E.SEK="SEK",E.SGD="SGD",E.SHP="SHP",E.SLE="SLE",E.SOS="SOS",E.SRD="SRD",E.SSP="SSP",E.STN="STN",E.SVC="SVC",E.SYP="SYP",E.SZL="SZL",E.THB="THB",E.TJS="TJS",E.TMT="TMT",E.TND="TND",E.TOP="TOP",E.TRY="TRY",E.TTD="TTD",E.TWD="TWD",E.TZS="TZS",E.UAH="UAH",E.UGX="UGX",E.USD="USD",E.UYU="UYU",E.UZS="UZS",E.VES="VES",E.VND="VND",E.VUV="VUV",E.WST="WST",E.XCD="XCD",E.XOF="XOF",E.YER="YER",E.ZAR="ZAR",E.ZMW="ZMW",E.ZWG="ZWG",E))(R||{});const A="yyyy-MM-dd",O=50,I={direction:"THIS",unit:"DAY",amount:1},L="id",N=3,M="FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED",U=10,P=1,B=9;var S=(E=>(E.API_KEYS_AND_WEBHOOKS="API_KEYS_AND_WEBHOOKS",E.WORKSPACE="WORKSPACE",E.WORKSPACE_MEMBERS="WORKSPACE_MEMBERS",E.ROLES="ROLES",E.DATA_MODEL="DATA_MODEL",E.SECURITY="SECURITY",E.WORKFLOWS="WORKFLOWS",E.IMPERSONATE="IMPERSONATE",E.SSO_BYPASS="SSO_BYPASS",E.APPLICATIONS="APPLICATIONS",E.LAYOUTS="LAYOUTS",E.BILLING="BILLING",E.AI_SETTINGS="AI_SETTINGS",E.AI="AI",E.VIEWS="VIEWS",E.UPLOAD_FILE="UPLOAD_FILE",E.DOWNLOAD_FILE="DOWNLOAD_FILE",E.SEND_EMAIL_TOOL="SEND_EMAIL_TOOL",E.HTTP_REQUEST_TOOL="HTTP_REQUEST_TOOL",E.CODE_INTERPRETER_TOOL="CODE_INTERPRETER_TOOL",E.IMPORT_CSV="IMPORT_CSV",E.EXPORT_CSV="EXPORT_CSV",E.CONNECTED_ACCOUNTS="CONNECTED_ACCOUNTS",E.PROFILE_INFORMATION="PROFILE_INFORMATION",E))(S||{}),D=(E=>(E.READ_ALL_OBJECT_RECORDS="READ_ALL_OBJECT_RECORDS",E.UPDATE_ALL_OBJECT_RECORDS="UPDATE_ALL_OBJECT_RECORDS",E.SOFT_DELETE_ALL_OBJECT_RECORDS="SOFT_DELETE_ALL_OBJECT_RECORDS",E.DESTROY_ALL_OBJECT_RECORDS="DESTROY_ALL_OBJECT_RECORDS",E))(D||{});const G=60,Y=200,K=60,t=/^['"](.*)['"]$/,F={CONNECT:"connect",CONNECT_WHERE:"where",DISCONNECT:"disconnect"},W=["person","company","opportunity","note","task"],V="https://twenty-companies.com",H="https://twenty-icons.com",Z=40;exports.CalendarStartDay=T.CalendarStartDay;exports.COMPOSITE_FIELD_TYPE_SUB_FIELDS_NAMES=_.COMPOSITE_FIELD_TYPE_SUB_FIELDS_NAMES;exports.CURRENCY_CODE_LABELS=_.CURRENCY_CODE_LABELS;exports.GROUP_BY_DATE_GRANULARITY_THAT_REQUIRE_TIME_ZONE=_.GROUP_BY_DATE_GRANULARITY_THAT_REQUIRE_TIME_ZONE;exports.LABEL_IDENTIFIER_FIELD_METADATA_TYPES=_.LABEL_IDENTIFIER_FIELD_METADATA_TYPES;exports.RATING_VALUES=_.RATING_VALUES;exports.CurrencyCode=R;exports.DATE_TYPE_FORMAT=A;exports.DEFAULT_NUMBER_OF_GROUPS_LIMIT=O;exports.DEFAULT_RELATIVE_DATE_FILTER_VALUE=I;exports.FIELD_FOR_TOTAL_COUNT_AGGREGATE_OPERATION=L;exports.FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED=M;exports.MAX_OPTIONS_TO_DISPLAY=N;exports.MULTI_ITEM_FIELD_DEFAULT_MAX_VALUES=U;exports.MULTI_ITEM_FIELD_MIN_MAX_VALUES=P;exports.MUTATION_MAX_MERGE_RECORDS=B;exports.PermissionFlagType=S;exports.PermissionsOnAllObjectRecords=D;exports.QUERY_DEFAULT_LIMIT_RECORDS=G;exports.QUERY_MAX_RECORDS=Y;exports.QUERY_MAX_RECORDS_FROM_RELATION=K;exports.QUOTED_STRING_REGEX=t;exports.RELATION_NESTED_QUERY_KEYWORDS=F;exports.STANDARD_OBJECT_RECORDS_UNDER_OBJECT_RECORDS_PERMISSIONS=W;exports.TWENTY_COMPANIES_BASE_URL=V;exports.TWENTY_ICONS_BASE_URL=H;exports.VIEW_GROUP_VISIBLE_OPTIONS_MAX=Z;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const S=require("./CalendarStartDay-C44FicI4.js"),_=require("./RatingValues-Bd_cXQ5v.js");var R=(E=>(E.AED="AED",E.AFN="AFN",E.ALL="ALL",E.AMD="AMD",E.ANG="ANG",E.AOA="AOA",E.ARS="ARS",E.AUD="AUD",E.AWG="AWG",E.AZN="AZN",E.BAM="BAM",E.BBD="BBD",E.BDT="BDT",E.BGN="BGN",E.BHD="BHD",E.BIF="BIF",E.BMD="BMD",E.BND="BND",E.BOB="BOB",E.BRL="BRL",E.BSD="BSD",E.BTN="BTN",E.BWP="BWP",E.BYN="BYN",E.BZD="BZD",E.CAD="CAD",E.CDF="CDF",E.CHF="CHF",E.CLP="CLP",E.CNY="CNY",E.COP="COP",E.CRC="CRC",E.CUP="CUP",E.CVE="CVE",E.CZK="CZK",E.DJF="DJF",E.DKK="DKK",E.DOP="DOP",E.DZD="DZD",E.EGP="EGP",E.ERN="ERN",E.ETB="ETB",E.EUR="EUR",E.FJD="FJD",E.FKP="FKP",E.GBP="GBP",E.GEL="GEL",E.GHS="GHS",E.GIP="GIP",E.GMD="GMD",E.GNF="GNF",E.GTQ="GTQ",E.GYD="GYD",E.HKD="HKD",E.HNL="HNL",E.HTG="HTG",E.HUF="HUF",E.IDR="IDR",E.ILS="ILS",E.INR="INR",E.IQD="IQD",E.IRR="IRR",E.ISK="ISK",E.JMD="JMD",E.JOD="JOD",E.JPY="JPY",E.KES="KES",E.KGS="KGS",E.KHR="KHR",E.KMF="KMF",E.KPW="KPW",E.KRW="KRW",E.KWD="KWD",E.KYD="KYD",E.KZT="KZT",E.LAK="LAK",E.LBP="LBP",E.LKR="LKR",E.LRD="LRD",E.LSL="LSL",E.LYD="LYD",E.MAD="MAD",E.MDL="MDL",E.MGA="MGA",E.MKD="MKD",E.MMK="MMK",E.MNT="MNT",E.MOP="MOP",E.MRU="MRU",E.MUR="MUR",E.MVR="MVR",E.MWK="MWK",E.MXN="MXN",E.MYR="MYR",E.MZN="MZN",E.NAD="NAD",E.NGN="NGN",E.NIO="NIO",E.NOK="NOK",E.NPR="NPR",E.NZD="NZD",E.OMR="OMR",E.PAB="PAB",E.PEN="PEN",E.PGK="PGK",E.PHP="PHP",E.PKR="PKR",E.PLN="PLN",E.PYG="PYG",E.QAR="QAR",E.RON="RON",E.RSD="RSD",E.RUB="RUB",E.RWF="RWF",E.SAR="SAR",E.SBD="SBD",E.SCR="SCR",E.SDG="SDG",E.SEK="SEK",E.SGD="SGD",E.SHP="SHP",E.SLE="SLE",E.SOS="SOS",E.SRD="SRD",E.SSP="SSP",E.STN="STN",E.SVC="SVC",E.SYP="SYP",E.SZL="SZL",E.THB="THB",E.TJS="TJS",E.TMT="TMT",E.TND="TND",E.TOP="TOP",E.TRY="TRY",E.TTD="TTD",E.TWD="TWD",E.TZS="TZS",E.UAH="UAH",E.UGX="UGX",E.USD="USD",E.UYU="UYU",E.UZS="UZS",E.VES="VES",E.VND="VND",E.VUV="VUV",E.WST="WST",E.XCD="XCD",E.XOF="XOF",E.YER="YER",E.ZAR="ZAR",E.ZMW="ZMW",E.ZWG="ZWG",E))(R||{});const O="yyyy-MM-dd",L=50,I={direction:"THIS",unit:"DAY",amount:1},N="https://docs.twenty.com",A="en",M=[A,"fr","ar","cs","de","es","it","ja","ko","pt","ro","ru","tr","zh"],U="id",P=3,B="FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED",G=10,t=10,Y=1,K=9;var D=(E=>(E.API_KEYS_AND_WEBHOOKS="API_KEYS_AND_WEBHOOKS",E.WORKSPACE="WORKSPACE",E.WORKSPACE_MEMBERS="WORKSPACE_MEMBERS",E.ROLES="ROLES",E.DATA_MODEL="DATA_MODEL",E.SECURITY="SECURITY",E.WORKFLOWS="WORKFLOWS",E.IMPERSONATE="IMPERSONATE",E.SSO_BYPASS="SSO_BYPASS",E.APPLICATIONS="APPLICATIONS",E.MARKETPLACE_APPS="MARKETPLACE_APPS",E.LAYOUTS="LAYOUTS",E.BILLING="BILLING",E.AI_SETTINGS="AI_SETTINGS",E.AI="AI",E.VIEWS="VIEWS",E.UPLOAD_FILE="UPLOAD_FILE",E.DOWNLOAD_FILE="DOWNLOAD_FILE",E.SEND_EMAIL_TOOL="SEND_EMAIL_TOOL",E.HTTP_REQUEST_TOOL="HTTP_REQUEST_TOOL",E.CODE_INTERPRETER_TOOL="CODE_INTERPRETER_TOOL",E.IMPORT_CSV="IMPORT_CSV",E.EXPORT_CSV="EXPORT_CSV",E.CONNECTED_ACCOUNTS="CONNECTED_ACCOUNTS",E.PROFILE_INFORMATION="PROFILE_INFORMATION",E))(D||{}),T=(E=>(E.READ_ALL_OBJECT_RECORDS="READ_ALL_OBJECT_RECORDS",E.UPDATE_ALL_OBJECT_RECORDS="UPDATE_ALL_OBJECT_RECORDS",E.SOFT_DELETE_ALL_OBJECT_RECORDS="SOFT_DELETE_ALL_OBJECT_RECORDS",E.DESTROY_ALL_OBJECT_RECORDS="DESTROY_ALL_OBJECT_RECORDS",E))(T||{});const F=60,W=200,V=60,H=/^['"](.*)['"]$/,X={CONNECT:"connect",CONNECT_WHERE:"where",DISCONNECT:"disconnect"},Z=["person","company","opportunity","note","task"],J="https://twenty-companies.com",Q="https://twenty-icons.com",h=40;exports.CalendarStartDay=S.CalendarStartDay;exports.COMPOSITE_FIELD_TYPE_SUB_FIELDS_NAMES=_.COMPOSITE_FIELD_TYPE_SUB_FIELDS_NAMES;exports.CURRENCY_CODE_LABELS=_.CURRENCY_CODE_LABELS;exports.DOCUMENTATION_DEFAULT_PATH=_.DOCUMENTATION_DEFAULT_PATH;exports.DOCUMENTATION_PATHS=_.DOCUMENTATION_PATHS;exports.GROUP_BY_DATE_GRANULARITY_THAT_REQUIRE_TIME_ZONE=_.GROUP_BY_DATE_GRANULARITY_THAT_REQUIRE_TIME_ZONE;exports.LABEL_IDENTIFIER_FIELD_METADATA_TYPES=_.LABEL_IDENTIFIER_FIELD_METADATA_TYPES;exports.RATING_VALUES=_.RATING_VALUES;exports.CurrencyCode=R;exports.DATE_TYPE_FORMAT=O;exports.DEFAULT_NUMBER_OF_GROUPS_LIMIT=L;exports.DEFAULT_RELATIVE_DATE_FILTER_VALUE=I;exports.DOCUMENTATION_BASE_URL=N;exports.DOCUMENTATION_DEFAULT_LANGUAGE=A;exports.DOCUMENTATION_SUPPORTED_LANGUAGES=M;exports.FIELD_FOR_TOTAL_COUNT_AGGREGATE_OPERATION=U;exports.FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED=B;exports.FILES_FIELD_MAX_NUMBER_OF_VALUES=G;exports.MAX_OPTIONS_TO_DISPLAY=P;exports.MULTI_ITEM_FIELD_DEFAULT_MAX_VALUES=t;exports.MULTI_ITEM_FIELD_MIN_MAX_VALUES=Y;exports.MUTATION_MAX_MERGE_RECORDS=K;exports.PermissionFlagType=D;exports.PermissionsOnAllObjectRecords=T;exports.QUERY_DEFAULT_LIMIT_RECORDS=F;exports.QUERY_MAX_RECORDS=W;exports.QUERY_MAX_RECORDS_FROM_RELATION=V;exports.QUOTED_STRING_REGEX=H;exports.RELATION_NESTED_QUERY_KEYWORDS=X;exports.STANDARD_OBJECT_RECORDS_UNDER_OBJECT_RECORDS_PERMISSIONS=Z;exports.TWENTY_COMPANIES_BASE_URL=J;exports.TWENTY_ICONS_BASE_URL=Q;exports.VIEW_GROUP_VISIBLE_OPTIONS_MAX=h;
@@ -1,49 +1,70 @@
1
- import { C as J } from "./CalendarStartDay-izukv6nx.mjs";
2
- import { C as Q, a as h, G as v, L as w, R as x } from "./RatingValues-DNSj7xKA.mjs";
3
- var R = /* @__PURE__ */ ((E) => (E.AED = "AED", E.AFN = "AFN", E.ALL = "ALL", E.AMD = "AMD", E.ANG = "ANG", E.AOA = "AOA", E.ARS = "ARS", E.AUD = "AUD", E.AWG = "AWG", E.AZN = "AZN", E.BAM = "BAM", E.BBD = "BBD", E.BDT = "BDT", E.BGN = "BGN", E.BHD = "BHD", E.BIF = "BIF", E.BMD = "BMD", E.BND = "BND", E.BOB = "BOB", E.BRL = "BRL", E.BSD = "BSD", E.BTN = "BTN", E.BWP = "BWP", E.BYN = "BYN", E.BZD = "BZD", E.CAD = "CAD", E.CDF = "CDF", E.CHF = "CHF", E.CLP = "CLP", E.CNY = "CNY", E.COP = "COP", E.CRC = "CRC", E.CUP = "CUP", E.CVE = "CVE", E.CZK = "CZK", E.DJF = "DJF", E.DKK = "DKK", E.DOP = "DOP", E.DZD = "DZD", E.EGP = "EGP", E.ERN = "ERN", E.ETB = "ETB", E.EUR = "EUR", E.FJD = "FJD", E.FKP = "FKP", E.GBP = "GBP", E.GEL = "GEL", E.GHS = "GHS", E.GIP = "GIP", E.GMD = "GMD", E.GNF = "GNF", E.GTQ = "GTQ", E.GYD = "GYD", E.HKD = "HKD", E.HNL = "HNL", E.HTG = "HTG", E.HUF = "HUF", E.IDR = "IDR", E.ILS = "ILS", E.INR = "INR", E.IQD = "IQD", E.IRR = "IRR", E.ISK = "ISK", E.JMD = "JMD", E.JOD = "JOD", E.JPY = "JPY", E.KES = "KES", E.KGS = "KGS", E.KHR = "KHR", E.KMF = "KMF", E.KPW = "KPW", E.KRW = "KRW", E.KWD = "KWD", E.KYD = "KYD", E.KZT = "KZT", E.LAK = "LAK", E.LBP = "LBP", E.LKR = "LKR", E.LRD = "LRD", E.LSL = "LSL", E.LYD = "LYD", E.MAD = "MAD", E.MDL = "MDL", E.MGA = "MGA", E.MKD = "MKD", E.MMK = "MMK", E.MNT = "MNT", E.MOP = "MOP", E.MRU = "MRU", E.MUR = "MUR", E.MVR = "MVR", E.MWK = "MWK", E.MXN = "MXN", E.MYR = "MYR", E.MZN = "MZN", E.NAD = "NAD", E.NGN = "NGN", E.NIO = "NIO", E.NOK = "NOK", E.NPR = "NPR", E.NZD = "NZD", E.OMR = "OMR", E.PAB = "PAB", E.PEN = "PEN", E.PGK = "PGK", E.PHP = "PHP", E.PKR = "PKR", E.PLN = "PLN", E.PYG = "PYG", E.QAR = "QAR", E.RON = "RON", E.RSD = "RSD", E.RUB = "RUB", E.RWF = "RWF", E.SAR = "SAR", E.SBD = "SBD", E.SCR = "SCR", E.SDG = "SDG", E.SEK = "SEK", E.SGD = "SGD", E.SHP = "SHP", E.SLE = "SLE", E.SOS = "SOS", E.SRD = "SRD", E.SSP = "SSP", E.STN = "STN", E.SVC = "SVC", E.SYP = "SYP", E.SZL = "SZL", E.THB = "THB", E.TJS = "TJS", E.TMT = "TMT", E.TND = "TND", E.TOP = "TOP", E.TRY = "TRY", E.TTD = "TTD", E.TWD = "TWD", E.TZS = "TZS", E.UAH = "UAH", E.UGX = "UGX", E.USD = "USD", E.UYU = "UYU", E.UZS = "UZS", E.VES = "VES", E.VND = "VND", E.VUV = "VUV", E.WST = "WST", E.XCD = "XCD", E.XOF = "XOF", E.YER = "YER", E.ZAR = "ZAR", E.ZMW = "ZMW", E.ZWG = "ZWG", E))(R || {});
4
- const _ = "yyyy-MM-dd", O = 50, A = {
1
+ import { C as w } from "./CalendarStartDay-izukv6nx.mjs";
2
+ import { C as v, a as x, D as k, b as z, G as $, L as q, R as a } from "./RatingValues-CT-y6O0b.mjs";
3
+ var D = /* @__PURE__ */ ((E) => (E.AED = "AED", E.AFN = "AFN", E.ALL = "ALL", E.AMD = "AMD", E.ANG = "ANG", E.AOA = "AOA", E.ARS = "ARS", E.AUD = "AUD", E.AWG = "AWG", E.AZN = "AZN", E.BAM = "BAM", E.BBD = "BBD", E.BDT = "BDT", E.BGN = "BGN", E.BHD = "BHD", E.BIF = "BIF", E.BMD = "BMD", E.BND = "BND", E.BOB = "BOB", E.BRL = "BRL", E.BSD = "BSD", E.BTN = "BTN", E.BWP = "BWP", E.BYN = "BYN", E.BZD = "BZD", E.CAD = "CAD", E.CDF = "CDF", E.CHF = "CHF", E.CLP = "CLP", E.CNY = "CNY", E.COP = "COP", E.CRC = "CRC", E.CUP = "CUP", E.CVE = "CVE", E.CZK = "CZK", E.DJF = "DJF", E.DKK = "DKK", E.DOP = "DOP", E.DZD = "DZD", E.EGP = "EGP", E.ERN = "ERN", E.ETB = "ETB", E.EUR = "EUR", E.FJD = "FJD", E.FKP = "FKP", E.GBP = "GBP", E.GEL = "GEL", E.GHS = "GHS", E.GIP = "GIP", E.GMD = "GMD", E.GNF = "GNF", E.GTQ = "GTQ", E.GYD = "GYD", E.HKD = "HKD", E.HNL = "HNL", E.HTG = "HTG", E.HUF = "HUF", E.IDR = "IDR", E.ILS = "ILS", E.INR = "INR", E.IQD = "IQD", E.IRR = "IRR", E.ISK = "ISK", E.JMD = "JMD", E.JOD = "JOD", E.JPY = "JPY", E.KES = "KES", E.KGS = "KGS", E.KHR = "KHR", E.KMF = "KMF", E.KPW = "KPW", E.KRW = "KRW", E.KWD = "KWD", E.KYD = "KYD", E.KZT = "KZT", E.LAK = "LAK", E.LBP = "LBP", E.LKR = "LKR", E.LRD = "LRD", E.LSL = "LSL", E.LYD = "LYD", E.MAD = "MAD", E.MDL = "MDL", E.MGA = "MGA", E.MKD = "MKD", E.MMK = "MMK", E.MNT = "MNT", E.MOP = "MOP", E.MRU = "MRU", E.MUR = "MUR", E.MVR = "MVR", E.MWK = "MWK", E.MXN = "MXN", E.MYR = "MYR", E.MZN = "MZN", E.NAD = "NAD", E.NGN = "NGN", E.NIO = "NIO", E.NOK = "NOK", E.NPR = "NPR", E.NZD = "NZD", E.OMR = "OMR", E.PAB = "PAB", E.PEN = "PEN", E.PGK = "PGK", E.PHP = "PHP", E.PKR = "PKR", E.PLN = "PLN", E.PYG = "PYG", E.QAR = "QAR", E.RON = "RON", E.RSD = "RSD", E.RUB = "RUB", E.RWF = "RWF", E.SAR = "SAR", E.SBD = "SBD", E.SCR = "SCR", E.SDG = "SDG", E.SEK = "SEK", E.SGD = "SGD", E.SHP = "SHP", E.SLE = "SLE", E.SOS = "SOS", E.SRD = "SRD", E.SSP = "SSP", E.STN = "STN", E.SVC = "SVC", E.SYP = "SYP", E.SZL = "SZL", E.THB = "THB", E.TJS = "TJS", E.TMT = "TMT", E.TND = "TND", E.TOP = "TOP", E.TRY = "TRY", E.TTD = "TTD", E.TWD = "TWD", E.TZS = "TZS", E.UAH = "UAH", E.UGX = "UGX", E.USD = "USD", E.UYU = "UYU", E.UZS = "UZS", E.VES = "VES", E.VND = "VND", E.VUV = "VUV", E.WST = "WST", E.XCD = "XCD", E.XOF = "XOF", E.YER = "YER", E.ZAR = "ZAR", E.ZMW = "ZMW", E.ZWG = "ZWG", E))(D || {});
4
+ const A = "yyyy-MM-dd", O = 50, T = {
5
5
  direction: "THIS",
6
6
  unit: "DAY",
7
7
  amount: 1
8
- }, T = "id", L = 3, N = "FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED", I = 10, M = 1, B = 9;
9
- var D = /* @__PURE__ */ ((E) => (E.API_KEYS_AND_WEBHOOKS = "API_KEYS_AND_WEBHOOKS", E.WORKSPACE = "WORKSPACE", E.WORKSPACE_MEMBERS = "WORKSPACE_MEMBERS", E.ROLES = "ROLES", E.DATA_MODEL = "DATA_MODEL", E.SECURITY = "SECURITY", E.WORKFLOWS = "WORKFLOWS", E.IMPERSONATE = "IMPERSONATE", E.SSO_BYPASS = "SSO_BYPASS", E.APPLICATIONS = "APPLICATIONS", E.LAYOUTS = "LAYOUTS", E.BILLING = "BILLING", E.AI_SETTINGS = "AI_SETTINGS", E.AI = "AI", E.VIEWS = "VIEWS", E.UPLOAD_FILE = "UPLOAD_FILE", E.DOWNLOAD_FILE = "DOWNLOAD_FILE", E.SEND_EMAIL_TOOL = "SEND_EMAIL_TOOL", E.HTTP_REQUEST_TOOL = "HTTP_REQUEST_TOOL", E.CODE_INTERPRETER_TOOL = "CODE_INTERPRETER_TOOL", E.IMPORT_CSV = "IMPORT_CSV", E.EXPORT_CSV = "EXPORT_CSV", E.CONNECTED_ACCOUNTS = "CONNECTED_ACCOUNTS", E.PROFILE_INFORMATION = "PROFILE_INFORMATION", E))(D || {}), S = /* @__PURE__ */ ((E) => (E.READ_ALL_OBJECT_RECORDS = "READ_ALL_OBJECT_RECORDS", E.UPDATE_ALL_OBJECT_RECORDS = "UPDATE_ALL_OBJECT_RECORDS", E.SOFT_DELETE_ALL_OBJECT_RECORDS = "SOFT_DELETE_ALL_OBJECT_RECORDS", E.DESTROY_ALL_OBJECT_RECORDS = "DESTROY_ALL_OBJECT_RECORDS", E))(S || {});
10
- const U = 60, P = 200, G = 60, K = /^['"](.*)['"]$/, Y = {
8
+ }, L = "https://docs.twenty.com", R = "en", N = [
9
+ R,
10
+ "fr",
11
+ "ar",
12
+ "cs",
13
+ "de",
14
+ "es",
15
+ "it",
16
+ "ja",
17
+ "ko",
18
+ "pt",
19
+ "ro",
20
+ "ru",
21
+ "tr",
22
+ "zh"
23
+ ], I = "id", M = 3, U = "FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED", P = 10, B = 10, G = 1, K = 9;
24
+ var S = /* @__PURE__ */ ((E) => (E.API_KEYS_AND_WEBHOOKS = "API_KEYS_AND_WEBHOOKS", E.WORKSPACE = "WORKSPACE", E.WORKSPACE_MEMBERS = "WORKSPACE_MEMBERS", E.ROLES = "ROLES", E.DATA_MODEL = "DATA_MODEL", E.SECURITY = "SECURITY", E.WORKFLOWS = "WORKFLOWS", E.IMPERSONATE = "IMPERSONATE", E.SSO_BYPASS = "SSO_BYPASS", E.APPLICATIONS = "APPLICATIONS", E.MARKETPLACE_APPS = "MARKETPLACE_APPS", E.LAYOUTS = "LAYOUTS", E.BILLING = "BILLING", E.AI_SETTINGS = "AI_SETTINGS", E.AI = "AI", E.VIEWS = "VIEWS", E.UPLOAD_FILE = "UPLOAD_FILE", E.DOWNLOAD_FILE = "DOWNLOAD_FILE", E.SEND_EMAIL_TOOL = "SEND_EMAIL_TOOL", E.HTTP_REQUEST_TOOL = "HTTP_REQUEST_TOOL", E.CODE_INTERPRETER_TOOL = "CODE_INTERPRETER_TOOL", E.IMPORT_CSV = "IMPORT_CSV", E.EXPORT_CSV = "EXPORT_CSV", E.CONNECTED_ACCOUNTS = "CONNECTED_ACCOUNTS", E.PROFILE_INFORMATION = "PROFILE_INFORMATION", E))(S || {}), _ = /* @__PURE__ */ ((E) => (E.READ_ALL_OBJECT_RECORDS = "READ_ALL_OBJECT_RECORDS", E.UPDATE_ALL_OBJECT_RECORDS = "UPDATE_ALL_OBJECT_RECORDS", E.SOFT_DELETE_ALL_OBJECT_RECORDS = "SOFT_DELETE_ALL_OBJECT_RECORDS", E.DESTROY_ALL_OBJECT_RECORDS = "DESTROY_ALL_OBJECT_RECORDS", E))(_ || {});
25
+ const t = 60, Y = 200, W = 60, F = /^['"](.*)['"]$/, H = {
11
26
  CONNECT: "connect",
12
27
  CONNECT_WHERE: "where",
13
28
  DISCONNECT: "disconnect"
14
- }, W = [
29
+ }, V = [
15
30
  "person",
16
31
  "company",
17
32
  "opportunity",
18
33
  "note",
19
34
  "task"
20
- ], t = "https://twenty-companies.com", F = "https://twenty-icons.com", H = 40;
35
+ ], Z = "https://twenty-companies.com", J = "https://twenty-icons.com", X = 40;
21
36
  export {
22
- Q as COMPOSITE_FIELD_TYPE_SUB_FIELDS_NAMES,
23
- h as CURRENCY_CODE_LABELS,
24
- J as CalendarStartDay,
25
- R as CurrencyCode,
26
- _ as DATE_TYPE_FORMAT,
37
+ v as COMPOSITE_FIELD_TYPE_SUB_FIELDS_NAMES,
38
+ x as CURRENCY_CODE_LABELS,
39
+ w as CalendarStartDay,
40
+ D as CurrencyCode,
41
+ A as DATE_TYPE_FORMAT,
27
42
  O as DEFAULT_NUMBER_OF_GROUPS_LIMIT,
28
- A as DEFAULT_RELATIVE_DATE_FILTER_VALUE,
29
- T as FIELD_FOR_TOTAL_COUNT_AGGREGATE_OPERATION,
30
- N as FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED,
31
- v as GROUP_BY_DATE_GRANULARITY_THAT_REQUIRE_TIME_ZONE,
32
- w as LABEL_IDENTIFIER_FIELD_METADATA_TYPES,
33
- L as MAX_OPTIONS_TO_DISPLAY,
34
- I as MULTI_ITEM_FIELD_DEFAULT_MAX_VALUES,
35
- M as MULTI_ITEM_FIELD_MIN_MAX_VALUES,
36
- B as MUTATION_MAX_MERGE_RECORDS,
37
- D as PermissionFlagType,
38
- S as PermissionsOnAllObjectRecords,
39
- U as QUERY_DEFAULT_LIMIT_RECORDS,
40
- P as QUERY_MAX_RECORDS,
41
- G as QUERY_MAX_RECORDS_FROM_RELATION,
42
- K as QUOTED_STRING_REGEX,
43
- x as RATING_VALUES,
44
- Y as RELATION_NESTED_QUERY_KEYWORDS,
45
- W as STANDARD_OBJECT_RECORDS_UNDER_OBJECT_RECORDS_PERMISSIONS,
46
- t as TWENTY_COMPANIES_BASE_URL,
47
- F as TWENTY_ICONS_BASE_URL,
48
- H as VIEW_GROUP_VISIBLE_OPTIONS_MAX
43
+ T as DEFAULT_RELATIVE_DATE_FILTER_VALUE,
44
+ L as DOCUMENTATION_BASE_URL,
45
+ R as DOCUMENTATION_DEFAULT_LANGUAGE,
46
+ k as DOCUMENTATION_DEFAULT_PATH,
47
+ z as DOCUMENTATION_PATHS,
48
+ N as DOCUMENTATION_SUPPORTED_LANGUAGES,
49
+ I as FIELD_FOR_TOTAL_COUNT_AGGREGATE_OPERATION,
50
+ U as FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED,
51
+ P as FILES_FIELD_MAX_NUMBER_OF_VALUES,
52
+ $ as GROUP_BY_DATE_GRANULARITY_THAT_REQUIRE_TIME_ZONE,
53
+ q as LABEL_IDENTIFIER_FIELD_METADATA_TYPES,
54
+ M as MAX_OPTIONS_TO_DISPLAY,
55
+ B as MULTI_ITEM_FIELD_DEFAULT_MAX_VALUES,
56
+ G as MULTI_ITEM_FIELD_MIN_MAX_VALUES,
57
+ K as MUTATION_MAX_MERGE_RECORDS,
58
+ S as PermissionFlagType,
59
+ _ as PermissionsOnAllObjectRecords,
60
+ t as QUERY_DEFAULT_LIMIT_RECORDS,
61
+ Y as QUERY_MAX_RECORDS,
62
+ W as QUERY_MAX_RECORDS_FROM_RELATION,
63
+ F as QUOTED_STRING_REGEX,
64
+ a as RATING_VALUES,
65
+ H as RELATION_NESTED_QUERY_KEYWORDS,
66
+ V as STANDARD_OBJECT_RECORDS_UNDER_OBJECT_RECORDS_PERMISSIONS,
67
+ Z as TWENTY_COMPANIES_BASE_URL,
68
+ J as TWENTY_ICONS_BASE_URL,
69
+ X as VIEW_GROUP_VISIBLE_OPTIONS_MAX
49
70
  };
@@ -11,7 +11,7 @@ type SimplifiedFlatObjectMetadata = {
11
11
  universalIdentifier: string;
12
12
  applicationId: string | null;
13
13
  } & {
14
- fieldMetadataIds: string[];
14
+ fieldIds: string[];
15
15
  indexMetadataIds: string[];
16
16
  viewIds: string[];
17
17
  };
@@ -1 +1 @@
1
- {"version":3,"file":"database-event-payload.type.d.ts","sourceRoot":"","sources":["../../src/database-events/database-event-payload.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,6CAA6C,CAAC;AAErF,KAAK,4BAA4B,GAAG;IAClC,EAAE,EAAE,MAAM,CAAC;IACX,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B,GAAG;IACF,gBAAgB,EAAE,MAAM,EAAE,CAAC;IAC3B,gBAAgB,EAAE,MAAM,EAAE,CAAC;IAC3B,OAAO,EAAE,MAAM,EAAE,CAAC;CACnB,CAAC;AAEF,KAAK,mBAAmB,CAAC,cAAc,IAAI;IACzC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,4BAA4B,CAAC;IAC7C,MAAM,EAAE,cAAc,EAAE,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,oBAAoB,CAAC,CAAC,GAAG,iBAAiB,IAAI,IAAI,CAC5D,mBAAmB,CAAC,CAAC,CAAC,EACtB,QAAQ,CACT,GACC,CAAC,CAAC"}
1
+ {"version":3,"file":"database-event-payload.type.d.ts","sourceRoot":"","sources":["../../src/database-events/database-event-payload.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,6CAA6C,CAAC;AAErF,KAAK,4BAA4B,GAAG;IAClC,EAAE,EAAE,MAAM,CAAC;IACX,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B,GAAG;IACF,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,gBAAgB,EAAE,MAAM,EAAE,CAAC;IAC3B,OAAO,EAAE,MAAM,EAAE,CAAC;CACnB,CAAC;AAEF,KAAK,mBAAmB,CAAC,cAAc,IAAI;IACzC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,4BAA4B,CAAC;IAC7C,MAAM,EAAE,cAAc,EAAE,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,oBAAoB,CAAC,CAAC,GAAG,iBAAiB,IAAI,IAAI,CAC5D,mBAAmB,CAAC,CAAC,CAAC,EACtB,QAAQ,CACT,GACC,CAAC,CAAC"}
@@ -1,8 +1,12 @@
1
1
  import { ObjectRecordBaseEvent } from './object-record.base.event';
2
+ import { ObjectRecordDiff } from './object-record-diff';
2
3
 
3
4
  export declare class ObjectRecordDeleteEvent<T = object> extends ObjectRecordBaseEvent<T> {
4
5
  properties: {
5
6
  before: T;
7
+ after: T;
8
+ updatedFields: string[];
9
+ diff: Partial<ObjectRecordDiff<T>>;
6
10
  };
7
11
  }
8
12
  //# sourceMappingURL=object-record-delete.event.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"object-record-delete.event.d.ts","sourceRoot":"","sources":["../../src/database-events/object-record-delete.event.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,4CAA4C,CAAC;AAEnF,qBAAa,uBAAuB,CAClC,CAAC,GAAG,MAAM,CACV,SAAQ,qBAAqB,CAAC,CAAC,CAAC;IACxB,UAAU,EAAE;QAClB,MAAM,EAAE,CAAC,CAAC;KACX,CAAC;CACH"}
1
+ {"version":3,"file":"object-record-delete.event.d.ts","sourceRoot":"","sources":["../../src/database-events/object-record-delete.event.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAC7E,OAAO,EAAE,qBAAqB,EAAE,MAAM,4CAA4C,CAAC;AAEnF,qBAAa,uBAAuB,CAClC,CAAC,GAAG,MAAM,CACV,SAAQ,qBAAqB,CAAC,CAAC,CAAC;IACxB,UAAU,EAAE;QAClB,MAAM,EAAE,CAAC,CAAC;QACV,KAAK,EAAE,CAAC,CAAC;QACT,aAAa,EAAE,MAAM,EAAE,CAAC;QACxB,IAAI,EAAE,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC;KACpC,CAAC;CACH"}
@@ -1,8 +1,12 @@
1
+ import { ObjectRecordDiff } from './object-record-diff';
1
2
  import { ObjectRecordCreateEvent } from './object-record-create.event';
2
3
 
3
4
  export declare class ObjectRecordRestoreEvent<T = object> extends ObjectRecordCreateEvent<T> {
4
5
  properties: {
6
+ before: T;
5
7
  after: T;
8
+ updatedFields: string[];
9
+ diff: Partial<ObjectRecordDiff<T>>;
6
10
  };
7
11
  }
8
12
  //# sourceMappingURL=object-record-restore.event.d.ts.map