webflow-api 3.0.1 → 3.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (749) hide show
  1. package/.mock/definition/__package__.yml +876 -287
  2. package/.mock/definition/accessGroups.yml +4 -3
  3. package/.mock/definition/assets.yml +96 -56
  4. package/.mock/definition/collections/fields.yml +67 -48
  5. package/.mock/definition/collections/items.yml +226 -65
  6. package/.mock/definition/collections.yml +48 -12
  7. package/.mock/definition/components.yml +479 -0
  8. package/.mock/definition/ecommerce.yml +3 -2
  9. package/.mock/definition/forms.yml +121 -8
  10. package/.mock/definition/inventory.yml +8 -4
  11. package/.mock/definition/orders.yml +17 -77
  12. package/.mock/definition/pages/scripts.yml +17 -50
  13. package/.mock/definition/pages.yml +87 -65
  14. package/.mock/definition/products.yml +18 -9
  15. package/.mock/definition/scripts.yml +22 -57
  16. package/.mock/definition/sites/activityLogs.yml +12 -9
  17. package/.mock/definition/sites/plans.yml +46 -0
  18. package/.mock/definition/sites/redirects.yml +213 -0
  19. package/.mock/definition/sites/robotsTxt.yml +202 -0
  20. package/.mock/definition/sites/scripts.yml +28 -41
  21. package/.mock/definition/sites.yml +201 -8
  22. package/.mock/definition/token.yml +7 -4
  23. package/.mock/definition/users.yml +12 -8
  24. package/.mock/definition/webhooks.yml +16 -17
  25. package/.mock/fern.config.json +1 -1
  26. package/Client.d.ts +3 -0
  27. package/Client.js +25 -20
  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 +15 -7
  32. package/api/resources/assets/client/Client.js +23 -15
  33. package/api/resources/collections/client/Client.d.ts +24 -1
  34. package/api/resources/collections/client/Client.js +30 -5
  35. package/api/resources/collections/client/requests/CollectionsCreateRequest.d.ts +23 -1
  36. package/api/resources/collections/resources/fields/client/Client.d.ts +34 -4
  37. package/api/resources/collections/resources/fields/client/Client.js +40 -8
  38. package/api/resources/collections/resources/fields/client/requests/index.d.ts +0 -1
  39. package/api/resources/collections/resources/fields/index.d.ts +0 -1
  40. package/api/resources/collections/resources/fields/index.js +0 -1
  41. package/api/resources/collections/resources/index.d.ts +1 -2
  42. package/api/resources/collections/resources/index.js +2 -3
  43. package/api/resources/collections/resources/items/client/Client.d.ts +26 -16
  44. package/api/resources/collections/resources/items/client/Client.js +48 -32
  45. package/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.d.ts +2 -2
  46. package/api/resources/collections/resources/items/client/requests/ItemsListItemsRequest.d.ts +2 -2
  47. package/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts +1 -1
  48. package/api/resources/collections/resources/items/types/ItemsDeleteItemsLiveRequestItemsItem.d.ts +1 -1
  49. package/api/resources/collections/resources/items/types/MultipleItems.d.ts +2 -2
  50. package/api/resources/collections/resources/items/types/MultipleLiveItems.d.ts +8 -0
  51. package/api/resources/collections/resources/items/types/index.d.ts +1 -0
  52. package/api/resources/collections/resources/items/types/index.js +1 -0
  53. package/api/resources/components/client/Client.d.ts +175 -0
  54. package/api/resources/components/client/Client.js +669 -0
  55. package/api/resources/components/client/index.d.ts +1 -0
  56. package/api/resources/{collections/resources/fields/types → components/client}/index.js +1 -1
  57. package/api/resources/components/client/requests/ComponentDomWrite.d.ts +34 -0
  58. package/api/resources/components/client/requests/ComponentPropertiesWrite.d.ts +25 -0
  59. package/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +28 -0
  60. package/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +23 -0
  61. package/api/resources/components/client/requests/ComponentsListRequest.d.ts +17 -0
  62. package/api/resources/components/client/requests/index.d.ts +5 -0
  63. package/api/resources/components/client/requests/index.js +2 -0
  64. package/api/resources/components/index.d.ts +2 -0
  65. package/api/resources/components/index.js +18 -0
  66. package/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +5 -0
  67. package/api/resources/components/types/ComponentPropertiesWritePropertiesItem.d.ts +16 -0
  68. package/api/resources/components/types/ComponentsUpdateContentResponse.d.ts +7 -0
  69. package/api/resources/components/types/ComponentsUpdateContentResponse.js +5 -0
  70. package/api/resources/components/types/ComponentsUpdatePropertiesResponse.d.ts +7 -0
  71. package/api/resources/components/types/ComponentsUpdatePropertiesResponse.js +5 -0
  72. package/api/resources/components/types/index.d.ts +4 -0
  73. package/api/resources/components/types/index.js +20 -0
  74. package/api/resources/ecommerce/client/Client.js +1 -1
  75. package/api/resources/forms/client/Client.d.ts +54 -0
  76. package/api/resources/forms/client/Client.js +229 -5
  77. package/api/resources/forms/client/requests/FormsListSubmissionsBySiteRequest.d.ts +23 -0
  78. package/api/resources/forms/client/requests/FormsListSubmissionsBySiteRequest.js +5 -0
  79. package/api/resources/forms/client/requests/index.d.ts +1 -0
  80. package/api/resources/index.d.ts +3 -0
  81. package/api/resources/index.js +4 -1
  82. package/api/resources/inventory/client/Client.d.ts +3 -1
  83. package/api/resources/inventory/client/Client.js +5 -3
  84. package/api/resources/orders/client/Client.d.ts +3 -0
  85. package/api/resources/orders/client/Client.js +9 -6
  86. package/api/resources/pages/client/Client.d.ts +31 -10
  87. package/api/resources/pages/client/Client.js +37 -18
  88. package/api/resources/pages/client/requests/PageDomWrite.d.ts +34 -0
  89. package/api/resources/pages/client/requests/PageDomWrite.js +5 -0
  90. package/api/resources/pages/client/requests/index.d.ts +1 -1
  91. package/api/resources/pages/resources/scripts/client/Client.d.ts +8 -19
  92. package/api/resources/pages/resources/scripts/client/Client.js +13 -22
  93. package/api/resources/pages/types/PageDomWriteNodesItem.d.ts +5 -0
  94. package/api/resources/pages/types/PageDomWriteNodesItem.js +5 -0
  95. package/api/resources/pages/types/index.d.ts +1 -1
  96. package/api/resources/pages/types/index.js +1 -1
  97. package/api/resources/products/client/Client.d.ts +5 -6
  98. package/api/resources/products/client/Client.js +11 -12
  99. package/api/resources/scripts/client/Client.d.ts +12 -20
  100. package/api/resources/scripts/client/Client.js +15 -23
  101. package/api/resources/sites/client/Client.d.ts +79 -0
  102. package/api/resources/sites/client/Client.js +341 -9
  103. package/api/resources/sites/client/requests/SitesCreateRequest.d.ts +17 -0
  104. package/api/resources/sites/client/requests/SitesCreateRequest.js +5 -0
  105. package/api/resources/sites/client/requests/SitesUpdateRequest.d.ts +13 -0
  106. package/api/resources/sites/client/requests/SitesUpdateRequest.js +5 -0
  107. package/api/resources/sites/client/requests/index.d.ts +2 -0
  108. package/api/resources/sites/resources/activityLogs/client/Client.d.ts +5 -1
  109. package/api/resources/sites/resources/activityLogs/client/Client.js +6 -2
  110. package/api/resources/sites/resources/index.d.ts +3 -0
  111. package/api/resources/sites/resources/index.js +4 -1
  112. package/api/resources/sites/resources/plans/client/Client.d.ts +47 -0
  113. package/api/resources/sites/resources/plans/client/Client.js +157 -0
  114. package/api/resources/sites/resources/plans/client/index.d.ts +1 -0
  115. package/api/resources/sites/resources/plans/client/index.js +2 -0
  116. package/api/resources/sites/resources/plans/index.d.ts +1 -0
  117. package/{dist/serialization/resources/collections/resources/fields/types → api/resources/sites/resources/plans}/index.js +1 -1
  118. package/api/resources/sites/resources/redirects/client/Client.d.ts +125 -0
  119. package/api/resources/sites/resources/redirects/client/Client.js +482 -0
  120. package/api/resources/sites/resources/redirects/client/index.d.ts +1 -0
  121. package/api/resources/sites/resources/redirects/client/index.js +2 -0
  122. package/api/resources/sites/resources/redirects/index.d.ts +1 -0
  123. package/{dist/api/resources/collections/resources/fields/types → api/resources/sites/resources/redirects}/index.js +1 -1
  124. package/api/resources/sites/resources/robotsTxt/client/Client.d.ts +124 -0
  125. package/api/resources/sites/resources/robotsTxt/client/Client.js +486 -0
  126. package/api/resources/sites/resources/robotsTxt/client/index.d.ts +1 -0
  127. package/api/resources/sites/resources/robotsTxt/client/index.js +2 -0
  128. package/api/resources/sites/resources/robotsTxt/index.d.ts +1 -0
  129. package/{serialization/resources/collections/resources/fields/types → api/resources/sites/resources/robotsTxt}/index.js +1 -1
  130. package/api/resources/sites/resources/scripts/client/Client.d.ts +15 -13
  131. package/api/resources/sites/resources/scripts/client/Client.js +19 -17
  132. package/api/resources/token/client/Client.d.ts +2 -1
  133. package/api/resources/token/client/Client.js +4 -3
  134. package/api/resources/users/client/Client.d.ts +1 -1
  135. package/api/resources/users/client/Client.js +6 -6
  136. package/api/resources/users/client/requests/UsersInviteRequest.d.ts +1 -4
  137. package/api/resources/users/client/requests/UsersUpdateRequest.d.ts +1 -4
  138. package/api/resources/webhooks/client/Client.d.ts +4 -1
  139. package/api/resources/webhooks/client/Client.js +8 -5
  140. package/api/types/Asset.d.ts +4 -0
  141. package/api/types/AssetVariant.d.ts +3 -0
  142. package/api/types/Assets.d.ts +1 -0
  143. package/api/types/CollectionItem.d.ts +5 -1
  144. package/api/types/CollectionItemPostSingle.d.ts +7 -3
  145. package/api/types/Component.d.ts +18 -0
  146. package/api/types/Component.js +5 -0
  147. package/api/types/ComponentDom.d.ts +13 -0
  148. package/api/types/ComponentDom.js +5 -0
  149. package/api/types/ComponentInstanceNodePropertyOverridesWrite.d.ts +13 -0
  150. package/api/types/ComponentInstanceNodePropertyOverridesWrite.js +5 -0
  151. package/api/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.d.ts +14 -0
  152. package/api/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +5 -0
  153. package/api/types/ComponentList.d.ts +11 -0
  154. package/api/types/ComponentList.js +5 -0
  155. package/api/types/ComponentNode.d.ts +15 -0
  156. package/api/types/ComponentNode.js +5 -0
  157. package/api/types/ComponentProperties.d.ts +13 -0
  158. package/api/types/ComponentProperties.js +5 -0
  159. package/api/types/ComponentProperty.d.ts +17 -0
  160. package/api/types/ComponentProperty.js +5 -0
  161. package/api/types/ComponentPropertyType.d.ts +12 -0
  162. package/api/types/ComponentPropertyType.js +11 -0
  163. package/{dist/api/types/ErrorDetailsItem.d.ts → api/types/Conflict.d.ts} +1 -1
  164. package/api/types/Conflict.js +5 -0
  165. package/api/types/Dom.d.ts +3 -1
  166. package/api/types/Domain.d.ts +2 -0
  167. package/api/types/Error_.d.ts +1 -1
  168. package/api/types/FieldCreate.d.ts +8 -0
  169. package/api/types/FieldCreate.js +5 -0
  170. package/api/types/FieldType.d.ts +12 -10
  171. package/api/types/FieldType.js +11 -9
  172. package/api/types/ImageNode.d.ts +7 -2
  173. package/api/types/ImageNodeImage.d.ts +10 -0
  174. package/api/types/ImageNodeImage.js +5 -0
  175. package/api/types/Metadata.d.ts +11 -0
  176. package/api/types/Metadata.js +5 -0
  177. package/api/types/MetadataOptionsItem.d.ts +12 -0
  178. package/api/types/MetadataOptionsItem.js +5 -0
  179. package/api/types/Node.d.ts +11 -8
  180. package/api/types/{ErrorDetailsItem.d.ts → NotEnterprisePlanWorkspace.d.ts} +1 -1
  181. package/api/types/NotEnterprisePlanWorkspace.js +5 -0
  182. package/api/types/OAuthScope.d.ts +8 -0
  183. package/api/types/OAuthScope.js +2 -0
  184. package/api/types/OptionField.d.ts +19 -0
  185. package/api/types/OptionField.js +5 -0
  186. package/api/types/ProductFieldData.d.ts +1 -1
  187. package/api/types/Redirect.d.ts +14 -0
  188. package/api/types/Redirect.js +5 -0
  189. package/api/types/Redirects.d.ts +12 -0
  190. package/api/types/Redirects.js +5 -0
  191. package/api/types/ReferenceField.d.ts +20 -0
  192. package/api/types/ReferenceField.js +5 -0
  193. package/api/types/ReferenceFieldMetadata.d.ts +10 -0
  194. package/api/types/ReferenceFieldMetadata.js +5 -0
  195. package/api/types/ReferenceFieldType.d.ts +11 -0
  196. package/api/types/{NodeType.js → ReferenceFieldType.js} +4 -4
  197. package/api/types/Robots.d.ts +13 -0
  198. package/api/types/Robots.js +5 -0
  199. package/api/types/RobotsRulesItem.d.ts +11 -0
  200. package/api/types/RobotsRulesItem.js +5 -0
  201. package/api/types/ScriptApply.d.ts +1 -1
  202. package/api/types/SitePlan.d.ts +12 -0
  203. package/api/types/SitePlan.js +5 -0
  204. package/api/types/SitePlanId.d.ts +21 -0
  205. package/api/types/SitePlanId.js +20 -0
  206. package/api/types/SitePlanName.d.ts +15 -0
  207. package/api/types/SitePlanName.js +14 -0
  208. package/api/types/SkuFieldData.d.ts +2 -0
  209. package/api/types/SkuFieldDataEcSkuBillingMethod.d.ts +3 -0
  210. package/api/types/SkuFieldDataEcSkuSubscriptionPlan.d.ts +3 -0
  211. package/api/{resources/collections/resources/fields/client/requests/FieldCreate.d.ts → types/StaticField.d.ts} +7 -12
  212. package/api/types/StaticField.js +5 -0
  213. package/api/{resources/collections/resources/fields/types/FieldCreateType.d.ts → types/StaticFieldType.d.ts} +11 -11
  214. package/{dist/api/resources/collections/resources/fields/types/FieldCreateType.js → api/types/StaticFieldType.js} +11 -11
  215. package/api/types/Text.d.ts +12 -0
  216. package/api/types/Text.js +5 -0
  217. package/api/types/TextNode.d.ts +8 -3
  218. package/api/types/TextNodeText.d.ts +12 -0
  219. package/api/types/TextNodeText.js +5 -0
  220. package/api/{resources/pages/types/DomWriteNodesItem.d.ts → types/TextNodeWrite.d.ts} +4 -1
  221. package/api/types/TextNodeWrite.js +5 -0
  222. package/api/types/TriggerType.d.ts +1 -15
  223. package/api/types/UserAccessGroupsItem.d.ts +2 -3
  224. package/api/types/UserAccessGroupsItemType.d.ts +2 -3
  225. package/api/types/WebhookList.d.ts +1 -1
  226. package/api/types/index.d.ts +35 -6
  227. package/api/types/index.js +35 -6
  228. package/dist/Client.d.ts +3 -0
  229. package/dist/Client.js +25 -20
  230. package/dist/api/errors/index.d.ts +1 -1
  231. package/dist/api/errors/index.js +1 -1
  232. package/dist/api/resources/accessGroups/client/Client.js +1 -1
  233. package/dist/api/resources/assets/client/Client.d.ts +15 -7
  234. package/dist/api/resources/assets/client/Client.js +23 -15
  235. package/dist/api/resources/collections/client/Client.d.ts +24 -1
  236. package/dist/api/resources/collections/client/Client.js +30 -5
  237. package/dist/api/resources/collections/client/requests/CollectionsCreateRequest.d.ts +23 -1
  238. package/dist/api/resources/collections/resources/fields/client/Client.d.ts +34 -4
  239. package/dist/api/resources/collections/resources/fields/client/Client.js +40 -8
  240. package/dist/api/resources/collections/resources/fields/client/requests/index.d.ts +0 -1
  241. package/dist/api/resources/collections/resources/fields/index.d.ts +0 -1
  242. package/dist/api/resources/collections/resources/fields/index.js +0 -1
  243. package/dist/api/resources/collections/resources/index.d.ts +1 -2
  244. package/dist/api/resources/collections/resources/index.js +2 -3
  245. package/dist/api/resources/collections/resources/items/client/Client.d.ts +26 -16
  246. package/dist/api/resources/collections/resources/items/client/Client.js +48 -32
  247. package/dist/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.d.ts +2 -2
  248. package/dist/api/resources/collections/resources/items/client/requests/ItemsListItemsRequest.d.ts +2 -2
  249. package/dist/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts +1 -1
  250. package/dist/api/resources/collections/resources/items/types/ItemsDeleteItemsLiveRequestItemsItem.d.ts +1 -1
  251. package/dist/api/resources/collections/resources/items/types/MultipleItems.d.ts +2 -2
  252. package/dist/api/resources/collections/resources/items/types/MultipleLiveItems.d.ts +8 -0
  253. package/dist/api/resources/collections/resources/items/types/MultipleLiveItems.js +5 -0
  254. package/dist/api/resources/collections/resources/items/types/index.d.ts +1 -0
  255. package/dist/api/resources/collections/resources/items/types/index.js +1 -0
  256. package/dist/api/resources/components/client/Client.d.ts +175 -0
  257. package/dist/api/resources/components/client/Client.js +669 -0
  258. package/dist/api/resources/components/client/index.d.ts +1 -0
  259. package/dist/api/resources/components/client/index.js +17 -0
  260. package/dist/api/resources/components/client/requests/ComponentDomWrite.d.ts +34 -0
  261. package/dist/api/resources/components/client/requests/ComponentDomWrite.js +5 -0
  262. package/dist/api/resources/components/client/requests/ComponentPropertiesWrite.d.ts +25 -0
  263. package/dist/api/resources/components/client/requests/ComponentPropertiesWrite.js +5 -0
  264. package/dist/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +28 -0
  265. package/dist/api/resources/components/client/requests/ComponentsGetContentRequest.js +5 -0
  266. package/dist/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +23 -0
  267. package/dist/api/resources/components/client/requests/ComponentsGetPropertiesRequest.js +5 -0
  268. package/dist/api/resources/components/client/requests/ComponentsListRequest.d.ts +17 -0
  269. package/dist/api/resources/components/client/requests/ComponentsListRequest.js +5 -0
  270. package/dist/api/resources/components/client/requests/index.d.ts +5 -0
  271. package/dist/api/resources/components/client/requests/index.js +2 -0
  272. package/dist/api/resources/components/index.d.ts +2 -0
  273. package/dist/api/resources/components/index.js +18 -0
  274. package/dist/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +5 -0
  275. package/dist/api/resources/components/types/ComponentDomWriteNodesItem.js +5 -0
  276. package/dist/api/resources/components/types/ComponentPropertiesWritePropertiesItem.d.ts +16 -0
  277. package/dist/api/resources/components/types/ComponentPropertiesWritePropertiesItem.js +5 -0
  278. package/dist/api/resources/components/types/ComponentsUpdateContentResponse.d.ts +7 -0
  279. package/dist/api/resources/components/types/ComponentsUpdateContentResponse.js +5 -0
  280. package/dist/api/resources/components/types/ComponentsUpdatePropertiesResponse.d.ts +7 -0
  281. package/dist/api/resources/components/types/ComponentsUpdatePropertiesResponse.js +5 -0
  282. package/dist/api/resources/components/types/index.d.ts +4 -0
  283. package/dist/api/resources/components/types/index.js +20 -0
  284. package/dist/api/resources/ecommerce/client/Client.js +1 -1
  285. package/dist/api/resources/forms/client/Client.d.ts +54 -0
  286. package/dist/api/resources/forms/client/Client.js +229 -5
  287. package/dist/api/resources/forms/client/requests/FormsListSubmissionsBySiteRequest.d.ts +23 -0
  288. package/dist/api/resources/forms/client/requests/FormsListSubmissionsBySiteRequest.js +5 -0
  289. package/dist/api/resources/forms/client/requests/index.d.ts +1 -0
  290. package/dist/api/resources/index.d.ts +3 -0
  291. package/dist/api/resources/index.js +4 -1
  292. package/dist/api/resources/inventory/client/Client.d.ts +3 -1
  293. package/dist/api/resources/inventory/client/Client.js +5 -3
  294. package/dist/api/resources/orders/client/Client.d.ts +3 -0
  295. package/dist/api/resources/orders/client/Client.js +9 -6
  296. package/dist/api/resources/pages/client/Client.d.ts +31 -10
  297. package/dist/api/resources/pages/client/Client.js +37 -18
  298. package/dist/api/resources/pages/client/requests/PageDomWrite.d.ts +34 -0
  299. package/dist/api/resources/pages/client/requests/PageDomWrite.js +5 -0
  300. package/dist/api/resources/pages/client/requests/index.d.ts +1 -1
  301. package/dist/api/resources/pages/resources/scripts/client/Client.d.ts +8 -19
  302. package/dist/api/resources/pages/resources/scripts/client/Client.js +13 -22
  303. package/dist/api/resources/pages/types/PageDomWriteNodesItem.d.ts +5 -0
  304. package/dist/api/resources/pages/types/PageDomWriteNodesItem.js +5 -0
  305. package/dist/api/resources/pages/types/index.d.ts +1 -1
  306. package/dist/api/resources/pages/types/index.js +1 -1
  307. package/dist/api/resources/products/client/Client.d.ts +5 -6
  308. package/dist/api/resources/products/client/Client.js +11 -12
  309. package/dist/api/resources/scripts/client/Client.d.ts +12 -20
  310. package/dist/api/resources/scripts/client/Client.js +15 -23
  311. package/dist/api/resources/sites/client/Client.d.ts +79 -0
  312. package/dist/api/resources/sites/client/Client.js +341 -9
  313. package/dist/api/resources/sites/client/requests/SitesCreateRequest.d.ts +17 -0
  314. package/dist/api/resources/sites/client/requests/SitesCreateRequest.js +5 -0
  315. package/dist/api/resources/sites/client/requests/SitesUpdateRequest.d.ts +13 -0
  316. package/dist/api/resources/sites/client/requests/SitesUpdateRequest.js +5 -0
  317. package/dist/api/resources/sites/client/requests/index.d.ts +2 -0
  318. package/dist/api/resources/sites/resources/activityLogs/client/Client.d.ts +5 -1
  319. package/dist/api/resources/sites/resources/activityLogs/client/Client.js +6 -2
  320. package/dist/api/resources/sites/resources/index.d.ts +3 -0
  321. package/dist/api/resources/sites/resources/index.js +4 -1
  322. package/dist/api/resources/sites/resources/plans/client/Client.d.ts +47 -0
  323. package/dist/api/resources/sites/resources/plans/client/Client.js +157 -0
  324. package/dist/api/resources/sites/resources/plans/client/index.d.ts +1 -0
  325. package/dist/api/resources/sites/resources/plans/client/index.js +2 -0
  326. package/dist/api/resources/sites/resources/plans/index.d.ts +1 -0
  327. package/dist/api/resources/sites/resources/plans/index.js +17 -0
  328. package/dist/api/resources/sites/resources/redirects/client/Client.d.ts +125 -0
  329. package/dist/api/resources/sites/resources/redirects/client/Client.js +482 -0
  330. package/dist/api/resources/sites/resources/redirects/client/index.d.ts +1 -0
  331. package/dist/api/resources/sites/resources/redirects/client/index.js +2 -0
  332. package/dist/api/resources/sites/resources/redirects/index.d.ts +1 -0
  333. package/dist/api/resources/sites/resources/redirects/index.js +17 -0
  334. package/dist/api/resources/sites/resources/robotsTxt/client/Client.d.ts +124 -0
  335. package/dist/api/resources/sites/resources/robotsTxt/client/Client.js +486 -0
  336. package/dist/api/resources/sites/resources/robotsTxt/client/index.d.ts +1 -0
  337. package/dist/api/resources/sites/resources/robotsTxt/client/index.js +2 -0
  338. package/dist/api/resources/sites/resources/robotsTxt/index.d.ts +1 -0
  339. package/dist/api/resources/sites/resources/robotsTxt/index.js +17 -0
  340. package/dist/api/resources/sites/resources/scripts/client/Client.d.ts +15 -13
  341. package/dist/api/resources/sites/resources/scripts/client/Client.js +19 -17
  342. package/dist/api/resources/token/client/Client.d.ts +2 -1
  343. package/dist/api/resources/token/client/Client.js +4 -3
  344. package/dist/api/resources/users/client/Client.d.ts +1 -1
  345. package/dist/api/resources/users/client/Client.js +6 -6
  346. package/dist/api/resources/users/client/requests/UsersInviteRequest.d.ts +1 -4
  347. package/dist/api/resources/users/client/requests/UsersUpdateRequest.d.ts +1 -4
  348. package/dist/api/resources/webhooks/client/Client.d.ts +4 -1
  349. package/dist/api/resources/webhooks/client/Client.js +8 -5
  350. package/dist/api/types/Asset.d.ts +4 -0
  351. package/dist/api/types/AssetVariant.d.ts +3 -0
  352. package/dist/api/types/Assets.d.ts +1 -0
  353. package/dist/api/types/CollectionItem.d.ts +5 -1
  354. package/dist/api/types/CollectionItemPostSingle.d.ts +7 -3
  355. package/dist/api/types/Component.d.ts +18 -0
  356. package/dist/api/types/Component.js +5 -0
  357. package/dist/api/types/ComponentDom.d.ts +13 -0
  358. package/dist/api/types/ComponentDom.js +5 -0
  359. package/dist/api/types/ComponentInstanceNodePropertyOverridesWrite.d.ts +13 -0
  360. package/dist/api/types/ComponentInstanceNodePropertyOverridesWrite.js +5 -0
  361. package/dist/api/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.d.ts +14 -0
  362. package/dist/api/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +5 -0
  363. package/dist/api/types/ComponentList.d.ts +11 -0
  364. package/dist/api/types/ComponentList.js +5 -0
  365. package/dist/api/types/ComponentNode.d.ts +15 -0
  366. package/dist/api/types/ComponentNode.js +5 -0
  367. package/dist/api/types/ComponentProperties.d.ts +13 -0
  368. package/dist/api/types/ComponentProperties.js +5 -0
  369. package/dist/api/types/ComponentProperty.d.ts +17 -0
  370. package/dist/api/types/ComponentProperty.js +5 -0
  371. package/dist/api/types/ComponentPropertyType.d.ts +12 -0
  372. package/dist/api/types/ComponentPropertyType.js +11 -0
  373. package/dist/api/types/Conflict.d.ts +4 -0
  374. package/dist/api/types/Conflict.js +5 -0
  375. package/dist/api/types/Dom.d.ts +3 -1
  376. package/dist/api/types/Domain.d.ts +2 -0
  377. package/dist/api/types/Error_.d.ts +1 -1
  378. package/dist/api/types/FieldCreate.d.ts +8 -0
  379. package/dist/api/types/FieldCreate.js +5 -0
  380. package/dist/api/types/FieldType.d.ts +12 -10
  381. package/dist/api/types/FieldType.js +11 -9
  382. package/dist/api/types/ImageNode.d.ts +7 -2
  383. package/dist/api/types/ImageNodeImage.d.ts +10 -0
  384. package/dist/api/types/ImageNodeImage.js +5 -0
  385. package/dist/api/types/Metadata.d.ts +11 -0
  386. package/dist/api/types/Metadata.js +5 -0
  387. package/dist/api/types/MetadataOptionsItem.d.ts +12 -0
  388. package/dist/api/types/MetadataOptionsItem.js +5 -0
  389. package/dist/api/types/Node.d.ts +11 -8
  390. package/dist/api/types/NotEnterprisePlanWorkspace.d.ts +4 -0
  391. package/dist/api/types/NotEnterprisePlanWorkspace.js +5 -0
  392. package/dist/api/types/OAuthScope.d.ts +8 -0
  393. package/dist/api/types/OAuthScope.js +2 -0
  394. package/dist/api/types/OptionField.d.ts +19 -0
  395. package/dist/api/types/OptionField.js +5 -0
  396. package/dist/api/types/ProductFieldData.d.ts +1 -1
  397. package/dist/api/types/Redirect.d.ts +14 -0
  398. package/dist/api/types/Redirect.js +5 -0
  399. package/dist/api/types/Redirects.d.ts +12 -0
  400. package/dist/api/types/Redirects.js +5 -0
  401. package/dist/api/types/ReferenceField.d.ts +20 -0
  402. package/dist/api/types/ReferenceField.js +5 -0
  403. package/dist/api/types/ReferenceFieldMetadata.d.ts +10 -0
  404. package/dist/api/types/ReferenceFieldMetadata.js +5 -0
  405. package/dist/api/types/ReferenceFieldType.d.ts +11 -0
  406. package/dist/api/types/{NodeType.js → ReferenceFieldType.js} +4 -4
  407. package/dist/api/types/Robots.d.ts +13 -0
  408. package/dist/api/types/Robots.js +5 -0
  409. package/dist/api/types/RobotsRulesItem.d.ts +11 -0
  410. package/dist/api/types/RobotsRulesItem.js +5 -0
  411. package/dist/api/types/ScriptApply.d.ts +1 -1
  412. package/dist/api/types/SitePlan.d.ts +12 -0
  413. package/dist/api/types/SitePlan.js +5 -0
  414. package/dist/api/types/SitePlanId.d.ts +21 -0
  415. package/dist/api/types/SitePlanId.js +20 -0
  416. package/dist/api/types/SitePlanName.d.ts +15 -0
  417. package/dist/api/types/SitePlanName.js +14 -0
  418. package/dist/api/types/SkuFieldData.d.ts +2 -0
  419. package/dist/api/types/SkuFieldDataEcSkuBillingMethod.d.ts +3 -0
  420. package/dist/api/types/SkuFieldDataEcSkuSubscriptionPlan.d.ts +3 -0
  421. package/dist/api/{resources/collections/resources/fields/client/requests/FieldCreate.d.ts → types/StaticField.d.ts} +7 -12
  422. package/dist/api/types/StaticField.js +5 -0
  423. package/dist/api/{resources/collections/resources/fields/types/FieldCreateType.d.ts → types/StaticFieldType.d.ts} +11 -11
  424. package/{api/resources/collections/resources/fields/types/FieldCreateType.js → dist/api/types/StaticFieldType.js} +11 -11
  425. package/dist/api/types/Text.d.ts +12 -0
  426. package/dist/api/types/Text.js +5 -0
  427. package/dist/api/types/TextNode.d.ts +8 -3
  428. package/dist/api/types/TextNodeText.d.ts +12 -0
  429. package/dist/api/types/TextNodeText.js +5 -0
  430. package/dist/api/{resources/pages/types/DomWriteNodesItem.d.ts → types/TextNodeWrite.d.ts} +4 -1
  431. package/dist/api/types/TextNodeWrite.js +5 -0
  432. package/dist/api/types/TriggerType.d.ts +1 -15
  433. package/dist/api/types/UserAccessGroupsItem.d.ts +2 -3
  434. package/dist/api/types/UserAccessGroupsItemType.d.ts +2 -3
  435. package/dist/api/types/WebhookList.d.ts +1 -1
  436. package/dist/api/types/index.d.ts +35 -6
  437. package/dist/api/types/index.js +35 -6
  438. package/dist/serialization/resources/collections/client/requests/CollectionsCreateRequest.d.ts +2 -0
  439. package/dist/serialization/resources/collections/client/requests/CollectionsCreateRequest.js +2 -0
  440. package/dist/serialization/resources/collections/resources/fields/client/requests/index.d.ts +0 -1
  441. package/dist/serialization/resources/collections/resources/fields/client/requests/index.js +1 -3
  442. package/dist/serialization/resources/collections/resources/fields/index.d.ts +0 -1
  443. package/dist/serialization/resources/collections/resources/fields/index.js +0 -1
  444. package/dist/serialization/resources/collections/resources/index.d.ts +1 -2
  445. package/dist/serialization/resources/collections/resources/index.js +2 -3
  446. package/dist/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts +2 -2
  447. package/dist/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.js +2 -2
  448. package/dist/serialization/resources/collections/resources/items/types/ItemsDeleteItemsLiveRequestItemsItem.d.ts +1 -1
  449. package/dist/serialization/resources/collections/resources/items/types/ItemsDeleteItemsLiveRequestItemsItem.js +1 -1
  450. package/dist/serialization/resources/collections/resources/items/types/MultipleItems.d.ts +2 -2
  451. package/dist/serialization/resources/collections/resources/items/types/MultipleItems.js +2 -2
  452. package/dist/serialization/resources/collections/resources/items/types/MultipleLiveItems.d.ts +13 -0
  453. package/dist/serialization/resources/collections/resources/items/types/MultipleLiveItems.js +34 -0
  454. package/dist/serialization/resources/collections/resources/items/types/index.d.ts +1 -0
  455. package/dist/serialization/resources/collections/resources/items/types/index.js +1 -0
  456. package/dist/serialization/resources/components/client/index.d.ts +1 -0
  457. package/dist/serialization/resources/components/client/index.js +17 -0
  458. package/dist/serialization/resources/components/client/requests/ComponentDomWrite.d.ts +13 -0
  459. package/dist/serialization/resources/components/client/requests/ComponentDomWrite.js +34 -0
  460. package/dist/serialization/resources/components/client/requests/ComponentPropertiesWrite.d.ts +13 -0
  461. package/dist/serialization/resources/components/client/requests/ComponentPropertiesWrite.js +34 -0
  462. package/dist/serialization/resources/components/client/requests/index.d.ts +2 -0
  463. package/dist/serialization/resources/components/client/requests/index.js +7 -0
  464. package/dist/serialization/resources/components/index.d.ts +2 -0
  465. package/dist/serialization/resources/components/index.js +18 -0
  466. package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +12 -0
  467. package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.js +33 -0
  468. package/dist/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.d.ts +13 -0
  469. package/dist/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.js +34 -0
  470. package/dist/serialization/resources/components/types/ComponentsUpdateContentResponse.d.ts +12 -0
  471. package/dist/serialization/resources/components/types/ComponentsUpdateContentResponse.js +33 -0
  472. package/dist/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.d.ts +12 -0
  473. package/dist/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.js +33 -0
  474. package/dist/serialization/resources/components/types/index.d.ts +4 -0
  475. package/dist/serialization/resources/components/types/index.js +20 -0
  476. package/dist/serialization/resources/index.d.ts +3 -0
  477. package/dist/serialization/resources/index.js +4 -1
  478. package/dist/serialization/resources/pages/client/requests/PageDomWrite.d.ts +13 -0
  479. package/dist/serialization/resources/pages/client/requests/PageDomWrite.js +34 -0
  480. package/dist/serialization/resources/pages/client/requests/index.d.ts +1 -1
  481. package/dist/serialization/resources/pages/client/requests/index.js +3 -3
  482. package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +12 -0
  483. package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.js +33 -0
  484. package/dist/serialization/resources/pages/types/index.d.ts +1 -1
  485. package/dist/serialization/resources/pages/types/index.js +1 -1
  486. package/dist/serialization/resources/sites/client/requests/SitesCreateRequest.d.ts +14 -0
  487. package/dist/serialization/resources/sites/client/requests/SitesCreateRequest.js +35 -0
  488. package/dist/serialization/resources/sites/client/requests/SitesUpdateRequest.d.ts +13 -0
  489. package/dist/serialization/resources/{pages/client/requests/DomWrite.js → sites/client/requests/SitesUpdateRequest.js} +4 -4
  490. package/dist/serialization/resources/sites/client/requests/index.d.ts +2 -0
  491. package/dist/serialization/resources/sites/client/requests/index.js +5 -1
  492. package/dist/serialization/types/Assets.d.ts +2 -0
  493. package/dist/serialization/types/Assets.js +2 -0
  494. package/dist/serialization/types/Component.d.ts +16 -0
  495. package/dist/serialization/types/Component.js +37 -0
  496. package/dist/serialization/types/ComponentDom.d.ts +16 -0
  497. package/dist/serialization/types/ComponentDom.js +37 -0
  498. package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWrite.d.ts +14 -0
  499. package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWrite.js +35 -0
  500. package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.d.ts +13 -0
  501. package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +34 -0
  502. package/dist/serialization/types/ComponentList.d.ts +15 -0
  503. package/dist/serialization/types/ComponentList.js +36 -0
  504. package/dist/serialization/types/ComponentNode.d.ts +15 -0
  505. package/dist/serialization/types/ComponentNode.js +36 -0
  506. package/dist/serialization/types/ComponentProperties.d.ts +16 -0
  507. package/dist/serialization/types/ComponentProperties.js +37 -0
  508. package/dist/serialization/types/ComponentProperty.d.ts +17 -0
  509. package/dist/serialization/types/ComponentProperty.js +38 -0
  510. package/dist/serialization/types/ComponentPropertyType.d.ts +10 -0
  511. package/dist/serialization/types/{ErrorDetailsItem.js → ComponentPropertyType.js} +2 -5
  512. package/dist/serialization/types/{NodeType.d.ts → Conflict.d.ts} +3 -3
  513. package/dist/serialization/types/{NodeType.js → Conflict.js} +2 -2
  514. package/dist/serialization/types/Dom.d.ts +1 -0
  515. package/dist/serialization/types/Dom.js +1 -0
  516. package/dist/serialization/types/Domain.d.ts +1 -0
  517. package/dist/serialization/types/Domain.js +1 -0
  518. package/dist/serialization/types/Error_.d.ts +1 -2
  519. package/dist/serialization/types/Error_.js +1 -2
  520. package/dist/serialization/types/FieldCreate.d.ts +13 -0
  521. package/dist/serialization/types/FieldCreate.js +34 -0
  522. package/dist/serialization/types/FieldType.d.ts +1 -1
  523. package/dist/serialization/types/FieldType.js +11 -9
  524. package/dist/serialization/types/ImageNode.d.ts +4 -2
  525. package/dist/serialization/types/ImageNode.js +4 -2
  526. package/dist/serialization/types/ImageNodeImage.d.ts +13 -0
  527. package/{serialization/types/ErrorDetailsItem.js → dist/serialization/types/ImageNodeImage.js} +5 -5
  528. package/dist/serialization/types/Metadata.d.ts +13 -0
  529. package/dist/serialization/types/Metadata.js +34 -0
  530. package/dist/serialization/types/MetadataOptionsItem.d.ts +13 -0
  531. package/dist/serialization/types/MetadataOptionsItem.js +34 -0
  532. package/dist/serialization/types/Node.d.ts +11 -8
  533. package/dist/serialization/types/Node.js +10 -7
  534. package/dist/serialization/types/NotEnterprisePlanWorkspace.d.ts +10 -0
  535. package/dist/serialization/types/NotEnterprisePlanWorkspace.js +31 -0
  536. package/dist/serialization/types/OptionField.d.ts +19 -0
  537. package/dist/serialization/types/OptionField.js +40 -0
  538. package/dist/serialization/types/Redirect.d.ts +14 -0
  539. package/dist/serialization/types/Redirect.js +35 -0
  540. package/dist/serialization/types/Redirects.d.ts +15 -0
  541. package/dist/serialization/types/Redirects.js +36 -0
  542. package/dist/serialization/types/ReferenceField.d.ts +20 -0
  543. package/dist/serialization/types/ReferenceField.js +41 -0
  544. package/dist/serialization/types/ReferenceFieldMetadata.d.ts +12 -0
  545. package/dist/serialization/types/ReferenceFieldMetadata.js +33 -0
  546. package/dist/serialization/types/ReferenceFieldType.d.ts +10 -0
  547. package/dist/serialization/types/ReferenceFieldType.js +31 -0
  548. package/dist/serialization/types/Robots.d.ts +14 -0
  549. package/dist/serialization/types/Robots.js +35 -0
  550. package/dist/serialization/types/RobotsRulesItem.d.ts +14 -0
  551. package/dist/serialization/types/RobotsRulesItem.js +35 -0
  552. package/dist/serialization/types/SitePlan.d.ts +16 -0
  553. package/dist/serialization/types/SitePlan.js +37 -0
  554. package/dist/serialization/types/SitePlanId.d.ts +10 -0
  555. package/dist/serialization/types/SitePlanId.js +44 -0
  556. package/dist/serialization/types/SitePlanName.d.ts +10 -0
  557. package/dist/serialization/types/SitePlanName.js +38 -0
  558. package/dist/serialization/types/StaticField.d.ts +18 -0
  559. package/{serialization/resources/collections/resources/fields/client/requests/FieldCreate.js → dist/serialization/types/StaticField.js} +7 -5
  560. package/dist/serialization/types/StaticFieldType.d.ts +10 -0
  561. package/{serialization/resources/collections/resources/fields/types/FieldCreateType.js → dist/serialization/types/StaticFieldType.js} +12 -12
  562. package/dist/serialization/types/Text.d.ts +13 -0
  563. package/dist/serialization/types/Text.js +34 -0
  564. package/dist/serialization/types/TextNode.d.ts +4 -2
  565. package/dist/serialization/types/TextNode.js +4 -2
  566. package/dist/serialization/types/TextNodeText.d.ts +13 -0
  567. package/dist/serialization/types/TextNodeText.js +34 -0
  568. package/dist/serialization/types/TextNodeWrite.d.ts +13 -0
  569. package/{serialization/resources/pages/types/DomWriteNodesItem.js → dist/serialization/types/TextNodeWrite.js} +3 -3
  570. package/dist/serialization/types/WebhookList.d.ts +2 -2
  571. package/dist/serialization/types/WebhookList.js +2 -2
  572. package/dist/serialization/types/index.d.ts +35 -6
  573. package/dist/serialization/types/index.js +35 -6
  574. package/dist/version.d.ts +1 -1
  575. package/dist/version.js +1 -1
  576. package/dist/wrapper/WebflowClient.d.ts +3 -0
  577. package/dist/wrapper/WebflowClient.js +5 -0
  578. package/dist/wrapper/WebhooksClient.d.ts +39 -0
  579. package/dist/wrapper/WebhooksClient.js +66 -0
  580. package/package.json +5 -3
  581. package/reference.md +2407 -847
  582. package/serialization/resources/collections/client/requests/CollectionsCreateRequest.d.ts +2 -0
  583. package/serialization/resources/collections/client/requests/CollectionsCreateRequest.js +2 -0
  584. package/serialization/resources/collections/resources/fields/client/requests/index.d.ts +0 -1
  585. package/serialization/resources/collections/resources/fields/client/requests/index.js +1 -3
  586. package/serialization/resources/collections/resources/fields/index.d.ts +0 -1
  587. package/serialization/resources/collections/resources/fields/index.js +0 -1
  588. package/serialization/resources/collections/resources/index.d.ts +1 -2
  589. package/serialization/resources/collections/resources/index.js +2 -3
  590. package/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts +2 -2
  591. package/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.js +2 -2
  592. package/serialization/resources/collections/resources/items/types/ItemsDeleteItemsLiveRequestItemsItem.d.ts +1 -1
  593. package/serialization/resources/collections/resources/items/types/ItemsDeleteItemsLiveRequestItemsItem.js +1 -1
  594. package/serialization/resources/collections/resources/items/types/MultipleItems.d.ts +2 -2
  595. package/serialization/resources/collections/resources/items/types/MultipleItems.js +2 -2
  596. package/serialization/resources/collections/resources/items/types/MultipleLiveItems.d.ts +13 -0
  597. package/serialization/resources/collections/resources/items/types/MultipleLiveItems.js +34 -0
  598. package/serialization/resources/collections/resources/items/types/index.d.ts +1 -0
  599. package/serialization/resources/collections/resources/items/types/index.js +1 -0
  600. package/serialization/resources/components/client/index.d.ts +1 -0
  601. package/serialization/resources/components/client/index.js +17 -0
  602. package/serialization/resources/components/client/requests/ComponentDomWrite.d.ts +13 -0
  603. package/serialization/resources/components/client/requests/ComponentDomWrite.js +34 -0
  604. package/serialization/resources/components/client/requests/ComponentPropertiesWrite.d.ts +13 -0
  605. package/serialization/resources/components/client/requests/ComponentPropertiesWrite.js +34 -0
  606. package/serialization/resources/components/client/requests/index.d.ts +2 -0
  607. package/serialization/resources/components/client/requests/index.js +7 -0
  608. package/serialization/resources/components/index.d.ts +2 -0
  609. package/serialization/resources/components/index.js +18 -0
  610. package/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +12 -0
  611. package/serialization/resources/components/types/ComponentDomWriteNodesItem.js +33 -0
  612. package/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.d.ts +13 -0
  613. package/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.js +34 -0
  614. package/serialization/resources/components/types/ComponentsUpdateContentResponse.d.ts +12 -0
  615. package/serialization/resources/components/types/ComponentsUpdateContentResponse.js +33 -0
  616. package/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.d.ts +12 -0
  617. package/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.js +33 -0
  618. package/serialization/resources/components/types/index.d.ts +4 -0
  619. package/serialization/resources/components/types/index.js +20 -0
  620. package/serialization/resources/index.d.ts +3 -0
  621. package/serialization/resources/index.js +4 -1
  622. package/serialization/resources/pages/client/requests/PageDomWrite.d.ts +13 -0
  623. package/serialization/resources/pages/client/requests/PageDomWrite.js +34 -0
  624. package/serialization/resources/pages/client/requests/index.d.ts +1 -1
  625. package/serialization/resources/pages/client/requests/index.js +3 -3
  626. package/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +12 -0
  627. package/serialization/resources/pages/types/PageDomWriteNodesItem.js +33 -0
  628. package/serialization/resources/pages/types/index.d.ts +1 -1
  629. package/serialization/resources/pages/types/index.js +1 -1
  630. package/serialization/resources/sites/client/requests/SitesCreateRequest.d.ts +14 -0
  631. package/serialization/resources/sites/client/requests/SitesCreateRequest.js +35 -0
  632. package/serialization/resources/sites/client/requests/SitesUpdateRequest.d.ts +13 -0
  633. package/serialization/resources/{pages/client/requests/DomWrite.js → sites/client/requests/SitesUpdateRequest.js} +4 -4
  634. package/serialization/resources/sites/client/requests/index.d.ts +2 -0
  635. package/serialization/resources/sites/client/requests/index.js +5 -1
  636. package/serialization/types/Assets.d.ts +2 -0
  637. package/serialization/types/Assets.js +2 -0
  638. package/serialization/types/Component.d.ts +16 -0
  639. package/serialization/types/Component.js +37 -0
  640. package/serialization/types/ComponentDom.d.ts +16 -0
  641. package/serialization/types/ComponentDom.js +37 -0
  642. package/serialization/types/ComponentInstanceNodePropertyOverridesWrite.d.ts +14 -0
  643. package/serialization/types/ComponentInstanceNodePropertyOverridesWrite.js +35 -0
  644. package/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.d.ts +13 -0
  645. package/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +34 -0
  646. package/serialization/types/ComponentList.d.ts +15 -0
  647. package/serialization/types/ComponentList.js +36 -0
  648. package/serialization/types/ComponentNode.d.ts +15 -0
  649. package/serialization/types/ComponentNode.js +36 -0
  650. package/serialization/types/ComponentProperties.d.ts +16 -0
  651. package/serialization/types/ComponentProperties.js +37 -0
  652. package/serialization/types/ComponentProperty.d.ts +17 -0
  653. package/serialization/types/ComponentProperty.js +38 -0
  654. package/serialization/types/ComponentPropertyType.d.ts +10 -0
  655. package/serialization/types/ComponentPropertyType.js +31 -0
  656. package/serialization/types/{NodeType.d.ts → Conflict.d.ts} +3 -3
  657. package/serialization/types/{NodeType.js → Conflict.js} +2 -2
  658. package/serialization/types/Dom.d.ts +1 -0
  659. package/serialization/types/Dom.js +1 -0
  660. package/serialization/types/Domain.d.ts +1 -0
  661. package/serialization/types/Domain.js +1 -0
  662. package/serialization/types/Error_.d.ts +1 -2
  663. package/serialization/types/Error_.js +1 -2
  664. package/serialization/types/FieldCreate.d.ts +13 -0
  665. package/serialization/types/FieldCreate.js +34 -0
  666. package/serialization/types/FieldType.d.ts +1 -1
  667. package/serialization/types/FieldType.js +11 -9
  668. package/serialization/types/ImageNode.d.ts +4 -2
  669. package/serialization/types/ImageNode.js +4 -2
  670. package/serialization/types/ImageNodeImage.d.ts +13 -0
  671. package/serialization/types/ImageNodeImage.js +34 -0
  672. package/serialization/types/Metadata.d.ts +13 -0
  673. package/serialization/types/Metadata.js +34 -0
  674. package/serialization/types/MetadataOptionsItem.d.ts +13 -0
  675. package/serialization/types/MetadataOptionsItem.js +34 -0
  676. package/serialization/types/Node.d.ts +11 -8
  677. package/serialization/types/Node.js +10 -7
  678. package/serialization/types/NotEnterprisePlanWorkspace.d.ts +10 -0
  679. package/serialization/types/NotEnterprisePlanWorkspace.js +31 -0
  680. package/serialization/types/OptionField.d.ts +19 -0
  681. package/serialization/types/OptionField.js +40 -0
  682. package/serialization/types/Redirect.d.ts +14 -0
  683. package/serialization/types/Redirect.js +35 -0
  684. package/serialization/types/Redirects.d.ts +15 -0
  685. package/serialization/types/Redirects.js +36 -0
  686. package/serialization/types/ReferenceField.d.ts +20 -0
  687. package/serialization/types/ReferenceField.js +41 -0
  688. package/serialization/types/ReferenceFieldMetadata.d.ts +12 -0
  689. package/serialization/types/ReferenceFieldMetadata.js +33 -0
  690. package/serialization/types/ReferenceFieldType.d.ts +10 -0
  691. package/serialization/types/ReferenceFieldType.js +31 -0
  692. package/serialization/types/Robots.d.ts +14 -0
  693. package/serialization/types/Robots.js +35 -0
  694. package/serialization/types/RobotsRulesItem.d.ts +14 -0
  695. package/serialization/types/RobotsRulesItem.js +35 -0
  696. package/serialization/types/SitePlan.d.ts +16 -0
  697. package/serialization/types/SitePlan.js +37 -0
  698. package/serialization/types/SitePlanId.d.ts +10 -0
  699. package/serialization/types/SitePlanId.js +44 -0
  700. package/serialization/types/SitePlanName.d.ts +10 -0
  701. package/serialization/types/SitePlanName.js +38 -0
  702. package/serialization/types/StaticField.d.ts +18 -0
  703. package/{dist/serialization/resources/collections/resources/fields/client/requests/FieldCreate.js → serialization/types/StaticField.js} +7 -5
  704. package/serialization/types/StaticFieldType.d.ts +10 -0
  705. package/{dist/serialization/resources/collections/resources/fields/types/FieldCreateType.js → serialization/types/StaticFieldType.js} +12 -12
  706. package/serialization/types/Text.d.ts +13 -0
  707. package/serialization/types/Text.js +34 -0
  708. package/serialization/types/TextNode.d.ts +4 -2
  709. package/serialization/types/TextNode.js +4 -2
  710. package/serialization/types/TextNodeText.d.ts +13 -0
  711. package/serialization/types/TextNodeText.js +34 -0
  712. package/serialization/types/TextNodeWrite.d.ts +13 -0
  713. package/{dist/serialization/resources/pages/types/DomWriteNodesItem.js → serialization/types/TextNodeWrite.js} +3 -3
  714. package/serialization/types/WebhookList.d.ts +2 -2
  715. package/serialization/types/WebhookList.js +2 -2
  716. package/serialization/types/index.d.ts +35 -6
  717. package/serialization/types/index.js +35 -6
  718. package/version.d.ts +1 -1
  719. package/version.js +1 -1
  720. package/wrapper/WebflowClient.d.ts +3 -0
  721. package/wrapper/WebflowClient.js +5 -0
  722. package/wrapper/WebhooksClient.d.ts +39 -0
  723. package/wrapper/WebhooksClient.js +66 -0
  724. package/api/resources/collections/resources/fields/types/index.d.ts +0 -1
  725. package/api/resources/pages/client/requests/DomWrite.d.ts +0 -27
  726. package/api/types/NodeType.d.ts +0 -8
  727. package/dist/api/resources/collections/resources/fields/types/index.d.ts +0 -1
  728. package/dist/api/resources/pages/client/requests/DomWrite.d.ts +0 -27
  729. package/dist/api/types/NodeType.d.ts +0 -8
  730. package/dist/serialization/resources/collections/resources/fields/client/requests/FieldCreate.d.ts +0 -16
  731. package/dist/serialization/resources/collections/resources/fields/types/FieldCreateType.d.ts +0 -10
  732. package/dist/serialization/resources/collections/resources/fields/types/index.d.ts +0 -1
  733. package/dist/serialization/resources/pages/client/requests/DomWrite.d.ts +0 -13
  734. package/dist/serialization/resources/pages/types/DomWriteNodesItem.d.ts +0 -13
  735. package/dist/serialization/types/ErrorDetailsItem.d.ts +0 -10
  736. package/serialization/resources/collections/resources/fields/client/requests/FieldCreate.d.ts +0 -16
  737. package/serialization/resources/collections/resources/fields/types/FieldCreateType.d.ts +0 -10
  738. package/serialization/resources/collections/resources/fields/types/index.d.ts +0 -1
  739. package/serialization/resources/pages/client/requests/DomWrite.d.ts +0 -13
  740. package/serialization/resources/pages/types/DomWriteNodesItem.d.ts +0 -13
  741. package/serialization/types/ErrorDetailsItem.d.ts +0 -10
  742. /package/api/resources/collections/resources/{fields/client/requests/FieldCreate.js → items/types/MultipleLiveItems.js} +0 -0
  743. /package/api/resources/{pages/client/requests/DomWrite.js → components/client/requests/ComponentDomWrite.js} +0 -0
  744. /package/api/resources/{pages/types/DomWriteNodesItem.js → components/client/requests/ComponentPropertiesWrite.js} +0 -0
  745. /package/api/{types/ErrorDetailsItem.js → resources/components/client/requests/ComponentsGetContentRequest.js} +0 -0
  746. /package/{dist/api/resources/collections/resources/fields/client/requests/FieldCreate.js → api/resources/components/client/requests/ComponentsGetPropertiesRequest.js} +0 -0
  747. /package/{dist/api/resources/pages/client/requests/DomWrite.js → api/resources/components/client/requests/ComponentsListRequest.js} +0 -0
  748. /package/{dist/api/resources/pages/types/DomWriteNodesItem.js → api/resources/components/types/ComponentDomWriteNodesItem.js} +0 -0
  749. /package/{dist/api/types/ErrorDetailsItem.js → api/resources/components/types/ComponentPropertiesWritePropertiesItem.js} +0 -0
@@ -5,20 +5,20 @@ types:
5
5
  - name
6
6
  - slug
7
7
  source:
8
- openapi: ../../../referenced-specs/v2.yml
8
+ openapi: ../../../openapi/referenced-specs/v2.yml
9
9
  ItemsListItemsRequestSortOrder:
10
10
  enum:
11
11
  - asc
12
12
  - desc
13
13
  source:
14
- openapi: ../../../referenced-specs/v2.yml
14
+ openapi: ../../../openapi/referenced-specs/v2.yml
15
15
  Multiple Items:
16
16
  properties:
17
17
  items:
18
- type: optional<list<root.CollectionItem>>
19
- docs: List of collection items to create
18
+ type: optional<list<root.CollectionItemPostSingle>>
19
+ docs: An array of items to create
20
20
  source:
21
- openapi: ../../../referenced-specs/v2.yml
21
+ openapi: ../../../openapi/referenced-specs/v2.yml
22
22
  inline: true
23
23
  ItemsCreateItemRequest:
24
24
  discriminated: false
@@ -26,7 +26,7 @@ types:
26
26
  - root.CollectionItemPostSingle
27
27
  - Multiple Items
28
28
  source:
29
- openapi: ../../../referenced-specs/v2.yml
29
+ openapi: ../../../openapi/referenced-specs/v2.yml
30
30
  ItemsDeleteItemsRequestItemsItem:
31
31
  properties:
32
32
  id:
@@ -36,7 +36,7 @@ types:
36
36
  type: optional<list<string>>
37
37
  docs: Array of identifiers for the locales where the item will be created
38
38
  source:
39
- openapi: ../../../referenced-specs/v2.yml
39
+ openapi: ../../../openapi/referenced-specs/v2.yml
40
40
  inline: true
41
41
  ItemsListItemsLiveRequestSortBy:
42
42
  enum:
@@ -44,30 +44,38 @@ types:
44
44
  - name
45
45
  - slug
46
46
  source:
47
- openapi: ../../../referenced-specs/v2.yml
47
+ openapi: ../../../openapi/referenced-specs/v2.yml
48
48
  ItemsListItemsLiveRequestSortOrder:
49
49
  enum:
50
50
  - asc
51
51
  - desc
52
52
  source:
53
- openapi: ../../../referenced-specs/v2.yml
53
+ openapi: ../../../openapi/referenced-specs/v2.yml
54
+ Multiple Live Items:
55
+ properties:
56
+ items:
57
+ type: optional<list<root.CollectionItem>>
58
+ docs: List of collection items to create
59
+ source:
60
+ openapi: ../../../openapi/referenced-specs/v2.yml
61
+ inline: true
54
62
  ItemsCreateItemLiveRequest:
55
63
  discriminated: false
56
64
  union:
57
65
  - root.CollectionItem
58
- - Multiple Items
66
+ - Multiple Live Items
59
67
  source:
60
- openapi: ../../../referenced-specs/v2.yml
68
+ openapi: ../../../openapi/referenced-specs/v2.yml
61
69
  ItemsDeleteItemsLiveRequestItemsItem:
62
70
  properties:
63
- itemId:
71
+ id:
64
72
  type: string
65
73
  docs: Unique identifier for the Item
66
74
  cmsLocaleIds:
67
75
  type: optional<list<string>>
68
76
  docs: Array of identifiers for the locales where the item will be created
69
77
  source:
70
- openapi: ../../../referenced-specs/v2.yml
78
+ openapi: ../../../openapi/referenced-specs/v2.yml
71
79
  inline: true
72
80
  Single CMS Item:
73
81
  properties:
@@ -83,7 +91,7 @@ types:
83
91
  slug.
84
92
  extra-properties: true
85
93
  source:
86
- openapi: ../../../referenced-specs/v2.yml
94
+ openapi: ../../../openapi/referenced-specs/v2.yml
87
95
  inline: true
88
96
  CreateBulkCollectionItemRequestBodyFieldDataItem:
89
97
  docs: A single CMS item to create
@@ -100,7 +108,7 @@ types:
100
108
  slug.
101
109
  extra-properties: true
102
110
  source:
103
- openapi: ../../../referenced-specs/v2.yml
111
+ openapi: ../../../openapi/referenced-specs/v2.yml
104
112
  inline: true
105
113
  CreateBulkCollectionItemRequestBodyFieldData:
106
114
  discriminated: false
@@ -109,14 +117,14 @@ types:
109
117
  - docs: A list of CMS items to create
110
118
  type: list<CreateBulkCollectionItemRequestBodyFieldDataItem>
111
119
  source:
112
- openapi: ../../../referenced-specs/v2.yml
120
+ openapi: ../../../openapi/referenced-specs/v2.yml
113
121
  inline: true
114
122
  ItemsPublishItemResponse:
115
123
  properties:
116
124
  publishedItemIds: optional<list<string>>
117
125
  errors: optional<list<string>>
118
126
  source:
119
- openapi: ../../../referenced-specs/v2.yml
127
+ openapi: ../../../openapi/referenced-specs/v2.yml
120
128
  imports:
121
129
  root: ../__package__.yml
122
130
  service:
@@ -132,7 +140,7 @@ service:
132
140
 
133
141
  Required scope | `CMS:read`
134
142
  source:
135
- openapi: ../../../referenced-specs/v2.yml
143
+ openapi: ../../../openapi/referenced-specs/v2.yml
136
144
  path-parameters:
137
145
  collection_id:
138
146
  type: string
@@ -158,10 +166,10 @@ service:
158
166
  docs: 'Maximum number of records to be returned (max limit: 100)'
159
167
  name:
160
168
  type: optional<string>
161
- docs: The name of the item(s)
169
+ docs: Filter by the exact name of the item(s)
162
170
  slug:
163
171
  type: optional<string>
164
- docs: The slug of the item
172
+ docs: Filter by the exact slug of the item
165
173
  sortBy:
166
174
  type: optional<ItemsListItemsRequestSortBy>
167
175
  docs: Sort results by the provided value
@@ -171,6 +179,7 @@ service:
171
179
  response:
172
180
  docs: Request was successful
173
181
  type: root.CollectionItemList
182
+ status-code: 200
174
183
  errors:
175
184
  - root.BadRequestError
176
185
  - root.UnauthorizedError
@@ -193,6 +202,8 @@ service:
193
202
  fieldData:
194
203
  name: Senior Data Analyst
195
204
  slug: senior-data-analyst
205
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
206
+ department: Data
196
207
  - id: 62c880ef281c7b7b4cf9dabc
197
208
  cmsLocaleId: 66f6e966c9e1dc700a857ca3
198
209
  lastPublished: '2023-04-15T10:25:18.123Z'
@@ -203,6 +214,8 @@ service:
203
214
  fieldData:
204
215
  name: Product Manager
205
216
  slug: product-manager
217
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
218
+ department: Product
206
219
  pagination:
207
220
  limit: 25
208
221
  offset: 0
@@ -217,12 +230,12 @@ service:
217
230
 
218
231
 
219
232
  To create items across multiple locales, please use [this
220
- endpoint.](/data/v2.0.0/reference/cms/collection-items/bulk-items/create-items)
233
+ endpoint.](/v2.0.0/data/reference/cms/collection-items/staged-items/create-items)
221
234
 
222
235
 
223
236
  Required scope | `CMS:write`
224
237
  source:
225
- openapi: ../../../referenced-specs/v2.yml
238
+ openapi: ../../../openapi/referenced-specs/v2.yml
226
239
  path-parameters:
227
240
  collection_id:
228
241
  type: string
@@ -234,6 +247,7 @@ service:
234
247
  response:
235
248
  docs: Request was successful
236
249
  type: root.CollectionItem
250
+ status-code: 202
237
251
  errors:
238
252
  - root.BadRequestError
239
253
  - root.UnauthorizedError
@@ -250,6 +264,9 @@ service:
250
264
  fieldData:
251
265
  name: Pan Galactic Gargle Blaster Recipe
252
266
  slug: pan-galactic-gargle-blaster
267
+ date: '2022-11-18T00:00:00.000Z'
268
+ featured: true
269
+ color: '#db4b68'
253
270
  response:
254
271
  body:
255
272
  id: 42b720ef280c7a7a3be8cabe
@@ -262,6 +279,9 @@ service:
262
279
  fieldData:
263
280
  name: Pan Galactic Gargle Blaster Recipe
264
281
  slug: pan-galactic-gargle-blaster
282
+ color: '#db4b68'
283
+ date: '2022-11-18T00:00:00.000Z'
284
+ featured: true
265
285
  - name: MultipleItems
266
286
  path-parameters:
267
287
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -272,11 +292,15 @@ service:
272
292
  fieldData:
273
293
  name: Senior Data Analyst
274
294
  slug: senior-data-analyst
295
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
296
+ department: Data
275
297
  - isArchived: false
276
298
  isDraft: false
277
299
  fieldData:
278
300
  name: Product Manager
279
301
  slug: product-manager
302
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
303
+ department: Product
280
304
  response:
281
305
  body:
282
306
  id: id
@@ -289,6 +313,9 @@ service:
289
313
  fieldData:
290
314
  name: My new item
291
315
  slug: my-new-item
316
+ date: '2022-11-18T00:00:00.000Z'
317
+ featured: false
318
+ color: '#db4b68'
292
319
  delete-items:
293
320
  path: /collections/{collection_id}/items
294
321
  method: DELETE
@@ -297,13 +324,13 @@ service:
297
324
  Delete Items from a Collection.
298
325
 
299
326
 
300
- **Note:** If the `cmsLocaleId` parameter is undefined or empty and the
301
- items are localized, items will be deleted only in the primary locale.
327
+ <Tip title="Localization Tip">Items will only be deleted in the primary
328
+ locale unless a `cmsLocaleId` is included in the request.</Tip>
302
329
 
303
330
 
304
331
  Required scope | `CMS:write`
305
332
  source:
306
- openapi: ../../../referenced-specs/v2.yml
333
+ openapi: ../../../openapi/referenced-specs/v2.yml
307
334
  path-parameters:
308
335
  collection_id:
309
336
  type: string
@@ -319,6 +346,7 @@ service:
319
346
  - root.BadRequestError
320
347
  - root.UnauthorizedError
321
348
  - root.NotFoundError
349
+ - root.ConflictError
322
350
  - root.TooManyRequestsError
323
351
  - root.InternalServerError
324
352
  examples:
@@ -330,16 +358,19 @@ service:
330
358
  method: PATCH
331
359
  auth: true
332
360
  docs: >
333
- Update a single item or multiple items (up to 100) in a Collection.
361
+ Update a single item or multiple items in a Collection.
362
+
363
+
364
+ The limit for this endpoint is 100 items.
334
365
 
335
366
 
336
- **Note:** If the `cmsLocaleId` parameter is undefined or empty and the
337
- items are localized, items will be updated only in the primary locale.
367
+ <Tip title="Localization Tip">Items will only be updated in the primary
368
+ locale, unless a `cmsLocaleId` is included in the request.</Tip>
338
369
 
339
370
 
340
371
  Required scope | `CMS:write`
341
372
  source:
342
- openapi: ../../../referenced-specs/v2.yml
373
+ openapi: ../../../openapi/referenced-specs/v2.yml
343
374
  path-parameters:
344
375
  collection_id:
345
376
  type: string
@@ -354,6 +385,7 @@ service:
354
385
  response:
355
386
  docs: Request was successful
356
387
  type: root.CollectionItem
388
+ status-code: 200
357
389
  errors:
358
390
  - root.BadRequestError
359
391
  - root.UnauthorizedError
@@ -371,21 +403,25 @@ service:
371
403
  fieldData:
372
404
  name: Ne Paniquez Pas
373
405
  slug: ne-paniquez-pas
406
+ featured: false
374
407
  - id: 66f6ed9576ddacf3149d5ea6
375
408
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
376
409
  fieldData:
377
410
  name: No Entrar en Pánico
378
411
  slug: no-entrar-en-panico
412
+ featured: false
379
413
  - id: 66f6ed9576ddacf3149d5eaa
380
414
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
381
415
  fieldData:
382
416
  name: Au Revoir et Merci pour Tous les Poissons
383
417
  slug: au-revoir-et-merci
418
+ featured: false
384
419
  - id: 66f6ed9576ddacf3149d5eaa
385
420
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
386
421
  fieldData:
387
422
  name: Hasta Luego y Gracias por Todo el Pescado
388
423
  slug: hasta-luego-y-gracias
424
+ featured: false
389
425
  response:
390
426
  body:
391
427
  id: id
@@ -398,6 +434,9 @@ service:
398
434
  fieldData:
399
435
  name: My new item
400
436
  slug: my-new-item
437
+ date: '2022-11-18T00:00:00.000Z'
438
+ featured: false
439
+ color: '#db4b68'
401
440
  - name: MultipleItems
402
441
  path-parameters:
403
442
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -409,12 +448,16 @@ service:
409
448
  fieldData:
410
449
  name: Senior Data Analyst
411
450
  slug: senior-data-analyst
451
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
452
+ department: Data
412
453
  - id: 580e64008c9a982ac9b8b754
413
454
  isArchived: false
414
455
  isDraft: false
415
456
  fieldData:
416
457
  name: Product Manager
417
458
  slug: product-manager
459
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
460
+ department: Product
418
461
  response:
419
462
  body:
420
463
  id: id
@@ -427,6 +470,9 @@ service:
427
470
  fieldData:
428
471
  name: My new item
429
472
  slug: my-new-item
473
+ date: '2022-11-18T00:00:00.000Z'
474
+ featured: false
475
+ color: '#db4b68'
430
476
  - name: Multiple items updated across multiple locales
431
477
  path-parameters:
432
478
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -437,21 +483,25 @@ service:
437
483
  fieldData:
438
484
  name: Ne Paniquez Pas
439
485
  slug: ne-paniquez-pas
486
+ featured: false
440
487
  - id: 66f6ed9576ddacf3149d5ea6
441
488
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
442
489
  fieldData:
443
490
  name: No Entrar en Pánico
444
491
  slug: no-entrar-en-panico
492
+ featured: false
445
493
  - id: 66f6ed9576ddacf3149d5eaa
446
494
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
447
495
  fieldData:
448
496
  name: Au Revoir et Merci pour Tous les Poissons
449
497
  slug: au-revoir-et-merci
498
+ featured: false
450
499
  - id: 66f6ed9576ddacf3149d5eaa
451
500
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
452
501
  fieldData:
453
502
  name: Hasta Luego y Gracias por Todo el Pescado
454
503
  slug: hasta-luego-y-gracias
504
+ featured: false
455
505
  response:
456
506
  body:
457
507
  id: id
@@ -464,6 +514,9 @@ service:
464
514
  fieldData:
465
515
  name: My new item
466
516
  slug: my-new-item
517
+ date: '2022-11-18T00:00:00.000Z'
518
+ featured: false
519
+ color: '#db4b68'
467
520
  - name: Mulitple items updated in a single locale
468
521
  path-parameters:
469
522
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -474,21 +527,25 @@ service:
474
527
  fieldData:
475
528
  name: Ne Paniquez Pas
476
529
  slug: ne-paniquez-pas
530
+ featured: false
477
531
  - id: 66f6ed9576ddacf3149d5ea6
478
532
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
479
533
  fieldData:
480
534
  name: No Entrar en Pánico
481
535
  slug: no-entrar-en-panico
536
+ featured: false
482
537
  - id: 66f6ed9576ddacf3149d5eaa
483
538
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
484
539
  fieldData:
485
540
  name: Au Revoir et Merci pour Tous les Poissons
486
541
  slug: au-revoir-et-merci
542
+ featured: false
487
543
  - id: 66f6ed9576ddacf3149d5eaa
488
544
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
489
545
  fieldData:
490
546
  name: Hasta Luego y Gracias por Todo el Pescado
491
547
  slug: hasta-luego-y-gracias
548
+ featured: false
492
549
  response:
493
550
  body:
494
551
  id: id
@@ -501,16 +558,19 @@ service:
501
558
  fieldData:
502
559
  name: My new item
503
560
  slug: my-new-item
561
+ date: '2022-11-18T00:00:00.000Z'
562
+ featured: false
563
+ color: '#db4b68'
504
564
  list-items-live:
505
565
  path: /collections/{collection_id}/items/live
506
566
  method: GET
507
567
  auth: true
508
568
  docs: |
509
- List of all live Items within a Collection.
569
+ List all published items in a collection.
510
570
 
511
571
  Required scope | `CMS:read`
512
572
  source:
513
- openapi: ../../../referenced-specs/v2.yml
573
+ openapi: ../../../openapi/referenced-specs/v2.yml
514
574
  path-parameters:
515
575
  collection_id:
516
576
  type: string
@@ -536,10 +596,10 @@ service:
536
596
  docs: 'Maximum number of records to be returned (max limit: 100)'
537
597
  name:
538
598
  type: optional<string>
539
- docs: The name of the item(s)
599
+ docs: Filter by the exact name of the item(s)
540
600
  slug:
541
601
  type: optional<string>
542
- docs: The slug of the item
602
+ docs: Filter by the exact slug of the item
543
603
  sortBy:
544
604
  type: optional<ItemsListItemsLiveRequestSortBy>
545
605
  docs: Sort results by the provided value
@@ -549,6 +609,7 @@ service:
549
609
  response:
550
610
  docs: Request was successful
551
611
  type: root.CollectionItemList
612
+ status-code: 200
552
613
  errors:
553
614
  - root.BadRequestError
554
615
  - root.UnauthorizedError
@@ -571,6 +632,8 @@ service:
571
632
  fieldData:
572
633
  name: Senior Data Analyst
573
634
  slug: senior-data-analyst
635
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
636
+ department: Data
574
637
  - id: 62c880ef281c7b7b4cf9dabc
575
638
  cmsLocaleId: 66f6e966c9e1dc700a857ca3
576
639
  lastPublished: '2023-04-15T10:25:18.123Z'
@@ -581,6 +644,8 @@ service:
581
644
  fieldData:
582
645
  name: Product Manager
583
646
  slug: product-manager
647
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
648
+ department: Product
584
649
  pagination:
585
650
  limit: 25
586
651
  offset: 0
@@ -590,19 +655,19 @@ service:
590
655
  method: POST
591
656
  auth: true
592
657
  docs: >
593
- Create live Item(s) in a Collection. The Item(s) will be published to
594
- the live site.
658
+ Create item(s) in a collection that will be immediately published to the
659
+ live site.
595
660
 
596
661
 
597
662
 
598
663
  To create items across multiple locales, [please use this
599
- endpoint.](/v2.0.0/data/reference/cms/collection-items/bulk-items/create-items)
664
+ endpoint.](/v2.0.0/data/reference/cms/collection-items/staged-items/create-items)
600
665
 
601
666
 
602
667
 
603
668
  Required scope | `CMS:write`
604
669
  source:
605
- openapi: ../../../referenced-specs/v2.yml
670
+ openapi: ../../../openapi/referenced-specs/v2.yml
606
671
  path-parameters:
607
672
  collection_id:
608
673
  type: string
@@ -614,6 +679,7 @@ service:
614
679
  response:
615
680
  docs: Request was successful
616
681
  type: root.CollectionItem
682
+ status-code: 202
617
683
  errors:
618
684
  - root.BadRequestError
619
685
  - root.UnauthorizedError
@@ -625,11 +691,17 @@ service:
625
691
  path-parameters:
626
692
  collection_id: 580e63fc8c9a982ac9b8b745
627
693
  request:
694
+ lastPublished: '2023-03-17T18:47:35.560Z'
695
+ lastUpdated: '2023-03-17T18:47:35.560Z'
696
+ createdOn: '2023-03-17T18:47:35.560Z'
628
697
  isArchived: false
629
698
  isDraft: false
630
699
  fieldData:
631
700
  name: Pan Galactic Gargle Blaster Recipe
632
701
  slug: pan-galactic-gargle-blaster
702
+ date: '2022-11-18T00:00:00.000Z'
703
+ featured: true
704
+ color: '#db4b68'
633
705
  response:
634
706
  body:
635
707
  id: 42b720ef280c7a7a3be8cabe
@@ -642,21 +714,34 @@ service:
642
714
  fieldData:
643
715
  name: Pan Galactic Gargle Blaster Recipe
644
716
  slug: pan-galactic-gargle-blaster
717
+ color: '#db4b68'
718
+ date: '2022-11-18T00:00:00.000Z'
719
+ featured: true
645
720
  - name: MultipleItems
646
721
  path-parameters:
647
722
  collection_id: 580e63fc8c9a982ac9b8b745
648
723
  request:
649
724
  items:
650
- - isArchived: false
725
+ - lastPublished: '2023-03-17T18:47:35.560Z'
726
+ lastUpdated: '2023-03-17T18:47:35.560Z'
727
+ createdOn: '2023-03-17T18:47:35.560Z'
728
+ isArchived: false
651
729
  isDraft: false
652
730
  fieldData:
653
731
  name: Senior Data Analyst
654
732
  slug: senior-data-analyst
655
- - isArchived: false
733
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
734
+ department: Data
735
+ - lastPublished: '2023-03-17T18:47:35.560Z'
736
+ lastUpdated: '2023-03-17T18:47:35.560Z'
737
+ createdOn: '2023-03-17T18:47:35.560Z'
738
+ isArchived: false
656
739
  isDraft: false
657
740
  fieldData:
658
741
  name: Product Manager
659
742
  slug: product-manager
743
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
744
+ department: Product
660
745
  response:
661
746
  body:
662
747
  id: 42b720ef280c7a7a3be8cabe
@@ -669,24 +754,29 @@ service:
669
754
  fieldData:
670
755
  name: Pan Galactic Gargle Blaster Recipe
671
756
  slug: pan-galactic-gargle-blaster
757
+ color: '#db4b68'
758
+ date: '2022-11-18T00:00:00.000Z'
759
+ featured: true
672
760
  delete-items-live:
673
761
  path: /collections/{collection_id}/items/live
674
762
  method: DELETE
675
763
  auth: true
676
764
  docs: >
677
765
  Remove an item or multiple items (up to 100 items) from the live site.
678
- Deleting published items will unpublish the items from the live site and
679
- set them to draft.
680
766
 
681
767
 
682
- **Note:** If the `cmsLocaleId` parameter is undefined or empty and the
683
- items are localized, items will be unpublished only in the primary
684
- locale.
768
+ Using this endpoint to delete published item(s) will unpublish the
769
+ item(s) from the live site and set the item(s) `isDraft` property to
770
+ `true`.
771
+
772
+
773
+ <Tip title="Localization Tip">Items will only be unpublished in the
774
+ primary locale unless a `cmsLocaleId` is included in the request.</Tip>
685
775
 
686
776
 
687
777
  Required scope | `CMS:write`
688
778
  source:
689
- openapi: ../../../referenced-specs/v2.yml
779
+ openapi: ../../../openapi/referenced-specs/v2.yml
690
780
  path-parameters:
691
781
  collection_id:
692
782
  type: string
@@ -713,17 +803,17 @@ service:
713
803
  method: PATCH
714
804
  auth: true
715
805
  docs: >
716
- Update a single live item or multiple live items (up to 100) in a
717
- Collection
806
+ Update a single published item or multiple published items (up to 100)
807
+ in a Collection
718
808
 
719
809
 
720
- **Note:** If the `cmsLocaleId` parameter is undefined or empty and the
721
- items are localized, items will be updated only in the primary locale.
810
+ <Tip title="Localization Tip">Items will only be updated in the primary
811
+ locale, unless a `cmsLocaleId` is included in the request.</Tip>
722
812
 
723
813
 
724
814
  Required scope | `CMS:write`
725
815
  source:
726
- openapi: ../../../referenced-specs/v2.yml
816
+ openapi: ../../../openapi/referenced-specs/v2.yml
727
817
  path-parameters:
728
818
  collection_id:
729
819
  type: string
@@ -738,10 +828,12 @@ service:
738
828
  response:
739
829
  docs: Request was successful
740
830
  type: root.CollectionItemListNoPagination
831
+ status-code: 200
741
832
  errors:
742
833
  - root.BadRequestError
743
834
  - root.UnauthorizedError
744
835
  - root.NotFoundError
836
+ - root.ConflictError
745
837
  - root.TooManyRequestsError
746
838
  - root.InternalServerError
747
839
  examples:
@@ -755,21 +847,25 @@ service:
755
847
  fieldData:
756
848
  name: Ne Paniquez Pas
757
849
  slug: ne-paniquez-pas
850
+ featured: false
758
851
  - id: 66f6ed9576ddacf3149d5ea6
759
852
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
760
853
  fieldData:
761
854
  name: No Entrar en Pánico
762
855
  slug: no-entrar-en-panico
856
+ featured: false
763
857
  - id: 66f6ed9576ddacf3149d5eaa
764
858
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
765
859
  fieldData:
766
860
  name: Au Revoir et Merci pour Tous les Poissons
767
861
  slug: au-revoir-et-merci
862
+ featured: false
768
863
  - id: 66f6ed9576ddacf3149d5eaa
769
864
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
770
865
  fieldData:
771
866
  name: Hasta Luego y Gracias por Todo el Pescado
772
867
  slug: hasta-luego-y-gracias
868
+ featured: false
773
869
  response:
774
870
  body:
775
871
  items:
@@ -783,6 +879,7 @@ service:
783
879
  fieldData:
784
880
  name: Ne Paniquez Pas
785
881
  slug: ne-paniquez-pas
882
+ featured: false
786
883
  - id: 66f6ed9576ddacf3149d5ea6
787
884
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
788
885
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -793,6 +890,7 @@ service:
793
890
  fieldData:
794
891
  name: No Entrar en Pánico
795
892
  slug: no-entrar-en-panico
893
+ featured: false
796
894
  - id: 66f6ed9576ddacf3149d5eaa
797
895
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
798
896
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -803,6 +901,7 @@ service:
803
901
  fieldData:
804
902
  name: Au Revoir et Merci pour Tous les Poissons
805
903
  slug: au-revoir-et-merci
904
+ featured: false
806
905
  - id: 66f6ed9576ddacf3149d5eaa
807
906
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
808
907
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -813,6 +912,7 @@ service:
813
912
  fieldData:
814
913
  name: Hasta Luego y Gracias por Todo el Pescado
815
914
  slug: hasta-luego-y-gracias
915
+ featured: false
816
916
  - name: MultipleItems
817
917
  path-parameters:
818
918
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -824,12 +924,16 @@ service:
824
924
  fieldData:
825
925
  name: Senior Data Analyst
826
926
  slug: senior-data-analyst
927
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
928
+ department: Data
827
929
  - id: 580e64008c9a982ac9b8b754
828
930
  isArchived: false
829
931
  isDraft: false
830
932
  fieldData:
831
933
  name: Product Manager
832
934
  slug: product-manager
935
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
936
+ department: Product
833
937
  response:
834
938
  body:
835
939
  items:
@@ -843,6 +947,7 @@ service:
843
947
  fieldData:
844
948
  name: Ne Paniquez Pas
845
949
  slug: ne-paniquez-pas
950
+ featured: false
846
951
  - id: 66f6ed9576ddacf3149d5ea6
847
952
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
848
953
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -853,6 +958,7 @@ service:
853
958
  fieldData:
854
959
  name: No Entrar en Pánico
855
960
  slug: no-entrar-en-panico
961
+ featured: false
856
962
  - id: 66f6ed9576ddacf3149d5eaa
857
963
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
858
964
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -863,6 +969,7 @@ service:
863
969
  fieldData:
864
970
  name: Au Revoir et Merci pour Tous les Poissons
865
971
  slug: au-revoir-et-merci
972
+ featured: false
866
973
  - id: 66f6ed9576ddacf3149d5eaa
867
974
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
868
975
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -873,6 +980,7 @@ service:
873
980
  fieldData:
874
981
  name: Hasta Luego y Gracias por Todo el Pescado
875
982
  slug: hasta-luego-y-gracias
983
+ featured: false
876
984
  - name: Multiple items updated across multiple locales
877
985
  path-parameters:
878
986
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -883,21 +991,25 @@ service:
883
991
  fieldData:
884
992
  name: Ne Paniquez Pas
885
993
  slug: ne-paniquez-pas
994
+ featured: false
886
995
  - id: 66f6ed9576ddacf3149d5ea6
887
996
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
888
997
  fieldData:
889
998
  name: No Entrar en Pánico
890
999
  slug: no-entrar-en-panico
1000
+ featured: false
891
1001
  - id: 66f6ed9576ddacf3149d5eaa
892
1002
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
893
1003
  fieldData:
894
1004
  name: Au Revoir et Merci pour Tous les Poissons
895
1005
  slug: au-revoir-et-merci
1006
+ featured: false
896
1007
  - id: 66f6ed9576ddacf3149d5eaa
897
1008
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
898
1009
  fieldData:
899
1010
  name: Hasta Luego y Gracias por Todo el Pescado
900
1011
  slug: hasta-luego-y-gracias
1012
+ featured: false
901
1013
  response:
902
1014
  body:
903
1015
  items:
@@ -911,6 +1023,7 @@ service:
911
1023
  fieldData:
912
1024
  name: Ne Paniquez Pas
913
1025
  slug: ne-paniquez-pas
1026
+ featured: false
914
1027
  - id: 66f6ed9576ddacf3149d5ea6
915
1028
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
916
1029
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -921,6 +1034,7 @@ service:
921
1034
  fieldData:
922
1035
  name: No Entrar en Pánico
923
1036
  slug: no-entrar-en-panico
1037
+ featured: false
924
1038
  - id: 66f6ed9576ddacf3149d5eaa
925
1039
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
926
1040
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -931,6 +1045,7 @@ service:
931
1045
  fieldData:
932
1046
  name: Au Revoir et Merci pour Tous les Poissons
933
1047
  slug: au-revoir-et-merci
1048
+ featured: false
934
1049
  - id: 66f6ed9576ddacf3149d5eaa
935
1050
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
936
1051
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -941,6 +1056,7 @@ service:
941
1056
  fieldData:
942
1057
  name: Hasta Luego y Gracias por Todo el Pescado
943
1058
  slug: hasta-luego-y-gracias
1059
+ featured: false
944
1060
  - name: Mulitple items updated in a single locale
945
1061
  path-parameters:
946
1062
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -951,21 +1067,25 @@ service:
951
1067
  fieldData:
952
1068
  name: Ne Paniquez Pas
953
1069
  slug: ne-paniquez-pas
1070
+ featured: false
954
1071
  - id: 66f6ed9576ddacf3149d5ea6
955
1072
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
956
1073
  fieldData:
957
1074
  name: No Entrar en Pánico
958
1075
  slug: no-entrar-en-panico
1076
+ featured: false
959
1077
  - id: 66f6ed9576ddacf3149d5eaa
960
1078
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
961
1079
  fieldData:
962
1080
  name: Au Revoir et Merci pour Tous les Poissons
963
1081
  slug: au-revoir-et-merci
1082
+ featured: false
964
1083
  - id: 66f6ed9576ddacf3149d5eaa
965
1084
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
966
1085
  fieldData:
967
1086
  name: Hasta Luego y Gracias por Todo el Pescado
968
1087
  slug: hasta-luego-y-gracias
1088
+ featured: false
969
1089
  response:
970
1090
  body:
971
1091
  items:
@@ -979,6 +1099,8 @@ service:
979
1099
  fieldData:
980
1100
  name: Senior Data Analyst
981
1101
  slug: senior-data-analyst
1102
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
1103
+ department: Data
982
1104
  - id: 62c880ef281c7b7b4cf9dabc
983
1105
  cmsLocaleId: 66f6e966c9e1dc700a857ca3
984
1106
  lastPublished: '2023-04-15T10:25:18.123Z'
@@ -989,6 +1111,8 @@ service:
989
1111
  fieldData:
990
1112
  name: Product Manager
991
1113
  slug: product-manager
1114
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
1115
+ department: Product
992
1116
  create-items:
993
1117
  path: /collections/{collection_id}/items/bulk
994
1118
  method: POST
@@ -998,13 +1122,15 @@ service:
998
1122
  corresponding locales.
999
1123
 
1000
1124
 
1001
- **Notes:**
1125
+ <Note>
1002
1126
  - This endpoint can create up to 100 items in a request.
1003
- - If the `cmsLocaleIds` parameter is undefined or empty and localization is enabled, items will only be created in the primary locale.
1127
+ - If the `cmsLocaleIds` parameter is not included in the request, an item will only be created in the primary locale.
1128
+ </Note>
1129
+
1004
1130
 
1005
1131
  Required scope | `CMS:write`
1006
1132
  source:
1007
- openapi: ../../../referenced-specs/v2.yml
1133
+ openapi: ../../../openapi/referenced-specs/v2.yml
1008
1134
  path-parameters:
1009
1135
  collection_id:
1010
1136
  type: string
@@ -1032,6 +1158,7 @@ service:
1032
1158
  response:
1033
1159
  docs: Request was successful
1034
1160
  type: root.BulkCollectionItem
1161
+ status-code: 202
1035
1162
  errors:
1036
1163
  - root.BadRequestError
1037
1164
  - root.UnauthorizedError
@@ -1067,6 +1194,9 @@ service:
1067
1194
  fieldData:
1068
1195
  name: My new item
1069
1196
  slug: my-new-item
1197
+ date: '2022-11-18T00:00:00.000Z'
1198
+ featured: false
1199
+ color: '#db4b68'
1070
1200
  - name: Create multiple items across multipel locales
1071
1201
  path-parameters:
1072
1202
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -1096,6 +1226,9 @@ service:
1096
1226
  fieldData:
1097
1227
  name: My new item
1098
1228
  slug: my-new-item
1229
+ date: '2022-11-18T00:00:00.000Z'
1230
+ featured: false
1231
+ color: '#db4b68'
1099
1232
  - name: Single item created across multiple locales
1100
1233
  path-parameters:
1101
1234
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -1124,6 +1257,9 @@ service:
1124
1257
  fieldData:
1125
1258
  name: My new item
1126
1259
  slug: my-new-item
1260
+ date: '2022-11-18T00:00:00.000Z'
1261
+ featured: false
1262
+ color: '#db4b68'
1127
1263
  - name: Multiple items created across multiple locales
1128
1264
  path-parameters:
1129
1265
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -1152,6 +1288,9 @@ service:
1152
1288
  fieldData:
1153
1289
  name: My new item
1154
1290
  slug: my-new-item
1291
+ date: '2022-11-18T00:00:00.000Z'
1292
+ featured: false
1293
+ color: '#db4b68'
1155
1294
  get-item:
1156
1295
  path: /collections/{collection_id}/items/{item_id}
1157
1296
  method: GET
@@ -1161,7 +1300,7 @@ service:
1161
1300
 
1162
1301
  Required scope | `CMS:read`
1163
1302
  source:
1164
- openapi: ../../../referenced-specs/v2.yml
1303
+ openapi: ../../../openapi/referenced-specs/v2.yml
1165
1304
  path-parameters:
1166
1305
  collection_id:
1167
1306
  type: string
@@ -1183,6 +1322,7 @@ service:
1183
1322
  response:
1184
1323
  docs: Request was successful
1185
1324
  type: root.CollectionItem
1325
+ status-code: 200
1186
1326
  errors:
1187
1327
  - root.BadRequestError
1188
1328
  - root.UnauthorizedError
@@ -1205,18 +1345,19 @@ service:
1205
1345
  fieldData:
1206
1346
  name: Pan Galactic Gargle Blaster Recipe
1207
1347
  slug: pan-galactic-gargle-blaster
1348
+ color: '#db4b68'
1349
+ date: '2022-11-18T00:00:00.000Z'
1350
+ featured: true
1208
1351
  delete-item:
1209
1352
  path: /collections/{collection_id}/items/{item_id}
1210
1353
  method: DELETE
1211
1354
  auth: true
1212
- docs: >
1213
- Delete an Item from a Collection. This endpoint does not currently
1214
- support bulk deletion.
1215
-
1355
+ docs: |
1356
+ Delete an item from a collection.
1216
1357
 
1217
1358
  Required scope | `CMS:write`
1218
1359
  source:
1219
- openapi: ../../../referenced-specs/v2.yml
1360
+ openapi: ../../../openapi/referenced-specs/v2.yml
1220
1361
  path-parameters:
1221
1362
  collection_id:
1222
1363
  type: string
@@ -1254,7 +1395,7 @@ service:
1254
1395
 
1255
1396
  Required scope | `CMS:write`
1256
1397
  source:
1257
- openapi: ../../../referenced-specs/v2.yml
1398
+ openapi: ../../../openapi/referenced-specs/v2.yml
1258
1399
  path-parameters:
1259
1400
  collection_id:
1260
1401
  type: string
@@ -1269,6 +1410,7 @@ service:
1269
1410
  response:
1270
1411
  docs: Request was successful
1271
1412
  type: root.CollectionItem
1413
+ status-code: 200
1272
1414
  errors:
1273
1415
  - root.BadRequestError
1274
1416
  - root.UnauthorizedError
@@ -1285,6 +1427,9 @@ service:
1285
1427
  fieldData:
1286
1428
  name: Pan Galactic Gargle Blaster Recipe
1287
1429
  slug: pan-galactic-gargle-blaster
1430
+ date: '2022-11-18T00:00:00.000Z'
1431
+ featured: true
1432
+ color: '#db4b68'
1288
1433
  response:
1289
1434
  body:
1290
1435
  id: 42b720ef280c7a7a3be8cabe
@@ -1297,6 +1442,9 @@ service:
1297
1442
  fieldData:
1298
1443
  name: Pan Galactic Gargle Blaster Recipe
1299
1444
  slug: pan-galactic-gargle-blaster
1445
+ color: '#db4b68'
1446
+ date: '2022-11-18T00:00:00.000Z'
1447
+ featured: true
1300
1448
  get-item-live:
1301
1449
  path: /collections/{collection_id}/items/{item_id}/live
1302
1450
  method: GET
@@ -1306,7 +1454,7 @@ service:
1306
1454
 
1307
1455
  Required scope | `CMS:read`
1308
1456
  source:
1309
- openapi: ../../../referenced-specs/v2.yml
1457
+ openapi: ../../../openapi/referenced-specs/v2.yml
1310
1458
  path-parameters:
1311
1459
  collection_id:
1312
1460
  type: string
@@ -1328,6 +1476,7 @@ service:
1328
1476
  response:
1329
1477
  docs: Request was successful
1330
1478
  type: root.CollectionItem
1479
+ status-code: 200
1331
1480
  errors:
1332
1481
  - root.BadRequestError
1333
1482
  - root.UnauthorizedError
@@ -1350,6 +1499,9 @@ service:
1350
1499
  fieldData:
1351
1500
  name: Pan Galactic Gargle Blaster Recipe
1352
1501
  slug: pan-galactic-gargle-blaster
1502
+ color: '#db4b68'
1503
+ date: '2022-11-18T00:00:00.000Z'
1504
+ featured: true
1353
1505
  delete-item-live:
1354
1506
  path: /collections/{collection_id}/items/{item_id}/live
1355
1507
  method: DELETE
@@ -1364,7 +1516,7 @@ service:
1364
1516
 
1365
1517
  Required scope | `CMS:write`
1366
1518
  source:
1367
- openapi: ../../../referenced-specs/v2.yml
1519
+ openapi: ../../../openapi/referenced-specs/v2.yml
1368
1520
  path-parameters:
1369
1521
  collection_id:
1370
1522
  type: string
@@ -1404,7 +1556,7 @@ service:
1404
1556
 
1405
1557
  Required scope | `CMS:write`
1406
1558
  source:
1407
- openapi: ../../../referenced-specs/v2.yml
1559
+ openapi: ../../../openapi/referenced-specs/v2.yml
1408
1560
  path-parameters:
1409
1561
  collection_id:
1410
1562
  type: string
@@ -1419,10 +1571,12 @@ service:
1419
1571
  response:
1420
1572
  docs: Request was successful
1421
1573
  type: root.CollectionItem
1574
+ status-code: 200
1422
1575
  errors:
1423
1576
  - root.BadRequestError
1424
1577
  - root.UnauthorizedError
1425
1578
  - root.NotFoundError
1579
+ - root.ConflictError
1426
1580
  - root.TooManyRequestsError
1427
1581
  - root.InternalServerError
1428
1582
  examples:
@@ -1435,6 +1589,9 @@ service:
1435
1589
  fieldData:
1436
1590
  name: Pan Galactic Gargle Blaster Recipe
1437
1591
  slug: pan-galactic-gargle-blaster
1592
+ date: '2022-11-18T00:00:00.000Z'
1593
+ featured: true
1594
+ color: '#db4b68'
1438
1595
  response:
1439
1596
  body:
1440
1597
  id: 42b720ef280c7a7a3be8cabe
@@ -1447,6 +1604,9 @@ service:
1447
1604
  fieldData:
1448
1605
  name: Pan Galactic Gargle Blaster Recipe
1449
1606
  slug: pan-galactic-gargle-blaster
1607
+ color: '#db4b68'
1608
+ date: '2022-11-18T00:00:00.000Z'
1609
+ featured: true
1450
1610
  publish-item:
1451
1611
  path: /collections/{collection_id}/items/publish
1452
1612
  method: POST
@@ -1456,7 +1616,7 @@ service:
1456
1616
 
1457
1617
  Required scope | `cms:write`
1458
1618
  source:
1459
- openapi: ../../../referenced-specs/v2.yml
1619
+ openapi: ../../../openapi/referenced-specs/v2.yml
1460
1620
  path-parameters:
1461
1621
  collection_id:
1462
1622
  type: string
@@ -1471,6 +1631,7 @@ service:
1471
1631
  response:
1472
1632
  docs: Request was successful
1473
1633
  type: ItemsPublishItemResponse
1634
+ status-code: 202
1474
1635
  errors:
1475
1636
  - root.BadRequestError
1476
1637
  - root.UnauthorizedError
@@ -1492,4 +1653,4 @@ service:
1492
1653
  errors:
1493
1654
  - Staging item ID 643fd856d66b6528195ee2cf not found.
1494
1655
  source:
1495
- openapi: ../../../referenced-specs/v2.yml
1656
+ openapi: ../../../openapi/referenced-specs/v2.yml