webflow-api 3.0.0 → 3.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (629) hide show
  1. package/.mock/definition/__package__.yml +613 -214
  2. package/.mock/definition/accessGroups.yml +3 -3
  3. package/.mock/definition/assets.yml +10 -9
  4. package/.mock/definition/collections/fields.yml +16 -14
  5. package/.mock/definition/collections/items.yml +180 -63
  6. package/.mock/definition/collections.yml +6 -5
  7. package/.mock/definition/components.yml +486 -0
  8. package/.mock/definition/ecommerce.yml +2 -2
  9. package/.mock/definition/forms.yml +7 -6
  10. package/.mock/definition/inventory.yml +8 -6
  11. package/.mock/definition/orders.yml +11 -9
  12. package/.mock/definition/pages/scripts.yml +18 -17
  13. package/.mock/definition/pages.yml +91 -64
  14. package/.mock/definition/products.yml +9 -9
  15. package/.mock/definition/scripts.yml +12 -16
  16. package/.mock/definition/sites/activityLogs.yml +2 -2
  17. package/.mock/definition/sites/plans.yml +40 -0
  18. package/.mock/definition/sites/redirects.yml +190 -0
  19. package/.mock/definition/sites/scripts.yml +16 -21
  20. package/.mock/definition/sites.yml +202 -6
  21. package/.mock/definition/token.yml +5 -4
  22. package/.mock/definition/users.yml +8 -8
  23. package/.mock/definition/webhooks.yml +9 -9
  24. package/.mock/fern.config.json +1 -1
  25. package/Client.d.ts +3 -0
  26. package/Client.js +25 -20
  27. package/MIGRATION.md +32 -15
  28. package/api/errors/index.d.ts +1 -1
  29. package/api/errors/index.js +1 -1
  30. package/api/resources/accessGroups/client/Client.js +1 -1
  31. package/api/resources/assets/client/Client.d.ts +5 -0
  32. package/api/resources/assets/client/Client.js +13 -8
  33. package/api/resources/collections/client/Client.d.ts +3 -0
  34. package/api/resources/collections/client/Client.js +7 -4
  35. package/api/resources/collections/resources/fields/client/Client.js +3 -3
  36. package/api/resources/collections/resources/fields/types/FieldCreateType.d.ts +11 -10
  37. package/api/resources/collections/resources/fields/types/FieldCreateType.js +10 -9
  38. package/api/resources/collections/resources/items/client/Client.d.ts +13 -20
  39. package/api/resources/collections/resources/items/client/Client.js +31 -36
  40. package/api/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.d.ts +1 -1
  41. package/api/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldData.d.ts +4 -1
  42. package/api/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldDataItem.d.ts +3 -0
  43. package/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts +1 -1
  44. package/api/resources/collections/resources/items/types/ItemsCreateItemRequest.d.ts +1 -1
  45. package/api/resources/collections/resources/items/types/{ItemsCreateItemRequestItems.d.ts → MultipleItems.d.ts} +2 -2
  46. package/{dist/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequestItems.d.ts → api/resources/collections/resources/items/types/MultipleLiveItems.d.ts} +1 -1
  47. package/api/resources/collections/resources/items/types/{CreateBulkCollectionItemRequestBodyFieldDataName.d.ts → SingleCmsItem.d.ts} +1 -1
  48. package/api/resources/collections/resources/items/types/index.d.ts +3 -3
  49. package/api/resources/collections/resources/items/types/index.js +3 -3
  50. package/api/resources/components/client/Client.d.ts +176 -0
  51. package/api/resources/components/client/Client.js +670 -0
  52. package/api/resources/components/client/index.d.ts +1 -0
  53. package/api/resources/components/client/index.js +17 -0
  54. package/api/resources/components/client/requests/ComponentDomWrite.d.ts +34 -0
  55. package/api/resources/components/client/requests/ComponentPropertiesWrite.d.ts +25 -0
  56. package/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +28 -0
  57. package/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +23 -0
  58. package/api/resources/components/client/requests/ComponentsListRequest.d.ts +17 -0
  59. package/api/resources/components/client/requests/index.d.ts +5 -0
  60. package/api/resources/components/client/requests/index.js +2 -0
  61. package/api/resources/components/index.d.ts +2 -0
  62. package/api/resources/components/index.js +18 -0
  63. package/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +5 -0
  64. package/api/resources/components/types/ComponentPropertiesWritePropertiesItem.d.ts +16 -0
  65. package/api/resources/components/types/ComponentsUpdateContentResponse.d.ts +7 -0
  66. package/api/resources/components/types/ComponentsUpdatePropertiesResponse.d.ts +7 -0
  67. package/api/resources/components/types/index.d.ts +4 -0
  68. package/api/resources/components/types/index.js +20 -0
  69. package/api/resources/ecommerce/client/Client.js +1 -1
  70. package/api/resources/forms/client/Client.d.ts +3 -0
  71. package/api/resources/forms/client/Client.js +8 -5
  72. package/api/resources/index.d.ts +3 -0
  73. package/api/resources/index.js +4 -1
  74. package/api/resources/inventory/client/Client.d.ts +3 -1
  75. package/api/resources/inventory/client/Client.js +5 -3
  76. package/api/resources/orders/client/Client.d.ts +3 -0
  77. package/api/resources/orders/client/Client.js +9 -6
  78. package/api/resources/pages/client/Client.d.ts +26 -10
  79. package/api/resources/pages/client/Client.js +32 -18
  80. package/api/resources/pages/client/requests/PageDomWrite.d.ts +34 -0
  81. package/api/resources/pages/client/requests/PageDomWrite.js +5 -0
  82. package/api/resources/pages/client/requests/index.d.ts +1 -1
  83. package/api/resources/pages/resources/scripts/client/Client.d.ts +6 -3
  84. package/api/resources/pages/resources/scripts/client/Client.js +11 -6
  85. package/api/resources/pages/types/PageDomWriteNodesItem.d.ts +5 -0
  86. package/api/resources/pages/types/PageDomWriteNodesItem.js +5 -0
  87. package/api/resources/pages/types/index.d.ts +1 -1
  88. package/api/resources/pages/types/index.js +1 -1
  89. package/api/resources/products/client/Client.d.ts +5 -6
  90. package/api/resources/products/client/Client.js +11 -12
  91. package/api/resources/scripts/client/Client.d.ts +3 -3
  92. package/api/resources/scripts/client/Client.js +6 -6
  93. package/api/resources/sites/client/Client.d.ts +70 -0
  94. package/api/resources/sites/client/Client.js +330 -9
  95. package/api/resources/sites/client/requests/SitesCreateRequest.d.ts +17 -0
  96. package/api/resources/sites/client/requests/SitesCreateRequest.js +5 -0
  97. package/api/resources/sites/client/requests/SitesUpdateRequest.d.ts +13 -0
  98. package/api/resources/sites/client/requests/SitesUpdateRequest.js +5 -0
  99. package/api/resources/sites/client/requests/index.d.ts +2 -0
  100. package/api/resources/sites/resources/activityLogs/client/Client.d.ts +1 -1
  101. package/api/resources/sites/resources/activityLogs/client/Client.js +2 -2
  102. package/api/resources/sites/resources/index.d.ts +2 -0
  103. package/api/resources/sites/resources/index.js +3 -1
  104. package/api/resources/sites/resources/plans/client/Client.d.ts +45 -0
  105. package/api/resources/sites/resources/plans/client/Client.js +155 -0
  106. package/api/resources/sites/resources/plans/client/index.d.ts +1 -0
  107. package/api/resources/sites/resources/plans/client/index.js +2 -0
  108. package/api/resources/sites/resources/plans/index.d.ts +1 -0
  109. package/api/resources/sites/resources/plans/index.js +17 -0
  110. package/api/resources/sites/resources/redirects/client/Client.d.ts +115 -0
  111. package/api/resources/sites/resources/redirects/client/Client.js +472 -0
  112. package/api/resources/sites/resources/redirects/client/index.d.ts +1 -0
  113. package/api/resources/sites/resources/redirects/client/index.js +2 -0
  114. package/api/resources/sites/resources/redirects/index.d.ts +1 -0
  115. package/api/resources/sites/resources/redirects/index.js +17 -0
  116. package/api/resources/sites/resources/scripts/client/Client.d.ts +4 -4
  117. package/api/resources/sites/resources/scripts/client/Client.js +8 -8
  118. package/api/resources/token/client/Client.d.ts +2 -1
  119. package/api/resources/token/client/Client.js +4 -3
  120. package/api/resources/users/client/Client.d.ts +1 -1
  121. package/api/resources/users/client/Client.js +6 -6
  122. package/api/resources/webhooks/client/Client.d.ts +4 -1
  123. package/api/resources/webhooks/client/Client.js +8 -5
  124. package/api/types/CollectionItem.d.ts +6 -2
  125. package/api/types/CollectionItemFieldData.d.ts +2 -2
  126. package/api/types/CollectionItemPatchSingle.d.ts +24 -0
  127. package/api/types/CollectionItemPatchSingle.js +5 -0
  128. package/api/types/CollectionItemPatchSingleFieldData.d.ts +11 -0
  129. package/api/types/CollectionItemPatchSingleFieldData.js +5 -0
  130. package/api/types/CollectionItemPostSingle.d.ts +28 -0
  131. package/api/types/CollectionItemPostSingle.js +5 -0
  132. package/api/types/CollectionItemPostSingleFieldData.d.ts +11 -0
  133. package/api/types/CollectionItemPostSingleFieldData.js +5 -0
  134. package/api/types/Component.d.ts +18 -0
  135. package/api/types/Component.js +5 -0
  136. package/api/types/ComponentDom.d.ts +13 -0
  137. package/api/types/ComponentDom.js +5 -0
  138. package/api/types/ComponentInstanceNodePropertyOverridesWrite.d.ts +13 -0
  139. package/api/types/ComponentInstanceNodePropertyOverridesWrite.js +5 -0
  140. package/api/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.d.ts +14 -0
  141. package/api/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +5 -0
  142. package/api/types/ComponentList.d.ts +11 -0
  143. package/api/types/ComponentList.js +5 -0
  144. package/api/types/ComponentNode.d.ts +15 -0
  145. package/api/types/ComponentNode.js +5 -0
  146. package/api/types/ComponentProperties.d.ts +13 -0
  147. package/api/types/ComponentProperties.js +5 -0
  148. package/api/types/ComponentProperty.d.ts +17 -0
  149. package/api/types/ComponentProperty.js +5 -0
  150. package/api/types/ComponentPropertyType.d.ts +12 -0
  151. package/api/types/ComponentPropertyType.js +11 -0
  152. package/api/types/Dom.d.ts +1 -1
  153. package/api/types/Domain.d.ts +2 -0
  154. package/api/types/Error_.d.ts +1 -1
  155. package/api/types/FieldType.d.ts +10 -10
  156. package/api/types/FieldType.js +9 -9
  157. package/api/types/ImageNode.d.ts +6 -2
  158. package/api/types/ImageNodeImage.d.ts +7 -0
  159. package/api/types/ImageNodeImage.js +5 -0
  160. package/api/types/Node.d.ts +11 -8
  161. package/api/types/{ErrorDetailsItem.d.ts → NotEnterprisePlanWorkspace.d.ts} +1 -1
  162. package/api/types/NotEnterprisePlanWorkspace.js +5 -0
  163. package/api/types/ProductFieldData.d.ts +1 -1
  164. package/api/types/Redirect.d.ts +14 -0
  165. package/api/types/Redirect.js +5 -0
  166. package/api/types/Redirects.d.ts +12 -0
  167. package/api/types/Redirects.js +5 -0
  168. package/api/types/ScriptApply.d.ts +1 -1
  169. package/api/types/SitePlan.d.ts +12 -0
  170. package/api/types/SitePlan.js +5 -0
  171. package/api/types/SitePlanId.d.ts +21 -0
  172. package/api/types/SitePlanId.js +20 -0
  173. package/api/types/SitePlanName.d.ts +15 -0
  174. package/api/types/SitePlanName.js +14 -0
  175. package/api/types/Text.d.ts +9 -0
  176. package/api/types/Text.js +5 -0
  177. package/api/types/TextNode.d.ts +7 -3
  178. package/api/types/TextNodeText.d.ts +9 -0
  179. package/api/types/TextNodeText.js +5 -0
  180. package/{dist/api/resources/pages/types/DomWriteNodesItem.d.ts → api/types/TextNodeWrite.d.ts} +4 -1
  181. package/api/types/TextNodeWrite.js +5 -0
  182. package/api/types/TriggerType.d.ts +15 -15
  183. package/api/types/UserAccessGroupsItem.d.ts +2 -3
  184. package/api/types/UserAccessGroupsItemType.d.ts +2 -3
  185. package/api/types/index.d.ts +27 -6
  186. package/api/types/index.js +27 -6
  187. package/dist/Client.d.ts +3 -0
  188. package/dist/Client.js +25 -20
  189. package/dist/api/errors/index.d.ts +1 -1
  190. package/dist/api/errors/index.js +1 -1
  191. package/dist/api/resources/accessGroups/client/Client.js +1 -1
  192. package/dist/api/resources/assets/client/Client.d.ts +5 -0
  193. package/dist/api/resources/assets/client/Client.js +13 -8
  194. package/dist/api/resources/collections/client/Client.d.ts +3 -0
  195. package/dist/api/resources/collections/client/Client.js +7 -4
  196. package/dist/api/resources/collections/resources/fields/client/Client.js +3 -3
  197. package/dist/api/resources/collections/resources/fields/types/FieldCreateType.d.ts +11 -10
  198. package/dist/api/resources/collections/resources/fields/types/FieldCreateType.js +10 -9
  199. package/dist/api/resources/collections/resources/items/client/Client.d.ts +13 -20
  200. package/dist/api/resources/collections/resources/items/client/Client.js +31 -36
  201. package/dist/api/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.d.ts +1 -1
  202. package/dist/api/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldData.d.ts +4 -1
  203. package/dist/api/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldDataItem.d.ts +3 -0
  204. package/dist/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts +1 -1
  205. package/dist/api/resources/collections/resources/items/types/ItemsCreateItemRequest.d.ts +1 -1
  206. package/dist/api/resources/collections/resources/items/types/{ItemsCreateItemRequestItems.d.ts → MultipleItems.d.ts} +2 -2
  207. package/dist/api/resources/collections/resources/items/types/MultipleItems.js +5 -0
  208. package/{api/resources/collections/resources/items/types/ItemsCreateItemLiveRequestItems.d.ts → dist/api/resources/collections/resources/items/types/MultipleLiveItems.d.ts} +1 -1
  209. package/dist/api/resources/collections/resources/items/types/MultipleLiveItems.js +5 -0
  210. package/dist/api/resources/collections/resources/items/types/{CreateBulkCollectionItemRequestBodyFieldDataName.d.ts → SingleCmsItem.d.ts} +1 -1
  211. package/dist/api/resources/collections/resources/items/types/SingleCmsItem.js +5 -0
  212. package/dist/api/resources/collections/resources/items/types/index.d.ts +3 -3
  213. package/dist/api/resources/collections/resources/items/types/index.js +3 -3
  214. package/dist/api/resources/components/client/Client.d.ts +176 -0
  215. package/dist/api/resources/components/client/Client.js +670 -0
  216. package/dist/api/resources/components/client/index.d.ts +1 -0
  217. package/dist/api/resources/components/client/index.js +17 -0
  218. package/dist/api/resources/components/client/requests/ComponentDomWrite.d.ts +34 -0
  219. package/dist/api/resources/components/client/requests/ComponentDomWrite.js +5 -0
  220. package/dist/api/resources/components/client/requests/ComponentPropertiesWrite.d.ts +25 -0
  221. package/dist/api/resources/components/client/requests/ComponentPropertiesWrite.js +5 -0
  222. package/dist/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +28 -0
  223. package/dist/api/resources/components/client/requests/ComponentsGetContentRequest.js +5 -0
  224. package/dist/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +23 -0
  225. package/dist/api/resources/components/client/requests/ComponentsGetPropertiesRequest.js +5 -0
  226. package/dist/api/resources/components/client/requests/ComponentsListRequest.d.ts +17 -0
  227. package/dist/api/resources/components/client/requests/ComponentsListRequest.js +5 -0
  228. package/dist/api/resources/components/client/requests/index.d.ts +5 -0
  229. package/dist/api/resources/components/client/requests/index.js +2 -0
  230. package/dist/api/resources/components/index.d.ts +2 -0
  231. package/dist/api/resources/components/index.js +18 -0
  232. package/dist/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +5 -0
  233. package/dist/api/resources/components/types/ComponentDomWriteNodesItem.js +5 -0
  234. package/dist/api/resources/components/types/ComponentPropertiesWritePropertiesItem.d.ts +16 -0
  235. package/dist/api/resources/components/types/ComponentPropertiesWritePropertiesItem.js +5 -0
  236. package/dist/api/resources/components/types/ComponentsUpdateContentResponse.d.ts +7 -0
  237. package/dist/api/resources/components/types/ComponentsUpdateContentResponse.js +5 -0
  238. package/dist/api/resources/components/types/ComponentsUpdatePropertiesResponse.d.ts +7 -0
  239. package/dist/api/resources/components/types/ComponentsUpdatePropertiesResponse.js +5 -0
  240. package/dist/api/resources/components/types/index.d.ts +4 -0
  241. package/dist/api/resources/components/types/index.js +20 -0
  242. package/dist/api/resources/ecommerce/client/Client.js +1 -1
  243. package/dist/api/resources/forms/client/Client.d.ts +3 -0
  244. package/dist/api/resources/forms/client/Client.js +8 -5
  245. package/dist/api/resources/index.d.ts +3 -0
  246. package/dist/api/resources/index.js +4 -1
  247. package/dist/api/resources/inventory/client/Client.d.ts +3 -1
  248. package/dist/api/resources/inventory/client/Client.js +5 -3
  249. package/dist/api/resources/orders/client/Client.d.ts +3 -0
  250. package/dist/api/resources/orders/client/Client.js +9 -6
  251. package/dist/api/resources/pages/client/Client.d.ts +26 -10
  252. package/dist/api/resources/pages/client/Client.js +32 -18
  253. package/dist/api/resources/pages/client/requests/PageDomWrite.d.ts +34 -0
  254. package/dist/api/resources/pages/client/requests/PageDomWrite.js +5 -0
  255. package/dist/api/resources/pages/client/requests/index.d.ts +1 -1
  256. package/dist/api/resources/pages/resources/scripts/client/Client.d.ts +6 -3
  257. package/dist/api/resources/pages/resources/scripts/client/Client.js +11 -6
  258. package/dist/api/resources/pages/types/PageDomWriteNodesItem.d.ts +5 -0
  259. package/dist/api/resources/pages/types/PageDomWriteNodesItem.js +5 -0
  260. package/dist/api/resources/pages/types/index.d.ts +1 -1
  261. package/dist/api/resources/pages/types/index.js +1 -1
  262. package/dist/api/resources/products/client/Client.d.ts +5 -6
  263. package/dist/api/resources/products/client/Client.js +11 -12
  264. package/dist/api/resources/scripts/client/Client.d.ts +3 -3
  265. package/dist/api/resources/scripts/client/Client.js +6 -6
  266. package/dist/api/resources/sites/client/Client.d.ts +70 -0
  267. package/dist/api/resources/sites/client/Client.js +330 -9
  268. package/dist/api/resources/sites/client/requests/SitesCreateRequest.d.ts +17 -0
  269. package/dist/api/resources/sites/client/requests/SitesCreateRequest.js +5 -0
  270. package/dist/api/resources/sites/client/requests/SitesUpdateRequest.d.ts +13 -0
  271. package/dist/api/resources/sites/client/requests/SitesUpdateRequest.js +5 -0
  272. package/dist/api/resources/sites/client/requests/index.d.ts +2 -0
  273. package/dist/api/resources/sites/resources/activityLogs/client/Client.d.ts +1 -1
  274. package/dist/api/resources/sites/resources/activityLogs/client/Client.js +2 -2
  275. package/dist/api/resources/sites/resources/index.d.ts +2 -0
  276. package/dist/api/resources/sites/resources/index.js +3 -1
  277. package/dist/api/resources/sites/resources/plans/client/Client.d.ts +45 -0
  278. package/dist/api/resources/sites/resources/plans/client/Client.js +155 -0
  279. package/dist/api/resources/sites/resources/plans/client/index.d.ts +1 -0
  280. package/dist/api/resources/sites/resources/plans/client/index.js +2 -0
  281. package/dist/api/resources/sites/resources/plans/index.d.ts +1 -0
  282. package/dist/api/resources/sites/resources/plans/index.js +17 -0
  283. package/dist/api/resources/sites/resources/redirects/client/Client.d.ts +115 -0
  284. package/dist/api/resources/sites/resources/redirects/client/Client.js +472 -0
  285. package/dist/api/resources/sites/resources/redirects/client/index.d.ts +1 -0
  286. package/dist/api/resources/sites/resources/redirects/client/index.js +2 -0
  287. package/dist/api/resources/sites/resources/redirects/index.d.ts +1 -0
  288. package/dist/api/resources/sites/resources/redirects/index.js +17 -0
  289. package/dist/api/resources/sites/resources/scripts/client/Client.d.ts +4 -4
  290. package/dist/api/resources/sites/resources/scripts/client/Client.js +8 -8
  291. package/dist/api/resources/token/client/Client.d.ts +2 -1
  292. package/dist/api/resources/token/client/Client.js +4 -3
  293. package/dist/api/resources/users/client/Client.d.ts +1 -1
  294. package/dist/api/resources/users/client/Client.js +6 -6
  295. package/dist/api/resources/webhooks/client/Client.d.ts +4 -1
  296. package/dist/api/resources/webhooks/client/Client.js +8 -5
  297. package/dist/api/types/CollectionItem.d.ts +6 -2
  298. package/dist/api/types/CollectionItemFieldData.d.ts +2 -2
  299. package/dist/api/types/CollectionItemPatchSingle.d.ts +24 -0
  300. package/dist/api/types/CollectionItemPatchSingle.js +5 -0
  301. package/dist/api/types/CollectionItemPatchSingleFieldData.d.ts +11 -0
  302. package/dist/api/types/CollectionItemPatchSingleFieldData.js +5 -0
  303. package/dist/api/types/CollectionItemPostSingle.d.ts +28 -0
  304. package/dist/api/types/CollectionItemPostSingle.js +5 -0
  305. package/dist/api/types/CollectionItemPostSingleFieldData.d.ts +11 -0
  306. package/dist/api/types/CollectionItemPostSingleFieldData.js +5 -0
  307. package/dist/api/types/Component.d.ts +18 -0
  308. package/dist/api/types/Component.js +5 -0
  309. package/dist/api/types/ComponentDom.d.ts +13 -0
  310. package/dist/api/types/ComponentDom.js +5 -0
  311. package/dist/api/types/ComponentInstanceNodePropertyOverridesWrite.d.ts +13 -0
  312. package/dist/api/types/ComponentInstanceNodePropertyOverridesWrite.js +5 -0
  313. package/dist/api/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.d.ts +14 -0
  314. package/dist/api/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +5 -0
  315. package/dist/api/types/ComponentList.d.ts +11 -0
  316. package/dist/api/types/ComponentList.js +5 -0
  317. package/dist/api/types/ComponentNode.d.ts +15 -0
  318. package/dist/api/types/ComponentNode.js +5 -0
  319. package/dist/api/types/ComponentProperties.d.ts +13 -0
  320. package/dist/api/types/ComponentProperties.js +5 -0
  321. package/dist/api/types/ComponentProperty.d.ts +17 -0
  322. package/dist/api/types/ComponentProperty.js +5 -0
  323. package/dist/api/types/ComponentPropertyType.d.ts +12 -0
  324. package/dist/api/types/ComponentPropertyType.js +11 -0
  325. package/dist/api/types/Dom.d.ts +1 -1
  326. package/dist/api/types/Domain.d.ts +2 -0
  327. package/dist/api/types/Error_.d.ts +1 -1
  328. package/dist/api/types/FieldType.d.ts +10 -10
  329. package/dist/api/types/FieldType.js +9 -9
  330. package/dist/api/types/ImageNode.d.ts +6 -2
  331. package/dist/api/types/ImageNodeImage.d.ts +7 -0
  332. package/dist/api/types/ImageNodeImage.js +5 -0
  333. package/dist/api/types/Node.d.ts +11 -8
  334. package/dist/api/types/{ErrorDetailsItem.d.ts → NotEnterprisePlanWorkspace.d.ts} +1 -1
  335. package/dist/api/types/NotEnterprisePlanWorkspace.js +5 -0
  336. package/dist/api/types/ProductFieldData.d.ts +1 -1
  337. package/dist/api/types/Redirect.d.ts +14 -0
  338. package/dist/api/types/Redirect.js +5 -0
  339. package/dist/api/types/Redirects.d.ts +12 -0
  340. package/dist/api/types/Redirects.js +5 -0
  341. package/dist/api/types/ScriptApply.d.ts +1 -1
  342. package/dist/api/types/SitePlan.d.ts +12 -0
  343. package/dist/api/types/SitePlan.js +5 -0
  344. package/dist/api/types/SitePlanId.d.ts +21 -0
  345. package/dist/api/types/SitePlanId.js +20 -0
  346. package/dist/api/types/SitePlanName.d.ts +15 -0
  347. package/dist/api/types/SitePlanName.js +14 -0
  348. package/dist/api/types/Text.d.ts +9 -0
  349. package/dist/api/types/Text.js +5 -0
  350. package/dist/api/types/TextNode.d.ts +7 -3
  351. package/dist/api/types/TextNodeText.d.ts +9 -0
  352. package/dist/api/types/TextNodeText.js +5 -0
  353. package/{api/resources/pages/types/DomWriteNodesItem.d.ts → dist/api/types/TextNodeWrite.d.ts} +4 -1
  354. package/dist/api/types/TextNodeWrite.js +5 -0
  355. package/dist/api/types/TriggerType.d.ts +15 -15
  356. package/dist/api/types/UserAccessGroupsItem.d.ts +2 -3
  357. package/dist/api/types/UserAccessGroupsItemType.d.ts +2 -3
  358. package/dist/api/types/index.d.ts +27 -6
  359. package/dist/api/types/index.js +27 -6
  360. package/dist/serialization/resources/collections/resources/fields/types/FieldCreateType.d.ts +1 -1
  361. package/dist/serialization/resources/collections/resources/fields/types/FieldCreateType.js +10 -9
  362. package/dist/serialization/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.d.ts +1 -1
  363. package/dist/serialization/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.js +1 -1
  364. package/dist/serialization/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldData.d.ts +2 -2
  365. package/dist/serialization/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldData.js +2 -2
  366. package/dist/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts +2 -2
  367. package/dist/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.js +2 -2
  368. package/dist/serialization/resources/collections/resources/items/types/ItemsCreateItemRequest.d.ts +3 -3
  369. package/dist/serialization/resources/collections/resources/items/types/ItemsCreateItemRequest.js +3 -3
  370. package/dist/serialization/resources/collections/resources/items/types/MultipleItems.d.ts +13 -0
  371. package/{serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequestItems.js → dist/serialization/resources/collections/resources/items/types/MultipleItems.js} +4 -4
  372. package/dist/serialization/resources/collections/resources/items/types/{ItemsCreateItemRequestItems.d.ts → MultipleLiveItems.d.ts} +2 -2
  373. package/dist/serialization/resources/collections/resources/items/types/{ItemsCreateItemRequestItems.js → MultipleLiveItems.js} +2 -2
  374. package/dist/serialization/resources/collections/resources/items/types/{CreateBulkCollectionItemRequestBodyFieldDataName.d.ts → SingleCmsItem.d.ts} +2 -2
  375. package/{serialization/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldDataName.js → dist/serialization/resources/collections/resources/items/types/SingleCmsItem.js} +2 -2
  376. package/dist/serialization/resources/collections/resources/items/types/index.d.ts +3 -3
  377. package/dist/serialization/resources/collections/resources/items/types/index.js +3 -3
  378. package/dist/serialization/resources/components/client/index.d.ts +1 -0
  379. package/dist/serialization/resources/components/client/index.js +17 -0
  380. package/dist/serialization/resources/components/client/requests/ComponentDomWrite.d.ts +13 -0
  381. package/dist/serialization/resources/components/client/requests/ComponentDomWrite.js +34 -0
  382. package/dist/serialization/resources/components/client/requests/ComponentPropertiesWrite.d.ts +13 -0
  383. package/dist/serialization/resources/components/client/requests/ComponentPropertiesWrite.js +34 -0
  384. package/dist/serialization/resources/components/client/requests/index.d.ts +2 -0
  385. package/dist/serialization/resources/components/client/requests/index.js +7 -0
  386. package/dist/serialization/resources/components/index.d.ts +2 -0
  387. package/dist/serialization/resources/components/index.js +18 -0
  388. package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +12 -0
  389. package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.js +33 -0
  390. package/dist/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.d.ts +13 -0
  391. package/dist/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.js +34 -0
  392. package/dist/serialization/resources/components/types/ComponentsUpdateContentResponse.d.ts +12 -0
  393. package/dist/serialization/resources/components/types/ComponentsUpdateContentResponse.js +33 -0
  394. package/dist/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.d.ts +12 -0
  395. package/dist/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.js +33 -0
  396. package/dist/serialization/resources/components/types/index.d.ts +4 -0
  397. package/dist/serialization/resources/components/types/index.js +20 -0
  398. package/dist/serialization/resources/index.d.ts +3 -0
  399. package/dist/serialization/resources/index.js +4 -1
  400. package/dist/serialization/resources/pages/client/requests/PageDomWrite.d.ts +13 -0
  401. package/dist/serialization/resources/pages/client/requests/PageDomWrite.js +34 -0
  402. package/dist/serialization/resources/pages/client/requests/index.d.ts +1 -1
  403. package/dist/serialization/resources/pages/client/requests/index.js +3 -3
  404. package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +12 -0
  405. package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.js +33 -0
  406. package/dist/serialization/resources/pages/types/index.d.ts +1 -1
  407. package/dist/serialization/resources/pages/types/index.js +1 -1
  408. package/dist/serialization/resources/sites/client/requests/SitesCreateRequest.d.ts +14 -0
  409. package/dist/serialization/resources/sites/client/requests/SitesCreateRequest.js +35 -0
  410. package/dist/serialization/resources/sites/client/requests/SitesUpdateRequest.d.ts +13 -0
  411. package/{serialization/resources/pages/client/requests/DomWrite.js → dist/serialization/resources/sites/client/requests/SitesUpdateRequest.js} +4 -4
  412. package/dist/serialization/resources/sites/client/requests/index.d.ts +2 -0
  413. package/dist/serialization/resources/sites/client/requests/index.js +5 -1
  414. package/dist/serialization/types/CollectionItem.d.ts +1 -1
  415. package/dist/serialization/types/CollectionItem.js +1 -1
  416. package/dist/serialization/types/CollectionItemFieldData.d.ts +2 -2
  417. package/dist/serialization/types/CollectionItemFieldData.js +2 -2
  418. package/dist/serialization/types/CollectionItemPatchSingle.d.ts +20 -0
  419. package/dist/serialization/types/CollectionItemPatchSingle.js +41 -0
  420. package/dist/serialization/types/CollectionItemPatchSingleFieldData.d.ts +14 -0
  421. package/dist/serialization/types/CollectionItemPatchSingleFieldData.js +36 -0
  422. package/dist/serialization/types/CollectionItemPostSingle.d.ts +20 -0
  423. package/dist/serialization/types/CollectionItemPostSingle.js +41 -0
  424. package/dist/serialization/types/CollectionItemPostSingleFieldData.d.ts +14 -0
  425. package/dist/serialization/types/CollectionItemPostSingleFieldData.js +36 -0
  426. package/dist/serialization/types/Component.d.ts +16 -0
  427. package/dist/serialization/types/Component.js +37 -0
  428. package/dist/serialization/types/ComponentDom.d.ts +16 -0
  429. package/dist/serialization/types/ComponentDom.js +37 -0
  430. package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWrite.d.ts +14 -0
  431. package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWrite.js +35 -0
  432. package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.d.ts +13 -0
  433. package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +34 -0
  434. package/dist/serialization/types/ComponentList.d.ts +15 -0
  435. package/dist/serialization/types/ComponentList.js +36 -0
  436. package/dist/serialization/types/ComponentNode.d.ts +15 -0
  437. package/dist/serialization/types/ComponentNode.js +36 -0
  438. package/dist/serialization/types/ComponentProperties.d.ts +16 -0
  439. package/dist/serialization/types/ComponentProperties.js +37 -0
  440. package/dist/serialization/types/ComponentProperty.d.ts +17 -0
  441. package/dist/serialization/types/ComponentProperty.js +38 -0
  442. package/dist/serialization/types/ComponentPropertyType.d.ts +10 -0
  443. package/dist/serialization/types/{ErrorDetailsItem.js → ComponentPropertyType.js} +2 -5
  444. package/dist/serialization/types/Domain.d.ts +1 -0
  445. package/dist/serialization/types/Domain.js +1 -0
  446. package/dist/serialization/types/Error_.d.ts +1 -2
  447. package/dist/serialization/types/Error_.js +1 -2
  448. package/dist/serialization/types/FieldType.d.ts +1 -1
  449. package/dist/serialization/types/FieldType.js +9 -9
  450. package/dist/serialization/types/ImageNode.d.ts +4 -2
  451. package/dist/serialization/types/ImageNode.js +4 -2
  452. package/dist/serialization/types/ImageNodeImage.d.ts +13 -0
  453. package/{serialization/types/ErrorDetailsItem.js → dist/serialization/types/ImageNodeImage.js} +5 -5
  454. package/dist/serialization/types/Node.d.ts +11 -8
  455. package/dist/serialization/types/Node.js +10 -7
  456. package/dist/serialization/types/NotEnterprisePlanWorkspace.d.ts +10 -0
  457. package/dist/serialization/types/{NodeType.js → NotEnterprisePlanWorkspace.js} +2 -2
  458. package/dist/serialization/types/Redirect.d.ts +14 -0
  459. package/dist/serialization/types/Redirect.js +35 -0
  460. package/dist/serialization/types/Redirects.d.ts +15 -0
  461. package/dist/serialization/types/Redirects.js +36 -0
  462. package/dist/serialization/types/SitePlan.d.ts +16 -0
  463. package/dist/serialization/types/SitePlan.js +37 -0
  464. package/dist/serialization/types/SitePlanId.d.ts +10 -0
  465. package/dist/serialization/types/SitePlanId.js +44 -0
  466. package/dist/serialization/types/SitePlanName.d.ts +10 -0
  467. package/dist/serialization/types/SitePlanName.js +38 -0
  468. package/dist/serialization/types/Text.d.ts +13 -0
  469. package/dist/serialization/types/Text.js +34 -0
  470. package/dist/serialization/types/TextNode.d.ts +4 -2
  471. package/dist/serialization/types/TextNode.js +4 -2
  472. package/dist/serialization/types/TextNodeText.d.ts +13 -0
  473. package/dist/serialization/types/TextNodeText.js +34 -0
  474. package/dist/serialization/types/TextNodeWrite.d.ts +13 -0
  475. package/{serialization/resources/pages/types/DomWriteNodesItem.js → dist/serialization/types/TextNodeWrite.js} +3 -3
  476. package/dist/serialization/types/index.d.ts +27 -6
  477. package/dist/serialization/types/index.js +27 -6
  478. package/dist/version.d.ts +1 -1
  479. package/dist/version.js +1 -1
  480. package/package.json +1 -1
  481. package/reference.md +1844 -788
  482. package/serialization/resources/collections/resources/fields/types/FieldCreateType.d.ts +1 -1
  483. package/serialization/resources/collections/resources/fields/types/FieldCreateType.js +10 -9
  484. package/serialization/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.d.ts +1 -1
  485. package/serialization/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.js +1 -1
  486. package/serialization/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldData.d.ts +2 -2
  487. package/serialization/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldData.js +2 -2
  488. package/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts +2 -2
  489. package/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.js +2 -2
  490. package/serialization/resources/collections/resources/items/types/ItemsCreateItemRequest.d.ts +3 -3
  491. package/serialization/resources/collections/resources/items/types/ItemsCreateItemRequest.js +3 -3
  492. package/serialization/resources/collections/resources/items/types/MultipleItems.d.ts +13 -0
  493. package/{dist/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequestItems.js → serialization/resources/collections/resources/items/types/MultipleItems.js} +4 -4
  494. package/serialization/resources/collections/resources/items/types/{ItemsCreateItemRequestItems.d.ts → MultipleLiveItems.d.ts} +2 -2
  495. package/serialization/resources/collections/resources/items/types/{ItemsCreateItemRequestItems.js → MultipleLiveItems.js} +2 -2
  496. package/serialization/resources/collections/resources/items/types/{CreateBulkCollectionItemRequestBodyFieldDataName.d.ts → SingleCmsItem.d.ts} +2 -2
  497. package/{dist/serialization/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldDataName.js → serialization/resources/collections/resources/items/types/SingleCmsItem.js} +2 -2
  498. package/serialization/resources/collections/resources/items/types/index.d.ts +3 -3
  499. package/serialization/resources/collections/resources/items/types/index.js +3 -3
  500. package/serialization/resources/components/client/index.d.ts +1 -0
  501. package/serialization/resources/components/client/index.js +17 -0
  502. package/serialization/resources/components/client/requests/ComponentDomWrite.d.ts +13 -0
  503. package/serialization/resources/components/client/requests/ComponentDomWrite.js +34 -0
  504. package/serialization/resources/components/client/requests/ComponentPropertiesWrite.d.ts +13 -0
  505. package/serialization/resources/components/client/requests/ComponentPropertiesWrite.js +34 -0
  506. package/serialization/resources/components/client/requests/index.d.ts +2 -0
  507. package/serialization/resources/components/client/requests/index.js +7 -0
  508. package/serialization/resources/components/index.d.ts +2 -0
  509. package/serialization/resources/components/index.js +18 -0
  510. package/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +12 -0
  511. package/serialization/resources/components/types/ComponentDomWriteNodesItem.js +33 -0
  512. package/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.d.ts +13 -0
  513. package/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.js +34 -0
  514. package/serialization/resources/components/types/ComponentsUpdateContentResponse.d.ts +12 -0
  515. package/serialization/resources/components/types/ComponentsUpdateContentResponse.js +33 -0
  516. package/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.d.ts +12 -0
  517. package/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.js +33 -0
  518. package/serialization/resources/components/types/index.d.ts +4 -0
  519. package/serialization/resources/components/types/index.js +20 -0
  520. package/serialization/resources/index.d.ts +3 -0
  521. package/serialization/resources/index.js +4 -1
  522. package/serialization/resources/pages/client/requests/PageDomWrite.d.ts +13 -0
  523. package/serialization/resources/pages/client/requests/PageDomWrite.js +34 -0
  524. package/serialization/resources/pages/client/requests/index.d.ts +1 -1
  525. package/serialization/resources/pages/client/requests/index.js +3 -3
  526. package/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +12 -0
  527. package/serialization/resources/pages/types/PageDomWriteNodesItem.js +33 -0
  528. package/serialization/resources/pages/types/index.d.ts +1 -1
  529. package/serialization/resources/pages/types/index.js +1 -1
  530. package/serialization/resources/sites/client/requests/SitesCreateRequest.d.ts +14 -0
  531. package/serialization/resources/sites/client/requests/SitesCreateRequest.js +35 -0
  532. package/serialization/resources/sites/client/requests/SitesUpdateRequest.d.ts +13 -0
  533. package/{dist/serialization/resources/pages/client/requests/DomWrite.js → serialization/resources/sites/client/requests/SitesUpdateRequest.js} +4 -4
  534. package/serialization/resources/sites/client/requests/index.d.ts +2 -0
  535. package/serialization/resources/sites/client/requests/index.js +5 -1
  536. package/serialization/types/CollectionItem.d.ts +1 -1
  537. package/serialization/types/CollectionItem.js +1 -1
  538. package/serialization/types/CollectionItemFieldData.d.ts +2 -2
  539. package/serialization/types/CollectionItemFieldData.js +2 -2
  540. package/serialization/types/CollectionItemPatchSingle.d.ts +20 -0
  541. package/serialization/types/CollectionItemPatchSingle.js +41 -0
  542. package/serialization/types/CollectionItemPatchSingleFieldData.d.ts +14 -0
  543. package/serialization/types/CollectionItemPatchSingleFieldData.js +36 -0
  544. package/serialization/types/CollectionItemPostSingle.d.ts +20 -0
  545. package/serialization/types/CollectionItemPostSingle.js +41 -0
  546. package/serialization/types/CollectionItemPostSingleFieldData.d.ts +14 -0
  547. package/serialization/types/CollectionItemPostSingleFieldData.js +36 -0
  548. package/serialization/types/Component.d.ts +16 -0
  549. package/serialization/types/Component.js +37 -0
  550. package/serialization/types/ComponentDom.d.ts +16 -0
  551. package/serialization/types/ComponentDom.js +37 -0
  552. package/serialization/types/ComponentInstanceNodePropertyOverridesWrite.d.ts +14 -0
  553. package/serialization/types/ComponentInstanceNodePropertyOverridesWrite.js +35 -0
  554. package/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.d.ts +13 -0
  555. package/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +34 -0
  556. package/serialization/types/ComponentList.d.ts +15 -0
  557. package/serialization/types/ComponentList.js +36 -0
  558. package/serialization/types/ComponentNode.d.ts +15 -0
  559. package/serialization/types/ComponentNode.js +36 -0
  560. package/serialization/types/ComponentProperties.d.ts +16 -0
  561. package/serialization/types/ComponentProperties.js +37 -0
  562. package/serialization/types/ComponentProperty.d.ts +17 -0
  563. package/serialization/types/ComponentProperty.js +38 -0
  564. package/serialization/types/ComponentPropertyType.d.ts +10 -0
  565. package/serialization/types/ComponentPropertyType.js +31 -0
  566. package/serialization/types/Domain.d.ts +1 -0
  567. package/serialization/types/Domain.js +1 -0
  568. package/serialization/types/Error_.d.ts +1 -2
  569. package/serialization/types/Error_.js +1 -2
  570. package/serialization/types/FieldType.d.ts +1 -1
  571. package/serialization/types/FieldType.js +9 -9
  572. package/serialization/types/ImageNode.d.ts +4 -2
  573. package/serialization/types/ImageNode.js +4 -2
  574. package/serialization/types/ImageNodeImage.d.ts +13 -0
  575. package/serialization/types/ImageNodeImage.js +34 -0
  576. package/serialization/types/Node.d.ts +11 -8
  577. package/serialization/types/Node.js +10 -7
  578. package/serialization/types/NotEnterprisePlanWorkspace.d.ts +10 -0
  579. package/serialization/types/{NodeType.js → NotEnterprisePlanWorkspace.js} +2 -2
  580. package/serialization/types/Redirect.d.ts +14 -0
  581. package/serialization/types/Redirect.js +35 -0
  582. package/serialization/types/Redirects.d.ts +15 -0
  583. package/serialization/types/Redirects.js +36 -0
  584. package/serialization/types/SitePlan.d.ts +16 -0
  585. package/serialization/types/SitePlan.js +37 -0
  586. package/serialization/types/SitePlanId.d.ts +10 -0
  587. package/serialization/types/SitePlanId.js +44 -0
  588. package/serialization/types/SitePlanName.d.ts +10 -0
  589. package/serialization/types/SitePlanName.js +38 -0
  590. package/serialization/types/Text.d.ts +13 -0
  591. package/serialization/types/Text.js +34 -0
  592. package/serialization/types/TextNode.d.ts +4 -2
  593. package/serialization/types/TextNode.js +4 -2
  594. package/serialization/types/TextNodeText.d.ts +13 -0
  595. package/serialization/types/TextNodeText.js +34 -0
  596. package/serialization/types/TextNodeWrite.d.ts +13 -0
  597. package/{dist/serialization/resources/pages/types/DomWriteNodesItem.js → serialization/types/TextNodeWrite.js} +3 -3
  598. package/serialization/types/index.d.ts +27 -6
  599. package/serialization/types/index.js +27 -6
  600. package/version.d.ts +1 -1
  601. package/version.js +1 -1
  602. package/api/resources/pages/client/requests/DomWrite.d.ts +0 -27
  603. package/api/types/NodeType.d.ts +0 -8
  604. package/api/types/NodeType.js +0 -10
  605. package/dist/api/resources/pages/client/requests/DomWrite.d.ts +0 -27
  606. package/dist/api/types/NodeType.d.ts +0 -8
  607. package/dist/api/types/NodeType.js +0 -10
  608. package/dist/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequestItems.d.ts +0 -13
  609. package/dist/serialization/resources/pages/client/requests/DomWrite.d.ts +0 -13
  610. package/dist/serialization/resources/pages/types/DomWriteNodesItem.d.ts +0 -13
  611. package/dist/serialization/types/ErrorDetailsItem.d.ts +0 -10
  612. package/dist/serialization/types/NodeType.d.ts +0 -10
  613. package/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequestItems.d.ts +0 -13
  614. package/serialization/resources/pages/client/requests/DomWrite.d.ts +0 -13
  615. package/serialization/resources/pages/types/DomWriteNodesItem.d.ts +0 -13
  616. package/serialization/types/ErrorDetailsItem.d.ts +0 -10
  617. package/serialization/types/NodeType.d.ts +0 -10
  618. /package/api/resources/collections/resources/items/types/{CreateBulkCollectionItemRequestBodyFieldDataName.js → MultipleItems.js} +0 -0
  619. /package/api/resources/collections/resources/items/types/{ItemsCreateItemLiveRequestItems.js → MultipleLiveItems.js} +0 -0
  620. /package/api/resources/collections/resources/items/types/{ItemsCreateItemRequestItems.js → SingleCmsItem.js} +0 -0
  621. /package/api/resources/{pages/client/requests/DomWrite.js → components/client/requests/ComponentDomWrite.js} +0 -0
  622. /package/api/resources/{pages/types/DomWriteNodesItem.js → components/client/requests/ComponentPropertiesWrite.js} +0 -0
  623. /package/api/{types/ErrorDetailsItem.js → resources/components/client/requests/ComponentsGetContentRequest.js} +0 -0
  624. /package/{dist/api/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldDataName.js → api/resources/components/client/requests/ComponentsGetPropertiesRequest.js} +0 -0
  625. /package/{dist/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequestItems.js → api/resources/components/client/requests/ComponentsListRequest.js} +0 -0
  626. /package/{dist/api/resources/collections/resources/items/types/ItemsCreateItemRequestItems.js → api/resources/components/types/ComponentDomWriteNodesItem.js} +0 -0
  627. /package/{dist/api/resources/pages/client/requests/DomWrite.js → api/resources/components/types/ComponentPropertiesWritePropertiesItem.js} +0 -0
  628. /package/{dist/api/resources/pages/types/DomWriteNodesItem.js → api/resources/components/types/ComponentsUpdateContentResponse.js} +0 -0
  629. /package/{dist/api/types/ErrorDetailsItem.js → api/resources/components/types/ComponentsUpdatePropertiesResponse.js} +0 -0
@@ -5,28 +5,28 @@ types:
5
5
  - name
6
6
  - slug
7
7
  source:
8
- openapi: ../../../referenced-specs/v2.yml
8
+ openapi: ../../../openapi/referenced-specs/v2.yml
9
9
  ItemsListItemsRequestSortOrder:
10
10
  enum:
11
11
  - asc
12
12
  - desc
13
13
  source:
14
- openapi: ../../../referenced-specs/v2.yml
15
- ItemsCreateItemRequestItems:
14
+ openapi: ../../../openapi/referenced-specs/v2.yml
15
+ Multiple Items:
16
16
  properties:
17
17
  items:
18
- type: optional<list<root.CollectionItem>>
18
+ type: optional<list<root.CollectionItemPostSingle>>
19
19
  docs: An array of items to create
20
20
  source:
21
- openapi: ../../../referenced-specs/v2.yml
21
+ openapi: ../../../openapi/referenced-specs/v2.yml
22
22
  inline: true
23
23
  ItemsCreateItemRequest:
24
24
  discriminated: false
25
25
  union:
26
- - root.CollectionItem
27
- - ItemsCreateItemRequestItems
26
+ - root.CollectionItemPostSingle
27
+ - Multiple Items
28
28
  source:
29
- openapi: ../../../referenced-specs/v2.yml
29
+ openapi: ../../../openapi/referenced-specs/v2.yml
30
30
  ItemsDeleteItemsRequestItemsItem:
31
31
  properties:
32
32
  id:
@@ -36,7 +36,7 @@ types:
36
36
  type: optional<list<string>>
37
37
  docs: Array of identifiers for the locales where the item will be created
38
38
  source:
39
- openapi: ../../../referenced-specs/v2.yml
39
+ openapi: ../../../openapi/referenced-specs/v2.yml
40
40
  inline: true
41
41
  ItemsListItemsLiveRequestSortBy:
42
42
  enum:
@@ -44,28 +44,28 @@ types:
44
44
  - name
45
45
  - slug
46
46
  source:
47
- openapi: ../../../referenced-specs/v2.yml
47
+ openapi: ../../../openapi/referenced-specs/v2.yml
48
48
  ItemsListItemsLiveRequestSortOrder:
49
49
  enum:
50
50
  - asc
51
51
  - desc
52
52
  source:
53
- openapi: ../../../referenced-specs/v2.yml
54
- ItemsCreateItemLiveRequestItems:
53
+ openapi: ../../../openapi/referenced-specs/v2.yml
54
+ Multiple Live Items:
55
55
  properties:
56
56
  items:
57
57
  type: optional<list<root.CollectionItem>>
58
58
  docs: List of collection items to create
59
59
  source:
60
- openapi: ../../../referenced-specs/v2.yml
60
+ openapi: ../../../openapi/referenced-specs/v2.yml
61
61
  inline: true
62
62
  ItemsCreateItemLiveRequest:
63
63
  discriminated: false
64
64
  union:
65
65
  - root.CollectionItem
66
- - ItemsCreateItemLiveRequestItems
66
+ - Multiple Live Items
67
67
  source:
68
- openapi: ../../../referenced-specs/v2.yml
68
+ openapi: ../../../openapi/referenced-specs/v2.yml
69
69
  ItemsDeleteItemsLiveRequestItemsItem:
70
70
  properties:
71
71
  itemId:
@@ -75,9 +75,9 @@ types:
75
75
  type: optional<list<string>>
76
76
  docs: Array of identifiers for the locales where the item will be created
77
77
  source:
78
- openapi: ../../../referenced-specs/v2.yml
78
+ openapi: ../../../openapi/referenced-specs/v2.yml
79
79
  inline: true
80
- CreateBulkCollectionItemRequestBodyFieldDataName:
80
+ Single CMS Item:
81
81
  properties:
82
82
  name:
83
83
  type: string
@@ -91,9 +91,10 @@ types:
91
91
  slug.
92
92
  extra-properties: true
93
93
  source:
94
- openapi: ../../../referenced-specs/v2.yml
94
+ openapi: ../../../openapi/referenced-specs/v2.yml
95
95
  inline: true
96
96
  CreateBulkCollectionItemRequestBodyFieldDataItem:
97
+ docs: A single CMS item to create
97
98
  properties:
98
99
  name:
99
100
  type: string
@@ -107,22 +108,23 @@ types:
107
108
  slug.
108
109
  extra-properties: true
109
110
  source:
110
- openapi: ../../../referenced-specs/v2.yml
111
+ openapi: ../../../openapi/referenced-specs/v2.yml
111
112
  inline: true
112
113
  CreateBulkCollectionItemRequestBodyFieldData:
113
114
  discriminated: false
114
115
  union:
115
- - CreateBulkCollectionItemRequestBodyFieldDataName
116
- - list<CreateBulkCollectionItemRequestBodyFieldDataItem>
116
+ - Single CMS Item
117
+ - docs: A list of CMS items to create
118
+ type: list<CreateBulkCollectionItemRequestBodyFieldDataItem>
117
119
  source:
118
- openapi: ../../../referenced-specs/v2.yml
120
+ openapi: ../../../openapi/referenced-specs/v2.yml
119
121
  inline: true
120
122
  ItemsPublishItemResponse:
121
123
  properties:
122
124
  publishedItemIds: optional<list<string>>
123
125
  errors: optional<list<string>>
124
126
  source:
125
- openapi: ../../../referenced-specs/v2.yml
127
+ openapi: ../../../openapi/referenced-specs/v2.yml
126
128
  imports:
127
129
  root: ../__package__.yml
128
130
  service:
@@ -138,7 +140,7 @@ service:
138
140
 
139
141
  Required scope | `CMS:read`
140
142
  source:
141
- openapi: ../../../referenced-specs/v2.yml
143
+ openapi: ../../../openapi/referenced-specs/v2.yml
142
144
  path-parameters:
143
145
  collection_id:
144
146
  type: string
@@ -199,6 +201,8 @@ service:
199
201
  fieldData:
200
202
  name: Senior Data Analyst
201
203
  slug: senior-data-analyst
204
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
205
+ department: Data
202
206
  - id: 62c880ef281c7b7b4cf9dabc
203
207
  cmsLocaleId: 66f6e966c9e1dc700a857ca3
204
208
  lastPublished: '2023-04-15T10:25:18.123Z'
@@ -209,6 +213,8 @@ service:
209
213
  fieldData:
210
214
  name: Product Manager
211
215
  slug: product-manager
216
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
217
+ department: Product
212
218
  pagination:
213
219
  limit: 25
214
220
  offset: 0
@@ -223,12 +229,12 @@ service:
223
229
 
224
230
 
225
231
  To create items across multiple locales, please use [this
226
- endpoint.](/data/v2.0.0/reference/cms/collection-items/bulk-items/create-items)
232
+ endpoint.](/v2.0.0/data/reference/cms/collection-items/staged-items/create-items)
227
233
 
228
234
 
229
235
  Required scope | `CMS:write`
230
236
  source:
231
- openapi: ../../../referenced-specs/v2.yml
237
+ openapi: ../../../openapi/referenced-specs/v2.yml
232
238
  path-parameters:
233
239
  collection_id:
234
240
  type: string
@@ -256,6 +262,9 @@ service:
256
262
  fieldData:
257
263
  name: Pan Galactic Gargle Blaster Recipe
258
264
  slug: pan-galactic-gargle-blaster
265
+ date: '2022-11-18T00:00:00.000Z'
266
+ featured: true
267
+ color: '#db4b68'
259
268
  response:
260
269
  body:
261
270
  id: 42b720ef280c7a7a3be8cabe
@@ -268,6 +277,9 @@ service:
268
277
  fieldData:
269
278
  name: Pan Galactic Gargle Blaster Recipe
270
279
  slug: pan-galactic-gargle-blaster
280
+ color: '#db4b68'
281
+ date: '2022-11-18T00:00:00.000Z'
282
+ featured: true
271
283
  - name: MultipleItems
272
284
  path-parameters:
273
285
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -278,23 +290,30 @@ service:
278
290
  fieldData:
279
291
  name: Senior Data Analyst
280
292
  slug: senior-data-analyst
293
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
294
+ department: Data
281
295
  - isArchived: false
282
296
  isDraft: false
283
297
  fieldData:
284
298
  name: Product Manager
285
299
  slug: product-manager
300
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
301
+ department: Product
286
302
  response:
287
303
  body:
288
- id: 42b720ef280c7a7a3be8cabe
304
+ id: id
289
305
  cmsLocaleId: 653ad57de882f528b32e810e
290
- lastPublished: '2022-11-29T16:22:43.159Z'
291
- lastUpdated: '2022-11-17T17:19:43.282Z'
292
- createdOn: '2022-11-17T17:11:57.148Z'
293
- isArchived: false
294
- isDraft: false
306
+ lastPublished: '2023-03-17T18:47:35.560Z'
307
+ lastUpdated: '2023-03-17T18:47:35.560Z'
308
+ createdOn: '2023-03-17T18:47:35.560Z'
309
+ isArchived: true
310
+ isDraft: true
295
311
  fieldData:
296
- name: Pan Galactic Gargle Blaster Recipe
297
- slug: pan-galactic-gargle-blaster
312
+ name: My new item
313
+ slug: my-new-item
314
+ date: '2022-11-18T00:00:00.000Z'
315
+ featured: false
316
+ color: '#db4b68'
298
317
  delete-items:
299
318
  path: /collections/{collection_id}/items
300
319
  method: DELETE
@@ -309,7 +328,7 @@ service:
309
328
 
310
329
  Required scope | `CMS:write`
311
330
  source:
312
- openapi: ../../../referenced-specs/v2.yml
331
+ openapi: ../../../openapi/referenced-specs/v2.yml
313
332
  path-parameters:
314
333
  collection_id:
315
334
  type: string
@@ -325,6 +344,7 @@ service:
325
344
  - root.BadRequestError
326
345
  - root.UnauthorizedError
327
346
  - root.NotFoundError
347
+ - root.ConflictError
328
348
  - root.TooManyRequestsError
329
349
  - root.InternalServerError
330
350
  examples:
@@ -345,7 +365,7 @@ service:
345
365
 
346
366
  Required scope | `CMS:write`
347
367
  source:
348
- openapi: ../../../referenced-specs/v2.yml
368
+ openapi: ../../../openapi/referenced-specs/v2.yml
349
369
  path-parameters:
350
370
  collection_id:
351
371
  type: string
@@ -377,21 +397,25 @@ service:
377
397
  fieldData:
378
398
  name: Ne Paniquez Pas
379
399
  slug: ne-paniquez-pas
400
+ featured: false
380
401
  - id: 66f6ed9576ddacf3149d5ea6
381
402
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
382
403
  fieldData:
383
404
  name: No Entrar en Pánico
384
405
  slug: no-entrar-en-panico
406
+ featured: false
385
407
  - id: 66f6ed9576ddacf3149d5eaa
386
408
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
387
409
  fieldData:
388
410
  name: Au Revoir et Merci pour Tous les Poissons
389
411
  slug: au-revoir-et-merci
412
+ featured: false
390
413
  - id: 66f6ed9576ddacf3149d5eaa
391
414
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
392
415
  fieldData:
393
416
  name: Hasta Luego y Gracias por Todo el Pescado
394
417
  slug: hasta-luego-y-gracias
418
+ featured: false
395
419
  response:
396
420
  body:
397
421
  id: id
@@ -404,6 +428,9 @@ service:
404
428
  fieldData:
405
429
  name: My new item
406
430
  slug: my-new-item
431
+ date: '2022-11-18T00:00:00.000Z'
432
+ featured: false
433
+ color: '#db4b68'
407
434
  - name: MultipleItems
408
435
  path-parameters:
409
436
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -415,12 +442,16 @@ service:
415
442
  fieldData:
416
443
  name: Senior Data Analyst
417
444
  slug: senior-data-analyst
445
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
446
+ department: Data
418
447
  - id: 580e64008c9a982ac9b8b754
419
448
  isArchived: false
420
449
  isDraft: false
421
450
  fieldData:
422
451
  name: Product Manager
423
452
  slug: product-manager
453
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
454
+ department: Product
424
455
  response:
425
456
  body:
426
457
  id: id
@@ -433,6 +464,9 @@ service:
433
464
  fieldData:
434
465
  name: My new item
435
466
  slug: my-new-item
467
+ date: '2022-11-18T00:00:00.000Z'
468
+ featured: false
469
+ color: '#db4b68'
436
470
  - name: Multiple items updated across multiple locales
437
471
  path-parameters:
438
472
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -443,21 +477,25 @@ service:
443
477
  fieldData:
444
478
  name: Ne Paniquez Pas
445
479
  slug: ne-paniquez-pas
480
+ featured: false
446
481
  - id: 66f6ed9576ddacf3149d5ea6
447
482
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
448
483
  fieldData:
449
484
  name: No Entrar en Pánico
450
485
  slug: no-entrar-en-panico
486
+ featured: false
451
487
  - id: 66f6ed9576ddacf3149d5eaa
452
488
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
453
489
  fieldData:
454
490
  name: Au Revoir et Merci pour Tous les Poissons
455
491
  slug: au-revoir-et-merci
492
+ featured: false
456
493
  - id: 66f6ed9576ddacf3149d5eaa
457
494
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
458
495
  fieldData:
459
496
  name: Hasta Luego y Gracias por Todo el Pescado
460
497
  slug: hasta-luego-y-gracias
498
+ featured: false
461
499
  response:
462
500
  body:
463
501
  id: id
@@ -470,6 +508,9 @@ service:
470
508
  fieldData:
471
509
  name: My new item
472
510
  slug: my-new-item
511
+ date: '2022-11-18T00:00:00.000Z'
512
+ featured: false
513
+ color: '#db4b68'
473
514
  - name: Mulitple items updated in a single locale
474
515
  path-parameters:
475
516
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -480,21 +521,25 @@ service:
480
521
  fieldData:
481
522
  name: Ne Paniquez Pas
482
523
  slug: ne-paniquez-pas
524
+ featured: false
483
525
  - id: 66f6ed9576ddacf3149d5ea6
484
526
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
485
527
  fieldData:
486
528
  name: No Entrar en Pánico
487
529
  slug: no-entrar-en-panico
530
+ featured: false
488
531
  - id: 66f6ed9576ddacf3149d5eaa
489
532
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
490
533
  fieldData:
491
534
  name: Au Revoir et Merci pour Tous les Poissons
492
535
  slug: au-revoir-et-merci
536
+ featured: false
493
537
  - id: 66f6ed9576ddacf3149d5eaa
494
538
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
495
539
  fieldData:
496
540
  name: Hasta Luego y Gracias por Todo el Pescado
497
541
  slug: hasta-luego-y-gracias
542
+ featured: false
498
543
  response:
499
544
  body:
500
545
  id: id
@@ -507,6 +552,9 @@ service:
507
552
  fieldData:
508
553
  name: My new item
509
554
  slug: my-new-item
555
+ date: '2022-11-18T00:00:00.000Z'
556
+ featured: false
557
+ color: '#db4b68'
510
558
  list-items-live:
511
559
  path: /collections/{collection_id}/items/live
512
560
  method: GET
@@ -516,7 +564,7 @@ service:
516
564
 
517
565
  Required scope | `CMS:read`
518
566
  source:
519
- openapi: ../../../referenced-specs/v2.yml
567
+ openapi: ../../../openapi/referenced-specs/v2.yml
520
568
  path-parameters:
521
569
  collection_id:
522
570
  type: string
@@ -577,6 +625,8 @@ service:
577
625
  fieldData:
578
626
  name: Senior Data Analyst
579
627
  slug: senior-data-analyst
628
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
629
+ department: Data
580
630
  - id: 62c880ef281c7b7b4cf9dabc
581
631
  cmsLocaleId: 66f6e966c9e1dc700a857ca3
582
632
  lastPublished: '2023-04-15T10:25:18.123Z'
@@ -587,6 +637,8 @@ service:
587
637
  fieldData:
588
638
  name: Product Manager
589
639
  slug: product-manager
640
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
641
+ department: Product
590
642
  pagination:
591
643
  limit: 25
592
644
  offset: 0
@@ -602,13 +654,13 @@ service:
602
654
 
603
655
 
604
656
  To create items across multiple locales, [please use this
605
- endpoint.](/v2.0.0/data/reference/cms/collection-items/bulk-items/create-items)
657
+ endpoint.](/v2.0.0/data/reference/cms/collection-items/staged-items/create-items)
606
658
 
607
659
 
608
660
 
609
661
  Required scope | `CMS:write`
610
662
  source:
611
- openapi: ../../../referenced-specs/v2.yml
663
+ openapi: ../../../openapi/referenced-specs/v2.yml
612
664
  path-parameters:
613
665
  collection_id:
614
666
  type: string
@@ -636,6 +688,9 @@ service:
636
688
  fieldData:
637
689
  name: Pan Galactic Gargle Blaster Recipe
638
690
  slug: pan-galactic-gargle-blaster
691
+ date: '2022-11-18T00:00:00.000Z'
692
+ featured: true
693
+ color: '#db4b68'
639
694
  response:
640
695
  body:
641
696
  id: 42b720ef280c7a7a3be8cabe
@@ -648,6 +703,9 @@ service:
648
703
  fieldData:
649
704
  name: Pan Galactic Gargle Blaster Recipe
650
705
  slug: pan-galactic-gargle-blaster
706
+ color: '#db4b68'
707
+ date: '2022-11-18T00:00:00.000Z'
708
+ featured: true
651
709
  - name: MultipleItems
652
710
  path-parameters:
653
711
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -658,11 +716,15 @@ service:
658
716
  fieldData:
659
717
  name: Senior Data Analyst
660
718
  slug: senior-data-analyst
719
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
720
+ department: Data
661
721
  - isArchived: false
662
722
  isDraft: false
663
723
  fieldData:
664
724
  name: Product Manager
665
725
  slug: product-manager
726
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
727
+ department: Product
666
728
  response:
667
729
  body:
668
730
  id: 42b720ef280c7a7a3be8cabe
@@ -675,6 +737,9 @@ service:
675
737
  fieldData:
676
738
  name: Pan Galactic Gargle Blaster Recipe
677
739
  slug: pan-galactic-gargle-blaster
740
+ color: '#db4b68'
741
+ date: '2022-11-18T00:00:00.000Z'
742
+ featured: true
678
743
  delete-items-live:
679
744
  path: /collections/{collection_id}/items/live
680
745
  method: DELETE
@@ -692,7 +757,7 @@ service:
692
757
 
693
758
  Required scope | `CMS:write`
694
759
  source:
695
- openapi: ../../../referenced-specs/v2.yml
760
+ openapi: ../../../openapi/referenced-specs/v2.yml
696
761
  path-parameters:
697
762
  collection_id:
698
763
  type: string
@@ -729,7 +794,7 @@ service:
729
794
 
730
795
  Required scope | `CMS:write`
731
796
  source:
732
- openapi: ../../../referenced-specs/v2.yml
797
+ openapi: ../../../openapi/referenced-specs/v2.yml
733
798
  path-parameters:
734
799
  collection_id:
735
800
  type: string
@@ -761,21 +826,25 @@ service:
761
826
  fieldData:
762
827
  name: Ne Paniquez Pas
763
828
  slug: ne-paniquez-pas
829
+ featured: false
764
830
  - id: 66f6ed9576ddacf3149d5ea6
765
831
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
766
832
  fieldData:
767
833
  name: No Entrar en Pánico
768
834
  slug: no-entrar-en-panico
835
+ featured: false
769
836
  - id: 66f6ed9576ddacf3149d5eaa
770
837
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
771
838
  fieldData:
772
839
  name: Au Revoir et Merci pour Tous les Poissons
773
840
  slug: au-revoir-et-merci
841
+ featured: false
774
842
  - id: 66f6ed9576ddacf3149d5eaa
775
843
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
776
844
  fieldData:
777
845
  name: Hasta Luego y Gracias por Todo el Pescado
778
846
  slug: hasta-luego-y-gracias
847
+ featured: false
779
848
  response:
780
849
  body:
781
850
  items:
@@ -789,6 +858,7 @@ service:
789
858
  fieldData:
790
859
  name: Ne Paniquez Pas
791
860
  slug: ne-paniquez-pas
861
+ featured: false
792
862
  - id: 66f6ed9576ddacf3149d5ea6
793
863
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
794
864
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -799,6 +869,7 @@ service:
799
869
  fieldData:
800
870
  name: No Entrar en Pánico
801
871
  slug: no-entrar-en-panico
872
+ featured: false
802
873
  - id: 66f6ed9576ddacf3149d5eaa
803
874
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
804
875
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -809,6 +880,7 @@ service:
809
880
  fieldData:
810
881
  name: Au Revoir et Merci pour Tous les Poissons
811
882
  slug: au-revoir-et-merci
883
+ featured: false
812
884
  - id: 66f6ed9576ddacf3149d5eaa
813
885
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
814
886
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -819,6 +891,7 @@ service:
819
891
  fieldData:
820
892
  name: Hasta Luego y Gracias por Todo el Pescado
821
893
  slug: hasta-luego-y-gracias
894
+ featured: false
822
895
  - name: MultipleItems
823
896
  path-parameters:
824
897
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -830,12 +903,16 @@ service:
830
903
  fieldData:
831
904
  name: Senior Data Analyst
832
905
  slug: senior-data-analyst
906
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
907
+ department: Data
833
908
  - id: 580e64008c9a982ac9b8b754
834
909
  isArchived: false
835
910
  isDraft: false
836
911
  fieldData:
837
912
  name: Product Manager
838
913
  slug: product-manager
914
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
915
+ department: Product
839
916
  response:
840
917
  body:
841
918
  items:
@@ -849,6 +926,7 @@ service:
849
926
  fieldData:
850
927
  name: Ne Paniquez Pas
851
928
  slug: ne-paniquez-pas
929
+ featured: false
852
930
  - id: 66f6ed9576ddacf3149d5ea6
853
931
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
854
932
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -859,6 +937,7 @@ service:
859
937
  fieldData:
860
938
  name: No Entrar en Pánico
861
939
  slug: no-entrar-en-panico
940
+ featured: false
862
941
  - id: 66f6ed9576ddacf3149d5eaa
863
942
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
864
943
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -869,6 +948,7 @@ service:
869
948
  fieldData:
870
949
  name: Au Revoir et Merci pour Tous les Poissons
871
950
  slug: au-revoir-et-merci
951
+ featured: false
872
952
  - id: 66f6ed9576ddacf3149d5eaa
873
953
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
874
954
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -879,6 +959,7 @@ service:
879
959
  fieldData:
880
960
  name: Hasta Luego y Gracias por Todo el Pescado
881
961
  slug: hasta-luego-y-gracias
962
+ featured: false
882
963
  - name: Multiple items updated across multiple locales
883
964
  path-parameters:
884
965
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -889,21 +970,25 @@ service:
889
970
  fieldData:
890
971
  name: Ne Paniquez Pas
891
972
  slug: ne-paniquez-pas
973
+ featured: false
892
974
  - id: 66f6ed9576ddacf3149d5ea6
893
975
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
894
976
  fieldData:
895
977
  name: No Entrar en Pánico
896
978
  slug: no-entrar-en-panico
979
+ featured: false
897
980
  - id: 66f6ed9576ddacf3149d5eaa
898
981
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
899
982
  fieldData:
900
983
  name: Au Revoir et Merci pour Tous les Poissons
901
984
  slug: au-revoir-et-merci
985
+ featured: false
902
986
  - id: 66f6ed9576ddacf3149d5eaa
903
987
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
904
988
  fieldData:
905
989
  name: Hasta Luego y Gracias por Todo el Pescado
906
990
  slug: hasta-luego-y-gracias
991
+ featured: false
907
992
  response:
908
993
  body:
909
994
  items:
@@ -917,6 +1002,7 @@ service:
917
1002
  fieldData:
918
1003
  name: Ne Paniquez Pas
919
1004
  slug: ne-paniquez-pas
1005
+ featured: false
920
1006
  - id: 66f6ed9576ddacf3149d5ea6
921
1007
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
922
1008
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -927,6 +1013,7 @@ service:
927
1013
  fieldData:
928
1014
  name: No Entrar en Pánico
929
1015
  slug: no-entrar-en-panico
1016
+ featured: false
930
1017
  - id: 66f6ed9576ddacf3149d5eaa
931
1018
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
932
1019
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -937,6 +1024,7 @@ service:
937
1024
  fieldData:
938
1025
  name: Au Revoir et Merci pour Tous les Poissons
939
1026
  slug: au-revoir-et-merci
1027
+ featured: false
940
1028
  - id: 66f6ed9576ddacf3149d5eaa
941
1029
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
942
1030
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -947,6 +1035,7 @@ service:
947
1035
  fieldData:
948
1036
  name: Hasta Luego y Gracias por Todo el Pescado
949
1037
  slug: hasta-luego-y-gracias
1038
+ featured: false
950
1039
  - name: Mulitple items updated in a single locale
951
1040
  path-parameters:
952
1041
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -957,21 +1046,25 @@ service:
957
1046
  fieldData:
958
1047
  name: Ne Paniquez Pas
959
1048
  slug: ne-paniquez-pas
1049
+ featured: false
960
1050
  - id: 66f6ed9576ddacf3149d5ea6
961
1051
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
962
1052
  fieldData:
963
1053
  name: No Entrar en Pánico
964
1054
  slug: no-entrar-en-panico
1055
+ featured: false
965
1056
  - id: 66f6ed9576ddacf3149d5eaa
966
1057
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
967
1058
  fieldData:
968
1059
  name: Au Revoir et Merci pour Tous les Poissons
969
1060
  slug: au-revoir-et-merci
1061
+ featured: false
970
1062
  - id: 66f6ed9576ddacf3149d5eaa
971
1063
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
972
1064
  fieldData:
973
1065
  name: Hasta Luego y Gracias por Todo el Pescado
974
1066
  slug: hasta-luego-y-gracias
1067
+ featured: false
975
1068
  response:
976
1069
  body:
977
1070
  items:
@@ -985,6 +1078,8 @@ service:
985
1078
  fieldData:
986
1079
  name: Senior Data Analyst
987
1080
  slug: senior-data-analyst
1081
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
1082
+ department: Data
988
1083
  - id: 62c880ef281c7b7b4cf9dabc
989
1084
  cmsLocaleId: 66f6e966c9e1dc700a857ca3
990
1085
  lastPublished: '2023-04-15T10:25:18.123Z'
@@ -995,6 +1090,8 @@ service:
995
1090
  fieldData:
996
1091
  name: Product Manager
997
1092
  slug: product-manager
1093
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
1094
+ department: Product
998
1095
  create-items:
999
1096
  path: /collections/{collection_id}/items/bulk
1000
1097
  method: POST
@@ -1010,7 +1107,7 @@ service:
1010
1107
 
1011
1108
  Required scope | `CMS:write`
1012
1109
  source:
1013
- openapi: ../../../referenced-specs/v2.yml
1110
+ openapi: ../../../openapi/referenced-specs/v2.yml
1014
1111
  path-parameters:
1015
1112
  collection_id:
1016
1113
  type: string
@@ -1033,7 +1130,7 @@ service:
1033
1130
  type: optional<boolean>
1034
1131
  docs: Indicates whether the item is in draft state.
1035
1132
  default: false
1036
- fieldData: optional<CreateBulkCollectionItemRequestBodyFieldData>
1133
+ fieldData: CreateBulkCollectionItemRequestBodyFieldData
1037
1134
  content-type: application/json
1038
1135
  response:
1039
1136
  docs: Request was successful
@@ -1073,6 +1170,9 @@ service:
1073
1170
  fieldData:
1074
1171
  name: My new item
1075
1172
  slug: my-new-item
1173
+ date: '2022-11-18T00:00:00.000Z'
1174
+ featured: false
1175
+ color: '#db4b68'
1076
1176
  - name: Create multiple items across multipel locales
1077
1177
  path-parameters:
1078
1178
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -1102,6 +1202,9 @@ service:
1102
1202
  fieldData:
1103
1203
  name: My new item
1104
1204
  slug: my-new-item
1205
+ date: '2022-11-18T00:00:00.000Z'
1206
+ featured: false
1207
+ color: '#db4b68'
1105
1208
  - name: Single item created across multiple locales
1106
1209
  path-parameters:
1107
1210
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -1130,6 +1233,9 @@ service:
1130
1233
  fieldData:
1131
1234
  name: My new item
1132
1235
  slug: my-new-item
1236
+ date: '2022-11-18T00:00:00.000Z'
1237
+ featured: false
1238
+ color: '#db4b68'
1133
1239
  - name: Multiple items created across multiple locales
1134
1240
  path-parameters:
1135
1241
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -1158,6 +1264,9 @@ service:
1158
1264
  fieldData:
1159
1265
  name: My new item
1160
1266
  slug: my-new-item
1267
+ date: '2022-11-18T00:00:00.000Z'
1268
+ featured: false
1269
+ color: '#db4b68'
1161
1270
  get-item:
1162
1271
  path: /collections/{collection_id}/items/{item_id}
1163
1272
  method: GET
@@ -1167,7 +1276,7 @@ service:
1167
1276
 
1168
1277
  Required scope | `CMS:read`
1169
1278
  source:
1170
- openapi: ../../../referenced-specs/v2.yml
1279
+ openapi: ../../../openapi/referenced-specs/v2.yml
1171
1280
  path-parameters:
1172
1281
  collection_id:
1173
1282
  type: string
@@ -1211,6 +1320,9 @@ service:
1211
1320
  fieldData:
1212
1321
  name: Pan Galactic Gargle Blaster Recipe
1213
1322
  slug: pan-galactic-gargle-blaster
1323
+ color: '#db4b68'
1324
+ date: '2022-11-18T00:00:00.000Z'
1325
+ featured: true
1214
1326
  delete-item:
1215
1327
  path: /collections/{collection_id}/items/{item_id}
1216
1328
  method: DELETE
@@ -1222,7 +1334,7 @@ service:
1222
1334
 
1223
1335
  Required scope | `CMS:write`
1224
1336
  source:
1225
- openapi: ../../../referenced-specs/v2.yml
1337
+ openapi: ../../../openapi/referenced-specs/v2.yml
1226
1338
  path-parameters:
1227
1339
  collection_id:
1228
1340
  type: string
@@ -1260,7 +1372,7 @@ service:
1260
1372
 
1261
1373
  Required scope | `CMS:write`
1262
1374
  source:
1263
- openapi: ../../../referenced-specs/v2.yml
1375
+ openapi: ../../../openapi/referenced-specs/v2.yml
1264
1376
  path-parameters:
1265
1377
  collection_id:
1266
1378
  type: string
@@ -1270,7 +1382,7 @@ service:
1270
1382
  docs: Unique identifier for an Item
1271
1383
  display-name: Update Collection Item
1272
1384
  request:
1273
- body: root.CollectionItem
1385
+ body: root.CollectionItemPatchSingle
1274
1386
  content-type: application/json
1275
1387
  response:
1276
1388
  docs: Request was successful
@@ -1286,16 +1398,14 @@ service:
1286
1398
  collection_id: 580e63fc8c9a982ac9b8b745
1287
1399
  item_id: 580e64008c9a982ac9b8b754
1288
1400
  request:
1289
- id: 42b720ef280c7a7a3be8cabe
1290
- cmsLocaleId: 653ad57de882f528b32e810e
1291
- lastPublished: '2022-11-29T16:22:43.159Z'
1292
- lastUpdated: '2022-11-17T17:19:43.282Z'
1293
- createdOn: '2022-11-17T17:11:57.148Z'
1294
1401
  isArchived: false
1295
1402
  isDraft: false
1296
1403
  fieldData:
1297
1404
  name: Pan Galactic Gargle Blaster Recipe
1298
1405
  slug: pan-galactic-gargle-blaster
1406
+ date: '2022-11-18T00:00:00.000Z'
1407
+ featured: true
1408
+ color: '#db4b68'
1299
1409
  response:
1300
1410
  body:
1301
1411
  id: 42b720ef280c7a7a3be8cabe
@@ -1308,6 +1418,9 @@ service:
1308
1418
  fieldData:
1309
1419
  name: Pan Galactic Gargle Blaster Recipe
1310
1420
  slug: pan-galactic-gargle-blaster
1421
+ color: '#db4b68'
1422
+ date: '2022-11-18T00:00:00.000Z'
1423
+ featured: true
1311
1424
  get-item-live:
1312
1425
  path: /collections/{collection_id}/items/{item_id}/live
1313
1426
  method: GET
@@ -1317,7 +1430,7 @@ service:
1317
1430
 
1318
1431
  Required scope | `CMS:read`
1319
1432
  source:
1320
- openapi: ../../../referenced-specs/v2.yml
1433
+ openapi: ../../../openapi/referenced-specs/v2.yml
1321
1434
  path-parameters:
1322
1435
  collection_id:
1323
1436
  type: string
@@ -1361,6 +1474,9 @@ service:
1361
1474
  fieldData:
1362
1475
  name: Pan Galactic Gargle Blaster Recipe
1363
1476
  slug: pan-galactic-gargle-blaster
1477
+ color: '#db4b68'
1478
+ date: '2022-11-18T00:00:00.000Z'
1479
+ featured: true
1364
1480
  delete-item-live:
1365
1481
  path: /collections/{collection_id}/items/{item_id}/live
1366
1482
  method: DELETE
@@ -1375,7 +1491,7 @@ service:
1375
1491
 
1376
1492
  Required scope | `CMS:write`
1377
1493
  source:
1378
- openapi: ../../../referenced-specs/v2.yml
1494
+ openapi: ../../../openapi/referenced-specs/v2.yml
1379
1495
  path-parameters:
1380
1496
  collection_id:
1381
1497
  type: string
@@ -1415,7 +1531,7 @@ service:
1415
1531
 
1416
1532
  Required scope | `CMS:write`
1417
1533
  source:
1418
- openapi: ../../../referenced-specs/v2.yml
1534
+ openapi: ../../../openapi/referenced-specs/v2.yml
1419
1535
  path-parameters:
1420
1536
  collection_id:
1421
1537
  type: string
@@ -1425,7 +1541,7 @@ service:
1425
1541
  docs: Unique identifier for an Item
1426
1542
  display-name: Update Live Collection Item
1427
1543
  request:
1428
- body: root.CollectionItem
1544
+ body: root.CollectionItemPatchSingle
1429
1545
  content-type: application/json
1430
1546
  response:
1431
1547
  docs: Request was successful
@@ -1441,16 +1557,14 @@ service:
1441
1557
  collection_id: 580e63fc8c9a982ac9b8b745
1442
1558
  item_id: 580e64008c9a982ac9b8b754
1443
1559
  request:
1444
- id: 42b720ef280c7a7a3be8cabe
1445
- cmsLocaleId: 653ad57de882f528b32e810e
1446
- lastPublished: '2022-11-29T16:22:43.159Z'
1447
- lastUpdated: '2022-11-17T17:19:43.282Z'
1448
- createdOn: '2022-11-17T17:11:57.148Z'
1449
1560
  isArchived: false
1450
1561
  isDraft: false
1451
1562
  fieldData:
1452
1563
  name: Pan Galactic Gargle Blaster Recipe
1453
1564
  slug: pan-galactic-gargle-blaster
1565
+ date: '2022-11-18T00:00:00.000Z'
1566
+ featured: true
1567
+ color: '#db4b68'
1454
1568
  response:
1455
1569
  body:
1456
1570
  id: 42b720ef280c7a7a3be8cabe
@@ -1463,6 +1577,9 @@ service:
1463
1577
  fieldData:
1464
1578
  name: Pan Galactic Gargle Blaster Recipe
1465
1579
  slug: pan-galactic-gargle-blaster
1580
+ color: '#db4b68'
1581
+ date: '2022-11-18T00:00:00.000Z'
1582
+ featured: true
1466
1583
  publish-item:
1467
1584
  path: /collections/{collection_id}/items/publish
1468
1585
  method: POST
@@ -1472,7 +1589,7 @@ service:
1472
1589
 
1473
1590
  Required scope | `cms:write`
1474
1591
  source:
1475
- openapi: ../../../referenced-specs/v2.yml
1592
+ openapi: ../../../openapi/referenced-specs/v2.yml
1476
1593
  path-parameters:
1477
1594
  collection_id:
1478
1595
  type: string
@@ -1508,4 +1625,4 @@ service:
1508
1625
  errors:
1509
1626
  - Staging item ID 643fd856d66b6528195ee2cf not found.
1510
1627
  source:
1511
- openapi: ../../../referenced-specs/v2.yml
1628
+ openapi: ../../../openapi/referenced-specs/v2.yml