@umbraco-cms/backoffice 17.2.1 → 17.3.0-rc

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 (972) hide show
  1. package/custom-elements.json +514 -147
  2. package/dist-cms/apps/app/app-auth.controller.d.ts +2 -1
  3. package/dist-cms/apps/app/app-auth.controller.js +9 -32
  4. package/dist-cms/apps/app/app-auth.element.d.ts +11 -0
  5. package/dist-cms/apps/app/app-auth.element.js +19 -0
  6. package/dist-cms/apps/app/app.element.d.ts +5 -1
  7. package/dist-cms/apps/app/app.element.js +43 -45
  8. package/dist-cms/assets/lang/ar.js +2 -0
  9. package/dist-cms/assets/lang/bs.js +1 -0
  10. package/dist-cms/assets/lang/cs.js +1 -0
  11. package/dist-cms/assets/lang/cy.js +4 -2
  12. package/dist-cms/assets/lang/da.js +9 -0
  13. package/dist-cms/assets/lang/de.js +5 -1
  14. package/dist-cms/assets/lang/en.js +20 -1
  15. package/dist-cms/assets/lang/es.js +5 -1
  16. package/dist-cms/assets/lang/fr.js +4 -2
  17. package/dist-cms/assets/lang/he.js +2 -0
  18. package/dist-cms/assets/lang/hr.js +1 -0
  19. package/dist-cms/assets/lang/it.js +3 -0
  20. package/dist-cms/assets/lang/ja.js +61 -23
  21. package/dist-cms/assets/lang/ko.js +2 -0
  22. package/dist-cms/assets/lang/nb.js +1 -0
  23. package/dist-cms/assets/lang/nl.js +4 -1
  24. package/dist-cms/assets/lang/pl.js +3 -1
  25. package/dist-cms/assets/lang/pt-br.js +2 -0
  26. package/dist-cms/assets/lang/pt.js +4 -0
  27. package/dist-cms/assets/lang/ro.js +4 -0
  28. package/dist-cms/assets/lang/ru.js +3 -1
  29. package/dist-cms/assets/lang/sv.js +1 -0
  30. package/dist-cms/assets/lang/tr.js +1 -0
  31. package/dist-cms/assets/lang/uk.js +3 -1
  32. package/dist-cms/assets/lang/vi.js +4 -0
  33. package/dist-cms/assets/lang/zh-tw.js +1 -0
  34. package/dist-cms/assets/lang/zh.js +1 -0
  35. package/dist-cms/external/openid/src/index.d.ts +242 -17
  36. package/dist-cms/external/openid/src/index.js +245 -16
  37. package/dist-cms/external/rxjs/index.d.ts +1 -1
  38. package/dist-cms/external/rxjs/index.js +1 -1
  39. package/dist-cms/external/uui/package.json +2 -2
  40. package/dist-cms/libs/context-api/consume/context-consumer.js +58 -32
  41. package/dist-cms/packages/block/block/conditions/block-workspace-is-readonly.condition.d.ts +8 -0
  42. package/dist-cms/packages/block/block/conditions/block-workspace-is-readonly.condition.js +15 -0
  43. package/dist-cms/packages/block/block/conditions/manifests.js +7 -0
  44. package/dist-cms/packages/block/block/conditions/types.d.ts +4 -1
  45. package/dist-cms/packages/block/block/context/block-manager.context.d.ts +1 -0
  46. package/dist-cms/packages/block/block/context/block-manager.context.js +63 -13
  47. package/dist-cms/packages/block/block/events/block-inserted.event.d.ts +14 -0
  48. package/dist-cms/packages/block/block/events/block-inserted.event.js +6 -0
  49. package/dist-cms/packages/block/block/events/index.d.ts +1 -0
  50. package/dist-cms/packages/block/block/events/index.js +1 -0
  51. package/dist-cms/packages/block/block/index.d.ts +1 -0
  52. package/dist-cms/packages/block/block/index.js +1 -0
  53. package/dist-cms/packages/block/block/workspace/block-element-manager.d.ts +2 -2
  54. package/dist-cms/packages/block/block/workspace/block-element-manager.js +4 -7
  55. package/dist-cms/packages/block/block/workspace/block-workspace.context.d.ts +4 -0
  56. package/dist-cms/packages/block/block/workspace/block-workspace.context.js +14 -1
  57. package/dist-cms/packages/block/block/workspace/manifests.js +8 -0
  58. package/dist-cms/packages/block/block/workspace/views/edit/block-workspace-view-edit-content-no-router.element.d.ts +1 -0
  59. package/dist-cms/packages/block/block/workspace/views/edit/block-workspace-view-edit-content-no-router.element.js +127 -20
  60. package/dist-cms/packages/block/block/workspace/views/edit/block-workspace-view-edit-property.element.d.ts +1 -0
  61. package/dist-cms/packages/block/block/workspace/views/edit/block-workspace-view-edit-property.element.js +12 -0
  62. package/dist-cms/packages/block/block/workspace/views/edit/block-workspace-view-edit.element.d.ts +1 -0
  63. package/dist-cms/packages/block/block/workspace/views/edit/block-workspace-view-edit.element.js +74 -3
  64. package/dist-cms/packages/block/block-grid/block-grid-manager/block-grid-manager.context.js +1 -0
  65. package/dist-cms/packages/block/block-grid/components/block-grid-block/block-grid-block.element.js +3 -2
  66. package/dist-cms/packages/block/block-grid/components/block-grid-block-inline/block-grid-block-inline.element.d.ts +1 -0
  67. package/dist-cms/packages/block/block-grid/components/block-grid-block-inline/block-grid-block-inline.element.js +21 -8
  68. package/dist-cms/packages/block/block-grid/components/block-grid-block-unsupported/block-grid-block-unsupported.element.js +1 -3
  69. package/dist-cms/packages/block/block-grid/components/block-grid-entries/block-grid-entries.context.js +13 -2
  70. package/dist-cms/packages/block/block-grid/components/block-grid-entries/block-grid-entries.element.d.ts +1 -1
  71. package/dist-cms/packages/block/block-grid/components/block-grid-entries/block-grid-entries.element.js +39 -11
  72. package/dist-cms/packages/block/block-grid/components/block-grid-entry/block-grid-entry.element.js +26 -12
  73. package/dist-cms/packages/block/block-grid/components/ref-grid-block/ref-grid-block.element.js +4 -1
  74. package/dist-cms/packages/block/block-grid/property-actions/manifests.js +8 -1
  75. package/dist-cms/packages/block/block-grid/property-editors/block-grid-editor/property-editor-ui-block-grid.element.js +5 -0
  76. package/dist-cms/packages/block/block-list/components/block-list-entry/block-list-entry.element.js +19 -7
  77. package/dist-cms/packages/block/block-list/components/inline-list-block/inline-list-block.element.js +25 -1
  78. package/dist-cms/packages/block/block-list/components/ref-list-block/ref-list-block.element.js +5 -0
  79. package/dist-cms/packages/block/block-list/components/unsupported-list-block/unsupported-list-block.element.js +1 -0
  80. package/dist-cms/packages/block/block-list/context/block-list-entries.context.js +21 -3
  81. package/dist-cms/packages/block/block-list/context/block-list-manager.context.js +1 -0
  82. package/dist-cms/packages/block/block-list/manifests.js +8 -0
  83. package/dist-cms/packages/block/block-list/property-editors/block-list-editor/property-editor-ui-block-list.element.d.ts +1 -1
  84. package/dist-cms/packages/block/block-list/property-editors/block-list-editor/property-editor-ui-block-list.element.js +48 -30
  85. package/dist-cms/packages/block/block-rte/components/block-rte-entry/block-rte-entry.element.d.ts +2 -1
  86. package/dist-cms/packages/block/block-rte/components/block-rte-entry/block-rte-entry.element.js +81 -9
  87. package/dist-cms/packages/block/block-rte/context/block-rte-entries.context.d.ts +10 -3
  88. package/dist-cms/packages/block/block-rte/context/block-rte-entries.context.js +80 -15
  89. package/dist-cms/packages/block/block-rte/context/block-rte-entry.context.js +1 -1
  90. package/dist-cms/packages/block/block-rte/context/block-rte-manager.context.d.ts +14 -0
  91. package/dist-cms/packages/block/block-rte/context/block-rte-manager.context.js +36 -0
  92. package/dist-cms/packages/block/block-rte/property-value-cloner/property-value-cloner-block-rte.cloner.js +22 -12
  93. package/dist-cms/packages/block/block-single/components/block-single-entry/block-single-entry.element.js +13 -4
  94. package/dist-cms/packages/block/block-single/components/inline-single-block/inline-single-block.element.js +1 -0
  95. package/dist-cms/packages/block/block-single/components/ref-single-block/ref-single-block.element.js +4 -1
  96. package/dist-cms/packages/block/block-single/context/block-single-entries.context.js +20 -2
  97. package/dist-cms/packages/block/block-single/context/block-single-manager.context.js +1 -0
  98. package/dist-cms/packages/block/block-single/property-editors/block-single-editor/property-editor-ui-block-single.element.js +22 -24
  99. package/dist-cms/packages/block/vite.config.js +1 -0
  100. package/dist-cms/packages/content/content/audit-log/audit-log-action/audit-log-action-default.kind.d.ts +3 -0
  101. package/dist-cms/packages/content/content/audit-log/audit-log-action/audit-log-action-default.kind.js +18 -0
  102. package/dist-cms/packages/content/content/audit-log/audit-log-action/audit-log-action.element.d.ts +19 -0
  103. package/dist-cms/packages/content/content/audit-log/audit-log-action/audit-log-action.element.js +54 -0
  104. package/dist-cms/packages/content/content/audit-log/audit-log-action/audit-log-action.extension.d.ts +14 -0
  105. package/dist-cms/packages/content/content/audit-log/audit-log-action/content-rollback.audit-log-action.kind.d.ts +3 -0
  106. package/dist-cms/packages/content/content/audit-log/audit-log-action/content-rollback.audit-log-action.kind.js +22 -0
  107. package/dist-cms/packages/content/content/audit-log/audit-log-action/manifests.d.ts +2 -0
  108. package/dist-cms/packages/content/content/audit-log/audit-log-action/manifests.js +3 -0
  109. package/dist-cms/packages/content/content/audit-log/audit-log-action/types.d.ts +17 -0
  110. package/dist-cms/packages/content/content/audit-log/audit-log-action/types.js +1 -0
  111. package/dist-cms/packages/content/content/audit-log/index.d.ts +4 -0
  112. package/dist-cms/packages/content/content/audit-log/index.js +2 -0
  113. package/dist-cms/packages/content/content/audit-log/info-app/content-audit-log-workspace-info-app.element.d.ts +21 -0
  114. package/dist-cms/packages/content/content/audit-log/info-app/content-audit-log-workspace-info-app.element.js +220 -0
  115. package/dist-cms/packages/content/content/audit-log/info-app/content-audit-log-workspace-info-app.kind.d.ts +2 -0
  116. package/dist-cms/packages/content/content/audit-log/info-app/content-audit-log-workspace-info-app.kind.js +12 -0
  117. package/dist-cms/packages/content/content/audit-log/info-app/manifests.d.ts +2 -0
  118. package/dist-cms/packages/content/content/audit-log/info-app/manifests.js +2 -0
  119. package/dist-cms/packages/content/content/audit-log/info-app/types.d.ts +14 -0
  120. package/dist-cms/packages/content/content/audit-log/info-app/types.js +1 -0
  121. package/dist-cms/packages/content/content/audit-log/manifests.d.ts +2 -0
  122. package/dist-cms/packages/content/content/audit-log/manifests.js +6 -0
  123. package/dist-cms/packages/content/content/collection/manager/content-collection-manager.controller.js +7 -0
  124. package/dist-cms/packages/content/content/components/property-type-based-property/property-type-based-property.context.d.ts +1 -3
  125. package/dist-cms/packages/content/content/components/property-type-based-property/property-type-based-property.element.d.ts +8 -4
  126. package/dist-cms/packages/content/content/components/property-type-based-property/property-type-based-property.element.js +56 -44
  127. package/dist-cms/packages/content/content/global-components/content-workspace-property.element.d.ts +1 -0
  128. package/dist-cms/packages/content/content/global-components/content-workspace-property.element.js +12 -0
  129. package/dist-cms/packages/content/content/index.d.ts +2 -0
  130. package/dist-cms/packages/content/content/index.js +2 -0
  131. package/dist-cms/packages/content/content/manifests.js +4 -0
  132. package/dist-cms/packages/content/content/rollback/entity-action/content-rollback.action.d.ts +7 -0
  133. package/dist-cms/packages/content/content/rollback/entity-action/content-rollback.action.js +26 -0
  134. package/dist-cms/packages/content/content/rollback/entity-action/content-rollback.action.kind.d.ts +3 -0
  135. package/dist-cms/packages/content/content/rollback/entity-action/content-rollback.action.kind.js +23 -0
  136. package/dist-cms/packages/content/content/rollback/entity-action/manifests.d.ts +1 -0
  137. package/dist-cms/packages/content/content/rollback/entity-action/manifests.js +2 -0
  138. package/dist-cms/packages/content/content/rollback/entity-action/types.d.ts +14 -0
  139. package/dist-cms/packages/content/content/rollback/entity-action/types.js +1 -0
  140. package/dist-cms/packages/content/content/rollback/index.d.ts +6 -0
  141. package/dist-cms/packages/content/content/rollback/index.js +2 -0
  142. package/dist-cms/packages/content/content/rollback/manifests.d.ts +1 -0
  143. package/dist-cms/packages/content/content/rollback/manifests.js +3 -0
  144. package/dist-cms/packages/content/content/rollback/modal/constants.d.ts +4 -0
  145. package/dist-cms/packages/content/content/rollback/modal/constants.js +8 -0
  146. package/dist-cms/packages/content/content/rollback/modal/content-rollback-modal.element.d.ts +22 -0
  147. package/dist-cms/packages/content/content/rollback/modal/content-rollback-modal.element.js +509 -0
  148. package/dist-cms/packages/content/content/rollback/modal/manifests.d.ts +1 -0
  149. package/dist-cms/packages/content/content/rollback/modal/manifests.js +9 -0
  150. package/dist-cms/packages/content/content/rollback/modal/types.d.ts +6 -0
  151. package/dist-cms/packages/content/content/rollback/modal/types.js +1 -0
  152. package/dist-cms/packages/content/content/rollback/rollback-repository.interface.d.ts +21 -0
  153. package/dist-cms/packages/content/content/rollback/rollback-repository.interface.js +1 -0
  154. package/dist-cms/packages/content/content/rollback/types.d.ts +20 -0
  155. package/dist-cms/packages/content/content/rollback/types.js +1 -0
  156. package/dist-cms/packages/content/content/types.d.ts +1 -0
  157. package/dist-cms/packages/content/content/workspace/content-detail-workspace-base.d.ts +3 -0
  158. package/dist-cms/packages/content/content/workspace/content-detail-workspace-base.js +53 -10
  159. package/dist-cms/packages/content/content-type/constants.d.ts +1 -0
  160. package/dist-cms/packages/content/content-type/constants.js +1 -0
  161. package/dist-cms/packages/content/content-type/entity-content-type/conditions/constants.d.ts +1 -0
  162. package/dist-cms/packages/content/content-type/entity-content-type/conditions/constants.js +1 -0
  163. package/dist-cms/packages/content/content-type/entity-content-type/conditions/manifests.d.ts +1 -0
  164. package/dist-cms/packages/content/content-type/entity-content-type/conditions/manifests.js +2 -0
  165. package/dist-cms/packages/content/content-type/entity-content-type/conditions/types.d.ts +1 -0
  166. package/dist-cms/packages/content/content-type/entity-content-type/conditions/unique/constants.d.ts +4 -0
  167. package/dist-cms/packages/content/content-type/entity-content-type/conditions/unique/constants.js +4 -0
  168. package/dist-cms/packages/content/content-type/entity-content-type/conditions/unique/entity-content-type-unique.condition.d.ts +7 -0
  169. package/dist-cms/packages/content/content-type/entity-content-type/conditions/unique/entity-content-type-unique.condition.js +26 -0
  170. package/dist-cms/packages/content/content-type/entity-content-type/conditions/unique/manifests.d.ts +1 -0
  171. package/dist-cms/packages/content/content-type/entity-content-type/conditions/unique/manifests.js +10 -0
  172. package/dist-cms/packages/content/content-type/entity-content-type/conditions/unique/types.d.ts +21 -0
  173. package/dist-cms/packages/content/content-type/entity-content-type/constants.d.ts +1 -0
  174. package/dist-cms/packages/content/content-type/entity-content-type/constants.js +1 -0
  175. package/dist-cms/packages/content/content-type/entity-content-type/context/entity-content-type.context-token.d.ts +3 -0
  176. package/dist-cms/packages/content/content-type/entity-content-type/context/entity-content-type.context-token.js +2 -0
  177. package/dist-cms/packages/content/content-type/entity-content-type/context/entity-content-type.context.d.ts +12 -0
  178. package/dist-cms/packages/content/content-type/entity-content-type/context/entity-content-type.context.js +26 -0
  179. package/dist-cms/packages/content/content-type/entity-content-type/context/index.d.ts +2 -0
  180. package/dist-cms/packages/content/content-type/entity-content-type/context/index.js +2 -0
  181. package/dist-cms/packages/content/content-type/entity-content-type/index.d.ts +3 -0
  182. package/dist-cms/packages/content/content-type/entity-content-type/index.js +2 -0
  183. package/dist-cms/packages/content/content-type/entity-content-type/manifests.d.ts +1 -0
  184. package/dist-cms/packages/content/content-type/entity-content-type/manifests.js +2 -0
  185. package/dist-cms/packages/content/content-type/entity-content-type/types.d.ts +1 -0
  186. package/dist-cms/packages/content/content-type/global-components/content-type-workspace-editor-header.element.js +9 -2
  187. package/dist-cms/packages/content/content-type/index.d.ts +1 -0
  188. package/dist-cms/packages/content/content-type/index.js +1 -0
  189. package/dist-cms/packages/content/content-type/manifests.js +7 -1
  190. package/dist-cms/packages/content/content-type/repository/structure/content-type-structure-data-source.interface.d.ts +2 -0
  191. package/dist-cms/packages/content/content-type/repository/structure/content-type-structure-repository-base.d.ts +2 -2
  192. package/dist-cms/packages/content/content-type/repository/structure/content-type-structure-repository-base.js +2 -3
  193. package/dist-cms/packages/content/content-type/repository/structure/content-type-structure-repository.interface.d.ts +2 -0
  194. package/dist-cms/packages/content/content-type/structure/content-type-move-root-containers-into-first-tab-helper.class.d.ts +1 -1
  195. package/dist-cms/packages/content/content-type/structure/content-type-move-root-containers-into-first-tab-helper.class.js +16 -6
  196. package/dist-cms/packages/content/content-type/structure/content-type-structure-manager.class.d.ts +21 -0
  197. package/dist-cms/packages/content/content-type/structure/content-type-structure-manager.class.js +95 -21
  198. package/dist-cms/packages/content/content-type/types.d.ts +2 -3
  199. package/dist-cms/packages/content/content-type/workspace/views/design/content-type-design-editor-group.element.js +2 -0
  200. package/dist-cms/packages/content/content-type/workspace/views/design/content-type-design-editor-property.element.js +14 -11
  201. package/dist-cms/packages/content/content-type/workspace/views/design/content-type-design-editor-tab.element.js +1 -0
  202. package/dist-cms/packages/content/property-type/workspace/views/settings/property-workspace-view-settings.element.js +1 -1
  203. package/dist-cms/packages/core/audit-log/audit-log-repository.interface.d.ts +3 -2
  204. package/dist-cms/packages/core/audit-log/index.d.ts +1 -1
  205. package/dist-cms/packages/core/audit-log/types.d.ts +12 -0
  206. package/dist-cms/packages/core/auth/auth.context.d.ts +69 -18
  207. package/dist-cms/packages/core/auth/auth.context.js +537 -71
  208. package/dist-cms/packages/core/auth/components/index.d.ts +1 -0
  209. package/dist-cms/packages/core/auth/components/index.js +1 -0
  210. package/dist-cms/packages/core/auth/components/umb-auth-view.element.d.ts +26 -0
  211. package/dist-cms/packages/core/auth/components/umb-auth-view.element.js +287 -0
  212. package/dist-cms/packages/core/auth/constants.d.ts +3 -0
  213. package/dist-cms/packages/core/auth/constants.js +3 -0
  214. package/dist-cms/packages/core/auth/controllers/auth-session-timeout.controller.d.ts +1 -2
  215. package/dist-cms/packages/core/auth/controllers/auth-session-timeout.controller.js +96 -82
  216. package/dist-cms/packages/core/auth/modals/umb-app-auth-modal.element.d.ts +2 -9
  217. package/dist-cms/packages/core/auth/modals/umb-app-auth-modal.element.js +16 -256
  218. package/dist-cms/packages/core/auth/modals/umb-auth-timeout-modal.element.js +5 -1
  219. package/dist-cms/packages/core/auth/modals/umb-auth-timeout-modal.token.d.ts +2 -0
  220. package/dist-cms/packages/core/auth/umb-auth-client.d.ts +49 -0
  221. package/dist-cms/packages/core/auth/umb-auth-client.js +172 -0
  222. package/dist-cms/packages/core/backend-api/sdk.gen.d.ts +1787 -1
  223. package/dist-cms/packages/core/backend-api/sdk.gen.js +1962 -0
  224. package/dist-cms/packages/core/backend-api/types.gen.d.ts +454 -2
  225. package/dist-cms/packages/core/backend-api/types.gen.js +7 -0
  226. package/dist-cms/packages/core/collection/collection-item-picker-modal/collection-item-picker-modal.element.js +6 -0
  227. package/dist-cms/packages/core/collection/collection-item-picker-modal/types.d.ts +3 -0
  228. package/dist-cms/packages/core/collection/components/collection-filter-field.element.js +1 -0
  229. package/dist-cms/packages/core/collection/components/pagination/collection-pagination.element.d.ts +2 -0
  230. package/dist-cms/packages/core/collection/components/pagination/collection-pagination.element.js +21 -1
  231. package/dist-cms/packages/core/collection/default/collection-default.context.js +22 -20
  232. package/dist-cms/packages/core/collection/item/entity-collection-item-card/default-collection-item-card.element.d.ts +2 -2
  233. package/dist-cms/packages/core/collection/item/entity-collection-item-card/default-collection-item-card.element.js +1 -0
  234. package/dist-cms/packages/core/collection/item/entity-collection-item-ref/default-collection-item-ref.element.d.ts +4 -1
  235. package/dist-cms/packages/core/collection/item/entity-collection-item-ref/default-collection-item-ref.element.js +1 -0
  236. package/dist-cms/packages/core/collection/item/umb-entity-collection-item-element-base.element.d.ts +1 -0
  237. package/dist-cms/packages/core/collection/item/umb-entity-collection-item-element-base.element.js +19 -0
  238. package/dist-cms/packages/core/collection/types.d.ts +1 -1
  239. package/dist-cms/packages/core/collection/view/card/card-collection-view.element.js +1 -4
  240. package/dist-cms/packages/core/collection/view/collection-view.manager.d.ts +2 -0
  241. package/dist-cms/packages/core/collection/view/collection-view.manager.js +14 -3
  242. package/dist-cms/packages/core/collection/view/ref/ref-collection-view.element.js +1 -4
  243. package/dist-cms/packages/core/collection/view/umb-collection-view-element-base.d.ts +7 -7
  244. package/dist-cms/packages/core/collection/view/umb-collection-view-element-base.js +1 -1
  245. package/dist-cms/packages/core/collection/workspace-view/collection-workspace-view.element.js +1 -0
  246. package/dist-cms/packages/core/components/dropdown/dropdown.element.d.ts +1 -0
  247. package/dist-cms/packages/core/components/dropdown/dropdown.element.js +6 -1
  248. package/dist-cms/packages/core/components/entity-actions-bundle/entity-actions-bundle.element.d.ts +12 -4
  249. package/dist-cms/packages/core/components/entity-actions-bundle/entity-actions-bundle.element.js +67 -19
  250. package/dist-cms/packages/core/culture/manifests.d.ts +1 -1
  251. package/dist-cms/packages/core/entity-action/entity-action-list.element.d.ts +10 -1
  252. package/dist-cms/packages/core/entity-action/entity-action-list.element.js +45 -20
  253. package/dist-cms/packages/core/entity-action/global-components/entity-actions-dropdown/entity-actions-dropdown.element.d.ts +0 -1
  254. package/dist-cms/packages/core/entity-action/global-components/entity-actions-dropdown/entity-actions-dropdown.element.js +5 -23
  255. package/dist-cms/packages/core/entity-bulk-action/common/duplicate-to/duplicate-to.action.kind.js +1 -1
  256. package/dist-cms/packages/core/entity-bulk-action/entity-bulk-action.element.js +1 -1
  257. package/dist-cms/packages/core/entity-item/entity-item-ref/default-item-ref.element.d.ts +4 -1
  258. package/dist-cms/packages/core/entity-item/entity-item-ref/default-item-ref.element.js +2 -1
  259. package/dist-cms/packages/core/entity-item/entity-item-ref/entity-item-ref.element.js +13 -1
  260. package/dist-cms/packages/{extension-insights → core/extension}/collection/extension-collection.element.d.ts +1 -1
  261. package/dist-cms/packages/{extension-insights → core/extension}/collection/extension-collection.element.js +5 -5
  262. package/dist-cms/packages/core/extension/collection/index.d.ts +2 -0
  263. package/dist-cms/packages/core/extension/collection/index.js +2 -0
  264. package/dist-cms/packages/core/extension/collection/repository/extension-collection.repository.d.ts +12 -0
  265. package/dist-cms/packages/core/extension/collection/repository/extension-collection.repository.js +49 -0
  266. package/dist-cms/packages/core/extension/collection/types.d.ts +13 -0
  267. package/dist-cms/packages/core/extension/collection/types.js +1 -0
  268. package/dist-cms/packages/core/extension/collection/views/manifests.d.ts +1 -0
  269. package/dist-cms/packages/{extension-insights → core/extension}/collection/views/manifests.js +2 -3
  270. package/dist-cms/packages/{extension-insights → core/extension}/collection/views/table/extension-table-collection-view.element.d.ts +1 -1
  271. package/dist-cms/packages/{extension-insights → core/extension}/collection/views/table/extension-table-collection-view.element.js +9 -9
  272. package/dist-cms/packages/core/extension/entity.d.ts +2 -0
  273. package/dist-cms/packages/core/extension/entity.js +1 -0
  274. package/dist-cms/packages/core/extension/global-components/index.d.ts +1 -0
  275. package/dist-cms/packages/core/extension/global-components/index.js +1 -0
  276. package/dist-cms/packages/core/extension/global-components/input-extension.element.d.ts +19 -0
  277. package/dist-cms/packages/core/extension/global-components/input-extension.element.js +73 -0
  278. package/dist-cms/packages/core/extension/index.d.ts +5 -0
  279. package/dist-cms/packages/core/extension/index.js +4 -0
  280. package/dist-cms/packages/core/extension/item/data/index.d.ts +2 -0
  281. package/dist-cms/packages/core/extension/item/data/index.js +2 -0
  282. package/dist-cms/packages/core/extension/item/data/item.data-source.d.ts +7 -0
  283. package/dist-cms/packages/core/extension/item/data/item.data-source.js +24 -0
  284. package/dist-cms/packages/core/extension/item/data/item.repository.d.ts +7 -0
  285. package/dist-cms/packages/core/extension/item/data/item.repository.js +9 -0
  286. package/dist-cms/packages/core/extension/item/data/item.store.context-token.d.ts +3 -0
  287. package/dist-cms/packages/core/extension/item/data/item.store.context-token.js +2 -0
  288. package/dist-cms/packages/core/extension/item/data/item.store.d.ts +17 -0
  289. package/dist-cms/packages/core/extension/item/data/item.store.js +18 -0
  290. package/dist-cms/packages/core/extension/item/data/manifests.d.ts +1 -0
  291. package/dist-cms/packages/core/extension/item/data/manifests.js +15 -0
  292. package/dist-cms/packages/core/extension/item/data/types.d.ts +6 -0
  293. package/dist-cms/packages/core/extension/item/data/types.js +1 -0
  294. package/dist-cms/packages/core/extension/item/index.d.ts +1 -0
  295. package/dist-cms/packages/core/extension/item/index.js +1 -0
  296. package/dist-cms/packages/core/extension/item/manifests.d.ts +1 -0
  297. package/dist-cms/packages/core/extension/item/manifests.js +2 -0
  298. package/dist-cms/packages/core/extension/item/types.d.ts +1 -0
  299. package/dist-cms/packages/core/extension/item/types.js +1 -0
  300. package/dist-cms/packages/core/extension/manifests.d.ts +1 -0
  301. package/dist-cms/packages/core/extension/manifests.js +8 -0
  302. package/dist-cms/packages/core/extension/picker-data-source/extension.picker-data-source.d.ts +29 -0
  303. package/dist-cms/packages/core/extension/picker-data-source/extension.picker-data-source.js +54 -0
  304. package/dist-cms/packages/core/extension/picker-data-source/index.d.ts +1 -0
  305. package/dist-cms/packages/core/extension/picker-data-source/index.js +1 -0
  306. package/dist-cms/packages/core/extension/picker-data-source/types.d.ts +4 -0
  307. package/dist-cms/packages/core/extension/picker-data-source/types.js +1 -0
  308. package/dist-cms/packages/core/extension/types.d.ts +2 -0
  309. package/dist-cms/packages/core/extension/types.js +1 -0
  310. package/dist-cms/packages/{extension-insights/entity-actions/unregister → core/extension/unregister/entity-action}/unregister-extension.action.d.ts +1 -1
  311. package/dist-cms/packages/{extension-insights/entity-actions/unregister → core/extension/unregister/entity-action}/unregister-extension.action.js +5 -5
  312. package/dist-cms/packages/{extension-insights/entity-actions → core/extension/unregister}/manifests.d.ts +1 -1
  313. package/dist-cms/packages/core/extension/unregister/manifests.js +2 -0
  314. package/dist-cms/packages/core/extension-registry/components/extension-slot/extension-slot.element.d.ts +172 -22
  315. package/dist-cms/packages/core/extension-registry/components/extension-slot/extension-slot.element.js +147 -27
  316. package/dist-cms/packages/core/extension-registry/components/extension-with-api-slot/extension-with-api-slot.element.d.ts +216 -35
  317. package/dist-cms/packages/core/extension-registry/components/extension-with-api-slot/extension-with-api-slot.element.js +168 -38
  318. package/dist-cms/packages/core/http-client/index.d.ts +14 -0
  319. package/dist-cms/packages/core/http-client/index.js +24 -4
  320. package/dist-cms/packages/core/icon-registry/icon-dictionary.json +1 -1
  321. package/dist-cms/packages/core/icon-registry/icons/icon-badge.d.ts +1 -1
  322. package/dist-cms/packages/core/icon-registry/icons/icon-badge.js +1 -1
  323. package/dist-cms/packages/core/lit-element/directives/destroy.lit-directive.d.ts +1 -0
  324. package/dist-cms/packages/core/lit-element/directives/destroy.lit-directive.js +17 -3
  325. package/dist-cms/packages/core/manifests.js +7 -1
  326. package/dist-cms/packages/core/modal/common/index.d.ts +1 -0
  327. package/dist-cms/packages/core/modal/common/index.js +1 -0
  328. package/dist-cms/packages/core/modal/common/info/index.d.ts +3 -0
  329. package/dist-cms/packages/core/modal/common/info/index.js +3 -0
  330. package/dist-cms/packages/core/modal/common/info/info-modal.controller.d.ts +9 -0
  331. package/dist-cms/packages/core/modal/common/info/info-modal.controller.js +11 -0
  332. package/dist-cms/packages/core/modal/common/info/info-modal.element.d.ts +16 -0
  333. package/dist-cms/packages/core/modal/common/info/info-modal.element.js +49 -0
  334. package/dist-cms/packages/core/modal/common/info/info-modal.token.d.ts +8 -0
  335. package/dist-cms/packages/core/modal/common/info/info-modal.token.js +6 -0
  336. package/dist-cms/packages/core/modal/common/info/manifests.d.ts +1 -0
  337. package/dist-cms/packages/core/modal/common/info/manifests.js +8 -0
  338. package/dist-cms/packages/core/modal/common/manifests.js +2 -0
  339. package/dist-cms/packages/core/modal/component/index.d.ts +3 -0
  340. package/dist-cms/packages/core/modal/component/index.js +3 -0
  341. package/dist-cms/packages/core/modal/component/persistent-modal-dialog.element.d.ts +16 -0
  342. package/dist-cms/packages/core/modal/component/persistent-modal-dialog.element.js +36 -0
  343. package/dist-cms/packages/core/modal/context/modal.context.js +1 -2
  344. package/dist-cms/packages/core/modal/index.d.ts +1 -2
  345. package/dist-cms/packages/core/modal/index.js +1 -2
  346. package/dist-cms/packages/core/models/index.d.ts +6 -0
  347. package/dist-cms/packages/core/picker/search/manager/picker-search.manager.d.ts +5 -0
  348. package/dist-cms/packages/core/picker/search/manager/picker-search.manager.js +28 -11
  349. package/dist-cms/packages/core/picker/search/picker-search-result.element.d.ts +4 -1
  350. package/dist-cms/packages/core/picker/search/picker-search-result.element.js +51 -8
  351. package/dist-cms/packages/core/picker-data-source/collection-data-source/types.d.ts +11 -0
  352. package/dist-cms/packages/core/picker-input/picker-input.context.d.ts +2 -1
  353. package/dist-cms/packages/core/picker-input/picker-input.context.js +17 -3
  354. package/dist-cms/packages/core/property/components/property/property.element.js +4 -0
  355. package/dist-cms/packages/core/property/manifests.d.ts +1 -1
  356. package/dist-cms/packages/core/property/property-value-preset/property-value-preset-variant-builder.controller.js +10 -3
  357. package/dist-cms/packages/core/property-action/index.d.ts +1 -0
  358. package/dist-cms/packages/core/property-action/index.js +1 -0
  359. package/dist-cms/packages/core/property-action/kinds/clear/index.d.ts +1 -0
  360. package/dist-cms/packages/core/property-action/kinds/clear/index.js +1 -0
  361. package/dist-cms/packages/core/property-action/kinds/clear/manifests.d.ts +3 -0
  362. package/dist-cms/packages/core/property-action/kinds/clear/manifests.js +18 -0
  363. package/dist-cms/packages/core/property-action/kinds/manifests.js +6 -2
  364. package/dist-cms/packages/core/property-action/manifests.js +1 -21
  365. package/dist-cms/packages/core/property-editor/ui-picker-modal/property-editor-ui-picker-modal.element.js +44 -10
  366. package/dist-cms/packages/core/property-editor/ui-picker-modal/property-editor-ui-picker-modal.token.js +1 -1
  367. package/dist-cms/packages/core/recycle-bin/entity-action/restore-from-recycle-bin/restore-from-recycle-bin.action.kind.js +1 -1
  368. package/dist-cms/packages/core/repository/detail/read/read-detail-data-source.interface.d.ts +1 -0
  369. package/dist-cms/packages/core/repository/detail/read/read-detail-repository.interface.d.ts +1 -0
  370. package/dist-cms/packages/core/repository/repository-details.manager.js +101 -36
  371. package/dist-cms/packages/core/resources/api-interceptor.controller.d.ts +4 -4
  372. package/dist-cms/packages/core/resources/api-interceptor.controller.js +39 -35
  373. package/dist-cms/packages/core/resources/auth-signaler.context.d.ts +20 -0
  374. package/dist-cms/packages/core/resources/auth-signaler.context.js +30 -0
  375. package/dist-cms/packages/core/resources/extractUmbNotificationColor.function.d.ts +1 -1
  376. package/dist-cms/packages/core/resources/index.d.ts +1 -0
  377. package/dist-cms/packages/core/resources/index.js +1 -0
  378. package/dist-cms/packages/core/resources/isUmbNotifications.function.d.ts +3 -2
  379. package/dist-cms/packages/core/resources/isUmbNotifications.function.js +3 -6
  380. package/dist-cms/packages/core/resources/try-execute/try-execute.controller.js +13 -0
  381. package/dist-cms/packages/core/resources/try-execute/tryXhrRequest.function.js +1 -1
  382. package/dist-cms/packages/core/router/conditions/is-routable-context/constants.d.ts +1 -0
  383. package/dist-cms/packages/core/router/conditions/is-routable-context/constants.js +1 -0
  384. package/dist-cms/packages/core/router/conditions/is-routable-context/index.d.ts +2 -0
  385. package/dist-cms/packages/core/router/conditions/is-routable-context/index.js +2 -0
  386. package/dist-cms/packages/core/router/conditions/is-routable-context/is-routable-context.condition.d.ts +7 -0
  387. package/dist-cms/packages/core/router/conditions/is-routable-context/is-routable-context.condition.js +18 -0
  388. package/dist-cms/packages/core/router/conditions/is-routable-context/manifests.d.ts +1 -0
  389. package/dist-cms/packages/core/router/conditions/is-routable-context/manifests.js +10 -0
  390. package/dist-cms/packages/core/router/conditions/is-routable-context/types.d.ts +15 -0
  391. package/dist-cms/packages/core/router/conditions/is-routable-context/types.js +1 -0
  392. package/dist-cms/packages/core/router/index.d.ts +1 -0
  393. package/dist-cms/packages/core/router/index.js +1 -0
  394. package/dist-cms/packages/core/router/manifests.d.ts +1 -0
  395. package/dist-cms/packages/core/router/manifests.js +2 -0
  396. package/dist-cms/packages/core/router/types.d.ts +1 -0
  397. package/dist-cms/packages/core/search/global-search/global-search.extension.d.ts +1 -0
  398. package/dist-cms/packages/core/search/search-modal/search-modal.element.js +52 -17
  399. package/dist-cms/packages/core/search/types.d.ts +2 -0
  400. package/dist-cms/packages/core/server/conditions/constants.d.ts +4 -0
  401. package/dist-cms/packages/core/server/conditions/constants.js +4 -0
  402. package/dist-cms/packages/core/server/conditions/index.d.ts +2 -0
  403. package/dist-cms/packages/core/server/conditions/index.js +1 -0
  404. package/dist-cms/packages/core/server/conditions/is-production-mode.condition.d.ts +7 -0
  405. package/dist-cms/packages/core/server/conditions/is-production-mode.condition.js +17 -0
  406. package/dist-cms/packages/core/server/conditions/manifests.d.ts +1 -0
  407. package/dist-cms/packages/core/server/conditions/manifests.js +10 -0
  408. package/dist-cms/packages/core/server/conditions/types.d.ts +14 -0
  409. package/dist-cms/packages/core/server/conditions/types.js +1 -0
  410. package/dist-cms/packages/core/server/index.d.ts +1 -0
  411. package/dist-cms/packages/core/server/index.js +1 -0
  412. package/dist-cms/packages/core/server/manifests.d.ts +1 -0
  413. package/dist-cms/packages/core/server/manifests.js +2 -0
  414. package/dist-cms/packages/core/server/server.context.d.ts +12 -0
  415. package/dist-cms/packages/core/server/server.context.js +33 -0
  416. package/dist-cms/packages/core/sorter/sorter.controller.js +35 -16
  417. package/dist-cms/packages/core/store/detail/detail-store-base.d.ts +7 -0
  418. package/dist-cms/packages/core/store/detail/detail-store-base.js +9 -0
  419. package/dist-cms/packages/core/store/detail/detail-store.interface.d.ts +1 -0
  420. package/dist-cms/packages/core/temporary-file/manifests.d.ts +1 -1
  421. package/dist-cms/packages/core/temporary-file/temporary-file-manager.class.js +6 -4
  422. package/dist-cms/packages/core/themes/manifests.d.ts +1 -1
  423. package/dist-cms/packages/core/tree/default/default-tree.context.d.ts +1 -0
  424. package/dist-cms/packages/core/tree/default/default-tree.context.js +5 -0
  425. package/dist-cms/packages/core/tree/entity-actions/duplicate-to/duplicate-to.action.kind.js +1 -1
  426. package/dist-cms/packages/core/tree/entity-actions/move/move-to.action.d.ts +2 -0
  427. package/dist-cms/packages/core/tree/entity-actions/move/move-to.action.js +4 -1
  428. package/dist-cms/packages/core/tree/index.d.ts +1 -0
  429. package/dist-cms/packages/core/tree/index.js +1 -0
  430. package/dist-cms/packages/core/tree/tree-item/tree-item-base/tree-item-context-base.js +7 -1
  431. package/dist-cms/packages/core/tree/tree-item/tree-item-base/tree-item-element-base.js +1 -8
  432. package/dist-cms/packages/core/utils/index.d.ts +1 -0
  433. package/dist-cms/packages/core/utils/index.js +1 -0
  434. package/dist-cms/packages/core/utils/path/get-file-extension.function.d.ts +5 -0
  435. package/dist-cms/packages/core/utils/path/get-file-extension.function.js +11 -0
  436. package/dist-cms/packages/core/utils/path/stored-path.function.js +5 -0
  437. package/dist-cms/packages/core/validation/controllers/validation.controller.d.ts +7 -0
  438. package/dist-cms/packages/core/validation/controllers/validation.controller.js +64 -22
  439. package/dist-cms/packages/core/validation/interfaces/validator.interface.d.ts +10 -1
  440. package/dist-cms/packages/core/vite.config.js +1 -0
  441. package/dist-cms/packages/core/workspace/components/workspace-breadcrumb/workspace-variant-menu-breadcrumb/workspace-variant-menu-breadcrumb.element.d.ts +1 -0
  442. package/dist-cms/packages/core/workspace/components/workspace-breadcrumb/workspace-variant-menu-breadcrumb/workspace-variant-menu-breadcrumb.element.js +38 -15
  443. package/dist-cms/packages/core/workspace/controllers/workspace-split-view-manager.controller.d.ts +1 -0
  444. package/dist-cms/packages/core/workspace/controllers/workspace-split-view-manager.controller.js +1 -0
  445. package/dist-cms/packages/core/workspace/submittable/submittable-workspace-context-base.d.ts +2 -1
  446. package/dist-cms/packages/core/workspace/submittable/submittable-workspace-context-base.js +11 -8
  447. package/dist-cms/packages/data-type/entity-actions/conditions/manifests.d.ts +1 -1
  448. package/dist-cms/packages/data-type/modals/data-type-picker-flow/data-type-picker-flow-data-type-picker-modal.element.js +19 -4
  449. package/dist-cms/packages/data-type/modals/data-type-picker-flow/data-type-picker-flow-data-type-picker-modal.token.js +1 -1
  450. package/dist-cms/packages/data-type/modals/data-type-picker-flow/data-type-picker-flow-modal.element.js +16 -5
  451. package/dist-cms/packages/data-type/repository/detail/data-type-detail.repository.d.ts +10 -2
  452. package/dist-cms/packages/data-type/repository/detail/data-type-detail.repository.js +22 -1
  453. package/dist-cms/packages/data-type/repository/detail/server-data-source/data-type-detail.server.data-source.d.ts +13 -0
  454. package/dist-cms/packages/data-type/repository/detail/server-data-source/data-type-detail.server.data-source.js +16 -0
  455. package/dist-cms/packages/data-type/repository/detail/server-data-source/data-type-detail.server.request-manager.js +1 -0
  456. package/dist-cms/packages/data-type/repository/item/data-type-item.server.request-manager.d.ts +1 -0
  457. package/dist-cms/packages/data-type/repository/item/data-type-item.server.request-manager.js +3 -1
  458. package/dist-cms/packages/data-type/search/data-type-search.server.data-source.js +5 -1
  459. package/dist-cms/packages/data-type/search/global-search/manifests.js +1 -0
  460. package/dist-cms/packages/dictionary/entity-action/export/export-dictionary-modal.element.js +4 -4
  461. package/dist-cms/packages/dictionary/repository/item/dictionary-item.server.request-manager.d.ts +1 -0
  462. package/dist-cms/packages/dictionary/repository/item/dictionary-item.server.request-manager.js +3 -1
  463. package/dist-cms/packages/dictionary/search/dictionary-search.server.data-source.js +5 -1
  464. package/dist-cms/packages/dictionary/search/global-search/manifests.js +1 -0
  465. package/dist-cms/packages/documents/document-blueprints/repository/item/document-blueprint-item.server.request-manager.d.ts +1 -0
  466. package/dist-cms/packages/documents/document-blueprints/repository/item/document-blueprint-item.server.request-manager.js +3 -1
  467. package/dist-cms/packages/documents/document-redirect-management/dashboard-redirect-management.element.js +0 -2
  468. package/dist-cms/packages/documents/document-types/repository/detail/document-type-detail.repository.d.ts +11 -2
  469. package/dist-cms/packages/documents/document-types/repository/detail/document-type-detail.repository.js +29 -1
  470. package/dist-cms/packages/documents/document-types/repository/detail/server-data-source/document-type-detail.server.data-source.d.ts +16 -3
  471. package/dist-cms/packages/documents/document-types/repository/detail/server-data-source/document-type-detail.server.data-source.js +21 -5
  472. package/dist-cms/packages/documents/document-types/repository/detail/server-data-source/document-type-detail.server.request-manager.js +1 -0
  473. package/dist-cms/packages/documents/document-types/repository/item/document-type-item.server.request-manager.d.ts +1 -0
  474. package/dist-cms/packages/documents/document-types/repository/item/document-type-item.server.request-manager.js +3 -1
  475. package/dist-cms/packages/documents/document-types/repository/manifests.js +2 -0
  476. package/dist-cms/packages/documents/document-types/repository/structure/document-type-structure.repository.d.ts +2 -0
  477. package/dist-cms/packages/documents/document-types/repository/structure/document-type-structure.repository.js +6 -0
  478. package/dist-cms/packages/documents/document-types/repository/structure/document-type-structure.server.data-source.d.ts +6 -2
  479. package/dist-cms/packages/documents/document-types/repository/structure/document-type-structure.server.data-source.js +16 -0
  480. package/dist-cms/packages/documents/document-types/repository/structure/types.d.ts +5 -0
  481. package/dist-cms/packages/documents/document-types/search/document-type-search.server.data-source.js +6 -1
  482. package/dist-cms/packages/documents/document-types/search/global-search/manifests.js +1 -0
  483. package/dist-cms/packages/documents/documents/audit-log/index.d.ts +1 -1
  484. package/dist-cms/packages/documents/documents/audit-log/index.js +1 -1
  485. package/dist-cms/packages/documents/documents/audit-log/info-app/document-history-workspace-info-app.element.d.ts +3 -0
  486. package/dist-cms/packages/documents/documents/audit-log/info-app/document-history-workspace-info-app.element.js +4 -0
  487. package/dist-cms/packages/documents/documents/audit-log/info-app/manifests.js +5 -2
  488. package/dist-cms/packages/documents/documents/audit-log/info-app/utils.d.ts +2 -1
  489. package/dist-cms/packages/documents/documents/audit-log/info-app/utils.js +2 -1
  490. package/dist-cms/packages/documents/documents/audit-log/manifests.d.ts +1 -2
  491. package/dist-cms/packages/documents/documents/audit-log/manifests.js +2 -1
  492. package/dist-cms/packages/documents/documents/audit-log/repository/constants.d.ts +1 -0
  493. package/dist-cms/packages/documents/documents/audit-log/repository/constants.js +1 -0
  494. package/dist-cms/packages/documents/documents/audit-log/repository/document-audit-log.repository.d.ts +9 -1
  495. package/dist-cms/packages/documents/documents/audit-log/repository/document-audit-log.repository.js +11 -0
  496. package/dist-cms/packages/documents/documents/audit-log/repository/index.d.ts +1 -0
  497. package/dist-cms/packages/documents/documents/audit-log/repository/index.js +1 -0
  498. package/dist-cms/packages/documents/documents/audit-log/repository/manifests.d.ts +1 -0
  499. package/dist-cms/packages/documents/documents/audit-log/repository/manifests.js +9 -0
  500. package/dist-cms/packages/documents/documents/collection/document-collection.context.d.ts +6 -0
  501. package/dist-cms/packages/documents/documents/collection/document-collection.context.js +9 -0
  502. package/dist-cms/packages/documents/documents/collection/item/document-collection-item-card.element.d.ts +7 -3
  503. package/dist-cms/packages/documents/documents/collection/item/document-collection-item-card.element.js +150 -17
  504. package/dist-cms/packages/documents/documents/collection/views/manifests.js +1 -6
  505. package/dist-cms/packages/documents/documents/components/input-document/input-document.context.js +2 -2
  506. package/dist-cms/packages/documents/documents/entity-actions/duplicate/duplicate-document.action.js +30 -1
  507. package/dist-cms/packages/documents/documents/entity-actions/duplicate/modal/duplicate-document-modal.element.js +6 -0
  508. package/dist-cms/packages/documents/documents/entity-actions/duplicate/modal/duplicate-document-modal.token.d.ts +2 -0
  509. package/dist-cms/packages/documents/documents/entity-actions/move-to/document-move-to.action.d.ts +7 -0
  510. package/dist-cms/packages/documents/documents/entity-actions/move-to/document-move-to.action.js +31 -0
  511. package/dist-cms/packages/documents/documents/entity-actions/move-to/manifests.js +1 -0
  512. package/dist-cms/packages/documents/documents/item/repository/document-item.server.request-manager.d.ts +1 -0
  513. package/dist-cms/packages/documents/documents/item/repository/document-item.server.request-manager.js +3 -1
  514. package/dist-cms/packages/documents/documents/publishing/publish/entity-bulk-action/publish.bulk-action.js +1 -0
  515. package/dist-cms/packages/documents/documents/publishing/workspace-context/document-publishing.workspace-context.js +13 -7
  516. package/dist-cms/packages/documents/documents/recycle-bin/entity-action/bulk-trash/document-bulk-trash-with-relation.action.d.ts +5 -0
  517. package/dist-cms/packages/documents/documents/recycle-bin/entity-action/bulk-trash/document-bulk-trash-with-relation.action.js +18 -0
  518. package/dist-cms/packages/documents/documents/recycle-bin/entity-action/bulk-trash/manifests.js +1 -0
  519. package/dist-cms/packages/documents/documents/recycle-bin/entity-action/manifests.js +1 -0
  520. package/dist-cms/packages/documents/documents/recycle-bin/entity-action/trash/document-trash-with-relation.action.d.ts +5 -0
  521. package/dist-cms/packages/documents/documents/recycle-bin/entity-action/trash/document-trash-with-relation.action.js +21 -0
  522. package/dist-cms/packages/documents/documents/rollback/audit-log-action/manifests.d.ts +1 -0
  523. package/dist-cms/packages/documents/documents/rollback/audit-log-action/manifests.js +26 -0
  524. package/dist-cms/packages/documents/documents/rollback/constants.d.ts +2 -2
  525. package/dist-cms/packages/documents/documents/rollback/constants.js +2 -2
  526. package/dist-cms/packages/documents/documents/rollback/entity-action/manifests.js +7 -8
  527. package/dist-cms/packages/documents/documents/rollback/entity-action/rollback.action.d.ts +1 -0
  528. package/dist-cms/packages/documents/documents/rollback/entity-action/rollback.action.js +1 -0
  529. package/dist-cms/packages/documents/documents/rollback/manifests.js +2 -0
  530. package/dist-cms/packages/documents/documents/rollback/modal/constants.d.ts +2 -0
  531. package/dist-cms/packages/documents/documents/rollback/modal/constants.js +2 -0
  532. package/dist-cms/packages/documents/documents/rollback/modal/rollback-modal.element.d.ts +1 -0
  533. package/dist-cms/packages/documents/documents/rollback/modal/rollback-modal.element.js +1 -0
  534. package/dist-cms/packages/documents/documents/rollback/modal/types.d.ts +2 -4
  535. package/dist-cms/packages/documents/documents/rollback/repository/constants.d.ts +5 -1
  536. package/dist-cms/packages/documents/documents/rollback/repository/constants.js +5 -1
  537. package/dist-cms/packages/documents/documents/rollback/repository/index.d.ts +2 -1
  538. package/dist-cms/packages/documents/documents/rollback/repository/index.js +2 -1
  539. package/dist-cms/packages/documents/documents/rollback/repository/manifests.js +3 -3
  540. package/dist-cms/packages/documents/documents/rollback/repository/rollback.repository.d.ts +24 -13
  541. package/dist-cms/packages/documents/documents/rollback/repository/rollback.repository.js +46 -5
  542. package/dist-cms/packages/documents/documents/search/document-search.server.data-source.js +2 -0
  543. package/dist-cms/packages/documents/documents/search/global-search/manifests.js +1 -0
  544. package/dist-cms/packages/documents/documents/tree/document-tree.context.js +3 -1
  545. package/dist-cms/packages/documents/documents/tree/tree-item/document-tree-item.context.js +7 -0
  546. package/dist-cms/packages/documents/documents/url/document-urls-data-resolver.js +4 -1
  547. package/dist-cms/packages/documents/documents/workspace/document-workspace.context.js +6 -0
  548. package/dist-cms/packages/extension-insights/entity.d.ts +0 -2
  549. package/dist-cms/packages/extension-insights/entity.js +0 -1
  550. package/dist-cms/packages/extension-insights/manifests.js +1 -8
  551. package/dist-cms/packages/extension-insights/workspace/manifests.js +1 -1
  552. package/dist-cms/packages/extension-types/index.d.ts +2 -0
  553. package/dist-cms/packages/language/modals/language-picker/language-picker-modal.element.js +3 -3
  554. package/dist-cms/packages/language/repository/item/language-item.server.request-manager.d.ts +1 -0
  555. package/dist-cms/packages/language/repository/item/language-item.server.request-manager.js +3 -1
  556. package/dist-cms/packages/management-api/detail/detail-data.request-manager.d.ts +46 -2
  557. package/dist-cms/packages/management-api/detail/detail-data.request-manager.js +122 -0
  558. package/dist-cms/packages/management-api/item/item-data.request-manager.d.ts +2 -0
  559. package/dist-cms/packages/management-api/item/item-data.request-manager.js +69 -12
  560. package/dist-cms/packages/management-api/server-event/global-context/server-event.context.js +5 -8
  561. package/dist-cms/packages/media/dropzone/components/input-dropzone/input-dropzone.element.js +3 -1
  562. package/dist-cms/packages/media/dropzone/dropzone-manager.class.d.ts +1 -1
  563. package/dist-cms/packages/media/dropzone/dropzone-manager.class.js +2 -2
  564. package/dist-cms/packages/media/dropzone/types.d.ts +1 -0
  565. package/dist-cms/packages/media/imaging/components/imaging-thumbnail.element.d.ts +5 -0
  566. package/dist-cms/packages/media/imaging/components/imaging-thumbnail.element.js +4 -0
  567. package/dist-cms/packages/media/imaging/imaging.store.js +2 -2
  568. package/dist-cms/packages/media/imaging/types.d.ts +1 -0
  569. package/dist-cms/packages/media/media/audit-log/index.d.ts +1 -1
  570. package/dist-cms/packages/media/media/audit-log/index.js +1 -1
  571. package/dist-cms/packages/media/media/audit-log/info-app/manifests.js +5 -2
  572. package/dist-cms/packages/media/media/audit-log/info-app/media-history-workspace-info-app.element.d.ts +3 -0
  573. package/dist-cms/packages/media/media/audit-log/info-app/media-history-workspace-info-app.element.js +3 -0
  574. package/dist-cms/packages/media/media/audit-log/info-app/utils.d.ts +1 -0
  575. package/dist-cms/packages/media/media/audit-log/info-app/utils.js +1 -0
  576. package/dist-cms/packages/media/media/audit-log/manifests.js +2 -1
  577. package/dist-cms/packages/media/media/audit-log/repository/constants.d.ts +1 -0
  578. package/dist-cms/packages/media/media/audit-log/repository/constants.js +1 -0
  579. package/dist-cms/packages/media/media/audit-log/repository/index.d.ts +1 -0
  580. package/dist-cms/packages/media/media/audit-log/repository/index.js +1 -0
  581. package/dist-cms/packages/media/media/audit-log/repository/manifests.d.ts +1 -0
  582. package/dist-cms/packages/media/media/audit-log/repository/manifests.js +9 -0
  583. package/dist-cms/packages/media/media/audit-log/repository/media-audit-log.repository.d.ts +9 -1
  584. package/dist-cms/packages/media/media/audit-log/repository/media-audit-log.repository.js +11 -0
  585. package/dist-cms/packages/media/media/collection/item/manifests.d.ts +1 -0
  586. package/dist-cms/packages/media/media/collection/item/manifests.js +10 -0
  587. package/dist-cms/packages/media/media/collection/item/media-collection-item-card.element.d.ts +23 -0
  588. package/dist-cms/packages/media/media/collection/item/media-collection-item-card.element.js +117 -0
  589. package/dist-cms/packages/media/media/collection/item/types.d.ts +31 -0
  590. package/dist-cms/packages/media/media/collection/item/types.js +1 -0
  591. package/dist-cms/packages/media/media/collection/manifests.js +2 -0
  592. package/dist-cms/packages/media/media/collection/media-collection.context.d.ts +6 -0
  593. package/dist-cms/packages/media/media/collection/media-collection.context.js +9 -0
  594. package/dist-cms/packages/media/media/collection/repository/media-collection.server.data-source.js +5 -0
  595. package/dist-cms/packages/media/media/collection/types.d.ts +1 -28
  596. package/dist-cms/packages/media/media/collection/views/grid/media-grid-collection-view.element.d.ts +5 -6
  597. package/dist-cms/packages/media/media/collection/views/grid/media-grid-collection-view.element.js +19 -75
  598. package/dist-cms/packages/media/media/components/input-image-cropper/image-cropper-focus-setter.element.d.ts +1 -0
  599. package/dist-cms/packages/media/media/components/input-image-cropper/image-cropper-focus-setter.element.js +9 -4
  600. package/dist-cms/packages/media/media/components/input-image-cropper/input-image-cropper.element.js +15 -0
  601. package/dist-cms/packages/media/media/components/input-media/input-media.context.d.ts +7 -1
  602. package/dist-cms/packages/media/media/components/input-media/input-media.context.js +33 -3
  603. package/dist-cms/packages/media/media/components/input-media/input-media.element.d.ts +3 -1
  604. package/dist-cms/packages/media/media/components/input-media/input-media.element.js +7 -1
  605. package/dist-cms/packages/media/media/components/input-rich-media/input-rich-media.element.d.ts +1 -1
  606. package/dist-cms/packages/media/media/components/input-rich-media/input-rich-media.element.js +1 -1
  607. package/dist-cms/packages/media/media/components/input-upload-field/input-upload-field.element.js +56 -33
  608. package/dist-cms/packages/media/media/components/input-upload-field/preview/input-upload-field-file.element.d.ts +1 -0
  609. package/dist-cms/packages/media/media/components/input-upload-field/preview/input-upload-field-file.element.js +5 -1
  610. package/dist-cms/packages/media/media/components/input-upload-field/preview/input-upload-field-image.element.js +5 -3
  611. package/dist-cms/packages/media/media/components/input-upload-field/preview/input-upload-field-svg.element.js +6 -7
  612. package/dist-cms/packages/media/media/dropzone/media-dropzone.manager.js +104 -25
  613. package/dist-cms/packages/media/media/entity-actions/move-to/manifests.js +1 -0
  614. package/dist-cms/packages/media/media/entity-actions/move-to/media-move-to.action.d.ts +7 -0
  615. package/dist-cms/packages/media/media/entity-actions/move-to/media-move-to.action.js +31 -0
  616. package/dist-cms/packages/media/media/global-contexts/index.d.ts +1 -0
  617. package/dist-cms/packages/media/media/global-contexts/index.js +1 -0
  618. package/dist-cms/packages/media/media/global-contexts/manifests.d.ts +2 -0
  619. package/dist-cms/packages/media/media/global-contexts/manifests.js +8 -0
  620. package/dist-cms/packages/media/media/global-contexts/media-configuration.context.d.ts +23 -0
  621. package/dist-cms/packages/media/media/global-contexts/media-configuration.context.js +38 -0
  622. package/dist-cms/packages/media/media/index.d.ts +1 -0
  623. package/dist-cms/packages/media/media/index.js +1 -0
  624. package/dist-cms/packages/media/media/manifests.js +2 -0
  625. package/dist-cms/packages/media/media/modals/media-picker/components/media-picker-folder-path.element.d.ts +2 -0
  626. package/dist-cms/packages/media/media/modals/media-picker/components/media-picker-folder-path.element.js +124 -16
  627. package/dist-cms/packages/media/media/modals/media-picker/media-picker-modal.element.js +14 -2
  628. package/dist-cms/packages/media/media/modals/media-picker/types.d.ts +3 -0
  629. package/dist-cms/packages/media/media/property-editors/media-entity-picker/property-editor-ui-media-entity-picker.element.js +2 -0
  630. package/dist-cms/packages/media/media/property-editors/media-picker/property-editor-ui-media-picker.element.d.ts +1 -1
  631. package/dist-cms/packages/media/media/property-editors/media-picker/property-editor-ui-media-picker.element.js +1 -2
  632. package/dist-cms/packages/media/media/recycle-bin/entity-action/bulk-trash/manifests.js +1 -0
  633. package/dist-cms/packages/media/media/recycle-bin/entity-action/bulk-trash/media-bulk-trash-with-relation.action.d.ts +5 -0
  634. package/dist-cms/packages/media/media/recycle-bin/entity-action/bulk-trash/media-bulk-trash-with-relation.action.js +18 -0
  635. package/dist-cms/packages/media/media/recycle-bin/entity-action/manifests.js +1 -0
  636. package/dist-cms/packages/media/media/recycle-bin/entity-action/trash/media-trash-with-relation.action.d.ts +5 -0
  637. package/dist-cms/packages/media/media/recycle-bin/entity-action/trash/media-trash-with-relation.action.js +19 -0
  638. package/dist-cms/packages/media/media/repository/detail/media-detail.repository.d.ts +11 -0
  639. package/dist-cms/packages/media/media/repository/detail/media-detail.repository.js +9 -0
  640. package/dist-cms/packages/media/media/repository/detail/media-detail.server.data-source.d.ts +1 -1
  641. package/dist-cms/packages/media/media/repository/detail/media-detail.server.data-source.js +2 -2
  642. package/dist-cms/packages/media/media/repository/item/media-item.server.data-source.js +1 -0
  643. package/dist-cms/packages/media/media/repository/item/media-item.server.request-manager.d.ts +1 -0
  644. package/dist-cms/packages/media/media/repository/item/media-item.server.request-manager.js +3 -1
  645. package/dist-cms/packages/media/media/repository/item/types.d.ts +2 -1
  646. package/dist-cms/packages/media/media/search/global-search/manifests.js +1 -0
  647. package/dist-cms/packages/media/media/search/media-search.server.data-source.js +3 -0
  648. package/dist-cms/packages/media/media/tree/server-data-source/media-tree.server.data-source.js +1 -0
  649. package/dist-cms/packages/media/media/tree/tree-item/media-tree-item.context.js +7 -0
  650. package/dist-cms/packages/media/media/tree/tree-item/media-tree-item.element.d.ts +1 -2
  651. package/dist-cms/packages/media/media/tree/tree-item/media-tree-item.element.js +9 -40
  652. package/dist-cms/packages/media/media/url/info-app/media-links-workspace-info-app.element.js +1 -1
  653. package/dist-cms/packages/media/media/workspace/media-workspace.context.d.ts +1 -1
  654. package/dist-cms/packages/media/media/workspace/media-workspace.context.js +6 -0
  655. package/dist-cms/packages/media/media-types/entry-point.js +4 -0
  656. package/dist-cms/packages/media/media-types/repository/detail/media-type-detail.repository.d.ts +11 -2
  657. package/dist-cms/packages/media/media-types/repository/detail/media-type-detail.repository.js +29 -1
  658. package/dist-cms/packages/media/media-types/repository/detail/media-type-detail.server.data-source.d.ts +18 -24
  659. package/dist-cms/packages/media/media-types/repository/detail/media-type-detail.server.data-source.js +69 -84
  660. package/dist-cms/packages/media/media-types/repository/detail/server-data-source/media-type-detail.server.cache-invalidation.manager.d.ts +6 -0
  661. package/dist-cms/packages/media/media-types/repository/detail/server-data-source/media-type-detail.server.cache-invalidation.manager.js +10 -0
  662. package/dist-cms/packages/media/media-types/repository/detail/server-data-source/media-type-detail.server.cache.d.ts +4 -0
  663. package/dist-cms/packages/media/media-types/repository/detail/server-data-source/media-type-detail.server.cache.js +3 -0
  664. package/dist-cms/packages/media/media-types/repository/detail/server-data-source/media-type-detail.server.request-manager.d.ts +7 -0
  665. package/dist-cms/packages/media/media-types/repository/detail/server-data-source/media-type-detail.server.request-manager.js +18 -0
  666. package/dist-cms/packages/media/media-types/repository/item/media-type-item.server.request-manager.d.ts +1 -0
  667. package/dist-cms/packages/media/media-types/repository/item/media-type-item.server.request-manager.js +3 -1
  668. package/dist-cms/packages/media/media-types/repository/manifests.js +7 -1
  669. package/dist-cms/packages/media/media-types/repository/structure/media-type-structure.repository.d.ts +18 -1
  670. package/dist-cms/packages/media/media-types/repository/structure/media-type-structure.repository.js +8 -4
  671. package/dist-cms/packages/media/media-types/repository/structure/media-type-structure.server.data-source.d.ts +21 -3
  672. package/dist-cms/packages/media/media-types/repository/structure/media-type-structure.server.data-source.js +20 -1
  673. package/dist-cms/packages/media/media-types/repository/structure/types.d.ts +6 -0
  674. package/dist-cms/packages/media/media-types/search/global-search/manifests.js +1 -0
  675. package/dist-cms/packages/media/media-types/search/media-type-search.server.data-source.js +5 -1
  676. package/dist-cms/packages/members/member/collection/action/create-member-collection-action.element.js +1 -0
  677. package/dist-cms/packages/members/member/collection/member-collection-header.element.js +3 -1
  678. package/dist-cms/packages/members/member/collection/repository/member-collection.server.data-source.d.ts +1 -1
  679. package/dist-cms/packages/members/member/collection/repository/member-collection.server.data-source.js +11 -2
  680. package/dist-cms/packages/members/member/collection/types.d.ts +3 -0
  681. package/dist-cms/packages/members/member/collection/views/table/member-table-collection-view.element.d.ts +2 -0
  682. package/dist-cms/packages/members/member/collection/views/table/member-table-collection-view.element.js +41 -1
  683. package/dist-cms/packages/members/member/components/input-member/input-member.context.js +2 -2
  684. package/dist-cms/packages/members/member/components/input-member/input-member.element.d.ts +1 -1
  685. package/dist-cms/packages/members/member/item/repository/member-item.server.request-manager.d.ts +1 -0
  686. package/dist-cms/packages/members/member/item/repository/member-item.server.request-manager.js +3 -1
  687. package/dist-cms/packages/members/member/search/global-search/manifests.js +1 -0
  688. package/dist-cms/packages/members/member/search/member-search.server.data-source.js +2 -0
  689. package/dist-cms/packages/members/member/workspace/member/member-workspace.context.js +6 -1
  690. package/dist-cms/packages/members/member/workspace/member/views/member/member-workspace-view-member.element.js +14 -2
  691. package/dist-cms/packages/members/member-group/components/input-member-group/input-member-group.element.d.ts +0 -1
  692. package/dist-cms/packages/members/member-group/components/input-member-group/input-member-group.element.js +0 -3
  693. package/dist-cms/packages/members/member-group/components/member-group-picker-modal/member-group-picker-modal.element.d.ts +4 -1
  694. package/dist-cms/packages/members/member-group/components/member-group-picker-modal/member-group-picker-modal.element.js +68 -26
  695. package/dist-cms/packages/members/member-group/repository/item/member-group-item.server.request-manager.d.ts +1 -0
  696. package/dist-cms/packages/members/member-group/repository/item/member-group-item.server.request-manager.js +3 -1
  697. package/dist-cms/packages/members/member-public-access/modal/public-access-modal.element.d.ts +1 -0
  698. package/dist-cms/packages/members/member-public-access/modal/public-access-modal.element.js +38 -8
  699. package/dist-cms/packages/members/member-public-access/repository/public-access.repository.d.ts +1 -1
  700. package/dist-cms/packages/members/member-public-access/repository/public-access.repository.js +2 -2
  701. package/dist-cms/packages/members/member-public-access/repository/public-access.server.data.d.ts +2 -1
  702. package/dist-cms/packages/members/member-public-access/repository/public-access.server.data.js +3 -2
  703. package/dist-cms/packages/members/member-type/entry-point.js +4 -0
  704. package/dist-cms/packages/members/member-type/repository/detail/member-type-detail.repository.d.ts +11 -2
  705. package/dist-cms/packages/members/member-type/repository/detail/member-type-detail.repository.js +29 -1
  706. package/dist-cms/packages/members/member-type/repository/detail/member-type-detail.server.data-source.d.ts +18 -24
  707. package/dist-cms/packages/members/member-type/repository/detail/member-type-detail.server.data-source.js +66 -81
  708. package/dist-cms/packages/members/member-type/repository/detail/server-data-source/member-type-detail.server.cache-invalidation.manager.d.ts +6 -0
  709. package/dist-cms/packages/members/member-type/repository/detail/server-data-source/member-type-detail.server.cache-invalidation.manager.js +10 -0
  710. package/dist-cms/packages/members/member-type/repository/detail/server-data-source/member-type-detail.server.cache.d.ts +4 -0
  711. package/dist-cms/packages/members/member-type/repository/detail/server-data-source/member-type-detail.server.cache.js +3 -0
  712. package/dist-cms/packages/members/member-type/repository/detail/server-data-source/member-type-detail.server.request-manager.d.ts +7 -0
  713. package/dist-cms/packages/members/member-type/repository/detail/server-data-source/member-type-detail.server.request-manager.js +18 -0
  714. package/dist-cms/packages/members/member-type/repository/item/member-type-item.server.request-manager.d.ts +1 -0
  715. package/dist-cms/packages/members/member-type/repository/item/member-type-item.server.request-manager.js +3 -1
  716. package/dist-cms/packages/members/member-type/search/global-search/manifests.js +1 -0
  717. package/dist-cms/packages/members/member-type/search/member-type-search.server.data-source.js +5 -1
  718. package/dist-cms/packages/multi-url-picker/components/input-multi-url/input-multi-url.element.d.ts +2 -0
  719. package/dist-cms/packages/multi-url-picker/components/input-multi-url/input-multi-url.element.js +11 -3
  720. package/dist-cms/packages/multi-url-picker/constants.d.ts +1 -0
  721. package/dist-cms/packages/multi-url-picker/constants.js +1 -0
  722. package/dist-cms/packages/multi-url-picker/document-link-picker-modal/constants.d.ts +1 -0
  723. package/dist-cms/packages/multi-url-picker/document-link-picker-modal/constants.js +1 -0
  724. package/dist-cms/packages/multi-url-picker/document-link-picker-modal/document-link-picker-modal.element.d.ts +18 -0
  725. package/dist-cms/packages/multi-url-picker/document-link-picker-modal/document-link-picker-modal.element.js +139 -0
  726. package/dist-cms/packages/multi-url-picker/document-link-picker-modal/document-link-picker-modal.token.d.ts +10 -0
  727. package/dist-cms/packages/multi-url-picker/document-link-picker-modal/document-link-picker-modal.token.js +7 -0
  728. package/dist-cms/packages/multi-url-picker/document-link-picker-modal/document-link-picker.context.d.ts +12 -0
  729. package/dist-cms/packages/multi-url-picker/document-link-picker-modal/document-link-picker.context.js +45 -0
  730. package/dist-cms/packages/multi-url-picker/document-link-picker-modal/manifests.d.ts +6 -0
  731. package/dist-cms/packages/multi-url-picker/document-link-picker-modal/manifests.js +8 -0
  732. package/dist-cms/packages/multi-url-picker/index.d.ts +1 -0
  733. package/dist-cms/packages/multi-url-picker/index.js +1 -0
  734. package/dist-cms/packages/multi-url-picker/link-picker-modal/link-picker-modal.element.d.ts +2 -3
  735. package/dist-cms/packages/multi-url-picker/link-picker-modal/link-picker-modal.element.js +95 -52
  736. package/dist-cms/packages/multi-url-picker/link-picker-modal/link-picker-modal.token.d.ts +4 -0
  737. package/dist-cms/packages/multi-url-picker/link-picker-modal/types.d.ts +1 -0
  738. package/dist-cms/packages/multi-url-picker/manifests.js +2 -0
  739. package/dist-cms/packages/multi-url-picker/property-editor/manifests.js +6 -0
  740. package/dist-cms/packages/multi-url-picker/property-editor/property-editor-ui-multi-url-picker.element.d.ts +1 -0
  741. package/dist-cms/packages/multi-url-picker/property-editor/property-editor-ui-multi-url-picker.element.js +7 -0
  742. package/dist-cms/packages/property-editors/content-picker/components/input-content/input-content.element.d.ts +2 -2
  743. package/dist-cms/packages/property-editors/content-picker/components/input-content/input-content.element.js +2 -3
  744. package/dist-cms/packages/property-editors/content-picker/property-editor-ui-content-picker.element.js +18 -8
  745. package/dist-cms/packages/property-editors/entity-data-picker/conditions/constants.d.ts +1 -0
  746. package/dist-cms/packages/property-editors/entity-data-picker/conditions/constants.js +1 -0
  747. package/dist-cms/packages/property-editors/entity-data-picker/conditions/entity-data-picker-supports-text-filter.condition.d.ts +6 -0
  748. package/dist-cms/packages/property-editors/entity-data-picker/conditions/entity-data-picker-supports-text-filter.condition.js +21 -0
  749. package/dist-cms/packages/property-editors/entity-data-picker/conditions/manifests.d.ts +2 -0
  750. package/dist-cms/packages/property-editors/entity-data-picker/conditions/manifests.js +10 -0
  751. package/dist-cms/packages/property-editors/entity-data-picker/constants.d.ts +1 -0
  752. package/dist-cms/packages/property-editors/entity-data-picker/constants.js +1 -0
  753. package/dist-cms/packages/property-editors/entity-data-picker/entry-point.d.ts +1 -0
  754. package/dist-cms/packages/property-editors/entity-data-picker/entry-point.js +3 -2
  755. package/dist-cms/packages/property-editors/entity-data-picker/input/entity-data-picker-data-source.context.d.ts +1 -1
  756. package/dist-cms/packages/property-editors/entity-data-picker/input/input-entity-data.context.d.ts +23 -6
  757. package/dist-cms/packages/property-editors/entity-data-picker/input/input-entity-data.context.js +35 -30
  758. package/dist-cms/packages/property-editors/entity-data-picker/input/input-entity-data.element.d.ts +9 -2
  759. package/dist-cms/packages/property-editors/entity-data-picker/input/input-entity-data.element.js +10 -4
  760. package/dist-cms/packages/property-editors/entity-data-picker/manifests.js +4 -2
  761. package/dist-cms/packages/property-editors/entity-data-picker/picker-collection/constants.d.ts +1 -0
  762. package/dist-cms/packages/property-editors/entity-data-picker/picker-collection/constants.js +1 -0
  763. package/dist-cms/packages/property-editors/entity-data-picker/picker-collection/manifests.js +18 -1
  764. package/dist-cms/packages/property-editors/entity-data-picker/picker-collection/views/constants.d.ts +2 -0
  765. package/dist-cms/packages/property-editors/entity-data-picker/picker-collection/views/constants.js +2 -0
  766. package/dist-cms/packages/property-editors/entity-data-picker/picker-collection/views/manifests.js +3 -2
  767. package/dist-cms/packages/property-editors/entity-data-picker/property-editor/config/index.d.ts +1 -0
  768. package/dist-cms/packages/property-editors/entity-data-picker/property-editor/config/index.js +1 -0
  769. package/dist-cms/packages/property-editors/entity-data-picker/property-editor/config/picker-views/manifests.d.ts +2 -0
  770. package/dist-cms/packages/property-editors/entity-data-picker/property-editor/config/picker-views/manifests.js +11 -0
  771. package/dist-cms/packages/property-editors/entity-data-picker/property-editor/config/picker-views/picker-views-configuration.element.d.ts +19 -0
  772. package/dist-cms/packages/property-editors/entity-data-picker/property-editor/config/picker-views/picker-views-configuration.element.js +117 -0
  773. package/dist-cms/packages/property-editors/entity-data-picker/property-editor/config/picker-views/types.d.ts +4 -0
  774. package/dist-cms/packages/property-editors/entity-data-picker/property-editor/config/picker-views/types.js +1 -0
  775. package/dist-cms/packages/property-editors/entity-data-picker/property-editor/entity-data-picker-property-editor-ui.element.d.ts +2 -1
  776. package/dist-cms/packages/property-editors/entity-data-picker/property-editor/entity-data-picker-property-editor-ui.element.js +31 -6
  777. package/dist-cms/packages/property-editors/entity-data-picker/property-editor/manifests.js +10 -0
  778. package/dist-cms/packages/property-editors/manifests.js +2 -0
  779. package/dist-cms/packages/property-editors/number/Umbraco.Decimal.js +3 -3
  780. package/dist-cms/packages/property-editors/slider/slider-property-value-preset.js +4 -1
  781. package/dist-cms/packages/property-editors/text-box/property-editor-ui-text-box.element.js +27 -1
  782. package/dist-cms/packages/property-editors/textarea/property-editor-ui-textarea.element.js +32 -5
  783. package/dist-cms/packages/property-editors/utils/character-count.d.ts +6 -0
  784. package/dist-cms/packages/property-editors/utils/character-count.js +11 -0
  785. package/dist-cms/packages/relations/relation-types/collection/views/table/relation-type-table-collection-view.element.js +5 -1
  786. package/dist-cms/packages/relations/relation-types/index.d.ts +1 -0
  787. package/dist-cms/packages/relations/relation-types/index.js +1 -0
  788. package/dist-cms/packages/relations/relation-types/paths.d.ts +7 -0
  789. package/dist-cms/packages/relations/relation-types/paths.js +9 -0
  790. package/dist-cms/packages/relations/relations/entity-actions/bulk-trash/modal/bulk-trash-with-relation-modal.element.d.ts +1 -0
  791. package/dist-cms/packages/relations/relations/entity-actions/bulk-trash/modal/bulk-trash-with-relation-modal.element.js +40 -3
  792. package/dist-cms/packages/relations/relations/entity-actions/bulk-trash/modal/bulk-trash-with-relation-modal.token.d.ts +1 -0
  793. package/dist-cms/packages/relations/relations/entity-actions/trash/modal/trash-with-relation-modal.element.d.ts +1 -0
  794. package/dist-cms/packages/relations/relations/entity-actions/trash/modal/trash-with-relation-modal.element.js +32 -3
  795. package/dist-cms/packages/relations/relations/entity-actions/trash/modal/trash-with-relation-modal.token.d.ts +1 -0
  796. package/dist-cms/packages/relations/relations/global-components/confirm-action-modal-entity-references.element.js +2 -4
  797. package/dist-cms/packages/relations/relations/global-components/confirm-bulk-action-modal-entity-references.element.d.ts +1 -0
  798. package/dist-cms/packages/relations/relations/global-components/confirm-bulk-action-modal-entity-references.element.js +5 -0
  799. package/dist-cms/packages/relations/relations/index.d.ts +4 -0
  800. package/dist-cms/packages/relations/relations/index.js +2 -0
  801. package/dist-cms/packages/static-file/repository/item/static-file-item.server.request-manager.d.ts +1 -0
  802. package/dist-cms/packages/static-file/repository/item/static-file-item.server.request-manager.js +3 -1
  803. package/dist-cms/packages/templating/local-components/insert-menu/insert-menu.element.d.ts +1 -0
  804. package/dist-cms/packages/templating/local-components/insert-menu/insert-menu.element.js +6 -0
  805. package/dist-cms/packages/templating/local-components/production-mode-workspace-action/production-mode-workspace-action.api.d.ts +5 -0
  806. package/dist-cms/packages/templating/local-components/production-mode-workspace-action/production-mode-workspace-action.api.js +12 -0
  807. package/dist-cms/packages/templating/local-components/production-mode-workspace-action/production-mode-workspace-action.d.ts +2 -0
  808. package/dist-cms/packages/templating/local-components/production-mode-workspace-action/production-mode-workspace-action.element.d.ts +12 -0
  809. package/dist-cms/packages/templating/local-components/production-mode-workspace-action/production-mode-workspace-action.element.js +30 -0
  810. package/dist-cms/packages/templating/local-components/production-mode-workspace-action/production-mode-workspace-action.js +2 -0
  811. package/dist-cms/packages/templating/partial-views/entity-actions/create/manifests.js +7 -0
  812. package/dist-cms/packages/templating/partial-views/entity-actions/manifests.js +7 -0
  813. package/dist-cms/packages/templating/partial-views/entity-actions/rename/manifests.js +7 -0
  814. package/dist-cms/packages/templating/partial-views/repository/item/partial-view-item.server.request-manager.d.ts +1 -0
  815. package/dist-cms/packages/templating/partial-views/repository/item/partial-view-item.server.request-manager.js +3 -1
  816. package/dist-cms/packages/templating/partial-views/tree/folder/manifests.js +7 -0
  817. package/dist-cms/packages/templating/partial-views/workspace/manifests.js +23 -0
  818. package/dist-cms/packages/templating/partial-views/workspace/partial-view-workspace-editor.element.d.ts +5 -0
  819. package/dist-cms/packages/templating/partial-views/workspace/partial-view-workspace-editor.element.js +22 -2
  820. package/dist-cms/packages/templating/scripts/repository/item/script-item.server.request-manager.d.ts +1 -0
  821. package/dist-cms/packages/templating/scripts/repository/item/script-item.server.request-manager.js +3 -1
  822. package/dist-cms/packages/templating/stylesheets/repository/item/stylesheet-item.server.request-manager.d.ts +1 -0
  823. package/dist-cms/packages/templating/stylesheets/repository/item/stylesheet-item.server.request-manager.js +3 -1
  824. package/dist-cms/packages/templating/templates/entity-actions/manifests.js +14 -1
  825. package/dist-cms/packages/templating/templates/repository/item/template-item.server.request-manager.d.ts +1 -0
  826. package/dist-cms/packages/templating/templates/repository/item/template-item.server.request-manager.js +3 -1
  827. package/dist-cms/packages/templating/templates/search/global-search/manifests.js +1 -0
  828. package/dist-cms/packages/templating/templates/search/template-search.server.data-source.js +5 -1
  829. package/dist-cms/packages/templating/templates/workspace/manifests.js +23 -0
  830. package/dist-cms/packages/templating/templates/workspace/template-workspace-editor.element.d.ts +5 -0
  831. package/dist-cms/packages/templating/templates/workspace/template-workspace-editor.element.js +29 -9
  832. package/dist-cms/packages/tiptap/clipboard/block/copy/block-rte-to-block-copy-translator.d.ts +8 -0
  833. package/dist-cms/packages/tiptap/clipboard/block/copy/block-rte-to-block-copy-translator.js +24 -0
  834. package/dist-cms/packages/tiptap/clipboard/block/copy/manifest.d.ts +1 -0
  835. package/dist-cms/packages/tiptap/clipboard/block/copy/manifest.js +10 -0
  836. package/dist-cms/packages/tiptap/clipboard/block/paste/block-to-block-rte-paste-translator.d.ts +14 -0
  837. package/dist-cms/packages/tiptap/clipboard/block/paste/block-to-block-rte-paste-translator.js +30 -0
  838. package/dist-cms/packages/tiptap/clipboard/block/paste/manifest.d.ts +1 -0
  839. package/dist-cms/packages/tiptap/clipboard/block/paste/manifest.js +10 -0
  840. package/dist-cms/packages/tiptap/clipboard/manifests.d.ts +1 -0
  841. package/dist-cms/packages/tiptap/clipboard/manifests.js +11 -0
  842. package/dist-cms/packages/tiptap/components/input-tiptap/input-tiptap.element.js +3 -2
  843. package/dist-cms/packages/tiptap/components/statusbar/tiptap-statusbar.element.d.ts +1 -0
  844. package/dist-cms/packages/tiptap/components/statusbar/tiptap-statusbar.element.js +13 -2
  845. package/dist-cms/packages/tiptap/components/toolbar/tiptap-toolbar-button-action.element.d.ts +11 -0
  846. package/dist-cms/packages/tiptap/components/toolbar/tiptap-toolbar-button-action.element.js +32 -0
  847. package/dist-cms/packages/tiptap/components/toolbar/tiptap-toolbar-button-disabled.element.d.ts +1 -0
  848. package/dist-cms/packages/tiptap/components/toolbar/tiptap-toolbar-button-disabled.element.js +2 -1
  849. package/dist-cms/packages/tiptap/components/toolbar/tiptap-toolbar-button.element.d.ts +3 -3
  850. package/dist-cms/packages/tiptap/components/toolbar/tiptap-toolbar-color-picker-button.element.d.ts +2 -1
  851. package/dist-cms/packages/tiptap/extensions/block/block.tiptap-api.js +65 -4
  852. package/dist-cms/packages/tiptap/extensions/bubble-menu/bubble-menu.tiptap-extension.d.ts +5 -0
  853. package/dist-cms/packages/tiptap/extensions/bubble-menu/bubble-menu.tiptap-extension.js +2 -0
  854. package/dist-cms/packages/tiptap/extensions/index.d.ts +1 -0
  855. package/dist-cms/packages/tiptap/extensions/index.js +1 -0
  856. package/dist-cms/packages/tiptap/extensions/link/link.tiptap-extension.js +2 -1
  857. package/dist-cms/packages/tiptap/extensions/link/link.tiptap-toolbar-api.js +4 -1
  858. package/dist-cms/packages/tiptap/extensions/link/manifests.js +1 -2
  859. package/dist-cms/packages/tiptap/extensions/link/unlink.tiptap-toolbar-api.d.ts +2 -3
  860. package/dist-cms/packages/tiptap/extensions/link/unlink.tiptap-toolbar-api.js +2 -3
  861. package/dist-cms/packages/tiptap/extensions/manifests.js +4 -3
  862. package/dist-cms/packages/tiptap/extensions/table/plugins/table-handle.d.ts +8 -0
  863. package/dist-cms/packages/tiptap/extensions/table/plugins/table-handle.js +376 -0
  864. package/dist-cms/packages/tiptap/extensions/table/plugins/table-view.d.ts +9 -0
  865. package/dist-cms/packages/tiptap/extensions/table/plugins/table-view.js +76 -0
  866. package/dist-cms/packages/tiptap/extensions/table/table.tiptap-api.js +92 -71
  867. package/dist-cms/packages/tiptap/extensions/table/table.tiptap-extension.d.ts +2 -7
  868. package/dist-cms/packages/tiptap/extensions/table/table.tiptap-extension.js +14 -389
  869. package/dist-cms/packages/tiptap/extensions/tiptap-toolbar-action-button-api-base.d.ts +14 -0
  870. package/dist-cms/packages/tiptap/extensions/tiptap-toolbar-action-button-api-base.js +16 -0
  871. package/dist-cms/packages/tiptap/extensions/tiptap-toolbar-action-button.kind.d.ts +2 -0
  872. package/dist-cms/packages/tiptap/extensions/tiptap-toolbar-action-button.kind.js +9 -0
  873. package/dist-cms/packages/tiptap/extensions/tiptap-toolbar.extension.d.ts +5 -1
  874. package/dist-cms/packages/tiptap/extensions/undo-redo/manifests.js +2 -4
  875. package/dist-cms/packages/tiptap/extensions/undo-redo/redo.tiptap-toolbar-api.d.ts +2 -3
  876. package/dist-cms/packages/tiptap/extensions/undo-redo/redo.tiptap-toolbar-api.js +2 -3
  877. package/dist-cms/packages/tiptap/extensions/undo-redo/undo.tiptap-toolbar-api.d.ts +2 -3
  878. package/dist-cms/packages/tiptap/extensions/undo-redo/undo.tiptap-toolbar-api.js +2 -3
  879. package/dist-cms/packages/tiptap/manifests.js +6 -1
  880. package/dist-cms/packages/tiptap/property-editors/constants.d.ts +1 -0
  881. package/dist-cms/packages/tiptap/property-editors/constants.js +1 -0
  882. package/dist-cms/packages/tiptap/property-editors/tiptap-rte/constants.d.ts +1 -0
  883. package/dist-cms/packages/tiptap/property-editors/tiptap-rte/constants.js +1 -0
  884. package/dist-cms/packages/tiptap/property-editors/tiptap-rte/manifests.js +2 -1
  885. package/dist-cms/packages/ufm/contexts/ufm.context.js +1 -1
  886. package/dist-cms/packages/umbraco-news/umbraco-news-dashboard.element.js +1 -1
  887. package/dist-cms/packages/user/current-user/history/current-user-history-user-profile-app.element.d.ts +2 -0
  888. package/dist-cms/packages/user/current-user/history/current-user-history-user-profile-app.element.js +52 -5
  889. package/dist-cms/packages/user/current-user/history/current-user-history.store.d.ts +9 -0
  890. package/dist-cms/packages/user/current-user/history/current-user-history.store.js +236 -15
  891. package/dist-cms/packages/user/current-user/modals/current-user/current-user-modal.element.js +5 -7
  892. package/dist-cms/packages/user/user/repository/item/user-item.server.request-manager.d.ts +1 -0
  893. package/dist-cms/packages/user/user/repository/item/user-item.server.request-manager.js +3 -1
  894. package/dist-cms/packages/user/user/workspace/user/components/user-workspace-assign-access/user-workspace-assign-access.element.js +1 -0
  895. package/dist-cms/packages/user/user/workspace/user/user-workspace.context.js +6 -3
  896. package/dist-cms/packages/user/user-group/repository/item/user-group-item.server.request-manager.d.ts +1 -0
  897. package/dist-cms/packages/user/user-group/repository/item/user-group-item.server.request-manager.js +3 -1
  898. package/dist-cms/packages/user/user-group/workspace/user-group/views/user-group-details-workspace-view.element.js +1 -0
  899. package/dist-cms/packages/webhook/webhook/repository/item/webhook-item.server.request-manager.d.ts +1 -0
  900. package/dist-cms/packages/webhook/webhook/repository/item/webhook-item.server.request-manager.js +3 -1
  901. package/dist-cms/tsconfig.build.tsbuildinfo +1 -1
  902. package/examples/entity-content-type-condition/index.ts +21 -40
  903. package/examples/entity-content-type-condition/unique-condition-entity-action.ts +9 -0
  904. package/examples/picker-data-source/example-custom-picker-collection-data-source.ts +108 -20
  905. package/examples/{entity-content-type-condition → workspace-content-type-condition}/content-type-alias-condition-workspace-view.element.ts +4 -4
  906. package/examples/{entity-content-type-condition → workspace-content-type-condition}/content-type-unique-condition-workspace-view.element.ts +4 -4
  907. package/examples/workspace-content-type-condition/index.ts +43 -0
  908. package/package.json +18 -16
  909. package/umbraco-package-schema.json +1455 -116
  910. package/vscode-html-custom-data.json +252 -103
  911. package/dist-cms/external/openid/src/authorization_request.d.ts +0 -43
  912. package/dist-cms/external/openid/src/authorization_request.js +0 -89
  913. package/dist-cms/external/openid/src/authorization_request_handler.d.ts +0 -63
  914. package/dist-cms/external/openid/src/authorization_request_handler.js +0 -108
  915. package/dist-cms/external/openid/src/authorization_response.d.ts +0 -40
  916. package/dist-cms/external/openid/src/authorization_response.js +0 -49
  917. package/dist-cms/external/openid/src/authorization_service_configuration.d.ts +0 -32
  918. package/dist-cms/external/openid/src/authorization_service_configuration.js +0 -55
  919. package/dist-cms/external/openid/src/base64-js/index.d.ts +0 -19
  920. package/dist-cms/external/openid/src/base64-js/index.js +0 -124
  921. package/dist-cms/external/openid/src/crypto_utils.d.ts +0 -22
  922. package/dist-cms/external/openid/src/crypto_utils.js +0 -74
  923. package/dist-cms/external/openid/src/errors.d.ts +0 -8
  924. package/dist-cms/external/openid/src/errors.js +0 -23
  925. package/dist-cms/external/openid/src/flags.d.ts +0 -2
  926. package/dist-cms/external/openid/src/flags.js +0 -18
  927. package/dist-cms/external/openid/src/logger.d.ts +0 -5
  928. package/dist-cms/external/openid/src/logger.js +0 -69
  929. package/dist-cms/external/openid/src/query_string_utils.d.ts +0 -14
  930. package/dist-cms/external/openid/src/query_string_utils.js +0 -51
  931. package/dist-cms/external/openid/src/redirect_based_handler.d.ts +0 -29
  932. package/dist-cms/external/openid/src/redirect_based_handler.js +0 -159
  933. package/dist-cms/external/openid/src/revoke_token_request.d.ts +0 -31
  934. package/dist-cms/external/openid/src/revoke_token_request.js +0 -34
  935. package/dist-cms/external/openid/src/storage.d.ts +0 -50
  936. package/dist-cms/external/openid/src/storage.js +0 -59
  937. package/dist-cms/external/openid/src/token_request.d.ts +0 -33
  938. package/dist-cms/external/openid/src/token_request.js +0 -69
  939. package/dist-cms/external/openid/src/token_request_handler.d.ts +0 -27
  940. package/dist-cms/external/openid/src/token_request_handler.js +0 -58
  941. package/dist-cms/external/openid/src/token_response.d.ts +0 -65
  942. package/dist-cms/external/openid/src/token_response.js +0 -77
  943. package/dist-cms/external/openid/src/types.d.ts +0 -22
  944. package/dist-cms/external/openid/src/types.js +0 -14
  945. package/dist-cms/external/openid/src/xhr.d.ts +0 -13
  946. package/dist-cms/external/openid/src/xhr.js +0 -72
  947. package/dist-cms/packages/core/auth/auth-flow.d.ts +0 -107
  948. package/dist-cms/packages/core/auth/auth-flow.js +0 -385
  949. package/dist-cms/packages/core/auth/workers/token-check.worker.js +0 -104
  950. package/dist-cms/packages/documents/documents/collection/item/document-grid-collection-card.element.d.ts +0 -23
  951. package/dist-cms/packages/documents/documents/collection/item/document-grid-collection-card.element.js +0 -155
  952. package/dist-cms/packages/documents/documents/collection/views/grid/document-grid-collection-view.element.d.ts +0 -17
  953. package/dist-cms/packages/documents/documents/collection/views/grid/document-grid-collection-view.element.js +0 -98
  954. package/dist-cms/packages/extension-insights/collection/repository/extension-collection.repository.d.ts +0 -14
  955. package/dist-cms/packages/extension-insights/collection/repository/extension-collection.repository.js +0 -32
  956. package/dist-cms/packages/extension-insights/collection/types.d.ts +0 -10
  957. package/dist-cms/packages/extension-insights/collection/views/manifests.d.ts +0 -2
  958. package/dist-cms/packages/extension-insights/entity-actions/manifests.js +0 -2
  959. /package/dist-cms/packages/{extension-insights/entity-actions/unregister/index.js → content/content/audit-log/audit-log-action/audit-log-action.extension.js} +0 -0
  960. /package/dist-cms/packages/{extension-insights/collection → content/content-type/entity-content-type/conditions}/types.js +0 -0
  961. /package/dist-cms/packages/{core/auth/workers/token-check.worker.d.ts → content/content-type/entity-content-type/conditions/unique/types.js} +0 -0
  962. /package/dist-cms/packages/{extension-insights/entity-actions/unregister/index.d.ts → content/content-type/entity-content-type/types.js} +0 -0
  963. /package/dist-cms/packages/{extension-insights → core/extension}/collection/manifests.d.ts +0 -0
  964. /package/dist-cms/packages/{extension-insights → core/extension}/collection/manifests.js +0 -0
  965. /package/dist-cms/packages/{extension-insights → core/extension}/collection/repository/index.d.ts +0 -0
  966. /package/dist-cms/packages/{extension-insights → core/extension}/collection/repository/index.js +0 -0
  967. /package/dist-cms/packages/{extension-insights → core/extension}/collection/repository/manifests.d.ts +0 -0
  968. /package/dist-cms/packages/{extension-insights → core/extension}/collection/repository/manifests.js +0 -0
  969. /package/dist-cms/packages/{extension-insights/entity-actions/unregister → core/extension/unregister/entity-action}/manifests.d.ts +0 -0
  970. /package/dist-cms/packages/{extension-insights/entity-actions/unregister → core/extension/unregister/entity-action}/manifests.js +0 -0
  971. /package/dist-cms/packages/core/property-action/{common → kinds}/clear/property-action-clear.controller.d.ts +0 -0
  972. /package/dist-cms/packages/core/property-action/{common → kinds}/clear/property-action-clear.controller.js +0 -0
@@ -2,6 +2,10 @@
2
2
  import { formDataBodySerializer } from './client/index.js';
3
3
  import { client } from './client.gen.js';
4
4
  export class CultureService {
5
+ /**
6
+ * Gets a paginated collection of cultures available for creating languages.
7
+ * Gets a paginated collection containing the English and localized names of all available cultures.
8
+ */
5
9
  static getCulture(options) {
6
10
  return (options?.client ?? client).get({
7
11
  security: [
@@ -16,6 +20,10 @@ export class CultureService {
16
20
  }
17
21
  }
18
22
  export class DataTypeService {
23
+ /**
24
+ * Creates a new data type.
25
+ * Creates a new data type with the configuration specified in the request model.
26
+ */
19
27
  static postDataType(options) {
20
28
  return (options?.client ?? client).post({
21
29
  security: [
@@ -32,6 +40,10 @@ export class DataTypeService {
32
40
  }
33
41
  });
34
42
  }
43
+ /**
44
+ * Deletes a data type.
45
+ * Deletes a data type identified by the provided Id.
46
+ */
35
47
  static deleteDataTypeById(options) {
36
48
  return (options.client ?? client).delete({
37
49
  security: [
@@ -44,6 +56,10 @@ export class DataTypeService {
44
56
  ...options
45
57
  });
46
58
  }
59
+ /**
60
+ * Gets a data type.
61
+ * Gets a data type identified by the provided Id.
62
+ */
47
63
  static getDataTypeById(options) {
48
64
  return (options.client ?? client).get({
49
65
  security: [
@@ -56,6 +72,10 @@ export class DataTypeService {
56
72
  ...options
57
73
  });
58
74
  }
75
+ /**
76
+ * Updates a data type.
77
+ * Updates a data type identified by the provided Id with the details from the request model.
78
+ */
59
79
  static putDataTypeById(options) {
60
80
  return (options.client ?? client).put({
61
81
  security: [
@@ -72,6 +92,10 @@ export class DataTypeService {
72
92
  }
73
93
  });
74
94
  }
95
+ /**
96
+ * Copies a data type.
97
+ * Creates a duplicate of an existing data type identified by the provided unique Id. The copied data type will be given a new Id and have ' (copy)' appended to its name. Optionally, the copy can be placed in a specific container by providing a target container Id.
98
+ */
75
99
  static postDataTypeByIdCopy(options) {
76
100
  return (options.client ?? client).post({
77
101
  security: [
@@ -88,6 +112,10 @@ export class DataTypeService {
88
112
  }
89
113
  });
90
114
  }
115
+ /**
116
+ * Checks if a data type is used.
117
+ * Checks if the data type identified by the provided Id is used in any content, media, or member types.
118
+ */
91
119
  static getDataTypeByIdIsUsed(options) {
92
120
  return (options.client ?? client).get({
93
121
  security: [
@@ -100,6 +128,10 @@ export class DataTypeService {
100
128
  ...options
101
129
  });
102
130
  }
131
+ /**
132
+ * Moves a data type.
133
+ * Moves an existing data type identified by Id to a different container. The target container Id must be provided in the request model.
134
+ */
103
135
  static putDataTypeByIdMove(options) {
104
136
  return (options.client ?? client).put({
105
137
  security: [
@@ -116,6 +148,10 @@ export class DataTypeService {
116
148
  }
117
149
  });
118
150
  }
151
+ /**
152
+ * Gets a paged collection of entities that are referenced by a data type.
153
+ * Gets a paged collection of entities that are referenced by the data type with the provided Id, so you can see where it is being used.
154
+ */
119
155
  static getDataTypeByIdReferencedBy(options) {
120
156
  return (options.client ?? client).get({
121
157
  security: [
@@ -128,6 +164,26 @@ export class DataTypeService {
128
164
  ...options
129
165
  });
130
166
  }
167
+ /**
168
+ * Gets multiple data types.
169
+ * Gets multiple data types identified by the provided Ids.
170
+ */
171
+ static getDataTypeBatch(options) {
172
+ return (options?.client ?? client).get({
173
+ security: [
174
+ {
175
+ scheme: 'bearer',
176
+ type: 'http'
177
+ }
178
+ ],
179
+ url: '/umbraco/management/api/v1/data-type/batch',
180
+ ...options
181
+ });
182
+ }
183
+ /**
184
+ * Gets the data type configuration.
185
+ * Gets the configuration settings for data types.
186
+ */
131
187
  static getDataTypeConfiguration(options) {
132
188
  return (options?.client ?? client).get({
133
189
  security: [
@@ -140,6 +196,10 @@ export class DataTypeService {
140
196
  ...options
141
197
  });
142
198
  }
199
+ /**
200
+ * Creates a data type folder.
201
+ * Creates a new data type folder with the provided name and parent location.
202
+ */
143
203
  static postDataTypeFolder(options) {
144
204
  return (options?.client ?? client).post({
145
205
  security: [
@@ -156,6 +216,10 @@ export class DataTypeService {
156
216
  }
157
217
  });
158
218
  }
219
+ /**
220
+ * Deletes a data type folder.
221
+ * Deletes a data type folder identified by the provided Id.
222
+ */
159
223
  static deleteDataTypeFolderById(options) {
160
224
  return (options.client ?? client).delete({
161
225
  security: [
@@ -168,6 +232,10 @@ export class DataTypeService {
168
232
  ...options
169
233
  });
170
234
  }
235
+ /**
236
+ * Gets a data type folder.
237
+ * Gets a data type folder identified by the provided Id.
238
+ */
171
239
  static getDataTypeFolderById(options) {
172
240
  return (options.client ?? client).get({
173
241
  security: [
@@ -180,6 +248,10 @@ export class DataTypeService {
180
248
  ...options
181
249
  });
182
250
  }
251
+ /**
252
+ * Updates a data type folder.
253
+ * Updates a data type folder identified by the provided Id with the details provided in the request model.
254
+ */
183
255
  static putDataTypeFolderById(options) {
184
256
  return (options.client ?? client).put({
185
257
  security: [
@@ -196,6 +268,10 @@ export class DataTypeService {
196
268
  }
197
269
  });
198
270
  }
271
+ /**
272
+ * Gets a filtered collection of data types.
273
+ * Filters data types based on the provided criteria with support for pagination.
274
+ */
199
275
  static getFilterDataType(options) {
200
276
  return (options?.client ?? client).get({
201
277
  security: [
@@ -208,6 +284,10 @@ export class DataTypeService {
208
284
  ...options
209
285
  });
210
286
  }
287
+ /**
288
+ * Gets a collection of data type items.
289
+ * Gets a collection of data type items identified by the provided Ids.
290
+ */
211
291
  static getItemDataType(options) {
212
292
  return (options?.client ?? client).get({
213
293
  security: [
@@ -220,6 +300,26 @@ export class DataTypeService {
220
300
  ...options
221
301
  });
222
302
  }
303
+ /**
304
+ * Gets ancestors for a collection of data type items.
305
+ * Gets the ancestor chains for data type items identified by the provided Ids.
306
+ */
307
+ static getItemDataTypeAncestors(options) {
308
+ return (options?.client ?? client).get({
309
+ security: [
310
+ {
311
+ scheme: 'bearer',
312
+ type: 'http'
313
+ }
314
+ ],
315
+ url: '/umbraco/management/api/v1/item/data-type/ancestors',
316
+ ...options
317
+ });
318
+ }
319
+ /**
320
+ * Searches data type items.
321
+ * Searches data type items by the provided query with pagination support.
322
+ */
223
323
  static getItemDataTypeSearch(options) {
224
324
  return (options?.client ?? client).get({
225
325
  security: [
@@ -232,6 +332,10 @@ export class DataTypeService {
232
332
  ...options
233
333
  });
234
334
  }
335
+ /**
336
+ * Gets a collection of ancestor data type folders.
337
+ * Gets a collection of data type folders that are ancestors to the provided Id.
338
+ */
235
339
  static getTreeDataTypeAncestors(options) {
236
340
  return (options?.client ?? client).get({
237
341
  security: [
@@ -244,6 +348,10 @@ export class DataTypeService {
244
348
  ...options
245
349
  });
246
350
  }
351
+ /**
352
+ * Gets a collection of data type tree child items.
353
+ * Gets a paginated collection of data type tree items that are children of the provided parent Id.
354
+ */
247
355
  static getTreeDataTypeChildren(options) {
248
356
  return (options?.client ?? client).get({
249
357
  security: [
@@ -256,6 +364,10 @@ export class DataTypeService {
256
364
  ...options
257
365
  });
258
366
  }
367
+ /**
368
+ * Gets a collection of data type items from the root of the tree.
369
+ * Gets a paginated collection of data type items from the root of the tree with optional filtering.
370
+ */
259
371
  static getTreeDataTypeRoot(options) {
260
372
  return (options?.client ?? client).get({
261
373
  security: [
@@ -268,6 +380,22 @@ export class DataTypeService {
268
380
  ...options
269
381
  });
270
382
  }
383
+ static getTreeDataTypeSearch(options) {
384
+ return (options?.client ?? client).get({
385
+ security: [
386
+ {
387
+ scheme: 'bearer',
388
+ type: 'http'
389
+ }
390
+ ],
391
+ url: '/umbraco/management/api/v1/tree/data-type/search',
392
+ ...options
393
+ });
394
+ }
395
+ /**
396
+ * Gets a collection of data type tree sibling items.
397
+ * Gets a paged collection of data type tree items that are siblings of the provided Id. The collection can be optionally filtered to return only folder, or folders and data types.
398
+ */
271
399
  static getTreeDataTypeSiblings(options) {
272
400
  return (options?.client ?? client).get({
273
401
  security: [
@@ -282,6 +410,10 @@ export class DataTypeService {
282
410
  }
283
411
  }
284
412
  export class DictionaryService {
413
+ /**
414
+ * Gets a paginated collection of dictionary items.
415
+ * Gets a paginated collection of dictionary items with optional filtering by name.
416
+ */
285
417
  static getDictionary(options) {
286
418
  return (options?.client ?? client).get({
287
419
  security: [
@@ -294,6 +426,10 @@ export class DictionaryService {
294
426
  ...options
295
427
  });
296
428
  }
429
+ /**
430
+ * Creates a new dictionary.
431
+ * Creates a new dictionary with the configuration specified in the request model.
432
+ */
297
433
  static postDictionary(options) {
298
434
  return (options?.client ?? client).post({
299
435
  security: [
@@ -310,6 +446,10 @@ export class DictionaryService {
310
446
  }
311
447
  });
312
448
  }
449
+ /**
450
+ * Deletes a dictionary.
451
+ * Deletes a dictionary identified by the provided Id.
452
+ */
313
453
  static deleteDictionaryById(options) {
314
454
  return (options.client ?? client).delete({
315
455
  security: [
@@ -322,6 +462,10 @@ export class DictionaryService {
322
462
  ...options
323
463
  });
324
464
  }
465
+ /**
466
+ * Gets a dictionary.
467
+ * Gets a dictionary identified by the provided Id.
468
+ */
325
469
  static getDictionaryById(options) {
326
470
  return (options.client ?? client).get({
327
471
  security: [
@@ -334,6 +478,10 @@ export class DictionaryService {
334
478
  ...options
335
479
  });
336
480
  }
481
+ /**
482
+ * Updates a dictionary.
483
+ * Updates a dictionary identified by the provided Id with the details from the request model.
484
+ */
337
485
  static putDictionaryById(options) {
338
486
  return (options.client ?? client).put({
339
487
  security: [
@@ -350,6 +498,10 @@ export class DictionaryService {
350
498
  }
351
499
  });
352
500
  }
501
+ /**
502
+ * Exports a dictionary.
503
+ * Exports the dictionary identified by the provided Id to a downloadable format.
504
+ */
353
505
  static getDictionaryByIdExport(options) {
354
506
  return (options.client ?? client).get({
355
507
  security: [
@@ -362,6 +514,10 @@ export class DictionaryService {
362
514
  ...options
363
515
  });
364
516
  }
517
+ /**
518
+ * Moves a dictionary.
519
+ * Moves a dictionary identified by the provided Id to a different location.
520
+ */
365
521
  static putDictionaryByIdMove(options) {
366
522
  return (options.client ?? client).put({
367
523
  security: [
@@ -378,6 +534,10 @@ export class DictionaryService {
378
534
  }
379
535
  });
380
536
  }
537
+ /**
538
+ * Imports a dictionary.
539
+ * Imports a dictionary from the provided file upload.
540
+ */
381
541
  static postDictionaryImport(options) {
382
542
  return (options?.client ?? client).post({
383
543
  security: [
@@ -394,6 +554,10 @@ export class DictionaryService {
394
554
  }
395
555
  });
396
556
  }
557
+ /**
558
+ * Gets a collection of dictionary items.
559
+ * Gets a collection of dictionary items identified by the provided Ids.
560
+ */
397
561
  static getItemDictionary(options) {
398
562
  return (options?.client ?? client).get({
399
563
  security: [
@@ -406,6 +570,10 @@ export class DictionaryService {
406
570
  ...options
407
571
  });
408
572
  }
573
+ /**
574
+ * Gets a collection of ancestor dictionary items.
575
+ * Gets a collection of dictionary items that are ancestors to the provided Id.
576
+ */
409
577
  static getTreeDictionaryAncestors(options) {
410
578
  return (options?.client ?? client).get({
411
579
  security: [
@@ -418,6 +586,10 @@ export class DictionaryService {
418
586
  ...options
419
587
  });
420
588
  }
589
+ /**
590
+ * Gets a collection of dictionary tree child items.
591
+ * Gets a paginated collection of dictionary tree items that are children of the provided parent Id.
592
+ */
421
593
  static getTreeDictionaryChildren(options) {
422
594
  return (options?.client ?? client).get({
423
595
  security: [
@@ -430,6 +602,10 @@ export class DictionaryService {
430
602
  ...options
431
603
  });
432
604
  }
605
+ /**
606
+ * Gets a collection of dictionary items from the root of the tree.
607
+ * Gets a paginated collection of dictionary items from the root of the tree with optional filtering.
608
+ */
433
609
  static getTreeDictionaryRoot(options) {
434
610
  return (options?.client ?? client).get({
435
611
  security: [
@@ -444,6 +620,10 @@ export class DictionaryService {
444
620
  }
445
621
  }
446
622
  export class DocumentBlueprintService {
623
+ /**
624
+ * Creates a new document blueprint.
625
+ * Creates a new document blueprint with the configuration specified in the request model.
626
+ */
447
627
  static postDocumentBlueprint(options) {
448
628
  return (options?.client ?? client).post({
449
629
  security: [
@@ -460,6 +640,10 @@ export class DocumentBlueprintService {
460
640
  }
461
641
  });
462
642
  }
643
+ /**
644
+ * Deletes a document blueprint.
645
+ * Deletes a document blueprint identified by the provided Id.
646
+ */
463
647
  static deleteDocumentBlueprintById(options) {
464
648
  return (options.client ?? client).delete({
465
649
  security: [
@@ -472,6 +656,10 @@ export class DocumentBlueprintService {
472
656
  ...options
473
657
  });
474
658
  }
659
+ /**
660
+ * Gets a document blueprint.
661
+ * Gets a document blueprint identified by the provided Id.
662
+ */
475
663
  static getDocumentBlueprintById(options) {
476
664
  return (options.client ?? client).get({
477
665
  security: [
@@ -484,6 +672,10 @@ export class DocumentBlueprintService {
484
672
  ...options
485
673
  });
486
674
  }
675
+ /**
676
+ * Updates a document blueprint.
677
+ * Updates a document blueprint identified by the provided Id with the details from the request model.
678
+ */
487
679
  static putDocumentBlueprintById(options) {
488
680
  return (options.client ?? client).put({
489
681
  security: [
@@ -500,6 +692,10 @@ export class DocumentBlueprintService {
500
692
  }
501
693
  });
502
694
  }
695
+ /**
696
+ * Moves a document blueprint.
697
+ * Moves a document blueprint identified by the provided Id to a different location.
698
+ */
503
699
  static putDocumentBlueprintByIdMove(options) {
504
700
  return (options.client ?? client).put({
505
701
  security: [
@@ -516,6 +712,10 @@ export class DocumentBlueprintService {
516
712
  }
517
713
  });
518
714
  }
715
+ /**
716
+ * Scaffolds a document blueprint.
717
+ * Creates a scaffold for a new document blueprint with default values.
718
+ */
519
719
  static getDocumentBlueprintByIdScaffold(options) {
520
720
  return (options.client ?? client).get({
521
721
  security: [
@@ -528,6 +728,10 @@ export class DocumentBlueprintService {
528
728
  ...options
529
729
  });
530
730
  }
731
+ /**
732
+ * Creates a document blueprint folder.
733
+ * Creates a new document blueprint folder with the provided name and parent location.
734
+ */
531
735
  static postDocumentBlueprintFolder(options) {
532
736
  return (options?.client ?? client).post({
533
737
  security: [
@@ -544,6 +748,10 @@ export class DocumentBlueprintService {
544
748
  }
545
749
  });
546
750
  }
751
+ /**
752
+ * Deletes a document blueprint folder.
753
+ * Deletes a document blueprint folder identified by the provided Id.
754
+ */
547
755
  static deleteDocumentBlueprintFolderById(options) {
548
756
  return (options.client ?? client).delete({
549
757
  security: [
@@ -556,6 +764,10 @@ export class DocumentBlueprintService {
556
764
  ...options
557
765
  });
558
766
  }
767
+ /**
768
+ * Gets a document blueprint folder.
769
+ * Gets a document blueprint folder identified by the provided Id.
770
+ */
559
771
  static getDocumentBlueprintFolderById(options) {
560
772
  return (options.client ?? client).get({
561
773
  security: [
@@ -568,6 +780,10 @@ export class DocumentBlueprintService {
568
780
  ...options
569
781
  });
570
782
  }
783
+ /**
784
+ * Updates a document blueprint folder.
785
+ * Updates a document blueprint folder identified by the provided Id with the details from the request model.
786
+ */
571
787
  static putDocumentBlueprintFolderById(options) {
572
788
  return (options.client ?? client).put({
573
789
  security: [
@@ -584,6 +800,10 @@ export class DocumentBlueprintService {
584
800
  }
585
801
  });
586
802
  }
803
+ /**
804
+ * Creates a document blueprint from an existing document.
805
+ * Creates a new document blueprint based on an existing document identified by the provided Id.
806
+ */
587
807
  static postDocumentBlueprintFromDocument(options) {
588
808
  return (options?.client ?? client).post({
589
809
  security: [
@@ -600,6 +820,10 @@ export class DocumentBlueprintService {
600
820
  }
601
821
  });
602
822
  }
823
+ /**
824
+ * Gets a collection of document blueprint items.
825
+ * Gets a collection of document blueprint items identified by the provided Ids.
826
+ */
603
827
  static getItemDocumentBlueprint(options) {
604
828
  return (options?.client ?? client).get({
605
829
  security: [
@@ -612,6 +836,10 @@ export class DocumentBlueprintService {
612
836
  ...options
613
837
  });
614
838
  }
839
+ /**
840
+ * Gets a collection of ancestor document blueprint items.
841
+ * Gets a collection of document blueprint items that are ancestors to the provided Id.
842
+ */
615
843
  static getTreeDocumentBlueprintAncestors(options) {
616
844
  return (options?.client ?? client).get({
617
845
  security: [
@@ -624,6 +852,10 @@ export class DocumentBlueprintService {
624
852
  ...options
625
853
  });
626
854
  }
855
+ /**
856
+ * Gets a collection of document blueprint tree child items.
857
+ * Gets a paginated collection of document blueprint tree items that are children of the provided parent Id.
858
+ */
627
859
  static getTreeDocumentBlueprintChildren(options) {
628
860
  return (options?.client ?? client).get({
629
861
  security: [
@@ -636,6 +868,10 @@ export class DocumentBlueprintService {
636
868
  ...options
637
869
  });
638
870
  }
871
+ /**
872
+ * Gets a collection of document blueprint items from the root of the tree.
873
+ * Gets a paginated collection of document blueprint items from the root of the tree with optional filtering.
874
+ */
639
875
  static getTreeDocumentBlueprintRoot(options) {
640
876
  return (options?.client ?? client).get({
641
877
  security: [
@@ -648,6 +884,10 @@ export class DocumentBlueprintService {
648
884
  ...options
649
885
  });
650
886
  }
887
+ /**
888
+ * Gets a collection of document blueprint tree sibling items.
889
+ * Gets a collection of document blueprint tree items that are siblings of the provided Id.
890
+ */
651
891
  static getTreeDocumentBlueprintSiblings(options) {
652
892
  return (options?.client ?? client).get({
653
893
  security: [
@@ -662,6 +902,10 @@ export class DocumentBlueprintService {
662
902
  }
663
903
  }
664
904
  export class DocumentTypeService {
905
+ /**
906
+ * Creates a new document type.
907
+ * Creates a new document type with the configuration specified in the request model.
908
+ */
665
909
  static postDocumentType(options) {
666
910
  return (options?.client ?? client).post({
667
911
  security: [
@@ -678,6 +922,10 @@ export class DocumentTypeService {
678
922
  }
679
923
  });
680
924
  }
925
+ /**
926
+ * Deletes a document type.
927
+ * Deletes a document type identified by the provided Id.
928
+ */
681
929
  static deleteDocumentTypeById(options) {
682
930
  return (options.client ?? client).delete({
683
931
  security: [
@@ -690,6 +938,10 @@ export class DocumentTypeService {
690
938
  ...options
691
939
  });
692
940
  }
941
+ /**
942
+ * Gets a document type.
943
+ * Gets a document type identified by the provided Id.
944
+ */
693
945
  static getDocumentTypeById(options) {
694
946
  return (options.client ?? client).get({
695
947
  security: [
@@ -702,6 +954,10 @@ export class DocumentTypeService {
702
954
  ...options
703
955
  });
704
956
  }
957
+ /**
958
+ * Updates a document type.
959
+ * Updates a document type identified by the provided Id with the details from the request model.
960
+ */
705
961
  static putDocumentTypeById(options) {
706
962
  return (options.client ?? client).put({
707
963
  security: [
@@ -718,6 +974,10 @@ export class DocumentTypeService {
718
974
  }
719
975
  });
720
976
  }
977
+ /**
978
+ * Gets allowed child document types.
979
+ * Gets a collection of document types that are allowed as children of the specified parent document type.
980
+ */
721
981
  static getDocumentTypeByIdAllowedChildren(options) {
722
982
  return (options.client ?? client).get({
723
983
  security: [
@@ -730,6 +990,26 @@ export class DocumentTypeService {
730
990
  ...options
731
991
  });
732
992
  }
993
+ /**
994
+ * Gets allowed parent document types.
995
+ * Gets a collection of document types that are allowed as parents of the specified document type.
996
+ */
997
+ static getDocumentTypeByIdAllowedParents(options) {
998
+ return (options.client ?? client).get({
999
+ security: [
1000
+ {
1001
+ scheme: 'bearer',
1002
+ type: 'http'
1003
+ }
1004
+ ],
1005
+ url: '/umbraco/management/api/v1/document-type/{id}/allowed-parents',
1006
+ ...options
1007
+ });
1008
+ }
1009
+ /**
1010
+ * Gets document blueprints for a document type.
1011
+ * Gets a collection of document blueprints available for the specified document type.
1012
+ */
733
1013
  static getDocumentTypeByIdBlueprint(options) {
734
1014
  return (options.client ?? client).get({
735
1015
  security: [
@@ -742,6 +1022,10 @@ export class DocumentTypeService {
742
1022
  ...options
743
1023
  });
744
1024
  }
1025
+ /**
1026
+ * Gets composition references.
1027
+ * Gets a collection of document types that reference the specified document type as a composition.
1028
+ */
745
1029
  static getDocumentTypeByIdCompositionReferences(options) {
746
1030
  return (options.client ?? client).get({
747
1031
  security: [
@@ -754,6 +1038,10 @@ export class DocumentTypeService {
754
1038
  ...options
755
1039
  });
756
1040
  }
1041
+ /**
1042
+ * Copies a document type.
1043
+ * Creates a duplicate of an existing document type identified by the provided Id.
1044
+ */
757
1045
  static postDocumentTypeByIdCopy(options) {
758
1046
  return (options.client ?? client).post({
759
1047
  security: [
@@ -770,6 +1058,10 @@ export class DocumentTypeService {
770
1058
  }
771
1059
  });
772
1060
  }
1061
+ /**
1062
+ * Exports a document type.
1063
+ * Exports the document type identified by the provided Id to a downloadable format.
1064
+ */
773
1065
  static getDocumentTypeByIdExport(options) {
774
1066
  return (options.client ?? client).get({
775
1067
  security: [
@@ -782,6 +1074,10 @@ export class DocumentTypeService {
782
1074
  ...options
783
1075
  });
784
1076
  }
1077
+ /**
1078
+ * Imports a document type.
1079
+ * Imports a document type from the provided file upload.
1080
+ */
785
1081
  static putDocumentTypeByIdImport(options) {
786
1082
  return (options.client ?? client).put({
787
1083
  security: [
@@ -798,6 +1094,10 @@ export class DocumentTypeService {
798
1094
  }
799
1095
  });
800
1096
  }
1097
+ /**
1098
+ * Moves a document type.
1099
+ * Moves a document type identified by the provided Id to a different location.
1100
+ */
801
1101
  static putDocumentTypeByIdMove(options) {
802
1102
  return (options.client ?? client).put({
803
1103
  security: [
@@ -814,6 +1114,10 @@ export class DocumentTypeService {
814
1114
  }
815
1115
  });
816
1116
  }
1117
+ /**
1118
+ * Creates a template for a document type.
1119
+ * Creates a new template associated with the document type identified by the provided Id.
1120
+ */
817
1121
  static postDocumentTypeByIdTemplate(options) {
818
1122
  return (options.client ?? client).post({
819
1123
  security: [
@@ -830,6 +1134,10 @@ export class DocumentTypeService {
830
1134
  }
831
1135
  });
832
1136
  }
1137
+ /**
1138
+ * Gets document types allowed at root.
1139
+ * Gets a collection of document types that are allowed to be created at the root level.
1140
+ */
833
1141
  static getDocumentTypeAllowedAtRoot(options) {
834
1142
  return (options?.client ?? client).get({
835
1143
  security: [
@@ -842,6 +1150,10 @@ export class DocumentTypeService {
842
1150
  ...options
843
1151
  });
844
1152
  }
1153
+ /**
1154
+ * Gets available compositions.
1155
+ * Gets a collection of document types that are available to use as compositions for the specified document type.
1156
+ */
845
1157
  static postDocumentTypeAvailableCompositions(options) {
846
1158
  return (options?.client ?? client).post({
847
1159
  security: [
@@ -858,6 +1170,26 @@ export class DocumentTypeService {
858
1170
  }
859
1171
  });
860
1172
  }
1173
+ /**
1174
+ * Gets multiple document types.
1175
+ * Gets multiple document types identified by the provided Ids.
1176
+ */
1177
+ static getDocumentTypeBatch(options) {
1178
+ return (options?.client ?? client).get({
1179
+ security: [
1180
+ {
1181
+ scheme: 'bearer',
1182
+ type: 'http'
1183
+ }
1184
+ ],
1185
+ url: '/umbraco/management/api/v1/document-type/batch',
1186
+ ...options
1187
+ });
1188
+ }
1189
+ /**
1190
+ * Gets the document type configuration.
1191
+ * Gets the configuration settings for document types.
1192
+ */
861
1193
  static getDocumentTypeConfiguration(options) {
862
1194
  return (options?.client ?? client).get({
863
1195
  security: [
@@ -870,6 +1202,10 @@ export class DocumentTypeService {
870
1202
  ...options
871
1203
  });
872
1204
  }
1205
+ /**
1206
+ * Creates a document type folder.
1207
+ * Creates a new document type folder with the provided name and parent location.
1208
+ */
873
1209
  static postDocumentTypeFolder(options) {
874
1210
  return (options?.client ?? client).post({
875
1211
  security: [
@@ -886,6 +1222,10 @@ export class DocumentTypeService {
886
1222
  }
887
1223
  });
888
1224
  }
1225
+ /**
1226
+ * Deletes a document type folder.
1227
+ * Deletes a document type folder identified by the provided Id.
1228
+ */
889
1229
  static deleteDocumentTypeFolderById(options) {
890
1230
  return (options.client ?? client).delete({
891
1231
  security: [
@@ -898,6 +1238,10 @@ export class DocumentTypeService {
898
1238
  ...options
899
1239
  });
900
1240
  }
1241
+ /**
1242
+ * Gets a document type folder.
1243
+ * Gets a document type folder identified by the provided Id.
1244
+ */
901
1245
  static getDocumentTypeFolderById(options) {
902
1246
  return (options.client ?? client).get({
903
1247
  security: [
@@ -910,6 +1254,10 @@ export class DocumentTypeService {
910
1254
  ...options
911
1255
  });
912
1256
  }
1257
+ /**
1258
+ * Updates a document type folder.
1259
+ * Updates a document type folder identified by the provided Id with the details from the request model.
1260
+ */
913
1261
  static putDocumentTypeFolderById(options) {
914
1262
  return (options.client ?? client).put({
915
1263
  security: [
@@ -926,6 +1274,10 @@ export class DocumentTypeService {
926
1274
  }
927
1275
  });
928
1276
  }
1277
+ /**
1278
+ * Imports a document type.
1279
+ * Imports a document type from the provided file upload.
1280
+ */
929
1281
  static postDocumentTypeImport(options) {
930
1282
  return (options?.client ?? client).post({
931
1283
  security: [
@@ -942,6 +1294,10 @@ export class DocumentTypeService {
942
1294
  }
943
1295
  });
944
1296
  }
1297
+ /**
1298
+ * Gets a collection of document type items.
1299
+ * Gets a collection of document type items identified by the provided Ids.
1300
+ */
945
1301
  static getItemDocumentType(options) {
946
1302
  return (options?.client ?? client).get({
947
1303
  security: [
@@ -954,6 +1310,26 @@ export class DocumentTypeService {
954
1310
  ...options
955
1311
  });
956
1312
  }
1313
+ /**
1314
+ * Gets ancestors for a collection of document type items.
1315
+ * Gets the ancestor chains for document type items identified by the provided Ids.
1316
+ */
1317
+ static getItemDocumentTypeAncestors(options) {
1318
+ return (options?.client ?? client).get({
1319
+ security: [
1320
+ {
1321
+ scheme: 'bearer',
1322
+ type: 'http'
1323
+ }
1324
+ ],
1325
+ url: '/umbraco/management/api/v1/item/document-type/ancestors',
1326
+ ...options
1327
+ });
1328
+ }
1329
+ /**
1330
+ * Searches document type items.
1331
+ * Searches document type items by the provided query with pagination support.
1332
+ */
957
1333
  static getItemDocumentTypeSearch(options) {
958
1334
  return (options?.client ?? client).get({
959
1335
  security: [
@@ -966,6 +1342,10 @@ export class DocumentTypeService {
966
1342
  ...options
967
1343
  });
968
1344
  }
1345
+ /**
1346
+ * Gets a collection of ancestor document type items.
1347
+ * Gets a collection of document type items that are ancestors to the provided Id.
1348
+ */
969
1349
  static getTreeDocumentTypeAncestors(options) {
970
1350
  return (options?.client ?? client).get({
971
1351
  security: [
@@ -978,6 +1358,10 @@ export class DocumentTypeService {
978
1358
  ...options
979
1359
  });
980
1360
  }
1361
+ /**
1362
+ * Gets a collection of document type tree child items.
1363
+ * Gets a paginated collection of document type tree items that are children of the provided parent Id.
1364
+ */
981
1365
  static getTreeDocumentTypeChildren(options) {
982
1366
  return (options?.client ?? client).get({
983
1367
  security: [
@@ -990,6 +1374,10 @@ export class DocumentTypeService {
990
1374
  ...options
991
1375
  });
992
1376
  }
1377
+ /**
1378
+ * Gets a collection of document type items from the root of the tree.
1379
+ * Gets a paginated collection of document type items from the root of the tree with optional filtering.
1380
+ */
993
1381
  static getTreeDocumentTypeRoot(options) {
994
1382
  return (options?.client ?? client).get({
995
1383
  security: [
@@ -1002,6 +1390,22 @@ export class DocumentTypeService {
1002
1390
  ...options
1003
1391
  });
1004
1392
  }
1393
+ static getTreeDocumentTypeSearch(options) {
1394
+ return (options?.client ?? client).get({
1395
+ security: [
1396
+ {
1397
+ scheme: 'bearer',
1398
+ type: 'http'
1399
+ }
1400
+ ],
1401
+ url: '/umbraco/management/api/v1/tree/document-type/search',
1402
+ ...options
1403
+ });
1404
+ }
1405
+ /**
1406
+ * Gets a collection of document type tree sibling items.
1407
+ * Gets a collection of document type tree items that are siblings of the provided Id.
1408
+ */
1005
1409
  static getTreeDocumentTypeSiblings(options) {
1006
1410
  return (options?.client ?? client).get({
1007
1411
  security: [
@@ -1016,6 +1420,10 @@ export class DocumentTypeService {
1016
1420
  }
1017
1421
  }
1018
1422
  export class DocumentVersionService {
1423
+ /**
1424
+ * Gets a paginated collection of versions for a specific document.
1425
+ * Gets a paginated collection of versions for a specific document and optional culture. Each result describes the version and includes details of the document type, editor, version date, and published status.
1426
+ */
1019
1427
  static getDocumentVersion(options) {
1020
1428
  return (options.client ?? client).get({
1021
1429
  security: [
@@ -1028,6 +1436,10 @@ export class DocumentVersionService {
1028
1436
  ...options
1029
1437
  });
1030
1438
  }
1439
+ /**
1440
+ * Gets a specific document version.
1441
+ * Gets a specific document version by its Id. If found, the result describes the version and includes details of the document type, editor, version date, and published status.
1442
+ */
1031
1443
  static getDocumentVersionById(options) {
1032
1444
  return (options.client ?? client).get({
1033
1445
  security: [
@@ -1040,6 +1452,10 @@ export class DocumentVersionService {
1040
1452
  ...options
1041
1453
  });
1042
1454
  }
1455
+ /**
1456
+ * Sets the prevent clean up status for a document version.
1457
+ * Sets the prevent clean up boolean status for a document version to the provided value. This controls whether the version will be a candidate for removal in content history clean up.
1458
+ */
1043
1459
  static putDocumentVersionByIdPreventCleanup(options) {
1044
1460
  return (options.client ?? client).put({
1045
1461
  security: [
@@ -1052,6 +1468,10 @@ export class DocumentVersionService {
1052
1468
  ...options
1053
1469
  });
1054
1470
  }
1471
+ /**
1472
+ * Rolls back a document to a specific version.
1473
+ * Rolls back a document to the version indicated by the provided Id. This will archive the current version of the document and publish the provided one.
1474
+ */
1055
1475
  static postDocumentVersionByIdRollback(options) {
1056
1476
  return (options.client ?? client).post({
1057
1477
  security: [
@@ -1066,6 +1486,10 @@ export class DocumentVersionService {
1066
1486
  }
1067
1487
  }
1068
1488
  export class DocumentByIdValidate1Service {
1489
+ /**
1490
+ * Validates updating a document.
1491
+ * Validates the request model for updating a document without actually updating it.
1492
+ */
1069
1493
  static putUmbracoManagementApiV11DocumentByIdValidate11(options) {
1070
1494
  return (options.client ?? client).put({
1071
1495
  security: [
@@ -1087,6 +1511,10 @@ export class PutUmbracoManagementApiV1Service {
1087
1511
  static { this.documentByIdValidate1Service = DocumentByIdValidate1Service; }
1088
1512
  }
1089
1513
  export class DocumentService {
1514
+ /**
1515
+ * Gets a document collection.
1516
+ * Gets a document collection identified by the provided Id.
1517
+ */
1090
1518
  static getCollectionDocumentById(options) {
1091
1519
  return (options.client ?? client).get({
1092
1520
  security: [
@@ -1099,6 +1527,10 @@ export class DocumentService {
1099
1527
  ...options
1100
1528
  });
1101
1529
  }
1530
+ /**
1531
+ * Creates a new document.
1532
+ * Creates a new document with the configuration specified in the request model.
1533
+ */
1102
1534
  static postDocument(options) {
1103
1535
  return (options?.client ?? client).post({
1104
1536
  security: [
@@ -1115,6 +1547,10 @@ export class DocumentService {
1115
1547
  }
1116
1548
  });
1117
1549
  }
1550
+ /**
1551
+ * Deletes a document.
1552
+ * Deletes a document identified by the provided Id.
1553
+ */
1118
1554
  static deleteDocumentById(options) {
1119
1555
  return (options.client ?? client).delete({
1120
1556
  security: [
@@ -1127,6 +1563,10 @@ export class DocumentService {
1127
1563
  ...options
1128
1564
  });
1129
1565
  }
1566
+ /**
1567
+ * Gets a document.
1568
+ * Gets a document identified by the provided Id.
1569
+ */
1130
1570
  static getDocumentById(options) {
1131
1571
  return (options.client ?? client).get({
1132
1572
  security: [
@@ -1139,6 +1579,10 @@ export class DocumentService {
1139
1579
  ...options
1140
1580
  });
1141
1581
  }
1582
+ /**
1583
+ * Updates a document.
1584
+ * Updates a document identified by the provided Id with the details from the request model.
1585
+ */
1142
1586
  static putDocumentById(options) {
1143
1587
  return (options.client ?? client).put({
1144
1588
  security: [
@@ -1155,6 +1599,10 @@ export class DocumentService {
1155
1599
  }
1156
1600
  });
1157
1601
  }
1602
+ /**
1603
+ * Gets the audit log for a document.
1604
+ * Gets a paginated collection of audit log entries for the document identified by the provided Id.
1605
+ */
1158
1606
  static getDocumentByIdAuditLog(options) {
1159
1607
  return (options.client ?? client).get({
1160
1608
  security: [
@@ -1168,6 +1616,8 @@ export class DocumentService {
1168
1616
  });
1169
1617
  }
1170
1618
  /**
1619
+ * Gets available segments.
1620
+ * Gets a collection of available content segments for the system.
1171
1621
  * @deprecated
1172
1622
  */
1173
1623
  static getDocumentByIdAvailableSegmentOptions(options) {
@@ -1182,6 +1632,10 @@ export class DocumentService {
1182
1632
  ...options
1183
1633
  });
1184
1634
  }
1635
+ /**
1636
+ * Copies a document.
1637
+ * Creates a duplicate of an existing document identified by the provided Id.
1638
+ */
1185
1639
  static postDocumentByIdCopy(options) {
1186
1640
  return (options.client ?? client).post({
1187
1641
  security: [
@@ -1198,6 +1652,10 @@ export class DocumentService {
1198
1652
  }
1199
1653
  });
1200
1654
  }
1655
+ /**
1656
+ * Gets domains for a document.
1657
+ * Gets the domains and culture settings assigned to the document identified by the provided Id.
1658
+ */
1201
1659
  static getDocumentByIdDomains(options) {
1202
1660
  return (options.client ?? client).get({
1203
1661
  security: [
@@ -1210,6 +1668,10 @@ export class DocumentService {
1210
1668
  ...options
1211
1669
  });
1212
1670
  }
1671
+ /**
1672
+ * Updates the domains for a document.
1673
+ * Updates the domains for the document identified by the provided Id with the details from the request model.
1674
+ */
1213
1675
  static putDocumentByIdDomains(options) {
1214
1676
  return (options.client ?? client).put({
1215
1677
  security: [
@@ -1226,6 +1688,10 @@ export class DocumentService {
1226
1688
  }
1227
1689
  });
1228
1690
  }
1691
+ /**
1692
+ * Moves a document.
1693
+ * Moves a document identified by the provided Id to a different location.
1694
+ */
1229
1695
  static putDocumentByIdMove(options) {
1230
1696
  return (options.client ?? client).put({
1231
1697
  security: [
@@ -1242,6 +1708,10 @@ export class DocumentService {
1242
1708
  }
1243
1709
  });
1244
1710
  }
1711
+ /**
1712
+ * Moves a document to the recycle bin.
1713
+ * Moves a document identified by the provided Id to the recycle bin.
1714
+ */
1245
1715
  static putDocumentByIdMoveToRecycleBin(options) {
1246
1716
  return (options.client ?? client).put({
1247
1717
  security: [
@@ -1254,6 +1724,10 @@ export class DocumentService {
1254
1724
  ...options
1255
1725
  });
1256
1726
  }
1727
+ /**
1728
+ * Gets notifications for a document.
1729
+ * Gets the notifications for the document identified by the provided Id.
1730
+ */
1257
1731
  static getDocumentByIdNotifications(options) {
1258
1732
  return (options.client ?? client).get({
1259
1733
  security: [
@@ -1266,6 +1740,10 @@ export class DocumentService {
1266
1740
  ...options
1267
1741
  });
1268
1742
  }
1743
+ /**
1744
+ * Updates notification subscriptions for a document.
1745
+ * Updates which actions the current user is subscribed to receive notifications for on the specified document.
1746
+ */
1269
1747
  static putDocumentByIdNotifications(options) {
1270
1748
  return (options.client ?? client).put({
1271
1749
  security: [
@@ -1282,6 +1760,10 @@ export class DocumentService {
1282
1760
  }
1283
1761
  });
1284
1762
  }
1763
+ /**
1764
+ * Gets the preview URL for a document.
1765
+ * Gets the preview URL for the document identified by the provided Id.
1766
+ */
1285
1767
  static getDocumentByIdPreviewUrl(options) {
1286
1768
  return (options.client ?? client).get({
1287
1769
  security: [
@@ -1294,6 +1776,10 @@ export class DocumentService {
1294
1776
  ...options
1295
1777
  });
1296
1778
  }
1779
+ /**
1780
+ * Removes public access settings for a document.
1781
+ * Removes public access protection/rules for the document identified by the provided Id.
1782
+ */
1297
1783
  static deleteDocumentByIdPublicAccess(options) {
1298
1784
  return (options.client ?? client).delete({
1299
1785
  security: [
@@ -1306,6 +1792,10 @@ export class DocumentService {
1306
1792
  ...options
1307
1793
  });
1308
1794
  }
1795
+ /**
1796
+ * Gets public access rules for a document.
1797
+ * Gets the public access protection settings for the document identified by the provided Id.
1798
+ */
1309
1799
  static getDocumentByIdPublicAccess(options) {
1310
1800
  return (options.client ?? client).get({
1311
1801
  security: [
@@ -1318,6 +1808,10 @@ export class DocumentService {
1318
1808
  ...options
1319
1809
  });
1320
1810
  }
1811
+ /**
1812
+ * Creates public access rules for a document.
1813
+ * Creates public access protection for the document identified by the provided Id.
1814
+ */
1321
1815
  static postDocumentByIdPublicAccess(options) {
1322
1816
  return (options.client ?? client).post({
1323
1817
  security: [
@@ -1334,6 +1828,10 @@ export class DocumentService {
1334
1828
  }
1335
1829
  });
1336
1830
  }
1831
+ /**
1832
+ * Updates public access protection for a document.
1833
+ * Updates the member protection settings for a document, controlling which members or member groups can access it.
1834
+ */
1337
1835
  static putDocumentByIdPublicAccess(options) {
1338
1836
  return (options.client ?? client).put({
1339
1837
  security: [
@@ -1350,6 +1848,10 @@ export class DocumentService {
1350
1848
  }
1351
1849
  });
1352
1850
  }
1851
+ /**
1852
+ * Publishes a document.
1853
+ * Publishes a document identified by the provided Id.
1854
+ */
1353
1855
  static putDocumentByIdPublish(options) {
1354
1856
  return (options.client ?? client).put({
1355
1857
  security: [
@@ -1366,6 +1868,10 @@ export class DocumentService {
1366
1868
  }
1367
1869
  });
1368
1870
  }
1871
+ /**
1872
+ * Publishes a document with its descendants.
1873
+ * Publishes a document and its descendants identified by the provided Id.
1874
+ */
1369
1875
  static putDocumentByIdPublishWithDescendants(options) {
1370
1876
  return (options.client ?? client).put({
1371
1877
  security: [
@@ -1382,6 +1888,10 @@ export class DocumentService {
1382
1888
  }
1383
1889
  });
1384
1890
  }
1891
+ /**
1892
+ * Gets the result of publishing a document with descendants.
1893
+ * Gets the status and result of a publish with descendants operation.
1894
+ */
1385
1895
  static getDocumentByIdPublishWithDescendantsResultByTaskId(options) {
1386
1896
  return (options.client ?? client).get({
1387
1897
  security: [
@@ -1394,6 +1904,10 @@ export class DocumentService {
1394
1904
  ...options
1395
1905
  });
1396
1906
  }
1907
+ /**
1908
+ * Gets a document.
1909
+ * Gets a document identified by the provided Id.
1910
+ */
1397
1911
  static getDocumentByIdPublished(options) {
1398
1912
  return (options.client ?? client).get({
1399
1913
  security: [
@@ -1406,6 +1920,10 @@ export class DocumentService {
1406
1920
  ...options
1407
1921
  });
1408
1922
  }
1923
+ /**
1924
+ * Gets a collection of items that reference documents.
1925
+ * Gets a paginated collection of items that reference the documents identified by the provided Ids.
1926
+ */
1409
1927
  static getDocumentByIdReferencedBy(options) {
1410
1928
  return (options.client ?? client).get({
1411
1929
  security: [
@@ -1418,6 +1936,10 @@ export class DocumentService {
1418
1936
  ...options
1419
1937
  });
1420
1938
  }
1939
+ /**
1940
+ * Gets document descendants that are referenced.
1941
+ * Gets a paginated collection of descendant documents that are referenced by other content.
1942
+ */
1421
1943
  static getDocumentByIdReferencedDescendants(options) {
1422
1944
  return (options.client ?? client).get({
1423
1945
  security: [
@@ -1430,6 +1952,10 @@ export class DocumentService {
1430
1952
  ...options
1431
1953
  });
1432
1954
  }
1955
+ /**
1956
+ * Unpublishes a document.
1957
+ * Unpublishes a document identified by the provided Id.
1958
+ */
1433
1959
  static putDocumentByIdUnpublish(options) {
1434
1960
  return (options.client ?? client).put({
1435
1961
  security: [
@@ -1446,6 +1972,10 @@ export class DocumentService {
1446
1972
  }
1447
1973
  });
1448
1974
  }
1975
+ /**
1976
+ * Gets a collection of items that reference documents.
1977
+ * Gets a paginated collection of items that reference the documents identified by the provided Ids.
1978
+ */
1449
1979
  static getDocumentAreReferenced(options) {
1450
1980
  return (options?.client ?? client).get({
1451
1981
  security: [
@@ -1458,6 +1988,10 @@ export class DocumentService {
1458
1988
  ...options
1459
1989
  });
1460
1990
  }
1991
+ /**
1992
+ * Gets the document configuration.
1993
+ * Gets the configuration settings for documents.
1994
+ */
1461
1995
  static getDocumentConfiguration(options) {
1462
1996
  return (options?.client ?? client).get({
1463
1997
  security: [
@@ -1470,6 +2004,10 @@ export class DocumentService {
1470
2004
  ...options
1471
2005
  });
1472
2006
  }
2007
+ /**
2008
+ * Sorts documents.
2009
+ * Sorts documents in the specified parent container according to the provided sort order.
2010
+ */
1473
2011
  static putDocumentSort(options) {
1474
2012
  return (options?.client ?? client).put({
1475
2013
  security: [
@@ -1486,6 +2024,10 @@ export class DocumentService {
1486
2024
  }
1487
2025
  });
1488
2026
  }
2027
+ /**
2028
+ * Gets URLs for a document.
2029
+ * Gets the URLs for the document identified by the provided Id.
2030
+ */
1489
2031
  static getDocumentUrls(options) {
1490
2032
  return (options?.client ?? client).get({
1491
2033
  security: [
@@ -1498,6 +2040,10 @@ export class DocumentService {
1498
2040
  ...options
1499
2041
  });
1500
2042
  }
2043
+ /**
2044
+ * Validates creating a document.
2045
+ * Validates the request model for creating a new document without actually creating it.
2046
+ */
1501
2047
  static postDocumentValidate(options) {
1502
2048
  return (options?.client ?? client).post({
1503
2049
  security: [
@@ -1514,6 +2060,10 @@ export class DocumentService {
1514
2060
  }
1515
2061
  });
1516
2062
  }
2063
+ /**
2064
+ * Gets a collection of document items.
2065
+ * Gets a collection of document items identified by the provided Ids.
2066
+ */
1517
2067
  static getItemDocument(options) {
1518
2068
  return (options?.client ?? client).get({
1519
2069
  security: [
@@ -1526,6 +2076,26 @@ export class DocumentService {
1526
2076
  ...options
1527
2077
  });
1528
2078
  }
2079
+ /**
2080
+ * Gets ancestors for a collection of document items.
2081
+ * Gets the ancestor chains for document items identified by the provided Ids.
2082
+ */
2083
+ static getItemDocumentAncestors(options) {
2084
+ return (options?.client ?? client).get({
2085
+ security: [
2086
+ {
2087
+ scheme: 'bearer',
2088
+ type: 'http'
2089
+ }
2090
+ ],
2091
+ url: '/umbraco/management/api/v1/item/document/ancestors',
2092
+ ...options
2093
+ });
2094
+ }
2095
+ /**
2096
+ * Searches document items.
2097
+ * Searches document items by the provided query with pagination support.
2098
+ */
1529
2099
  static getItemDocumentSearch(options) {
1530
2100
  return (options?.client ?? client).get({
1531
2101
  security: [
@@ -1538,6 +2108,10 @@ export class DocumentService {
1538
2108
  ...options
1539
2109
  });
1540
2110
  }
2111
+ /**
2112
+ * Empties the document recycle bin.
2113
+ * Permanently deletes all documents in the recycle bin. This operation cannot be undone.
2114
+ */
1541
2115
  static deleteRecycleBinDocument(options) {
1542
2116
  return (options?.client ?? client).delete({
1543
2117
  security: [
@@ -1550,6 +2124,10 @@ export class DocumentService {
1550
2124
  ...options
1551
2125
  });
1552
2126
  }
2127
+ /**
2128
+ * Deletes a document.
2129
+ * Deletes a document identified by the provided Id.
2130
+ */
1553
2131
  static deleteRecycleBinDocumentById(options) {
1554
2132
  return (options.client ?? client).delete({
1555
2133
  security: [
@@ -1562,6 +2140,10 @@ export class DocumentService {
1562
2140
  ...options
1563
2141
  });
1564
2142
  }
2143
+ /**
2144
+ * Gets the original parent of a document in the recycle bin.
2145
+ * Gets the original parent location of a document before it was moved to the recycle bin.
2146
+ */
1565
2147
  static getRecycleBinDocumentByIdOriginalParent(options) {
1566
2148
  return (options.client ?? client).get({
1567
2149
  security: [
@@ -1574,6 +2156,10 @@ export class DocumentService {
1574
2156
  ...options
1575
2157
  });
1576
2158
  }
2159
+ /**
2160
+ * Restores a document from the recycle bin.
2161
+ * Restores a document from the recycle bin to its original location or a specified parent.
2162
+ */
1577
2163
  static putRecycleBinDocumentByIdRestore(options) {
1578
2164
  return (options.client ?? client).put({
1579
2165
  security: [
@@ -1590,6 +2176,10 @@ export class DocumentService {
1590
2176
  }
1591
2177
  });
1592
2178
  }
2179
+ /**
2180
+ * Gets a collection of documents in the recycle bin.
2181
+ * Gets a paginated collection of documents that are children of the provided parent in the recycle bin.
2182
+ */
1593
2183
  static getRecycleBinDocumentChildren(options) {
1594
2184
  return (options?.client ?? client).get({
1595
2185
  security: [
@@ -1602,6 +2192,10 @@ export class DocumentService {
1602
2192
  ...options
1603
2193
  });
1604
2194
  }
2195
+ /**
2196
+ * Gets items referencing a document in the recycle bin.
2197
+ * Gets a paginated collection of items that reference the document in the recycle bin.
2198
+ */
1605
2199
  static getRecycleBinDocumentReferencedBy(options) {
1606
2200
  return (options?.client ?? client).get({
1607
2201
  security: [
@@ -1614,6 +2208,10 @@ export class DocumentService {
1614
2208
  ...options
1615
2209
  });
1616
2210
  }
2211
+ /**
2212
+ * Gets documents at the root of the recycle bin.
2213
+ * Gets a paginated collection of documents at the root level of the recycle bin.
2214
+ */
1617
2215
  static getRecycleBinDocumentRoot(options) {
1618
2216
  return (options?.client ?? client).get({
1619
2217
  security: [
@@ -1626,6 +2224,10 @@ export class DocumentService {
1626
2224
  ...options
1627
2225
  });
1628
2226
  }
2227
+ /**
2228
+ * Gets sibling documents in the recycle bin.
2229
+ * Gets a collection of sibling documents in the recycle bin at the same level as the provided Id.
2230
+ */
1629
2231
  static getRecycleBinDocumentSiblings(options) {
1630
2232
  return (options?.client ?? client).get({
1631
2233
  security: [
@@ -1638,6 +2240,10 @@ export class DocumentService {
1638
2240
  ...options
1639
2241
  });
1640
2242
  }
2243
+ /**
2244
+ * Gets a collection of ancestor document items.
2245
+ * Gets a collection of document items that are ancestors to the provided Id.
2246
+ */
1641
2247
  static getTreeDocumentAncestors(options) {
1642
2248
  return (options?.client ?? client).get({
1643
2249
  security: [
@@ -1650,6 +2256,10 @@ export class DocumentService {
1650
2256
  ...options
1651
2257
  });
1652
2258
  }
2259
+ /**
2260
+ * Gets a collection of document tree child items.
2261
+ * Gets a paginated collection of document tree items that are children of the provided parent Id.
2262
+ */
1653
2263
  static getTreeDocumentChildren(options) {
1654
2264
  return (options?.client ?? client).get({
1655
2265
  security: [
@@ -1662,6 +2272,10 @@ export class DocumentService {
1662
2272
  ...options
1663
2273
  });
1664
2274
  }
2275
+ /**
2276
+ * Gets a collection of document items from the root of the tree.
2277
+ * Gets a paginated collection of document items from the root of the tree with optional filtering.
2278
+ */
1665
2279
  static getTreeDocumentRoot(options) {
1666
2280
  return (options?.client ?? client).get({
1667
2281
  security: [
@@ -1674,6 +2288,10 @@ export class DocumentService {
1674
2288
  ...options
1675
2289
  });
1676
2290
  }
2291
+ /**
2292
+ * Gets a collection of document tree sibling items.
2293
+ * Gets a collection of document tree items that are siblings of the provided Id.
2294
+ */
1677
2295
  static getTreeDocumentSiblings(options) {
1678
2296
  return (options?.client ?? client).get({
1679
2297
  security: [
@@ -1689,6 +2307,10 @@ export class DocumentService {
1689
2307
  static { this.putUmbracoManagementApiV1Service = PutUmbracoManagementApiV1Service; }
1690
2308
  }
1691
2309
  export class DynamicRootService {
2310
+ /**
2311
+ * Gets dynamic roots.
2312
+ * Gets a collection of dynamic root items based on the provided query configuration.
2313
+ */
1692
2314
  static postDynamicRootQuery(options) {
1693
2315
  return (options?.client ?? client).post({
1694
2316
  security: [
@@ -1705,6 +2327,10 @@ export class DynamicRootService {
1705
2327
  }
1706
2328
  });
1707
2329
  }
2330
+ /**
2331
+ * Gets dynamic root query steps.
2332
+ * Gets a collection of available query steps for configuring dynamic root queries.
2333
+ */
1708
2334
  static getDynamicRootSteps(options) {
1709
2335
  return (options?.client ?? client).get({
1710
2336
  security: [
@@ -1719,6 +2345,10 @@ export class DynamicRootService {
1719
2345
  }
1720
2346
  }
1721
2347
  export class HealthCheckService {
2348
+ /**
2349
+ * Gets a collection of health check groups.
2350
+ * Gets a collection of health check groups with their associated health checks.
2351
+ */
1722
2352
  static getHealthCheckGroup(options) {
1723
2353
  return (options?.client ?? client).get({
1724
2354
  security: [
@@ -1731,6 +2361,10 @@ export class HealthCheckService {
1731
2361
  ...options
1732
2362
  });
1733
2363
  }
2364
+ /**
2365
+ * Gets a health check group by name.
2366
+ * Gets a health check group and all its associated health checks identified by the provided group name.
2367
+ */
1734
2368
  static getHealthCheckGroupByName(options) {
1735
2369
  return (options.client ?? client).get({
1736
2370
  security: [
@@ -1743,6 +2377,10 @@ export class HealthCheckService {
1743
2377
  ...options
1744
2378
  });
1745
2379
  }
2380
+ /**
2381
+ * Executes all health checks in a group.
2382
+ * Runs all health checks in the group identified by the provided name and returns the results.
2383
+ */
1746
2384
  static postHealthCheckGroupByNameCheck(options) {
1747
2385
  return (options.client ?? client).post({
1748
2386
  security: [
@@ -1755,6 +2393,10 @@ export class HealthCheckService {
1755
2393
  ...options
1756
2394
  });
1757
2395
  }
2396
+ /**
2397
+ * Executes a health check action.
2398
+ * Executes a specific action to fix or address a health check issue.
2399
+ */
1758
2400
  static postHealthCheckExecuteAction(options) {
1759
2401
  return (options?.client ?? client).post({
1760
2402
  security: [
@@ -1774,6 +2416,8 @@ export class HealthCheckService {
1774
2416
  }
1775
2417
  export class HelpService {
1776
2418
  /**
2419
+ * Gets help information.
2420
+ * Gets help information and documentation resources for the Umbraco back office.
1777
2421
  * @deprecated
1778
2422
  */
1779
2423
  static getHelp(options) {
@@ -1790,6 +2434,10 @@ export class HelpService {
1790
2434
  }
1791
2435
  }
1792
2436
  export class ImagingService {
2437
+ /**
2438
+ * Gets URLs for image resizing.
2439
+ * Gets a collection of URLs for resizing images with the provided dimensions and options.
2440
+ */
1793
2441
  static getImagingResizeUrls(options) {
1794
2442
  return (options?.client ?? client).get({
1795
2443
  security: [
@@ -1804,6 +2452,10 @@ export class ImagingService {
1804
2452
  }
1805
2453
  }
1806
2454
  export class ImportService {
2455
+ /**
2456
+ * Analyzes an import file.
2457
+ * Analyzes the uploaded import file and returns an analysis of the imported entities.
2458
+ */
1807
2459
  static getImportAnalyze(options) {
1808
2460
  return (options?.client ?? client).get({
1809
2461
  security: [
@@ -1818,6 +2470,10 @@ export class ImportService {
1818
2470
  }
1819
2471
  }
1820
2472
  export class IndexerService {
2473
+ /**
2474
+ * Gets a collection of indexers.
2475
+ * Gets a collection of configured search indexers in the Umbraco installation.
2476
+ */
1821
2477
  static getIndexer(options) {
1822
2478
  return (options?.client ?? client).get({
1823
2479
  security: [
@@ -1830,6 +2486,10 @@ export class IndexerService {
1830
2486
  ...options
1831
2487
  });
1832
2488
  }
2489
+ /**
2490
+ * Gets indexer details.
2491
+ * Gets detailed information about the indexer identified by the provided name.
2492
+ */
1833
2493
  static getIndexerByIndexName(options) {
1834
2494
  return (options.client ?? client).get({
1835
2495
  security: [
@@ -1842,6 +2502,10 @@ export class IndexerService {
1842
2502
  ...options
1843
2503
  });
1844
2504
  }
2505
+ /**
2506
+ * Rebuilds an indexer.
2507
+ * Rebuilds the search index for the indexer identified by the provided name.
2508
+ */
1845
2509
  static postIndexerByIndexNameRebuild(options) {
1846
2510
  return (options.client ?? client).post({
1847
2511
  security: [
@@ -1856,12 +2520,20 @@ export class IndexerService {
1856
2520
  }
1857
2521
  }
1858
2522
  export class InstallService {
2523
+ /**
2524
+ * Gets install settings.
2525
+ * Gets the current installation settings and status.
2526
+ */
1859
2527
  static getInstallSettings(options) {
1860
2528
  return (options?.client ?? client).get({
1861
2529
  url: '/umbraco/management/api/v1/install/settings',
1862
2530
  ...options
1863
2531
  });
1864
2532
  }
2533
+ /**
2534
+ * Performs installation setup.
2535
+ * Performs the initial setup and installation of Umbraco.
2536
+ */
1865
2537
  static postInstallSetup(options) {
1866
2538
  return (options?.client ?? client).post({
1867
2539
  url: '/umbraco/management/api/v1/install/setup',
@@ -1872,6 +2544,10 @@ export class InstallService {
1872
2544
  }
1873
2545
  });
1874
2546
  }
2547
+ /**
2548
+ * Validates database connection.
2549
+ * Validates the database connection settings provided during installation.
2550
+ */
1875
2551
  static postInstallValidateDatabase(options) {
1876
2552
  return (options?.client ?? client).post({
1877
2553
  url: '/umbraco/management/api/v1/install/validate-database',
@@ -1884,6 +2560,10 @@ export class InstallService {
1884
2560
  }
1885
2561
  }
1886
2562
  export class LanguageService {
2563
+ /**
2564
+ * Gets a collection of language items.
2565
+ * Gets a collection of language items identified by the provided Ids.
2566
+ */
1887
2567
  static getItemLanguage(options) {
1888
2568
  return (options?.client ?? client).get({
1889
2569
  security: [
@@ -1896,6 +2576,10 @@ export class LanguageService {
1896
2576
  ...options
1897
2577
  });
1898
2578
  }
2579
+ /**
2580
+ * Gets the default language.
2581
+ * Gets the default language configured for the Umbraco installation.
2582
+ */
1899
2583
  static getItemLanguageDefault(options) {
1900
2584
  return (options?.client ?? client).get({
1901
2585
  security: [
@@ -1908,6 +2592,10 @@ export class LanguageService {
1908
2592
  ...options
1909
2593
  });
1910
2594
  }
2595
+ /**
2596
+ * Gets a paginated collection of languages.
2597
+ * Gets a paginated collection of all configured languages.
2598
+ */
1911
2599
  static getLanguage(options) {
1912
2600
  return (options?.client ?? client).get({
1913
2601
  security: [
@@ -1920,6 +2608,10 @@ export class LanguageService {
1920
2608
  ...options
1921
2609
  });
1922
2610
  }
2611
+ /**
2612
+ * Creates a new language.
2613
+ * Creates a new language with the configuration specified in the request model.
2614
+ */
1923
2615
  static postLanguage(options) {
1924
2616
  return (options?.client ?? client).post({
1925
2617
  security: [
@@ -1936,6 +2628,10 @@ export class LanguageService {
1936
2628
  }
1937
2629
  });
1938
2630
  }
2631
+ /**
2632
+ * Deletes a language.
2633
+ * Deletes a language identified by the provided Id.
2634
+ */
1939
2635
  static deleteLanguageByIsoCode(options) {
1940
2636
  return (options.client ?? client).delete({
1941
2637
  security: [
@@ -1948,6 +2644,10 @@ export class LanguageService {
1948
2644
  ...options
1949
2645
  });
1950
2646
  }
2647
+ /**
2648
+ * Gets a language by ISO code.
2649
+ * Gets a language identified by the provided ISO code.
2650
+ */
1951
2651
  static getLanguageByIsoCode(options) {
1952
2652
  return (options.client ?? client).get({
1953
2653
  security: [
@@ -1960,6 +2660,10 @@ export class LanguageService {
1960
2660
  ...options
1961
2661
  });
1962
2662
  }
2663
+ /**
2664
+ * Updates a language.
2665
+ * Updates a language identified by the provided Id with the details from the request model.
2666
+ */
1963
2667
  static putLanguageByIsoCode(options) {
1964
2668
  return (options.client ?? client).put({
1965
2669
  security: [
@@ -1978,6 +2682,10 @@ export class LanguageService {
1978
2682
  }
1979
2683
  }
1980
2684
  export class LogViewerService {
2685
+ /**
2686
+ * Gets a collection of log sink levels.
2687
+ * Gets a collection of configured log sinks with their minimum log levels.
2688
+ */
1981
2689
  static getLogViewerLevel(options) {
1982
2690
  return (options?.client ?? client).get({
1983
2691
  security: [
@@ -1990,6 +2698,10 @@ export class LogViewerService {
1990
2698
  ...options
1991
2699
  });
1992
2700
  }
2701
+ /**
2702
+ * Gets log level counts.
2703
+ * Gets the count of log entries for each log level within the specified date range.
2704
+ */
1993
2705
  static getLogViewerLevelCount(options) {
1994
2706
  return (options?.client ?? client).get({
1995
2707
  security: [
@@ -2002,6 +2714,10 @@ export class LogViewerService {
2002
2714
  ...options
2003
2715
  });
2004
2716
  }
2717
+ /**
2718
+ * Gets a paginated collection of log entries.
2719
+ * Gets a paginated collection of log entries with optional filtering and date range.
2720
+ */
2005
2721
  static getLogViewerLog(options) {
2006
2722
  return (options?.client ?? client).get({
2007
2723
  security: [
@@ -2014,6 +2730,10 @@ export class LogViewerService {
2014
2730
  ...options
2015
2731
  });
2016
2732
  }
2733
+ /**
2734
+ * Gets a collection of log message templates.
2735
+ * Gets a paginated collection of unique message templates found in the logs.
2736
+ */
2017
2737
  static getLogViewerMessageTemplate(options) {
2018
2738
  return (options?.client ?? client).get({
2019
2739
  security: [
@@ -2026,6 +2746,10 @@ export class LogViewerService {
2026
2746
  ...options
2027
2747
  });
2028
2748
  }
2749
+ /**
2750
+ * Gets a collection of saved log searches.
2751
+ * Gets a collection of saved log searches defined in the Umbraco installation.
2752
+ */
2029
2753
  static getLogViewerSavedSearch(options) {
2030
2754
  return (options?.client ?? client).get({
2031
2755
  security: [
@@ -2038,6 +2762,10 @@ export class LogViewerService {
2038
2762
  ...options
2039
2763
  });
2040
2764
  }
2765
+ /**
2766
+ * Creates a saved log search.
2767
+ * Creates a new saved log search with the provided name and query configuration.
2768
+ */
2041
2769
  static postLogViewerSavedSearch(options) {
2042
2770
  return (options?.client ?? client).post({
2043
2771
  security: [
@@ -2054,6 +2782,10 @@ export class LogViewerService {
2054
2782
  }
2055
2783
  });
2056
2784
  }
2785
+ /**
2786
+ * Deletes a saved log search.
2787
+ * Deletes a saved log search identified by the provided name.
2788
+ */
2057
2789
  static deleteLogViewerSavedSearchByName(options) {
2058
2790
  return (options.client ?? client).delete({
2059
2791
  security: [
@@ -2066,6 +2798,10 @@ export class LogViewerService {
2066
2798
  ...options
2067
2799
  });
2068
2800
  }
2801
+ /**
2802
+ * Gets a saved log search by name.
2803
+ * Gets a saved log search identified by the provided name.
2804
+ */
2069
2805
  static getLogViewerSavedSearchByName(options) {
2070
2806
  return (options.client ?? client).get({
2071
2807
  security: [
@@ -2078,6 +2814,10 @@ export class LogViewerService {
2078
2814
  ...options
2079
2815
  });
2080
2816
  }
2817
+ /**
2818
+ * Validates if logs can be viewed.
2819
+ * Checks if the log files are within the size limit and can be viewed.
2820
+ */
2081
2821
  static getLogViewerValidateLogsSize(options) {
2082
2822
  return (options?.client ?? client).get({
2083
2823
  security: [
@@ -2092,6 +2832,10 @@ export class LogViewerService {
2092
2832
  }
2093
2833
  }
2094
2834
  export class ManifestService {
2835
+ /**
2836
+ * Gets all manifests.
2837
+ * Gets a collection of all package manifests including both public and private manifests.
2838
+ */
2095
2839
  static getManifestManifest(options) {
2096
2840
  return (options?.client ?? client).get({
2097
2841
  security: [
@@ -2104,6 +2848,10 @@ export class ManifestService {
2104
2848
  ...options
2105
2849
  });
2106
2850
  }
2851
+ /**
2852
+ * Gets private manifests.
2853
+ * Gets a collection of private package manifests specific to the current user.
2854
+ */
2107
2855
  static getManifestManifestPrivate(options) {
2108
2856
  return (options?.client ?? client).get({
2109
2857
  security: [
@@ -2116,6 +2864,10 @@ export class ManifestService {
2116
2864
  ...options
2117
2865
  });
2118
2866
  }
2867
+ /**
2868
+ * Gets public manifests.
2869
+ * Gets a collection of public package manifests available to all users.
2870
+ */
2119
2871
  static getManifestManifestPublic(options) {
2120
2872
  return (options?.client ?? client).get({
2121
2873
  url: '/umbraco/management/api/v1/manifest/manifest/public',
@@ -2124,6 +2876,10 @@ export class ManifestService {
2124
2876
  }
2125
2877
  }
2126
2878
  export class MediaTypeService {
2879
+ /**
2880
+ * Gets a collection of media type items.
2881
+ * Gets a collection of media type items identified by the provided Ids.
2882
+ */
2127
2883
  static getItemMediaType(options) {
2128
2884
  return (options?.client ?? client).get({
2129
2885
  security: [
@@ -2136,6 +2892,10 @@ export class MediaTypeService {
2136
2892
  ...options
2137
2893
  });
2138
2894
  }
2895
+ /**
2896
+ * Gets a collection of media type items.
2897
+ * Gets a collection of allowed media type items for the specified file extension.
2898
+ */
2139
2899
  static getItemMediaTypeAllowed(options) {
2140
2900
  return (options?.client ?? client).get({
2141
2901
  security: [
@@ -2148,6 +2908,26 @@ export class MediaTypeService {
2148
2908
  ...options
2149
2909
  });
2150
2910
  }
2911
+ /**
2912
+ * Gets ancestors for a collection of media type items.
2913
+ * Gets the ancestor chains for media type items identified by the provided Ids.
2914
+ */
2915
+ static getItemMediaTypeAncestors(options) {
2916
+ return (options?.client ?? client).get({
2917
+ security: [
2918
+ {
2919
+ scheme: 'bearer',
2920
+ type: 'http'
2921
+ }
2922
+ ],
2923
+ url: '/umbraco/management/api/v1/item/media-type/ancestors',
2924
+ ...options
2925
+ });
2926
+ }
2927
+ /**
2928
+ * Gets a collection of media type folder items.
2929
+ * Gets a paginated collection of media type folder items.
2930
+ */
2151
2931
  static getItemMediaTypeFolders(options) {
2152
2932
  return (options?.client ?? client).get({
2153
2933
  security: [
@@ -2160,6 +2940,10 @@ export class MediaTypeService {
2160
2940
  ...options
2161
2941
  });
2162
2942
  }
2943
+ /**
2944
+ * Searches media type items.
2945
+ * Searches media type items by the provided query with pagination support.
2946
+ */
2163
2947
  static getItemMediaTypeSearch(options) {
2164
2948
  return (options?.client ?? client).get({
2165
2949
  security: [
@@ -2172,6 +2956,10 @@ export class MediaTypeService {
2172
2956
  ...options
2173
2957
  });
2174
2958
  }
2959
+ /**
2960
+ * Creates a new media type.
2961
+ * Creates a new media type with the configuration specified in the request model.
2962
+ */
2175
2963
  static postMediaType(options) {
2176
2964
  return (options?.client ?? client).post({
2177
2965
  security: [
@@ -2188,6 +2976,10 @@ export class MediaTypeService {
2188
2976
  }
2189
2977
  });
2190
2978
  }
2979
+ /**
2980
+ * Deletes a media type.
2981
+ * Deletes a media type identified by the provided Id.
2982
+ */
2191
2983
  static deleteMediaTypeById(options) {
2192
2984
  return (options.client ?? client).delete({
2193
2985
  security: [
@@ -2200,6 +2992,10 @@ export class MediaTypeService {
2200
2992
  ...options
2201
2993
  });
2202
2994
  }
2995
+ /**
2996
+ * Gets a media type.
2997
+ * Gets a media type identified by the provided Id.
2998
+ */
2203
2999
  static getMediaTypeById(options) {
2204
3000
  return (options.client ?? client).get({
2205
3001
  security: [
@@ -2212,6 +3008,10 @@ export class MediaTypeService {
2212
3008
  ...options
2213
3009
  });
2214
3010
  }
3011
+ /**
3012
+ * Updates a media type.
3013
+ * Updates a media type identified by the provided Id with the details from the request model.
3014
+ */
2215
3015
  static putMediaTypeById(options) {
2216
3016
  return (options.client ?? client).put({
2217
3017
  security: [
@@ -2228,6 +3028,10 @@ export class MediaTypeService {
2228
3028
  }
2229
3029
  });
2230
3030
  }
3031
+ /**
3032
+ * Gets allowed child media types.
3033
+ * Gets a collection of media types that are allowed as children of the specified parent media type.
3034
+ */
2231
3035
  static getMediaTypeByIdAllowedChildren(options) {
2232
3036
  return (options.client ?? client).get({
2233
3037
  security: [
@@ -2240,6 +3044,26 @@ export class MediaTypeService {
2240
3044
  ...options
2241
3045
  });
2242
3046
  }
3047
+ /**
3048
+ * Gets allowed parent media types.
3049
+ * Gets a collection of media types that are allowed as parents of the specified media type.
3050
+ */
3051
+ static getMediaTypeByIdAllowedParents(options) {
3052
+ return (options.client ?? client).get({
3053
+ security: [
3054
+ {
3055
+ scheme: 'bearer',
3056
+ type: 'http'
3057
+ }
3058
+ ],
3059
+ url: '/umbraco/management/api/v1/media-type/{id}/allowed-parents',
3060
+ ...options
3061
+ });
3062
+ }
3063
+ /**
3064
+ * Gets composition references.
3065
+ * Gets a collection of media types that reference the specified media type as a composition.
3066
+ */
2243
3067
  static getMediaTypeByIdCompositionReferences(options) {
2244
3068
  return (options.client ?? client).get({
2245
3069
  security: [
@@ -2252,6 +3076,10 @@ export class MediaTypeService {
2252
3076
  ...options
2253
3077
  });
2254
3078
  }
3079
+ /**
3080
+ * Copies a media type.
3081
+ * Creates a duplicate of an existing media type identified by the provided Id.
3082
+ */
2255
3083
  static postMediaTypeByIdCopy(options) {
2256
3084
  return (options.client ?? client).post({
2257
3085
  security: [
@@ -2268,6 +3096,10 @@ export class MediaTypeService {
2268
3096
  }
2269
3097
  });
2270
3098
  }
3099
+ /**
3100
+ * Exports a media type.
3101
+ * Exports the media type identified by the provided Id to a downloadable format.
3102
+ */
2271
3103
  static getMediaTypeByIdExport(options) {
2272
3104
  return (options.client ?? client).get({
2273
3105
  security: [
@@ -2280,6 +3112,10 @@ export class MediaTypeService {
2280
3112
  ...options
2281
3113
  });
2282
3114
  }
3115
+ /**
3116
+ * Imports a media type.
3117
+ * Imports a media type from the provided file upload.
3118
+ */
2283
3119
  static putMediaTypeByIdImport(options) {
2284
3120
  return (options.client ?? client).put({
2285
3121
  security: [
@@ -2296,6 +3132,10 @@ export class MediaTypeService {
2296
3132
  }
2297
3133
  });
2298
3134
  }
3135
+ /**
3136
+ * Moves a media type.
3137
+ * Moves a media type identified by the provided Id to a different location.
3138
+ */
2299
3139
  static putMediaTypeByIdMove(options) {
2300
3140
  return (options.client ?? client).put({
2301
3141
  security: [
@@ -2312,6 +3152,10 @@ export class MediaTypeService {
2312
3152
  }
2313
3153
  });
2314
3154
  }
3155
+ /**
3156
+ * Gets media types allowed at root.
3157
+ * Gets a collection of media types that are allowed to be created at the root level.
3158
+ */
2315
3159
  static getMediaTypeAllowedAtRoot(options) {
2316
3160
  return (options?.client ?? client).get({
2317
3161
  security: [
@@ -2324,6 +3168,10 @@ export class MediaTypeService {
2324
3168
  ...options
2325
3169
  });
2326
3170
  }
3171
+ /**
3172
+ * Gets available compositions.
3173
+ * Gets a collection of media types that are available to use as compositions for the specified media type.
3174
+ */
2327
3175
  static postMediaTypeAvailableCompositions(options) {
2328
3176
  return (options?.client ?? client).post({
2329
3177
  security: [
@@ -2340,6 +3188,26 @@ export class MediaTypeService {
2340
3188
  }
2341
3189
  });
2342
3190
  }
3191
+ /**
3192
+ * Gets multiple media types.
3193
+ * Gets multiple media types identified by the provided Ids.
3194
+ */
3195
+ static getMediaTypeBatch(options) {
3196
+ return (options?.client ?? client).get({
3197
+ security: [
3198
+ {
3199
+ scheme: 'bearer',
3200
+ type: 'http'
3201
+ }
3202
+ ],
3203
+ url: '/umbraco/management/api/v1/media-type/batch',
3204
+ ...options
3205
+ });
3206
+ }
3207
+ /**
3208
+ * Gets the media type configuration.
3209
+ * Gets the configuration settings for media types.
3210
+ */
2343
3211
  static getMediaTypeConfiguration(options) {
2344
3212
  return (options?.client ?? client).get({
2345
3213
  security: [
@@ -2352,6 +3220,10 @@ export class MediaTypeService {
2352
3220
  ...options
2353
3221
  });
2354
3222
  }
3223
+ /**
3224
+ * Creates a media type folder.
3225
+ * Creates a new media type folder with the provided name and parent location.
3226
+ */
2355
3227
  static postMediaTypeFolder(options) {
2356
3228
  return (options?.client ?? client).post({
2357
3229
  security: [
@@ -2368,6 +3240,10 @@ export class MediaTypeService {
2368
3240
  }
2369
3241
  });
2370
3242
  }
3243
+ /**
3244
+ * Deletes a media type folder.
3245
+ * Deletes a media type folder identified by the provided Id.
3246
+ */
2371
3247
  static deleteMediaTypeFolderById(options) {
2372
3248
  return (options.client ?? client).delete({
2373
3249
  security: [
@@ -2380,6 +3256,10 @@ export class MediaTypeService {
2380
3256
  ...options
2381
3257
  });
2382
3258
  }
3259
+ /**
3260
+ * Gets a media type folder.
3261
+ * Gets a media type folder identified by the provided Id.
3262
+ */
2383
3263
  static getMediaTypeFolderById(options) {
2384
3264
  return (options.client ?? client).get({
2385
3265
  security: [
@@ -2392,6 +3272,10 @@ export class MediaTypeService {
2392
3272
  ...options
2393
3273
  });
2394
3274
  }
3275
+ /**
3276
+ * Updates a media type folder.
3277
+ * Updates a media type folder identified by the provided Id with the details from the request model.
3278
+ */
2395
3279
  static putMediaTypeFolderById(options) {
2396
3280
  return (options.client ?? client).put({
2397
3281
  security: [
@@ -2408,6 +3292,10 @@ export class MediaTypeService {
2408
3292
  }
2409
3293
  });
2410
3294
  }
3295
+ /**
3296
+ * Imports a media type.
3297
+ * Imports a media type from the provided file upload.
3298
+ */
2411
3299
  static postMediaTypeImport(options) {
2412
3300
  return (options?.client ?? client).post({
2413
3301
  security: [
@@ -2424,6 +3312,10 @@ export class MediaTypeService {
2424
3312
  }
2425
3313
  });
2426
3314
  }
3315
+ /**
3316
+ * Gets a collection of ancestor media type items.
3317
+ * Gets a collection of media type items that are ancestors to the provided Id.
3318
+ */
2427
3319
  static getTreeMediaTypeAncestors(options) {
2428
3320
  return (options?.client ?? client).get({
2429
3321
  security: [
@@ -2436,6 +3328,10 @@ export class MediaTypeService {
2436
3328
  ...options
2437
3329
  });
2438
3330
  }
3331
+ /**
3332
+ * Gets a collection of media type tree child items.
3333
+ * Gets a paginated collection of media type tree items that are children of the provided parent Id.
3334
+ */
2439
3335
  static getTreeMediaTypeChildren(options) {
2440
3336
  return (options?.client ?? client).get({
2441
3337
  security: [
@@ -2448,6 +3344,10 @@ export class MediaTypeService {
2448
3344
  ...options
2449
3345
  });
2450
3346
  }
3347
+ /**
3348
+ * Gets a collection of media type items from the root of the tree.
3349
+ * Gets a paginated collection of media type items from the root of the tree with optional filtering.
3350
+ */
2451
3351
  static getTreeMediaTypeRoot(options) {
2452
3352
  return (options?.client ?? client).get({
2453
3353
  security: [
@@ -2460,6 +3360,10 @@ export class MediaTypeService {
2460
3360
  ...options
2461
3361
  });
2462
3362
  }
3363
+ /**
3364
+ * Gets a collection of media type tree sibling items.
3365
+ * Gets a collection of media type tree items that are siblings of the provided Id.
3366
+ */
2463
3367
  static getTreeMediaTypeSiblings(options) {
2464
3368
  return (options?.client ?? client).get({
2465
3369
  security: [
@@ -2474,6 +3378,10 @@ export class MediaTypeService {
2474
3378
  }
2475
3379
  }
2476
3380
  export class MediaService {
3381
+ /**
3382
+ * Gets a collection of media items.
3383
+ * Gets a paginated collection of media items, optionally filtered and sorted.
3384
+ */
2477
3385
  static getCollectionMedia(options) {
2478
3386
  return (options?.client ?? client).get({
2479
3387
  security: [
@@ -2486,6 +3394,10 @@ export class MediaService {
2486
3394
  ...options
2487
3395
  });
2488
3396
  }
3397
+ /**
3398
+ * Gets a collection of media items.
3399
+ * Gets a collection of media items identified by the provided Ids.
3400
+ */
2489
3401
  static getItemMedia(options) {
2490
3402
  return (options?.client ?? client).get({
2491
3403
  security: [
@@ -2498,6 +3410,26 @@ export class MediaService {
2498
3410
  ...options
2499
3411
  });
2500
3412
  }
3413
+ /**
3414
+ * Gets ancestors for a collection of media items.
3415
+ * Gets the ancestor chains for media items identified by the provided Ids.
3416
+ */
3417
+ static getItemMediaAncestors(options) {
3418
+ return (options?.client ?? client).get({
3419
+ security: [
3420
+ {
3421
+ scheme: 'bearer',
3422
+ type: 'http'
3423
+ }
3424
+ ],
3425
+ url: '/umbraco/management/api/v1/item/media/ancestors',
3426
+ ...options
3427
+ });
3428
+ }
3429
+ /**
3430
+ * Searches media items.
3431
+ * Searches media items by the provided query with pagination support.
3432
+ */
2501
3433
  static getItemMediaSearch(options) {
2502
3434
  return (options?.client ?? client).get({
2503
3435
  security: [
@@ -2510,6 +3442,10 @@ export class MediaService {
2510
3442
  ...options
2511
3443
  });
2512
3444
  }
3445
+ /**
3446
+ * Creates a new media.
3447
+ * Creates a new media with the configuration specified in the request model.
3448
+ */
2513
3449
  static postMedia(options) {
2514
3450
  return (options?.client ?? client).post({
2515
3451
  security: [
@@ -2526,6 +3462,10 @@ export class MediaService {
2526
3462
  }
2527
3463
  });
2528
3464
  }
3465
+ /**
3466
+ * Deletes a media item.
3467
+ * Deletes a media item identified by the provided Id.
3468
+ */
2529
3469
  static deleteMediaById(options) {
2530
3470
  return (options.client ?? client).delete({
2531
3471
  security: [
@@ -2538,6 +3478,10 @@ export class MediaService {
2538
3478
  ...options
2539
3479
  });
2540
3480
  }
3481
+ /**
3482
+ * Gets a media item.
3483
+ * Gets a media item identified by the provided Id.
3484
+ */
2541
3485
  static getMediaById(options) {
2542
3486
  return (options.client ?? client).get({
2543
3487
  security: [
@@ -2550,6 +3494,10 @@ export class MediaService {
2550
3494
  ...options
2551
3495
  });
2552
3496
  }
3497
+ /**
3498
+ * Updates a media item.
3499
+ * Updates a media item identified by the provided Id with the details from the request model.
3500
+ */
2553
3501
  static putMediaById(options) {
2554
3502
  return (options.client ?? client).put({
2555
3503
  security: [
@@ -2566,6 +3514,10 @@ export class MediaService {
2566
3514
  }
2567
3515
  });
2568
3516
  }
3517
+ /**
3518
+ * Gets the audit log for a media item.
3519
+ * Gets a paginated collection of audit log entries for the media identified by the provided Id.
3520
+ */
2569
3521
  static getMediaByIdAuditLog(options) {
2570
3522
  return (options.client ?? client).get({
2571
3523
  security: [
@@ -2578,6 +3530,10 @@ export class MediaService {
2578
3530
  ...options
2579
3531
  });
2580
3532
  }
3533
+ /**
3534
+ * Moves a media item.
3535
+ * Moves a media item identified by the provided Id to a different location.
3536
+ */
2581
3537
  static putMediaByIdMove(options) {
2582
3538
  return (options.client ?? client).put({
2583
3539
  security: [
@@ -2594,6 +3550,10 @@ export class MediaService {
2594
3550
  }
2595
3551
  });
2596
3552
  }
3553
+ /**
3554
+ * Moves a media item to the recycle bin.
3555
+ * Moves a media item identified by the provided Id to the recycle bin.
3556
+ */
2597
3557
  static putMediaByIdMoveToRecycleBin(options) {
2598
3558
  return (options.client ?? client).put({
2599
3559
  security: [
@@ -2606,6 +3566,10 @@ export class MediaService {
2606
3566
  ...options
2607
3567
  });
2608
3568
  }
3569
+ /**
3570
+ * Gets a collection of items that reference a media item.
3571
+ * Gets a paginated collection of items that reference the media item identified by the provided Id.
3572
+ */
2609
3573
  static getMediaByIdReferencedBy(options) {
2610
3574
  return (options.client ?? client).get({
2611
3575
  security: [
@@ -2618,6 +3582,10 @@ export class MediaService {
2618
3582
  ...options
2619
3583
  });
2620
3584
  }
3585
+ /**
3586
+ * Gets media descendants that are referenced.
3587
+ * Gets a paginated collection of descendant media items that are referenced by other content.
3588
+ */
2621
3589
  static getMediaByIdReferencedDescendants(options) {
2622
3590
  return (options.client ?? client).get({
2623
3591
  security: [
@@ -2630,6 +3598,10 @@ export class MediaService {
2630
3598
  ...options
2631
3599
  });
2632
3600
  }
3601
+ /**
3602
+ * Validates updating a media item.
3603
+ * Validates the request model for updating a media item without actually updating it.
3604
+ */
2633
3605
  static putMediaByIdValidate(options) {
2634
3606
  return (options.client ?? client).put({
2635
3607
  security: [
@@ -2646,6 +3618,10 @@ export class MediaService {
2646
3618
  }
2647
3619
  });
2648
3620
  }
3621
+ /**
3622
+ * Gets a collection of referenced media items.
3623
+ * Gets a paginated collection of media items that are referenced, identified by the provided Ids.
3624
+ */
2649
3625
  static getMediaAreReferenced(options) {
2650
3626
  return (options?.client ?? client).get({
2651
3627
  security: [
@@ -2659,6 +3635,8 @@ export class MediaService {
2659
3635
  });
2660
3636
  }
2661
3637
  /**
3638
+ * Gets the media configuration.
3639
+ * Gets the configuration settings for media.
2662
3640
  * @deprecated
2663
3641
  */
2664
3642
  static getMediaConfiguration(options) {
@@ -2673,6 +3651,10 @@ export class MediaService {
2673
3651
  ...options
2674
3652
  });
2675
3653
  }
3654
+ /**
3655
+ * Sorts media items.
3656
+ * Sorts media items in the specified parent container according to the provided sort order.
3657
+ */
2676
3658
  static putMediaSort(options) {
2677
3659
  return (options?.client ?? client).put({
2678
3660
  security: [
@@ -2689,6 +3671,10 @@ export class MediaService {
2689
3671
  }
2690
3672
  });
2691
3673
  }
3674
+ /**
3675
+ * Gets URLs for media items.
3676
+ * Gets the URLs for the media items identified by the provided Ids.
3677
+ */
2692
3678
  static getMediaUrls(options) {
2693
3679
  return (options?.client ?? client).get({
2694
3680
  security: [
@@ -2701,6 +3687,10 @@ export class MediaService {
2701
3687
  ...options
2702
3688
  });
2703
3689
  }
3690
+ /**
3691
+ * Validates creating a media item.
3692
+ * Validates the request model for creating a new media item without actually creating it.
3693
+ */
2704
3694
  static postMediaValidate(options) {
2705
3695
  return (options?.client ?? client).post({
2706
3696
  security: [
@@ -2717,6 +3707,10 @@ export class MediaService {
2717
3707
  }
2718
3708
  });
2719
3709
  }
3710
+ /**
3711
+ * Empties the media recycle bin.
3712
+ * Permanently deletes all media items in the recycle bin. This operation cannot be undone.
3713
+ */
2720
3714
  static deleteRecycleBinMedia(options) {
2721
3715
  return (options?.client ?? client).delete({
2722
3716
  security: [
@@ -2729,6 +3723,10 @@ export class MediaService {
2729
3723
  ...options
2730
3724
  });
2731
3725
  }
3726
+ /**
3727
+ * Deletes a media item from the recycle bin.
3728
+ * Permanently deletes a media item from the recycle bin identified by the provided Id.
3729
+ */
2732
3730
  static deleteRecycleBinMediaById(options) {
2733
3731
  return (options.client ?? client).delete({
2734
3732
  security: [
@@ -2741,6 +3739,10 @@ export class MediaService {
2741
3739
  ...options
2742
3740
  });
2743
3741
  }
3742
+ /**
3743
+ * Gets the original parent of a media item in the recycle bin.
3744
+ * Gets the original parent location of a media item before it was moved to the recycle bin.
3745
+ */
2744
3746
  static getRecycleBinMediaByIdOriginalParent(options) {
2745
3747
  return (options.client ?? client).get({
2746
3748
  security: [
@@ -2753,6 +3755,10 @@ export class MediaService {
2753
3755
  ...options
2754
3756
  });
2755
3757
  }
3758
+ /**
3759
+ * Restores a media item from the recycle bin.
3760
+ * Restores a media item from the recycle bin to its original location or a specified parent.
3761
+ */
2756
3762
  static putRecycleBinMediaByIdRestore(options) {
2757
3763
  return (options.client ?? client).put({
2758
3764
  security: [
@@ -2769,6 +3775,10 @@ export class MediaService {
2769
3775
  }
2770
3776
  });
2771
3777
  }
3778
+ /**
3779
+ * Gets a collection of media items in the recycle bin.
3780
+ * Gets a paginated collection of media items that are children of the provided parent in the recycle bin.
3781
+ */
2772
3782
  static getRecycleBinMediaChildren(options) {
2773
3783
  return (options?.client ?? client).get({
2774
3784
  security: [
@@ -2781,6 +3791,10 @@ export class MediaService {
2781
3791
  ...options
2782
3792
  });
2783
3793
  }
3794
+ /**
3795
+ * Gets items referencing media in the recycle bin.
3796
+ * Gets a paginated collection of items that reference the media in the recycle bin.
3797
+ */
2784
3798
  static getRecycleBinMediaReferencedBy(options) {
2785
3799
  return (options?.client ?? client).get({
2786
3800
  security: [
@@ -2793,6 +3807,10 @@ export class MediaService {
2793
3807
  ...options
2794
3808
  });
2795
3809
  }
3810
+ /**
3811
+ * Gets media at the root of the recycle bin.
3812
+ * Gets a paginated collection of media items at the root level of the recycle bin.
3813
+ */
2796
3814
  static getRecycleBinMediaRoot(options) {
2797
3815
  return (options?.client ?? client).get({
2798
3816
  security: [
@@ -2805,6 +3823,10 @@ export class MediaService {
2805
3823
  ...options
2806
3824
  });
2807
3825
  }
3826
+ /**
3827
+ * Gets sibling media in the recycle bin.
3828
+ * Gets a collection of sibling media items in the recycle bin at the same level as the provided Id.
3829
+ */
2808
3830
  static getRecycleBinMediaSiblings(options) {
2809
3831
  return (options?.client ?? client).get({
2810
3832
  security: [
@@ -2817,6 +3839,10 @@ export class MediaService {
2817
3839
  ...options
2818
3840
  });
2819
3841
  }
3842
+ /**
3843
+ * Gets a collection of ancestor media items.
3844
+ * Gets a collection of media items that are ancestors to the provided Id.
3845
+ */
2820
3846
  static getTreeMediaAncestors(options) {
2821
3847
  return (options?.client ?? client).get({
2822
3848
  security: [
@@ -2829,6 +3855,10 @@ export class MediaService {
2829
3855
  ...options
2830
3856
  });
2831
3857
  }
3858
+ /**
3859
+ * Gets a collection of media tree child items.
3860
+ * Gets a paginated collection of media tree items that are children of the provided parent Id.
3861
+ */
2832
3862
  static getTreeMediaChildren(options) {
2833
3863
  return (options?.client ?? client).get({
2834
3864
  security: [
@@ -2841,6 +3871,10 @@ export class MediaService {
2841
3871
  ...options
2842
3872
  });
2843
3873
  }
3874
+ /**
3875
+ * Gets a collection of media items from the root of the tree.
3876
+ * Gets a paginated collection of media items from the root of the tree with optional filtering.
3877
+ */
2844
3878
  static getTreeMediaRoot(options) {
2845
3879
  return (options?.client ?? client).get({
2846
3880
  security: [
@@ -2853,6 +3887,10 @@ export class MediaService {
2853
3887
  ...options
2854
3888
  });
2855
3889
  }
3890
+ /**
3891
+ * Gets a collection of media tree sibling items.
3892
+ * Gets a collection of media tree items that are siblings of the provided Id.
3893
+ */
2856
3894
  static getTreeMediaSiblings(options) {
2857
3895
  return (options?.client ?? client).get({
2858
3896
  security: [
@@ -2867,6 +3905,10 @@ export class MediaService {
2867
3905
  }
2868
3906
  }
2869
3907
  export class MemberGroupService {
3908
+ /**
3909
+ * Gets a collection of member group items.
3910
+ * Gets a collection of member group items identified by the provided Ids.
3911
+ */
2870
3912
  static getItemMemberGroup(options) {
2871
3913
  return (options?.client ?? client).get({
2872
3914
  security: [
@@ -2879,6 +3921,10 @@ export class MemberGroupService {
2879
3921
  ...options
2880
3922
  });
2881
3923
  }
3924
+ /**
3925
+ * Gets a paginated collection of member groups.
3926
+ * Gets a paginated collection of all member groups.
3927
+ */
2882
3928
  static getMemberGroup(options) {
2883
3929
  return (options?.client ?? client).get({
2884
3930
  security: [
@@ -2891,6 +3937,10 @@ export class MemberGroupService {
2891
3937
  ...options
2892
3938
  });
2893
3939
  }
3940
+ /**
3941
+ * Creates a new member group.
3942
+ * Creates a new member group with the configuration specified in the request model.
3943
+ */
2894
3944
  static postMemberGroup(options) {
2895
3945
  return (options?.client ?? client).post({
2896
3946
  security: [
@@ -2907,6 +3957,10 @@ export class MemberGroupService {
2907
3957
  }
2908
3958
  });
2909
3959
  }
3960
+ /**
3961
+ * Deletes a member group.
3962
+ * Deletes a member group identified by the provided Id.
3963
+ */
2910
3964
  static deleteMemberGroupById(options) {
2911
3965
  return (options.client ?? client).delete({
2912
3966
  security: [
@@ -2919,6 +3973,10 @@ export class MemberGroupService {
2919
3973
  ...options
2920
3974
  });
2921
3975
  }
3976
+ /**
3977
+ * Gets a member group.
3978
+ * Gets a member group identified by the provided Id.
3979
+ */
2922
3980
  static getMemberGroupById(options) {
2923
3981
  return (options.client ?? client).get({
2924
3982
  security: [
@@ -2931,6 +3989,10 @@ export class MemberGroupService {
2931
3989
  ...options
2932
3990
  });
2933
3991
  }
3992
+ /**
3993
+ * Updates a member group.
3994
+ * Updates a member group identified by the provided Id with the details from the request model.
3995
+ */
2934
3996
  static putMemberGroupById(options) {
2935
3997
  return (options.client ?? client).put({
2936
3998
  security: [
@@ -2947,6 +4009,10 @@ export class MemberGroupService {
2947
4009
  }
2948
4010
  });
2949
4011
  }
4012
+ /**
4013
+ * Gets a collection of member group items from the root of the tree.
4014
+ * Gets a paginated collection of member group items from the root of the tree with optional filtering.
4015
+ */
2950
4016
  static getTreeMemberGroupRoot(options) {
2951
4017
  return (options?.client ?? client).get({
2952
4018
  security: [
@@ -2961,6 +4027,10 @@ export class MemberGroupService {
2961
4027
  }
2962
4028
  }
2963
4029
  export class MemberTypeService {
4030
+ /**
4031
+ * Gets a collection of member type items.
4032
+ * Gets a collection of member type items identified by the provided Ids.
4033
+ */
2964
4034
  static getItemMemberType(options) {
2965
4035
  return (options?.client ?? client).get({
2966
4036
  security: [
@@ -2973,6 +4043,26 @@ export class MemberTypeService {
2973
4043
  ...options
2974
4044
  });
2975
4045
  }
4046
+ /**
4047
+ * Gets ancestors for a collection of member type items.
4048
+ * Gets the ancestor chains for member type items identified by the provided Ids.
4049
+ */
4050
+ static getItemMemberTypeAncestors(options) {
4051
+ return (options?.client ?? client).get({
4052
+ security: [
4053
+ {
4054
+ scheme: 'bearer',
4055
+ type: 'http'
4056
+ }
4057
+ ],
4058
+ url: '/umbraco/management/api/v1/item/member-type/ancestors',
4059
+ ...options
4060
+ });
4061
+ }
4062
+ /**
4063
+ * Searches member type items.
4064
+ * Searches member type items by the provided query with pagination support.
4065
+ */
2976
4066
  static getItemMemberTypeSearch(options) {
2977
4067
  return (options?.client ?? client).get({
2978
4068
  security: [
@@ -2985,6 +4075,10 @@ export class MemberTypeService {
2985
4075
  ...options
2986
4076
  });
2987
4077
  }
4078
+ /**
4079
+ * Creates a new member type.
4080
+ * Creates a new member type with the configuration specified in the request model.
4081
+ */
2988
4082
  static postMemberType(options) {
2989
4083
  return (options?.client ?? client).post({
2990
4084
  security: [
@@ -3001,6 +4095,10 @@ export class MemberTypeService {
3001
4095
  }
3002
4096
  });
3003
4097
  }
4098
+ /**
4099
+ * Deletes a member type.
4100
+ * Deletes a member type identified by the provided Id.
4101
+ */
3004
4102
  static deleteMemberTypeById(options) {
3005
4103
  return (options.client ?? client).delete({
3006
4104
  security: [
@@ -3013,6 +4111,10 @@ export class MemberTypeService {
3013
4111
  ...options
3014
4112
  });
3015
4113
  }
4114
+ /**
4115
+ * Gets a member type.
4116
+ * Gets a member type identified by the provided Id.
4117
+ */
3016
4118
  static getMemberTypeById(options) {
3017
4119
  return (options.client ?? client).get({
3018
4120
  security: [
@@ -3025,6 +4127,10 @@ export class MemberTypeService {
3025
4127
  ...options
3026
4128
  });
3027
4129
  }
4130
+ /**
4131
+ * Updates a member type.
4132
+ * Updates a member type identified by the provided Id with the details from the request model.
4133
+ */
3028
4134
  static putMemberTypeById(options) {
3029
4135
  return (options.client ?? client).put({
3030
4136
  security: [
@@ -3041,6 +4147,10 @@ export class MemberTypeService {
3041
4147
  }
3042
4148
  });
3043
4149
  }
4150
+ /**
4151
+ * Gets composition references.
4152
+ * Gets a collection of member types that reference the specified member type as a composition.
4153
+ */
3044
4154
  static getMemberTypeByIdCompositionReferences(options) {
3045
4155
  return (options.client ?? client).get({
3046
4156
  security: [
@@ -3053,6 +4163,10 @@ export class MemberTypeService {
3053
4163
  ...options
3054
4164
  });
3055
4165
  }
4166
+ /**
4167
+ * Copies a member type.
4168
+ * Creates a duplicate of an existing member type identified by the provided Id.
4169
+ */
3056
4170
  static postMemberTypeByIdCopy(options) {
3057
4171
  return (options.client ?? client).post({
3058
4172
  security: [
@@ -3069,6 +4183,10 @@ export class MemberTypeService {
3069
4183
  }
3070
4184
  });
3071
4185
  }
4186
+ /**
4187
+ * Exports a member type.
4188
+ * Exports the member type identified by the provided Id to a downloadable format.
4189
+ */
3072
4190
  static getMemberTypeByIdExport(options) {
3073
4191
  return (options.client ?? client).get({
3074
4192
  security: [
@@ -3081,6 +4199,10 @@ export class MemberTypeService {
3081
4199
  ...options
3082
4200
  });
3083
4201
  }
4202
+ /**
4203
+ * Imports a member type.
4204
+ * Imports a member type from the provided file upload.
4205
+ */
3084
4206
  static putMemberTypeByIdImport(options) {
3085
4207
  return (options.client ?? client).put({
3086
4208
  security: [
@@ -3097,6 +4219,10 @@ export class MemberTypeService {
3097
4219
  }
3098
4220
  });
3099
4221
  }
4222
+ /**
4223
+ * Moves a member type.
4224
+ * Moves a member type identified by the provided Id to a different location.
4225
+ */
3100
4226
  static putMemberTypeByIdMove(options) {
3101
4227
  return (options.client ?? client).put({
3102
4228
  security: [
@@ -3113,6 +4239,10 @@ export class MemberTypeService {
3113
4239
  }
3114
4240
  });
3115
4241
  }
4242
+ /**
4243
+ * Gets available compositions.
4244
+ * Gets a collection of member types that are available to use as compositions for the specified member type.
4245
+ */
3116
4246
  static postMemberTypeAvailableCompositions(options) {
3117
4247
  return (options?.client ?? client).post({
3118
4248
  security: [
@@ -3129,6 +4259,26 @@ export class MemberTypeService {
3129
4259
  }
3130
4260
  });
3131
4261
  }
4262
+ /**
4263
+ * Gets multiple member types.
4264
+ * Gets multiple member types identified by the provided Ids.
4265
+ */
4266
+ static getMemberTypeBatch(options) {
4267
+ return (options?.client ?? client).get({
4268
+ security: [
4269
+ {
4270
+ scheme: 'bearer',
4271
+ type: 'http'
4272
+ }
4273
+ ],
4274
+ url: '/umbraco/management/api/v1/member-type/batch',
4275
+ ...options
4276
+ });
4277
+ }
4278
+ /**
4279
+ * Gets the member type configuration.
4280
+ * Gets the configuration settings for member types.
4281
+ */
3132
4282
  static getMemberTypeConfiguration(options) {
3133
4283
  return (options?.client ?? client).get({
3134
4284
  security: [
@@ -3141,6 +4291,10 @@ export class MemberTypeService {
3141
4291
  ...options
3142
4292
  });
3143
4293
  }
4294
+ /**
4295
+ * Creates a member type folder.
4296
+ * Creates a new member type folder with the provided name and parent location.
4297
+ */
3144
4298
  static postMemberTypeFolder(options) {
3145
4299
  return (options?.client ?? client).post({
3146
4300
  security: [
@@ -3157,6 +4311,10 @@ export class MemberTypeService {
3157
4311
  }
3158
4312
  });
3159
4313
  }
4314
+ /**
4315
+ * Deletes a member type folder.
4316
+ * Deletes a member type folder identified by the provided Id.
4317
+ */
3160
4318
  static deleteMemberTypeFolderById(options) {
3161
4319
  return (options.client ?? client).delete({
3162
4320
  security: [
@@ -3169,6 +4327,10 @@ export class MemberTypeService {
3169
4327
  ...options
3170
4328
  });
3171
4329
  }
4330
+ /**
4331
+ * Gets a member type folder.
4332
+ * Gets a member type folder identified by the provided Id.
4333
+ */
3172
4334
  static getMemberTypeFolderById(options) {
3173
4335
  return (options.client ?? client).get({
3174
4336
  security: [
@@ -3181,6 +4343,10 @@ export class MemberTypeService {
3181
4343
  ...options
3182
4344
  });
3183
4345
  }
4346
+ /**
4347
+ * Updates a member type folder.
4348
+ * Updates a member type folder identified by the provided Id with the details from the request model.
4349
+ */
3184
4350
  static putMemberTypeFolderById(options) {
3185
4351
  return (options.client ?? client).put({
3186
4352
  security: [
@@ -3197,6 +4363,10 @@ export class MemberTypeService {
3197
4363
  }
3198
4364
  });
3199
4365
  }
4366
+ /**
4367
+ * Imports a member type.
4368
+ * Imports a member type from the provided file upload.
4369
+ */
3200
4370
  static postMemberTypeImport(options) {
3201
4371
  return (options?.client ?? client).post({
3202
4372
  security: [
@@ -3213,6 +4383,10 @@ export class MemberTypeService {
3213
4383
  }
3214
4384
  });
3215
4385
  }
4386
+ /**
4387
+ * Gets a collection of ancestor member type items.
4388
+ * Gets a collection of member type items that are ancestors to the provided Id.
4389
+ */
3216
4390
  static getTreeMemberTypeAncestors(options) {
3217
4391
  return (options?.client ?? client).get({
3218
4392
  security: [
@@ -3225,6 +4399,10 @@ export class MemberTypeService {
3225
4399
  ...options
3226
4400
  });
3227
4401
  }
4402
+ /**
4403
+ * Gets a collection of member type tree child items.
4404
+ * Gets a paginated collection of member type tree items that are children of the provided parent Id.
4405
+ */
3228
4406
  static getTreeMemberTypeChildren(options) {
3229
4407
  return (options?.client ?? client).get({
3230
4408
  security: [
@@ -3237,6 +4415,10 @@ export class MemberTypeService {
3237
4415
  ...options
3238
4416
  });
3239
4417
  }
4418
+ /**
4419
+ * Gets a collection of member type items from the root of the tree.
4420
+ * Gets a paginated collection of member type items from the root of the tree with optional filtering.
4421
+ */
3240
4422
  static getTreeMemberTypeRoot(options) {
3241
4423
  return (options?.client ?? client).get({
3242
4424
  security: [
@@ -3249,6 +4431,10 @@ export class MemberTypeService {
3249
4431
  ...options
3250
4432
  });
3251
4433
  }
4434
+ /**
4435
+ * Gets sibling member types in the tree.
4436
+ * Gets a collection of member type tree items that are siblings of the provided Id.
4437
+ */
3252
4438
  static getTreeMemberTypeSiblings(options) {
3253
4439
  return (options?.client ?? client).get({
3254
4440
  security: [
@@ -3263,6 +4449,10 @@ export class MemberTypeService {
3263
4449
  }
3264
4450
  }
3265
4451
  export class MemberService {
4452
+ /**
4453
+ * Gets a filtered collection of members.
4454
+ * Filters members based on the provided criteria with support for pagination.
4455
+ */
3266
4456
  static getFilterMember(options) {
3267
4457
  return (options?.client ?? client).get({
3268
4458
  security: [
@@ -3275,6 +4465,10 @@ export class MemberService {
3275
4465
  ...options
3276
4466
  });
3277
4467
  }
4468
+ /**
4469
+ * Gets a collection of member items.
4470
+ * Gets a collection of member items identified by the provided Ids.
4471
+ */
3278
4472
  static getItemMember(options) {
3279
4473
  return (options?.client ?? client).get({
3280
4474
  security: [
@@ -3287,6 +4481,26 @@ export class MemberService {
3287
4481
  ...options
3288
4482
  });
3289
4483
  }
4484
+ /**
4485
+ * Gets ancestors for a collection of member items.
4486
+ * Gets the ancestor chains for member items identified by the provided Ids.
4487
+ */
4488
+ static getItemMemberAncestors(options) {
4489
+ return (options?.client ?? client).get({
4490
+ security: [
4491
+ {
4492
+ scheme: 'bearer',
4493
+ type: 'http'
4494
+ }
4495
+ ],
4496
+ url: '/umbraco/management/api/v1/item/member/ancestors',
4497
+ ...options
4498
+ });
4499
+ }
4500
+ /**
4501
+ * Searches member items.
4502
+ * Searches member items by the provided query with pagination support.
4503
+ */
3290
4504
  static getItemMemberSearch(options) {
3291
4505
  return (options?.client ?? client).get({
3292
4506
  security: [
@@ -3299,6 +4513,10 @@ export class MemberService {
3299
4513
  ...options
3300
4514
  });
3301
4515
  }
4516
+ /**
4517
+ * Creates a new member.
4518
+ * Creates a new member with the configuration specified in the request model.
4519
+ */
3302
4520
  static postMember(options) {
3303
4521
  return (options?.client ?? client).post({
3304
4522
  security: [
@@ -3315,6 +4533,10 @@ export class MemberService {
3315
4533
  }
3316
4534
  });
3317
4535
  }
4536
+ /**
4537
+ * Deletes a member.
4538
+ * Deletes a member identified by the provided Id.
4539
+ */
3318
4540
  static deleteMemberById(options) {
3319
4541
  return (options.client ?? client).delete({
3320
4542
  security: [
@@ -3327,6 +4549,10 @@ export class MemberService {
3327
4549
  ...options
3328
4550
  });
3329
4551
  }
4552
+ /**
4553
+ * Gets a member.
4554
+ * Gets a member identified by the provided Id.
4555
+ */
3330
4556
  static getMemberById(options) {
3331
4557
  return (options.client ?? client).get({
3332
4558
  security: [
@@ -3339,6 +4565,10 @@ export class MemberService {
3339
4565
  ...options
3340
4566
  });
3341
4567
  }
4568
+ /**
4569
+ * Updates a member.
4570
+ * Updates a member identified by the provided Id with the details from the request model.
4571
+ */
3342
4572
  static putMemberById(options) {
3343
4573
  return (options.client ?? client).put({
3344
4574
  security: [
@@ -3355,6 +4585,10 @@ export class MemberService {
3355
4585
  }
3356
4586
  });
3357
4587
  }
4588
+ /**
4589
+ * Gets a collection of items that reference members.
4590
+ * Gets a paginated collection of items that reference the members identified by the provided Ids.
4591
+ */
3358
4592
  static getMemberByIdReferencedBy(options) {
3359
4593
  return (options.client ?? client).get({
3360
4594
  security: [
@@ -3367,6 +4601,10 @@ export class MemberService {
3367
4601
  ...options
3368
4602
  });
3369
4603
  }
4604
+ /**
4605
+ * Gets a paginated collection of referenced descendant members.
4606
+ * Gets a paginated collection of descendant members that are referenced in relations for the member identified by the provided Id.
4607
+ */
3370
4608
  static getMemberByIdReferencedDescendants(options) {
3371
4609
  return (options.client ?? client).get({
3372
4610
  security: [
@@ -3379,6 +4617,10 @@ export class MemberService {
3379
4617
  ...options
3380
4618
  });
3381
4619
  }
4620
+ /**
4621
+ * Validates updating a member.
4622
+ * Validates the request model for updating a member without actually updating it.
4623
+ */
3382
4624
  static putMemberByIdValidate(options) {
3383
4625
  return (options.client ?? client).put({
3384
4626
  security: [
@@ -3395,6 +4637,10 @@ export class MemberService {
3395
4637
  }
3396
4638
  });
3397
4639
  }
4640
+ /**
4641
+ * Gets a collection of items that reference members.
4642
+ * Gets a paginated collection of items that reference the members identified by the provided Ids.
4643
+ */
3398
4644
  static getMemberAreReferenced(options) {
3399
4645
  return (options?.client ?? client).get({
3400
4646
  security: [
@@ -3407,6 +4653,10 @@ export class MemberService {
3407
4653
  ...options
3408
4654
  });
3409
4655
  }
4656
+ /**
4657
+ * Gets the member configuration.
4658
+ * Gets the configuration settings for members.
4659
+ */
3410
4660
  static getMemberConfiguration(options) {
3411
4661
  return (options?.client ?? client).get({
3412
4662
  security: [
@@ -3419,6 +4669,10 @@ export class MemberService {
3419
4669
  ...options
3420
4670
  });
3421
4671
  }
4672
+ /**
4673
+ * Validates creating a member.
4674
+ * Validates the request model for creating a new member without actually creating it.
4675
+ */
3422
4676
  static postMemberValidate(options) {
3423
4677
  return (options?.client ?? client).post({
3424
4678
  security: [
@@ -3437,6 +4691,10 @@ export class MemberService {
3437
4691
  }
3438
4692
  }
3439
4693
  export class ModelsBuilderService {
4694
+ /**
4695
+ * Builds models.
4696
+ * Triggers the models builder to generate strongly-typed models for content types.
4697
+ */
3440
4698
  static postModelsBuilderBuild(options) {
3441
4699
  return (options?.client ?? client).post({
3442
4700
  security: [
@@ -3449,6 +4707,10 @@ export class ModelsBuilderService {
3449
4707
  ...options
3450
4708
  });
3451
4709
  }
4710
+ /**
4711
+ * Gets models builder dashboard data.
4712
+ * Gets the dashboard data and current state of the models builder.
4713
+ */
3452
4714
  static getModelsBuilderDashboard(options) {
3453
4715
  return (options?.client ?? client).get({
3454
4716
  security: [
@@ -3461,6 +4723,10 @@ export class ModelsBuilderService {
3461
4723
  ...options
3462
4724
  });
3463
4725
  }
4726
+ /**
4727
+ * Gets models builder status.
4728
+ * Gets the current status and configuration of the models builder.
4729
+ */
3464
4730
  static getModelsBuilderStatus(options) {
3465
4731
  return (options?.client ?? client).get({
3466
4732
  security: [
@@ -3475,6 +4741,10 @@ export class ModelsBuilderService {
3475
4741
  }
3476
4742
  }
3477
4743
  export class NewsDashboardService {
4744
+ /**
4745
+ * Gets news dashboard content.
4746
+ * Gets the news dashboard content including recent news items and updates for the Umbraco back office.
4747
+ */
3478
4748
  static getNewsDashboard(options) {
3479
4749
  return (options?.client ?? client).get({
3480
4750
  security: [
@@ -3489,6 +4759,10 @@ export class NewsDashboardService {
3489
4759
  }
3490
4760
  }
3491
4761
  export class ObjectTypesService {
4762
+ /**
4763
+ * Gets a paginated collection of allowed object types.
4764
+ * Gets a paginated collection of object types that are allowed as relation type targets.
4765
+ */
3492
4766
  static getObjectTypes(options) {
3493
4767
  return (options?.client ?? client).get({
3494
4768
  security: [
@@ -3503,6 +4777,10 @@ export class ObjectTypesService {
3503
4777
  }
3504
4778
  }
3505
4779
  export class OEmbedService {
4780
+ /**
4781
+ * Queries OEmbed information.
4782
+ * Queries OEmbed information for the specified URL.
4783
+ */
3506
4784
  static getOembedQuery(options) {
3507
4785
  return (options?.client ?? client).get({
3508
4786
  security: [
@@ -3517,6 +4795,10 @@ export class OEmbedService {
3517
4795
  }
3518
4796
  }
3519
4797
  export class PackageService {
4798
+ /**
4799
+ * Runs pending package migrations.
4800
+ * Executes all pending package migrations to update the database schema.
4801
+ */
3520
4802
  static postPackageByNameRunMigration(options) {
3521
4803
  return (options.client ?? client).post({
3522
4804
  security: [
@@ -3529,6 +4811,10 @@ export class PackageService {
3529
4811
  ...options
3530
4812
  });
3531
4813
  }
4814
+ /**
4815
+ * Gets the package configuration.
4816
+ * Gets the configuration settings for packages.
4817
+ */
3532
4818
  static getPackageConfiguration(options) {
3533
4819
  return (options?.client ?? client).get({
3534
4820
  security: [
@@ -3541,6 +4827,10 @@ export class PackageService {
3541
4827
  ...options
3542
4828
  });
3543
4829
  }
4830
+ /**
4831
+ * Gets a paginated collection of created packages.
4832
+ * Gets a paginated collection of all created packages.
4833
+ */
3544
4834
  static getPackageCreated(options) {
3545
4835
  return (options?.client ?? client).get({
3546
4836
  security: [
@@ -3553,6 +4843,10 @@ export class PackageService {
3553
4843
  ...options
3554
4844
  });
3555
4845
  }
4846
+ /**
4847
+ * Creates a new package.
4848
+ * Creates a new package with the configuration specified in the request model.
4849
+ */
3556
4850
  static postPackageCreated(options) {
3557
4851
  return (options?.client ?? client).post({
3558
4852
  security: [
@@ -3569,6 +4863,10 @@ export class PackageService {
3569
4863
  }
3570
4864
  });
3571
4865
  }
4866
+ /**
4867
+ * Deletes a package.
4868
+ * Deletes a package identified by the provided Id.
4869
+ */
3572
4870
  static deletePackageCreatedById(options) {
3573
4871
  return (options.client ?? client).delete({
3574
4872
  security: [
@@ -3581,6 +4879,10 @@ export class PackageService {
3581
4879
  ...options
3582
4880
  });
3583
4881
  }
4882
+ /**
4883
+ * Gets a package.
4884
+ * Gets a package identified by the provided Id.
4885
+ */
3584
4886
  static getPackageCreatedById(options) {
3585
4887
  return (options.client ?? client).get({
3586
4888
  security: [
@@ -3593,6 +4895,10 @@ export class PackageService {
3593
4895
  ...options
3594
4896
  });
3595
4897
  }
4898
+ /**
4899
+ * Updates a package.
4900
+ * Updates a package identified by the provided Id with the details from the request model.
4901
+ */
3596
4902
  static putPackageCreatedById(options) {
3597
4903
  return (options.client ?? client).put({
3598
4904
  security: [
@@ -3609,6 +4915,10 @@ export class PackageService {
3609
4915
  }
3610
4916
  });
3611
4917
  }
4918
+ /**
4919
+ * Downloads a created package.
4920
+ * Downloads the package file for the created package identified by the provided Id.
4921
+ */
3612
4922
  static getPackageCreatedByIdDownload(options) {
3613
4923
  return (options.client ?? client).get({
3614
4924
  security: [
@@ -3621,6 +4931,10 @@ export class PackageService {
3621
4931
  ...options
3622
4932
  });
3623
4933
  }
4934
+ /**
4935
+ * Gets all package migration statuses.
4936
+ * Gets a paginated collection of migration status for all installed packages.
4937
+ */
3624
4938
  static getPackageMigrationStatus(options) {
3625
4939
  return (options?.client ?? client).get({
3626
4940
  security: [
@@ -3635,6 +4949,10 @@ export class PackageService {
3635
4949
  }
3636
4950
  }
3637
4951
  export class PartialViewService {
4952
+ /**
4953
+ * Gets a collection of partial view items.
4954
+ * Gets a collection of partial view items identified by the provided Ids.
4955
+ */
3638
4956
  static getItemPartialView(options) {
3639
4957
  return (options?.client ?? client).get({
3640
4958
  security: [
@@ -3647,6 +4965,10 @@ export class PartialViewService {
3647
4965
  ...options
3648
4966
  });
3649
4967
  }
4968
+ /**
4969
+ * Creates a new partial view.
4970
+ * Creates a new partial view with the configuration specified in the request model.
4971
+ */
3650
4972
  static postPartialView(options) {
3651
4973
  return (options?.client ?? client).post({
3652
4974
  security: [
@@ -3663,6 +4985,10 @@ export class PartialViewService {
3663
4985
  }
3664
4986
  });
3665
4987
  }
4988
+ /**
4989
+ * Deletes a partial view.
4990
+ * Deletes a partial view identified by the provided Id.
4991
+ */
3666
4992
  static deletePartialViewByPath(options) {
3667
4993
  return (options.client ?? client).delete({
3668
4994
  security: [
@@ -3675,6 +5001,10 @@ export class PartialViewService {
3675
5001
  ...options
3676
5002
  });
3677
5003
  }
5004
+ /**
5005
+ * Gets a partial view by path.
5006
+ * Gets a partial view identified by the provided file path.
5007
+ */
3678
5008
  static getPartialViewByPath(options) {
3679
5009
  return (options.client ?? client).get({
3680
5010
  security: [
@@ -3687,6 +5017,10 @@ export class PartialViewService {
3687
5017
  ...options
3688
5018
  });
3689
5019
  }
5020
+ /**
5021
+ * Updates a partial view.
5022
+ * Updates a partial view identified by the provided Id with the details from the request model.
5023
+ */
3690
5024
  static putPartialViewByPath(options) {
3691
5025
  return (options.client ?? client).put({
3692
5026
  security: [
@@ -3703,6 +5037,10 @@ export class PartialViewService {
3703
5037
  }
3704
5038
  });
3705
5039
  }
5040
+ /**
5041
+ * Renames a partial view.
5042
+ * Renames a partial view file to the specified new name.
5043
+ */
3706
5044
  static putPartialViewByPathRename(options) {
3707
5045
  return (options.client ?? client).put({
3708
5046
  security: [
@@ -3719,6 +5057,10 @@ export class PartialViewService {
3719
5057
  }
3720
5058
  });
3721
5059
  }
5060
+ /**
5061
+ * Creates a partial view folder.
5062
+ * Creates a new partial view folder with the provided name and parent location.
5063
+ */
3722
5064
  static postPartialViewFolder(options) {
3723
5065
  return (options?.client ?? client).post({
3724
5066
  security: [
@@ -3735,6 +5077,10 @@ export class PartialViewService {
3735
5077
  }
3736
5078
  });
3737
5079
  }
5080
+ /**
5081
+ * Deletes a partial view folder.
5082
+ * Deletes a partial view folder identified by the provided Id.
5083
+ */
3738
5084
  static deletePartialViewFolderByPath(options) {
3739
5085
  return (options.client ?? client).delete({
3740
5086
  security: [
@@ -3747,6 +5093,10 @@ export class PartialViewService {
3747
5093
  ...options
3748
5094
  });
3749
5095
  }
5096
+ /**
5097
+ * Gets a partial view folder by path.
5098
+ * Gets a partial view folder identified by the provided file path.
5099
+ */
3750
5100
  static getPartialViewFolderByPath(options) {
3751
5101
  return (options.client ?? client).get({
3752
5102
  security: [
@@ -3759,6 +5109,10 @@ export class PartialViewService {
3759
5109
  ...options
3760
5110
  });
3761
5111
  }
5112
+ /**
5113
+ * Gets a paginated collection of partial view snippets.
5114
+ * Gets a paginated collection of available partial view code snippets that can be used when creating new partial views.
5115
+ */
3762
5116
  static getPartialViewSnippet(options) {
3763
5117
  return (options?.client ?? client).get({
3764
5118
  security: [
@@ -3771,6 +5125,10 @@ export class PartialViewService {
3771
5125
  ...options
3772
5126
  });
3773
5127
  }
5128
+ /**
5129
+ * Gets a partial view snippet.
5130
+ * Gets a partial view snippet identified by the provided Id.
5131
+ */
3774
5132
  static getPartialViewSnippetById(options) {
3775
5133
  return (options.client ?? client).get({
3776
5134
  security: [
@@ -3783,6 +5141,10 @@ export class PartialViewService {
3783
5141
  ...options
3784
5142
  });
3785
5143
  }
5144
+ /**
5145
+ * Gets a collection of ancestor partial view items.
5146
+ * Gets a collection of partial view items that are ancestors to the provided Id.
5147
+ */
3786
5148
  static getTreePartialViewAncestors(options) {
3787
5149
  return (options?.client ?? client).get({
3788
5150
  security: [
@@ -3795,6 +5157,10 @@ export class PartialViewService {
3795
5157
  ...options
3796
5158
  });
3797
5159
  }
5160
+ /**
5161
+ * Gets a collection of partial view tree child items.
5162
+ * Gets a paginated collection of partial view tree items that are children of the provided parent Id.
5163
+ */
3798
5164
  static getTreePartialViewChildren(options) {
3799
5165
  return (options?.client ?? client).get({
3800
5166
  security: [
@@ -3807,6 +5173,10 @@ export class PartialViewService {
3807
5173
  ...options
3808
5174
  });
3809
5175
  }
5176
+ /**
5177
+ * Gets a collection of partial view items from the root of the tree.
5178
+ * Gets a paginated collection of partial view items from the root of the tree with optional filtering.
5179
+ */
3810
5180
  static getTreePartialViewRoot(options) {
3811
5181
  return (options?.client ?? client).get({
3812
5182
  security: [
@@ -3819,6 +5189,10 @@ export class PartialViewService {
3819
5189
  ...options
3820
5190
  });
3821
5191
  }
5192
+ /**
5193
+ * Gets a collection of partial view tree sibling items.
5194
+ * Gets a collection of partial view tree items that are siblings of the provided Id.
5195
+ */
3822
5196
  static getTreePartialViewSiblings(options) {
3823
5197
  return (options?.client ?? client).get({
3824
5198
  security: [
@@ -3833,6 +5207,10 @@ export class PartialViewService {
3833
5207
  }
3834
5208
  }
3835
5209
  export class PreviewService {
5210
+ /**
5211
+ * Exits preview mode.
5212
+ * Exits preview mode and returns to the normal back office viewing experience.
5213
+ */
3836
5214
  static deletePreview(options) {
3837
5215
  return (options?.client ?? client).delete({
3838
5216
  url: '/umbraco/management/api/v1/preview',
@@ -3840,6 +5218,8 @@ export class PreviewService {
3840
5218
  });
3841
5219
  }
3842
5220
  /**
5221
+ * Enters preview mode.
5222
+ * Enters preview mode for the current user session, allowing viewing of unpublished content.
3843
5223
  * @deprecated
3844
5224
  */
3845
5225
  static postPreview(options) {
@@ -3856,6 +5236,10 @@ export class PreviewService {
3856
5236
  }
3857
5237
  }
3858
5238
  export class ProfilingService {
5239
+ /**
5240
+ * Gets profiling status.
5241
+ * Gets the current status of the MiniProfiler profiling tool.
5242
+ */
3859
5243
  static getProfilingStatus(options) {
3860
5244
  return (options?.client ?? client).get({
3861
5245
  security: [
@@ -3868,6 +5252,10 @@ export class ProfilingService {
3868
5252
  ...options
3869
5253
  });
3870
5254
  }
5255
+ /**
5256
+ * Updates the web profiling status.
5257
+ * Enables or disables web profiling according to the values provided in the request model.
5258
+ */
3871
5259
  static putProfilingStatus(options) {
3872
5260
  return (options?.client ?? client).put({
3873
5261
  security: [
@@ -3886,6 +5274,10 @@ export class ProfilingService {
3886
5274
  }
3887
5275
  }
3888
5276
  export class PropertyTypeService {
5277
+ /**
5278
+ * Checks if a property type is used.
5279
+ * Checks if the property type identified by the provided content type id and property alias is used in any content, media, or members.
5280
+ */
3889
5281
  static getPropertyTypeIsUsed(options) {
3890
5282
  return (options?.client ?? client).get({
3891
5283
  security: [
@@ -3900,6 +5292,10 @@ export class PropertyTypeService {
3900
5292
  }
3901
5293
  }
3902
5294
  export class PublishedCacheService {
5295
+ /**
5296
+ * Rebuilds the published content cache.
5297
+ * Rebuilds the entire published content cache from scratch.
5298
+ */
3903
5299
  static postPublishedCacheRebuild(options) {
3904
5300
  return (options?.client ?? client).post({
3905
5301
  security: [
@@ -3912,6 +5308,10 @@ export class PublishedCacheService {
3912
5308
  ...options
3913
5309
  });
3914
5310
  }
5311
+ /**
5312
+ * Gets the rebuild cache status.
5313
+ * Gets the current status of the published content cache rebuild operation.
5314
+ */
3915
5315
  static getPublishedCacheRebuildStatus(options) {
3916
5316
  return (options?.client ?? client).get({
3917
5317
  security: [
@@ -3924,6 +5324,10 @@ export class PublishedCacheService {
3924
5324
  ...options
3925
5325
  });
3926
5326
  }
5327
+ /**
5328
+ * Reloads the published content cache.
5329
+ * Reloads the published content cache from the database.
5330
+ */
3927
5331
  static postPublishedCacheReload(options) {
3928
5332
  return (options?.client ?? client).post({
3929
5333
  security: [
@@ -3938,6 +5342,10 @@ export class PublishedCacheService {
3938
5342
  }
3939
5343
  }
3940
5344
  export class RedirectManagementService {
5345
+ /**
5346
+ * Gets a paginated collection of redirect URLs.
5347
+ * Gets a paginated collection of redirect URLs with support for filtering and sorting.
5348
+ */
3941
5349
  static getRedirectManagement(options) {
3942
5350
  return (options?.client ?? client).get({
3943
5351
  security: [
@@ -3950,6 +5358,10 @@ export class RedirectManagementService {
3950
5358
  ...options
3951
5359
  });
3952
5360
  }
5361
+ /**
5362
+ * Deletes a redirect URL.
5363
+ * Deletes a redirect URL identified by the provided Id.
5364
+ */
3953
5365
  static deleteRedirectManagementById(options) {
3954
5366
  return (options.client ?? client).delete({
3955
5367
  security: [
@@ -3962,6 +5374,10 @@ export class RedirectManagementService {
3962
5374
  ...options
3963
5375
  });
3964
5376
  }
5377
+ /**
5378
+ * Gets a redirect URL.
5379
+ * Gets a redirect URL identified by the provided Id.
5380
+ */
3965
5381
  static getRedirectManagementById(options) {
3966
5382
  return (options.client ?? client).get({
3967
5383
  security: [
@@ -3974,6 +5390,10 @@ export class RedirectManagementService {
3974
5390
  ...options
3975
5391
  });
3976
5392
  }
5393
+ /**
5394
+ * Gets the current redirect URL management status.
5395
+ * Retrieves the current status and configuration for redirect URL management.
5396
+ */
3977
5397
  static getRedirectManagementStatus(options) {
3978
5398
  return (options?.client ?? client).get({
3979
5399
  security: [
@@ -3986,6 +5406,10 @@ export class RedirectManagementService {
3986
5406
  ...options
3987
5407
  });
3988
5408
  }
5409
+ /**
5410
+ * Sets the redirect URL tracking status.
5411
+ * Updates the redirect URL tracking configuration according to the provided status.
5412
+ */
3989
5413
  static postRedirectManagementStatus(options) {
3990
5414
  return (options?.client ?? client).post({
3991
5415
  security: [
@@ -4000,6 +5424,10 @@ export class RedirectManagementService {
4000
5424
  }
4001
5425
  }
4002
5426
  export class RelationTypeService {
5427
+ /**
5428
+ * Gets a collection of relation type items.
5429
+ * Gets a collection of relation type items identified by the provided Ids.
5430
+ */
4003
5431
  static getItemRelationType(options) {
4004
5432
  return (options?.client ?? client).get({
4005
5433
  security: [
@@ -4012,6 +5440,10 @@ export class RelationTypeService {
4012
5440
  ...options
4013
5441
  });
4014
5442
  }
5443
+ /**
5444
+ * Gets a paginated collection of relation types.
5445
+ * Gets a paginated collection of all relation types configured in the system.
5446
+ */
4015
5447
  static getRelationType(options) {
4016
5448
  return (options?.client ?? client).get({
4017
5449
  security: [
@@ -4024,6 +5456,10 @@ export class RelationTypeService {
4024
5456
  ...options
4025
5457
  });
4026
5458
  }
5459
+ /**
5460
+ * Gets a relation type.
5461
+ * Gets a relation type identified by the provided Id.
5462
+ */
4027
5463
  static getRelationTypeById(options) {
4028
5464
  return (options.client ?? client).get({
4029
5465
  security: [
@@ -4038,6 +5474,10 @@ export class RelationTypeService {
4038
5474
  }
4039
5475
  }
4040
5476
  export class RelationService {
5477
+ /**
5478
+ * Gets relations by relation type.
5479
+ * Gets a collection of relations filtered by the specified relation type key.
5480
+ */
4041
5481
  static getRelationByRelationTypeId(options) {
4042
5482
  return (options.client ?? client).get({
4043
5483
  security: [
@@ -4052,6 +5492,10 @@ export class RelationService {
4052
5492
  }
4053
5493
  }
4054
5494
  export class ScriptService {
5495
+ /**
5496
+ * Gets a collection of script items.
5497
+ * Gets a collection of script items identified by the provided Ids.
5498
+ */
4055
5499
  static getItemScript(options) {
4056
5500
  return (options?.client ?? client).get({
4057
5501
  security: [
@@ -4064,6 +5508,10 @@ export class ScriptService {
4064
5508
  ...options
4065
5509
  });
4066
5510
  }
5511
+ /**
5512
+ * Creates a new script.
5513
+ * Creates a new script with the configuration specified in the request model.
5514
+ */
4067
5515
  static postScript(options) {
4068
5516
  return (options?.client ?? client).post({
4069
5517
  security: [
@@ -4080,6 +5528,10 @@ export class ScriptService {
4080
5528
  }
4081
5529
  });
4082
5530
  }
5531
+ /**
5532
+ * Deletes a script.
5533
+ * Deletes a script identified by the provided file path.
5534
+ */
4083
5535
  static deleteScriptByPath(options) {
4084
5536
  return (options.client ?? client).delete({
4085
5537
  security: [
@@ -4092,6 +5544,10 @@ export class ScriptService {
4092
5544
  ...options
4093
5545
  });
4094
5546
  }
5547
+ /**
5548
+ * Gets a script by path.
5549
+ * Gets a script identified by the provided file path.
5550
+ */
4095
5551
  static getScriptByPath(options) {
4096
5552
  return (options.client ?? client).get({
4097
5553
  security: [
@@ -4104,6 +5560,10 @@ export class ScriptService {
4104
5560
  ...options
4105
5561
  });
4106
5562
  }
5563
+ /**
5564
+ * Updates a script.
5565
+ * Updates a script identified by the provided Id with the details from the request model.
5566
+ */
4107
5567
  static putScriptByPath(options) {
4108
5568
  return (options.client ?? client).put({
4109
5569
  security: [
@@ -4120,6 +5580,10 @@ export class ScriptService {
4120
5580
  }
4121
5581
  });
4122
5582
  }
5583
+ /**
5584
+ * Renames a script.
5585
+ * Renames a script file to the specified new name.
5586
+ */
4123
5587
  static putScriptByPathRename(options) {
4124
5588
  return (options.client ?? client).put({
4125
5589
  security: [
@@ -4136,6 +5600,10 @@ export class ScriptService {
4136
5600
  }
4137
5601
  });
4138
5602
  }
5603
+ /**
5604
+ * Creates a script folder.
5605
+ * Creates a new script folder with the provided name and parent location.
5606
+ */
4139
5607
  static postScriptFolder(options) {
4140
5608
  return (options?.client ?? client).post({
4141
5609
  security: [
@@ -4152,6 +5620,10 @@ export class ScriptService {
4152
5620
  }
4153
5621
  });
4154
5622
  }
5623
+ /**
5624
+ * Deletes a script folder.
5625
+ * Deletes a script folder identified by the provided Id.
5626
+ */
4155
5627
  static deleteScriptFolderByPath(options) {
4156
5628
  return (options.client ?? client).delete({
4157
5629
  security: [
@@ -4164,6 +5636,10 @@ export class ScriptService {
4164
5636
  ...options
4165
5637
  });
4166
5638
  }
5639
+ /**
5640
+ * Gets a script folder by path.
5641
+ * Gets a script folder identified by the provided file path.
5642
+ */
4167
5643
  static getScriptFolderByPath(options) {
4168
5644
  return (options.client ?? client).get({
4169
5645
  security: [
@@ -4176,6 +5652,10 @@ export class ScriptService {
4176
5652
  ...options
4177
5653
  });
4178
5654
  }
5655
+ /**
5656
+ * Gets a collection of ancestor script items.
5657
+ * Gets a collection of script items that are ancestors to the provided Id.
5658
+ */
4179
5659
  static getTreeScriptAncestors(options) {
4180
5660
  return (options?.client ?? client).get({
4181
5661
  security: [
@@ -4188,6 +5668,10 @@ export class ScriptService {
4188
5668
  ...options
4189
5669
  });
4190
5670
  }
5671
+ /**
5672
+ * Gets a collection of script tree child items.
5673
+ * Gets a paginated collection of script tree items that are children of the provided parent Id.
5674
+ */
4191
5675
  static getTreeScriptChildren(options) {
4192
5676
  return (options?.client ?? client).get({
4193
5677
  security: [
@@ -4200,6 +5684,10 @@ export class ScriptService {
4200
5684
  ...options
4201
5685
  });
4202
5686
  }
5687
+ /**
5688
+ * Gets a collection of script items from the root of the tree.
5689
+ * Gets a paginated collection of script items from the root of the tree with optional filtering.
5690
+ */
4203
5691
  static getTreeScriptRoot(options) {
4204
5692
  return (options?.client ?? client).get({
4205
5693
  security: [
@@ -4212,6 +5700,10 @@ export class ScriptService {
4212
5700
  ...options
4213
5701
  });
4214
5702
  }
5703
+ /**
5704
+ * Gets a collection of script tree sibling items.
5705
+ * Gets a collection of script tree items that are siblings of the provided Id.
5706
+ */
4215
5707
  static getTreeScriptSiblings(options) {
4216
5708
  return (options?.client ?? client).get({
4217
5709
  security: [
@@ -4226,6 +5718,10 @@ export class ScriptService {
4226
5718
  }
4227
5719
  }
4228
5720
  export class SearcherService {
5721
+ /**
5722
+ * Gets a collection of searchers.
5723
+ * Gets a collection of configured searchers in the Umbraco installation.
5724
+ */
4229
5725
  static getSearcher(options) {
4230
5726
  return (options?.client ?? client).get({
4231
5727
  security: [
@@ -4252,6 +5748,10 @@ export class SearcherService {
4252
5748
  }
4253
5749
  }
4254
5750
  export class SecurityService {
5751
+ /**
5752
+ * Gets the security configuration.
5753
+ * Gets the configuration settings for security.
5754
+ */
4255
5755
  static getSecurityConfiguration(options) {
4256
5756
  return (options?.client ?? client).get({
4257
5757
  security: [
@@ -4264,6 +5764,10 @@ export class SecurityService {
4264
5764
  ...options
4265
5765
  });
4266
5766
  }
5767
+ /**
5768
+ * Requests a password reset.
5769
+ * Initiates a password reset process by sending a reset link to the specified email address.
5770
+ */
4267
5771
  static postSecurityForgotPassword(options) {
4268
5772
  return (options?.client ?? client).post({
4269
5773
  security: [
@@ -4280,6 +5784,10 @@ export class SecurityService {
4280
5784
  }
4281
5785
  });
4282
5786
  }
5787
+ /**
5788
+ * Initiates password reset.
5789
+ * Initiates a password reset process for the user with the provided email.
5790
+ */
4283
5791
  static postSecurityForgotPasswordReset(options) {
4284
5792
  return (options?.client ?? client).post({
4285
5793
  security: [
@@ -4296,6 +5804,10 @@ export class SecurityService {
4296
5804
  }
4297
5805
  });
4298
5806
  }
5807
+ /**
5808
+ * Verifies a password reset token.
5809
+ * Verifies the provided password reset token for the specified user.
5810
+ */
4299
5811
  static postSecurityForgotPasswordVerify(options) {
4300
5812
  return (options?.client ?? client).post({
4301
5813
  url: '/umbraco/management/api/v1/security/forgot-password/verify',
@@ -4308,6 +5820,10 @@ export class SecurityService {
4308
5820
  }
4309
5821
  }
4310
5822
  export class SegmentService {
5823
+ /**
5824
+ * Gets a paginated collection of segments.
5825
+ * Gets a paginated collection of segments with support for filtering and pagination.
5826
+ */
4311
5827
  static getSegment(options) {
4312
5828
  return (options?.client ?? client).get({
4313
5829
  security: [
@@ -4322,12 +5838,20 @@ export class SegmentService {
4322
5838
  }
4323
5839
  }
4324
5840
  export class ServerService {
5841
+ /**
5842
+ * Gets the server configuration.
5843
+ * Gets the configuration settings for servers.
5844
+ */
4325
5845
  static getServerConfiguration(options) {
4326
5846
  return (options?.client ?? client).get({
4327
5847
  url: '/umbraco/management/api/v1/server/configuration',
4328
5848
  ...options
4329
5849
  });
4330
5850
  }
5851
+ /**
5852
+ * Gets server information.
5853
+ * Gets detailed information about the server environment and configuration.
5854
+ */
4331
5855
  static getServerInformation(options) {
4332
5856
  return (options?.client ?? client).get({
4333
5857
  security: [
@@ -4340,12 +5864,20 @@ export class ServerService {
4340
5864
  ...options
4341
5865
  });
4342
5866
  }
5867
+ /**
5868
+ * Gets server status.
5869
+ * Gets the current operational status of the Umbraco server.
5870
+ */
4343
5871
  static getServerStatus(options) {
4344
5872
  return (options?.client ?? client).get({
4345
5873
  url: '/umbraco/management/api/v1/server/status',
4346
5874
  ...options
4347
5875
  });
4348
5876
  }
5877
+ /**
5878
+ * Gets server troubleshooting information.
5879
+ * Gets troubleshooting information and diagnostics for the server.
5880
+ */
4349
5881
  static getServerTroubleshooting(options) {
4350
5882
  return (options?.client ?? client).get({
4351
5883
  security: [
@@ -4359,6 +5891,8 @@ export class ServerService {
4359
5891
  });
4360
5892
  }
4361
5893
  /**
5894
+ * Checks for available upgrades.
5895
+ * Checks if there are any available upgrades for the Umbraco installation.
4362
5896
  * @deprecated
4363
5897
  */
4364
5898
  static getServerUpgradeCheck(options) {
@@ -4375,6 +5909,10 @@ export class ServerService {
4375
5909
  }
4376
5910
  }
4377
5911
  export class StaticFileService {
5912
+ /**
5913
+ * Gets a collection of static file items.
5914
+ * Gets a collection of static file items identified by the provided Ids.
5915
+ */
4378
5916
  static getItemStaticFile(options) {
4379
5917
  return (options?.client ?? client).get({
4380
5918
  security: [
@@ -4387,6 +5925,10 @@ export class StaticFileService {
4387
5925
  ...options
4388
5926
  });
4389
5927
  }
5928
+ /**
5929
+ * Gets a collection of ancestor static file items.
5930
+ * Gets a collection of static file items that are ancestors to the provided Id.
5931
+ */
4390
5932
  static getTreeStaticFileAncestors(options) {
4391
5933
  return (options?.client ?? client).get({
4392
5934
  security: [
@@ -4399,6 +5941,10 @@ export class StaticFileService {
4399
5941
  ...options
4400
5942
  });
4401
5943
  }
5944
+ /**
5945
+ * Gets a collection of static file tree child items.
5946
+ * Gets a paginated collection of static file tree items that are children of the provided parent Id.
5947
+ */
4402
5948
  static getTreeStaticFileChildren(options) {
4403
5949
  return (options?.client ?? client).get({
4404
5950
  security: [
@@ -4411,6 +5957,10 @@ export class StaticFileService {
4411
5957
  ...options
4412
5958
  });
4413
5959
  }
5960
+ /**
5961
+ * Gets a collection of static file items from the root of the tree.
5962
+ * Gets a paginated collection of static file items from the root of the tree with optional filtering.
5963
+ */
4414
5964
  static getTreeStaticFileRoot(options) {
4415
5965
  return (options?.client ?? client).get({
4416
5966
  security: [
@@ -4425,6 +5975,10 @@ export class StaticFileService {
4425
5975
  }
4426
5976
  }
4427
5977
  export class StylesheetService {
5978
+ /**
5979
+ * Gets a collection of stylesheet items.
5980
+ * Gets a collection of stylesheet items identified by the provided Ids.
5981
+ */
4428
5982
  static getItemStylesheet(options) {
4429
5983
  return (options?.client ?? client).get({
4430
5984
  security: [
@@ -4437,6 +5991,10 @@ export class StylesheetService {
4437
5991
  ...options
4438
5992
  });
4439
5993
  }
5994
+ /**
5995
+ * Creates a new stylesheet.
5996
+ * Creates a new stylesheet with the configuration specified in the request model.
5997
+ */
4440
5998
  static postStylesheet(options) {
4441
5999
  return (options?.client ?? client).post({
4442
6000
  security: [
@@ -4453,6 +6011,10 @@ export class StylesheetService {
4453
6011
  }
4454
6012
  });
4455
6013
  }
6014
+ /**
6015
+ * Deletes a stylesheet.
6016
+ * Deletes a stylesheet identified by the provided Id.
6017
+ */
4456
6018
  static deleteStylesheetByPath(options) {
4457
6019
  return (options.client ?? client).delete({
4458
6020
  security: [
@@ -4465,6 +6027,10 @@ export class StylesheetService {
4465
6027
  ...options
4466
6028
  });
4467
6029
  }
6030
+ /**
6031
+ * Gets a stylesheet by path.
6032
+ * Gets a stylesheet identified by the provided file path.
6033
+ */
4468
6034
  static getStylesheetByPath(options) {
4469
6035
  return (options.client ?? client).get({
4470
6036
  security: [
@@ -4477,6 +6043,10 @@ export class StylesheetService {
4477
6043
  ...options
4478
6044
  });
4479
6045
  }
6046
+ /**
6047
+ * Updates a stylesheet.
6048
+ * Updates a stylesheet identified by the provided Id with the details from the request model.
6049
+ */
4480
6050
  static putStylesheetByPath(options) {
4481
6051
  return (options.client ?? client).put({
4482
6052
  security: [
@@ -4493,6 +6063,10 @@ export class StylesheetService {
4493
6063
  }
4494
6064
  });
4495
6065
  }
6066
+ /**
6067
+ * Renames a stylesheet.
6068
+ * Renames a stylesheet file to the specified new name.
6069
+ */
4496
6070
  static putStylesheetByPathRename(options) {
4497
6071
  return (options.client ?? client).put({
4498
6072
  security: [
@@ -4509,6 +6083,10 @@ export class StylesheetService {
4509
6083
  }
4510
6084
  });
4511
6085
  }
6086
+ /**
6087
+ * Creates a stylesheet folder.
6088
+ * Creates a new stylesheet folder with the provided name and parent location.
6089
+ */
4512
6090
  static postStylesheetFolder(options) {
4513
6091
  return (options?.client ?? client).post({
4514
6092
  security: [
@@ -4525,6 +6103,10 @@ export class StylesheetService {
4525
6103
  }
4526
6104
  });
4527
6105
  }
6106
+ /**
6107
+ * Deletes a stylesheet folder.
6108
+ * Deletes a stylesheet folder identified by the provided Id.
6109
+ */
4528
6110
  static deleteStylesheetFolderByPath(options) {
4529
6111
  return (options.client ?? client).delete({
4530
6112
  security: [
@@ -4537,6 +6119,10 @@ export class StylesheetService {
4537
6119
  ...options
4538
6120
  });
4539
6121
  }
6122
+ /**
6123
+ * Gets a stylesheet folder by path.
6124
+ * Gets a stylesheet folder identified by the provided file path.
6125
+ */
4540
6126
  static getStylesheetFolderByPath(options) {
4541
6127
  return (options.client ?? client).get({
4542
6128
  security: [
@@ -4549,6 +6135,10 @@ export class StylesheetService {
4549
6135
  ...options
4550
6136
  });
4551
6137
  }
6138
+ /**
6139
+ * Gets a collection of ancestor stylesheet items.
6140
+ * Gets a collection of stylesheet items that are ancestors to the provided Id.
6141
+ */
4552
6142
  static getTreeStylesheetAncestors(options) {
4553
6143
  return (options?.client ?? client).get({
4554
6144
  security: [
@@ -4561,6 +6151,10 @@ export class StylesheetService {
4561
6151
  ...options
4562
6152
  });
4563
6153
  }
6154
+ /**
6155
+ * Gets a collection of stylesheet tree child items.
6156
+ * Gets a paginated collection of stylesheet tree items that are children of the provided parent Id.
6157
+ */
4564
6158
  static getTreeStylesheetChildren(options) {
4565
6159
  return (options?.client ?? client).get({
4566
6160
  security: [
@@ -4573,6 +6167,10 @@ export class StylesheetService {
4573
6167
  ...options
4574
6168
  });
4575
6169
  }
6170
+ /**
6171
+ * Gets a collection of stylesheet items from the root of the tree.
6172
+ * Gets a paginated collection of stylesheet items from the root of the tree with optional filtering.
6173
+ */
4576
6174
  static getTreeStylesheetRoot(options) {
4577
6175
  return (options?.client ?? client).get({
4578
6176
  security: [
@@ -4585,6 +6183,10 @@ export class StylesheetService {
4585
6183
  ...options
4586
6184
  });
4587
6185
  }
6186
+ /**
6187
+ * Gets a collection of stylesheet tree sibling items.
6188
+ * Gets a collection of stylesheet tree items that are siblings of the provided Id.
6189
+ */
4588
6190
  static getTreeStylesheetSiblings(options) {
4589
6191
  return (options?.client ?? client).get({
4590
6192
  security: [
@@ -4599,6 +6201,10 @@ export class StylesheetService {
4599
6201
  }
4600
6202
  }
4601
6203
  export class TagService {
6204
+ /**
6205
+ * Gets a collection of tags.
6206
+ * Gets a collection of tags filtered by the provided query string.
6207
+ */
4602
6208
  static getTag(options) {
4603
6209
  return (options?.client ?? client).get({
4604
6210
  security: [
@@ -4613,6 +6219,10 @@ export class TagService {
4613
6219
  }
4614
6220
  }
4615
6221
  export class TelemetryService {
6222
+ /**
6223
+ * Gets telemetry data.
6224
+ * Gets telemetry data and statistics for the Umbraco installation.
6225
+ */
4616
6226
  static getTelemetry(options) {
4617
6227
  return (options?.client ?? client).get({
4618
6228
  security: [
@@ -4625,6 +6235,10 @@ export class TelemetryService {
4625
6235
  ...options
4626
6236
  });
4627
6237
  }
6238
+ /**
6239
+ * Gets telemetry information.
6240
+ * Gets the current telemetry configuration and consent level.
6241
+ */
4628
6242
  static getTelemetryLevel(options) {
4629
6243
  return (options?.client ?? client).get({
4630
6244
  security: [
@@ -4637,6 +6251,10 @@ export class TelemetryService {
4637
6251
  ...options
4638
6252
  });
4639
6253
  }
6254
+ /**
6255
+ * Sets telemetry consent level.
6256
+ * Sets the telemetry consent level for anonymous usage data collection.
6257
+ */
4640
6258
  static postTelemetryLevel(options) {
4641
6259
  return (options?.client ?? client).post({
4642
6260
  security: [
@@ -4655,6 +6273,10 @@ export class TelemetryService {
4655
6273
  }
4656
6274
  }
4657
6275
  export class TemplateService {
6276
+ /**
6277
+ * Gets a collection of template items.
6278
+ * Gets a collection of template items identified by the provided Ids.
6279
+ */
4658
6280
  static getItemTemplate(options) {
4659
6281
  return (options?.client ?? client).get({
4660
6282
  security: [
@@ -4667,6 +6289,26 @@ export class TemplateService {
4667
6289
  ...options
4668
6290
  });
4669
6291
  }
6292
+ /**
6293
+ * Gets ancestors for a collection of template items.
6294
+ * Gets the ancestor chains for template items identified by the provided Ids.
6295
+ */
6296
+ static getItemTemplateAncestors(options) {
6297
+ return (options?.client ?? client).get({
6298
+ security: [
6299
+ {
6300
+ scheme: 'bearer',
6301
+ type: 'http'
6302
+ }
6303
+ ],
6304
+ url: '/umbraco/management/api/v1/item/template/ancestors',
6305
+ ...options
6306
+ });
6307
+ }
6308
+ /**
6309
+ * Searches template items.
6310
+ * Searches template items by the provided query with pagination support.
6311
+ */
4670
6312
  static getItemTemplateSearch(options) {
4671
6313
  return (options?.client ?? client).get({
4672
6314
  security: [
@@ -4679,6 +6321,10 @@ export class TemplateService {
4679
6321
  ...options
4680
6322
  });
4681
6323
  }
6324
+ /**
6325
+ * Creates a new template.
6326
+ * Creates a new template with the configuration specified in the request model.
6327
+ */
4682
6328
  static postTemplate(options) {
4683
6329
  return (options?.client ?? client).post({
4684
6330
  security: [
@@ -4695,6 +6341,10 @@ export class TemplateService {
4695
6341
  }
4696
6342
  });
4697
6343
  }
6344
+ /**
6345
+ * Deletes a template.
6346
+ * Deletes a template identified by the provided Id.
6347
+ */
4698
6348
  static deleteTemplateById(options) {
4699
6349
  return (options.client ?? client).delete({
4700
6350
  security: [
@@ -4707,6 +6357,10 @@ export class TemplateService {
4707
6357
  ...options
4708
6358
  });
4709
6359
  }
6360
+ /**
6361
+ * Gets a template.
6362
+ * Gets a template identified by the provided Id.
6363
+ */
4710
6364
  static getTemplateById(options) {
4711
6365
  return (options.client ?? client).get({
4712
6366
  security: [
@@ -4719,6 +6373,10 @@ export class TemplateService {
4719
6373
  ...options
4720
6374
  });
4721
6375
  }
6376
+ /**
6377
+ * Updates a template.
6378
+ * Updates a template identified by the provided Id with the details from the request model.
6379
+ */
4722
6380
  static putTemplateById(options) {
4723
6381
  return (options.client ?? client).put({
4724
6382
  security: [
@@ -4735,6 +6393,10 @@ export class TemplateService {
4735
6393
  }
4736
6394
  });
4737
6395
  }
6396
+ /**
6397
+ * Gets the template configuration.
6398
+ * Gets the configuration settings for templates.
6399
+ */
4738
6400
  static getTemplateConfiguration(options) {
4739
6401
  return (options?.client ?? client).get({
4740
6402
  security: [
@@ -4747,6 +6409,10 @@ export class TemplateService {
4747
6409
  ...options
4748
6410
  });
4749
6411
  }
6412
+ /**
6413
+ * Executes a template query.
6414
+ * Executes a template query with the provided parameters and returns the matching content results with execution metrics.
6415
+ */
4750
6416
  static postTemplateQueryExecute(options) {
4751
6417
  return (options?.client ?? client).post({
4752
6418
  security: [
@@ -4763,6 +6429,10 @@ export class TemplateService {
4763
6429
  }
4764
6430
  });
4765
6431
  }
6432
+ /**
6433
+ * Gets template query settings.
6434
+ * Gets the available configuration settings for template queries including document type aliases, properties, and operators.
6435
+ */
4766
6436
  static getTemplateQuerySettings(options) {
4767
6437
  return (options?.client ?? client).get({
4768
6438
  security: [
@@ -4775,6 +6445,10 @@ export class TemplateService {
4775
6445
  ...options
4776
6446
  });
4777
6447
  }
6448
+ /**
6449
+ * Gets a collection of ancestor template items.
6450
+ * Gets a collection of template items that are ancestors to the provided Id.
6451
+ */
4778
6452
  static getTreeTemplateAncestors(options) {
4779
6453
  return (options?.client ?? client).get({
4780
6454
  security: [
@@ -4787,6 +6461,10 @@ export class TemplateService {
4787
6461
  ...options
4788
6462
  });
4789
6463
  }
6464
+ /**
6465
+ * Gets a collection of template tree child items.
6466
+ * Gets a paginated collection of template tree items that are children of the provided parent Id.
6467
+ */
4790
6468
  static getTreeTemplateChildren(options) {
4791
6469
  return (options?.client ?? client).get({
4792
6470
  security: [
@@ -4799,6 +6477,10 @@ export class TemplateService {
4799
6477
  ...options
4800
6478
  });
4801
6479
  }
6480
+ /**
6481
+ * Gets a collection of template items from the root of the tree.
6482
+ * Gets a paginated collection of template items from the root of the tree with optional filtering.
6483
+ */
4802
6484
  static getTreeTemplateRoot(options) {
4803
6485
  return (options?.client ?? client).get({
4804
6486
  security: [
@@ -4811,6 +6493,10 @@ export class TemplateService {
4811
6493
  ...options
4812
6494
  });
4813
6495
  }
6496
+ /**
6497
+ * Gets a collection of template tree sibling items.
6498
+ * Gets a collection of template tree items that are siblings of the provided Id.
6499
+ */
4814
6500
  static getTreeTemplateSiblings(options) {
4815
6501
  return (options?.client ?? client).get({
4816
6502
  security: [
@@ -4825,6 +6511,10 @@ export class TemplateService {
4825
6511
  }
4826
6512
  }
4827
6513
  export class TemporaryFileService {
6514
+ /**
6515
+ * Creates a temporary file.
6516
+ * Uploads and creates a temporary file that can be used in subsequent operations.
6517
+ */
4828
6518
  static postTemporaryFile(options) {
4829
6519
  return (options?.client ?? client).post({
4830
6520
  ...formDataBodySerializer,
@@ -4842,6 +6532,10 @@ export class TemporaryFileService {
4842
6532
  }
4843
6533
  });
4844
6534
  }
6535
+ /**
6536
+ * Deletes a temporary file.
6537
+ * Deletes a temporary file identified by the provided Id.
6538
+ */
4845
6539
  static deleteTemporaryFileById(options) {
4846
6540
  return (options.client ?? client).delete({
4847
6541
  security: [
@@ -4854,6 +6548,10 @@ export class TemporaryFileService {
4854
6548
  ...options
4855
6549
  });
4856
6550
  }
6551
+ /**
6552
+ * Gets a temporary file.
6553
+ * Gets a temporary file identified by the provided Id.
6554
+ */
4857
6555
  static getTemporaryFileById(options) {
4858
6556
  return (options.client ?? client).get({
4859
6557
  security: [
@@ -4866,6 +6564,10 @@ export class TemporaryFileService {
4866
6564
  ...options
4867
6565
  });
4868
6566
  }
6567
+ /**
6568
+ * Gets the temporary file configuration.
6569
+ * Gets the configuration settings for temporary files.
6570
+ */
4869
6571
  static getTemporaryFileConfiguration(options) {
4870
6572
  return (options?.client ?? client).get({
4871
6573
  security: [
@@ -4880,6 +6582,10 @@ export class TemporaryFileService {
4880
6582
  }
4881
6583
  }
4882
6584
  export class UpgradeService {
6585
+ /**
6586
+ * Authorizes the upgrade.
6587
+ * Authorizes the currently authenticated user to perform the upgrade.
6588
+ */
4883
6589
  static postUpgradeAuthorize(options) {
4884
6590
  return (options?.client ?? client).post({
4885
6591
  security: [
@@ -4892,6 +6598,10 @@ export class UpgradeService {
4892
6598
  ...options
4893
6599
  });
4894
6600
  }
6601
+ /**
6602
+ * Gets upgrade settings.
6603
+ * Gets the current upgrade settings and status for the Umbraco installation.
6604
+ */
4895
6605
  static getUpgradeSettings(options) {
4896
6606
  return (options?.client ?? client).get({
4897
6607
  security: [
@@ -4906,6 +6616,10 @@ export class UpgradeService {
4906
6616
  }
4907
6617
  }
4908
6618
  export class UserDataService {
6619
+ /**
6620
+ * Gets user data.
6621
+ * Gets user-specific data stored for the current authenticated user.
6622
+ */
4909
6623
  static getUserData(options) {
4910
6624
  return (options?.client ?? client).get({
4911
6625
  security: [
@@ -4918,6 +6632,10 @@ export class UserDataService {
4918
6632
  ...options
4919
6633
  });
4920
6634
  }
6635
+ /**
6636
+ * Creates user data.
6637
+ * Creates user-specific data for the current authenticated user with the provided key and value.
6638
+ */
4921
6639
  static postUserData(options) {
4922
6640
  return (options?.client ?? client).post({
4923
6641
  security: [
@@ -4934,6 +6652,10 @@ export class UserDataService {
4934
6652
  }
4935
6653
  });
4936
6654
  }
6655
+ /**
6656
+ * Updates user data.
6657
+ * Updates user-specific data for the current authenticated user.
6658
+ */
4937
6659
  static putUserData(options) {
4938
6660
  return (options?.client ?? client).put({
4939
6661
  security: [
@@ -4950,6 +6672,10 @@ export class UserDataService {
4950
6672
  }
4951
6673
  });
4952
6674
  }
6675
+ /**
6676
+ * Deletes user data.
6677
+ * Deletes user data identified by the provided Id.
6678
+ */
4953
6679
  static deleteUserDataById(options) {
4954
6680
  return (options.client ?? client).delete({
4955
6681
  security: [
@@ -4962,6 +6688,10 @@ export class UserDataService {
4962
6688
  ...options
4963
6689
  });
4964
6690
  }
6691
+ /**
6692
+ * Gets user data.
6693
+ * Gets user data identified by the provided Id.
6694
+ */
4965
6695
  static getUserDataById(options) {
4966
6696
  return (options.client ?? client).get({
4967
6697
  security: [
@@ -4976,6 +6706,10 @@ export class UserDataService {
4976
6706
  }
4977
6707
  }
4978
6708
  export class UserGroupService {
6709
+ /**
6710
+ * Gets a filtered collection of user groups.
6711
+ * Filters user groups based on the provided criteria with support for pagination.
6712
+ */
4979
6713
  static getFilterUserGroup(options) {
4980
6714
  return (options?.client ?? client).get({
4981
6715
  security: [
@@ -4988,6 +6722,10 @@ export class UserGroupService {
4988
6722
  ...options
4989
6723
  });
4990
6724
  }
6725
+ /**
6726
+ * Gets a collection of user group items.
6727
+ * Gets a collection of user group items identified by the provided Ids.
6728
+ */
4991
6729
  static getItemUserGroup(options) {
4992
6730
  return (options?.client ?? client).get({
4993
6731
  security: [
@@ -5000,6 +6738,10 @@ export class UserGroupService {
5000
6738
  ...options
5001
6739
  });
5002
6740
  }
6741
+ /**
6742
+ * Deletes multiple user groups.
6743
+ * Deletes multiple user groups identified by the provided Ids. This operation cannot be undone.
6744
+ */
5003
6745
  static deleteUserGroup(options) {
5004
6746
  return (options?.client ?? client).delete({
5005
6747
  security: [
@@ -5016,6 +6758,10 @@ export class UserGroupService {
5016
6758
  }
5017
6759
  });
5018
6760
  }
6761
+ /**
6762
+ * Gets a paginated collection of user groups.
6763
+ * Gets a paginated collection of all user groups.
6764
+ */
5019
6765
  static getUserGroup(options) {
5020
6766
  return (options?.client ?? client).get({
5021
6767
  security: [
@@ -5028,6 +6774,10 @@ export class UserGroupService {
5028
6774
  ...options
5029
6775
  });
5030
6776
  }
6777
+ /**
6778
+ * Creates a new user group.
6779
+ * Creates a new user group with the configuration specified in the request model.
6780
+ */
5031
6781
  static postUserGroup(options) {
5032
6782
  return (options?.client ?? client).post({
5033
6783
  security: [
@@ -5044,6 +6794,10 @@ export class UserGroupService {
5044
6794
  }
5045
6795
  });
5046
6796
  }
6797
+ /**
6798
+ * Deletes a user group.
6799
+ * Deletes a user group identified by the provided Id.
6800
+ */
5047
6801
  static deleteUserGroupById(options) {
5048
6802
  return (options.client ?? client).delete({
5049
6803
  security: [
@@ -5056,6 +6810,10 @@ export class UserGroupService {
5056
6810
  ...options
5057
6811
  });
5058
6812
  }
6813
+ /**
6814
+ * Gets a user group.
6815
+ * Gets a user group identified by the provided Id.
6816
+ */
5059
6817
  static getUserGroupById(options) {
5060
6818
  return (options.client ?? client).get({
5061
6819
  security: [
@@ -5068,6 +6826,10 @@ export class UserGroupService {
5068
6826
  ...options
5069
6827
  });
5070
6828
  }
6829
+ /**
6830
+ * Updates a user group.
6831
+ * Updates a user group identified by the provided Id with the details from the request model.
6832
+ */
5071
6833
  static putUserGroupById(options) {
5072
6834
  return (options.client ?? client).put({
5073
6835
  security: [
@@ -5084,6 +6846,10 @@ export class UserGroupService {
5084
6846
  }
5085
6847
  });
5086
6848
  }
6849
+ /**
6850
+ * Removes users from a user group.
6851
+ * Removes the specified users from the user group identified by the provided Id.
6852
+ */
5087
6853
  static deleteUserGroupByIdUsers(options) {
5088
6854
  return (options.client ?? client).delete({
5089
6855
  security: [
@@ -5100,6 +6866,10 @@ export class UserGroupService {
5100
6866
  }
5101
6867
  });
5102
6868
  }
6869
+ /**
6870
+ * Adds users to a user group.
6871
+ * Adds the specified users to the user group identified by the provided Id.
6872
+ */
5103
6873
  static postUserGroupByIdUsers(options) {
5104
6874
  return (options.client ?? client).post({
5105
6875
  security: [
@@ -5118,6 +6888,10 @@ export class UserGroupService {
5118
6888
  }
5119
6889
  }
5120
6890
  export class UserService {
6891
+ /**
6892
+ * Gets a filtered collection of users.
6893
+ * Filters users based on the provided criteria with support for pagination.
6894
+ */
5121
6895
  static getFilterUser(options) {
5122
6896
  return (options?.client ?? client).get({
5123
6897
  security: [
@@ -5130,6 +6904,10 @@ export class UserService {
5130
6904
  ...options
5131
6905
  });
5132
6906
  }
6907
+ /**
6908
+ * Gets a collection of user items.
6909
+ * Gets a collection of user items identified by the provided Ids.
6910
+ */
5133
6911
  static getItemUser(options) {
5134
6912
  return (options?.client ?? client).get({
5135
6913
  security: [
@@ -5142,6 +6920,10 @@ export class UserService {
5142
6920
  ...options
5143
6921
  });
5144
6922
  }
6923
+ /**
6924
+ * Deletes multiple users.
6925
+ * Deletes multiple users identified by the provided Ids. This operation cannot be undone.
6926
+ */
5145
6927
  static deleteUser(options) {
5146
6928
  return (options?.client ?? client).delete({
5147
6929
  security: [
@@ -5158,6 +6940,10 @@ export class UserService {
5158
6940
  }
5159
6941
  });
5160
6942
  }
6943
+ /**
6944
+ * Gets a paginated collection of users.
6945
+ * Gets a paginated collection of all users.
6946
+ */
5161
6947
  static getUser(options) {
5162
6948
  return (options?.client ?? client).get({
5163
6949
  security: [
@@ -5170,6 +6956,10 @@ export class UserService {
5170
6956
  ...options
5171
6957
  });
5172
6958
  }
6959
+ /**
6960
+ * Creates a new user.
6961
+ * Creates a new user with the configuration specified in the request model.
6962
+ */
5173
6963
  static postUser(options) {
5174
6964
  return (options?.client ?? client).post({
5175
6965
  security: [
@@ -5186,6 +6976,10 @@ export class UserService {
5186
6976
  }
5187
6977
  });
5188
6978
  }
6979
+ /**
6980
+ * Deletes a user.
6981
+ * Deletes a user identified by the provided Id.
6982
+ */
5189
6983
  static deleteUserById(options) {
5190
6984
  return (options.client ?? client).delete({
5191
6985
  security: [
@@ -5198,6 +6992,10 @@ export class UserService {
5198
6992
  ...options
5199
6993
  });
5200
6994
  }
6995
+ /**
6996
+ * Gets a user.
6997
+ * Gets a user identified by the provided Id.
6998
+ */
5201
6999
  static getUserById(options) {
5202
7000
  return (options.client ?? client).get({
5203
7001
  security: [
@@ -5210,6 +7008,10 @@ export class UserService {
5210
7008
  ...options
5211
7009
  });
5212
7010
  }
7011
+ /**
7012
+ * Updates a user.
7013
+ * Updates a user identified by the provided Id with the details from the request model.
7014
+ */
5213
7015
  static putUserById(options) {
5214
7016
  return (options.client ?? client).put({
5215
7017
  security: [
@@ -5226,6 +7028,10 @@ export class UserService {
5226
7028
  }
5227
7029
  });
5228
7030
  }
7031
+ /**
7032
+ * Lists two-factor providers for a user.
7033
+ * Gets a list of available two-factor authentication providers for the specified user.
7034
+ */
5229
7035
  static getUserById2Fa(options) {
5230
7036
  return (options.client ?? client).get({
5231
7037
  security: [
@@ -5238,6 +7044,10 @@ export class UserService {
5238
7044
  ...options
5239
7045
  });
5240
7046
  }
7047
+ /**
7048
+ * Disables two-factor authentication for a user.
7049
+ * Disables the specified two-factor authentication provider for a user.
7050
+ */
5241
7051
  static deleteUserById2FaByProviderName(options) {
5242
7052
  return (options.client ?? client).delete({
5243
7053
  security: [
@@ -5250,6 +7060,10 @@ export class UserService {
5250
7060
  ...options
5251
7061
  });
5252
7062
  }
7063
+ /**
7064
+ * Calculates start nodes for users.
7065
+ * Calculates the start nodes for the users identified by the provided Ids based on their permissions.
7066
+ */
5253
7067
  static getUserByIdCalculateStartNodes(options) {
5254
7068
  return (options.client ?? client).get({
5255
7069
  security: [
@@ -5262,6 +7076,10 @@ export class UserService {
5262
7076
  ...options
5263
7077
  });
5264
7078
  }
7079
+ /**
7080
+ * Changes a user's password.
7081
+ * Changes the password for the user identified by the provided Id.
7082
+ */
5265
7083
  static postUserByIdChangePassword(options) {
5266
7084
  return (options.client ?? client).post({
5267
7085
  security: [
@@ -5278,6 +7096,10 @@ export class UserService {
5278
7096
  }
5279
7097
  });
5280
7098
  }
7099
+ /**
7100
+ * Gets all client credentials for a user.
7101
+ * Gets a collection of OAuth client credentials for the user identified by the provided Id.
7102
+ */
5281
7103
  static getUserByIdClientCredentials(options) {
5282
7104
  return (options.client ?? client).get({
5283
7105
  security: [
@@ -5290,6 +7112,10 @@ export class UserService {
5290
7112
  ...options
5291
7113
  });
5292
7114
  }
7115
+ /**
7116
+ * Creates client credentials for a user.
7117
+ * Creates OAuth client credentials for the user identified by the provided Id.
7118
+ */
5293
7119
  static postUserByIdClientCredentials(options) {
5294
7120
  return (options.client ?? client).post({
5295
7121
  security: [
@@ -5306,6 +7132,10 @@ export class UserService {
5306
7132
  }
5307
7133
  });
5308
7134
  }
7135
+ /**
7136
+ * Deletes client credentials for a user.
7137
+ * Deletes client credentials identified by the provided client Id for a user.
7138
+ */
5309
7139
  static deleteUserByIdClientCredentialsByClientId(options) {
5310
7140
  return (options.client ?? client).delete({
5311
7141
  security: [
@@ -5318,6 +7148,10 @@ export class UserService {
5318
7148
  ...options
5319
7149
  });
5320
7150
  }
7151
+ /**
7152
+ * Resets a user's password.
7153
+ * Resets the password for the user using the provided reset token.
7154
+ */
5321
7155
  static postUserByIdResetPassword(options) {
5322
7156
  return (options.client ?? client).post({
5323
7157
  security: [
@@ -5330,6 +7164,10 @@ export class UserService {
5330
7164
  ...options
5331
7165
  });
5332
7166
  }
7167
+ /**
7168
+ * Clears a user's avatar.
7169
+ * Removes the avatar image for the user identified by the provided Id.
7170
+ */
5333
7171
  static deleteUserAvatarById(options) {
5334
7172
  return (options.client ?? client).delete({
5335
7173
  security: [
@@ -5342,6 +7180,10 @@ export class UserService {
5342
7180
  ...options
5343
7181
  });
5344
7182
  }
7183
+ /**
7184
+ * Sets a user's avatar.
7185
+ * Sets or updates the avatar image for the user identified by the provided Id.
7186
+ */
5345
7187
  static postUserAvatarById(options) {
5346
7188
  return (options.client ?? client).post({
5347
7189
  security: [
@@ -5358,6 +7200,10 @@ export class UserService {
5358
7200
  }
5359
7201
  });
5360
7202
  }
7203
+ /**
7204
+ * Gets the user configuration.
7205
+ * Gets the configuration settings for users.
7206
+ */
5361
7207
  static getUserConfiguration(options) {
5362
7208
  return (options?.client ?? client).get({
5363
7209
  security: [
@@ -5370,6 +7216,10 @@ export class UserService {
5370
7216
  ...options
5371
7217
  });
5372
7218
  }
7219
+ /**
7220
+ * Gets the current user.
7221
+ * Gets the currently authenticated back office user's information and permissions.
7222
+ */
5373
7223
  static getUserCurrent(options) {
5374
7224
  return (options?.client ?? client).get({
5375
7225
  security: [
@@ -5382,6 +7232,10 @@ export class UserService {
5382
7232
  ...options
5383
7233
  });
5384
7234
  }
7235
+ /**
7236
+ * Lists two-factor providers for the current user.
7237
+ * Gets a list of available two-factor authentication providers for the current user.
7238
+ */
5385
7239
  static getUserCurrent2Fa(options) {
5386
7240
  return (options?.client ?? client).get({
5387
7241
  security: [
@@ -5394,6 +7248,10 @@ export class UserService {
5394
7248
  ...options
5395
7249
  });
5396
7250
  }
7251
+ /**
7252
+ * Disables two-factor authentication for the current user.
7253
+ * Disables the specified two-factor authentication provider for the currently authenticated user.
7254
+ */
5397
7255
  static deleteUserCurrent2FaByProviderName(options) {
5398
7256
  return (options.client ?? client).delete({
5399
7257
  security: [
@@ -5406,6 +7264,10 @@ export class UserService {
5406
7264
  ...options
5407
7265
  });
5408
7266
  }
7267
+ /**
7268
+ * Gets two-factor setup information.
7269
+ * Gets the setup information for configuring a two-factor authentication provider.
7270
+ */
5409
7271
  static getUserCurrent2FaByProviderName(options) {
5410
7272
  return (options.client ?? client).get({
5411
7273
  security: [
@@ -5418,6 +7280,10 @@ export class UserService {
5418
7280
  ...options
5419
7281
  });
5420
7282
  }
7283
+ /**
7284
+ * Enables two-factor authentication for the current user.
7285
+ * Enables the specified two-factor authentication provider for the currently authenticated user.
7286
+ */
5421
7287
  static postUserCurrent2FaByProviderName(options) {
5422
7288
  return (options.client ?? client).post({
5423
7289
  security: [
@@ -5434,6 +7300,10 @@ export class UserService {
5434
7300
  }
5435
7301
  });
5436
7302
  }
7303
+ /**
7304
+ * Sets the current user's avatar.
7305
+ * Sets or updates the avatar image for the currently authenticated user.
7306
+ */
5437
7307
  static postUserCurrentAvatar(options) {
5438
7308
  return (options?.client ?? client).post({
5439
7309
  security: [
@@ -5450,6 +7320,10 @@ export class UserService {
5450
7320
  }
5451
7321
  });
5452
7322
  }
7323
+ /**
7324
+ * Changes the current user's password.
7325
+ * Changes the password for the currently authenticated user.
7326
+ */
5453
7327
  static postUserCurrentChangePassword(options) {
5454
7328
  return (options?.client ?? client).post({
5455
7329
  security: [
@@ -5466,6 +7340,10 @@ export class UserService {
5466
7340
  }
5467
7341
  });
5468
7342
  }
7343
+ /**
7344
+ * Gets the current user's configuration.
7345
+ * Gets the configuration settings for the current user.
7346
+ */
5469
7347
  static getUserCurrentConfiguration(options) {
5470
7348
  return (options?.client ?? client).get({
5471
7349
  security: [
@@ -5478,6 +7356,10 @@ export class UserService {
5478
7356
  ...options
5479
7357
  });
5480
7358
  }
7359
+ /**
7360
+ * Lists external login providers.
7361
+ * Gets a list of configured external login providers for authentication.
7362
+ */
5481
7363
  static getUserCurrentLoginProviders(options) {
5482
7364
  return (options?.client ?? client).get({
5483
7365
  security: [
@@ -5490,6 +7372,10 @@ export class UserService {
5490
7372
  ...options
5491
7373
  });
5492
7374
  }
7375
+ /**
7376
+ * Gets permissions for the current user.
7377
+ * Gets the permissions for the currently authenticated user.
7378
+ */
5493
7379
  static getUserCurrentPermissions(options) {
5494
7380
  return (options?.client ?? client).get({
5495
7381
  security: [
@@ -5502,6 +7388,10 @@ export class UserService {
5502
7388
  ...options
5503
7389
  });
5504
7390
  }
7391
+ /**
7392
+ * Gets document permissions for the current user.
7393
+ * Gets the document permissions for the currently authenticated user.
7394
+ */
5505
7395
  static getUserCurrentPermissionsDocument(options) {
5506
7396
  return (options?.client ?? client).get({
5507
7397
  security: [
@@ -5514,6 +7404,10 @@ export class UserService {
5514
7404
  ...options
5515
7405
  });
5516
7406
  }
7407
+ /**
7408
+ * Gets media permissions for the current user.
7409
+ * Gets the media permissions for the currently authenticated user.
7410
+ */
5517
7411
  static getUserCurrentPermissionsMedia(options) {
5518
7412
  return (options?.client ?? client).get({
5519
7413
  security: [
@@ -5526,6 +7420,10 @@ export class UserService {
5526
7420
  ...options
5527
7421
  });
5528
7422
  }
7423
+ /**
7424
+ * Disables users.
7425
+ * Disables the user accounts identified by the provided Ids.
7426
+ */
5529
7427
  static postUserDisable(options) {
5530
7428
  return (options?.client ?? client).post({
5531
7429
  security: [
@@ -5542,6 +7440,10 @@ export class UserService {
5542
7440
  }
5543
7441
  });
5544
7442
  }
7443
+ /**
7444
+ * Enables users.
7445
+ * Enables the user accounts identified by the provided Ids.
7446
+ */
5545
7447
  static postUserEnable(options) {
5546
7448
  return (options?.client ?? client).post({
5547
7449
  security: [
@@ -5558,6 +7460,10 @@ export class UserService {
5558
7460
  }
5559
7461
  });
5560
7462
  }
7463
+ /**
7464
+ * Invites new users.
7465
+ * Sends invitation emails to create new user accounts with the specified details.
7466
+ */
5561
7467
  static postUserInvite(options) {
5562
7468
  return (options?.client ?? client).post({
5563
7469
  security: [
@@ -5574,6 +7480,10 @@ export class UserService {
5574
7480
  }
5575
7481
  });
5576
7482
  }
7483
+ /**
7484
+ * Creates an initial password for a user.
7485
+ * Creates an initial password for a newly invited user using the provided token.
7486
+ */
5577
7487
  static postUserInviteCreatePassword(options) {
5578
7488
  return (options?.client ?? client).post({
5579
7489
  url: '/umbraco/management/api/v1/user/invite/create-password',
@@ -5584,6 +7494,10 @@ export class UserService {
5584
7494
  }
5585
7495
  });
5586
7496
  }
7497
+ /**
7498
+ * Resends a user invitation.
7499
+ * Resends the invitation email for the users identified by the provided Ids.
7500
+ */
5587
7501
  static postUserInviteResend(options) {
5588
7502
  return (options?.client ?? client).post({
5589
7503
  security: [
@@ -5600,6 +7514,10 @@ export class UserService {
5600
7514
  }
5601
7515
  });
5602
7516
  }
7517
+ /**
7518
+ * Verifies a user invitation.
7519
+ * Verifies that the invitation token is valid for creating a new user account.
7520
+ */
5603
7521
  static postUserInviteVerify(options) {
5604
7522
  return (options?.client ?? client).post({
5605
7523
  url: '/umbraco/management/api/v1/user/invite/verify',
@@ -5610,6 +7528,10 @@ export class UserService {
5610
7528
  }
5611
7529
  });
5612
7530
  }
7531
+ /**
7532
+ * Updates user group assignments.
7533
+ * Updates the user group assignments for the specified users.
7534
+ */
5613
7535
  static postUserSetUserGroups(options) {
5614
7536
  return (options?.client ?? client).post({
5615
7537
  security: [
@@ -5626,6 +7548,10 @@ export class UserService {
5626
7548
  }
5627
7549
  });
5628
7550
  }
7551
+ /**
7552
+ * Unlocks users.
7553
+ * Unlocks the user accounts identified by the provided Ids.
7554
+ */
5629
7555
  static postUserUnlock(options) {
5630
7556
  return (options?.client ?? client).post({
5631
7557
  security: [
@@ -5644,6 +7570,10 @@ export class UserService {
5644
7570
  }
5645
7571
  }
5646
7572
  export class WebhookService {
7573
+ /**
7574
+ * Gets a collection of webhook items.
7575
+ * Gets a collection of webhook items identified by the provided Ids.
7576
+ */
5647
7577
  static getItemWebhook(options) {
5648
7578
  return (options?.client ?? client).get({
5649
7579
  security: [
@@ -5656,6 +7586,10 @@ export class WebhookService {
5656
7586
  ...options
5657
7587
  });
5658
7588
  }
7589
+ /**
7590
+ * Gets a paginated collection of webhooks.
7591
+ * Gets a paginated collection of all webhooks.
7592
+ */
5659
7593
  static getWebhook(options) {
5660
7594
  return (options?.client ?? client).get({
5661
7595
  security: [
@@ -5668,6 +7602,10 @@ export class WebhookService {
5668
7602
  ...options
5669
7603
  });
5670
7604
  }
7605
+ /**
7606
+ * Creates a new webhook.
7607
+ * Creates a new webhook with the configuration specified in the request model.
7608
+ */
5671
7609
  static postWebhook(options) {
5672
7610
  return (options?.client ?? client).post({
5673
7611
  security: [
@@ -5684,6 +7622,10 @@ export class WebhookService {
5684
7622
  }
5685
7623
  });
5686
7624
  }
7625
+ /**
7626
+ * Deletes a webhook.
7627
+ * Deletes a webhook identified by the provided Id.
7628
+ */
5687
7629
  static deleteWebhookById(options) {
5688
7630
  return (options.client ?? client).delete({
5689
7631
  security: [
@@ -5696,6 +7638,10 @@ export class WebhookService {
5696
7638
  ...options
5697
7639
  });
5698
7640
  }
7641
+ /**
7642
+ * Gets a webhook.
7643
+ * Gets a webhook identified by the provided Id.
7644
+ */
5699
7645
  static getWebhookById(options) {
5700
7646
  return (options.client ?? client).get({
5701
7647
  security: [
@@ -5708,6 +7654,10 @@ export class WebhookService {
5708
7654
  ...options
5709
7655
  });
5710
7656
  }
7657
+ /**
7658
+ * Updates a webhook.
7659
+ * Updates a webhook identified by the provided Id with the details from the request model.
7660
+ */
5711
7661
  static putWebhookById(options) {
5712
7662
  return (options.client ?? client).put({
5713
7663
  security: [
@@ -5724,6 +7674,10 @@ export class WebhookService {
5724
7674
  }
5725
7675
  });
5726
7676
  }
7677
+ /**
7678
+ * Gets a paginated collection of webhook logs for a specific webhook.
7679
+ * Gets a paginated collection of webhook logs for the webhook identified by the provided Id.
7680
+ */
5727
7681
  static getWebhookByIdLogs(options) {
5728
7682
  return (options.client ?? client).get({
5729
7683
  security: [
@@ -5736,6 +7690,10 @@ export class WebhookService {
5736
7690
  ...options
5737
7691
  });
5738
7692
  }
7693
+ /**
7694
+ * Gets a paginated collection of webhook events.
7695
+ * Gets a paginated collection of available webhook events that can be subscribed to.
7696
+ */
5739
7697
  static getWebhookEvents(options) {
5740
7698
  return (options?.client ?? client).get({
5741
7699
  security: [
@@ -5748,6 +7706,10 @@ export class WebhookService {
5748
7706
  ...options
5749
7707
  });
5750
7708
  }
7709
+ /**
7710
+ * Gets a paginated collection of webhook logs.
7711
+ * Gets a paginated collection of webhook logs for all webhooks.
7712
+ */
5751
7713
  static getWebhookLogs(options) {
5752
7714
  return (options?.client ?? client).get({
5753
7715
  security: [