webflow-api 3.0.1 → 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 (556) hide show
  1. package/.mock/definition/__package__.yml +526 -221
  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 +168 -35
  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 +6 -4
  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/api/errors/index.d.ts +1 -1
  28. package/api/errors/index.js +1 -1
  29. package/api/resources/accessGroups/client/Client.js +1 -1
  30. package/api/resources/assets/client/Client.d.ts +5 -0
  31. package/api/resources/assets/client/Client.js +13 -8
  32. package/api/resources/collections/client/Client.d.ts +3 -0
  33. package/api/resources/collections/client/Client.js +7 -4
  34. package/api/resources/collections/resources/fields/client/Client.js +3 -3
  35. package/api/resources/collections/resources/fields/types/FieldCreateType.d.ts +11 -10
  36. package/api/resources/collections/resources/fields/types/FieldCreateType.js +10 -9
  37. package/api/resources/collections/resources/items/client/Client.d.ts +8 -5
  38. package/api/resources/collections/resources/items/client/Client.js +26 -21
  39. package/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts +1 -1
  40. package/api/resources/collections/resources/items/types/MultipleItems.d.ts +2 -2
  41. package/api/resources/collections/resources/items/types/MultipleLiveItems.d.ts +8 -0
  42. package/api/resources/collections/resources/items/types/index.d.ts +1 -0
  43. package/api/resources/collections/resources/items/types/index.js +1 -0
  44. package/api/resources/components/client/Client.d.ts +176 -0
  45. package/api/resources/components/client/Client.js +670 -0
  46. package/api/resources/components/client/index.d.ts +1 -0
  47. package/api/resources/components/client/index.js +17 -0
  48. package/api/resources/components/client/requests/ComponentDomWrite.d.ts +34 -0
  49. package/api/resources/components/client/requests/ComponentPropertiesWrite.d.ts +25 -0
  50. package/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +28 -0
  51. package/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +23 -0
  52. package/api/resources/components/client/requests/ComponentsListRequest.d.ts +17 -0
  53. package/api/resources/components/client/requests/index.d.ts +5 -0
  54. package/api/resources/components/client/requests/index.js +2 -0
  55. package/api/resources/components/index.d.ts +2 -0
  56. package/api/resources/components/index.js +18 -0
  57. package/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +5 -0
  58. package/api/resources/components/types/ComponentDomWriteNodesItem.js +5 -0
  59. package/api/resources/components/types/ComponentPropertiesWritePropertiesItem.d.ts +16 -0
  60. package/api/resources/components/types/ComponentPropertiesWritePropertiesItem.js +5 -0
  61. package/api/resources/components/types/ComponentsUpdateContentResponse.d.ts +7 -0
  62. package/api/resources/components/types/ComponentsUpdateContentResponse.js +5 -0
  63. package/api/resources/components/types/ComponentsUpdatePropertiesResponse.d.ts +7 -0
  64. package/api/resources/components/types/ComponentsUpdatePropertiesResponse.js +5 -0
  65. package/api/resources/components/types/index.d.ts +4 -0
  66. package/api/resources/components/types/index.js +20 -0
  67. package/api/resources/ecommerce/client/Client.js +1 -1
  68. package/api/resources/forms/client/Client.d.ts +3 -0
  69. package/api/resources/forms/client/Client.js +8 -5
  70. package/api/resources/index.d.ts +3 -0
  71. package/api/resources/index.js +4 -1
  72. package/api/resources/inventory/client/Client.d.ts +3 -1
  73. package/api/resources/inventory/client/Client.js +5 -3
  74. package/api/resources/orders/client/Client.d.ts +3 -0
  75. package/api/resources/orders/client/Client.js +9 -6
  76. package/api/resources/pages/client/Client.d.ts +26 -10
  77. package/api/resources/pages/client/Client.js +32 -18
  78. package/api/resources/pages/client/requests/PageDomWrite.d.ts +34 -0
  79. package/api/resources/pages/client/requests/PageDomWrite.js +5 -0
  80. package/api/resources/pages/client/requests/index.d.ts +1 -1
  81. package/api/resources/pages/resources/scripts/client/Client.d.ts +6 -3
  82. package/api/resources/pages/resources/scripts/client/Client.js +11 -6
  83. package/api/resources/pages/types/PageDomWriteNodesItem.d.ts +5 -0
  84. package/api/resources/pages/types/PageDomWriteNodesItem.js +5 -0
  85. package/api/resources/pages/types/index.d.ts +1 -1
  86. package/api/resources/pages/types/index.js +1 -1
  87. package/api/resources/products/client/Client.d.ts +5 -6
  88. package/api/resources/products/client/Client.js +11 -12
  89. package/api/resources/scripts/client/Client.d.ts +3 -3
  90. package/api/resources/scripts/client/Client.js +6 -6
  91. package/api/resources/sites/client/Client.d.ts +70 -0
  92. package/api/resources/sites/client/Client.js +330 -9
  93. package/api/resources/sites/client/requests/SitesCreateRequest.d.ts +17 -0
  94. package/api/resources/sites/client/requests/SitesCreateRequest.js +5 -0
  95. package/api/resources/sites/client/requests/SitesUpdateRequest.d.ts +13 -0
  96. package/api/resources/sites/client/requests/SitesUpdateRequest.js +5 -0
  97. package/api/resources/sites/client/requests/index.d.ts +2 -0
  98. package/api/resources/sites/resources/activityLogs/client/Client.d.ts +1 -1
  99. package/api/resources/sites/resources/activityLogs/client/Client.js +2 -2
  100. package/api/resources/sites/resources/index.d.ts +2 -0
  101. package/api/resources/sites/resources/index.js +3 -1
  102. package/api/resources/sites/resources/plans/client/Client.d.ts +45 -0
  103. package/api/resources/sites/resources/plans/client/Client.js +155 -0
  104. package/api/resources/sites/resources/plans/client/index.d.ts +1 -0
  105. package/api/resources/sites/resources/plans/client/index.js +2 -0
  106. package/api/resources/sites/resources/plans/index.d.ts +1 -0
  107. package/api/resources/sites/resources/plans/index.js +17 -0
  108. package/api/resources/sites/resources/redirects/client/Client.d.ts +115 -0
  109. package/api/resources/sites/resources/redirects/client/Client.js +472 -0
  110. package/api/resources/sites/resources/redirects/client/index.d.ts +1 -0
  111. package/api/resources/sites/resources/redirects/client/index.js +2 -0
  112. package/api/resources/sites/resources/redirects/index.d.ts +1 -0
  113. package/api/resources/sites/resources/redirects/index.js +17 -0
  114. package/api/resources/sites/resources/scripts/client/Client.d.ts +4 -4
  115. package/api/resources/sites/resources/scripts/client/Client.js +8 -8
  116. package/api/resources/token/client/Client.d.ts +2 -1
  117. package/api/resources/token/client/Client.js +4 -3
  118. package/api/resources/users/client/Client.d.ts +1 -1
  119. package/api/resources/users/client/Client.js +6 -6
  120. package/api/resources/webhooks/client/Client.d.ts +4 -1
  121. package/api/resources/webhooks/client/Client.js +8 -5
  122. package/api/types/CollectionItem.d.ts +5 -1
  123. package/api/types/CollectionItemPostSingle.d.ts +7 -3
  124. package/api/types/Component.d.ts +18 -0
  125. package/api/types/Component.js +5 -0
  126. package/api/types/ComponentDom.d.ts +13 -0
  127. package/api/types/ComponentDom.js +5 -0
  128. package/api/types/ComponentInstanceNodePropertyOverridesWrite.d.ts +13 -0
  129. package/api/types/ComponentInstanceNodePropertyOverridesWrite.js +5 -0
  130. package/api/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.d.ts +14 -0
  131. package/api/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +5 -0
  132. package/api/types/ComponentList.d.ts +11 -0
  133. package/api/types/ComponentList.js +5 -0
  134. package/api/types/ComponentNode.d.ts +15 -0
  135. package/api/types/ComponentNode.js +5 -0
  136. package/api/types/ComponentProperties.d.ts +13 -0
  137. package/api/types/ComponentProperties.js +5 -0
  138. package/api/types/ComponentProperty.d.ts +17 -0
  139. package/api/types/ComponentProperty.js +5 -0
  140. package/api/types/ComponentPropertyType.d.ts +12 -0
  141. package/api/types/ComponentPropertyType.js +11 -0
  142. package/api/types/Dom.d.ts +1 -1
  143. package/api/types/Domain.d.ts +2 -0
  144. package/api/types/Error_.d.ts +1 -1
  145. package/api/types/FieldType.d.ts +10 -10
  146. package/api/types/FieldType.js +9 -9
  147. package/api/types/ImageNode.d.ts +6 -2
  148. package/api/types/ImageNodeImage.d.ts +7 -0
  149. package/api/types/ImageNodeImage.js +5 -0
  150. package/api/types/Node.d.ts +11 -8
  151. package/api/types/{ErrorDetailsItem.d.ts → NotEnterprisePlanWorkspace.d.ts} +1 -1
  152. package/api/types/NotEnterprisePlanWorkspace.js +5 -0
  153. package/api/types/ProductFieldData.d.ts +1 -1
  154. package/api/types/Redirect.d.ts +14 -0
  155. package/api/types/Redirect.js +5 -0
  156. package/api/types/Redirects.d.ts +12 -0
  157. package/api/types/Redirects.js +5 -0
  158. package/api/types/ScriptApply.d.ts +1 -1
  159. package/api/types/SitePlan.d.ts +12 -0
  160. package/api/types/SitePlan.js +5 -0
  161. package/api/types/SitePlanId.d.ts +21 -0
  162. package/api/types/SitePlanId.js +20 -0
  163. package/api/types/SitePlanName.d.ts +15 -0
  164. package/api/types/SitePlanName.js +14 -0
  165. package/api/types/Text.d.ts +9 -0
  166. package/api/types/Text.js +5 -0
  167. package/api/types/TextNode.d.ts +7 -3
  168. package/api/types/TextNodeText.d.ts +9 -0
  169. package/api/types/TextNodeText.js +5 -0
  170. package/api/{resources/pages/types/DomWriteNodesItem.d.ts → types/TextNodeWrite.d.ts} +4 -1
  171. package/api/types/TextNodeWrite.js +5 -0
  172. package/api/types/TriggerType.d.ts +15 -15
  173. package/api/types/UserAccessGroupsItem.d.ts +2 -3
  174. package/api/types/UserAccessGroupsItemType.d.ts +2 -3
  175. package/api/types/index.d.ts +23 -6
  176. package/api/types/index.js +23 -6
  177. package/dist/Client.d.ts +3 -0
  178. package/dist/Client.js +25 -20
  179. package/dist/api/errors/index.d.ts +1 -1
  180. package/dist/api/errors/index.js +1 -1
  181. package/dist/api/resources/accessGroups/client/Client.js +1 -1
  182. package/dist/api/resources/assets/client/Client.d.ts +5 -0
  183. package/dist/api/resources/assets/client/Client.js +13 -8
  184. package/dist/api/resources/collections/client/Client.d.ts +3 -0
  185. package/dist/api/resources/collections/client/Client.js +7 -4
  186. package/dist/api/resources/collections/resources/fields/client/Client.js +3 -3
  187. package/dist/api/resources/collections/resources/fields/types/FieldCreateType.d.ts +11 -10
  188. package/dist/api/resources/collections/resources/fields/types/FieldCreateType.js +10 -9
  189. package/dist/api/resources/collections/resources/items/client/Client.d.ts +8 -5
  190. package/dist/api/resources/collections/resources/items/client/Client.js +26 -21
  191. package/dist/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts +1 -1
  192. package/dist/api/resources/collections/resources/items/types/MultipleItems.d.ts +2 -2
  193. package/dist/api/resources/collections/resources/items/types/MultipleLiveItems.d.ts +8 -0
  194. package/dist/api/resources/collections/resources/items/types/MultipleLiveItems.js +5 -0
  195. package/dist/api/resources/collections/resources/items/types/index.d.ts +1 -0
  196. package/dist/api/resources/collections/resources/items/types/index.js +1 -0
  197. package/dist/api/resources/components/client/Client.d.ts +176 -0
  198. package/dist/api/resources/components/client/Client.js +670 -0
  199. package/dist/api/resources/components/client/index.d.ts +1 -0
  200. package/dist/api/resources/components/client/index.js +17 -0
  201. package/dist/api/resources/components/client/requests/ComponentDomWrite.d.ts +34 -0
  202. package/dist/api/resources/components/client/requests/ComponentDomWrite.js +5 -0
  203. package/dist/api/resources/components/client/requests/ComponentPropertiesWrite.d.ts +25 -0
  204. package/dist/api/resources/components/client/requests/ComponentPropertiesWrite.js +5 -0
  205. package/dist/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +28 -0
  206. package/dist/api/resources/components/client/requests/ComponentsGetContentRequest.js +5 -0
  207. package/dist/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +23 -0
  208. package/dist/api/resources/components/client/requests/ComponentsGetPropertiesRequest.js +5 -0
  209. package/dist/api/resources/components/client/requests/ComponentsListRequest.d.ts +17 -0
  210. package/dist/api/resources/components/client/requests/ComponentsListRequest.js +5 -0
  211. package/dist/api/resources/components/client/requests/index.d.ts +5 -0
  212. package/dist/api/resources/components/client/requests/index.js +2 -0
  213. package/dist/api/resources/components/index.d.ts +2 -0
  214. package/dist/api/resources/components/index.js +18 -0
  215. package/dist/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +5 -0
  216. package/dist/api/resources/components/types/ComponentDomWriteNodesItem.js +5 -0
  217. package/dist/api/resources/components/types/ComponentPropertiesWritePropertiesItem.d.ts +16 -0
  218. package/dist/api/resources/components/types/ComponentPropertiesWritePropertiesItem.js +5 -0
  219. package/dist/api/resources/components/types/ComponentsUpdateContentResponse.d.ts +7 -0
  220. package/dist/api/resources/components/types/ComponentsUpdateContentResponse.js +5 -0
  221. package/dist/api/resources/components/types/ComponentsUpdatePropertiesResponse.d.ts +7 -0
  222. package/dist/api/resources/components/types/ComponentsUpdatePropertiesResponse.js +5 -0
  223. package/dist/api/resources/components/types/index.d.ts +4 -0
  224. package/dist/api/resources/components/types/index.js +20 -0
  225. package/dist/api/resources/ecommerce/client/Client.js +1 -1
  226. package/dist/api/resources/forms/client/Client.d.ts +3 -0
  227. package/dist/api/resources/forms/client/Client.js +8 -5
  228. package/dist/api/resources/index.d.ts +3 -0
  229. package/dist/api/resources/index.js +4 -1
  230. package/dist/api/resources/inventory/client/Client.d.ts +3 -1
  231. package/dist/api/resources/inventory/client/Client.js +5 -3
  232. package/dist/api/resources/orders/client/Client.d.ts +3 -0
  233. package/dist/api/resources/orders/client/Client.js +9 -6
  234. package/dist/api/resources/pages/client/Client.d.ts +26 -10
  235. package/dist/api/resources/pages/client/Client.js +32 -18
  236. package/dist/api/resources/pages/client/requests/PageDomWrite.d.ts +34 -0
  237. package/dist/api/resources/pages/client/requests/PageDomWrite.js +5 -0
  238. package/dist/api/resources/pages/client/requests/index.d.ts +1 -1
  239. package/dist/api/resources/pages/resources/scripts/client/Client.d.ts +6 -3
  240. package/dist/api/resources/pages/resources/scripts/client/Client.js +11 -6
  241. package/dist/api/resources/pages/types/PageDomWriteNodesItem.d.ts +5 -0
  242. package/dist/api/resources/pages/types/PageDomWriteNodesItem.js +5 -0
  243. package/dist/api/resources/pages/types/index.d.ts +1 -1
  244. package/dist/api/resources/pages/types/index.js +1 -1
  245. package/dist/api/resources/products/client/Client.d.ts +5 -6
  246. package/dist/api/resources/products/client/Client.js +11 -12
  247. package/dist/api/resources/scripts/client/Client.d.ts +3 -3
  248. package/dist/api/resources/scripts/client/Client.js +6 -6
  249. package/dist/api/resources/sites/client/Client.d.ts +70 -0
  250. package/dist/api/resources/sites/client/Client.js +330 -9
  251. package/dist/api/resources/sites/client/requests/SitesCreateRequest.d.ts +17 -0
  252. package/dist/api/resources/sites/client/requests/SitesCreateRequest.js +5 -0
  253. package/dist/api/resources/sites/client/requests/SitesUpdateRequest.d.ts +13 -0
  254. package/dist/api/resources/sites/client/requests/SitesUpdateRequest.js +5 -0
  255. package/dist/api/resources/sites/client/requests/index.d.ts +2 -0
  256. package/dist/api/resources/sites/resources/activityLogs/client/Client.d.ts +1 -1
  257. package/dist/api/resources/sites/resources/activityLogs/client/Client.js +2 -2
  258. package/dist/api/resources/sites/resources/index.d.ts +2 -0
  259. package/dist/api/resources/sites/resources/index.js +3 -1
  260. package/dist/api/resources/sites/resources/plans/client/Client.d.ts +45 -0
  261. package/dist/api/resources/sites/resources/plans/client/Client.js +155 -0
  262. package/dist/api/resources/sites/resources/plans/client/index.d.ts +1 -0
  263. package/dist/api/resources/sites/resources/plans/client/index.js +2 -0
  264. package/dist/api/resources/sites/resources/plans/index.d.ts +1 -0
  265. package/dist/api/resources/sites/resources/plans/index.js +17 -0
  266. package/dist/api/resources/sites/resources/redirects/client/Client.d.ts +115 -0
  267. package/dist/api/resources/sites/resources/redirects/client/Client.js +472 -0
  268. package/dist/api/resources/sites/resources/redirects/client/index.d.ts +1 -0
  269. package/dist/api/resources/sites/resources/redirects/client/index.js +2 -0
  270. package/dist/api/resources/sites/resources/redirects/index.d.ts +1 -0
  271. package/dist/api/resources/sites/resources/redirects/index.js +17 -0
  272. package/dist/api/resources/sites/resources/scripts/client/Client.d.ts +4 -4
  273. package/dist/api/resources/sites/resources/scripts/client/Client.js +8 -8
  274. package/dist/api/resources/token/client/Client.d.ts +2 -1
  275. package/dist/api/resources/token/client/Client.js +4 -3
  276. package/dist/api/resources/users/client/Client.d.ts +1 -1
  277. package/dist/api/resources/users/client/Client.js +6 -6
  278. package/dist/api/resources/webhooks/client/Client.d.ts +4 -1
  279. package/dist/api/resources/webhooks/client/Client.js +8 -5
  280. package/dist/api/types/CollectionItem.d.ts +5 -1
  281. package/dist/api/types/CollectionItemPostSingle.d.ts +7 -3
  282. package/dist/api/types/Component.d.ts +18 -0
  283. package/dist/api/types/Component.js +5 -0
  284. package/dist/api/types/ComponentDom.d.ts +13 -0
  285. package/dist/api/types/ComponentDom.js +5 -0
  286. package/dist/api/types/ComponentInstanceNodePropertyOverridesWrite.d.ts +13 -0
  287. package/dist/api/types/ComponentInstanceNodePropertyOverridesWrite.js +5 -0
  288. package/dist/api/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.d.ts +14 -0
  289. package/dist/api/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +5 -0
  290. package/dist/api/types/ComponentList.d.ts +11 -0
  291. package/dist/api/types/ComponentList.js +5 -0
  292. package/dist/api/types/ComponentNode.d.ts +15 -0
  293. package/dist/api/types/ComponentNode.js +5 -0
  294. package/dist/api/types/ComponentProperties.d.ts +13 -0
  295. package/dist/api/types/ComponentProperties.js +5 -0
  296. package/dist/api/types/ComponentProperty.d.ts +17 -0
  297. package/dist/api/types/ComponentProperty.js +5 -0
  298. package/dist/api/types/ComponentPropertyType.d.ts +12 -0
  299. package/dist/api/types/ComponentPropertyType.js +11 -0
  300. package/dist/api/types/Dom.d.ts +1 -1
  301. package/dist/api/types/Domain.d.ts +2 -0
  302. package/dist/api/types/Error_.d.ts +1 -1
  303. package/dist/api/types/FieldType.d.ts +10 -10
  304. package/dist/api/types/FieldType.js +9 -9
  305. package/dist/api/types/ImageNode.d.ts +6 -2
  306. package/dist/api/types/ImageNodeImage.d.ts +7 -0
  307. package/dist/api/types/ImageNodeImage.js +5 -0
  308. package/dist/api/types/Node.d.ts +11 -8
  309. package/dist/api/types/{ErrorDetailsItem.d.ts → NotEnterprisePlanWorkspace.d.ts} +1 -1
  310. package/dist/api/types/NotEnterprisePlanWorkspace.js +5 -0
  311. package/dist/api/types/ProductFieldData.d.ts +1 -1
  312. package/dist/api/types/Redirect.d.ts +14 -0
  313. package/dist/api/types/Redirect.js +5 -0
  314. package/dist/api/types/Redirects.d.ts +12 -0
  315. package/dist/api/types/Redirects.js +5 -0
  316. package/dist/api/types/ScriptApply.d.ts +1 -1
  317. package/dist/api/types/SitePlan.d.ts +12 -0
  318. package/dist/api/types/SitePlan.js +5 -0
  319. package/dist/api/types/SitePlanId.d.ts +21 -0
  320. package/dist/api/types/SitePlanId.js +20 -0
  321. package/dist/api/types/SitePlanName.d.ts +15 -0
  322. package/dist/api/types/SitePlanName.js +14 -0
  323. package/dist/api/types/Text.d.ts +9 -0
  324. package/dist/api/types/Text.js +5 -0
  325. package/dist/api/types/TextNode.d.ts +7 -3
  326. package/dist/api/types/TextNodeText.d.ts +9 -0
  327. package/dist/api/types/TextNodeText.js +5 -0
  328. package/dist/api/{resources/pages/types/DomWriteNodesItem.d.ts → types/TextNodeWrite.d.ts} +4 -1
  329. package/dist/api/types/TextNodeWrite.js +5 -0
  330. package/dist/api/types/TriggerType.d.ts +15 -15
  331. package/dist/api/types/UserAccessGroupsItem.d.ts +2 -3
  332. package/dist/api/types/UserAccessGroupsItemType.d.ts +2 -3
  333. package/dist/api/types/index.d.ts +23 -6
  334. package/dist/api/types/index.js +23 -6
  335. package/dist/serialization/resources/collections/resources/fields/types/FieldCreateType.d.ts +1 -1
  336. package/dist/serialization/resources/collections/resources/fields/types/FieldCreateType.js +10 -9
  337. package/dist/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts +2 -2
  338. package/dist/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.js +2 -2
  339. package/dist/serialization/resources/collections/resources/items/types/MultipleItems.d.ts +2 -2
  340. package/dist/serialization/resources/collections/resources/items/types/MultipleItems.js +2 -2
  341. package/dist/serialization/resources/collections/resources/items/types/MultipleLiveItems.d.ts +13 -0
  342. package/dist/serialization/resources/collections/resources/items/types/MultipleLiveItems.js +34 -0
  343. package/dist/serialization/resources/collections/resources/items/types/index.d.ts +1 -0
  344. package/dist/serialization/resources/collections/resources/items/types/index.js +1 -0
  345. package/dist/serialization/resources/components/client/index.d.ts +1 -0
  346. package/dist/serialization/resources/components/client/index.js +17 -0
  347. package/dist/serialization/resources/components/client/requests/ComponentDomWrite.d.ts +13 -0
  348. package/dist/serialization/resources/components/client/requests/ComponentDomWrite.js +34 -0
  349. package/dist/serialization/resources/components/client/requests/ComponentPropertiesWrite.d.ts +13 -0
  350. package/dist/serialization/resources/components/client/requests/ComponentPropertiesWrite.js +34 -0
  351. package/dist/serialization/resources/components/client/requests/index.d.ts +2 -0
  352. package/dist/serialization/resources/components/client/requests/index.js +7 -0
  353. package/dist/serialization/resources/components/index.d.ts +2 -0
  354. package/dist/serialization/resources/components/index.js +18 -0
  355. package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +12 -0
  356. package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.js +33 -0
  357. package/dist/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.d.ts +13 -0
  358. package/dist/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.js +34 -0
  359. package/dist/serialization/resources/components/types/ComponentsUpdateContentResponse.d.ts +12 -0
  360. package/dist/serialization/resources/components/types/ComponentsUpdateContentResponse.js +33 -0
  361. package/dist/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.d.ts +12 -0
  362. package/dist/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.js +33 -0
  363. package/dist/serialization/resources/components/types/index.d.ts +4 -0
  364. package/dist/serialization/resources/components/types/index.js +20 -0
  365. package/dist/serialization/resources/index.d.ts +3 -0
  366. package/dist/serialization/resources/index.js +4 -1
  367. package/dist/serialization/resources/pages/client/requests/PageDomWrite.d.ts +13 -0
  368. package/dist/serialization/resources/pages/client/requests/PageDomWrite.js +34 -0
  369. package/dist/serialization/resources/pages/client/requests/index.d.ts +1 -1
  370. package/dist/serialization/resources/pages/client/requests/index.js +3 -3
  371. package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +12 -0
  372. package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.js +33 -0
  373. package/dist/serialization/resources/pages/types/index.d.ts +1 -1
  374. package/dist/serialization/resources/pages/types/index.js +1 -1
  375. package/dist/serialization/resources/sites/client/requests/SitesCreateRequest.d.ts +14 -0
  376. package/dist/serialization/resources/sites/client/requests/SitesCreateRequest.js +35 -0
  377. package/dist/serialization/resources/sites/client/requests/SitesUpdateRequest.d.ts +13 -0
  378. package/{serialization/resources/pages/client/requests/DomWrite.js → dist/serialization/resources/sites/client/requests/SitesUpdateRequest.js} +4 -4
  379. package/dist/serialization/resources/sites/client/requests/index.d.ts +2 -0
  380. package/dist/serialization/resources/sites/client/requests/index.js +5 -1
  381. package/dist/serialization/types/Component.d.ts +16 -0
  382. package/dist/serialization/types/Component.js +37 -0
  383. package/dist/serialization/types/ComponentDom.d.ts +16 -0
  384. package/dist/serialization/types/ComponentDom.js +37 -0
  385. package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWrite.d.ts +14 -0
  386. package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWrite.js +35 -0
  387. package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.d.ts +13 -0
  388. package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +34 -0
  389. package/dist/serialization/types/ComponentList.d.ts +15 -0
  390. package/dist/serialization/types/ComponentList.js +36 -0
  391. package/dist/serialization/types/ComponentNode.d.ts +15 -0
  392. package/dist/serialization/types/ComponentNode.js +36 -0
  393. package/dist/serialization/types/ComponentProperties.d.ts +16 -0
  394. package/dist/serialization/types/ComponentProperties.js +37 -0
  395. package/dist/serialization/types/ComponentProperty.d.ts +17 -0
  396. package/dist/serialization/types/ComponentProperty.js +38 -0
  397. package/dist/serialization/types/ComponentPropertyType.d.ts +10 -0
  398. package/dist/serialization/types/{ErrorDetailsItem.js → ComponentPropertyType.js} +2 -5
  399. package/dist/serialization/types/Domain.d.ts +1 -0
  400. package/dist/serialization/types/Domain.js +1 -0
  401. package/dist/serialization/types/Error_.d.ts +1 -2
  402. package/dist/serialization/types/Error_.js +1 -2
  403. package/dist/serialization/types/FieldType.d.ts +1 -1
  404. package/dist/serialization/types/FieldType.js +9 -9
  405. package/dist/serialization/types/ImageNode.d.ts +4 -2
  406. package/dist/serialization/types/ImageNode.js +4 -2
  407. package/dist/serialization/types/ImageNodeImage.d.ts +13 -0
  408. package/{serialization/types/ErrorDetailsItem.js → dist/serialization/types/ImageNodeImage.js} +5 -5
  409. package/dist/serialization/types/Node.d.ts +11 -8
  410. package/dist/serialization/types/Node.js +10 -7
  411. package/dist/serialization/types/NotEnterprisePlanWorkspace.d.ts +10 -0
  412. package/dist/serialization/types/{NodeType.js → NotEnterprisePlanWorkspace.js} +2 -2
  413. package/dist/serialization/types/Redirect.d.ts +14 -0
  414. package/dist/serialization/types/Redirect.js +35 -0
  415. package/dist/serialization/types/Redirects.d.ts +15 -0
  416. package/dist/serialization/types/Redirects.js +36 -0
  417. package/dist/serialization/types/SitePlan.d.ts +16 -0
  418. package/dist/serialization/types/SitePlan.js +37 -0
  419. package/dist/serialization/types/SitePlanId.d.ts +10 -0
  420. package/dist/serialization/types/SitePlanId.js +44 -0
  421. package/dist/serialization/types/SitePlanName.d.ts +10 -0
  422. package/dist/serialization/types/SitePlanName.js +38 -0
  423. package/dist/serialization/types/Text.d.ts +13 -0
  424. package/dist/serialization/types/Text.js +34 -0
  425. package/dist/serialization/types/TextNode.d.ts +4 -2
  426. package/dist/serialization/types/TextNode.js +4 -2
  427. package/dist/serialization/types/TextNodeText.d.ts +13 -0
  428. package/dist/serialization/types/TextNodeText.js +34 -0
  429. package/dist/serialization/types/TextNodeWrite.d.ts +13 -0
  430. package/{serialization/resources/pages/types/DomWriteNodesItem.js → dist/serialization/types/TextNodeWrite.js} +3 -3
  431. package/dist/serialization/types/index.d.ts +23 -6
  432. package/dist/serialization/types/index.js +23 -6
  433. package/dist/version.d.ts +1 -1
  434. package/dist/version.js +1 -1
  435. package/package.json +1 -1
  436. package/reference.md +1844 -778
  437. package/serialization/resources/collections/resources/fields/types/FieldCreateType.d.ts +1 -1
  438. package/serialization/resources/collections/resources/fields/types/FieldCreateType.js +10 -9
  439. package/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts +2 -2
  440. package/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.js +2 -2
  441. package/serialization/resources/collections/resources/items/types/MultipleItems.d.ts +2 -2
  442. package/serialization/resources/collections/resources/items/types/MultipleItems.js +2 -2
  443. package/serialization/resources/collections/resources/items/types/MultipleLiveItems.d.ts +13 -0
  444. package/serialization/resources/collections/resources/items/types/MultipleLiveItems.js +34 -0
  445. package/serialization/resources/collections/resources/items/types/index.d.ts +1 -0
  446. package/serialization/resources/collections/resources/items/types/index.js +1 -0
  447. package/serialization/resources/components/client/index.d.ts +1 -0
  448. package/serialization/resources/components/client/index.js +17 -0
  449. package/serialization/resources/components/client/requests/ComponentDomWrite.d.ts +13 -0
  450. package/serialization/resources/components/client/requests/ComponentDomWrite.js +34 -0
  451. package/serialization/resources/components/client/requests/ComponentPropertiesWrite.d.ts +13 -0
  452. package/serialization/resources/components/client/requests/ComponentPropertiesWrite.js +34 -0
  453. package/serialization/resources/components/client/requests/index.d.ts +2 -0
  454. package/serialization/resources/components/client/requests/index.js +7 -0
  455. package/serialization/resources/components/index.d.ts +2 -0
  456. package/serialization/resources/components/index.js +18 -0
  457. package/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +12 -0
  458. package/serialization/resources/components/types/ComponentDomWriteNodesItem.js +33 -0
  459. package/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.d.ts +13 -0
  460. package/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.js +34 -0
  461. package/serialization/resources/components/types/ComponentsUpdateContentResponse.d.ts +12 -0
  462. package/serialization/resources/components/types/ComponentsUpdateContentResponse.js +33 -0
  463. package/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.d.ts +12 -0
  464. package/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.js +33 -0
  465. package/serialization/resources/components/types/index.d.ts +4 -0
  466. package/serialization/resources/components/types/index.js +20 -0
  467. package/serialization/resources/index.d.ts +3 -0
  468. package/serialization/resources/index.js +4 -1
  469. package/serialization/resources/pages/client/requests/PageDomWrite.d.ts +13 -0
  470. package/serialization/resources/pages/client/requests/PageDomWrite.js +34 -0
  471. package/serialization/resources/pages/client/requests/index.d.ts +1 -1
  472. package/serialization/resources/pages/client/requests/index.js +3 -3
  473. package/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +12 -0
  474. package/serialization/resources/pages/types/PageDomWriteNodesItem.js +33 -0
  475. package/serialization/resources/pages/types/index.d.ts +1 -1
  476. package/serialization/resources/pages/types/index.js +1 -1
  477. package/serialization/resources/sites/client/requests/SitesCreateRequest.d.ts +14 -0
  478. package/serialization/resources/sites/client/requests/SitesCreateRequest.js +35 -0
  479. package/serialization/resources/sites/client/requests/SitesUpdateRequest.d.ts +13 -0
  480. package/{dist/serialization/resources/pages/client/requests/DomWrite.js → serialization/resources/sites/client/requests/SitesUpdateRequest.js} +4 -4
  481. package/serialization/resources/sites/client/requests/index.d.ts +2 -0
  482. package/serialization/resources/sites/client/requests/index.js +5 -1
  483. package/serialization/types/Component.d.ts +16 -0
  484. package/serialization/types/Component.js +37 -0
  485. package/serialization/types/ComponentDom.d.ts +16 -0
  486. package/serialization/types/ComponentDom.js +37 -0
  487. package/serialization/types/ComponentInstanceNodePropertyOverridesWrite.d.ts +14 -0
  488. package/serialization/types/ComponentInstanceNodePropertyOverridesWrite.js +35 -0
  489. package/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.d.ts +13 -0
  490. package/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +34 -0
  491. package/serialization/types/ComponentList.d.ts +15 -0
  492. package/serialization/types/ComponentList.js +36 -0
  493. package/serialization/types/ComponentNode.d.ts +15 -0
  494. package/serialization/types/ComponentNode.js +36 -0
  495. package/serialization/types/ComponentProperties.d.ts +16 -0
  496. package/serialization/types/ComponentProperties.js +37 -0
  497. package/serialization/types/ComponentProperty.d.ts +17 -0
  498. package/serialization/types/ComponentProperty.js +38 -0
  499. package/serialization/types/ComponentPropertyType.d.ts +10 -0
  500. package/serialization/types/ComponentPropertyType.js +31 -0
  501. package/serialization/types/Domain.d.ts +1 -0
  502. package/serialization/types/Domain.js +1 -0
  503. package/serialization/types/Error_.d.ts +1 -2
  504. package/serialization/types/Error_.js +1 -2
  505. package/serialization/types/FieldType.d.ts +1 -1
  506. package/serialization/types/FieldType.js +9 -9
  507. package/serialization/types/ImageNode.d.ts +4 -2
  508. package/serialization/types/ImageNode.js +4 -2
  509. package/serialization/types/ImageNodeImage.d.ts +13 -0
  510. package/serialization/types/ImageNodeImage.js +34 -0
  511. package/serialization/types/Node.d.ts +11 -8
  512. package/serialization/types/Node.js +10 -7
  513. package/serialization/types/NotEnterprisePlanWorkspace.d.ts +10 -0
  514. package/serialization/types/{NodeType.js → NotEnterprisePlanWorkspace.js} +2 -2
  515. package/serialization/types/Redirect.d.ts +14 -0
  516. package/serialization/types/Redirect.js +35 -0
  517. package/serialization/types/Redirects.d.ts +15 -0
  518. package/serialization/types/Redirects.js +36 -0
  519. package/serialization/types/SitePlan.d.ts +16 -0
  520. package/serialization/types/SitePlan.js +37 -0
  521. package/serialization/types/SitePlanId.d.ts +10 -0
  522. package/serialization/types/SitePlanId.js +44 -0
  523. package/serialization/types/SitePlanName.d.ts +10 -0
  524. package/serialization/types/SitePlanName.js +38 -0
  525. package/serialization/types/Text.d.ts +13 -0
  526. package/serialization/types/Text.js +34 -0
  527. package/serialization/types/TextNode.d.ts +4 -2
  528. package/serialization/types/TextNode.js +4 -2
  529. package/serialization/types/TextNodeText.d.ts +13 -0
  530. package/serialization/types/TextNodeText.js +34 -0
  531. package/serialization/types/TextNodeWrite.d.ts +13 -0
  532. package/{dist/serialization/resources/pages/types/DomWriteNodesItem.js → serialization/types/TextNodeWrite.js} +3 -3
  533. package/serialization/types/index.d.ts +23 -6
  534. package/serialization/types/index.js +23 -6
  535. package/version.d.ts +1 -1
  536. package/version.js +1 -1
  537. package/api/resources/pages/client/requests/DomWrite.d.ts +0 -27
  538. package/api/types/NodeType.d.ts +0 -8
  539. package/api/types/NodeType.js +0 -10
  540. package/dist/api/resources/pages/client/requests/DomWrite.d.ts +0 -27
  541. package/dist/api/types/NodeType.d.ts +0 -8
  542. package/dist/api/types/NodeType.js +0 -10
  543. package/dist/serialization/resources/pages/client/requests/DomWrite.d.ts +0 -13
  544. package/dist/serialization/resources/pages/types/DomWriteNodesItem.d.ts +0 -13
  545. package/dist/serialization/types/ErrorDetailsItem.d.ts +0 -10
  546. package/dist/serialization/types/NodeType.d.ts +0 -10
  547. package/serialization/resources/pages/client/requests/DomWrite.d.ts +0 -13
  548. package/serialization/resources/pages/types/DomWriteNodesItem.d.ts +0 -13
  549. package/serialization/types/ErrorDetailsItem.d.ts +0 -10
  550. package/serialization/types/NodeType.d.ts +0 -10
  551. /package/api/resources/{pages/client/requests/DomWrite.js → collections/resources/items/types/MultipleLiveItems.js} +0 -0
  552. /package/api/resources/{pages/types/DomWriteNodesItem.js → components/client/requests/ComponentDomWrite.js} +0 -0
  553. /package/api/{types/ErrorDetailsItem.js → resources/components/client/requests/ComponentPropertiesWrite.js} +0 -0
  554. /package/{dist/api/resources/pages/client/requests/DomWrite.js → api/resources/components/client/requests/ComponentsGetContentRequest.js} +0 -0
  555. /package/{dist/api/resources/pages/types/DomWriteNodesItem.js → api/resources/components/client/requests/ComponentsGetPropertiesRequest.js} +0 -0
  556. /package/{dist/api/types/ErrorDetailsItem.js → api/resources/components/client/requests/ComponentsListRequest.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,20 +44,28 @@ types:
44
44
  - name
45
45
  - slug
46
46
  source:
47
- openapi: ../../../referenced-specs/v2.yml
47
+ openapi: ../../../openapi/referenced-specs/v2.yml
48
48
  ItemsListItemsLiveRequestSortOrder:
49
49
  enum:
50
50
  - asc
51
51
  - desc
52
52
  source:
53
- openapi: ../../../referenced-specs/v2.yml
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
71
  itemId:
@@ -67,7 +75,7 @@ types:
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
@@ -193,6 +201,8 @@ service:
193
201
  fieldData:
194
202
  name: Senior Data Analyst
195
203
  slug: senior-data-analyst
204
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
205
+ department: Data
196
206
  - id: 62c880ef281c7b7b4cf9dabc
197
207
  cmsLocaleId: 66f6e966c9e1dc700a857ca3
198
208
  lastPublished: '2023-04-15T10:25:18.123Z'
@@ -203,6 +213,8 @@ service:
203
213
  fieldData:
204
214
  name: Product Manager
205
215
  slug: product-manager
216
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
217
+ department: Product
206
218
  pagination:
207
219
  limit: 25
208
220
  offset: 0
@@ -217,12 +229,12 @@ service:
217
229
 
218
230
 
219
231
  To create items across multiple locales, please use [this
220
- endpoint.](/data/v2.0.0/reference/cms/collection-items/bulk-items/create-items)
232
+ endpoint.](/v2.0.0/data/reference/cms/collection-items/staged-items/create-items)
221
233
 
222
234
 
223
235
  Required scope | `CMS:write`
224
236
  source:
225
- openapi: ../../../referenced-specs/v2.yml
237
+ openapi: ../../../openapi/referenced-specs/v2.yml
226
238
  path-parameters:
227
239
  collection_id:
228
240
  type: string
@@ -250,6 +262,9 @@ service:
250
262
  fieldData:
251
263
  name: Pan Galactic Gargle Blaster Recipe
252
264
  slug: pan-galactic-gargle-blaster
265
+ date: '2022-11-18T00:00:00.000Z'
266
+ featured: true
267
+ color: '#db4b68'
253
268
  response:
254
269
  body:
255
270
  id: 42b720ef280c7a7a3be8cabe
@@ -262,6 +277,9 @@ service:
262
277
  fieldData:
263
278
  name: Pan Galactic Gargle Blaster Recipe
264
279
  slug: pan-galactic-gargle-blaster
280
+ color: '#db4b68'
281
+ date: '2022-11-18T00:00:00.000Z'
282
+ featured: true
265
283
  - name: MultipleItems
266
284
  path-parameters:
267
285
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -272,11 +290,15 @@ service:
272
290
  fieldData:
273
291
  name: Senior Data Analyst
274
292
  slug: senior-data-analyst
293
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
294
+ department: Data
275
295
  - isArchived: false
276
296
  isDraft: false
277
297
  fieldData:
278
298
  name: Product Manager
279
299
  slug: product-manager
300
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
301
+ department: Product
280
302
  response:
281
303
  body:
282
304
  id: id
@@ -289,6 +311,9 @@ service:
289
311
  fieldData:
290
312
  name: My new item
291
313
  slug: my-new-item
314
+ date: '2022-11-18T00:00:00.000Z'
315
+ featured: false
316
+ color: '#db4b68'
292
317
  delete-items:
293
318
  path: /collections/{collection_id}/items
294
319
  method: DELETE
@@ -303,7 +328,7 @@ service:
303
328
 
304
329
  Required scope | `CMS:write`
305
330
  source:
306
- openapi: ../../../referenced-specs/v2.yml
331
+ openapi: ../../../openapi/referenced-specs/v2.yml
307
332
  path-parameters:
308
333
  collection_id:
309
334
  type: string
@@ -319,6 +344,7 @@ service:
319
344
  - root.BadRequestError
320
345
  - root.UnauthorizedError
321
346
  - root.NotFoundError
347
+ - root.ConflictError
322
348
  - root.TooManyRequestsError
323
349
  - root.InternalServerError
324
350
  examples:
@@ -339,7 +365,7 @@ service:
339
365
 
340
366
  Required scope | `CMS:write`
341
367
  source:
342
- openapi: ../../../referenced-specs/v2.yml
368
+ openapi: ../../../openapi/referenced-specs/v2.yml
343
369
  path-parameters:
344
370
  collection_id:
345
371
  type: string
@@ -371,21 +397,25 @@ service:
371
397
  fieldData:
372
398
  name: Ne Paniquez Pas
373
399
  slug: ne-paniquez-pas
400
+ featured: false
374
401
  - id: 66f6ed9576ddacf3149d5ea6
375
402
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
376
403
  fieldData:
377
404
  name: No Entrar en Pánico
378
405
  slug: no-entrar-en-panico
406
+ featured: false
379
407
  - id: 66f6ed9576ddacf3149d5eaa
380
408
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
381
409
  fieldData:
382
410
  name: Au Revoir et Merci pour Tous les Poissons
383
411
  slug: au-revoir-et-merci
412
+ featured: false
384
413
  - id: 66f6ed9576ddacf3149d5eaa
385
414
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
386
415
  fieldData:
387
416
  name: Hasta Luego y Gracias por Todo el Pescado
388
417
  slug: hasta-luego-y-gracias
418
+ featured: false
389
419
  response:
390
420
  body:
391
421
  id: id
@@ -398,6 +428,9 @@ service:
398
428
  fieldData:
399
429
  name: My new item
400
430
  slug: my-new-item
431
+ date: '2022-11-18T00:00:00.000Z'
432
+ featured: false
433
+ color: '#db4b68'
401
434
  - name: MultipleItems
402
435
  path-parameters:
403
436
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -409,12 +442,16 @@ service:
409
442
  fieldData:
410
443
  name: Senior Data Analyst
411
444
  slug: senior-data-analyst
445
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
446
+ department: Data
412
447
  - id: 580e64008c9a982ac9b8b754
413
448
  isArchived: false
414
449
  isDraft: false
415
450
  fieldData:
416
451
  name: Product Manager
417
452
  slug: product-manager
453
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
454
+ department: Product
418
455
  response:
419
456
  body:
420
457
  id: id
@@ -427,6 +464,9 @@ service:
427
464
  fieldData:
428
465
  name: My new item
429
466
  slug: my-new-item
467
+ date: '2022-11-18T00:00:00.000Z'
468
+ featured: false
469
+ color: '#db4b68'
430
470
  - name: Multiple items updated across multiple locales
431
471
  path-parameters:
432
472
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -437,21 +477,25 @@ service:
437
477
  fieldData:
438
478
  name: Ne Paniquez Pas
439
479
  slug: ne-paniquez-pas
480
+ featured: false
440
481
  - id: 66f6ed9576ddacf3149d5ea6
441
482
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
442
483
  fieldData:
443
484
  name: No Entrar en Pánico
444
485
  slug: no-entrar-en-panico
486
+ featured: false
445
487
  - id: 66f6ed9576ddacf3149d5eaa
446
488
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
447
489
  fieldData:
448
490
  name: Au Revoir et Merci pour Tous les Poissons
449
491
  slug: au-revoir-et-merci
492
+ featured: false
450
493
  - id: 66f6ed9576ddacf3149d5eaa
451
494
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
452
495
  fieldData:
453
496
  name: Hasta Luego y Gracias por Todo el Pescado
454
497
  slug: hasta-luego-y-gracias
498
+ featured: false
455
499
  response:
456
500
  body:
457
501
  id: id
@@ -464,6 +508,9 @@ service:
464
508
  fieldData:
465
509
  name: My new item
466
510
  slug: my-new-item
511
+ date: '2022-11-18T00:00:00.000Z'
512
+ featured: false
513
+ color: '#db4b68'
467
514
  - name: Mulitple items updated in a single locale
468
515
  path-parameters:
469
516
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -474,21 +521,25 @@ service:
474
521
  fieldData:
475
522
  name: Ne Paniquez Pas
476
523
  slug: ne-paniquez-pas
524
+ featured: false
477
525
  - id: 66f6ed9576ddacf3149d5ea6
478
526
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
479
527
  fieldData:
480
528
  name: No Entrar en Pánico
481
529
  slug: no-entrar-en-panico
530
+ featured: false
482
531
  - id: 66f6ed9576ddacf3149d5eaa
483
532
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
484
533
  fieldData:
485
534
  name: Au Revoir et Merci pour Tous les Poissons
486
535
  slug: au-revoir-et-merci
536
+ featured: false
487
537
  - id: 66f6ed9576ddacf3149d5eaa
488
538
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
489
539
  fieldData:
490
540
  name: Hasta Luego y Gracias por Todo el Pescado
491
541
  slug: hasta-luego-y-gracias
542
+ featured: false
492
543
  response:
493
544
  body:
494
545
  id: id
@@ -501,6 +552,9 @@ service:
501
552
  fieldData:
502
553
  name: My new item
503
554
  slug: my-new-item
555
+ date: '2022-11-18T00:00:00.000Z'
556
+ featured: false
557
+ color: '#db4b68'
504
558
  list-items-live:
505
559
  path: /collections/{collection_id}/items/live
506
560
  method: GET
@@ -510,7 +564,7 @@ service:
510
564
 
511
565
  Required scope | `CMS:read`
512
566
  source:
513
- openapi: ../../../referenced-specs/v2.yml
567
+ openapi: ../../../openapi/referenced-specs/v2.yml
514
568
  path-parameters:
515
569
  collection_id:
516
570
  type: string
@@ -571,6 +625,8 @@ service:
571
625
  fieldData:
572
626
  name: Senior Data Analyst
573
627
  slug: senior-data-analyst
628
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
629
+ department: Data
574
630
  - id: 62c880ef281c7b7b4cf9dabc
575
631
  cmsLocaleId: 66f6e966c9e1dc700a857ca3
576
632
  lastPublished: '2023-04-15T10:25:18.123Z'
@@ -581,6 +637,8 @@ service:
581
637
  fieldData:
582
638
  name: Product Manager
583
639
  slug: product-manager
640
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
641
+ department: Product
584
642
  pagination:
585
643
  limit: 25
586
644
  offset: 0
@@ -596,13 +654,13 @@ service:
596
654
 
597
655
 
598
656
  To create items across multiple locales, [please use this
599
- endpoint.](/v2.0.0/data/reference/cms/collection-items/bulk-items/create-items)
657
+ endpoint.](/v2.0.0/data/reference/cms/collection-items/staged-items/create-items)
600
658
 
601
659
 
602
660
 
603
661
  Required scope | `CMS:write`
604
662
  source:
605
- openapi: ../../../referenced-specs/v2.yml
663
+ openapi: ../../../openapi/referenced-specs/v2.yml
606
664
  path-parameters:
607
665
  collection_id:
608
666
  type: string
@@ -630,6 +688,9 @@ service:
630
688
  fieldData:
631
689
  name: Pan Galactic Gargle Blaster Recipe
632
690
  slug: pan-galactic-gargle-blaster
691
+ date: '2022-11-18T00:00:00.000Z'
692
+ featured: true
693
+ color: '#db4b68'
633
694
  response:
634
695
  body:
635
696
  id: 42b720ef280c7a7a3be8cabe
@@ -642,6 +703,9 @@ service:
642
703
  fieldData:
643
704
  name: Pan Galactic Gargle Blaster Recipe
644
705
  slug: pan-galactic-gargle-blaster
706
+ color: '#db4b68'
707
+ date: '2022-11-18T00:00:00.000Z'
708
+ featured: true
645
709
  - name: MultipleItems
646
710
  path-parameters:
647
711
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -652,11 +716,15 @@ service:
652
716
  fieldData:
653
717
  name: Senior Data Analyst
654
718
  slug: senior-data-analyst
719
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
720
+ department: Data
655
721
  - isArchived: false
656
722
  isDraft: false
657
723
  fieldData:
658
724
  name: Product Manager
659
725
  slug: product-manager
726
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
727
+ department: Product
660
728
  response:
661
729
  body:
662
730
  id: 42b720ef280c7a7a3be8cabe
@@ -669,6 +737,9 @@ service:
669
737
  fieldData:
670
738
  name: Pan Galactic Gargle Blaster Recipe
671
739
  slug: pan-galactic-gargle-blaster
740
+ color: '#db4b68'
741
+ date: '2022-11-18T00:00:00.000Z'
742
+ featured: true
672
743
  delete-items-live:
673
744
  path: /collections/{collection_id}/items/live
674
745
  method: DELETE
@@ -686,7 +757,7 @@ service:
686
757
 
687
758
  Required scope | `CMS:write`
688
759
  source:
689
- openapi: ../../../referenced-specs/v2.yml
760
+ openapi: ../../../openapi/referenced-specs/v2.yml
690
761
  path-parameters:
691
762
  collection_id:
692
763
  type: string
@@ -723,7 +794,7 @@ service:
723
794
 
724
795
  Required scope | `CMS:write`
725
796
  source:
726
- openapi: ../../../referenced-specs/v2.yml
797
+ openapi: ../../../openapi/referenced-specs/v2.yml
727
798
  path-parameters:
728
799
  collection_id:
729
800
  type: string
@@ -755,21 +826,25 @@ service:
755
826
  fieldData:
756
827
  name: Ne Paniquez Pas
757
828
  slug: ne-paniquez-pas
829
+ featured: false
758
830
  - id: 66f6ed9576ddacf3149d5ea6
759
831
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
760
832
  fieldData:
761
833
  name: No Entrar en Pánico
762
834
  slug: no-entrar-en-panico
835
+ featured: false
763
836
  - id: 66f6ed9576ddacf3149d5eaa
764
837
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
765
838
  fieldData:
766
839
  name: Au Revoir et Merci pour Tous les Poissons
767
840
  slug: au-revoir-et-merci
841
+ featured: false
768
842
  - id: 66f6ed9576ddacf3149d5eaa
769
843
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
770
844
  fieldData:
771
845
  name: Hasta Luego y Gracias por Todo el Pescado
772
846
  slug: hasta-luego-y-gracias
847
+ featured: false
773
848
  response:
774
849
  body:
775
850
  items:
@@ -783,6 +858,7 @@ service:
783
858
  fieldData:
784
859
  name: Ne Paniquez Pas
785
860
  slug: ne-paniquez-pas
861
+ featured: false
786
862
  - id: 66f6ed9576ddacf3149d5ea6
787
863
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
788
864
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -793,6 +869,7 @@ service:
793
869
  fieldData:
794
870
  name: No Entrar en Pánico
795
871
  slug: no-entrar-en-panico
872
+ featured: false
796
873
  - id: 66f6ed9576ddacf3149d5eaa
797
874
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
798
875
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -803,6 +880,7 @@ service:
803
880
  fieldData:
804
881
  name: Au Revoir et Merci pour Tous les Poissons
805
882
  slug: au-revoir-et-merci
883
+ featured: false
806
884
  - id: 66f6ed9576ddacf3149d5eaa
807
885
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
808
886
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -813,6 +891,7 @@ service:
813
891
  fieldData:
814
892
  name: Hasta Luego y Gracias por Todo el Pescado
815
893
  slug: hasta-luego-y-gracias
894
+ featured: false
816
895
  - name: MultipleItems
817
896
  path-parameters:
818
897
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -824,12 +903,16 @@ service:
824
903
  fieldData:
825
904
  name: Senior Data Analyst
826
905
  slug: senior-data-analyst
906
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
907
+ department: Data
827
908
  - id: 580e64008c9a982ac9b8b754
828
909
  isArchived: false
829
910
  isDraft: false
830
911
  fieldData:
831
912
  name: Product Manager
832
913
  slug: product-manager
914
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
915
+ department: Product
833
916
  response:
834
917
  body:
835
918
  items:
@@ -843,6 +926,7 @@ service:
843
926
  fieldData:
844
927
  name: Ne Paniquez Pas
845
928
  slug: ne-paniquez-pas
929
+ featured: false
846
930
  - id: 66f6ed9576ddacf3149d5ea6
847
931
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
848
932
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -853,6 +937,7 @@ service:
853
937
  fieldData:
854
938
  name: No Entrar en Pánico
855
939
  slug: no-entrar-en-panico
940
+ featured: false
856
941
  - id: 66f6ed9576ddacf3149d5eaa
857
942
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
858
943
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -863,6 +948,7 @@ service:
863
948
  fieldData:
864
949
  name: Au Revoir et Merci pour Tous les Poissons
865
950
  slug: au-revoir-et-merci
951
+ featured: false
866
952
  - id: 66f6ed9576ddacf3149d5eaa
867
953
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
868
954
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -873,6 +959,7 @@ service:
873
959
  fieldData:
874
960
  name: Hasta Luego y Gracias por Todo el Pescado
875
961
  slug: hasta-luego-y-gracias
962
+ featured: false
876
963
  - name: Multiple items updated across multiple locales
877
964
  path-parameters:
878
965
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -883,21 +970,25 @@ service:
883
970
  fieldData:
884
971
  name: Ne Paniquez Pas
885
972
  slug: ne-paniquez-pas
973
+ featured: false
886
974
  - id: 66f6ed9576ddacf3149d5ea6
887
975
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
888
976
  fieldData:
889
977
  name: No Entrar en Pánico
890
978
  slug: no-entrar-en-panico
979
+ featured: false
891
980
  - id: 66f6ed9576ddacf3149d5eaa
892
981
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
893
982
  fieldData:
894
983
  name: Au Revoir et Merci pour Tous les Poissons
895
984
  slug: au-revoir-et-merci
985
+ featured: false
896
986
  - id: 66f6ed9576ddacf3149d5eaa
897
987
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
898
988
  fieldData:
899
989
  name: Hasta Luego y Gracias por Todo el Pescado
900
990
  slug: hasta-luego-y-gracias
991
+ featured: false
901
992
  response:
902
993
  body:
903
994
  items:
@@ -911,6 +1002,7 @@ service:
911
1002
  fieldData:
912
1003
  name: Ne Paniquez Pas
913
1004
  slug: ne-paniquez-pas
1005
+ featured: false
914
1006
  - id: 66f6ed9576ddacf3149d5ea6
915
1007
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
916
1008
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -921,6 +1013,7 @@ service:
921
1013
  fieldData:
922
1014
  name: No Entrar en Pánico
923
1015
  slug: no-entrar-en-panico
1016
+ featured: false
924
1017
  - id: 66f6ed9576ddacf3149d5eaa
925
1018
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
926
1019
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -931,6 +1024,7 @@ service:
931
1024
  fieldData:
932
1025
  name: Au Revoir et Merci pour Tous les Poissons
933
1026
  slug: au-revoir-et-merci
1027
+ featured: false
934
1028
  - id: 66f6ed9576ddacf3149d5eaa
935
1029
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
936
1030
  lastPublished: '2023-03-17T18:47:35.560Z'
@@ -941,6 +1035,7 @@ service:
941
1035
  fieldData:
942
1036
  name: Hasta Luego y Gracias por Todo el Pescado
943
1037
  slug: hasta-luego-y-gracias
1038
+ featured: false
944
1039
  - name: Mulitple items updated in a single locale
945
1040
  path-parameters:
946
1041
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -951,21 +1046,25 @@ service:
951
1046
  fieldData:
952
1047
  name: Ne Paniquez Pas
953
1048
  slug: ne-paniquez-pas
1049
+ featured: false
954
1050
  - id: 66f6ed9576ddacf3149d5ea6
955
1051
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
956
1052
  fieldData:
957
1053
  name: No Entrar en Pánico
958
1054
  slug: no-entrar-en-panico
1055
+ featured: false
959
1056
  - id: 66f6ed9576ddacf3149d5eaa
960
1057
  cmsLocaleId: 66f6e966c9e1dc700a857ca5
961
1058
  fieldData:
962
1059
  name: Au Revoir et Merci pour Tous les Poissons
963
1060
  slug: au-revoir-et-merci
1061
+ featured: false
964
1062
  - id: 66f6ed9576ddacf3149d5eaa
965
1063
  cmsLocaleId: 66f6e966c9e1dc700a857ca4
966
1064
  fieldData:
967
1065
  name: Hasta Luego y Gracias por Todo el Pescado
968
1066
  slug: hasta-luego-y-gracias
1067
+ featured: false
969
1068
  response:
970
1069
  body:
971
1070
  items:
@@ -979,6 +1078,8 @@ service:
979
1078
  fieldData:
980
1079
  name: Senior Data Analyst
981
1080
  slug: senior-data-analyst
1081
+ url: https://boards.greenhouse.io/webflow/jobs/26567701
1082
+ department: Data
982
1083
  - id: 62c880ef281c7b7b4cf9dabc
983
1084
  cmsLocaleId: 66f6e966c9e1dc700a857ca3
984
1085
  lastPublished: '2023-04-15T10:25:18.123Z'
@@ -989,6 +1090,8 @@ service:
989
1090
  fieldData:
990
1091
  name: Product Manager
991
1092
  slug: product-manager
1093
+ url: https://boards.greenhouse.io/webflow/jobs/31234567
1094
+ department: Product
992
1095
  create-items:
993
1096
  path: /collections/{collection_id}/items/bulk
994
1097
  method: POST
@@ -1004,7 +1107,7 @@ service:
1004
1107
 
1005
1108
  Required scope | `CMS:write`
1006
1109
  source:
1007
- openapi: ../../../referenced-specs/v2.yml
1110
+ openapi: ../../../openapi/referenced-specs/v2.yml
1008
1111
  path-parameters:
1009
1112
  collection_id:
1010
1113
  type: string
@@ -1067,6 +1170,9 @@ service:
1067
1170
  fieldData:
1068
1171
  name: My new item
1069
1172
  slug: my-new-item
1173
+ date: '2022-11-18T00:00:00.000Z'
1174
+ featured: false
1175
+ color: '#db4b68'
1070
1176
  - name: Create multiple items across multipel locales
1071
1177
  path-parameters:
1072
1178
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -1096,6 +1202,9 @@ service:
1096
1202
  fieldData:
1097
1203
  name: My new item
1098
1204
  slug: my-new-item
1205
+ date: '2022-11-18T00:00:00.000Z'
1206
+ featured: false
1207
+ color: '#db4b68'
1099
1208
  - name: Single item created across multiple locales
1100
1209
  path-parameters:
1101
1210
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -1124,6 +1233,9 @@ service:
1124
1233
  fieldData:
1125
1234
  name: My new item
1126
1235
  slug: my-new-item
1236
+ date: '2022-11-18T00:00:00.000Z'
1237
+ featured: false
1238
+ color: '#db4b68'
1127
1239
  - name: Multiple items created across multiple locales
1128
1240
  path-parameters:
1129
1241
  collection_id: 580e63fc8c9a982ac9b8b745
@@ -1152,6 +1264,9 @@ service:
1152
1264
  fieldData:
1153
1265
  name: My new item
1154
1266
  slug: my-new-item
1267
+ date: '2022-11-18T00:00:00.000Z'
1268
+ featured: false
1269
+ color: '#db4b68'
1155
1270
  get-item:
1156
1271
  path: /collections/{collection_id}/items/{item_id}
1157
1272
  method: GET
@@ -1161,7 +1276,7 @@ service:
1161
1276
 
1162
1277
  Required scope | `CMS:read`
1163
1278
  source:
1164
- openapi: ../../../referenced-specs/v2.yml
1279
+ openapi: ../../../openapi/referenced-specs/v2.yml
1165
1280
  path-parameters:
1166
1281
  collection_id:
1167
1282
  type: string
@@ -1205,6 +1320,9 @@ service:
1205
1320
  fieldData:
1206
1321
  name: Pan Galactic Gargle Blaster Recipe
1207
1322
  slug: pan-galactic-gargle-blaster
1323
+ color: '#db4b68'
1324
+ date: '2022-11-18T00:00:00.000Z'
1325
+ featured: true
1208
1326
  delete-item:
1209
1327
  path: /collections/{collection_id}/items/{item_id}
1210
1328
  method: DELETE
@@ -1216,7 +1334,7 @@ service:
1216
1334
 
1217
1335
  Required scope | `CMS:write`
1218
1336
  source:
1219
- openapi: ../../../referenced-specs/v2.yml
1337
+ openapi: ../../../openapi/referenced-specs/v2.yml
1220
1338
  path-parameters:
1221
1339
  collection_id:
1222
1340
  type: string
@@ -1254,7 +1372,7 @@ service:
1254
1372
 
1255
1373
  Required scope | `CMS:write`
1256
1374
  source:
1257
- openapi: ../../../referenced-specs/v2.yml
1375
+ openapi: ../../../openapi/referenced-specs/v2.yml
1258
1376
  path-parameters:
1259
1377
  collection_id:
1260
1378
  type: string
@@ -1285,6 +1403,9 @@ service:
1285
1403
  fieldData:
1286
1404
  name: Pan Galactic Gargle Blaster Recipe
1287
1405
  slug: pan-galactic-gargle-blaster
1406
+ date: '2022-11-18T00:00:00.000Z'
1407
+ featured: true
1408
+ color: '#db4b68'
1288
1409
  response:
1289
1410
  body:
1290
1411
  id: 42b720ef280c7a7a3be8cabe
@@ -1297,6 +1418,9 @@ service:
1297
1418
  fieldData:
1298
1419
  name: Pan Galactic Gargle Blaster Recipe
1299
1420
  slug: pan-galactic-gargle-blaster
1421
+ color: '#db4b68'
1422
+ date: '2022-11-18T00:00:00.000Z'
1423
+ featured: true
1300
1424
  get-item-live:
1301
1425
  path: /collections/{collection_id}/items/{item_id}/live
1302
1426
  method: GET
@@ -1306,7 +1430,7 @@ service:
1306
1430
 
1307
1431
  Required scope | `CMS:read`
1308
1432
  source:
1309
- openapi: ../../../referenced-specs/v2.yml
1433
+ openapi: ../../../openapi/referenced-specs/v2.yml
1310
1434
  path-parameters:
1311
1435
  collection_id:
1312
1436
  type: string
@@ -1350,6 +1474,9 @@ service:
1350
1474
  fieldData:
1351
1475
  name: Pan Galactic Gargle Blaster Recipe
1352
1476
  slug: pan-galactic-gargle-blaster
1477
+ color: '#db4b68'
1478
+ date: '2022-11-18T00:00:00.000Z'
1479
+ featured: true
1353
1480
  delete-item-live:
1354
1481
  path: /collections/{collection_id}/items/{item_id}/live
1355
1482
  method: DELETE
@@ -1364,7 +1491,7 @@ service:
1364
1491
 
1365
1492
  Required scope | `CMS:write`
1366
1493
  source:
1367
- openapi: ../../../referenced-specs/v2.yml
1494
+ openapi: ../../../openapi/referenced-specs/v2.yml
1368
1495
  path-parameters:
1369
1496
  collection_id:
1370
1497
  type: string
@@ -1404,7 +1531,7 @@ service:
1404
1531
 
1405
1532
  Required scope | `CMS:write`
1406
1533
  source:
1407
- openapi: ../../../referenced-specs/v2.yml
1534
+ openapi: ../../../openapi/referenced-specs/v2.yml
1408
1535
  path-parameters:
1409
1536
  collection_id:
1410
1537
  type: string
@@ -1435,6 +1562,9 @@ service:
1435
1562
  fieldData:
1436
1563
  name: Pan Galactic Gargle Blaster Recipe
1437
1564
  slug: pan-galactic-gargle-blaster
1565
+ date: '2022-11-18T00:00:00.000Z'
1566
+ featured: true
1567
+ color: '#db4b68'
1438
1568
  response:
1439
1569
  body:
1440
1570
  id: 42b720ef280c7a7a3be8cabe
@@ -1447,6 +1577,9 @@ service:
1447
1577
  fieldData:
1448
1578
  name: Pan Galactic Gargle Blaster Recipe
1449
1579
  slug: pan-galactic-gargle-blaster
1580
+ color: '#db4b68'
1581
+ date: '2022-11-18T00:00:00.000Z'
1582
+ featured: true
1450
1583
  publish-item:
1451
1584
  path: /collections/{collection_id}/items/publish
1452
1585
  method: POST
@@ -1456,7 +1589,7 @@ service:
1456
1589
 
1457
1590
  Required scope | `cms:write`
1458
1591
  source:
1459
- openapi: ../../../referenced-specs/v2.yml
1592
+ openapi: ../../../openapi/referenced-specs/v2.yml
1460
1593
  path-parameters:
1461
1594
  collection_id:
1462
1595
  type: string
@@ -1492,4 +1625,4 @@ service:
1492
1625
  errors:
1493
1626
  - Staging item ID 643fd856d66b6528195ee2cf not found.
1494
1627
  source:
1495
- openapi: ../../../referenced-specs/v2.yml
1628
+ openapi: ../../../openapi/referenced-specs/v2.yml