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.
- package/.mock/definition/__package__.yml +526 -221
- package/.mock/definition/accessGroups.yml +3 -3
- package/.mock/definition/assets.yml +10 -9
- package/.mock/definition/collections/fields.yml +16 -14
- package/.mock/definition/collections/items.yml +168 -35
- package/.mock/definition/collections.yml +6 -5
- package/.mock/definition/components.yml +486 -0
- package/.mock/definition/ecommerce.yml +2 -2
- package/.mock/definition/forms.yml +7 -6
- package/.mock/definition/inventory.yml +6 -4
- package/.mock/definition/orders.yml +11 -9
- package/.mock/definition/pages/scripts.yml +18 -17
- package/.mock/definition/pages.yml +91 -64
- package/.mock/definition/products.yml +9 -9
- package/.mock/definition/scripts.yml +12 -16
- package/.mock/definition/sites/activityLogs.yml +2 -2
- package/.mock/definition/sites/plans.yml +40 -0
- package/.mock/definition/sites/redirects.yml +190 -0
- package/.mock/definition/sites/scripts.yml +16 -21
- package/.mock/definition/sites.yml +202 -6
- package/.mock/definition/token.yml +5 -4
- package/.mock/definition/users.yml +8 -8
- package/.mock/definition/webhooks.yml +9 -9
- package/.mock/fern.config.json +1 -1
- package/Client.d.ts +3 -0
- package/Client.js +25 -20
- package/api/errors/index.d.ts +1 -1
- package/api/errors/index.js +1 -1
- package/api/resources/accessGroups/client/Client.js +1 -1
- package/api/resources/assets/client/Client.d.ts +5 -0
- package/api/resources/assets/client/Client.js +13 -8
- package/api/resources/collections/client/Client.d.ts +3 -0
- package/api/resources/collections/client/Client.js +7 -4
- package/api/resources/collections/resources/fields/client/Client.js +3 -3
- package/api/resources/collections/resources/fields/types/FieldCreateType.d.ts +11 -10
- package/api/resources/collections/resources/fields/types/FieldCreateType.js +10 -9
- package/api/resources/collections/resources/items/client/Client.d.ts +8 -5
- package/api/resources/collections/resources/items/client/Client.js +26 -21
- package/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts +1 -1
- package/api/resources/collections/resources/items/types/MultipleItems.d.ts +2 -2
- package/api/resources/collections/resources/items/types/MultipleLiveItems.d.ts +8 -0
- package/api/resources/collections/resources/items/types/index.d.ts +1 -0
- package/api/resources/collections/resources/items/types/index.js +1 -0
- package/api/resources/components/client/Client.d.ts +176 -0
- package/api/resources/components/client/Client.js +670 -0
- package/api/resources/components/client/index.d.ts +1 -0
- package/api/resources/components/client/index.js +17 -0
- package/api/resources/components/client/requests/ComponentDomWrite.d.ts +34 -0
- package/api/resources/components/client/requests/ComponentPropertiesWrite.d.ts +25 -0
- package/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +28 -0
- package/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +23 -0
- package/api/resources/components/client/requests/ComponentsListRequest.d.ts +17 -0
- package/api/resources/components/client/requests/index.d.ts +5 -0
- package/api/resources/components/client/requests/index.js +2 -0
- package/api/resources/components/index.d.ts +2 -0
- package/api/resources/components/index.js +18 -0
- package/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +5 -0
- package/api/resources/components/types/ComponentDomWriteNodesItem.js +5 -0
- package/api/resources/components/types/ComponentPropertiesWritePropertiesItem.d.ts +16 -0
- package/api/resources/components/types/ComponentPropertiesWritePropertiesItem.js +5 -0
- package/api/resources/components/types/ComponentsUpdateContentResponse.d.ts +7 -0
- package/api/resources/components/types/ComponentsUpdateContentResponse.js +5 -0
- package/api/resources/components/types/ComponentsUpdatePropertiesResponse.d.ts +7 -0
- package/api/resources/components/types/ComponentsUpdatePropertiesResponse.js +5 -0
- package/api/resources/components/types/index.d.ts +4 -0
- package/api/resources/components/types/index.js +20 -0
- package/api/resources/ecommerce/client/Client.js +1 -1
- package/api/resources/forms/client/Client.d.ts +3 -0
- package/api/resources/forms/client/Client.js +8 -5
- package/api/resources/index.d.ts +3 -0
- package/api/resources/index.js +4 -1
- package/api/resources/inventory/client/Client.d.ts +3 -1
- package/api/resources/inventory/client/Client.js +5 -3
- package/api/resources/orders/client/Client.d.ts +3 -0
- package/api/resources/orders/client/Client.js +9 -6
- package/api/resources/pages/client/Client.d.ts +26 -10
- package/api/resources/pages/client/Client.js +32 -18
- package/api/resources/pages/client/requests/PageDomWrite.d.ts +34 -0
- package/api/resources/pages/client/requests/PageDomWrite.js +5 -0
- package/api/resources/pages/client/requests/index.d.ts +1 -1
- package/api/resources/pages/resources/scripts/client/Client.d.ts +6 -3
- package/api/resources/pages/resources/scripts/client/Client.js +11 -6
- package/api/resources/pages/types/PageDomWriteNodesItem.d.ts +5 -0
- package/api/resources/pages/types/PageDomWriteNodesItem.js +5 -0
- package/api/resources/pages/types/index.d.ts +1 -1
- package/api/resources/pages/types/index.js +1 -1
- package/api/resources/products/client/Client.d.ts +5 -6
- package/api/resources/products/client/Client.js +11 -12
- package/api/resources/scripts/client/Client.d.ts +3 -3
- package/api/resources/scripts/client/Client.js +6 -6
- package/api/resources/sites/client/Client.d.ts +70 -0
- package/api/resources/sites/client/Client.js +330 -9
- package/api/resources/sites/client/requests/SitesCreateRequest.d.ts +17 -0
- package/api/resources/sites/client/requests/SitesCreateRequest.js +5 -0
- package/api/resources/sites/client/requests/SitesUpdateRequest.d.ts +13 -0
- package/api/resources/sites/client/requests/SitesUpdateRequest.js +5 -0
- package/api/resources/sites/client/requests/index.d.ts +2 -0
- package/api/resources/sites/resources/activityLogs/client/Client.d.ts +1 -1
- package/api/resources/sites/resources/activityLogs/client/Client.js +2 -2
- package/api/resources/sites/resources/index.d.ts +2 -0
- package/api/resources/sites/resources/index.js +3 -1
- package/api/resources/sites/resources/plans/client/Client.d.ts +45 -0
- package/api/resources/sites/resources/plans/client/Client.js +155 -0
- package/api/resources/sites/resources/plans/client/index.d.ts +1 -0
- package/api/resources/sites/resources/plans/client/index.js +2 -0
- package/api/resources/sites/resources/plans/index.d.ts +1 -0
- package/api/resources/sites/resources/plans/index.js +17 -0
- package/api/resources/sites/resources/redirects/client/Client.d.ts +115 -0
- package/api/resources/sites/resources/redirects/client/Client.js +472 -0
- package/api/resources/sites/resources/redirects/client/index.d.ts +1 -0
- package/api/resources/sites/resources/redirects/client/index.js +2 -0
- package/api/resources/sites/resources/redirects/index.d.ts +1 -0
- package/api/resources/sites/resources/redirects/index.js +17 -0
- package/api/resources/sites/resources/scripts/client/Client.d.ts +4 -4
- package/api/resources/sites/resources/scripts/client/Client.js +8 -8
- package/api/resources/token/client/Client.d.ts +2 -1
- package/api/resources/token/client/Client.js +4 -3
- package/api/resources/users/client/Client.d.ts +1 -1
- package/api/resources/users/client/Client.js +6 -6
- package/api/resources/webhooks/client/Client.d.ts +4 -1
- package/api/resources/webhooks/client/Client.js +8 -5
- package/api/types/CollectionItem.d.ts +5 -1
- package/api/types/CollectionItemPostSingle.d.ts +7 -3
- package/api/types/Component.d.ts +18 -0
- package/api/types/Component.js +5 -0
- package/api/types/ComponentDom.d.ts +13 -0
- package/api/types/ComponentDom.js +5 -0
- package/api/types/ComponentInstanceNodePropertyOverridesWrite.d.ts +13 -0
- package/api/types/ComponentInstanceNodePropertyOverridesWrite.js +5 -0
- package/api/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.d.ts +14 -0
- package/api/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +5 -0
- package/api/types/ComponentList.d.ts +11 -0
- package/api/types/ComponentList.js +5 -0
- package/api/types/ComponentNode.d.ts +15 -0
- package/api/types/ComponentNode.js +5 -0
- package/api/types/ComponentProperties.d.ts +13 -0
- package/api/types/ComponentProperties.js +5 -0
- package/api/types/ComponentProperty.d.ts +17 -0
- package/api/types/ComponentProperty.js +5 -0
- package/api/types/ComponentPropertyType.d.ts +12 -0
- package/api/types/ComponentPropertyType.js +11 -0
- package/api/types/Dom.d.ts +1 -1
- package/api/types/Domain.d.ts +2 -0
- package/api/types/Error_.d.ts +1 -1
- package/api/types/FieldType.d.ts +10 -10
- package/api/types/FieldType.js +9 -9
- package/api/types/ImageNode.d.ts +6 -2
- package/api/types/ImageNodeImage.d.ts +7 -0
- package/api/types/ImageNodeImage.js +5 -0
- package/api/types/Node.d.ts +11 -8
- package/api/types/{ErrorDetailsItem.d.ts → NotEnterprisePlanWorkspace.d.ts} +1 -1
- package/api/types/NotEnterprisePlanWorkspace.js +5 -0
- package/api/types/ProductFieldData.d.ts +1 -1
- package/api/types/Redirect.d.ts +14 -0
- package/api/types/Redirect.js +5 -0
- package/api/types/Redirects.d.ts +12 -0
- package/api/types/Redirects.js +5 -0
- package/api/types/ScriptApply.d.ts +1 -1
- package/api/types/SitePlan.d.ts +12 -0
- package/api/types/SitePlan.js +5 -0
- package/api/types/SitePlanId.d.ts +21 -0
- package/api/types/SitePlanId.js +20 -0
- package/api/types/SitePlanName.d.ts +15 -0
- package/api/types/SitePlanName.js +14 -0
- package/api/types/Text.d.ts +9 -0
- package/api/types/Text.js +5 -0
- package/api/types/TextNode.d.ts +7 -3
- package/api/types/TextNodeText.d.ts +9 -0
- package/api/types/TextNodeText.js +5 -0
- package/api/{resources/pages/types/DomWriteNodesItem.d.ts → types/TextNodeWrite.d.ts} +4 -1
- package/api/types/TextNodeWrite.js +5 -0
- package/api/types/TriggerType.d.ts +15 -15
- package/api/types/UserAccessGroupsItem.d.ts +2 -3
- package/api/types/UserAccessGroupsItemType.d.ts +2 -3
- package/api/types/index.d.ts +23 -6
- package/api/types/index.js +23 -6
- package/dist/Client.d.ts +3 -0
- package/dist/Client.js +25 -20
- package/dist/api/errors/index.d.ts +1 -1
- package/dist/api/errors/index.js +1 -1
- package/dist/api/resources/accessGroups/client/Client.js +1 -1
- package/dist/api/resources/assets/client/Client.d.ts +5 -0
- package/dist/api/resources/assets/client/Client.js +13 -8
- package/dist/api/resources/collections/client/Client.d.ts +3 -0
- package/dist/api/resources/collections/client/Client.js +7 -4
- package/dist/api/resources/collections/resources/fields/client/Client.js +3 -3
- package/dist/api/resources/collections/resources/fields/types/FieldCreateType.d.ts +11 -10
- package/dist/api/resources/collections/resources/fields/types/FieldCreateType.js +10 -9
- package/dist/api/resources/collections/resources/items/client/Client.d.ts +8 -5
- package/dist/api/resources/collections/resources/items/client/Client.js +26 -21
- package/dist/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts +1 -1
- package/dist/api/resources/collections/resources/items/types/MultipleItems.d.ts +2 -2
- package/dist/api/resources/collections/resources/items/types/MultipleLiveItems.d.ts +8 -0
- package/dist/api/resources/collections/resources/items/types/MultipleLiveItems.js +5 -0
- package/dist/api/resources/collections/resources/items/types/index.d.ts +1 -0
- package/dist/api/resources/collections/resources/items/types/index.js +1 -0
- package/dist/api/resources/components/client/Client.d.ts +176 -0
- package/dist/api/resources/components/client/Client.js +670 -0
- package/dist/api/resources/components/client/index.d.ts +1 -0
- package/dist/api/resources/components/client/index.js +17 -0
- package/dist/api/resources/components/client/requests/ComponentDomWrite.d.ts +34 -0
- package/dist/api/resources/components/client/requests/ComponentDomWrite.js +5 -0
- package/dist/api/resources/components/client/requests/ComponentPropertiesWrite.d.ts +25 -0
- package/dist/api/resources/components/client/requests/ComponentPropertiesWrite.js +5 -0
- package/dist/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +28 -0
- package/dist/api/resources/components/client/requests/ComponentsGetContentRequest.js +5 -0
- package/dist/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +23 -0
- package/dist/api/resources/components/client/requests/ComponentsGetPropertiesRequest.js +5 -0
- package/dist/api/resources/components/client/requests/ComponentsListRequest.d.ts +17 -0
- package/dist/api/resources/components/client/requests/ComponentsListRequest.js +5 -0
- package/dist/api/resources/components/client/requests/index.d.ts +5 -0
- package/dist/api/resources/components/client/requests/index.js +2 -0
- package/dist/api/resources/components/index.d.ts +2 -0
- package/dist/api/resources/components/index.js +18 -0
- package/dist/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +5 -0
- package/dist/api/resources/components/types/ComponentDomWriteNodesItem.js +5 -0
- package/dist/api/resources/components/types/ComponentPropertiesWritePropertiesItem.d.ts +16 -0
- package/dist/api/resources/components/types/ComponentPropertiesWritePropertiesItem.js +5 -0
- package/dist/api/resources/components/types/ComponentsUpdateContentResponse.d.ts +7 -0
- package/dist/api/resources/components/types/ComponentsUpdateContentResponse.js +5 -0
- package/dist/api/resources/components/types/ComponentsUpdatePropertiesResponse.d.ts +7 -0
- package/dist/api/resources/components/types/ComponentsUpdatePropertiesResponse.js +5 -0
- package/dist/api/resources/components/types/index.d.ts +4 -0
- package/dist/api/resources/components/types/index.js +20 -0
- package/dist/api/resources/ecommerce/client/Client.js +1 -1
- package/dist/api/resources/forms/client/Client.d.ts +3 -0
- package/dist/api/resources/forms/client/Client.js +8 -5
- package/dist/api/resources/index.d.ts +3 -0
- package/dist/api/resources/index.js +4 -1
- package/dist/api/resources/inventory/client/Client.d.ts +3 -1
- package/dist/api/resources/inventory/client/Client.js +5 -3
- package/dist/api/resources/orders/client/Client.d.ts +3 -0
- package/dist/api/resources/orders/client/Client.js +9 -6
- package/dist/api/resources/pages/client/Client.d.ts +26 -10
- package/dist/api/resources/pages/client/Client.js +32 -18
- package/dist/api/resources/pages/client/requests/PageDomWrite.d.ts +34 -0
- package/dist/api/resources/pages/client/requests/PageDomWrite.js +5 -0
- package/dist/api/resources/pages/client/requests/index.d.ts +1 -1
- package/dist/api/resources/pages/resources/scripts/client/Client.d.ts +6 -3
- package/dist/api/resources/pages/resources/scripts/client/Client.js +11 -6
- package/dist/api/resources/pages/types/PageDomWriteNodesItem.d.ts +5 -0
- package/dist/api/resources/pages/types/PageDomWriteNodesItem.js +5 -0
- package/dist/api/resources/pages/types/index.d.ts +1 -1
- package/dist/api/resources/pages/types/index.js +1 -1
- package/dist/api/resources/products/client/Client.d.ts +5 -6
- package/dist/api/resources/products/client/Client.js +11 -12
- package/dist/api/resources/scripts/client/Client.d.ts +3 -3
- package/dist/api/resources/scripts/client/Client.js +6 -6
- package/dist/api/resources/sites/client/Client.d.ts +70 -0
- package/dist/api/resources/sites/client/Client.js +330 -9
- package/dist/api/resources/sites/client/requests/SitesCreateRequest.d.ts +17 -0
- package/dist/api/resources/sites/client/requests/SitesCreateRequest.js +5 -0
- package/dist/api/resources/sites/client/requests/SitesUpdateRequest.d.ts +13 -0
- package/dist/api/resources/sites/client/requests/SitesUpdateRequest.js +5 -0
- package/dist/api/resources/sites/client/requests/index.d.ts +2 -0
- package/dist/api/resources/sites/resources/activityLogs/client/Client.d.ts +1 -1
- package/dist/api/resources/sites/resources/activityLogs/client/Client.js +2 -2
- package/dist/api/resources/sites/resources/index.d.ts +2 -0
- package/dist/api/resources/sites/resources/index.js +3 -1
- package/dist/api/resources/sites/resources/plans/client/Client.d.ts +45 -0
- package/dist/api/resources/sites/resources/plans/client/Client.js +155 -0
- package/dist/api/resources/sites/resources/plans/client/index.d.ts +1 -0
- package/dist/api/resources/sites/resources/plans/client/index.js +2 -0
- package/dist/api/resources/sites/resources/plans/index.d.ts +1 -0
- package/dist/api/resources/sites/resources/plans/index.js +17 -0
- package/dist/api/resources/sites/resources/redirects/client/Client.d.ts +115 -0
- package/dist/api/resources/sites/resources/redirects/client/Client.js +472 -0
- package/dist/api/resources/sites/resources/redirects/client/index.d.ts +1 -0
- package/dist/api/resources/sites/resources/redirects/client/index.js +2 -0
- package/dist/api/resources/sites/resources/redirects/index.d.ts +1 -0
- package/dist/api/resources/sites/resources/redirects/index.js +17 -0
- package/dist/api/resources/sites/resources/scripts/client/Client.d.ts +4 -4
- package/dist/api/resources/sites/resources/scripts/client/Client.js +8 -8
- package/dist/api/resources/token/client/Client.d.ts +2 -1
- package/dist/api/resources/token/client/Client.js +4 -3
- package/dist/api/resources/users/client/Client.d.ts +1 -1
- package/dist/api/resources/users/client/Client.js +6 -6
- package/dist/api/resources/webhooks/client/Client.d.ts +4 -1
- package/dist/api/resources/webhooks/client/Client.js +8 -5
- package/dist/api/types/CollectionItem.d.ts +5 -1
- package/dist/api/types/CollectionItemPostSingle.d.ts +7 -3
- package/dist/api/types/Component.d.ts +18 -0
- package/dist/api/types/Component.js +5 -0
- package/dist/api/types/ComponentDom.d.ts +13 -0
- package/dist/api/types/ComponentDom.js +5 -0
- package/dist/api/types/ComponentInstanceNodePropertyOverridesWrite.d.ts +13 -0
- package/dist/api/types/ComponentInstanceNodePropertyOverridesWrite.js +5 -0
- package/dist/api/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.d.ts +14 -0
- package/dist/api/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +5 -0
- package/dist/api/types/ComponentList.d.ts +11 -0
- package/dist/api/types/ComponentList.js +5 -0
- package/dist/api/types/ComponentNode.d.ts +15 -0
- package/dist/api/types/ComponentNode.js +5 -0
- package/dist/api/types/ComponentProperties.d.ts +13 -0
- package/dist/api/types/ComponentProperties.js +5 -0
- package/dist/api/types/ComponentProperty.d.ts +17 -0
- package/dist/api/types/ComponentProperty.js +5 -0
- package/dist/api/types/ComponentPropertyType.d.ts +12 -0
- package/dist/api/types/ComponentPropertyType.js +11 -0
- package/dist/api/types/Dom.d.ts +1 -1
- package/dist/api/types/Domain.d.ts +2 -0
- package/dist/api/types/Error_.d.ts +1 -1
- package/dist/api/types/FieldType.d.ts +10 -10
- package/dist/api/types/FieldType.js +9 -9
- package/dist/api/types/ImageNode.d.ts +6 -2
- package/dist/api/types/ImageNodeImage.d.ts +7 -0
- package/dist/api/types/ImageNodeImage.js +5 -0
- package/dist/api/types/Node.d.ts +11 -8
- package/dist/api/types/{ErrorDetailsItem.d.ts → NotEnterprisePlanWorkspace.d.ts} +1 -1
- package/dist/api/types/NotEnterprisePlanWorkspace.js +5 -0
- package/dist/api/types/ProductFieldData.d.ts +1 -1
- package/dist/api/types/Redirect.d.ts +14 -0
- package/dist/api/types/Redirect.js +5 -0
- package/dist/api/types/Redirects.d.ts +12 -0
- package/dist/api/types/Redirects.js +5 -0
- package/dist/api/types/ScriptApply.d.ts +1 -1
- package/dist/api/types/SitePlan.d.ts +12 -0
- package/dist/api/types/SitePlan.js +5 -0
- package/dist/api/types/SitePlanId.d.ts +21 -0
- package/dist/api/types/SitePlanId.js +20 -0
- package/dist/api/types/SitePlanName.d.ts +15 -0
- package/dist/api/types/SitePlanName.js +14 -0
- package/dist/api/types/Text.d.ts +9 -0
- package/dist/api/types/Text.js +5 -0
- package/dist/api/types/TextNode.d.ts +7 -3
- package/dist/api/types/TextNodeText.d.ts +9 -0
- package/dist/api/types/TextNodeText.js +5 -0
- package/dist/api/{resources/pages/types/DomWriteNodesItem.d.ts → types/TextNodeWrite.d.ts} +4 -1
- package/dist/api/types/TextNodeWrite.js +5 -0
- package/dist/api/types/TriggerType.d.ts +15 -15
- package/dist/api/types/UserAccessGroupsItem.d.ts +2 -3
- package/dist/api/types/UserAccessGroupsItemType.d.ts +2 -3
- package/dist/api/types/index.d.ts +23 -6
- package/dist/api/types/index.js +23 -6
- package/dist/serialization/resources/collections/resources/fields/types/FieldCreateType.d.ts +1 -1
- package/dist/serialization/resources/collections/resources/fields/types/FieldCreateType.js +10 -9
- package/dist/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts +2 -2
- package/dist/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.js +2 -2
- package/dist/serialization/resources/collections/resources/items/types/MultipleItems.d.ts +2 -2
- package/dist/serialization/resources/collections/resources/items/types/MultipleItems.js +2 -2
- package/dist/serialization/resources/collections/resources/items/types/MultipleLiveItems.d.ts +13 -0
- package/dist/serialization/resources/collections/resources/items/types/MultipleLiveItems.js +34 -0
- package/dist/serialization/resources/collections/resources/items/types/index.d.ts +1 -0
- package/dist/serialization/resources/collections/resources/items/types/index.js +1 -0
- package/dist/serialization/resources/components/client/index.d.ts +1 -0
- package/dist/serialization/resources/components/client/index.js +17 -0
- package/dist/serialization/resources/components/client/requests/ComponentDomWrite.d.ts +13 -0
- package/dist/serialization/resources/components/client/requests/ComponentDomWrite.js +34 -0
- package/dist/serialization/resources/components/client/requests/ComponentPropertiesWrite.d.ts +13 -0
- package/dist/serialization/resources/components/client/requests/ComponentPropertiesWrite.js +34 -0
- package/dist/serialization/resources/components/client/requests/index.d.ts +2 -0
- package/dist/serialization/resources/components/client/requests/index.js +7 -0
- package/dist/serialization/resources/components/index.d.ts +2 -0
- package/dist/serialization/resources/components/index.js +18 -0
- package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +12 -0
- package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.js +33 -0
- package/dist/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.d.ts +13 -0
- package/dist/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.js +34 -0
- package/dist/serialization/resources/components/types/ComponentsUpdateContentResponse.d.ts +12 -0
- package/dist/serialization/resources/components/types/ComponentsUpdateContentResponse.js +33 -0
- package/dist/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.d.ts +12 -0
- package/dist/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.js +33 -0
- package/dist/serialization/resources/components/types/index.d.ts +4 -0
- package/dist/serialization/resources/components/types/index.js +20 -0
- package/dist/serialization/resources/index.d.ts +3 -0
- package/dist/serialization/resources/index.js +4 -1
- package/dist/serialization/resources/pages/client/requests/PageDomWrite.d.ts +13 -0
- package/dist/serialization/resources/pages/client/requests/PageDomWrite.js +34 -0
- package/dist/serialization/resources/pages/client/requests/index.d.ts +1 -1
- package/dist/serialization/resources/pages/client/requests/index.js +3 -3
- package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +12 -0
- package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.js +33 -0
- package/dist/serialization/resources/pages/types/index.d.ts +1 -1
- package/dist/serialization/resources/pages/types/index.js +1 -1
- package/dist/serialization/resources/sites/client/requests/SitesCreateRequest.d.ts +14 -0
- package/dist/serialization/resources/sites/client/requests/SitesCreateRequest.js +35 -0
- package/dist/serialization/resources/sites/client/requests/SitesUpdateRequest.d.ts +13 -0
- package/{serialization/resources/pages/client/requests/DomWrite.js → dist/serialization/resources/sites/client/requests/SitesUpdateRequest.js} +4 -4
- package/dist/serialization/resources/sites/client/requests/index.d.ts +2 -0
- package/dist/serialization/resources/sites/client/requests/index.js +5 -1
- package/dist/serialization/types/Component.d.ts +16 -0
- package/dist/serialization/types/Component.js +37 -0
- package/dist/serialization/types/ComponentDom.d.ts +16 -0
- package/dist/serialization/types/ComponentDom.js +37 -0
- package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWrite.d.ts +14 -0
- package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWrite.js +35 -0
- package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.d.ts +13 -0
- package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +34 -0
- package/dist/serialization/types/ComponentList.d.ts +15 -0
- package/dist/serialization/types/ComponentList.js +36 -0
- package/dist/serialization/types/ComponentNode.d.ts +15 -0
- package/dist/serialization/types/ComponentNode.js +36 -0
- package/dist/serialization/types/ComponentProperties.d.ts +16 -0
- package/dist/serialization/types/ComponentProperties.js +37 -0
- package/dist/serialization/types/ComponentProperty.d.ts +17 -0
- package/dist/serialization/types/ComponentProperty.js +38 -0
- package/dist/serialization/types/ComponentPropertyType.d.ts +10 -0
- package/dist/serialization/types/{ErrorDetailsItem.js → ComponentPropertyType.js} +2 -5
- package/dist/serialization/types/Domain.d.ts +1 -0
- package/dist/serialization/types/Domain.js +1 -0
- package/dist/serialization/types/Error_.d.ts +1 -2
- package/dist/serialization/types/Error_.js +1 -2
- package/dist/serialization/types/FieldType.d.ts +1 -1
- package/dist/serialization/types/FieldType.js +9 -9
- package/dist/serialization/types/ImageNode.d.ts +4 -2
- package/dist/serialization/types/ImageNode.js +4 -2
- package/dist/serialization/types/ImageNodeImage.d.ts +13 -0
- package/{serialization/types/ErrorDetailsItem.js → dist/serialization/types/ImageNodeImage.js} +5 -5
- package/dist/serialization/types/Node.d.ts +11 -8
- package/dist/serialization/types/Node.js +10 -7
- package/dist/serialization/types/NotEnterprisePlanWorkspace.d.ts +10 -0
- package/dist/serialization/types/{NodeType.js → NotEnterprisePlanWorkspace.js} +2 -2
- package/dist/serialization/types/Redirect.d.ts +14 -0
- package/dist/serialization/types/Redirect.js +35 -0
- package/dist/serialization/types/Redirects.d.ts +15 -0
- package/dist/serialization/types/Redirects.js +36 -0
- package/dist/serialization/types/SitePlan.d.ts +16 -0
- package/dist/serialization/types/SitePlan.js +37 -0
- package/dist/serialization/types/SitePlanId.d.ts +10 -0
- package/dist/serialization/types/SitePlanId.js +44 -0
- package/dist/serialization/types/SitePlanName.d.ts +10 -0
- package/dist/serialization/types/SitePlanName.js +38 -0
- package/dist/serialization/types/Text.d.ts +13 -0
- package/dist/serialization/types/Text.js +34 -0
- package/dist/serialization/types/TextNode.d.ts +4 -2
- package/dist/serialization/types/TextNode.js +4 -2
- package/dist/serialization/types/TextNodeText.d.ts +13 -0
- package/dist/serialization/types/TextNodeText.js +34 -0
- package/dist/serialization/types/TextNodeWrite.d.ts +13 -0
- package/{serialization/resources/pages/types/DomWriteNodesItem.js → dist/serialization/types/TextNodeWrite.js} +3 -3
- package/dist/serialization/types/index.d.ts +23 -6
- package/dist/serialization/types/index.js +23 -6
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +1844 -778
- package/serialization/resources/collections/resources/fields/types/FieldCreateType.d.ts +1 -1
- package/serialization/resources/collections/resources/fields/types/FieldCreateType.js +10 -9
- package/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts +2 -2
- package/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.js +2 -2
- package/serialization/resources/collections/resources/items/types/MultipleItems.d.ts +2 -2
- package/serialization/resources/collections/resources/items/types/MultipleItems.js +2 -2
- package/serialization/resources/collections/resources/items/types/MultipleLiveItems.d.ts +13 -0
- package/serialization/resources/collections/resources/items/types/MultipleLiveItems.js +34 -0
- package/serialization/resources/collections/resources/items/types/index.d.ts +1 -0
- package/serialization/resources/collections/resources/items/types/index.js +1 -0
- package/serialization/resources/components/client/index.d.ts +1 -0
- package/serialization/resources/components/client/index.js +17 -0
- package/serialization/resources/components/client/requests/ComponentDomWrite.d.ts +13 -0
- package/serialization/resources/components/client/requests/ComponentDomWrite.js +34 -0
- package/serialization/resources/components/client/requests/ComponentPropertiesWrite.d.ts +13 -0
- package/serialization/resources/components/client/requests/ComponentPropertiesWrite.js +34 -0
- package/serialization/resources/components/client/requests/index.d.ts +2 -0
- package/serialization/resources/components/client/requests/index.js +7 -0
- package/serialization/resources/components/index.d.ts +2 -0
- package/serialization/resources/components/index.js +18 -0
- package/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +12 -0
- package/serialization/resources/components/types/ComponentDomWriteNodesItem.js +33 -0
- package/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.d.ts +13 -0
- package/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.js +34 -0
- package/serialization/resources/components/types/ComponentsUpdateContentResponse.d.ts +12 -0
- package/serialization/resources/components/types/ComponentsUpdateContentResponse.js +33 -0
- package/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.d.ts +12 -0
- package/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.js +33 -0
- package/serialization/resources/components/types/index.d.ts +4 -0
- package/serialization/resources/components/types/index.js +20 -0
- package/serialization/resources/index.d.ts +3 -0
- package/serialization/resources/index.js +4 -1
- package/serialization/resources/pages/client/requests/PageDomWrite.d.ts +13 -0
- package/serialization/resources/pages/client/requests/PageDomWrite.js +34 -0
- package/serialization/resources/pages/client/requests/index.d.ts +1 -1
- package/serialization/resources/pages/client/requests/index.js +3 -3
- package/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +12 -0
- package/serialization/resources/pages/types/PageDomWriteNodesItem.js +33 -0
- package/serialization/resources/pages/types/index.d.ts +1 -1
- package/serialization/resources/pages/types/index.js +1 -1
- package/serialization/resources/sites/client/requests/SitesCreateRequest.d.ts +14 -0
- package/serialization/resources/sites/client/requests/SitesCreateRequest.js +35 -0
- package/serialization/resources/sites/client/requests/SitesUpdateRequest.d.ts +13 -0
- package/{dist/serialization/resources/pages/client/requests/DomWrite.js → serialization/resources/sites/client/requests/SitesUpdateRequest.js} +4 -4
- package/serialization/resources/sites/client/requests/index.d.ts +2 -0
- package/serialization/resources/sites/client/requests/index.js +5 -1
- package/serialization/types/Component.d.ts +16 -0
- package/serialization/types/Component.js +37 -0
- package/serialization/types/ComponentDom.d.ts +16 -0
- package/serialization/types/ComponentDom.js +37 -0
- package/serialization/types/ComponentInstanceNodePropertyOverridesWrite.d.ts +14 -0
- package/serialization/types/ComponentInstanceNodePropertyOverridesWrite.js +35 -0
- package/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.d.ts +13 -0
- package/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +34 -0
- package/serialization/types/ComponentList.d.ts +15 -0
- package/serialization/types/ComponentList.js +36 -0
- package/serialization/types/ComponentNode.d.ts +15 -0
- package/serialization/types/ComponentNode.js +36 -0
- package/serialization/types/ComponentProperties.d.ts +16 -0
- package/serialization/types/ComponentProperties.js +37 -0
- package/serialization/types/ComponentProperty.d.ts +17 -0
- package/serialization/types/ComponentProperty.js +38 -0
- package/serialization/types/ComponentPropertyType.d.ts +10 -0
- package/serialization/types/ComponentPropertyType.js +31 -0
- package/serialization/types/Domain.d.ts +1 -0
- package/serialization/types/Domain.js +1 -0
- package/serialization/types/Error_.d.ts +1 -2
- package/serialization/types/Error_.js +1 -2
- package/serialization/types/FieldType.d.ts +1 -1
- package/serialization/types/FieldType.js +9 -9
- package/serialization/types/ImageNode.d.ts +4 -2
- package/serialization/types/ImageNode.js +4 -2
- package/serialization/types/ImageNodeImage.d.ts +13 -0
- package/serialization/types/ImageNodeImage.js +34 -0
- package/serialization/types/Node.d.ts +11 -8
- package/serialization/types/Node.js +10 -7
- package/serialization/types/NotEnterprisePlanWorkspace.d.ts +10 -0
- package/serialization/types/{NodeType.js → NotEnterprisePlanWorkspace.js} +2 -2
- package/serialization/types/Redirect.d.ts +14 -0
- package/serialization/types/Redirect.js +35 -0
- package/serialization/types/Redirects.d.ts +15 -0
- package/serialization/types/Redirects.js +36 -0
- package/serialization/types/SitePlan.d.ts +16 -0
- package/serialization/types/SitePlan.js +37 -0
- package/serialization/types/SitePlanId.d.ts +10 -0
- package/serialization/types/SitePlanId.js +44 -0
- package/serialization/types/SitePlanName.d.ts +10 -0
- package/serialization/types/SitePlanName.js +38 -0
- package/serialization/types/Text.d.ts +13 -0
- package/serialization/types/Text.js +34 -0
- package/serialization/types/TextNode.d.ts +4 -2
- package/serialization/types/TextNode.js +4 -2
- package/serialization/types/TextNodeText.d.ts +13 -0
- package/serialization/types/TextNodeText.js +34 -0
- package/serialization/types/TextNodeWrite.d.ts +13 -0
- package/{dist/serialization/resources/pages/types/DomWriteNodesItem.js → serialization/types/TextNodeWrite.js} +3 -3
- package/serialization/types/index.d.ts +23 -6
- package/serialization/types/index.js +23 -6
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/api/resources/pages/client/requests/DomWrite.d.ts +0 -27
- package/api/types/NodeType.d.ts +0 -8
- package/api/types/NodeType.js +0 -10
- package/dist/api/resources/pages/client/requests/DomWrite.d.ts +0 -27
- package/dist/api/types/NodeType.d.ts +0 -8
- package/dist/api/types/NodeType.js +0 -10
- package/dist/serialization/resources/pages/client/requests/DomWrite.d.ts +0 -13
- package/dist/serialization/resources/pages/types/DomWriteNodesItem.d.ts +0 -13
- package/dist/serialization/types/ErrorDetailsItem.d.ts +0 -10
- package/dist/serialization/types/NodeType.d.ts +0 -10
- package/serialization/resources/pages/client/requests/DomWrite.d.ts +0 -13
- package/serialization/resources/pages/types/DomWriteNodesItem.d.ts +0 -13
- package/serialization/types/ErrorDetailsItem.d.ts +0 -10
- package/serialization/types/NodeType.d.ts +0 -10
- /package/api/resources/{pages/client/requests/DomWrite.js → collections/resources/items/types/MultipleLiveItems.js} +0 -0
- /package/api/resources/{pages/types/DomWriteNodesItem.js → components/client/requests/ComponentDomWrite.js} +0 -0
- /package/api/{types/ErrorDetailsItem.js → resources/components/client/requests/ComponentPropertiesWrite.js} +0 -0
- /package/{dist/api/resources/pages/client/requests/DomWrite.js → api/resources/components/client/requests/ComponentsGetContentRequest.js} +0 -0
- /package/{dist/api/resources/pages/types/DomWriteNodesItem.js → api/resources/components/client/requests/ComponentsGetPropertiesRequest.js} +0 -0
- /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.
|
|
19
|
-
docs:
|
|
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.](/
|
|
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/
|
|
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
|