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
@@ -19,11 +19,24 @@ errors:
19
19
  message: >-
20
20
  OAuthForbidden: You are missing the following scopes -
21
21
  components:write
22
+ - value:
23
+ key: value
22
24
  - value:
23
25
  code: forbidden
24
26
  message: User is not authorized to perform this action
27
+ BadRequestError:
28
+ status-code: 400
29
+ type: unknown
30
+ docs: Request body was incorrectly formatted.
31
+ examples:
32
+ - value:
33
+ code: bad_request
34
+ message: 'Bad Request: Request is malformed'
25
35
  - value:
26
36
  key: value
37
+ - value:
38
+ code: validation_error
39
+ message: 'Validation Error: Provided ID is invalid'
27
40
  NotFoundError:
28
41
  status-code: 404
29
42
  type: Error
@@ -43,19 +56,6 @@ errors:
43
56
  - value:
44
57
  code: too_many_requests
45
58
  message: Too many requests
46
- BadRequestError:
47
- status-code: 400
48
- type: unknown
49
- docs: Request body was incorrectly formatted.
50
- examples:
51
- - value:
52
- code: bad_request
53
- message: 'Bad Request: Request is malformed'
54
- - value:
55
- key: value
56
- - value:
57
- code: validation_error
58
- message: 'Validation Error: Provided ID is invalid'
59
59
  InternalServerError:
60
60
  status-code: 500
61
61
  type: Error
@@ -71,6 +71,9 @@ errors:
71
71
  examples:
72
72
  - value:
73
73
  message: '''Site is published to multiple domains at different times'
74
+ - value:
75
+ code: custom_code_max_registered_scripts
76
+ message: The maximum number of registered scripts has been reached.
74
77
  - value:
75
78
  code: forms_require_republish
76
79
  message: To access this feature, the site needs to be republished.
@@ -80,27 +83,27 @@ errors:
80
83
  code: ecommerce_not_enabled
81
84
  message: Ecommerce is not yet initialized
82
85
  types:
83
- BadRequestErrorBody:
84
- discriminated: false
85
- union:
86
- - InvalidDomain
87
- - NoDomains
88
- source:
89
- openapi: ../../../referenced-specs/v2.yml
90
86
  ForbiddenErrorBody:
91
87
  discriminated: false
92
88
  union:
93
89
  - InvalidScopes
94
90
  - UsersNotEnabled
95
91
  source:
96
- openapi: ../../../referenced-specs/v2.yml
92
+ openapi: ../../../openapi/referenced-specs/v2.yml
93
+ BadRequestErrorBody:
94
+ discriminated: false
95
+ union:
96
+ - InvalidDomain
97
+ - NoDomains
98
+ source:
99
+ openapi: ../../../openapi/referenced-specs/v2.yml
97
100
  ConflictErrorBody:
98
101
  discriminated: false
99
102
  union:
100
103
  - DuplicateUserEmail
101
104
  - UserLimitReached
102
105
  source:
103
- openapi: ../../../referenced-specs/v2.yml
106
+ openapi: ../../../openapi/referenced-specs/v2.yml
104
107
  AuthorizedUser:
105
108
  properties:
106
109
  id:
@@ -118,7 +121,7 @@ types:
118
121
  type: optional<string>
119
122
  docs: The user's last name
120
123
  source:
121
- openapi: ../../../referenced-specs/v2.yml
124
+ openapi: ../../../openapi/referenced-specs/v2.yml
122
125
  ErrorCode:
123
126
  enum:
124
127
  - bad_request
@@ -151,16 +154,9 @@ types:
151
154
  - users_not_enabled
152
155
  - validation_error
153
156
  docs: Error code
154
- source:
155
- openapi: ../../../referenced-specs/v2.yml
156
- ErrorDetailsItem:
157
- discriminated: false
158
- union:
159
- - string
160
- - map<string, unknown>
161
- source:
162
- openapi: ../../../referenced-specs/v2.yml
163
157
  inline: true
158
+ source:
159
+ openapi: ../../../openapi/referenced-specs/v2.yml
164
160
  Error:
165
161
  properties:
166
162
  code:
@@ -173,10 +169,10 @@ types:
173
169
  type: optional<string>
174
170
  docs: Link to more information
175
171
  details:
176
- type: optional<list<ErrorDetailsItem>>
172
+ type: optional<list<unknown>>
177
173
  docs: Array of errors
178
174
  source:
179
- openapi: ../../../referenced-specs/v2.yml
175
+ openapi: ../../../openapi/referenced-specs/v2.yml
180
176
  Application: unknown
181
177
  AuthorizationAuthorizationAuthorizedTo:
182
178
  properties:
@@ -190,7 +186,7 @@ types:
190
186
  type: optional<list<unknown>>
191
187
  docs: Array of Users this app is authorized to
192
188
  source:
193
- openapi: ../../../referenced-specs/v2.yml
189
+ openapi: ../../../openapi/referenced-specs/v2.yml
194
190
  inline: true
195
191
  AuthorizationAuthorization:
196
192
  docs: The Authorization object
@@ -215,7 +211,7 @@ types:
215
211
  docs: Comma separted list of OAuth scopes corresponding to the Authorization
216
212
  authorizedTo: optional<AuthorizationAuthorizationAuthorizedTo>
217
213
  source:
218
- openapi: ../../../referenced-specs/v2.yml
214
+ openapi: ../../../openapi/referenced-specs/v2.yml
219
215
  inline: true
220
216
  Authorization:
221
217
  properties:
@@ -224,7 +220,7 @@ types:
224
220
  docs: The Authorization object
225
221
  application: optional<Application>
226
222
  source:
227
- openapi: ../../../referenced-specs/v2.yml
223
+ openapi: ../../../openapi/referenced-specs/v2.yml
228
224
  Domain:
229
225
  properties:
230
226
  id:
@@ -233,8 +229,11 @@ types:
233
229
  url:
234
230
  type: optional<string>
235
231
  docs: The registered Domain name
232
+ lastPublished:
233
+ type: optional<datetime>
234
+ docs: The date the custom domain was last published to
236
235
  source:
237
- openapi: ../../../referenced-specs/v2.yml
236
+ openapi: ../../../openapi/referenced-specs/v2.yml
238
237
  Locale:
239
238
  properties:
240
239
  id:
@@ -264,7 +263,7 @@ types:
264
263
  A tag or code representing the locale, often following a standard
265
264
  format like 'en-US'.
266
265
  source:
267
- openapi: ../../../referenced-specs/v2.yml
266
+ openapi: ../../../openapi/referenced-specs/v2.yml
268
267
  Locales:
269
268
  properties:
270
269
  primary:
@@ -274,15 +273,16 @@ types:
274
273
  type: optional<list<Locale>>
275
274
  docs: A list of secondary locales available for the site or application.
276
275
  source:
277
- openapi: ../../../referenced-specs/v2.yml
276
+ openapi: ../../../openapi/referenced-specs/v2.yml
278
277
  SiteDataCollectionType:
279
278
  enum:
280
279
  - always
281
280
  - optOut
282
281
  - disabled
283
282
  docs: The type of data collection enabled for the site.
283
+ inline: true
284
284
  source:
285
- openapi: ../../../referenced-specs/v2.yml
285
+ openapi: ../../../openapi/referenced-specs/v2.yml
286
286
  Site:
287
287
  properties:
288
288
  id:
@@ -326,19 +326,120 @@ types:
326
326
  type: optional<SiteDataCollectionType>
327
327
  docs: The type of data collection enabled for the site.
328
328
  source:
329
- openapi: ../../../referenced-specs/v2.yml
329
+ openapi: ../../../openapi/referenced-specs/v2.yml
330
+ InvalidScopes: unknown
331
+ NotEnterprisePlanWorkspace: unknown
330
332
  Sites:
331
333
  properties:
332
334
  sites: optional<list<Site>>
333
335
  source:
334
- openapi: ../../../referenced-specs/v2.yml
336
+ openapi: ../../../openapi/referenced-specs/v2.yml
337
+ NotEnterprisePlanSite: unknown
335
338
  Domains:
336
339
  properties:
337
340
  customDomains: optional<list<Domain>>
338
341
  source:
339
- openapi: ../../../referenced-specs/v2.yml
342
+ openapi: ../../../openapi/referenced-specs/v2.yml
340
343
  InvalidDomain: unknown
341
344
  NoDomains: unknown
345
+ Redirect:
346
+ docs: A single redirection rule, specifying a source URL and a destination URL.
347
+ properties:
348
+ id:
349
+ type: optional<string>
350
+ docs: The ID of the specific redirect rule
351
+ fromUrl:
352
+ type: optional<string>
353
+ docs: The source URL path that will be redirected.
354
+ toUrl:
355
+ type: optional<string>
356
+ docs: The target URL path where the user or client will be redirected.
357
+ source:
358
+ openapi: ../../../openapi/referenced-specs/v2.yml
359
+ Pagination:
360
+ docs: Pagination object
361
+ properties:
362
+ limit:
363
+ type: optional<double>
364
+ docs: The limit used for pagination
365
+ offset:
366
+ type: optional<double>
367
+ docs: The offset used for pagination
368
+ total:
369
+ type: optional<double>
370
+ docs: The total number of records
371
+ source:
372
+ openapi: ../../../openapi/referenced-specs/v2.yml
373
+ Redirects:
374
+ docs: Site redirects response
375
+ properties:
376
+ redirects:
377
+ type: optional<list<Redirect>>
378
+ docs: List of redirects for a given site
379
+ pagination: optional<Pagination>
380
+ source:
381
+ openapi: ../../../openapi/referenced-specs/v2.yml
382
+ SitePlanId:
383
+ enum:
384
+ - value: hosting-basic-v3
385
+ name: HostingBasicV3
386
+ - value: hosting-cms-v3
387
+ name: HostingCmsV3
388
+ - value: hosting-business-v3
389
+ name: HostingBusinessV3
390
+ - value: hosting-ecommerce-standard-v2
391
+ name: HostingEcommerceStandardV2
392
+ - value: hosting-ecommerce-plus-v2
393
+ name: HostingEcommercePlusV2
394
+ - value: hosting-ecommerce-advanced-v2
395
+ name: HostingEcommerceAdvancedV2
396
+ - value: hosting-basic-v4
397
+ name: HostingBasicV4
398
+ - value: hosting-cms-v4
399
+ name: HostingCmsV4
400
+ - value: hosting-business-v4
401
+ name: HostingBusinessV4
402
+ - value: hosting-ecommerce-standard-v3
403
+ name: HostingEcommerceStandardV3
404
+ - value: hosting-ecommerce-plus-v3
405
+ name: HostingEcommercePlusV3
406
+ - value: hosting-ecommerce-advanced-v3
407
+ name: HostingEcommerceAdvancedV3
408
+ docs: ID of the hosting plan.
409
+ inline: true
410
+ source:
411
+ openapi: ../../../openapi/referenced-specs/v2.yml
412
+ SitePlanName:
413
+ enum:
414
+ - value: Basic Hosting
415
+ name: BasicHosting
416
+ - value: CMS Hosting
417
+ name: CmsHosting
418
+ - value: Business Hosting
419
+ name: BusinessHosting
420
+ - value: ECommerce Standard Hosting
421
+ name: ECommerceStandardHosting
422
+ - value: ECommerce Plus Hosting
423
+ name: ECommercePlusHosting
424
+ - value: ECommerce Advanced Hosting
425
+ name: ECommerceAdvancedHosting
426
+ docs: Name of the hosting plan.
427
+ inline: true
428
+ source:
429
+ openapi: ../../../openapi/referenced-specs/v2.yml
430
+ SitePlan:
431
+ properties:
432
+ id:
433
+ type: optional<SitePlanId>
434
+ docs: ID of the hosting plan.
435
+ name:
436
+ type: optional<SitePlanName>
437
+ docs: Name of the hosting plan.
438
+ pricingInfo:
439
+ type: optional<string>
440
+ docs: URL for more information about Webflow hosting plan pricing.
441
+ source:
442
+ openapi: ../../../openapi/referenced-specs/v2.yml
342
443
  SiteActivityLogItemEvent:
343
444
  enum:
344
445
  - styles_modified
@@ -383,8 +484,9 @@ types:
383
484
  - branch_review_created
384
485
  - branch_review_approved
385
486
  - branch_review_canceled
487
+ inline: true
386
488
  source:
387
- openapi: ../../../referenced-specs/v2.yml
489
+ openapi: ../../../openapi/referenced-specs/v2.yml
388
490
  SiteActivityLogItemResourceOperation:
389
491
  enum:
390
492
  - CREATED
@@ -396,14 +498,15 @@ types:
396
498
  - GROUP_CREATED
397
499
  - GROUP_DELETED
398
500
  - REORDERED
501
+ inline: true
399
502
  source:
400
- openapi: ../../../referenced-specs/v2.yml
503
+ openapi: ../../../openapi/referenced-specs/v2.yml
401
504
  SiteActivityLogItemUser:
402
505
  properties:
403
506
  id: optional<string>
404
507
  displayName: optional<string>
405
508
  source:
406
- openapi: ../../../referenced-specs/v2.yml
509
+ openapi: ../../../openapi/referenced-specs/v2.yml
407
510
  inline: true
408
511
  SiteActivityLogItem:
409
512
  properties:
@@ -419,29 +522,13 @@ types:
419
522
  previousValue: optional<string>
420
523
  payload: optional<map<string, unknown>>
421
524
  source:
422
- openapi: ../../../referenced-specs/v2.yml
423
- Pagination:
424
- docs: Pagination object
425
- properties:
426
- limit:
427
- type: optional<double>
428
- docs: The limit used for pagination
429
- offset:
430
- type: optional<double>
431
- docs: The offset used for pagination
432
- total:
433
- type: optional<double>
434
- docs: The total number of records
435
- source:
436
- openapi: ../../../referenced-specs/v2.yml
525
+ openapi: ../../../openapi/referenced-specs/v2.yml
437
526
  SiteActivityLogResponse:
438
527
  properties:
439
528
  items: optional<list<SiteActivityLogItem>>
440
529
  pagination: optional<Pagination>
441
530
  source:
442
- openapi: ../../../referenced-specs/v2.yml
443
- InvalidScopes: unknown
444
- NotEnterprisePlanSite: unknown
531
+ openapi: ../../../openapi/referenced-specs/v2.yml
445
532
  CollectionListArrayItem:
446
533
  docs: A collection object
447
534
  properties:
@@ -466,32 +553,33 @@ types:
466
553
  type: optional<datetime>
467
554
  docs: The date the collection was last updated
468
555
  source:
469
- openapi: ../../../referenced-specs/v2.yml
556
+ openapi: ../../../openapi/referenced-specs/v2.yml
470
557
  CollectionList:
471
558
  properties:
472
559
  collections:
473
560
  type: optional<list<CollectionListArrayItem>>
474
561
  docs: An array of Collections
475
562
  source:
476
- openapi: ../../../referenced-specs/v2.yml
563
+ openapi: ../../../openapi/referenced-specs/v2.yml
477
564
  FieldType:
478
565
  enum:
479
- - PlainText
480
- - RichText
566
+ - Color
567
+ - DateTime
568
+ - Email
569
+ - ExtFileRef
481
570
  - Image
482
- - MultiImage
483
- - Video
484
571
  - Link
485
- - Email
486
- - Phone
572
+ - MultiImage
487
573
  - Number
488
- - DateTime
574
+ - Phone
575
+ - PlainText
576
+ - RichText
489
577
  - Switch
490
- - Color
491
- - ExtFileRef
578
+ - Video
492
579
  docs: Choose these appropriate field type for your collection data
580
+ inline: true
493
581
  source:
494
- openapi: ../../../referenced-specs/v2.yml
582
+ openapi: ../../../openapi/referenced-specs/v2.yml
495
583
  Field:
496
584
  docs: The details of a field in a collection
497
585
  properties:
@@ -519,7 +607,7 @@ types:
519
607
  type: optional<string>
520
608
  docs: Additional text to help anyone filling out this field
521
609
  source:
522
- openapi: ../../../referenced-specs/v2.yml
610
+ openapi: ../../../openapi/referenced-specs/v2.yml
523
611
  Collection:
524
612
  docs: A collection object
525
613
  properties:
@@ -547,27 +635,36 @@ types:
547
635
  docs: The list of fields in the Collection
548
636
  type: list<Field>
549
637
  source:
550
- openapi: ../../../referenced-specs/v2.yml
638
+ openapi: ../../../openapi/referenced-specs/v2.yml
551
639
  CollectionItemFieldData:
552
640
  properties:
553
641
  name:
554
- type: optional<string>
642
+ type: string
555
643
  docs: Name of the Item
556
644
  slug:
557
- type: optional<string>
645
+ type: string
558
646
  docs: >-
559
647
  URL structure of the Item in your site. Note: Updates to an item slug
560
648
  will break all links referencing the old slug.
561
649
  extra-properties: true
562
650
  source:
563
- openapi: ../../../referenced-specs/v2.yml
651
+ openapi: ../../../openapi/referenced-specs/v2.yml
564
652
  inline: true
565
653
  CollectionItem:
566
654
  docs: >
567
- The fields that define the schema for a given Item are based on the
568
- Collection that Item belongs to. Beyond the user defined fields, there are
569
- a handful of additional fields that are automatically created for all
570
- items
655
+ A Collection Item represents a single entry in your collection. Each item
656
+ includes:
657
+
658
+
659
+ - **System metadata** - Automatically managed fields like IDs and
660
+ timestamp <br/>
661
+
662
+ - **Status flags** - Controls for managing content state: `isDraft`,
663
+ `isArchived `<br/>
664
+
665
+ - **Content fields** - Stored in `fieldData`. Each item needs a `name` and
666
+ `slug`, and may include additional fields matching your collection's
667
+ schema definition.
571
668
  properties:
572
669
  id:
573
670
  type: optional<string>
@@ -592,9 +689,9 @@ types:
592
689
  type: optional<boolean>
593
690
  docs: Boolean determining if the Item is set to draft
594
691
  default: false
595
- fieldData: optional<CollectionItemFieldData>
692
+ fieldData: CollectionItemFieldData
596
693
  source:
597
- openapi: ../../../referenced-specs/v2.yml
694
+ openapi: ../../../openapi/referenced-specs/v2.yml
598
695
  CollectionItemListPagination:
599
696
  properties:
600
697
  limit:
@@ -609,7 +706,7 @@ types:
609
706
  type: optional<double>
610
707
  docs: Total number of items in the collection
611
708
  source:
612
- openapi: ../../../referenced-specs/v2.yml
709
+ openapi: ../../../openapi/referenced-specs/v2.yml
613
710
  inline: true
614
711
  CollectionItemList:
615
712
  docs: Results from collection items list
@@ -619,7 +716,63 @@ types:
619
716
  docs: List of Items within the collection
620
717
  pagination: optional<CollectionItemListPagination>
621
718
  source:
622
- openapi: ../../../referenced-specs/v2.yml
719
+ openapi: ../../../openapi/referenced-specs/v2.yml
720
+ CollectionItemPostSingleFieldData:
721
+ properties:
722
+ name:
723
+ type: string
724
+ docs: Name of the Item
725
+ slug:
726
+ type: string
727
+ docs: >-
728
+ URL structure of the Item in your site. Note: Updates to an item slug
729
+ will break all links referencing the old slug.
730
+ extra-properties: true
731
+ source:
732
+ openapi: ../../../openapi/referenced-specs/v2.yml
733
+ inline: true
734
+ CollectionItemPostSingle:
735
+ docs: >
736
+ A Collection Item represents a single entry in your collection. Each item
737
+ includes:
738
+
739
+
740
+ - **System metadata** - Automatically managed fields like IDs and
741
+ timestamp <br/>
742
+
743
+ - **Status flags** - Controls for managing content state: `isDraft`,
744
+ `isArchived `<br/>
745
+
746
+ - **Content fields** - Stored in `fieldData`. Each item needs a `name` and
747
+ `slug`, and may include additional fields matching your collection's
748
+ schema definition.
749
+ properties:
750
+ id:
751
+ type: optional<string>
752
+ docs: Unique identifier for the Item
753
+ cmsLocaleId:
754
+ type: optional<string>
755
+ docs: Identifier for the locale of the CMS item
756
+ lastPublished:
757
+ type: optional<string>
758
+ docs: The date the item was last published
759
+ lastUpdated:
760
+ type: optional<string>
761
+ docs: The date the item was last updated
762
+ createdOn:
763
+ type: optional<string>
764
+ docs: The date the item was created
765
+ isArchived:
766
+ type: optional<boolean>
767
+ docs: Boolean determining if the Item is in an archived state.
768
+ default: false
769
+ isDraft:
770
+ type: optional<boolean>
771
+ docs: Boolean determining if the Item is in a draft state.
772
+ default: false
773
+ fieldData: CollectionItemPostSingleFieldData
774
+ source:
775
+ openapi: ../../../openapi/referenced-specs/v2.yml
623
776
  CollectionItemWithIdInputFieldData:
624
777
  properties:
625
778
  name:
@@ -632,7 +785,7 @@ types:
632
785
  will break all links referencing the old slug.
633
786
  extra-properties: true
634
787
  source:
635
- openapi: ../../../referenced-specs/v2.yml
788
+ openapi: ../../../openapi/referenced-specs/v2.yml
636
789
  inline: true
637
790
  CollectionItemWithIdInput:
638
791
  docs: >
@@ -659,14 +812,12 @@ types:
659
812
  isArchived:
660
813
  type: optional<boolean>
661
814
  docs: Boolean determining if the Item is set to archived
662
- default: false
663
815
  isDraft:
664
816
  type: optional<boolean>
665
817
  docs: Boolean determining if the Item is set to draft
666
- default: false
667
818
  fieldData: optional<CollectionItemWithIdInputFieldData>
668
819
  source:
669
- openapi: ../../../referenced-specs/v2.yml
820
+ openapi: ../../../openapi/referenced-specs/v2.yml
670
821
  CollectionItemListNoPagination:
671
822
  docs: Results from collection items list
672
823
  properties:
@@ -674,7 +825,7 @@ types:
674
825
  type: optional<list<CollectionItem>>
675
826
  docs: List of Items within the collection
676
827
  source:
677
- openapi: ../../../referenced-specs/v2.yml
828
+ openapi: ../../../openapi/referenced-specs/v2.yml
678
829
  BulkCollectionItemFieldData:
679
830
  properties:
680
831
  name:
@@ -687,7 +838,7 @@ types:
687
838
  will break all links referencing the old slug.
688
839
  extra-properties: true
689
840
  source:
690
- openapi: ../../../referenced-specs/v2.yml
841
+ openapi: ../../../openapi/referenced-specs/v2.yml
691
842
  inline: true
692
843
  BulkCollectionItem:
693
844
  docs: >
@@ -721,7 +872,52 @@ types:
721
872
  default: false
722
873
  fieldData: optional<BulkCollectionItemFieldData>
723
874
  source:
724
- openapi: ../../../referenced-specs/v2.yml
875
+ openapi: ../../../openapi/referenced-specs/v2.yml
876
+ CollectionItemPatchSingleFieldData:
877
+ properties:
878
+ name:
879
+ type: optional<string>
880
+ docs: Name of the Item
881
+ slug:
882
+ type: optional<string>
883
+ docs: >-
884
+ URL structure of the Item in your site. Note: Updates to an item slug
885
+ will break all links referencing the old slug.
886
+ extra-properties: true
887
+ source:
888
+ openapi: ../../../openapi/referenced-specs/v2.yml
889
+ inline: true
890
+ CollectionItemPatchSingle:
891
+ docs: >
892
+ The fields that define the schema for a given Item are based on the
893
+ Collection that Item belongs to. Beyond the user defined fields, there are
894
+ a handful of additional fields that are automatically created for all
895
+ items
896
+ properties:
897
+ id:
898
+ type: optional<string>
899
+ docs: Unique identifier for the Item
900
+ cmsLocaleId:
901
+ type: optional<string>
902
+ docs: Identifier for the locale of the CMS item
903
+ lastPublished:
904
+ type: optional<string>
905
+ docs: The date the item was last published
906
+ lastUpdated:
907
+ type: optional<string>
908
+ docs: The date the item was last updated
909
+ createdOn:
910
+ type: optional<string>
911
+ docs: The date the item was created
912
+ isArchived:
913
+ type: optional<boolean>
914
+ docs: Boolean determining if the Item is set to archived
915
+ isDraft:
916
+ type: optional<boolean>
917
+ docs: Boolean determining if the Item is set to draft
918
+ fieldData: optional<CollectionItemPatchSingleFieldData>
919
+ source:
920
+ openapi: ../../../openapi/referenced-specs/v2.yml
725
921
  PageSeo:
726
922
  docs: SEO-related fields for the Page
727
923
  properties:
@@ -732,7 +928,7 @@ types:
732
928
  type: optional<string>
733
929
  docs: The Page description shown in search engine results
734
930
  source:
735
- openapi: ../../../referenced-specs/v2.yml
931
+ openapi: ../../../openapi/referenced-specs/v2.yml
736
932
  inline: true
737
933
  PageOpenGraph:
738
934
  docs: Open Graph fields for the Page
@@ -754,7 +950,7 @@ types:
754
950
  description
755
951
  default: true
756
952
  source:
757
- openapi: ../../../referenced-specs/v2.yml
953
+ openapi: ../../../openapi/referenced-specs/v2.yml
758
954
  inline: true
759
955
  Page:
760
956
  docs: The Page object
@@ -824,25 +1020,47 @@ types:
824
1020
  type: optional<string>
825
1021
  docs: Relative path of the published page URL
826
1022
  source:
827
- openapi: ../../../referenced-specs/v2.yml
1023
+ openapi: ../../../openapi/referenced-specs/v2.yml
828
1024
  PageList:
829
1025
  docs: The Page object
830
1026
  properties:
831
1027
  pages: optional<list<Page>>
832
1028
  pagination: optional<Pagination>
833
1029
  source:
834
- openapi: ../../../referenced-specs/v2.yml
1030
+ openapi: ../../../openapi/referenced-specs/v2.yml
1031
+ TextNodeText:
1032
+ properties:
1033
+ html:
1034
+ type: optional<string>
1035
+ docs: The HTML content of the text node.
1036
+ text:
1037
+ type: optional<string>
1038
+ docs: The raw text content of the text node.
1039
+ source:
1040
+ openapi: ../../../openapi/referenced-specs/v2.yml
1041
+ inline: true
835
1042
  TextNode:
836
1043
  docs: >
837
- Represents textual content within the DOM. It contains both the raw text
838
- and its HTML representation, allowing for flexibility in rendering and
839
- processing. Additional attributes can be associated with the text for
840
- styling or other purposes.
1044
+ Represents text content within the DOM. It contains both the raw text and
1045
+ its HTML representation. Additional attributes can be associated with the
1046
+ text for styling or other purposes.
841
1047
  properties:
842
- html: optional<string>
843
- text: optional<string>
1048
+ id:
1049
+ type: optional<string>
1050
+ docs: Node UUID
1051
+ text: optional<TextNodeText>
1052
+ attributes:
1053
+ type: optional<map<string, string>>
1054
+ docs: The custom attributes of the node
844
1055
  source:
845
- openapi: ../../../referenced-specs/v2.yml
1056
+ openapi: ../../../openapi/referenced-specs/v2.yml
1057
+ ImageNodeImage:
1058
+ properties:
1059
+ alt: optional<string>
1060
+ assetId: optional<string>
1061
+ source:
1062
+ openapi: ../../../openapi/referenced-specs/v2.yml
1063
+ inline: true
846
1064
  ImageNode:
847
1065
  docs: >
848
1066
  Represents an image within the DOM. It contains details about the image,
@@ -850,41 +1068,97 @@ types:
850
1068
  identifier for fetching the actual image resource. Additional attributes
851
1069
  can be associated with the image for styling or other purposes.
852
1070
  properties:
853
- alt: optional<string>
854
- assetId: optional<string>
1071
+ id:
1072
+ type: optional<string>
1073
+ docs: Node UUID
1074
+ image: optional<ImageNodeImage>
1075
+ attributes:
1076
+ type: optional<map<string, string>>
1077
+ docs: The custom attributes of the node
1078
+ source:
1079
+ openapi: ../../../openapi/referenced-specs/v2.yml
1080
+ Text:
1081
+ properties:
1082
+ html:
1083
+ type: optional<string>
1084
+ docs: The HTML content of the text node.
1085
+ text:
1086
+ type: optional<string>
1087
+ docs: The raw text content of the text node.
855
1088
  source:
856
- openapi: ../../../referenced-specs/v2.yml
857
- NodeType:
1089
+ openapi: ../../../openapi/referenced-specs/v2.yml
1090
+ ComponentPropertyType:
858
1091
  enum:
859
- - text
860
- - image
1092
+ - value: Plain Text
1093
+ name: PlainText
1094
+ - value: Rich Text
1095
+ name: RichText
1096
+ - value: Alt Text
1097
+ name: AltText
1098
+ docs: The type of the property.
1099
+ inline: true
861
1100
  source:
862
- openapi: ../../../referenced-specs/v2.yml
863
- Node:
1101
+ openapi: ../../../openapi/referenced-specs/v2.yml
1102
+ ComponentProperty:
864
1103
  docs: >
865
- A generic representation of a content element within the Document Object
866
- Model (DOM). Each node has a unique identifier and a specific type that
867
- determines its content structure and attributes.
1104
+ Represents a property of a component instance in the DOM. A property
1105
+ contains a list of both the raw text and the HTML representation, allowing
1106
+ for flexibility in rendering and processing. Additional attributes can be
1107
+ associated with the text for styling or other purposes.
1108
+ properties:
1109
+ propertyId:
1110
+ type: optional<string>
1111
+ docs: The ID of the property.
1112
+ type:
1113
+ type: optional<ComponentPropertyType>
1114
+ docs: The type of the property.
1115
+ label:
1116
+ type: optional<string>
1117
+ docs: The label of the property in the UI.
1118
+ text:
1119
+ type: optional<Text>
1120
+ docs: >-
1121
+ Represents text content within the DOM. It contains both the raw text
1122
+ and its HTML representation.
1123
+ source:
1124
+ openapi: ../../../openapi/referenced-specs/v2.yml
1125
+ ComponentNode:
1126
+ docs: >
1127
+ Represents a component instance within the DOM. It contains details about
1128
+ the component instance, such as its type and properties.
868
1129
  properties:
869
1130
  id:
870
1131
  type: optional<string>
871
1132
  docs: Node UUID
872
- type: optional<NodeType>
873
- text: optional<TextNode>
874
- image: optional<ImageNode>
875
- attributes:
876
- type: optional<map<string, string>>
877
- docs: The custom attributes of the node
1133
+ componentId:
1134
+ type: optional<string>
1135
+ docs: Component ID
1136
+ propertyOverrides:
1137
+ type: optional<list<ComponentProperty>>
1138
+ docs: List of component properties with overrides for a component instance.
878
1139
  source:
879
- openapi: ../../../referenced-specs/v2.yml
1140
+ openapi: ../../../openapi/referenced-specs/v2.yml
1141
+ Node:
1142
+ discriminant: type
1143
+ base-properties: {}
1144
+ docs: >
1145
+ A generic representation of a content element within the Document Object
1146
+ Model (DOM). Each node has a unique identifier and a specific type that
1147
+ determines its content structure and attributes.
1148
+ union:
1149
+ text: TextNode
1150
+ image: ImageNode
1151
+ component-instance: ComponentNode
1152
+ source:
1153
+ openapi: ../../../openapi/referenced-specs/v2.yml
880
1154
  Dom:
881
1155
  docs: >
882
1156
  The DOM (Document Object Model) schema represents the content structure of
883
- a web page. It captures various content nodes, such as text and images,
884
- along with their associated attributes. Each node has a unique identifier
885
- and can be of different types like text or image. The schema also provides
886
- pagination details for scenarios where the content nodes are too many to
887
- be fetched in a single request.
1157
+ a web page or component. It captures various content nodes along with
1158
+ their associated attributes. Each node has a unique identifier and can be
1159
+ of different types like text, image or component-instance. The schema also
1160
+ provides pagination details for scenarios where the content nodes are too
1161
+ many to be fetched in a single request.
888
1162
  properties:
889
1163
  pageId:
890
1164
  type: optional<string>
@@ -892,7 +1166,114 @@ types:
892
1166
  nodes: optional<list<Node>>
893
1167
  pagination: optional<Pagination>
894
1168
  source:
895
- openapi: ../../../referenced-specs/v2.yml
1169
+ openapi: ../../../openapi/referenced-specs/v2.yml
1170
+ TextNodeWrite:
1171
+ docs: Update a text node
1172
+ properties:
1173
+ nodeId:
1174
+ type: string
1175
+ docs: Node UUID
1176
+ text:
1177
+ type: string
1178
+ docs: >-
1179
+ HTML content of the node, including the HTML tag. The HTML tags must
1180
+ be the same as what's returned from the Get Content endpoint.
1181
+ source:
1182
+ openapi: ../../../openapi/referenced-specs/v2.yml
1183
+ ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem:
1184
+ properties:
1185
+ propertyId:
1186
+ type: string
1187
+ docs: The ID of the property.
1188
+ text:
1189
+ type: string
1190
+ docs: >
1191
+ The new string or HTML value used to override the component instance
1192
+ property value.
1193
+
1194
+ The provided value must be compatible with the type of the component
1195
+ instance property.
1196
+
1197
+ For example, attempting to override a single-line plain-text property
1198
+ with a multi-line
1199
+
1200
+ value will result in an error.
1201
+ source:
1202
+ openapi: ../../../openapi/referenced-specs/v2.yml
1203
+ inline: true
1204
+ ComponentInstanceNodePropertyOverridesWrite:
1205
+ docs: Update text property overrides of a component instance
1206
+ properties:
1207
+ nodeId:
1208
+ type: string
1209
+ docs: Node UUID
1210
+ propertyOverrides:
1211
+ docs: >-
1212
+ A list of component instance properties to override within the
1213
+ specified secondary locale.
1214
+ type: list<ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem>
1215
+ source:
1216
+ openapi: ../../../openapi/referenced-specs/v2.yml
1217
+ Component:
1218
+ docs: The Component object
1219
+ properties:
1220
+ id:
1221
+ type: string
1222
+ docs: Unique identifier for the Component
1223
+ name:
1224
+ type: optional<string>
1225
+ docs: Component Name
1226
+ group:
1227
+ type: optional<string>
1228
+ docs: The group that the component belongs to
1229
+ description:
1230
+ type: optional<string>
1231
+ docs: Component Description
1232
+ readonly:
1233
+ type: optional<boolean>
1234
+ docs: >-
1235
+ Indicates whether the component is read-only. Components that cannot
1236
+ be updated within this Site are set to readonly. Workspace Libraries
1237
+ are a good example.
1238
+ source:
1239
+ openapi: ../../../openapi/referenced-specs/v2.yml
1240
+ ComponentList:
1241
+ docs: List of Components on a site.
1242
+ properties:
1243
+ components: optional<list<Component>>
1244
+ pagination: optional<Pagination>
1245
+ source:
1246
+ openapi: ../../../openapi/referenced-specs/v2.yml
1247
+ ComponentDom:
1248
+ docs: >
1249
+ The Component DOM schema represents the content structure of a component.
1250
+ Similar to Page DOM, it captures various content nodes and their
1251
+ associated attributes, but specifically for a component's structure. Each
1252
+ node has a unique identifier and can contain text, images, or nested
1253
+ component instances.
1254
+ properties:
1255
+ componentId:
1256
+ type: optional<string>
1257
+ docs: Component ID
1258
+ nodes: optional<list<Node>>
1259
+ pagination: optional<Pagination>
1260
+ source:
1261
+ openapi: ../../../openapi/referenced-specs/v2.yml
1262
+ ComponentProperties:
1263
+ docs: >
1264
+ The Component Properties schema represents a list of properties that store
1265
+ text content. Each property has a unique identifier and can be of
1266
+ different types like plain text or rich text. The schema also provides
1267
+ pagination details for scenarios where there more properties than the
1268
+ limit.
1269
+ properties:
1270
+ componentId:
1271
+ type: optional<string>
1272
+ docs: Component ID
1273
+ properties: optional<list<ComponentProperty>>
1274
+ pagination: optional<Pagination>
1275
+ source:
1276
+ openapi: ../../../openapi/referenced-specs/v2.yml
896
1277
  ScriptApplyLocation:
897
1278
  enum:
898
1279
  - header
@@ -901,8 +1282,9 @@ types:
901
1282
  Location of the script, either in the header or footer of the published
902
1283
  site
903
1284
  default: header
1285
+ inline: true
904
1286
  source:
905
- openapi: ../../../referenced-specs/v2.yml
1287
+ openapi: ../../../openapi/referenced-specs/v2.yml
906
1288
  ScriptApply:
907
1289
  properties:
908
1290
  id:
@@ -923,7 +1305,7 @@ types:
923
1305
  Developer-specified key/value pairs to be applied as attributes to the
924
1306
  script
925
1307
  source:
926
- openapi: ../../../referenced-specs/v2.yml
1308
+ openapi: ../../../openapi/referenced-specs/v2.yml
927
1309
  ScriptApplyList:
928
1310
  properties:
929
1311
  scripts:
@@ -936,7 +1318,7 @@ types:
936
1318
  type: optional<string>
937
1319
  docs: Date when the Site's scripts were created
938
1320
  source:
939
- openapi: ../../../referenced-specs/v2.yml
1321
+ openapi: ../../../openapi/referenced-specs/v2.yml
940
1322
  CustomCodeHostedResponse:
941
1323
  docs: Registered custom code for application
942
1324
  properties:
@@ -972,13 +1354,13 @@ types:
972
1354
  type: optional<string>
973
1355
  docs: A Semantic Version (SemVer) string, denoting the version of the script
974
1356
  source:
975
- openapi: ../../../referenced-specs/v2.yml
1357
+ openapi: ../../../openapi/referenced-specs/v2.yml
976
1358
  RegisteredScriptList:
977
1359
  docs: A list of scripts registered to the site
978
1360
  properties:
979
1361
  registeredScripts: optional<list<CustomCodeHostedResponse>>
980
1362
  source:
981
- openapi: ../../../referenced-specs/v2.yml
1363
+ openapi: ../../../openapi/referenced-specs/v2.yml
982
1364
  CustomCodeInlineResponse:
983
1365
  docs: Registered custom code for application
984
1366
  properties:
@@ -1014,7 +1396,7 @@ types:
1014
1396
  type: optional<string>
1015
1397
  docs: A Semantic Version (SemVer) string, denoting the version of the script
1016
1398
  source:
1017
- openapi: ../../../referenced-specs/v2.yml
1399
+ openapi: ../../../openapi/referenced-specs/v2.yml
1018
1400
  Scripts:
1019
1401
  docs: A list of scripts applied to a Site or a Page
1020
1402
  type: list<ScriptApply>
@@ -1023,8 +1405,9 @@ types:
1023
1405
  - page
1024
1406
  - site
1025
1407
  docs: Whether the Custom Code script is applied at the Site-level or Page-level
1408
+ inline: true
1026
1409
  source:
1027
- openapi: ../../../referenced-specs/v2.yml
1410
+ openapi: ../../../openapi/referenced-specs/v2.yml
1028
1411
  CustomCodeBlock:
1029
1412
  docs: A specific instance of Custom Code applied to a Site or Page
1030
1413
  properties:
@@ -1047,14 +1430,14 @@ types:
1047
1430
  type: optional<datetime>
1048
1431
  docs: The date the Block was most recently updated
1049
1432
  source:
1050
- openapi: ../../../referenced-specs/v2.yml
1433
+ openapi: ../../../openapi/referenced-specs/v2.yml
1051
1434
  ListCustomCodeBlocks:
1052
1435
  docs: Custom Code Blocks corresponding to where scripts were applied
1053
1436
  properties:
1054
1437
  blocks: optional<list<CustomCodeBlock>>
1055
1438
  pagination: optional<Pagination>
1056
1439
  source:
1057
- openapi: ../../../referenced-specs/v2.yml
1440
+ openapi: ../../../openapi/referenced-specs/v2.yml
1058
1441
  AssetVariant:
1059
1442
  properties:
1060
1443
  hostedUrl:
@@ -1084,7 +1467,7 @@ types:
1084
1467
  type: optional<string>
1085
1468
  docs: Any associated validation errors
1086
1469
  source:
1087
- openapi: ../../../referenced-specs/v2.yml
1470
+ openapi: ../../../openapi/referenced-specs/v2.yml
1088
1471
  Asset:
1089
1472
  properties:
1090
1473
  id:
@@ -1121,13 +1504,13 @@ types:
1121
1504
  type: optional<string>
1122
1505
  docs: The visual description of the asset
1123
1506
  source:
1124
- openapi: ../../../referenced-specs/v2.yml
1507
+ openapi: ../../../openapi/referenced-specs/v2.yml
1125
1508
  Assets:
1126
1509
  docs: A list of assets
1127
1510
  properties:
1128
1511
  assets: optional<list<Asset>>
1129
1512
  source:
1130
- openapi: ../../../referenced-specs/v2.yml
1513
+ openapi: ../../../openapi/referenced-specs/v2.yml
1131
1514
  AssetUploadUploadDetails:
1132
1515
  docs: Metadata for uploading the asset binary
1133
1516
  properties:
@@ -1143,7 +1526,7 @@ types:
1143
1526
  content-type: optional<string>
1144
1527
  Cache-Control: optional<string>
1145
1528
  source:
1146
- openapi: ../../../referenced-specs/v2.yml
1529
+ openapi: ../../../openapi/referenced-specs/v2.yml
1147
1530
  inline: true
1148
1531
  AssetUpload:
1149
1532
  properties:
@@ -1181,7 +1564,7 @@ types:
1181
1564
  type: optional<datetime>
1182
1565
  docs: Date the asset metadata was last updated
1183
1566
  source:
1184
- openapi: ../../../referenced-specs/v2.yml
1567
+ openapi: ../../../openapi/referenced-specs/v2.yml
1185
1568
  AssetFolder:
1186
1569
  docs: Asset Folder details
1187
1570
  properties:
@@ -1207,7 +1590,7 @@ types:
1207
1590
  type: optional<datetime>
1208
1591
  docs: Date that the Asset Folder was last updated on
1209
1592
  source:
1210
- openapi: ../../../referenced-specs/v2.yml
1593
+ openapi: ../../../openapi/referenced-specs/v2.yml
1211
1594
  AssetFolderList:
1212
1595
  docs: The Asset Folders object
1213
1596
  properties:
@@ -1216,7 +1599,7 @@ types:
1216
1599
  docs: A list of Asset folders
1217
1600
  pagination: optional<Pagination>
1218
1601
  source:
1219
- openapi: ../../../referenced-specs/v2.yml
1602
+ openapi: ../../../openapi/referenced-specs/v2.yml
1220
1603
  TriggerType:
1221
1604
  enum:
1222
1605
  - form_submission
@@ -1276,17 +1659,17 @@ types:
1276
1659
  * `collection_item_unpublished` - Sends the
1277
1660
  [collection_item_unpublished](#collection_item_unpublished) event
1278
1661
  source:
1279
- openapi: ../../../referenced-specs/v2.yml
1662
+ openapi: ../../../openapi/referenced-specs/v2.yml
1280
1663
  WebhookFilter:
1281
1664
  docs: >-
1282
1665
  Only supported for the `form_submission` trigger type. Filter for the form
1283
- you want Webhooks to be sent for.
1666
+ you want Webhooks to be sent for.
1284
1667
  properties:
1285
1668
  name:
1286
1669
  type: optional<string>
1287
1670
  docs: The name of the form you'd like to recieve notifications for.
1288
1671
  source:
1289
- openapi: ../../../referenced-specs/v2.yml
1672
+ openapi: ../../../openapi/referenced-specs/v2.yml
1290
1673
  inline: true
1291
1674
  Webhook:
1292
1675
  properties:
@@ -1307,7 +1690,7 @@ types:
1307
1690
  type: optional<WebhookFilter>
1308
1691
  docs: >-
1309
1692
  Only supported for the `form_submission` trigger type. Filter for the
1310
- form you want Webhooks to be sent for.
1693
+ form you want Webhooks to be sent for.
1311
1694
  lastTriggered:
1312
1695
  type: optional<datetime>
1313
1696
  docs: Date the Webhook instance was last triggered
@@ -1315,13 +1698,13 @@ types:
1315
1698
  type: optional<datetime>
1316
1699
  docs: Date the Webhook registration was created
1317
1700
  source:
1318
- openapi: ../../../referenced-specs/v2.yml
1701
+ openapi: ../../../openapi/referenced-specs/v2.yml
1319
1702
  WebhookList:
1320
1703
  properties:
1321
1704
  pagination: optional<Pagination>
1322
1705
  webhooks: optional<list<Webhook>>
1323
1706
  source:
1324
- openapi: ../../../referenced-specs/v2.yml
1707
+ openapi: ../../../openapi/referenced-specs/v2.yml
1325
1708
  FormFieldValueType:
1326
1709
  enum:
1327
1710
  - Plain
@@ -1330,8 +1713,9 @@ types:
1330
1713
  - Phone
1331
1714
  - Number
1332
1715
  docs: The field type
1716
+ inline: true
1333
1717
  source:
1334
- openapi: ../../../referenced-specs/v2.yml
1718
+ openapi: ../../../openapi/referenced-specs/v2.yml
1335
1719
  FormFieldValue:
1336
1720
  docs: An object containing field info for a specific fieldID.
1337
1721
  properties:
@@ -1348,7 +1732,8 @@ types:
1348
1732
  type: optional<boolean>
1349
1733
  docs: Whether the field is visible to the user
1350
1734
  source:
1351
- openapi: ../../../referenced-specs/v2.yml
1735
+ openapi: ../../../openapi/referenced-specs/v2.yml
1736
+ inline: true
1352
1737
  FormField:
1353
1738
  type: map<string, FormFieldValue>
1354
1739
  docs: A collection of form fields with additional properties.
@@ -1368,7 +1753,7 @@ types:
1368
1753
  type: optional<boolean>
1369
1754
  docs: Whether to send an email confirmation to the user
1370
1755
  source:
1371
- openapi: ../../../referenced-specs/v2.yml
1756
+ openapi: ../../../openapi/referenced-specs/v2.yml
1372
1757
  inline: true
1373
1758
  Form:
1374
1759
  docs: A Webflow form
@@ -1410,13 +1795,13 @@ types:
1410
1795
  type: optional<string>
1411
1796
  docs: The unique ID of the Workspace the Site belongs to
1412
1797
  source:
1413
- openapi: ../../../referenced-specs/v2.yml
1798
+ openapi: ../../../openapi/referenced-specs/v2.yml
1414
1799
  FormList:
1415
1800
  properties:
1416
1801
  forms: optional<list<Form>>
1417
1802
  pagination: optional<Pagination>
1418
1803
  source:
1419
- openapi: ../../../referenced-specs/v2.yml
1804
+ openapi: ../../../openapi/referenced-specs/v2.yml
1420
1805
  FormSubmission:
1421
1806
  properties:
1422
1807
  id:
@@ -1438,13 +1823,13 @@ types:
1438
1823
  type: optional<map<string, unknown>>
1439
1824
  docs: The data submitted in the Form
1440
1825
  source:
1441
- openapi: ../../../referenced-specs/v2.yml
1826
+ openapi: ../../../openapi/referenced-specs/v2.yml
1442
1827
  FormSubmissionList:
1443
1828
  properties:
1444
1829
  formSubmissions: optional<list<FormSubmission>>
1445
1830
  pagination: optional<Pagination>
1446
1831
  source:
1447
- openapi: ../../../referenced-specs/v2.yml
1832
+ openapi: ../../../openapi/referenced-specs/v2.yml
1448
1833
  UserDataData:
1449
1834
  properties:
1450
1835
  name:
@@ -1467,22 +1852,23 @@ types:
1467
1852
  type: optional<string>
1468
1853
  docs: Custom user attributes
1469
1854
  source:
1470
- openapi: ../../../referenced-specs/v2.yml
1855
+ openapi: ../../../openapi/referenced-specs/v2.yml
1471
1856
  inline: true
1472
1857
  UserData:
1473
1858
  docs: An object containing the User's basic info and custom fields
1474
1859
  properties:
1475
1860
  data: optional<UserDataData>
1476
1861
  source:
1477
- openapi: ../../../referenced-specs/v2.yml
1862
+ openapi: ../../../openapi/referenced-specs/v2.yml
1478
1863
  UserStatus:
1479
1864
  enum:
1480
1865
  - invited
1481
1866
  - verified
1482
1867
  - unverified
1483
1868
  docs: The status of the user
1869
+ inline: true
1484
1870
  source:
1485
- openapi: ../../../referenced-specs/v2.yml
1871
+ openapi: ../../../openapi/referenced-specs/v2.yml
1486
1872
  UserAccessGroupsItemType:
1487
1873
  enum:
1488
1874
  - admin
@@ -1491,8 +1877,9 @@ types:
1491
1877
  The type of access group based on how it was assigned to the user.
1492
1878
  * `admin` - Assigned to the user via API or in the designer
1493
1879
  * `ecommerce` - Assigned to the user via an ecommerce purchase
1880
+ inline: true
1494
1881
  source:
1495
- openapi: ../../../referenced-specs/v2.yml
1882
+ openapi: ../../../openapi/referenced-specs/v2.yml
1496
1883
  UserAccessGroupsItem:
1497
1884
  docs: Access group slugs and types
1498
1885
  properties:
@@ -1506,7 +1893,7 @@ types:
1506
1893
  * `admin` - Assigned to the user via API or in the designer
1507
1894
  * `ecommerce` - Assigned to the user via an ecommerce purchase
1508
1895
  source:
1509
- openapi: ../../../referenced-specs/v2.yml
1896
+ openapi: ../../../openapi/referenced-specs/v2.yml
1510
1897
  inline: true
1511
1898
  User:
1512
1899
  docs: >
@@ -1541,7 +1928,7 @@ types:
1541
1928
  docs: Access groups the user belongs to
1542
1929
  data: optional<UserData>
1543
1930
  source:
1544
- openapi: ../../../referenced-specs/v2.yml
1931
+ openapi: ../../../openapi/referenced-specs/v2.yml
1545
1932
  UserList:
1546
1933
  docs: The list users results
1547
1934
  properties:
@@ -1563,7 +1950,7 @@ types:
1563
1950
  type: optional<list<User>>
1564
1951
  docs: List of Users for a Site
1565
1952
  source:
1566
- openapi: ../../../referenced-specs/v2.yml
1953
+ openapi: ../../../openapi/referenced-specs/v2.yml
1567
1954
  UsersNotEnabled: unknown
1568
1955
  DuplicateUserEmail: unknown
1569
1956
  UserLimitReached: unknown
@@ -1589,7 +1976,7 @@ types:
1589
1976
  type: optional<datetime>
1590
1977
  docs: The date the Access Group was created
1591
1978
  source:
1592
- openapi: ../../../referenced-specs/v2.yml
1979
+ openapi: ../../../openapi/referenced-specs/v2.yml
1593
1980
  AccessGroupList:
1594
1981
  docs: The list access groups results
1595
1982
  properties:
@@ -1611,7 +1998,7 @@ types:
1611
1998
  type: optional<list<AccessGroup>>
1612
1999
  docs: List of Site Access Groups
1613
2000
  source:
1614
- openapi: ../../../referenced-specs/v2.yml
2001
+ openapi: ../../../openapi/referenced-specs/v2.yml
1615
2002
  SkuPropertyListEnumItem:
1616
2003
  docs: Enumerated Product variants/Options for the SKU
1617
2004
  properties:
@@ -1625,7 +2012,7 @@ types:
1625
2012
  type: string
1626
2013
  docs: Slug for the Product variant/Option in the Site URL structure
1627
2014
  source:
1628
- openapi: ../../../referenced-specs/v2.yml
2015
+ openapi: ../../../openapi/referenced-specs/v2.yml
1629
2016
  inline: true
1630
2017
  SkuPropertyList:
1631
2018
  docs: A variant/option type for a SKU
@@ -1642,7 +2029,7 @@ types:
1642
2029
  collection
1643
2030
  type: list<SkuPropertyListEnumItem>
1644
2031
  source:
1645
- openapi: ../../../referenced-specs/v2.yml
2032
+ openapi: ../../../openapi/referenced-specs/v2.yml
1646
2033
  ProductFieldDataTaxCategory:
1647
2034
  enum:
1648
2035
  - value: standard-taxable
@@ -1703,8 +2090,9 @@ types:
1703
2090
  - value: service-training
1704
2091
  name: ServiceTraining
1705
2092
  docs: Product tax class
2093
+ inline: true
1706
2094
  source:
1707
- openapi: ../../../referenced-specs/v2.yml
2095
+ openapi: ../../../openapi/referenced-specs/v2.yml
1708
2096
  ProductFieldDataEcProductType:
1709
2097
  enum:
1710
2098
  - ff42fee0113744f693a764e3431a9cc2
@@ -1716,8 +2104,9 @@ types:
1716
2104
  href="https://university.webflow.com/lesson/add-and-manage-products-and-categories?topics=ecommerce#how-to-understand-product-types">Product
1717
2105
  types.</a> Enums reflect the following values in order: Physical, Digital,
1718
2106
  Service, Advanced"
2107
+ inline: true
1719
2108
  source:
1720
- openapi: ../../../referenced-specs/v2.yml
2109
+ openapi: ../../../openapi/referenced-specs/v2.yml
1721
2110
  ProductFieldData:
1722
2111
  docs: >-
1723
2112
  Contains content-specific details for a product, covering both standard
@@ -1756,7 +2145,7 @@ types:
1756
2145
  types.</a> Enums reflect the following values in order: Physical,
1757
2146
  Digital, Service, Advanced"
1758
2147
  source:
1759
- openapi: ../../../referenced-specs/v2.yml
2148
+ openapi: ../../../openapi/referenced-specs/v2.yml
1760
2149
  Product:
1761
2150
  docs: The Product object
1762
2151
  properties:
@@ -1785,7 +2174,7 @@ types:
1785
2174
  default: false
1786
2175
  fieldData: optional<ProductFieldData>
1787
2176
  source:
1788
- openapi: ../../../referenced-specs/v2.yml
2177
+ openapi: ../../../openapi/referenced-specs/v2.yml
1789
2178
  SkuValueList:
1790
2179
  type: map<string, string>
1791
2180
  docs: >
@@ -1801,7 +2190,7 @@ types:
1801
2190
  type: optional<string>
1802
2191
  docs: Currency of Item
1803
2192
  source:
1804
- openapi: ../../../referenced-specs/v2.yml
2193
+ openapi: ../../../openapi/referenced-specs/v2.yml
1805
2194
  inline: true
1806
2195
  SkuFieldDataCompareAtPrice:
1807
2196
  docs: comparison price of SKU
@@ -1813,15 +2202,16 @@ types:
1813
2202
  type: optional<string>
1814
2203
  docs: Currency of Item
1815
2204
  source:
1816
- openapi: ../../../referenced-specs/v2.yml
2205
+ openapi: ../../../openapi/referenced-specs/v2.yml
1817
2206
  inline: true
1818
2207
  SkuFieldDataEcSkuBillingMethod:
1819
2208
  enum:
1820
2209
  - value: one-time
1821
2210
  name: OneTime
1822
2211
  - subscription
2212
+ inline: true
1823
2213
  source:
1824
- openapi: ../../../referenced-specs/v2.yml
2214
+ openapi: ../../../openapi/referenced-specs/v2.yml
1825
2215
  SkuFieldDataEcSkuSubscriptionPlanInterval:
1826
2216
  enum:
1827
2217
  - day
@@ -1829,16 +2219,18 @@ types:
1829
2219
  - month
1830
2220
  - year
1831
2221
  docs: Interval of subscription renewal
2222
+ inline: true
1832
2223
  source:
1833
- openapi: ../../../referenced-specs/v2.yml
2224
+ openapi: ../../../openapi/referenced-specs/v2.yml
1834
2225
  SkuFieldDataEcSkuSubscriptionPlanPlansItemStatus:
1835
2226
  enum:
1836
2227
  - active
1837
2228
  - inactive
1838
2229
  - canceled
1839
2230
  docs: The status of the plan
2231
+ inline: true
1840
2232
  source:
1841
- openapi: ../../../referenced-specs/v2.yml
2233
+ openapi: ../../../openapi/referenced-specs/v2.yml
1842
2234
  SkuFieldDataEcSkuSubscriptionPlanPlansItem:
1843
2235
  properties:
1844
2236
  platform:
@@ -1851,7 +2243,7 @@ types:
1851
2243
  type: optional<SkuFieldDataEcSkuSubscriptionPlanPlansItemStatus>
1852
2244
  docs: The status of the plan
1853
2245
  source:
1854
- openapi: ../../../referenced-specs/v2.yml
2246
+ openapi: ../../../openapi/referenced-specs/v2.yml
1855
2247
  inline: true
1856
2248
  SkuFieldDataEcSkuSubscriptionPlan:
1857
2249
  properties:
@@ -1866,7 +2258,7 @@ types:
1866
2258
  docs: Number of days of a trial
1867
2259
  plans: optional<list<SkuFieldDataEcSkuSubscriptionPlanPlansItem>>
1868
2260
  source:
1869
- openapi: ../../../referenced-specs/v2.yml
2261
+ openapi: ../../../openapi/referenced-specs/v2.yml
1870
2262
  inline: true
1871
2263
  SkuFieldData:
1872
2264
  docs: Standard and Custom fields for a SKU
@@ -1896,7 +2288,7 @@ types:
1896
2288
  type: optional<double>
1897
2289
  docs: Quantity of SKU that will be tracked as items are ordered.
1898
2290
  source:
1899
- openapi: ../../../referenced-specs/v2.yml
2291
+ openapi: ../../../openapi/referenced-specs/v2.yml
1900
2292
  Sku:
1901
2293
  docs: The SKU object
1902
2294
  properties:
@@ -1917,7 +2309,7 @@ types:
1917
2309
  docs: The date the Product was created
1918
2310
  fieldData: optional<SkuFieldData>
1919
2311
  source:
1920
- openapi: ../../../referenced-specs/v2.yml
2312
+ openapi: ../../../openapi/referenced-specs/v2.yml
1921
2313
  ProductAndSkUs:
1922
2314
  docs: A product and its SKUs.
1923
2315
  properties:
@@ -1926,7 +2318,7 @@ types:
1926
2318
  type: optional<list<Sku>>
1927
2319
  docs: A list of SKU Objects
1928
2320
  source:
1929
- openapi: ../../../referenced-specs/v2.yml
2321
+ openapi: ../../../openapi/referenced-specs/v2.yml
1930
2322
  ProductAndSkUsList:
1931
2323
  docs: Results from product list
1932
2324
  properties:
@@ -1937,7 +2329,7 @@ types:
1937
2329
  keys for each Item
1938
2330
  pagination: optional<Pagination>
1939
2331
  source:
1940
- openapi: ../../../referenced-specs/v2.yml
2332
+ openapi: ../../../openapi/referenced-specs/v2.yml
1941
2333
  PublishStatus:
1942
2334
  enum:
1943
2335
  - staging
@@ -1945,7 +2337,7 @@ types:
1945
2337
  docs: Indicate whether your Product should be set as "staging" or "live"
1946
2338
  default: staging
1947
2339
  source:
1948
- openapi: ../../../referenced-specs/v2.yml
2340
+ openapi: ../../../openapi/referenced-specs/v2.yml
1949
2341
  OrderPrice:
1950
2342
  properties:
1951
2343
  unit:
@@ -1958,14 +2350,15 @@ types:
1958
2350
  type: optional<string>
1959
2351
  docs: The user-facing string representation of the amount
1960
2352
  source:
1961
- openapi: ../../../referenced-specs/v2.yml
2353
+ openapi: ../../../openapi/referenced-specs/v2.yml
1962
2354
  OrderAddressType:
1963
2355
  enum:
1964
2356
  - shipping
1965
2357
  - billing
1966
2358
  docs: The type of the order address (billing or shipping)
2359
+ inline: true
1967
2360
  source:
1968
- openapi: ../../../referenced-specs/v2.yml
2361
+ openapi: ../../../openapi/referenced-specs/v2.yml
1969
2362
  OrderAddressJapanType:
1970
2363
  enum:
1971
2364
  - kana
@@ -1973,8 +2366,9 @@ types:
1973
2366
  docs: >-
1974
2367
  Represents a Japan-only address format. This field will only appear on
1975
2368
  orders placed from Japan.
2369
+ inline: true
1976
2370
  source:
1977
- openapi: ../../../referenced-specs/v2.yml
2371
+ openapi: ../../../openapi/referenced-specs/v2.yml
1978
2372
  OrderAddress:
1979
2373
  docs: A customer address
1980
2374
  properties:
@@ -2008,7 +2402,7 @@ types:
2008
2402
  type: optional<string>
2009
2403
  docs: The postal code of the address
2010
2404
  source:
2011
- openapi: ../../../referenced-specs/v2.yml
2405
+ openapi: ../../../openapi/referenced-specs/v2.yml
2012
2406
  OrderPurchasedItemVariantImageFileVariantsItem:
2013
2407
  properties:
2014
2408
  url:
@@ -2027,7 +2421,7 @@ types:
2027
2421
  type: optional<integer>
2028
2422
  docs: The image height in pixels
2029
2423
  source:
2030
- openapi: ../../../referenced-specs/v2.yml
2424
+ openapi: ../../../openapi/referenced-specs/v2.yml
2031
2425
  inline: true
2032
2426
  OrderPurchasedItemVariantImageFile:
2033
2427
  properties:
@@ -2053,7 +2447,7 @@ types:
2053
2447
  type: optional<list<OrderPurchasedItemVariantImageFileVariantsItem>>
2054
2448
  docs: Variants of the supplied image
2055
2449
  source:
2056
- openapi: ../../../referenced-specs/v2.yml
2450
+ openapi: ../../../openapi/referenced-specs/v2.yml
2057
2451
  inline: true
2058
2452
  OrderPurchasedItemVariantImage:
2059
2453
  properties:
@@ -2064,7 +2458,7 @@ types:
2064
2458
  format: uri
2065
2459
  file: optional<OrderPurchasedItemVariantImageFile>
2066
2460
  source:
2067
- openapi: ../../../referenced-specs/v2.yml
2461
+ openapi: ../../../openapi/referenced-specs/v2.yml
2068
2462
  inline: true
2069
2463
  OrderPurchasedItem:
2070
2464
  docs: An Item that was purchased
@@ -2113,7 +2507,7 @@ types:
2113
2507
  type: optional<double>
2114
2508
  docs: The physical length of the variant if provided, or null
2115
2509
  source:
2116
- openapi: ../../../referenced-specs/v2.yml
2510
+ openapi: ../../../openapi/referenced-specs/v2.yml
2117
2511
  StripeDetails:
2118
2512
  docs: >-
2119
2513
  An object with various Stripe IDs, useful for linking into the stripe
@@ -2144,7 +2538,7 @@ types:
2144
2538
  type: optional<string>
2145
2539
  docs: Stripe-generated refund reason, or null
2146
2540
  source:
2147
- openapi: ../../../referenced-specs/v2.yml
2541
+ openapi: ../../../openapi/referenced-specs/v2.yml
2148
2542
  StripeCardBrand:
2149
2543
  enum:
2150
2544
  - Visa
@@ -2157,8 +2551,9 @@ types:
2157
2551
  name: DinersClub
2158
2552
  - Unknown
2159
2553
  docs: The card's brand (ie. credit card network)
2554
+ inline: true
2160
2555
  source:
2161
- openapi: ../../../referenced-specs/v2.yml
2556
+ openapi: ../../../openapi/referenced-specs/v2.yml
2162
2557
  StripeCardExpires:
2163
2558
  docs: The card's expiration date.
2164
2559
  properties:
@@ -2169,7 +2564,7 @@ types:
2169
2564
  type: optional<double>
2170
2565
  docs: Month that the card expires
2171
2566
  source:
2172
- openapi: ../../../referenced-specs/v2.yml
2567
+ openapi: ../../../openapi/referenced-specs/v2.yml
2173
2568
  inline: true
2174
2569
  StripeCard:
2175
2570
  docs: >
@@ -2189,7 +2584,7 @@ types:
2189
2584
  type: optional<StripeCardExpires>
2190
2585
  docs: The card's expiration date.
2191
2586
  source:
2192
- openapi: ../../../referenced-specs/v2.yml
2587
+ openapi: ../../../openapi/referenced-specs/v2.yml
2193
2588
  PaypalDetails:
2194
2589
  properties:
2195
2590
  orderId:
@@ -2211,7 +2606,7 @@ types:
2211
2606
  type: optional<string>
2212
2607
  docs: PayPal dispute identifier
2213
2608
  source:
2214
- openapi: ../../../referenced-specs/v2.yml
2609
+ openapi: ../../../openapi/referenced-specs/v2.yml
2215
2610
  OrderStatus:
2216
2611
  enum:
2217
2612
  - pending
@@ -2223,8 +2618,9 @@ types:
2223
2618
  - refunded
2224
2619
  docs: |
2225
2620
  The status of the Order
2621
+ inline: true
2226
2622
  source:
2227
- openapi: ../../../referenced-specs/v2.yml
2623
+ openapi: ../../../openapi/referenced-specs/v2.yml
2228
2624
  OrderDisputeLastStatus:
2229
2625
  enum:
2230
2626
  - warning_needs_response
@@ -2238,8 +2634,9 @@ types:
2238
2634
  docs: >
2239
2635
  If an order was disputed by the customer, then this key will be set with
2240
2636
  the [dispute's status](https://stripe.com/docs/api#dispute_object-status).
2637
+ inline: true
2241
2638
  source:
2242
- openapi: ../../../referenced-specs/v2.yml
2639
+ openapi: ../../../openapi/referenced-specs/v2.yml
2243
2640
  OrderCustomerInfo:
2244
2641
  docs: An object with the keys `fullName` and `email`.
2245
2642
  properties:
@@ -2252,13 +2649,13 @@ types:
2252
2649
  validation:
2253
2650
  format: email
2254
2651
  source:
2255
- openapi: ../../../referenced-specs/v2.yml
2652
+ openapi: ../../../openapi/referenced-specs/v2.yml
2256
2653
  inline: true
2257
2654
  OrderMetadata:
2258
2655
  properties:
2259
2656
  isBuyNow: optional<boolean>
2260
2657
  source:
2261
- openapi: ../../../referenced-specs/v2.yml
2658
+ openapi: ../../../openapi/referenced-specs/v2.yml
2262
2659
  inline: true
2263
2660
  OrderTotalsExtrasItemType:
2264
2661
  enum:
@@ -2268,8 +2665,9 @@ types:
2268
2665
  - shipping
2269
2666
  - tax
2270
2667
  docs: The type of extra item this is.
2668
+ inline: true
2271
2669
  source:
2272
- openapi: ../../../referenced-specs/v2.yml
2670
+ openapi: ../../../openapi/referenced-specs/v2.yml
2273
2671
  OrderTotalsExtrasItem:
2274
2672
  docs: Extra order items, includes discounts, shipping, and taxes.
2275
2673
  properties:
@@ -2286,7 +2684,7 @@ types:
2286
2684
  type: optional<OrderPrice>
2287
2685
  docs: The price for the item
2288
2686
  source:
2289
- openapi: ../../../referenced-specs/v2.yml
2687
+ openapi: ../../../openapi/referenced-specs/v2.yml
2290
2688
  inline: true
2291
2689
  OrderTotals:
2292
2690
  docs: An object describing various pricing totals
@@ -2301,7 +2699,7 @@ types:
2301
2699
  type: optional<OrderPrice>
2302
2700
  docs: The total price
2303
2701
  source:
2304
- openapi: ../../../referenced-specs/v2.yml
2702
+ openapi: ../../../openapi/referenced-specs/v2.yml
2305
2703
  inline: true
2306
2704
  OrderDownloadFilesItem:
2307
2705
  properties:
@@ -2317,7 +2715,7 @@ types:
2317
2715
  validation:
2318
2716
  format: uri
2319
2717
  source:
2320
- openapi: ../../../referenced-specs/v2.yml
2718
+ openapi: ../../../openapi/referenced-specs/v2.yml
2321
2719
  inline: true
2322
2720
  Order:
2323
2721
  properties:
@@ -2446,7 +2844,7 @@ types:
2446
2844
  type: optional<list<OrderDownloadFilesItem>>
2447
2845
  docs: An array of downloadable file objects.
2448
2846
  source:
2449
- openapi: ../../../referenced-specs/v2.yml
2847
+ openapi: ../../../openapi/referenced-specs/v2.yml
2450
2848
  OrderList:
2451
2849
  docs: Results from order list
2452
2850
  properties:
@@ -2455,14 +2853,15 @@ types:
2455
2853
  docs: List of orders
2456
2854
  pagination: optional<Pagination>
2457
2855
  source:
2458
- openapi: ../../../referenced-specs/v2.yml
2856
+ openapi: ../../../openapi/referenced-specs/v2.yml
2459
2857
  InventoryItemInventoryType:
2460
2858
  enum:
2461
2859
  - infinite
2462
2860
  - finite
2463
2861
  docs: infinite or finite
2862
+ inline: true
2464
2863
  source:
2465
- openapi: ../../../referenced-specs/v2.yml
2864
+ openapi: ../../../openapi/referenced-specs/v2.yml
2466
2865
  InventoryItem:
2467
2866
  docs: The availabile inventory for an item
2468
2867
  properties:
@@ -2478,7 +2877,7 @@ types:
2478
2877
  type: optional<InventoryItemInventoryType>
2479
2878
  docs: infinite or finite
2480
2879
  source:
2481
- openapi: ../../../referenced-specs/v2.yml
2880
+ openapi: ../../../openapi/referenced-specs/v2.yml
2482
2881
  EcommerceSettings:
2483
2882
  docs: Ecommerce settings for a Webflow Site
2484
2883
  properties:
@@ -2492,4 +2891,4 @@ types:
2492
2891
  type: optional<string>
2493
2892
  docs: The three-letter ISO currency code for the Site
2494
2893
  source:
2495
- openapi: ../../../referenced-specs/v2.yml
2894
+ openapi: ../../../openapi/referenced-specs/v2.yml