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
@@ -13,7 +13,7 @@ service:
13
13
 
14
14
  Required scope | `cms:read`
15
15
  source:
16
- openapi: ../../../referenced-specs/v2.yml
16
+ openapi: ../../../openapi/referenced-specs/v2.yml
17
17
  path-parameters:
18
18
  site_id:
19
19
  type: string
@@ -61,7 +61,7 @@ service:
61
61
 
62
62
  Required scope | `cms:write`
63
63
  source:
64
- openapi: ../../../referenced-specs/v2.yml
64
+ openapi: ../../../openapi/referenced-specs/v2.yml
65
65
  path-parameters:
66
66
  site_id:
67
67
  type: string
@@ -122,7 +122,7 @@ service:
122
122
 
123
123
  Required scope | `cms:read`
124
124
  source:
125
- openapi: ../../../referenced-specs/v2.yml
125
+ openapi: ../../../openapi/referenced-specs/v2.yml
126
126
  path-parameters:
127
127
  collection_id:
128
128
  type: string
@@ -165,7 +165,7 @@ service:
165
165
 
166
166
  Required scope | `cms:write`
167
167
  source:
168
- openapi: ../../../referenced-specs/v2.yml
168
+ openapi: ../../../openapi/referenced-specs/v2.yml
169
169
  path-parameters:
170
170
  collection_id:
171
171
  type: string
@@ -181,5 +181,6 @@ service:
181
181
  - path-parameters:
182
182
  collection_id: 580e63fc8c9a982ac9b8b745
183
183
  source:
184
- openapi: ../../../referenced-specs/v2.yml
184
+ openapi: ../../../openapi/referenced-specs/v2.yml
185
185
  display-name: Collections
186
+ docs: Collections are CMS collections of items.
@@ -0,0 +1,486 @@
1
+ imports:
2
+ root: __package__.yml
3
+ service:
4
+ auth: false
5
+ base-path: ''
6
+ endpoints:
7
+ list:
8
+ path: /sites/{site_id}/components
9
+ method: GET
10
+ auth: true
11
+ docs: |
12
+ List of all components for a site.
13
+
14
+ Required scope | `components:read`
15
+ source:
16
+ openapi: ../../../openapi/referenced-specs/v2.yml
17
+ path-parameters:
18
+ site_id:
19
+ type: string
20
+ docs: Unique identifier for a Site
21
+ display-name: List Components
22
+ request:
23
+ name: ComponentsListRequest
24
+ query-parameters:
25
+ limit:
26
+ type: optional<double>
27
+ docs: 'Maximum number of records to be returned (max limit: 100)'
28
+ offset:
29
+ type: optional<double>
30
+ docs: >-
31
+ Offset used for pagination if the results have more than limit
32
+ records
33
+ response:
34
+ docs: Request was successful
35
+ type: root.ComponentList
36
+ errors:
37
+ - root.BadRequestError
38
+ - root.UnauthorizedError
39
+ - root.NotFoundError
40
+ - root.TooManyRequestsError
41
+ - root.InternalServerError
42
+ examples:
43
+ - path-parameters:
44
+ site_id: 580e63e98c9a982ac9b8b741
45
+ response:
46
+ body:
47
+ components:
48
+ - id: 6596da6045e56dee495bcbba
49
+ name: Primary Button
50
+ group: Buttons
51
+ description: A default button component that can be used across the site
52
+ readonly: true
53
+ - id: 658205daa3e8206a523b5ad4
54
+ name: Secondary Button
55
+ group: Buttons
56
+ description: >-
57
+ A secondary button component that can be used across the
58
+ site
59
+ readonly: true
60
+ - id: 6258612d1ee792848f805dcf
61
+ name: Card
62
+ group: Buttons
63
+ description: A button component that can be used across the site
64
+ readonly: true
65
+ - id: 68a2b1d1ee792848f805dcf
66
+ name: Nav
67
+ group: Buttons
68
+ description: A button component that can be used across the site
69
+ readonly: true
70
+ pagination:
71
+ limit: 20
72
+ offset: 0
73
+ total: 4
74
+ get-content:
75
+ path: /sites/{site_id}/components/{component_id}/dom
76
+ method: GET
77
+ auth: true
78
+ docs: >
79
+ Get static content from a component definition. This includes text
80
+ nodes, image nodes and nested component instances.
81
+
82
+ To retrieve dynamic content set by component properties, use the [get
83
+ component
84
+ properties](/data/reference/pages-and-components/components/get-properties)
85
+ endpoint.
86
+
87
+
88
+ <Note>If you do not provide a Locale ID in your request, the response
89
+ will return any content that can be localized from the Primary
90
+ locale.</Note>
91
+
92
+
93
+ Required scope | `components:read`
94
+ source:
95
+ openapi: ../../../openapi/referenced-specs/v2.yml
96
+ path-parameters:
97
+ site_id:
98
+ type: string
99
+ docs: Unique identifier for a Site
100
+ component_id:
101
+ type: string
102
+ docs: Unique identifier for a Component
103
+ display-name: Get Component Content
104
+ request:
105
+ name: ComponentsGetContentRequest
106
+ query-parameters:
107
+ localeId:
108
+ type: optional<string>
109
+ docs: >-
110
+ Unique identifier for a specific locale. Applicable, when using
111
+ localization.
112
+ limit:
113
+ type: optional<double>
114
+ docs: 'Maximum number of records to be returned (max limit: 100)'
115
+ offset:
116
+ type: optional<double>
117
+ docs: >-
118
+ Offset used for pagination if the results have more than limit
119
+ records
120
+ response:
121
+ docs: Request was successful
122
+ type: root.ComponentDom
123
+ errors:
124
+ - root.BadRequestError
125
+ - root.UnauthorizedError
126
+ - root.NotFoundError
127
+ - root.TooManyRequestsError
128
+ - root.InternalServerError
129
+ examples:
130
+ - name: ComponentDOM
131
+ path-parameters:
132
+ site_id: 580e63e98c9a982ac9b8b741
133
+ component_id: 8505ba55-ef72-629e-f85c-33e4b703d48b
134
+ query-parameters:
135
+ localeId: 65427cf400e02b306eaa04a0
136
+ response:
137
+ body:
138
+ componentId: 69118560-d0bc-15fc-bbf8-b8fe5f6535b5
139
+ nodes:
140
+ - type: component-instance
141
+ id: a245c12d-995b-55ee-5ec7-aa36a6cad623
142
+ componentId: nodes
143
+ propertyOverrides:
144
+ - propertyId: 7dd14c08-2e96-8d3d-2b19-b5c03642a0f0
145
+ - type: component-instance
146
+ id: a245c12d-995b-55ee-5ec7-aa36a6cad627
147
+ componentId: nodes
148
+ propertyOverrides:
149
+ - propertyId: 7dd14c08-2e96-8d3d-2b19-b5c03642a0f0
150
+ - type: component-instance
151
+ id: a245c12d-995b-55ee-5ec7-aa36a6cad629
152
+ componentId: nodes
153
+ propertyOverrides:
154
+ - propertyId: 7dd14c08-2e96-8d3d-2b19-b5c03642a0f0
155
+ - type: component-instance
156
+ id: a245c12d-995b-55ee-5ec7-aa36a6cad631
157
+ componentId: 6258612d1ee792848f805dcf
158
+ propertyOverrides:
159
+ - propertyId: a245c12d-995b-55ee-5ec7-aa36a6cad633
160
+ type: Plain Text
161
+ text:
162
+ text: Don't Panic!
163
+ - propertyId: a245c12d-995b-55ee-5ec7-aa36a6cad635
164
+ type: Rich Text
165
+ text:
166
+ html: <div><p>Always know where your towel is.</p></div>
167
+ pagination:
168
+ limit: 4
169
+ offset: 0
170
+ total: 4
171
+ - name: LocalizedComponentDOM
172
+ path-parameters:
173
+ site_id: 580e63e98c9a982ac9b8b741
174
+ component_id: 8505ba55-ef72-629e-f85c-33e4b703d48b
175
+ query-parameters:
176
+ localeId: 65427cf400e02b306eaa04a0
177
+ response:
178
+ body:
179
+ componentId: 69118560-d0bc-15fc-bbf8-b8fe5f6535b5
180
+ nodes:
181
+ - type: component-instance
182
+ id: 69118560-d0bc-15fc-bbf8-b8fe5f6535b8
183
+ componentId: nodes
184
+ propertyOverrides:
185
+ - propertyId: 7dd14c08-2e96-8d3d-2b19-b5c03642a0f0
186
+ - type: component-instance
187
+ id: 8ebfb409-7493-3bca-5d48-0e547befb960
188
+ componentId: nodes
189
+ propertyOverrides:
190
+ - propertyId: 7dd14c08-2e96-8d3d-2b19-b5c03642a0f0
191
+ - type: component-instance
192
+ id: 69118560-d0bc-15fc-bbf8-b8fe5f6535c2
193
+ componentId: 69118560-d0bc-15fc-bbf8-b8fe5f6535b5
194
+ propertyOverrides:
195
+ - propertyId: a245c12d-995b-55ee-5ec7-aa36a6cad623
196
+ pagination:
197
+ limit: 100
198
+ offset: 0
199
+ total: 3
200
+ update-content:
201
+ path: /sites/{site_id}/components/{component_id}/dom
202
+ method: POST
203
+ auth: true
204
+ docs: >
205
+ This endpoint updates content within a component defintion for
206
+ **secondary locales**. It supports updating up to 1000 nodes in a single
207
+ request.
208
+
209
+
210
+ Before making updates:
211
+
212
+ 1. Use the [get component
213
+ content](/data/reference/pages-and-components/components/get-content)
214
+ endpoint to identify available content nodes and their types
215
+
216
+ 2. If your component definition has a component instance nested within
217
+ it, retrieve the nested component instance's properties that you'll
218
+ override using the [get component
219
+ properties](/data/reference/pages-and-components/components/get-properties)
220
+ endpoint
221
+
222
+
223
+ <Note>
224
+ This endpoint is specifically for localizing component definitions. Ensure that the specified `localeId` is a valid **secondary locale** for the site otherwise the request will fail.
225
+ </Note>
226
+
227
+
228
+ Required scope | `components:write`
229
+ source:
230
+ openapi: ../../../openapi/referenced-specs/v2.yml
231
+ path-parameters:
232
+ site_id:
233
+ type: string
234
+ docs: Unique identifier for a Site
235
+ component_id:
236
+ type: string
237
+ docs: Unique identifier for a Component
238
+ display-name: Update Component Content
239
+ request:
240
+ name: ComponentDomWrite
241
+ query-parameters:
242
+ localeId:
243
+ type: optional<string>
244
+ docs: >-
245
+ Unique identifier for a specific locale. Applicable, when using
246
+ localization.
247
+ body:
248
+ properties:
249
+ nodes:
250
+ docs: >-
251
+ List of DOM Nodes with the new content that will be updated in
252
+ each node.
253
+ type: list<ComponentDomWriteNodesItem>
254
+ content-type: application/json
255
+ response:
256
+ docs: Request was successful
257
+ type: ComponentsUpdateContentResponse
258
+ errors:
259
+ - root.BadRequestError
260
+ - root.UnauthorizedError
261
+ - root.ForbiddenError
262
+ - root.NotFoundError
263
+ - root.TooManyRequestsError
264
+ - root.InternalServerError
265
+ examples:
266
+ - path-parameters:
267
+ site_id: 580e63e98c9a982ac9b8b741
268
+ component_id: 8505ba55-ef72-629e-f85c-33e4b703d48b
269
+ query-parameters:
270
+ localeId: 65427cf400e02b306eaa04a0
271
+ request:
272
+ nodes:
273
+ - nodeId: a245c12d-995b-55ee-5ec7-aa36a6cad623
274
+ text: <h1>The Hitchhiker's Guide to the Galaxy</h1>
275
+ - nodeId: a245c12d-995b-55ee-5ec7-aa36a6cad627
276
+ text: >-
277
+ <div><h3>Don't Panic!</h3><p>Always know where your towel
278
+ is.</p></div>
279
+ - nodeId: a245c12d-995b-55ee-5ec7-aa36a6cad629
280
+ propertyOverrides:
281
+ - propertyId: 7dd14c08-2e96-8d3d-2b19-b5c03642a0f0
282
+ text: <div><h1>Time is an <em>illusion</em></h1></div>
283
+ - propertyId: 7dd14c08-2e96-8d3d-2b19-b5c03642a0f1
284
+ text: Life, the Universe and Everything
285
+ response:
286
+ body:
287
+ errors:
288
+ - errors
289
+ get-properties:
290
+ path: /sites/{site_id}/components/{component_id}/properties
291
+ method: GET
292
+ auth: true
293
+ docs: >
294
+ Get the property default values of a component definition.
295
+
296
+
297
+ <Note>If you do not provide a Locale ID in your request, the response
298
+ will return any properties that can be localized from the Primary
299
+ locale.</Note>
300
+
301
+
302
+ Required scope | `components:read`
303
+ source:
304
+ openapi: ../../../openapi/referenced-specs/v2.yml
305
+ path-parameters:
306
+ site_id:
307
+ type: string
308
+ docs: Unique identifier for a Site
309
+ component_id:
310
+ type: string
311
+ docs: Unique identifier for a Component
312
+ display-name: Get Component Properties
313
+ request:
314
+ name: ComponentsGetPropertiesRequest
315
+ query-parameters:
316
+ localeId:
317
+ type: optional<string>
318
+ docs: >-
319
+ Unique identifier for a specific locale. Applicable, when using
320
+ localization.
321
+ limit:
322
+ type: optional<double>
323
+ docs: 'Maximum number of records to be returned (max limit: 100)'
324
+ offset:
325
+ type: optional<double>
326
+ docs: >-
327
+ Offset used for pagination if the results have more than limit
328
+ records
329
+ response:
330
+ docs: Request was successful
331
+ type: root.ComponentProperties
332
+ errors:
333
+ - root.BadRequestError
334
+ - root.UnauthorizedError
335
+ - root.NotFoundError
336
+ - root.TooManyRequestsError
337
+ - root.InternalServerError
338
+ examples:
339
+ - path-parameters:
340
+ site_id: 580e63e98c9a982ac9b8b741
341
+ component_id: 8505ba55-ef72-629e-f85c-33e4b703d48b
342
+ query-parameters:
343
+ localeId: 65427cf400e02b306eaa04a0
344
+ response:
345
+ body:
346
+ componentId: 658205daa3e8206a523b5ad4
347
+ properties:
348
+ - propertyId: a245c12d-995b-55ee-5ec7-aa36a6cad623
349
+ type: Plain Text
350
+ label: Title
351
+ text:
352
+ text: The Hitchhiker's Guide to the Galaxy
353
+ - propertyId: a245c12d-995b-55ee-5ec7-aa36a6cad627
354
+ type: Rich Text
355
+ label: Content
356
+ text:
357
+ html: >-
358
+ <div><h3>Don't Panic!</h3><p>Always know where your towel
359
+ is.</p></div>
360
+ pagination:
361
+ limit: 2
362
+ offset: 0
363
+ total: 2
364
+ update-properties:
365
+ path: /sites/{site_id}/components/{component_id}/properties
366
+ method: POST
367
+ auth: true
368
+ docs: >
369
+ Update the property default values of a component definition in a
370
+ specificed locale.
371
+
372
+
373
+ Before making updates:
374
+
375
+ 1. Use the [get component
376
+ properties](/data/reference/pages-and-components/components/get-properties)
377
+ endpoint to identify available properties
378
+
379
+
380
+ <Note>The request requires a secondary locale ID. If a locale is
381
+ missing, the request will not be processed and will result in an
382
+ error.</Note>
383
+
384
+
385
+ Required scope | `components:write`
386
+ source:
387
+ openapi: ../../../openapi/referenced-specs/v2.yml
388
+ path-parameters:
389
+ site_id:
390
+ type: string
391
+ docs: Unique identifier for a Site
392
+ component_id:
393
+ type: string
394
+ docs: Unique identifier for a Component
395
+ display-name: Update Component Properties
396
+ request:
397
+ name: ComponentPropertiesWrite
398
+ query-parameters:
399
+ localeId:
400
+ type: optional<string>
401
+ docs: >-
402
+ Unique identifier for a specific locale. Applicable, when using
403
+ localization.
404
+ body:
405
+ properties:
406
+ properties:
407
+ docs: >-
408
+ A list of component properties to update within the specified
409
+ secondary locale.
410
+ type: list<ComponentPropertiesWritePropertiesItem>
411
+ content-type: application/json
412
+ response:
413
+ docs: Request was successful
414
+ type: ComponentsUpdatePropertiesResponse
415
+ errors:
416
+ - root.BadRequestError
417
+ - root.UnauthorizedError
418
+ - root.NotFoundError
419
+ - root.TooManyRequestsError
420
+ - root.InternalServerError
421
+ examples:
422
+ - path-parameters:
423
+ site_id: 580e63e98c9a982ac9b8b741
424
+ component_id: 8505ba55-ef72-629e-f85c-33e4b703d48b
425
+ query-parameters:
426
+ localeId: 65427cf400e02b306eaa04a0
427
+ request:
428
+ properties:
429
+ - propertyId: a245c12d-995b-55ee-5ec7-aa36a6cad623
430
+ text: The Hitchhiker’s Guide to the Galaxy
431
+ - propertyId: a245c12d-995b-55ee-5ec7-aa36a6cad627
432
+ text: >-
433
+ <div><h3>Dont Panic!</h3><p>Always know where your towel
434
+ is.</p></div>
435
+ response:
436
+ body:
437
+ errors:
438
+ - errors
439
+ source:
440
+ openapi: ../../../openapi/referenced-specs/v2.yml
441
+ types:
442
+ ComponentDomWriteNodesItem:
443
+ discriminated: false
444
+ union:
445
+ - root.TextNodeWrite
446
+ - root.ComponentInstanceNodePropertyOverridesWrite
447
+ source:
448
+ openapi: ../../../openapi/referenced-specs/v2.yml
449
+ inline: true
450
+ ComponentsUpdateContentResponse:
451
+ properties:
452
+ errors:
453
+ docs: A list of error messages, if any.
454
+ type: list<string>
455
+ source:
456
+ openapi: ../../../openapi/referenced-specs/v2.yml
457
+ ComponentPropertiesWritePropertiesItem:
458
+ properties:
459
+ propertyId:
460
+ type: string
461
+ docs: The ID of the property.
462
+ text:
463
+ type: string
464
+ docs: >
465
+ The new string or HTML value used to update the component property in
466
+ the secondary locale.
467
+
468
+
469
+ The provided value must be compatible with the type of the component
470
+ property.
471
+
472
+
473
+ For example, attempting to update a single-line plain-text property
474
+ with a multi-line
475
+
476
+ value will result in an error.
477
+ source:
478
+ openapi: ../../../openapi/referenced-specs/v2.yml
479
+ inline: true
480
+ ComponentsUpdatePropertiesResponse:
481
+ properties:
482
+ errors:
483
+ docs: A list of error messages, if any.
484
+ type: list<string>
485
+ source:
486
+ openapi: ../../../openapi/referenced-specs/v2.yml
@@ -13,7 +13,7 @@ service:
13
13
 
14
14
  Required scope | `ecommerce:read`
15
15
  source:
16
- openapi: ../../../referenced-specs/v2.yml
16
+ openapi: ../../../openapi/referenced-specs/v2.yml
17
17
  path-parameters:
18
18
  site_id:
19
19
  type: string
@@ -39,4 +39,4 @@ service:
39
39
  createdOn: '2018-10-04T15:21:02Z'
40
40
  defaultCurrency: USD
41
41
  source:
42
- openapi: ../../../referenced-specs/v2.yml
42
+ openapi: ../../../openapi/referenced-specs/v2.yml
@@ -13,7 +13,7 @@ service:
13
13
 
14
14
  Required scope | `forms:read`
15
15
  source:
16
- openapi: ../../../referenced-specs/v2.yml
16
+ openapi: ../../../openapi/referenced-specs/v2.yml
17
17
  path-parameters:
18
18
  site_id:
19
19
  type: string
@@ -99,7 +99,7 @@ service:
99
99
 
100
100
  Required scope | `forms:read`
101
101
  source:
102
- openapi: ../../../referenced-specs/v2.yml
102
+ openapi: ../../../openapi/referenced-specs/v2.yml
103
103
  path-parameters:
104
104
  form_id:
105
105
  type: string
@@ -155,7 +155,7 @@ service:
155
155
 
156
156
  Required scope | `forms:read`
157
157
  source:
158
- openapi: ../../../referenced-specs/v2.yml
158
+ openapi: ../../../openapi/referenced-specs/v2.yml
159
159
  path-parameters:
160
160
  form_id:
161
161
  type: string
@@ -217,7 +217,7 @@ service:
217
217
 
218
218
  Required scope | `forms:read`
219
219
  source:
220
- openapi: ../../../referenced-specs/v2.yml
220
+ openapi: ../../../openapi/referenced-specs/v2.yml
221
221
  path-parameters:
222
222
  form_submission_id:
223
223
  type: string
@@ -255,7 +255,7 @@ service:
255
255
 
256
256
  Required scope | `forms:write`
257
257
  source:
258
- openapi: ../../../referenced-specs/v2.yml
258
+ openapi: ../../../openapi/referenced-specs/v2.yml
259
259
  path-parameters:
260
260
  form_submission_id:
261
261
  type: string
@@ -297,5 +297,6 @@ service:
297
297
  First Name: Arthur
298
298
  Last Name: Dent
299
299
  source:
300
- openapi: ../../../referenced-specs/v2.yml
300
+ openapi: ../../../openapi/referenced-specs/v2.yml
301
301
  display-name: Forms
302
+ docs: Forms are forms that are created on your Webflow site.
@@ -13,7 +13,7 @@ service:
13
13
 
14
14
  Required scope | `ecommerce:read`
15
15
  source:
16
- openapi: ../../../referenced-specs/v2.yml
16
+ openapi: ../../../openapi/referenced-specs/v2.yml
17
17
  path-parameters:
18
18
  collection_id:
19
19
  type: string
@@ -41,7 +41,7 @@ service:
41
41
  body:
42
42
  id: 5bfedb42bab0ad90fa7dad39
43
43
  quantity: 100
44
- inventoryType: infinite
44
+ inventoryType: finite
45
45
  update:
46
46
  path: /collections/{collection_id}/items/{item_id}/inventory
47
47
  method: PATCH
@@ -62,7 +62,7 @@ service:
62
62
 
63
63
  Required scope | `ecommerce:write`
64
64
  source:
65
- openapi: ../../../referenced-specs/v2.yml
65
+ openapi: ../../../openapi/referenced-specs/v2.yml
66
66
  path-parameters:
67
67
  collection_id:
68
68
  type: string
@@ -106,15 +106,17 @@ service:
106
106
  body:
107
107
  id: 5bfedb42bab0ad90fa7dad39
108
108
  quantity: 100
109
- inventoryType: infinite
109
+ inventoryType: finite
110
110
  source:
111
- openapi: ../../../referenced-specs/v2.yml
111
+ openapi: ../../../openapi/referenced-specs/v2.yml
112
112
  display-name: Inventory
113
+ docs: Inventory is the stock of e-commerce items in your Webflow site.
113
114
  types:
114
115
  InventoryUpdateRequestInventoryType:
115
116
  enum:
116
117
  - infinite
117
118
  - finite
118
119
  docs: infinite or finite
120
+ inline: true
119
121
  source:
120
- openapi: ../../../referenced-specs/v2.yml
122
+ openapi: ../../../openapi/referenced-specs/v2.yml