webflow-api 3.2.0 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.mock/definition/__package__.yml +112 -269
- package/.mock/definition/accessGroups.yml +7 -1
- package/.mock/definition/api.yml +0 -2
- package/.mock/definition/assets.yml +38 -8
- package/.mock/definition/collections/fields.yml +9 -3
- package/.mock/definition/collections/items.yml +458 -76
- package/.mock/definition/collections.yml +12 -4
- package/.mock/definition/components.yml +65 -25
- package/.mock/definition/ecommerce.yml +3 -1
- package/.mock/definition/forms.yml +29 -7
- package/.mock/definition/inventory.yml +25 -17
- package/.mock/definition/items.yml +28 -16
- package/.mock/definition/orders.yml +126 -110
- package/.mock/definition/pages/scripts.yml +27 -8
- package/.mock/definition/pages.yml +66 -45
- package/.mock/definition/products.yml +21 -12
- package/.mock/definition/scripts.yml +9 -3
- package/.mock/definition/sites/activityLogs.yml +6 -1
- package/.mock/definition/sites/comments.yml +39 -12
- package/.mock/definition/sites/plans.yml +3 -1
- package/.mock/definition/sites/redirects.yml +12 -4
- package/.mock/definition/sites/robotsTxt.yml +12 -4
- package/.mock/definition/sites/scripts.yml +35 -8
- package/.mock/definition/sites/wellKnown.yml +20 -4
- package/.mock/definition/sites.yml +23 -8
- package/.mock/definition/token.yml +3 -2
- package/.mock/definition/users.yml +19 -5
- package/.mock/definition/webhooks.yml +0 -4
- package/.mock/definition/workspaces/auditLogs.yml +9 -3
- package/.mock/fern.config.json +1 -1
- package/Client.d.ts +2 -2
- package/Client.js +3 -3
- package/api/resources/accessGroups/client/Client.d.ts +8 -4
- package/api/resources/accessGroups/client/Client.js +11 -3
- package/api/resources/accessGroups/client/requests/AccessGroupsListRequest.d.ts +5 -1
- package/api/resources/assets/client/Client.d.ts +9 -5
- package/api/resources/assets/client/Client.js +24 -7
- package/api/resources/assets/client/requests/AssetsListRequest.d.ts +20 -0
- package/api/resources/assets/client/requests/index.d.ts +1 -0
- package/api/resources/collections/client/Client.d.ts +3 -3
- package/api/resources/collections/client/Client.js +6 -2
- package/api/resources/collections/resources/fields/client/Client.d.ts +3 -3
- package/api/resources/collections/resources/fields/client/Client.js +6 -2
- package/api/resources/collections/resources/items/client/Client.d.ts +53 -17
- package/api/resources/collections/resources/items/client/Client.js +57 -17
- package/api/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.d.ts +4 -0
- package/api/resources/collections/resources/items/client/requests/ItemsCreateItemLiveRequest.d.ts +4 -2
- package/api/resources/collections/resources/items/client/requests/ItemsCreateItemRequest.d.ts +4 -2
- package/api/resources/collections/resources/items/client/requests/ItemsDeleteItemLiveRequest.d.ts +3 -1
- package/api/resources/collections/resources/items/client/requests/ItemsDeleteItemRequest.d.ts +3 -1
- package/api/resources/collections/resources/items/client/requests/ItemsGetItemLiveRequest.d.ts +3 -1
- package/api/resources/collections/resources/items/client/requests/ItemsGetItemRequest.d.ts +3 -1
- package/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.d.ts +9 -1
- package/api/resources/collections/resources/items/client/requests/ItemsListItemsRequest.d.ts +9 -1
- package/api/resources/collections/resources/items/client/requests/ItemsUpdateItemLiveRequest.d.ts +3 -2
- package/api/resources/collections/resources/items/client/requests/ItemsUpdateItemRequest.d.ts +3 -2
- package/api/resources/collections/resources/items/client/requests/ItemsUpdateItemsLiveRequest.d.ts +4 -0
- package/api/resources/collections/resources/items/client/requests/ItemsUpdateItemsRequest.d.ts +2 -0
- package/api/resources/components/client/Client.d.ts +18 -9
- package/api/resources/components/client/Client.js +21 -8
- package/api/resources/components/client/requests/ComponentDomWrite.d.ts +3 -1
- package/api/resources/components/client/requests/ComponentPropertiesWrite.d.ts +3 -1
- package/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +6 -2
- package/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +6 -2
- package/api/resources/components/client/requests/ComponentsListRequest.d.ts +3 -1
- package/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +1 -1
- package/api/resources/ecommerce/client/Client.d.ts +3 -3
- package/api/resources/ecommerce/client/Client.js +6 -2
- package/api/resources/forms/client/Client.d.ts +14 -6
- package/api/resources/forms/client/Client.js +17 -5
- package/api/resources/forms/client/requests/FormsListRequest.d.ts +4 -1
- package/api/resources/forms/client/requests/FormsListSubmissionsBySiteRequest.d.ts +3 -1
- package/api/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +4 -1
- package/api/resources/inventory/client/Client.d.ts +11 -11
- package/api/resources/inventory/client/Client.js +22 -18
- package/api/resources/orders/client/Client.d.ts +8 -4
- package/api/resources/orders/client/Client.js +11 -3
- package/api/resources/orders/client/requests/OrdersListRequest.d.ts +5 -1
- package/api/resources/pages/client/Client.d.ts +14 -15
- package/api/resources/pages/client/Client.js +17 -14
- package/api/resources/pages/client/requests/PageMetadataWrite.d.ts +9 -2
- package/api/resources/pages/client/requests/PagesGetContentRequest.d.ts +6 -2
- package/api/resources/pages/client/requests/PagesGetMetadataRequest.d.ts +3 -1
- package/api/resources/pages/client/requests/PagesListRequest.d.ts +6 -2
- package/api/resources/pages/resources/scripts/client/Client.d.ts +8 -6
- package/api/resources/pages/resources/scripts/client/Client.js +11 -5
- package/api/resources/pages/types/PageDomWriteNodesItem.d.ts +1 -1
- package/api/resources/products/client/Client.d.ts +7 -4
- package/api/resources/products/client/Client.js +10 -3
- package/api/resources/products/client/requests/ProductsListRequest.d.ts +4 -1
- package/api/resources/scripts/client/Client.d.ts +3 -3
- package/api/resources/scripts/client/Client.js +6 -2
- package/api/resources/sites/client/Client.d.ts +3 -3
- package/api/resources/sites/client/Client.js +6 -2
- package/api/resources/sites/resources/activityLogs/client/Client.d.ts +7 -4
- package/api/resources/sites/resources/activityLogs/client/Client.js +10 -3
- package/api/resources/sites/resources/activityLogs/client/requests/ActivityLogsListRequest.d.ts +4 -1
- package/api/resources/sites/resources/comments/client/Client.d.ts +18 -6
- package/api/resources/sites/resources/comments/client/Client.js +21 -5
- package/api/resources/sites/resources/comments/client/requests/CommentsGetCommentThreadRequest.d.ts +8 -2
- package/api/resources/sites/resources/comments/client/requests/CommentsListCommentRepliesRequest.d.ts +8 -2
- package/api/resources/sites/resources/comments/client/requests/CommentsListCommentThreadsRequest.d.ts +8 -2
- package/api/resources/sites/resources/plans/client/Client.d.ts +3 -3
- package/api/resources/sites/resources/plans/client/Client.js +6 -2
- package/api/resources/sites/resources/redirects/client/Client.d.ts +3 -3
- package/api/resources/sites/resources/redirects/client/Client.js +6 -2
- package/api/resources/sites/resources/robotsTxt/client/Client.d.ts +3 -3
- package/api/resources/sites/resources/robotsTxt/client/Client.js +6 -2
- package/api/resources/sites/resources/scripts/client/Client.d.ts +13 -6
- package/api/resources/sites/resources/scripts/client/Client.js +16 -5
- package/api/resources/sites/resources/scripts/client/requests/ScriptsListCustomCodeBlocksRequest.d.ts +4 -1
- package/api/resources/sites/resources/wellKnown/client/Client.d.ts +6 -5
- package/api/resources/sites/resources/wellKnown/client/Client.js +9 -4
- package/api/resources/sites/resources/wellKnown/client/requests/WellKnownFile.d.ts +3 -2
- package/api/resources/token/client/Client.d.ts +3 -3
- package/api/resources/token/client/Client.js +6 -2
- package/api/resources/users/client/Client.d.ts +8 -4
- package/api/resources/users/client/Client.js +11 -3
- package/api/resources/users/client/requests/UsersListRequest.d.ts +5 -1
- package/api/resources/webhooks/client/Client.d.ts +3 -3
- package/api/resources/webhooks/client/Client.js +6 -2
- package/api/resources/workspaces/client/Client.d.ts +2 -2
- package/api/resources/workspaces/client/Client.js +1 -1
- package/api/resources/workspaces/resources/auditLogs/client/Client.d.ts +9 -5
- package/api/resources/workspaces/resources/auditLogs/client/Client.js +12 -4
- package/api/resources/workspaces/resources/auditLogs/client/requests/AuditLogsGetWorkspaceAuditLogsRequest.d.ts +6 -2
- package/api/types/CollectionItemChanged.d.ts +1 -1
- package/api/types/CollectionItemCreated.d.ts +1 -1
- package/api/types/CollectionItemPublished.d.ts +9 -0
- package/api/types/{ComponentInstance.d.ts → ComponentInstanceNodePropertyOverridesWrite.d.ts} +1 -1
- package/api/types/{ComponentNodeDom.d.ts → ComponentNode.d.ts} +1 -1
- package/api/types/Dom.d.ts +1 -1
- package/api/types/{ImageNodeDom.d.ts → ImageNode.d.ts} +1 -1
- package/api/types/Node.d.ts +7 -7
- package/api/types/Payload.d.ts +25 -0
- package/api/types/{SingleLocaleChangedPayloadFieldData.d.ts → PayloadFieldData.d.ts} +1 -1
- package/api/types/{SearchButtonNodeDom.d.ts → SearchButtonNode.d.ts} +1 -1
- package/api/types/{SearchButton.d.ts → SearchButtonNodeWrite.d.ts} +1 -1
- package/api/types/{SelectNodeDom.d.ts → SelectNode.d.ts} +1 -1
- package/api/types/SiteMembership.d.ts +1 -0
- package/api/types/SiteMembershipAuditLogItemEventSubType.d.ts +2 -1
- package/api/types/SiteMembershipAuditLogItemEventSubType.js +1 -0
- package/api/types/SkuFieldData.d.ts +0 -4
- package/{dist/api/types/SubmitButtonNodeDom.d.ts → api/types/SubmitButtonNode.d.ts} +1 -1
- package/{dist/api/types/SubmitButton.d.ts → api/types/SubmitButtonNodeWrite.d.ts} +1 -1
- package/{dist/api/types/TextInputNodeDom.d.ts → api/types/TextInputNode.d.ts} +1 -1
- package/api/types/{TextInput.d.ts → TextInputNodeWrite.d.ts} +1 -1
- package/api/types/TextNode.d.ts +7 -4
- package/api/types/TextNodeWrite.d.ts +12 -0
- package/api/types/TriggerType.d.ts +2 -1
- package/api/types/TriggerType.js +1 -0
- package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.d.ts +9 -0
- package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +2 -1
- package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +1 -0
- package/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.d.ts +7 -0
- package/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +2 -1
- package/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +1 -0
- package/api/types/WorkspaceInvitation.d.ts +1 -0
- package/api/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +2 -1
- package/api/types/WorkspaceInvitationAuditLogItemEventSubType.js +1 -0
- package/api/types/index.d.ts +17 -20
- package/api/types/index.js +17 -20
- package/dist/Client.d.ts +2 -2
- package/dist/Client.js +3 -3
- package/dist/api/resources/accessGroups/client/Client.d.ts +8 -4
- package/dist/api/resources/accessGroups/client/Client.js +11 -3
- package/dist/api/resources/accessGroups/client/requests/AccessGroupsListRequest.d.ts +5 -1
- package/dist/api/resources/assets/client/Client.d.ts +9 -5
- package/dist/api/resources/assets/client/Client.js +24 -7
- package/dist/api/resources/assets/client/requests/AssetsListRequest.d.ts +20 -0
- package/dist/api/resources/assets/client/requests/index.d.ts +1 -0
- package/dist/api/resources/collections/client/Client.d.ts +3 -3
- package/dist/api/resources/collections/client/Client.js +6 -2
- package/dist/api/resources/collections/resources/fields/client/Client.d.ts +3 -3
- package/dist/api/resources/collections/resources/fields/client/Client.js +6 -2
- package/dist/api/resources/collections/resources/items/client/Client.d.ts +53 -17
- package/dist/api/resources/collections/resources/items/client/Client.js +57 -17
- package/dist/api/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.d.ts +4 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsCreateItemLiveRequest.d.ts +4 -2
- package/dist/api/resources/collections/resources/items/client/requests/ItemsCreateItemRequest.d.ts +4 -2
- package/dist/api/resources/collections/resources/items/client/requests/ItemsDeleteItemLiveRequest.d.ts +3 -1
- package/dist/api/resources/collections/resources/items/client/requests/ItemsDeleteItemRequest.d.ts +3 -1
- package/dist/api/resources/collections/resources/items/client/requests/ItemsGetItemLiveRequest.d.ts +3 -1
- package/dist/api/resources/collections/resources/items/client/requests/ItemsGetItemRequest.d.ts +3 -1
- package/dist/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.d.ts +9 -1
- package/dist/api/resources/collections/resources/items/client/requests/ItemsListItemsRequest.d.ts +9 -1
- package/dist/api/resources/collections/resources/items/client/requests/ItemsUpdateItemLiveRequest.d.ts +3 -2
- package/dist/api/resources/collections/resources/items/client/requests/ItemsUpdateItemRequest.d.ts +3 -2
- package/dist/api/resources/collections/resources/items/client/requests/ItemsUpdateItemsLiveRequest.d.ts +4 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsUpdateItemsRequest.d.ts +2 -0
- package/dist/api/resources/components/client/Client.d.ts +18 -9
- package/dist/api/resources/components/client/Client.js +21 -8
- package/dist/api/resources/components/client/requests/ComponentDomWrite.d.ts +3 -1
- package/dist/api/resources/components/client/requests/ComponentPropertiesWrite.d.ts +3 -1
- package/dist/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +6 -2
- package/dist/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +6 -2
- package/dist/api/resources/components/client/requests/ComponentsListRequest.d.ts +3 -1
- package/dist/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +1 -1
- package/dist/api/resources/ecommerce/client/Client.d.ts +3 -3
- package/dist/api/resources/ecommerce/client/Client.js +6 -2
- package/dist/api/resources/forms/client/Client.d.ts +14 -6
- package/dist/api/resources/forms/client/Client.js +17 -5
- package/dist/api/resources/forms/client/requests/FormsListRequest.d.ts +4 -1
- package/dist/api/resources/forms/client/requests/FormsListSubmissionsBySiteRequest.d.ts +3 -1
- package/dist/api/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +4 -1
- package/dist/api/resources/inventory/client/Client.d.ts +11 -11
- package/dist/api/resources/inventory/client/Client.js +22 -18
- package/dist/api/resources/orders/client/Client.d.ts +8 -4
- package/dist/api/resources/orders/client/Client.js +11 -3
- package/dist/api/resources/orders/client/requests/OrdersListRequest.d.ts +5 -1
- package/dist/api/resources/pages/client/Client.d.ts +14 -15
- package/dist/api/resources/pages/client/Client.js +17 -14
- package/dist/api/resources/pages/client/requests/PageMetadataWrite.d.ts +9 -2
- package/dist/api/resources/pages/client/requests/PagesGetContentRequest.d.ts +6 -2
- package/dist/api/resources/pages/client/requests/PagesGetMetadataRequest.d.ts +3 -1
- package/dist/api/resources/pages/client/requests/PagesListRequest.d.ts +6 -2
- package/dist/api/resources/pages/resources/scripts/client/Client.d.ts +8 -6
- package/dist/api/resources/pages/resources/scripts/client/Client.js +11 -5
- package/dist/api/resources/pages/types/PageDomWriteNodesItem.d.ts +1 -1
- package/dist/api/resources/products/client/Client.d.ts +7 -4
- package/dist/api/resources/products/client/Client.js +10 -3
- package/dist/api/resources/products/client/requests/ProductsListRequest.d.ts +4 -1
- package/dist/api/resources/scripts/client/Client.d.ts +3 -3
- package/dist/api/resources/scripts/client/Client.js +6 -2
- package/dist/api/resources/sites/client/Client.d.ts +3 -3
- package/dist/api/resources/sites/client/Client.js +6 -2
- package/dist/api/resources/sites/resources/activityLogs/client/Client.d.ts +7 -4
- package/dist/api/resources/sites/resources/activityLogs/client/Client.js +10 -3
- package/dist/api/resources/sites/resources/activityLogs/client/requests/ActivityLogsListRequest.d.ts +4 -1
- package/dist/api/resources/sites/resources/comments/client/Client.d.ts +18 -6
- package/dist/api/resources/sites/resources/comments/client/Client.js +21 -5
- package/dist/api/resources/sites/resources/comments/client/requests/CommentsGetCommentThreadRequest.d.ts +8 -2
- package/dist/api/resources/sites/resources/comments/client/requests/CommentsListCommentRepliesRequest.d.ts +8 -2
- package/dist/api/resources/sites/resources/comments/client/requests/CommentsListCommentThreadsRequest.d.ts +8 -2
- package/dist/api/resources/sites/resources/plans/client/Client.d.ts +3 -3
- package/dist/api/resources/sites/resources/plans/client/Client.js +6 -2
- package/dist/api/resources/sites/resources/redirects/client/Client.d.ts +3 -3
- package/dist/api/resources/sites/resources/redirects/client/Client.js +6 -2
- package/dist/api/resources/sites/resources/robotsTxt/client/Client.d.ts +3 -3
- package/dist/api/resources/sites/resources/robotsTxt/client/Client.js +6 -2
- package/dist/api/resources/sites/resources/scripts/client/Client.d.ts +13 -6
- package/dist/api/resources/sites/resources/scripts/client/Client.js +16 -5
- package/dist/api/resources/sites/resources/scripts/client/requests/ScriptsListCustomCodeBlocksRequest.d.ts +4 -1
- package/dist/api/resources/sites/resources/wellKnown/client/Client.d.ts +6 -5
- package/dist/api/resources/sites/resources/wellKnown/client/Client.js +9 -4
- package/dist/api/resources/sites/resources/wellKnown/client/requests/WellKnownFile.d.ts +3 -2
- package/dist/api/resources/token/client/Client.d.ts +3 -3
- package/dist/api/resources/token/client/Client.js +6 -2
- package/dist/api/resources/users/client/Client.d.ts +8 -4
- package/dist/api/resources/users/client/Client.js +11 -3
- package/dist/api/resources/users/client/requests/UsersListRequest.d.ts +5 -1
- package/dist/api/resources/webhooks/client/Client.d.ts +3 -3
- package/dist/api/resources/webhooks/client/Client.js +6 -2
- package/dist/api/resources/workspaces/client/Client.d.ts +2 -2
- package/dist/api/resources/workspaces/client/Client.js +1 -1
- package/dist/api/resources/workspaces/resources/auditLogs/client/Client.d.ts +9 -5
- package/dist/api/resources/workspaces/resources/auditLogs/client/Client.js +12 -4
- package/dist/api/resources/workspaces/resources/auditLogs/client/requests/AuditLogsGetWorkspaceAuditLogsRequest.d.ts +6 -2
- package/dist/api/types/CollectionItemChanged.d.ts +1 -1
- package/dist/api/types/CollectionItemCreated.d.ts +1 -1
- package/dist/api/types/CollectionItemPublished.d.ts +9 -0
- package/dist/api/types/{ComponentInstance.d.ts → ComponentInstanceNodePropertyOverridesWrite.d.ts} +1 -1
- package/dist/api/types/{ComponentNodeDom.d.ts → ComponentNode.d.ts} +1 -1
- package/dist/api/types/Dom.d.ts +1 -1
- package/dist/api/types/{ImageNodeDom.d.ts → ImageNode.d.ts} +1 -1
- package/dist/api/types/Node.d.ts +7 -7
- package/dist/api/types/Payload.d.ts +25 -0
- package/dist/api/types/{SingleLocaleChangedPayloadFieldData.d.ts → PayloadFieldData.d.ts} +1 -1
- package/dist/api/types/{SearchButtonNodeDom.d.ts → SearchButtonNode.d.ts} +1 -1
- package/dist/api/types/{SearchButton.d.ts → SearchButtonNodeWrite.d.ts} +1 -1
- package/dist/api/types/{SelectNodeDom.d.ts → SelectNode.d.ts} +1 -1
- package/dist/api/types/SiteMembership.d.ts +1 -0
- package/dist/api/types/SiteMembershipAuditLogItemEventSubType.d.ts +2 -1
- package/dist/api/types/SiteMembershipAuditLogItemEventSubType.js +1 -0
- package/dist/api/types/SkuFieldData.d.ts +0 -4
- package/{api/types/SubmitButtonNodeDom.d.ts → dist/api/types/SubmitButtonNode.d.ts} +1 -1
- package/{api/types/SubmitButton.d.ts → dist/api/types/SubmitButtonNodeWrite.d.ts} +1 -1
- package/{api/types/TextInputNodeDom.d.ts → dist/api/types/TextInputNode.d.ts} +1 -1
- package/dist/api/types/{TextInput.d.ts → TextInputNodeWrite.d.ts} +1 -1
- package/dist/api/types/TextNode.d.ts +7 -4
- package/dist/api/types/TextNodeWrite.d.ts +12 -0
- package/dist/api/types/TriggerType.d.ts +2 -1
- package/dist/api/types/TriggerType.js +1 -0
- package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.d.ts +9 -0
- package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +2 -1
- package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +1 -0
- package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.d.ts +7 -0
- package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +2 -1
- package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +1 -0
- package/dist/api/types/WorkspaceInvitation.d.ts +1 -0
- package/dist/api/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +2 -1
- package/dist/api/types/WorkspaceInvitationAuditLogItemEventSubType.js +1 -0
- package/dist/api/types/index.d.ts +17 -20
- package/dist/api/types/index.js +17 -20
- package/dist/environments.d.ts +0 -4
- package/dist/environments.js +0 -2
- package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +6 -6
- package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.js +10 -10
- package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +6 -6
- package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.js +10 -10
- package/dist/serialization/types/CollectionItemChanged.d.ts +2 -2
- package/dist/serialization/types/CollectionItemChanged.js +2 -2
- package/dist/serialization/types/CollectionItemCreated.d.ts +2 -2
- package/dist/serialization/types/CollectionItemCreated.js +2 -2
- package/dist/serialization/types/CollectionItemPublished.d.ts +14 -0
- package/dist/serialization/types/CollectionItemPublished.js +45 -0
- package/{serialization/types/ComponentInstance.d.ts → dist/serialization/types/ComponentInstanceNodePropertyOverridesWrite.d.ts} +2 -2
- package/{serialization/types/ComponentInstance.js → dist/serialization/types/ComponentInstanceNodePropertyOverridesWrite.js} +2 -2
- package/{serialization/types/ComponentNodeDom.d.ts → dist/serialization/types/ComponentNode.d.ts} +2 -2
- package/{serialization/types/ComponentNodeDom.js → dist/serialization/types/ComponentNode.js} +2 -2
- package/dist/serialization/types/FieldValidationsAdditionalPropertiesAdditionalProperties.d.ts +1 -1
- package/dist/serialization/types/FieldValidationsAdditionalPropertiesAdditionalProperties.js +1 -1
- package/dist/serialization/types/{ImageNodeDom.d.ts → ImageNode.d.ts} +2 -2
- package/dist/serialization/types/{ImageNodeDom.js → ImageNode.js} +2 -2
- package/dist/serialization/types/Node.d.ts +14 -14
- package/dist/serialization/types/Node.js +14 -14
- package/dist/serialization/types/Payload.d.ts +23 -0
- package/dist/serialization/types/{MultiLocaleChangedPayload.js → Payload.js} +8 -8
- package/dist/serialization/types/{SingleLocaleChangedPayloadFieldData.d.ts → PayloadFieldData.d.ts} +2 -2
- package/dist/serialization/types/{SingleLocaleChangedPayloadFieldData.js → PayloadFieldData.js} +2 -2
- package/{serialization/types/SearchButtonNodeDom.d.ts → dist/serialization/types/SearchButtonNode.d.ts} +2 -2
- package/{serialization/types/SearchButtonNodeDom.js → dist/serialization/types/SearchButtonNode.js} +2 -2
- package/{serialization/types/SearchButton.d.ts → dist/serialization/types/SearchButtonNodeWrite.d.ts} +2 -2
- package/{serialization/types/SearchButton.js → dist/serialization/types/SearchButtonNodeWrite.js} +2 -2
- package/{serialization/types/SelectNodeDom.d.ts → dist/serialization/types/SelectNode.d.ts} +2 -2
- package/{serialization/types/SelectNodeDom.js → dist/serialization/types/SelectNode.js} +2 -2
- package/dist/serialization/types/SiteMembership.d.ts +2 -0
- package/dist/serialization/types/SiteMembership.js +2 -0
- package/dist/serialization/types/SiteMembershipAuditLogItemEventSubType.d.ts +1 -1
- package/dist/serialization/types/SiteMembershipAuditLogItemEventSubType.js +1 -1
- package/dist/serialization/types/SkuFieldData.d.ts +0 -2
- package/dist/serialization/types/SkuFieldData.js +0 -2
- package/dist/serialization/types/{SubmitButtonNodeDom.d.ts → SubmitButtonNode.d.ts} +2 -2
- package/{serialization/types/SubmitButtonNodeDom.js → dist/serialization/types/SubmitButtonNode.js} +2 -2
- package/{serialization/types/SubmitButton.d.ts → dist/serialization/types/SubmitButtonNodeWrite.d.ts} +2 -2
- package/{serialization/types/SubmitButton.js → dist/serialization/types/SubmitButtonNodeWrite.js} +2 -2
- package/{serialization/types/TextInputNodeDom.d.ts → dist/serialization/types/TextInputNode.d.ts} +2 -2
- package/{serialization/types/TextInputNodeDom.js → dist/serialization/types/TextInputNode.js} +2 -2
- package/dist/serialization/types/{TextInput.d.ts → TextInputNodeWrite.d.ts} +2 -2
- package/dist/serialization/types/{TextInput.js → TextInputNodeWrite.js} +2 -2
- package/dist/serialization/types/TextNode.d.ts +4 -2
- package/dist/serialization/types/TextNode.js +4 -2
- package/dist/serialization/types/TextNodeWrite.d.ts +13 -0
- package/dist/serialization/types/TextNodeWrite.js +44 -0
- package/dist/serialization/types/TriggerType.d.ts +1 -1
- package/dist/serialization/types/TriggerType.js +1 -0
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.d.ts +15 -0
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.js +46 -0
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +1 -1
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +1 -1
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.d.ts +13 -0
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.js +44 -0
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +1 -1
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +1 -1
- package/dist/serialization/types/WorkspaceInvitation.d.ts +2 -0
- package/dist/serialization/types/WorkspaceInvitation.js +2 -0
- package/dist/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +1 -1
- package/dist/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.js +1 -0
- package/dist/serialization/types/index.d.ts +17 -20
- package/dist/serialization/types/index.js +17 -20
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/wrapper/AssetsClient.d.ts +24 -0
- package/dist/wrapper/AssetsClient.js +42 -0
- package/dist/wrapper/AssetsUtilitiesClient.d.ts +1 -1
- package/environments.d.ts +0 -4
- package/environments.js +0 -2
- package/jest.config.mjs +0 -4
- package/package.json +3 -3
- package/reference.md +158 -54
- package/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +6 -6
- package/serialization/resources/components/types/ComponentDomWriteNodesItem.js +10 -10
- package/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +6 -6
- package/serialization/resources/pages/types/PageDomWriteNodesItem.js +10 -10
- package/serialization/types/CollectionItemChanged.d.ts +2 -2
- package/serialization/types/CollectionItemChanged.js +2 -2
- package/serialization/types/CollectionItemCreated.d.ts +2 -2
- package/serialization/types/CollectionItemCreated.js +2 -2
- package/serialization/types/CollectionItemPublished.d.ts +14 -0
- package/serialization/types/CollectionItemPublished.js +45 -0
- package/{dist/serialization/types/ComponentInstance.d.ts → serialization/types/ComponentInstanceNodePropertyOverridesWrite.d.ts} +2 -2
- package/{dist/serialization/types/ComponentInstance.js → serialization/types/ComponentInstanceNodePropertyOverridesWrite.js} +2 -2
- package/{dist/serialization/types/ComponentNodeDom.d.ts → serialization/types/ComponentNode.d.ts} +2 -2
- package/{dist/serialization/types/ComponentNodeDom.js → serialization/types/ComponentNode.js} +2 -2
- package/serialization/types/FieldValidationsAdditionalPropertiesAdditionalProperties.d.ts +1 -1
- package/serialization/types/FieldValidationsAdditionalPropertiesAdditionalProperties.js +1 -1
- package/serialization/types/{ImageNodeDom.d.ts → ImageNode.d.ts} +2 -2
- package/serialization/types/{ImageNodeDom.js → ImageNode.js} +2 -2
- package/serialization/types/Node.d.ts +14 -14
- package/serialization/types/Node.js +14 -14
- package/serialization/types/Payload.d.ts +23 -0
- package/serialization/types/{MultiLocaleChangedPayload.js → Payload.js} +8 -8
- package/serialization/types/{SingleLocaleChangedPayloadFieldData.d.ts → PayloadFieldData.d.ts} +2 -2
- package/serialization/types/{SingleLocaleChangedPayloadFieldData.js → PayloadFieldData.js} +2 -2
- package/{dist/serialization/types/SearchButtonNodeDom.d.ts → serialization/types/SearchButtonNode.d.ts} +2 -2
- package/{dist/serialization/types/SearchButtonNodeDom.js → serialization/types/SearchButtonNode.js} +2 -2
- package/{dist/serialization/types/SearchButton.d.ts → serialization/types/SearchButtonNodeWrite.d.ts} +2 -2
- package/{dist/serialization/types/SearchButton.js → serialization/types/SearchButtonNodeWrite.js} +2 -2
- package/{dist/serialization/types/SelectNodeDom.d.ts → serialization/types/SelectNode.d.ts} +2 -2
- package/{dist/serialization/types/SelectNodeDom.js → serialization/types/SelectNode.js} +2 -2
- package/serialization/types/SiteMembership.d.ts +2 -0
- package/serialization/types/SiteMembership.js +2 -0
- package/serialization/types/SiteMembershipAuditLogItemEventSubType.d.ts +1 -1
- package/serialization/types/SiteMembershipAuditLogItemEventSubType.js +1 -1
- package/serialization/types/SkuFieldData.d.ts +0 -2
- package/serialization/types/SkuFieldData.js +0 -2
- package/serialization/types/{SubmitButtonNodeDom.d.ts → SubmitButtonNode.d.ts} +2 -2
- package/{dist/serialization/types/SubmitButtonNodeDom.js → serialization/types/SubmitButtonNode.js} +2 -2
- package/{dist/serialization/types/SubmitButton.d.ts → serialization/types/SubmitButtonNodeWrite.d.ts} +2 -2
- package/{dist/serialization/types/SubmitButton.js → serialization/types/SubmitButtonNodeWrite.js} +2 -2
- package/{dist/serialization/types/TextInputNodeDom.d.ts → serialization/types/TextInputNode.d.ts} +2 -2
- package/{dist/serialization/types/TextInputNodeDom.js → serialization/types/TextInputNode.js} +2 -2
- package/serialization/types/{TextInput.d.ts → TextInputNodeWrite.d.ts} +2 -2
- package/serialization/types/{TextInput.js → TextInputNodeWrite.js} +2 -2
- package/serialization/types/TextNode.d.ts +4 -2
- package/serialization/types/TextNode.js +4 -2
- package/serialization/types/TextNodeWrite.d.ts +13 -0
- package/serialization/types/TextNodeWrite.js +44 -0
- package/serialization/types/TriggerType.d.ts +1 -1
- package/serialization/types/TriggerType.js +1 -0
- package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.d.ts +15 -0
- package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.js +46 -0
- package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +1 -1
- package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +1 -1
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.d.ts +13 -0
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.js +44 -0
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +1 -1
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +1 -1
- package/serialization/types/WorkspaceInvitation.d.ts +2 -0
- package/serialization/types/WorkspaceInvitation.js +2 -0
- package/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +1 -1
- package/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.js +1 -0
- package/serialization/types/index.d.ts +17 -20
- package/serialization/types/index.js +17 -20
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/wrapper/AssetsClient.d.ts +24 -0
- package/wrapper/AssetsClient.js +42 -0
- package/wrapper/AssetsUtilitiesClient.d.ts +1 -1
- package/api/types/CollectionItemChangedPayload.d.ts +0 -5
- package/api/types/CollectionItemCreatedPayload.d.ts +0 -5
- package/api/types/LocalizedItem.d.ts +0 -31
- package/api/types/MultiLocaleChangedPayload.d.ts +0 -22
- package/api/types/MultiLocaleChangedPayloadFieldData.d.ts +0 -11
- package/api/types/MultiLocaleCreatedPayload.d.ts +0 -16
- package/api/types/SingleLocaleChangedPayload.d.ts +0 -22
- package/api/types/TextNodeDom.d.ts +0 -15
- package/dist/api/types/CollectionItemChangedPayload.d.ts +0 -5
- package/dist/api/types/CollectionItemCreatedPayload.d.ts +0 -5
- package/dist/api/types/LocalizedItem.d.ts +0 -31
- package/dist/api/types/MultiLocaleChangedPayload.d.ts +0 -22
- package/dist/api/types/MultiLocaleChangedPayloadFieldData.d.ts +0 -11
- package/dist/api/types/MultiLocaleCreatedPayload.d.ts +0 -16
- package/dist/api/types/SingleLocaleChangedPayload.d.ts +0 -22
- package/dist/api/types/SubmitButtonNodeDom.js +0 -5
- package/dist/api/types/TextInput.js +0 -5
- package/dist/api/types/TextInputNodeDom.js +0 -5
- package/dist/api/types/TextNodeDom.d.ts +0 -15
- package/dist/api/types/TextNodeDom.js +0 -5
- package/dist/serialization/types/CollectionItemChangedPayload.d.ts +0 -12
- package/dist/serialization/types/CollectionItemChangedPayload.js +0 -43
- package/dist/serialization/types/CollectionItemCreatedPayload.d.ts +0 -12
- package/dist/serialization/types/CollectionItemCreatedPayload.js +0 -43
- package/dist/serialization/types/LocalizedItem.d.ts +0 -24
- package/dist/serialization/types/LocalizedItem.js +0 -55
- package/dist/serialization/types/MultiLocaleChangedPayload.d.ts +0 -23
- package/dist/serialization/types/MultiLocaleChangedPayloadFieldData.d.ts +0 -15
- package/dist/serialization/types/MultiLocaleChangedPayloadFieldData.js +0 -47
- package/dist/serialization/types/MultiLocaleCreatedPayload.d.ts +0 -17
- package/dist/serialization/types/MultiLocaleCreatedPayload.js +0 -48
- package/dist/serialization/types/SingleLocaleChangedPayload.d.ts +0 -23
- package/dist/serialization/types/SingleLocaleChangedPayload.js +0 -54
- package/dist/serialization/types/TextNodeDom.d.ts +0 -15
- package/dist/serialization/types/TextNodeDom.js +0 -46
- package/serialization/types/CollectionItemChangedPayload.d.ts +0 -12
- package/serialization/types/CollectionItemChangedPayload.js +0 -43
- package/serialization/types/CollectionItemCreatedPayload.d.ts +0 -12
- package/serialization/types/CollectionItemCreatedPayload.js +0 -43
- package/serialization/types/LocalizedItem.d.ts +0 -24
- package/serialization/types/LocalizedItem.js +0 -55
- package/serialization/types/MultiLocaleChangedPayload.d.ts +0 -23
- package/serialization/types/MultiLocaleChangedPayloadFieldData.d.ts +0 -15
- package/serialization/types/MultiLocaleChangedPayloadFieldData.js +0 -47
- package/serialization/types/MultiLocaleCreatedPayload.d.ts +0 -17
- package/serialization/types/MultiLocaleCreatedPayload.js +0 -48
- package/serialization/types/SingleLocaleChangedPayload.d.ts +0 -23
- package/serialization/types/SingleLocaleChangedPayload.js +0 -54
- package/serialization/types/TextNodeDom.d.ts +0 -15
- package/serialization/types/TextNodeDom.js +0 -46
- /package/api/{types/CollectionItemChangedPayload.js → resources/assets/client/requests/AssetsListRequest.js} +0 -0
- /package/api/types/{CollectionItemCreatedPayload.js → CollectionItemPublished.js} +0 -0
- /package/api/types/{ComponentInstance.js → ComponentInstanceNodePropertyOverridesWrite.js} +0 -0
- /package/api/types/{ComponentNodeDom.js → ComponentNode.js} +0 -0
- /package/api/types/{ImageNodeDom.js → ImageNode.js} +0 -0
- /package/api/types/{LocalizedItem.js → Payload.js} +0 -0
- /package/api/types/{MultiLocaleChangedPayload.js → PayloadFieldData.js} +0 -0
- /package/api/types/{MultiLocaleChangedPayloadFieldData.js → SearchButtonNode.js} +0 -0
- /package/api/types/{MultiLocaleCreatedPayload.js → SearchButtonNodeWrite.js} +0 -0
- /package/api/types/{SearchButton.js → SelectNode.js} +0 -0
- /package/api/types/{SearchButtonNodeDom.js → SubmitButtonNode.js} +0 -0
- /package/api/types/{SelectNodeDom.js → SubmitButtonNodeWrite.js} +0 -0
- /package/api/types/{SingleLocaleChangedPayload.js → TextInputNode.js} +0 -0
- /package/api/types/{SingleLocaleChangedPayloadFieldData.js → TextInputNodeWrite.js} +0 -0
- /package/api/types/{SubmitButton.js → TextNodeWrite.js} +0 -0
- /package/api/types/{SubmitButtonNodeDom.js → WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.js} +0 -0
- /package/api/types/{TextInput.js → WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.js} +0 -0
- /package/{api/types/TextInputNodeDom.js → dist/api/resources/assets/client/requests/AssetsListRequest.js} +0 -0
- /package/{api/types/TextNodeDom.js → dist/api/types/CollectionItemPublished.js} +0 -0
- /package/dist/api/types/{CollectionItemChangedPayload.js → ComponentInstanceNodePropertyOverridesWrite.js} +0 -0
- /package/dist/api/types/{CollectionItemCreatedPayload.js → ComponentNode.js} +0 -0
- /package/dist/api/types/{ComponentInstance.js → ImageNode.js} +0 -0
- /package/dist/api/types/{ComponentNodeDom.js → Payload.js} +0 -0
- /package/dist/api/types/{ImageNodeDom.js → PayloadFieldData.js} +0 -0
- /package/dist/api/types/{LocalizedItem.js → SearchButtonNode.js} +0 -0
- /package/dist/api/types/{MultiLocaleChangedPayload.js → SearchButtonNodeWrite.js} +0 -0
- /package/dist/api/types/{MultiLocaleChangedPayloadFieldData.js → SelectNode.js} +0 -0
- /package/dist/api/types/{MultiLocaleCreatedPayload.js → SubmitButtonNode.js} +0 -0
- /package/dist/api/types/{SearchButton.js → SubmitButtonNodeWrite.js} +0 -0
- /package/dist/api/types/{SearchButtonNodeDom.js → TextInputNode.js} +0 -0
- /package/dist/api/types/{SelectNodeDom.js → TextInputNodeWrite.js} +0 -0
- /package/dist/api/types/{SingleLocaleChangedPayload.js → TextNodeWrite.js} +0 -0
- /package/dist/api/types/{SingleLocaleChangedPayloadFieldData.js → WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.js} +0 -0
- /package/dist/api/types/{SubmitButton.js → WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.js} +0 -0
|
@@ -131,8 +131,7 @@ types:
|
|
|
131
131
|
Item IDs:
|
|
132
132
|
docs: An array of Item IDs in a single locale
|
|
133
133
|
properties:
|
|
134
|
-
itemIds:
|
|
135
|
-
type: optional<list<string>>
|
|
134
|
+
itemIds: optional<list<string>>
|
|
136
135
|
source:
|
|
137
136
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
138
137
|
inline: true
|
|
@@ -150,8 +149,7 @@ types:
|
|
|
150
149
|
Item IDs with Locales:
|
|
151
150
|
docs: An array of Item IDs with included `cmsLocaleIds`
|
|
152
151
|
properties:
|
|
153
|
-
items:
|
|
154
|
-
type: optional<list<ItemsPublishItemRequestItemsItemsItem>>
|
|
152
|
+
items: optional<list<ItemsPublishItemRequestItemsItemsItem>>
|
|
155
153
|
source:
|
|
156
154
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
157
155
|
inline: true
|
|
@@ -177,7 +175,9 @@ service:
|
|
|
177
175
|
list-items:
|
|
178
176
|
path: /collections/{collection_id}/items
|
|
179
177
|
method: GET
|
|
180
|
-
auth:
|
|
178
|
+
auth:
|
|
179
|
+
- OAuth2:
|
|
180
|
+
- cms:read
|
|
181
181
|
docs: |
|
|
182
182
|
List of all Items within a Collection.
|
|
183
183
|
|
|
@@ -235,6 +235,14 @@ service:
|
|
|
235
235
|
examples:
|
|
236
236
|
- path-parameters:
|
|
237
237
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
238
|
+
query-parameters:
|
|
239
|
+
cmsLocaleId: cmsLocaleId
|
|
240
|
+
offset: 1.1
|
|
241
|
+
limit: 1.1
|
|
242
|
+
name: name
|
|
243
|
+
slug: slug
|
|
244
|
+
sortBy: lastPublished
|
|
245
|
+
sortOrder: asc
|
|
238
246
|
response:
|
|
239
247
|
body:
|
|
240
248
|
items:
|
|
@@ -269,7 +277,9 @@ service:
|
|
|
269
277
|
create-item:
|
|
270
278
|
path: /collections/{collection_id}/items
|
|
271
279
|
method: POST
|
|
272
|
-
auth:
|
|
280
|
+
auth:
|
|
281
|
+
- OAuth2:
|
|
282
|
+
- cms:write
|
|
273
283
|
docs: >
|
|
274
284
|
Create Item(s) in a Collection.
|
|
275
285
|
|
|
@@ -312,15 +322,44 @@ service:
|
|
|
312
322
|
- name: SingleItem
|
|
313
323
|
path-parameters:
|
|
314
324
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
325
|
+
query-parameters:
|
|
326
|
+
skipInvalidFiles: true
|
|
315
327
|
request:
|
|
316
328
|
isArchived: false
|
|
317
329
|
isDraft: false
|
|
318
330
|
fieldData:
|
|
319
|
-
name:
|
|
320
|
-
slug:
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
331
|
+
name: The Hitchhiker's Guide to the Galaxy
|
|
332
|
+
slug: hitchhikers-guide-to-the-galaxy
|
|
333
|
+
plain-text: Don't Panic.
|
|
334
|
+
rich-text: >-
|
|
335
|
+
<h3>A Guide to Interstellar Travel</h3><p>A towel is about the
|
|
336
|
+
most massively useful thing an interstellar hitchhiker can have.
|
|
337
|
+
<strong>Don't forget yours!</strong></p>
|
|
338
|
+
main-image:
|
|
339
|
+
fileId: 62b720ef280c7a7a3be8cabe
|
|
340
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
341
|
+
image-gallery:
|
|
342
|
+
- fileId: 62b720ef280c7a7a3be8cabd
|
|
343
|
+
url: /files/62b720ef280c7a7a3be8cabd_image.png
|
|
344
|
+
- fileId: 62b720ef280c7a7a3be8cabe
|
|
345
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
346
|
+
intro-video: https://www.youtube.com/watch?v=aJ83KAggd-4
|
|
347
|
+
official-site: >-
|
|
348
|
+
https://hitchhikers.fandom.com/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy
|
|
349
|
+
contact-email: zaphod.beeblebrox@heartofgold.gov
|
|
350
|
+
support-phone: 424-242-4242
|
|
351
|
+
answer-to-everything: 42
|
|
352
|
+
release-date: '1979-10-12T00:00:00.000Z'
|
|
353
|
+
is-featured: true
|
|
354
|
+
brand-color: '#000000'
|
|
355
|
+
category: 62b720ef280c7a7a3be8cabf
|
|
356
|
+
author: 62b720ef280c7a7a3be8cab0
|
|
357
|
+
tags:
|
|
358
|
+
- 62b720ef280c7a7a3be8cab1
|
|
359
|
+
- 62b720ef280c7a7a3be8cab2
|
|
360
|
+
downloadable-asset:
|
|
361
|
+
fileId: 62b720ef280c7a7a3be8cab3
|
|
362
|
+
url: /files/62b720ef280c7a7a3be8cab3_document.pdf
|
|
324
363
|
response:
|
|
325
364
|
body:
|
|
326
365
|
id: 42b720ef280c7a7a3be8cabe
|
|
@@ -331,14 +370,43 @@ service:
|
|
|
331
370
|
isArchived: false
|
|
332
371
|
isDraft: false
|
|
333
372
|
fieldData:
|
|
334
|
-
name:
|
|
335
|
-
slug:
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
373
|
+
name: The Hitchhiker's Guide to the Galaxy
|
|
374
|
+
slug: hitchhikers-guide-to-the-galaxy
|
|
375
|
+
plain-text: Don't Panic.
|
|
376
|
+
rich-text: >-
|
|
377
|
+
<h3>A Guide to Interstellar Travel</h3><p>A towel is about the
|
|
378
|
+
most massively useful thing an interstellar hitchhiker can
|
|
379
|
+
have. <strong>Don't forget yours!</strong></p>
|
|
380
|
+
main-image:
|
|
381
|
+
fileId: 62b720ef280c7a7a3be8cabe
|
|
382
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
383
|
+
image-gallery:
|
|
384
|
+
- fileId: 62b720ef280c7a7a3be8cabd
|
|
385
|
+
url: /files/62b720ef280c7a7a3be8cabd_image.png
|
|
386
|
+
- fileId: 62b720ef280c7a7a3be8cabe
|
|
387
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
388
|
+
intro-video: https://www.youtube.com/watch?v=aJ83KAggd-4
|
|
389
|
+
official-site: >-
|
|
390
|
+
https://hitchhikers.fandom.com/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy
|
|
391
|
+
contact-email: zaphod.beeblebrox@heartofgold.gov
|
|
392
|
+
support-phone: 424-242-4242
|
|
393
|
+
answer-to-everything: 42
|
|
394
|
+
release-date: '1979-10-12T00:00:00.000Z'
|
|
395
|
+
is-featured: true
|
|
396
|
+
brand-color: '#000000'
|
|
397
|
+
category: 62b720ef280c7a7a3be8cabf
|
|
398
|
+
author: 62b720ef280c7a7a3be8cab0
|
|
399
|
+
tags:
|
|
400
|
+
- 62b720ef280c7a7a3be8cab1
|
|
401
|
+
- 62b720ef280c7a7a3be8cab2
|
|
402
|
+
downloadable-asset:
|
|
403
|
+
fileId: 62b720ef280c7a7a3be8cab3
|
|
404
|
+
url: /files/62b720ef280c7a7a3be8cab3_document.pdf
|
|
339
405
|
- name: MultipleItems
|
|
340
406
|
path-parameters:
|
|
341
407
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
408
|
+
query-parameters:
|
|
409
|
+
skipInvalidFiles: true
|
|
342
410
|
request:
|
|
343
411
|
items:
|
|
344
412
|
- isArchived: false
|
|
@@ -373,7 +441,9 @@ service:
|
|
|
373
441
|
delete-items:
|
|
374
442
|
path: /collections/{collection_id}/items
|
|
375
443
|
method: DELETE
|
|
376
|
-
auth:
|
|
444
|
+
auth:
|
|
445
|
+
- OAuth2:
|
|
446
|
+
- cms:write
|
|
377
447
|
docs: >
|
|
378
448
|
Delete Items from a Collection.
|
|
379
449
|
|
|
@@ -412,7 +482,9 @@ service:
|
|
|
412
482
|
update-items:
|
|
413
483
|
path: /collections/{collection_id}/items
|
|
414
484
|
method: PATCH
|
|
415
|
-
auth:
|
|
485
|
+
auth:
|
|
486
|
+
- OAuth2:
|
|
487
|
+
- cms:write
|
|
416
488
|
docs: >
|
|
417
489
|
Update a single item or multiple items in a Collection.
|
|
418
490
|
|
|
@@ -459,6 +531,8 @@ service:
|
|
|
459
531
|
- name: LocalizedItems
|
|
460
532
|
path-parameters:
|
|
461
533
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
534
|
+
query-parameters:
|
|
535
|
+
skipInvalidFiles: true
|
|
462
536
|
request:
|
|
463
537
|
items:
|
|
464
538
|
- id: 66f6ed9576ddacf3149d5ea6
|
|
@@ -539,6 +613,8 @@ service:
|
|
|
539
613
|
- name: MultipleItems
|
|
540
614
|
path-parameters:
|
|
541
615
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
616
|
+
query-parameters:
|
|
617
|
+
skipInvalidFiles: true
|
|
542
618
|
request:
|
|
543
619
|
items:
|
|
544
620
|
- id: 580e64008c9a982ac9b8b754
|
|
@@ -591,7 +667,9 @@ service:
|
|
|
591
667
|
list-items-live:
|
|
592
668
|
path: /collections/{collection_id}/items/live
|
|
593
669
|
method: GET
|
|
594
|
-
auth:
|
|
670
|
+
auth:
|
|
671
|
+
- OAuth2:
|
|
672
|
+
- cms:read
|
|
595
673
|
docs: |
|
|
596
674
|
List all published items in a collection.
|
|
597
675
|
|
|
@@ -655,6 +733,14 @@ service:
|
|
|
655
733
|
examples:
|
|
656
734
|
- path-parameters:
|
|
657
735
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
736
|
+
query-parameters:
|
|
737
|
+
cmsLocaleId: cmsLocaleId
|
|
738
|
+
offset: 1.1
|
|
739
|
+
limit: 1.1
|
|
740
|
+
name: name
|
|
741
|
+
slug: slug
|
|
742
|
+
sortBy: lastPublished
|
|
743
|
+
sortOrder: asc
|
|
658
744
|
response:
|
|
659
745
|
body:
|
|
660
746
|
items:
|
|
@@ -689,7 +775,9 @@ service:
|
|
|
689
775
|
create-item-live:
|
|
690
776
|
path: /collections/{collection_id}/items/live
|
|
691
777
|
method: POST
|
|
692
|
-
auth:
|
|
778
|
+
auth:
|
|
779
|
+
- OAuth2:
|
|
780
|
+
- cms:write
|
|
693
781
|
docs: >
|
|
694
782
|
Create item(s) in a collection that will be immediately published to the
|
|
695
783
|
live site.
|
|
@@ -734,15 +822,44 @@ service:
|
|
|
734
822
|
- name: SingleItem
|
|
735
823
|
path-parameters:
|
|
736
824
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
825
|
+
query-parameters:
|
|
826
|
+
skipInvalidFiles: true
|
|
737
827
|
request:
|
|
738
828
|
isArchived: false
|
|
739
829
|
isDraft: false
|
|
740
830
|
fieldData:
|
|
741
|
-
name:
|
|
742
|
-
slug:
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
831
|
+
name: The Hitchhiker's Guide to the Galaxy
|
|
832
|
+
slug: hitchhikers-guide-to-the-galaxy
|
|
833
|
+
plain-text: Don't Panic.
|
|
834
|
+
rich-text: >-
|
|
835
|
+
<h3>A Guide to Interstellar Travel</h3><p>A towel is about the
|
|
836
|
+
most massively useful thing an interstellar hitchhiker can have.
|
|
837
|
+
<strong>Don't forget yours!</strong></p>
|
|
838
|
+
main-image:
|
|
839
|
+
fileId: 62b720ef280c7a7a3be8cabe
|
|
840
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
841
|
+
image-gallery:
|
|
842
|
+
- fileId: 62b720ef280c7a7a3be8cabd
|
|
843
|
+
url: /files/62b720ef280c7a7a3be8cabd_image.png
|
|
844
|
+
- fileId: 62b720ef280c7a7a3be8cabe
|
|
845
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
846
|
+
intro-video: https://www.youtube.com/watch?v=aJ83KAggd-4
|
|
847
|
+
official-site: >-
|
|
848
|
+
https://hitchhikers.fandom.com/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy
|
|
849
|
+
contact-email: zaphod.beeblebrox@heartofgold.gov
|
|
850
|
+
support-phone: 424-242-4242
|
|
851
|
+
answer-to-everything: 42
|
|
852
|
+
release-date: '1979-10-12T00:00:00.000Z'
|
|
853
|
+
is-featured: true
|
|
854
|
+
brand-color: '#000000'
|
|
855
|
+
category: 62b720ef280c7a7a3be8cabf
|
|
856
|
+
author: 62b720ef280c7a7a3be8cab0
|
|
857
|
+
tags:
|
|
858
|
+
- 62b720ef280c7a7a3be8cab1
|
|
859
|
+
- 62b720ef280c7a7a3be8cab2
|
|
860
|
+
downloadable-asset:
|
|
861
|
+
fileId: 62b720ef280c7a7a3be8cab3
|
|
862
|
+
url: /files/62b720ef280c7a7a3be8cab3_document.pdf
|
|
746
863
|
response:
|
|
747
864
|
body:
|
|
748
865
|
id: 42b720ef280c7a7a3be8cabe
|
|
@@ -753,14 +870,43 @@ service:
|
|
|
753
870
|
isArchived: false
|
|
754
871
|
isDraft: false
|
|
755
872
|
fieldData:
|
|
756
|
-
name:
|
|
757
|
-
slug:
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
873
|
+
name: The Hitchhiker's Guide to the Galaxy
|
|
874
|
+
slug: hitchhikers-guide-to-the-galaxy
|
|
875
|
+
plain-text: Don't Panic.
|
|
876
|
+
rich-text: >-
|
|
877
|
+
<h3>A Guide to Interstellar Travel</h3><p>A towel is about the
|
|
878
|
+
most massively useful thing an interstellar hitchhiker can
|
|
879
|
+
have. <strong>Don't forget yours!</strong></p>
|
|
880
|
+
main-image:
|
|
881
|
+
fileId: 62b720ef280c7a7a3be8cabe
|
|
882
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
883
|
+
image-gallery:
|
|
884
|
+
- fileId: 62b720ef280c7a7a3be8cabd
|
|
885
|
+
url: /files/62b720ef280c7a7a3be8cabd_image.png
|
|
886
|
+
- fileId: 62b720ef280c7a7a3be8cabe
|
|
887
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
888
|
+
intro-video: https://www.youtube.com/watch?v=aJ83KAggd-4
|
|
889
|
+
official-site: >-
|
|
890
|
+
https://hitchhikers.fandom.com/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy
|
|
891
|
+
contact-email: zaphod.beeblebrox@heartofgold.gov
|
|
892
|
+
support-phone: 424-242-4242
|
|
893
|
+
answer-to-everything: 42
|
|
894
|
+
release-date: '1979-10-12T00:00:00.000Z'
|
|
895
|
+
is-featured: true
|
|
896
|
+
brand-color: '#000000'
|
|
897
|
+
category: 62b720ef280c7a7a3be8cabf
|
|
898
|
+
author: 62b720ef280c7a7a3be8cab0
|
|
899
|
+
tags:
|
|
900
|
+
- 62b720ef280c7a7a3be8cab1
|
|
901
|
+
- 62b720ef280c7a7a3be8cab2
|
|
902
|
+
downloadable-asset:
|
|
903
|
+
fileId: 62b720ef280c7a7a3be8cab3
|
|
904
|
+
url: /files/62b720ef280c7a7a3be8cab3_document.pdf
|
|
761
905
|
- name: MultipleItems
|
|
762
906
|
path-parameters:
|
|
763
907
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
908
|
+
query-parameters:
|
|
909
|
+
skipInvalidFiles: true
|
|
764
910
|
request:
|
|
765
911
|
items:
|
|
766
912
|
- isArchived: false
|
|
@@ -787,15 +933,44 @@ service:
|
|
|
787
933
|
isArchived: false
|
|
788
934
|
isDraft: false
|
|
789
935
|
fieldData:
|
|
790
|
-
name:
|
|
791
|
-
slug:
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
936
|
+
name: The Hitchhiker's Guide to the Galaxy
|
|
937
|
+
slug: hitchhikers-guide-to-the-galaxy
|
|
938
|
+
plain-text: Don't Panic.
|
|
939
|
+
rich-text: >-
|
|
940
|
+
<h3>A Guide to Interstellar Travel</h3><p>A towel is about the
|
|
941
|
+
most massively useful thing an interstellar hitchhiker can
|
|
942
|
+
have. <strong>Don't forget yours!</strong></p>
|
|
943
|
+
main-image:
|
|
944
|
+
fileId: 62b720ef280c7a7a3be8cabe
|
|
945
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
946
|
+
image-gallery:
|
|
947
|
+
- fileId: 62b720ef280c7a7a3be8cabd
|
|
948
|
+
url: /files/62b720ef280c7a7a3be8cabd_image.png
|
|
949
|
+
- fileId: 62b720ef280c7a7a3be8cabe
|
|
950
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
951
|
+
intro-video: https://www.youtube.com/watch?v=aJ83KAggd-4
|
|
952
|
+
official-site: >-
|
|
953
|
+
https://hitchhikers.fandom.com/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy
|
|
954
|
+
contact-email: zaphod.beeblebrox@heartofgold.gov
|
|
955
|
+
support-phone: 424-242-4242
|
|
956
|
+
answer-to-everything: 42
|
|
957
|
+
release-date: '1979-10-12T00:00:00.000Z'
|
|
958
|
+
is-featured: true
|
|
959
|
+
brand-color: '#000000'
|
|
960
|
+
category: 62b720ef280c7a7a3be8cabf
|
|
961
|
+
author: 62b720ef280c7a7a3be8cab0
|
|
962
|
+
tags:
|
|
963
|
+
- 62b720ef280c7a7a3be8cab1
|
|
964
|
+
- 62b720ef280c7a7a3be8cab2
|
|
965
|
+
downloadable-asset:
|
|
966
|
+
fileId: 62b720ef280c7a7a3be8cab3
|
|
967
|
+
url: /files/62b720ef280c7a7a3be8cab3_document.pdf
|
|
795
968
|
delete-items-live:
|
|
796
969
|
path: /collections/{collection_id}/items/live
|
|
797
970
|
method: DELETE
|
|
798
|
-
auth:
|
|
971
|
+
auth:
|
|
972
|
+
- OAuth2:
|
|
973
|
+
- cms:write
|
|
799
974
|
docs: >
|
|
800
975
|
Unpublish up to 100 items from the live site and set the `isDraft`
|
|
801
976
|
property to `true`.
|
|
@@ -834,7 +1009,9 @@ service:
|
|
|
834
1009
|
update-items-live:
|
|
835
1010
|
path: /collections/{collection_id}/items/live
|
|
836
1011
|
method: PATCH
|
|
837
|
-
auth:
|
|
1012
|
+
auth:
|
|
1013
|
+
- OAuth2:
|
|
1014
|
+
- cms:write
|
|
838
1015
|
docs: >
|
|
839
1016
|
Update a single published item or multiple published items (up to 100)
|
|
840
1017
|
in a Collection
|
|
@@ -880,6 +1057,8 @@ service:
|
|
|
880
1057
|
- name: LocalizedItems
|
|
881
1058
|
path-parameters:
|
|
882
1059
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
1060
|
+
query-parameters:
|
|
1061
|
+
skipInvalidFiles: true
|
|
883
1062
|
request:
|
|
884
1063
|
items:
|
|
885
1064
|
- id: 66f6ed9576ddacf3149d5ea6
|
|
@@ -956,6 +1135,8 @@ service:
|
|
|
956
1135
|
- name: MultipleItems
|
|
957
1136
|
path-parameters:
|
|
958
1137
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
1138
|
+
query-parameters:
|
|
1139
|
+
skipInvalidFiles: true
|
|
959
1140
|
request:
|
|
960
1141
|
items:
|
|
961
1142
|
- id: 580e64008c9a982ac9b8b754
|
|
@@ -1024,6 +1205,8 @@ service:
|
|
|
1024
1205
|
- name: Multiple items updated across multiple locales
|
|
1025
1206
|
path-parameters:
|
|
1026
1207
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
1208
|
+
query-parameters:
|
|
1209
|
+
skipInvalidFiles: true
|
|
1027
1210
|
request:
|
|
1028
1211
|
items:
|
|
1029
1212
|
- id: 66f6ed9576ddacf3149d5ea6
|
|
@@ -1100,6 +1283,8 @@ service:
|
|
|
1100
1283
|
- name: Multiple items updated in a single locale
|
|
1101
1284
|
path-parameters:
|
|
1102
1285
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
1286
|
+
query-parameters:
|
|
1287
|
+
skipInvalidFiles: true
|
|
1103
1288
|
request:
|
|
1104
1289
|
items:
|
|
1105
1290
|
- id: 66f6ed9576ddacf3149d5ea6
|
|
@@ -1156,7 +1341,9 @@ service:
|
|
|
1156
1341
|
create-items:
|
|
1157
1342
|
path: /collections/{collection_id}/items/bulk
|
|
1158
1343
|
method: POST
|
|
1159
|
-
auth:
|
|
1344
|
+
auth:
|
|
1345
|
+
- OAuth2:
|
|
1346
|
+
- cms:write
|
|
1160
1347
|
docs: >
|
|
1161
1348
|
Create an item or multiple items in a CMS Collection across multiple
|
|
1162
1349
|
corresponding locales.
|
|
@@ -1216,6 +1403,8 @@ service:
|
|
|
1216
1403
|
- name: Create a single item across multiple locales
|
|
1217
1404
|
path-parameters:
|
|
1218
1405
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
1406
|
+
query-parameters:
|
|
1407
|
+
skipInvalidFiles: true
|
|
1219
1408
|
request:
|
|
1220
1409
|
cmsLocaleIds:
|
|
1221
1410
|
- 66f6e966c9e1dc700a857ca3
|
|
@@ -1247,6 +1436,8 @@ service:
|
|
|
1247
1436
|
- name: Create multiple items across multiple locales
|
|
1248
1437
|
path-parameters:
|
|
1249
1438
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
1439
|
+
query-parameters:
|
|
1440
|
+
skipInvalidFiles: true
|
|
1250
1441
|
request:
|
|
1251
1442
|
cmsLocaleIds:
|
|
1252
1443
|
- 66f6e966c9e1dc700a857ca3
|
|
@@ -1279,6 +1470,8 @@ service:
|
|
|
1279
1470
|
- name: Single item created across multiple locales
|
|
1280
1471
|
path-parameters:
|
|
1281
1472
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
1473
|
+
query-parameters:
|
|
1474
|
+
skipInvalidFiles: true
|
|
1282
1475
|
request:
|
|
1283
1476
|
cmsLocaleIds:
|
|
1284
1477
|
- 66f6e966c9e1dc700a857ca3
|
|
@@ -1310,6 +1503,8 @@ service:
|
|
|
1310
1503
|
- name: Multiple items created across multiple locales
|
|
1311
1504
|
path-parameters:
|
|
1312
1505
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
1506
|
+
query-parameters:
|
|
1507
|
+
skipInvalidFiles: true
|
|
1313
1508
|
request:
|
|
1314
1509
|
cmsLocaleIds:
|
|
1315
1510
|
- 66f6e966c9e1dc700a857ca3
|
|
@@ -1341,7 +1536,9 @@ service:
|
|
|
1341
1536
|
get-item:
|
|
1342
1537
|
path: /collections/{collection_id}/items/{item_id}
|
|
1343
1538
|
method: GET
|
|
1344
|
-
auth:
|
|
1539
|
+
auth:
|
|
1540
|
+
- OAuth2:
|
|
1541
|
+
- cms:read
|
|
1345
1542
|
docs: |
|
|
1346
1543
|
Get details of a selected Collection Item.
|
|
1347
1544
|
|
|
@@ -1370,7 +1567,6 @@ service:
|
|
|
1370
1567
|
docs: Request was successful
|
|
1371
1568
|
type: root.CollectionItem
|
|
1372
1569
|
status-code: 200
|
|
1373
|
-
url: Production
|
|
1374
1570
|
errors:
|
|
1375
1571
|
- root.BadRequestError
|
|
1376
1572
|
- root.UnauthorizedError
|
|
@@ -1381,6 +1577,8 @@ service:
|
|
|
1381
1577
|
- path-parameters:
|
|
1382
1578
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
1383
1579
|
item_id: 580e64008c9a982ac9b8b754
|
|
1580
|
+
query-parameters:
|
|
1581
|
+
cmsLocaleId: cmsLocaleId
|
|
1384
1582
|
response:
|
|
1385
1583
|
body:
|
|
1386
1584
|
id: 42b720ef280c7a7a3be8cabe
|
|
@@ -1391,15 +1589,44 @@ service:
|
|
|
1391
1589
|
isArchived: false
|
|
1392
1590
|
isDraft: false
|
|
1393
1591
|
fieldData:
|
|
1394
|
-
name:
|
|
1395
|
-
slug:
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1592
|
+
name: The Hitchhiker's Guide to the Galaxy
|
|
1593
|
+
slug: hitchhikers-guide-to-the-galaxy
|
|
1594
|
+
plain-text: Don't Panic.
|
|
1595
|
+
rich-text: >-
|
|
1596
|
+
<h3>A Guide to Interstellar Travel</h3><p>A towel is about the
|
|
1597
|
+
most massively useful thing an interstellar hitchhiker can
|
|
1598
|
+
have. <strong>Don't forget yours!</strong></p>
|
|
1599
|
+
main-image:
|
|
1600
|
+
fileId: 62b720ef280c7a7a3be8cabe
|
|
1601
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
1602
|
+
image-gallery:
|
|
1603
|
+
- fileId: 62b720ef280c7a7a3be8cabd
|
|
1604
|
+
url: /files/62b720ef280c7a7a3be8cabd_image.png
|
|
1605
|
+
- fileId: 62b720ef280c7a7a3be8cabe
|
|
1606
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
1607
|
+
intro-video: https://www.youtube.com/watch?v=aJ83KAggd-4
|
|
1608
|
+
official-site: >-
|
|
1609
|
+
https://hitchhikers.fandom.com/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy
|
|
1610
|
+
contact-email: zaphod.beeblebrox@heartofgold.gov
|
|
1611
|
+
support-phone: 424-242-4242
|
|
1612
|
+
answer-to-everything: 42
|
|
1613
|
+
release-date: '1979-10-12T00:00:00.000Z'
|
|
1614
|
+
is-featured: true
|
|
1615
|
+
brand-color: '#000000'
|
|
1616
|
+
category: 62b720ef280c7a7a3be8cabf
|
|
1617
|
+
author: 62b720ef280c7a7a3be8cab0
|
|
1618
|
+
tags:
|
|
1619
|
+
- 62b720ef280c7a7a3be8cab1
|
|
1620
|
+
- 62b720ef280c7a7a3be8cab2
|
|
1621
|
+
downloadable-asset:
|
|
1622
|
+
fileId: 62b720ef280c7a7a3be8cab3
|
|
1623
|
+
url: /files/62b720ef280c7a7a3be8cab3_document.pdf
|
|
1399
1624
|
delete-item:
|
|
1400
1625
|
path: /collections/{collection_id}/items/{item_id}
|
|
1401
1626
|
method: DELETE
|
|
1402
|
-
auth:
|
|
1627
|
+
auth:
|
|
1628
|
+
- OAuth2:
|
|
1629
|
+
- cms:write
|
|
1403
1630
|
docs: |
|
|
1404
1631
|
Delete an item from a collection.
|
|
1405
1632
|
|
|
@@ -1434,10 +1661,14 @@ service:
|
|
|
1434
1661
|
- path-parameters:
|
|
1435
1662
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
1436
1663
|
item_id: 580e64008c9a982ac9b8b754
|
|
1664
|
+
query-parameters:
|
|
1665
|
+
cmsLocaleId: cmsLocaleId
|
|
1437
1666
|
update-item:
|
|
1438
1667
|
path: /collections/{collection_id}/items/{item_id}
|
|
1439
1668
|
method: PATCH
|
|
1440
|
-
auth:
|
|
1669
|
+
auth:
|
|
1670
|
+
- OAuth2:
|
|
1671
|
+
- cms:write
|
|
1441
1672
|
docs: |
|
|
1442
1673
|
Update a selected Item in a Collection.
|
|
1443
1674
|
|
|
@@ -1477,15 +1708,44 @@ service:
|
|
|
1477
1708
|
- path-parameters:
|
|
1478
1709
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
1479
1710
|
item_id: 580e64008c9a982ac9b8b754
|
|
1711
|
+
query-parameters:
|
|
1712
|
+
skipInvalidFiles: true
|
|
1480
1713
|
request:
|
|
1481
1714
|
isArchived: false
|
|
1482
1715
|
isDraft: false
|
|
1483
1716
|
fieldData:
|
|
1484
|
-
name:
|
|
1485
|
-
slug:
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1717
|
+
name: The Hitchhiker's Guide to the Galaxy
|
|
1718
|
+
slug: hitchhikers-guide-to-the-galaxy
|
|
1719
|
+
plain-text: Don't Panic.
|
|
1720
|
+
rich-text: >-
|
|
1721
|
+
<h3>A Guide to Interstellar Travel</h3><p>A towel is about the
|
|
1722
|
+
most massively useful thing an interstellar hitchhiker can have.
|
|
1723
|
+
<strong>Don't forget yours!</strong></p>
|
|
1724
|
+
main-image:
|
|
1725
|
+
fileId: 62b720ef280c7a7a3be8cabe
|
|
1726
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
1727
|
+
image-gallery:
|
|
1728
|
+
- fileId: 62b720ef280c7a7a3be8cabd
|
|
1729
|
+
url: /files/62b720ef280c7a7a3be8cabd_image.png
|
|
1730
|
+
- fileId: 62b720ef280c7a7a3be8cabe
|
|
1731
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
1732
|
+
intro-video: https://www.youtube.com/watch?v=aJ83KAggd-4
|
|
1733
|
+
official-site: >-
|
|
1734
|
+
https://hitchhikers.fandom.com/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy
|
|
1735
|
+
contact-email: zaphod.beeblebrox@heartofgold.gov
|
|
1736
|
+
support-phone: 424-242-4242
|
|
1737
|
+
answer-to-everything: 42
|
|
1738
|
+
release-date: '1979-10-12T00:00:00.000Z'
|
|
1739
|
+
is-featured: true
|
|
1740
|
+
brand-color: '#000000'
|
|
1741
|
+
category: 62b720ef280c7a7a3be8cabf
|
|
1742
|
+
author: 62b720ef280c7a7a3be8cab0
|
|
1743
|
+
tags:
|
|
1744
|
+
- 62b720ef280c7a7a3be8cab1
|
|
1745
|
+
- 62b720ef280c7a7a3be8cab2
|
|
1746
|
+
downloadable-asset:
|
|
1747
|
+
fileId: 62b720ef280c7a7a3be8cab3
|
|
1748
|
+
url: /files/62b720ef280c7a7a3be8cab3_document.pdf
|
|
1489
1749
|
response:
|
|
1490
1750
|
body:
|
|
1491
1751
|
id: 42b720ef280c7a7a3be8cabe
|
|
@@ -1496,15 +1756,44 @@ service:
|
|
|
1496
1756
|
isArchived: false
|
|
1497
1757
|
isDraft: false
|
|
1498
1758
|
fieldData:
|
|
1499
|
-
name:
|
|
1500
|
-
slug:
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1759
|
+
name: The Hitchhiker's Guide to the Galaxy
|
|
1760
|
+
slug: hitchhikers-guide-to-the-galaxy
|
|
1761
|
+
plain-text: Don't Panic.
|
|
1762
|
+
rich-text: >-
|
|
1763
|
+
<h3>A Guide to Interstellar Travel</h3><p>A towel is about the
|
|
1764
|
+
most massively useful thing an interstellar hitchhiker can
|
|
1765
|
+
have. <strong>Don't forget yours!</strong></p>
|
|
1766
|
+
main-image:
|
|
1767
|
+
fileId: 62b720ef280c7a7a3be8cabe
|
|
1768
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
1769
|
+
image-gallery:
|
|
1770
|
+
- fileId: 62b720ef280c7a7a3be8cabd
|
|
1771
|
+
url: /files/62b720ef280c7a7a3be8cabd_image.png
|
|
1772
|
+
- fileId: 62b720ef280c7a7a3be8cabe
|
|
1773
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
1774
|
+
intro-video: https://www.youtube.com/watch?v=aJ83KAggd-4
|
|
1775
|
+
official-site: >-
|
|
1776
|
+
https://hitchhikers.fandom.com/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy
|
|
1777
|
+
contact-email: zaphod.beeblebrox@heartofgold.gov
|
|
1778
|
+
support-phone: 424-242-4242
|
|
1779
|
+
answer-to-everything: 42
|
|
1780
|
+
release-date: '1979-10-12T00:00:00.000Z'
|
|
1781
|
+
is-featured: true
|
|
1782
|
+
brand-color: '#000000'
|
|
1783
|
+
category: 62b720ef280c7a7a3be8cabf
|
|
1784
|
+
author: 62b720ef280c7a7a3be8cab0
|
|
1785
|
+
tags:
|
|
1786
|
+
- 62b720ef280c7a7a3be8cab1
|
|
1787
|
+
- 62b720ef280c7a7a3be8cab2
|
|
1788
|
+
downloadable-asset:
|
|
1789
|
+
fileId: 62b720ef280c7a7a3be8cab3
|
|
1790
|
+
url: /files/62b720ef280c7a7a3be8cab3_document.pdf
|
|
1504
1791
|
get-item-live:
|
|
1505
1792
|
path: /collections/{collection_id}/items/{item_id}/live
|
|
1506
1793
|
method: GET
|
|
1507
|
-
auth:
|
|
1794
|
+
auth:
|
|
1795
|
+
- OAuth2:
|
|
1796
|
+
- cms:read
|
|
1508
1797
|
docs: |
|
|
1509
1798
|
Get details of a selected Collection live Item.
|
|
1510
1799
|
|
|
@@ -1549,6 +1838,8 @@ service:
|
|
|
1549
1838
|
- path-parameters:
|
|
1550
1839
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
1551
1840
|
item_id: 580e64008c9a982ac9b8b754
|
|
1841
|
+
query-parameters:
|
|
1842
|
+
cmsLocaleId: cmsLocaleId
|
|
1552
1843
|
response:
|
|
1553
1844
|
body:
|
|
1554
1845
|
id: 42b720ef280c7a7a3be8cabe
|
|
@@ -1559,15 +1850,44 @@ service:
|
|
|
1559
1850
|
isArchived: false
|
|
1560
1851
|
isDraft: false
|
|
1561
1852
|
fieldData:
|
|
1562
|
-
name:
|
|
1563
|
-
slug:
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1853
|
+
name: The Hitchhiker's Guide to the Galaxy
|
|
1854
|
+
slug: hitchhikers-guide-to-the-galaxy
|
|
1855
|
+
plain-text: Don't Panic.
|
|
1856
|
+
rich-text: >-
|
|
1857
|
+
<h3>A Guide to Interstellar Travel</h3><p>A towel is about the
|
|
1858
|
+
most massively useful thing an interstellar hitchhiker can
|
|
1859
|
+
have. <strong>Don't forget yours!</strong></p>
|
|
1860
|
+
main-image:
|
|
1861
|
+
fileId: 62b720ef280c7a7a3be8cabe
|
|
1862
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
1863
|
+
image-gallery:
|
|
1864
|
+
- fileId: 62b720ef280c7a7a3be8cabd
|
|
1865
|
+
url: /files/62b720ef280c7a7a3be8cabd_image.png
|
|
1866
|
+
- fileId: 62b720ef280c7a7a3be8cabe
|
|
1867
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
1868
|
+
intro-video: https://www.youtube.com/watch?v=aJ83KAggd-4
|
|
1869
|
+
official-site: >-
|
|
1870
|
+
https://hitchhikers.fandom.com/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy
|
|
1871
|
+
contact-email: zaphod.beeblebrox@heartofgold.gov
|
|
1872
|
+
support-phone: 424-242-4242
|
|
1873
|
+
answer-to-everything: 42
|
|
1874
|
+
release-date: '1979-10-12T00:00:00.000Z'
|
|
1875
|
+
is-featured: true
|
|
1876
|
+
brand-color: '#000000'
|
|
1877
|
+
category: 62b720ef280c7a7a3be8cabf
|
|
1878
|
+
author: 62b720ef280c7a7a3be8cab0
|
|
1879
|
+
tags:
|
|
1880
|
+
- 62b720ef280c7a7a3be8cab1
|
|
1881
|
+
- 62b720ef280c7a7a3be8cab2
|
|
1882
|
+
downloadable-asset:
|
|
1883
|
+
fileId: 62b720ef280c7a7a3be8cab3
|
|
1884
|
+
url: /files/62b720ef280c7a7a3be8cab3_document.pdf
|
|
1567
1885
|
delete-item-live:
|
|
1568
1886
|
path: /collections/{collection_id}/items/{item_id}/live
|
|
1569
1887
|
method: DELETE
|
|
1570
|
-
auth:
|
|
1888
|
+
auth:
|
|
1889
|
+
- OAuth2:
|
|
1890
|
+
- cms:write
|
|
1571
1891
|
docs: >
|
|
1572
1892
|
Unpublish a live item from the site and set the `isDraft` property to
|
|
1573
1893
|
`true`.
|
|
@@ -1608,10 +1928,14 @@ service:
|
|
|
1608
1928
|
- path-parameters:
|
|
1609
1929
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
1610
1930
|
item_id: 580e64008c9a982ac9b8b754
|
|
1931
|
+
query-parameters:
|
|
1932
|
+
cmsLocaleId: cmsLocaleId
|
|
1611
1933
|
update-item-live:
|
|
1612
1934
|
path: /collections/{collection_id}/items/{item_id}/live
|
|
1613
1935
|
method: PATCH
|
|
1614
|
-
auth:
|
|
1936
|
+
auth:
|
|
1937
|
+
- OAuth2:
|
|
1938
|
+
- cms:write
|
|
1615
1939
|
docs: >
|
|
1616
1940
|
Update a selected live Item in a Collection. The updates for this Item
|
|
1617
1941
|
will be published to the live site.
|
|
@@ -1654,15 +1978,44 @@ service:
|
|
|
1654
1978
|
- path-parameters:
|
|
1655
1979
|
collection_id: 580e63fc8c9a982ac9b8b745
|
|
1656
1980
|
item_id: 580e64008c9a982ac9b8b754
|
|
1981
|
+
query-parameters:
|
|
1982
|
+
skipInvalidFiles: true
|
|
1657
1983
|
request:
|
|
1658
1984
|
isArchived: false
|
|
1659
1985
|
isDraft: false
|
|
1660
1986
|
fieldData:
|
|
1661
|
-
name:
|
|
1662
|
-
slug:
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1987
|
+
name: The Hitchhiker's Guide to the Galaxy
|
|
1988
|
+
slug: hitchhikers-guide-to-the-galaxy
|
|
1989
|
+
plain-text: Don't Panic.
|
|
1990
|
+
rich-text: >-
|
|
1991
|
+
<h3>A Guide to Interstellar Travel</h3><p>A towel is about the
|
|
1992
|
+
most massively useful thing an interstellar hitchhiker can have.
|
|
1993
|
+
<strong>Don't forget yours!</strong></p>
|
|
1994
|
+
main-image:
|
|
1995
|
+
fileId: 62b720ef280c7a7a3be8cabe
|
|
1996
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
1997
|
+
image-gallery:
|
|
1998
|
+
- fileId: 62b720ef280c7a7a3be8cabd
|
|
1999
|
+
url: /files/62b720ef280c7a7a3be8cabd_image.png
|
|
2000
|
+
- fileId: 62b720ef280c7a7a3be8cabe
|
|
2001
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
2002
|
+
intro-video: https://www.youtube.com/watch?v=aJ83KAggd-4
|
|
2003
|
+
official-site: >-
|
|
2004
|
+
https://hitchhikers.fandom.com/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy
|
|
2005
|
+
contact-email: zaphod.beeblebrox@heartofgold.gov
|
|
2006
|
+
support-phone: 424-242-4242
|
|
2007
|
+
answer-to-everything: 42
|
|
2008
|
+
release-date: '1979-10-12T00:00:00.000Z'
|
|
2009
|
+
is-featured: true
|
|
2010
|
+
brand-color: '#000000'
|
|
2011
|
+
category: 62b720ef280c7a7a3be8cabf
|
|
2012
|
+
author: 62b720ef280c7a7a3be8cab0
|
|
2013
|
+
tags:
|
|
2014
|
+
- 62b720ef280c7a7a3be8cab1
|
|
2015
|
+
- 62b720ef280c7a7a3be8cab2
|
|
2016
|
+
downloadable-asset:
|
|
2017
|
+
fileId: 62b720ef280c7a7a3be8cab3
|
|
2018
|
+
url: /files/62b720ef280c7a7a3be8cab3_document.pdf
|
|
1666
2019
|
response:
|
|
1667
2020
|
body:
|
|
1668
2021
|
id: 42b720ef280c7a7a3be8cabe
|
|
@@ -1673,15 +2026,44 @@ service:
|
|
|
1673
2026
|
isArchived: false
|
|
1674
2027
|
isDraft: false
|
|
1675
2028
|
fieldData:
|
|
1676
|
-
name:
|
|
1677
|
-
slug:
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
2029
|
+
name: The Hitchhiker's Guide to the Galaxy
|
|
2030
|
+
slug: hitchhikers-guide-to-the-galaxy
|
|
2031
|
+
plain-text: Don't Panic.
|
|
2032
|
+
rich-text: >-
|
|
2033
|
+
<h3>A Guide to Interstellar Travel</h3><p>A towel is about the
|
|
2034
|
+
most massively useful thing an interstellar hitchhiker can
|
|
2035
|
+
have. <strong>Don't forget yours!</strong></p>
|
|
2036
|
+
main-image:
|
|
2037
|
+
fileId: 62b720ef280c7a7a3be8cabe
|
|
2038
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
2039
|
+
image-gallery:
|
|
2040
|
+
- fileId: 62b720ef280c7a7a3be8cabd
|
|
2041
|
+
url: /files/62b720ef280c7a7a3be8cabd_image.png
|
|
2042
|
+
- fileId: 62b720ef280c7a7a3be8cabe
|
|
2043
|
+
url: /files/62b720ef280c7a7a3be8cabe_image.png
|
|
2044
|
+
intro-video: https://www.youtube.com/watch?v=aJ83KAggd-4
|
|
2045
|
+
official-site: >-
|
|
2046
|
+
https://hitchhikers.fandom.com/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy
|
|
2047
|
+
contact-email: zaphod.beeblebrox@heartofgold.gov
|
|
2048
|
+
support-phone: 424-242-4242
|
|
2049
|
+
answer-to-everything: 42
|
|
2050
|
+
release-date: '1979-10-12T00:00:00.000Z'
|
|
2051
|
+
is-featured: true
|
|
2052
|
+
brand-color: '#000000'
|
|
2053
|
+
category: 62b720ef280c7a7a3be8cabf
|
|
2054
|
+
author: 62b720ef280c7a7a3be8cab0
|
|
2055
|
+
tags:
|
|
2056
|
+
- 62b720ef280c7a7a3be8cab1
|
|
2057
|
+
- 62b720ef280c7a7a3be8cab2
|
|
2058
|
+
downloadable-asset:
|
|
2059
|
+
fileId: 62b720ef280c7a7a3be8cab3
|
|
2060
|
+
url: /files/62b720ef280c7a7a3be8cab3_document.pdf
|
|
1681
2061
|
publish-item:
|
|
1682
2062
|
path: /collections/{collection_id}/items/publish
|
|
1683
2063
|
method: POST
|
|
1684
|
-
auth:
|
|
2064
|
+
auth:
|
|
2065
|
+
- OAuth2:
|
|
2066
|
+
- cms:write
|
|
1685
2067
|
docs: |
|
|
1686
2068
|
Publish an item or multiple items.
|
|
1687
2069
|
|