webflow-api 3.2.0 → 3.2.2
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 +132 -289
- package/.mock/definition/accessGroups.yml +17 -4
- package/.mock/definition/api.yml +0 -2
- package/.mock/definition/assets.yml +41 -8
- package/.mock/definition/collections/fields.yml +9 -3
- package/.mock/definition/collections/items.yml +468 -88
- package/.mock/definition/collections.yml +15 -4
- package/.mock/definition/comments.yml +1 -0
- package/.mock/definition/components.yml +75 -31
- package/.mock/definition/ecommerce.yml +3 -1
- package/.mock/definition/forms.yml +35 -86
- package/.mock/definition/inventory.yml +25 -17
- package/.mock/definition/items.yml +29 -16
- package/.mock/definition/orders.yml +206 -112
- package/.mock/definition/pages/scripts.yml +27 -8
- package/.mock/definition/pages.yml +79 -49
- package/.mock/definition/products.yml +23 -14
- package/.mock/definition/scripts.yml +14 -4
- package/.mock/definition/sites/activityLogs.yml +12 -3
- package/.mock/definition/sites/comments.yml +47 -18
- package/.mock/definition/sites/forms.yml +316 -0
- 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 +38 -10
- package/.mock/definition/sites/wellKnown.yml +20 -4
- package/.mock/definition/sites.yml +47 -8
- package/.mock/definition/token.yml +3 -2
- package/.mock/definition/users.yml +83 -17
- package/.mock/definition/webhooks.yml +4 -4
- package/.mock/definition/workspaces/auditLogs.yml +11 -5
- package/.mock/fern.config.json +1 -1
- package/Client.d.ts +2 -2
- package/Client.js +3 -3
- package/LICENSE +21 -0
- package/api/resources/accessGroups/client/Client.d.ts +10 -4
- package/api/resources/accessGroups/client/Client.js +13 -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 +59 -25
- package/api/resources/collections/resources/items/client/Client.js +63 -25
- 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 +11 -30
- package/api/resources/forms/client/Client.js +14 -129
- package/api/resources/forms/client/requests/FormsListRequest.d.ts +4 -1
- package/api/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +4 -1
- package/api/resources/forms/client/requests/index.d.ts +0 -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 +6 -3
- package/api/resources/sites/client/Client.js +11 -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/forms/client/Client.d.ts +157 -0
- package/api/resources/sites/resources/forms/client/Client.js +662 -0
- package/api/resources/sites/resources/forms/client/index.d.ts +2 -0
- package/api/resources/sites/resources/forms/client/index.js +17 -0
- package/api/resources/{forms → sites/resources/forms}/client/requests/FormsListSubmissionsBySiteRequest.d.ts +3 -1
- package/api/resources/sites/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +20 -0
- package/api/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.d.ts +11 -0
- package/api/resources/sites/resources/forms/client/requests/index.d.ts +3 -0
- package/api/resources/sites/resources/forms/client/requests/index.js +2 -0
- package/api/resources/sites/resources/forms/index.d.ts +1 -0
- package/api/resources/sites/resources/forms/index.js +17 -0
- 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 +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 +18 -4
- package/api/resources/users/client/Client.js +21 -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/{dist/api/types/ImageNodeDom.d.ts → api/types/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/{dist/api/types/SelectNodeDom.d.ts → api/types/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/api/types/{SubmitButton.d.ts → SubmitButtonNodeWrite.d.ts} +1 -1
- package/api/types/{TextInputNodeDom.d.ts → 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 +10 -4
- package/dist/api/resources/accessGroups/client/Client.js +13 -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 +59 -25
- package/dist/api/resources/collections/resources/items/client/Client.js +63 -25
- 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 +11 -30
- package/dist/api/resources/forms/client/Client.js +14 -129
- package/dist/api/resources/forms/client/requests/FormsListRequest.d.ts +4 -1
- package/dist/api/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +4 -1
- package/dist/api/resources/forms/client/requests/index.d.ts +0 -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 +6 -3
- package/dist/api/resources/sites/client/Client.js +11 -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/forms/client/Client.d.ts +157 -0
- package/dist/api/resources/sites/resources/forms/client/Client.js +662 -0
- package/dist/api/resources/sites/resources/forms/client/index.d.ts +2 -0
- package/dist/api/resources/sites/resources/forms/client/index.js +17 -0
- package/dist/api/resources/{forms → sites/resources/forms}/client/requests/FormsListSubmissionsBySiteRequest.d.ts +3 -1
- package/dist/api/resources/sites/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +20 -0
- package/dist/api/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.d.ts +11 -0
- package/dist/api/resources/sites/resources/forms/client/requests/index.d.ts +3 -0
- package/dist/api/resources/sites/resources/forms/client/requests/index.js +2 -0
- package/dist/api/resources/sites/resources/forms/index.d.ts +1 -0
- package/dist/api/resources/sites/resources/forms/index.js +17 -0
- 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 +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 +18 -4
- package/dist/api/resources/users/client/Client.js +21 -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/{api/types/ImageNodeDom.d.ts → dist/api/types/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/{api/types/SelectNodeDom.d.ts → dist/api/types/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/dist/api/types/{SubmitButton.d.ts → SubmitButtonNodeWrite.d.ts} +1 -1
- package/dist/api/types/{TextInputNodeDom.d.ts → 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/resources/sites/resources/forms/client/index.d.ts +1 -0
- package/dist/serialization/resources/sites/resources/forms/client/index.js +17 -0
- package/dist/serialization/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.d.ts +12 -0
- package/dist/serialization/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.js +43 -0
- package/dist/serialization/resources/sites/resources/forms/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/sites/resources/forms/client/requests/index.js +5 -0
- package/dist/serialization/resources/sites/resources/forms/index.d.ts +1 -0
- package/dist/serialization/resources/sites/resources/forms/index.js +17 -0
- package/dist/serialization/resources/sites/resources/index.d.ts +2 -0
- package/dist/serialization/resources/sites/resources/index.js +3 -1
- 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/dist/serialization/types/{SelectNodeDom.d.ts → 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/dist/wrapper/FormsClient.d.ts +37 -0
- package/dist/wrapper/FormsClient.js +193 -0
- package/dist/wrapper/ItemsClient.js +18 -14
- package/dist/wrapper/PagesClient.js +6 -5
- package/dist/wrapper/WebflowClient.d.ts +3 -0
- package/dist/wrapper/WebflowClient.js +6 -5
- package/environments.d.ts +0 -4
- package/environments.js +0 -2
- package/jest.config.mjs +25 -8
- package/package.json +3 -2
- package/reference.md +574 -137
- 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/resources/sites/resources/forms/client/index.d.ts +1 -0
- package/serialization/resources/sites/resources/forms/client/index.js +17 -0
- package/serialization/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.d.ts +12 -0
- package/serialization/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.js +43 -0
- package/serialization/resources/sites/resources/forms/client/requests/index.d.ts +1 -0
- package/serialization/resources/sites/resources/forms/client/requests/index.js +5 -0
- package/serialization/resources/sites/resources/forms/index.d.ts +1 -0
- package/serialization/resources/sites/resources/forms/index.js +17 -0
- package/serialization/resources/sites/resources/index.d.ts +2 -0
- package/serialization/resources/sites/resources/index.js +3 -1
- 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/serialization/types/{SelectNodeDom.d.ts → 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/wrapper/FormsClient.d.ts +37 -0
- package/wrapper/FormsClient.js +193 -0
- package/wrapper/ItemsClient.js +18 -14
- package/wrapper/PagesClient.js +6 -5
- package/wrapper/WebflowClient.d.ts +3 -0
- package/wrapper/WebflowClient.js +6 -5
- 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/TextNodeDom.d.ts +0 -15
- 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/resources/{forms/client/requests/FormsListSubmissionsBySiteRequest.js → assets/client/requests/AssetsListRequest.js} +0 -0
- /package/{dist/api → api/resources/sites}/resources/forms/client/requests/FormsListSubmissionsBySiteRequest.js +0 -0
- /package/api/{types/CollectionItemChangedPayload.js → resources/sites/resources/forms/client/requests/FormsListSubmissionsRequest.js} +0 -0
- /package/api/{types/CollectionItemCreatedPayload.js → resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.js} +0 -0
- /package/api/types/{ComponentInstance.js → CollectionItemPublished.js} +0 -0
- /package/api/types/{ComponentNodeDom.js → ComponentInstanceNodePropertyOverridesWrite.js} +0 -0
- /package/api/types/{ImageNodeDom.js → ComponentNode.js} +0 -0
- /package/api/types/{LocalizedItem.js → ImageNode.js} +0 -0
- /package/api/types/{MultiLocaleChangedPayload.js → Payload.js} +0 -0
- /package/api/types/{MultiLocaleChangedPayloadFieldData.js → PayloadFieldData.js} +0 -0
- /package/api/types/{MultiLocaleCreatedPayload.js → SearchButtonNode.js} +0 -0
- /package/api/types/{SearchButton.js → SearchButtonNodeWrite.js} +0 -0
- /package/api/types/{SearchButtonNodeDom.js → SelectNode.js} +0 -0
- /package/api/types/{SelectNodeDom.js → SubmitButtonNode.js} +0 -0
- /package/api/types/{SingleLocaleChangedPayload.js → SubmitButtonNodeWrite.js} +0 -0
- /package/api/types/{SingleLocaleChangedPayloadFieldData.js → TextInputNode.js} +0 -0
- /package/api/types/{SubmitButton.js → TextInputNodeWrite.js} +0 -0
- /package/api/types/{SubmitButtonNodeDom.js → TextNodeWrite.js} +0 -0
- /package/api/types/{TextInput.js → WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.js} +0 -0
- /package/api/types/{TextInputNodeDom.js → WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.js} +0 -0
- /package/{api/types/TextNodeDom.js → dist/api/resources/assets/client/requests/AssetsListRequest.js} +0 -0
- /package/dist/api/{types/CollectionItemChangedPayload.js → resources/sites/resources/forms/client/requests/FormsListSubmissionsBySiteRequest.js} +0 -0
- /package/dist/api/{types/CollectionItemCreatedPayload.js → resources/sites/resources/forms/client/requests/FormsListSubmissionsRequest.js} +0 -0
- /package/dist/api/{types/ComponentInstance.js → resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.js} +0 -0
- /package/dist/api/types/{ComponentNodeDom.js → CollectionItemPublished.js} +0 -0
- /package/dist/api/types/{ImageNodeDom.js → ComponentInstanceNodePropertyOverridesWrite.js} +0 -0
- /package/dist/api/types/{LocalizedItem.js → ComponentNode.js} +0 -0
- /package/dist/api/types/{MultiLocaleChangedPayload.js → ImageNode.js} +0 -0
- /package/dist/api/types/{MultiLocaleChangedPayloadFieldData.js → Payload.js} +0 -0
- /package/dist/api/types/{MultiLocaleCreatedPayload.js → PayloadFieldData.js} +0 -0
- /package/dist/api/types/{SearchButton.js → SearchButtonNode.js} +0 -0
- /package/dist/api/types/{SearchButtonNodeDom.js → SearchButtonNodeWrite.js} +0 -0
- /package/dist/api/types/{SelectNodeDom.js → SelectNode.js} +0 -0
- /package/dist/api/types/{SingleLocaleChangedPayload.js → SubmitButtonNode.js} +0 -0
- /package/dist/api/types/{SingleLocaleChangedPayloadFieldData.js → SubmitButtonNodeWrite.js} +0 -0
- /package/dist/api/types/{SubmitButton.js → TextInputNode.js} +0 -0
- /package/dist/api/types/{SubmitButtonNodeDom.js → TextInputNodeWrite.js} +0 -0
- /package/dist/api/types/{TextInput.js → TextNodeWrite.js} +0 -0
- /package/dist/api/types/{TextInputNodeDom.js → WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.js} +0 -0
- /package/dist/api/types/{TextNodeDom.js → WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.js} +0 -0
|
@@ -7,7 +7,9 @@ service:
|
|
|
7
7
|
list:
|
|
8
8
|
path: /sites/{site_id}/collections
|
|
9
9
|
method: GET
|
|
10
|
-
auth:
|
|
10
|
+
auth:
|
|
11
|
+
- OAuth2:
|
|
12
|
+
- cms:read
|
|
11
13
|
docs: |
|
|
12
14
|
List of all Collections within a Site.
|
|
13
15
|
|
|
@@ -56,7 +58,9 @@ service:
|
|
|
56
58
|
create:
|
|
57
59
|
path: /sites/{site_id}/collections
|
|
58
60
|
method: POST
|
|
59
|
-
auth:
|
|
61
|
+
auth:
|
|
62
|
+
- OAuth2:
|
|
63
|
+
- cms:write
|
|
60
64
|
docs: >
|
|
61
65
|
Create a Collection for a site with collection fields.
|
|
62
66
|
|
|
@@ -159,7 +163,9 @@ service:
|
|
|
159
163
|
get:
|
|
160
164
|
path: /collections/{collection_id}
|
|
161
165
|
method: GET
|
|
162
|
-
auth:
|
|
166
|
+
auth:
|
|
167
|
+
- OAuth2:
|
|
168
|
+
- cms:read
|
|
163
169
|
docs: |
|
|
164
170
|
Get the full details of a collection from its ID.
|
|
165
171
|
|
|
@@ -297,22 +303,27 @@ service:
|
|
|
297
303
|
type: File
|
|
298
304
|
slug: guide-file
|
|
299
305
|
displayName: Guide File
|
|
306
|
+
helpText: helpText
|
|
300
307
|
- id: 7f8e9d0c1b2a3f4e5d6c8b9e
|
|
301
308
|
isRequired: false
|
|
302
309
|
isEditable: true
|
|
303
310
|
type: Email
|
|
304
311
|
slug: contributor-email
|
|
305
312
|
displayName: Contributor Email
|
|
313
|
+
helpText: helpText
|
|
306
314
|
- id: 3a4f5e6d7c8b9a0e1d2c4b5f
|
|
307
315
|
isRequired: false
|
|
308
316
|
isEditable: true
|
|
309
317
|
type: Phone
|
|
310
318
|
slug: emergency-contact
|
|
311
319
|
displayName: Emergency Contact
|
|
320
|
+
helpText: helpText
|
|
312
321
|
delete:
|
|
313
322
|
path: /collections/{collection_id}
|
|
314
323
|
method: DELETE
|
|
315
|
-
auth:
|
|
324
|
+
auth:
|
|
325
|
+
- OAuth2:
|
|
326
|
+
- cms:write
|
|
316
327
|
docs: |
|
|
317
328
|
Delete a collection using its ID.
|
|
318
329
|
|
|
@@ -17,6 +17,7 @@ webhooks:
|
|
|
17
17
|
siteId: 679826b3b20b045e176bc4b5
|
|
18
18
|
pageId: 679826b3b20b045e176bc4bc
|
|
19
19
|
localeId: 67993753d910db250db64b3e
|
|
20
|
+
itemId: 580e64008c9a982ac9b8b754
|
|
20
21
|
breakpoint: main
|
|
21
22
|
url: >-
|
|
22
23
|
https://webflow.com/design/site-slug-4ec832?workflow=comment&commentId=679d2ddb5196117ad04d1ffa&pageId=679826b3b20b045e176bc4bc
|
|
@@ -7,7 +7,9 @@ service:
|
|
|
7
7
|
list:
|
|
8
8
|
path: /sites/{site_id}/components
|
|
9
9
|
method: GET
|
|
10
|
-
auth:
|
|
10
|
+
auth:
|
|
11
|
+
- OAuth2:
|
|
12
|
+
- components:read
|
|
11
13
|
docs: |
|
|
12
14
|
List of all components for a site.
|
|
13
15
|
|
|
@@ -26,10 +28,10 @@ service:
|
|
|
26
28
|
type: optional<string>
|
|
27
29
|
docs: Scope the operation to work on a specific branch.
|
|
28
30
|
limit:
|
|
29
|
-
type: optional<
|
|
31
|
+
type: optional<integer>
|
|
30
32
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
31
33
|
offset:
|
|
32
|
-
type: optional<
|
|
34
|
+
type: optional<integer>
|
|
33
35
|
docs: >-
|
|
34
36
|
Offset used for pagination if the results have more than limit
|
|
35
37
|
records
|
|
@@ -48,6 +50,8 @@ service:
|
|
|
48
50
|
site_id: 580e63e98c9a982ac9b8b741
|
|
49
51
|
query-parameters:
|
|
50
52
|
branchId: 68026fa68ef6dc744c75b833
|
|
53
|
+
limit: 1
|
|
54
|
+
offset: 1
|
|
51
55
|
response:
|
|
52
56
|
body:
|
|
53
57
|
components:
|
|
@@ -65,9 +69,13 @@ service:
|
|
|
65
69
|
readonly: true
|
|
66
70
|
- id: 6258612d1ee792848f805dcf
|
|
67
71
|
name: Card
|
|
72
|
+
group: Buttons
|
|
73
|
+
description: A button component that can be used across the site
|
|
68
74
|
readonly: true
|
|
69
75
|
- id: 68a2b1d1ee792848f805dcf
|
|
70
76
|
name: Nav
|
|
77
|
+
group: Buttons
|
|
78
|
+
description: A button component that can be used across the site
|
|
71
79
|
readonly: true
|
|
72
80
|
pagination:
|
|
73
81
|
limit: 20
|
|
@@ -76,7 +84,9 @@ service:
|
|
|
76
84
|
get-content:
|
|
77
85
|
path: /sites/{site_id}/components/{component_id}/dom
|
|
78
86
|
method: GET
|
|
79
|
-
auth:
|
|
87
|
+
auth:
|
|
88
|
+
- OAuth2:
|
|
89
|
+
- components:read
|
|
80
90
|
docs: >
|
|
81
91
|
Get static content from a component definition. This includes text
|
|
82
92
|
nodes, image nodes, select nodes, text input nodes, submit button nodes,
|
|
@@ -109,17 +119,20 @@ service:
|
|
|
109
119
|
query-parameters:
|
|
110
120
|
localeId:
|
|
111
121
|
type: optional<string>
|
|
112
|
-
docs:
|
|
113
|
-
Unique identifier for a specific
|
|
114
|
-
|
|
122
|
+
docs: >
|
|
123
|
+
Unique identifier for a specific Locale.
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
[Lear more about
|
|
127
|
+
localization.](/data/v2.0.0/docs/working-with-localization)
|
|
115
128
|
branchId:
|
|
116
129
|
type: optional<string>
|
|
117
130
|
docs: Scope the operation to work on a specific branch.
|
|
118
131
|
limit:
|
|
119
|
-
type: optional<
|
|
132
|
+
type: optional<integer>
|
|
120
133
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
121
134
|
offset:
|
|
122
|
-
type: optional<
|
|
135
|
+
type: optional<integer>
|
|
123
136
|
docs: >-
|
|
124
137
|
Offset used for pagination if the results have more than limit
|
|
125
138
|
records
|
|
@@ -140,6 +153,8 @@ service:
|
|
|
140
153
|
query-parameters:
|
|
141
154
|
localeId: 65427cf400e02b306eaa04a0
|
|
142
155
|
branchId: 68026fa68ef6dc744c75b833
|
|
156
|
+
limit: 1
|
|
157
|
+
offset: 1
|
|
143
158
|
response:
|
|
144
159
|
body:
|
|
145
160
|
componentId: 69118560-d0bc-15fc-bbf8-b8fe5f6535b5
|
|
@@ -189,7 +204,9 @@ service:
|
|
|
189
204
|
update-content:
|
|
190
205
|
path: /sites/{site_id}/components/{component_id}/dom
|
|
191
206
|
method: POST
|
|
192
|
-
auth:
|
|
207
|
+
auth:
|
|
208
|
+
- OAuth2:
|
|
209
|
+
- components:write
|
|
193
210
|
docs: >
|
|
194
211
|
This endpoint updates content within a component defintion for
|
|
195
212
|
**secondary locales**. It supports updating up to 1000 nodes in a single
|
|
@@ -200,13 +217,18 @@ service:
|
|
|
200
217
|
|
|
201
218
|
1. Use the [get component
|
|
202
219
|
content](/data/reference/pages-and-components/components/get-content)
|
|
203
|
-
endpoint to identify available content nodes and their types
|
|
220
|
+
endpoint to identify available content nodes and their types.
|
|
204
221
|
|
|
205
222
|
2. If your component definition has a component instance nested within
|
|
206
223
|
it, retrieve the nested component instance's properties that you'll
|
|
207
224
|
override using the [get component
|
|
208
225
|
properties](/data/reference/pages-and-components/components/get-properties)
|
|
209
|
-
endpoint
|
|
226
|
+
endpoint.
|
|
227
|
+
|
|
228
|
+
3. DOM elements may include a `data-w-id` attribute. This attribute is
|
|
229
|
+
used by Webflow to maintain custom attributes and links across locales.
|
|
230
|
+
Always include the original `data-w-id` value in your update requests to
|
|
231
|
+
ensure consistent behavior across all locales.
|
|
210
232
|
|
|
211
233
|
|
|
212
234
|
<Note>
|
|
@@ -230,9 +252,12 @@ service:
|
|
|
230
252
|
query-parameters:
|
|
231
253
|
localeId:
|
|
232
254
|
type: optional<string>
|
|
233
|
-
docs:
|
|
234
|
-
Unique identifier for a specific
|
|
235
|
-
|
|
255
|
+
docs: >
|
|
256
|
+
Unique identifier for a specific Locale.
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
[Lear more about
|
|
260
|
+
localization.](/data/v2.0.0/docs/working-with-localization)
|
|
236
261
|
branchId:
|
|
237
262
|
type: optional<string>
|
|
238
263
|
docs: Scope the operation to work on a specific branch.
|
|
@@ -294,7 +319,9 @@ service:
|
|
|
294
319
|
get-properties:
|
|
295
320
|
path: /sites/{site_id}/components/{component_id}/properties
|
|
296
321
|
method: GET
|
|
297
|
-
auth:
|
|
322
|
+
auth:
|
|
323
|
+
- OAuth2:
|
|
324
|
+
- components:read
|
|
298
325
|
docs: >
|
|
299
326
|
Get the default property values of a component definition.
|
|
300
327
|
|
|
@@ -320,17 +347,20 @@ service:
|
|
|
320
347
|
query-parameters:
|
|
321
348
|
localeId:
|
|
322
349
|
type: optional<string>
|
|
323
|
-
docs:
|
|
324
|
-
Unique identifier for a specific
|
|
325
|
-
|
|
350
|
+
docs: >
|
|
351
|
+
Unique identifier for a specific Locale.
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
[Lear more about
|
|
355
|
+
localization.](/data/v2.0.0/docs/working-with-localization)
|
|
326
356
|
branchId:
|
|
327
357
|
type: optional<string>
|
|
328
358
|
docs: Scope the operation to work on a specific branch.
|
|
329
359
|
limit:
|
|
330
|
-
type: optional<
|
|
360
|
+
type: optional<integer>
|
|
331
361
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
332
362
|
offset:
|
|
333
|
-
type: optional<
|
|
363
|
+
type: optional<integer>
|
|
334
364
|
docs: >-
|
|
335
365
|
Offset used for pagination if the results have more than limit
|
|
336
366
|
records
|
|
@@ -351,6 +381,8 @@ service:
|
|
|
351
381
|
query-parameters:
|
|
352
382
|
localeId: 65427cf400e02b306eaa04a0
|
|
353
383
|
branchId: 68026fa68ef6dc744c75b833
|
|
384
|
+
limit: 1
|
|
385
|
+
offset: 1
|
|
354
386
|
response:
|
|
355
387
|
body:
|
|
356
388
|
componentId: 658205daa3e8206a523b5ad4
|
|
@@ -374,17 +406,26 @@ service:
|
|
|
374
406
|
update-properties:
|
|
375
407
|
path: /sites/{site_id}/components/{component_id}/properties
|
|
376
408
|
method: POST
|
|
377
|
-
auth:
|
|
409
|
+
auth:
|
|
410
|
+
- OAuth2:
|
|
411
|
+
- components:write
|
|
378
412
|
docs: >
|
|
379
413
|
Update the default property values of a component definition in a
|
|
380
414
|
specificed locale.
|
|
381
415
|
|
|
382
416
|
|
|
383
|
-
Before making updates
|
|
417
|
+
Before making updates:
|
|
418
|
+
|
|
419
|
+
1. Use the [get component
|
|
384
420
|
properties](/data/reference/pages-and-components/components/get-properties)
|
|
385
421
|
endpoint to identify properties that can be updated in a secondary
|
|
386
422
|
locale.
|
|
387
423
|
|
|
424
|
+
2. Rich Text properties may include a `data-w-id` attribute. This
|
|
425
|
+
attribute is used by Webflow to maintain links across locales. Always
|
|
426
|
+
include the original `data-w-id` value in your update requests to ensure
|
|
427
|
+
consistent behavior across all locales.
|
|
428
|
+
|
|
388
429
|
|
|
389
430
|
<Note>The request requires a secondary locale ID. If a `localeId` is
|
|
390
431
|
missing, the request will not be processed and will result in an
|
|
@@ -407,9 +448,12 @@ service:
|
|
|
407
448
|
query-parameters:
|
|
408
449
|
localeId:
|
|
409
450
|
type: optional<string>
|
|
410
|
-
docs:
|
|
411
|
-
Unique identifier for a specific
|
|
412
|
-
|
|
451
|
+
docs: >
|
|
452
|
+
Unique identifier for a specific Locale.
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
[Lear more about
|
|
456
|
+
localization.](/data/v2.0.0/docs/working-with-localization)
|
|
413
457
|
branchId:
|
|
414
458
|
type: optional<string>
|
|
415
459
|
docs: Scope the operation to work on a specific branch.
|
|
@@ -456,12 +500,12 @@ types:
|
|
|
456
500
|
ComponentDomWriteNodesItem:
|
|
457
501
|
discriminated: false
|
|
458
502
|
union:
|
|
459
|
-
- type: root.
|
|
460
|
-
- type: root.
|
|
503
|
+
- type: root.TextNodeWrite
|
|
504
|
+
- type: root.ComponentInstanceNodePropertyOverridesWrite
|
|
461
505
|
- type: root.Select
|
|
462
|
-
- type: root.
|
|
463
|
-
- type: root.
|
|
464
|
-
- type: root.
|
|
506
|
+
- type: root.TextInputNodeWrite
|
|
507
|
+
- type: root.SubmitButtonNodeWrite
|
|
508
|
+
- type: root.SearchButtonNodeWrite
|
|
465
509
|
source:
|
|
466
510
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
467
511
|
inline: true
|
|
@@ -7,7 +7,9 @@ service:
|
|
|
7
7
|
list:
|
|
8
8
|
path: /sites/{site_id}/forms
|
|
9
9
|
method: GET
|
|
10
|
-
auth:
|
|
10
|
+
auth:
|
|
11
|
+
- OAuth2:
|
|
12
|
+
- forms:read
|
|
11
13
|
docs: |
|
|
12
14
|
List forms for a given site.
|
|
13
15
|
|
|
@@ -23,10 +25,10 @@ service:
|
|
|
23
25
|
name: FormsListRequest
|
|
24
26
|
query-parameters:
|
|
25
27
|
limit:
|
|
26
|
-
type: optional<
|
|
28
|
+
type: optional<integer>
|
|
27
29
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
28
30
|
offset:
|
|
29
|
-
type: optional<
|
|
31
|
+
type: optional<integer>
|
|
30
32
|
docs: >-
|
|
31
33
|
Offset used for pagination if the results have more than limit
|
|
32
34
|
records
|
|
@@ -45,6 +47,9 @@ service:
|
|
|
45
47
|
examples:
|
|
46
48
|
- path-parameters:
|
|
47
49
|
site_id: 580e63e98c9a982ac9b8b741
|
|
50
|
+
query-parameters:
|
|
51
|
+
limit: 1
|
|
52
|
+
offset: 1
|
|
48
53
|
response:
|
|
49
54
|
body:
|
|
50
55
|
forms:
|
|
@@ -54,13 +59,16 @@ service:
|
|
|
54
59
|
fields:
|
|
55
60
|
'0':
|
|
56
61
|
displayName: Email
|
|
62
|
+
placeholder: Enter your email
|
|
57
63
|
userVisible: true
|
|
58
64
|
'1':
|
|
59
65
|
displayName: Email
|
|
66
|
+
placeholder: Enter your email
|
|
60
67
|
userVisible: true
|
|
61
68
|
responseSettings:
|
|
62
69
|
redirectUrl: https://example.com
|
|
63
70
|
redirectMethod: GET
|
|
71
|
+
redirectAction: POST https://example.com
|
|
64
72
|
sendEmailConfirmation: true
|
|
65
73
|
id: 589a331aa51e760df7ccb89e
|
|
66
74
|
siteId: 580e63e98c9a982ac9b8b741
|
|
@@ -75,10 +83,12 @@ service:
|
|
|
75
83
|
fields:
|
|
76
84
|
'0':
|
|
77
85
|
displayName: Email
|
|
86
|
+
placeholder: Enter your email
|
|
78
87
|
userVisible: true
|
|
79
88
|
responseSettings:
|
|
80
89
|
redirectUrl: https://example.com
|
|
81
90
|
redirectMethod: GET
|
|
91
|
+
redirectAction: POST https://example.com
|
|
82
92
|
sendEmailConfirmation: false
|
|
83
93
|
id: 580ff8d7ba3e45ba9fe588e9
|
|
84
94
|
siteId: 580e63e98c9a982ac9b8b741
|
|
@@ -94,7 +104,9 @@ service:
|
|
|
94
104
|
get:
|
|
95
105
|
path: /forms/{form_id}
|
|
96
106
|
method: GET
|
|
97
|
-
auth:
|
|
107
|
+
auth:
|
|
108
|
+
- OAuth2:
|
|
109
|
+
- forms:read
|
|
98
110
|
docs: |
|
|
99
111
|
Get information about a given form.
|
|
100
112
|
|
|
@@ -129,6 +141,7 @@ service:
|
|
|
129
141
|
660d5bcc9c0772150459dfb1:
|
|
130
142
|
displayName: Name
|
|
131
143
|
type: Plain
|
|
144
|
+
placeholder: Enter your email
|
|
132
145
|
userVisible: true
|
|
133
146
|
589a331aa51e760df7ccb89d:
|
|
134
147
|
displayName: Email
|
|
@@ -138,6 +151,7 @@ service:
|
|
|
138
151
|
responseSettings:
|
|
139
152
|
redirectUrl: https://example.com
|
|
140
153
|
redirectMethod: GET
|
|
154
|
+
redirectAction: POST https://example.com
|
|
141
155
|
sendEmailConfirmation: true
|
|
142
156
|
id: 589a331aa51e760df7ccb89e
|
|
143
157
|
siteId: 580e63e98c9a982ac9b8b741
|
|
@@ -149,7 +163,9 @@ service:
|
|
|
149
163
|
list-submissions:
|
|
150
164
|
path: /forms/{form_id}/submissions
|
|
151
165
|
method: GET
|
|
152
|
-
auth:
|
|
166
|
+
auth:
|
|
167
|
+
- OAuth2:
|
|
168
|
+
- forms:read
|
|
153
169
|
docs: |
|
|
154
170
|
List form submissions for a given form
|
|
155
171
|
|
|
@@ -171,12 +187,12 @@ service:
|
|
|
171
187
|
name: FormsListSubmissionsRequest
|
|
172
188
|
query-parameters:
|
|
173
189
|
offset:
|
|
174
|
-
type: optional<
|
|
190
|
+
type: optional<integer>
|
|
175
191
|
docs: >-
|
|
176
192
|
Offset used for pagination if the results have more than limit
|
|
177
193
|
records
|
|
178
194
|
limit:
|
|
179
|
-
type: optional<
|
|
195
|
+
type: optional<integer>
|
|
180
196
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
181
197
|
response:
|
|
182
198
|
docs: Request was successful
|
|
@@ -192,6 +208,9 @@ service:
|
|
|
192
208
|
examples:
|
|
193
209
|
- path-parameters:
|
|
194
210
|
form_id: 580e63e98c9a982ac9b8b741
|
|
211
|
+
query-parameters:
|
|
212
|
+
offset: 1
|
|
213
|
+
limit: 1
|
|
195
214
|
response:
|
|
196
215
|
body:
|
|
197
216
|
formSubmissions:
|
|
@@ -218,7 +237,9 @@ service:
|
|
|
218
237
|
get-submission:
|
|
219
238
|
path: /form_submissions/{form_submission_id}
|
|
220
239
|
method: GET
|
|
221
|
-
auth:
|
|
240
|
+
auth:
|
|
241
|
+
- OAuth2:
|
|
242
|
+
- forms:read
|
|
222
243
|
docs: |
|
|
223
244
|
Get information about a given form submissio.
|
|
224
245
|
|
|
@@ -257,7 +278,9 @@ service:
|
|
|
257
278
|
delete-submission:
|
|
258
279
|
path: /form_submissions/{form_submission_id}
|
|
259
280
|
method: DELETE
|
|
260
|
-
auth:
|
|
281
|
+
auth:
|
|
282
|
+
- OAuth2:
|
|
283
|
+
- forms:write
|
|
261
284
|
docs: |
|
|
262
285
|
Delete a form submission
|
|
263
286
|
|
|
@@ -284,7 +307,9 @@ service:
|
|
|
284
307
|
update-submission:
|
|
285
308
|
path: /form_submissions/{form_submission_id}
|
|
286
309
|
method: PATCH
|
|
287
|
-
auth:
|
|
310
|
+
auth:
|
|
311
|
+
- OAuth2:
|
|
312
|
+
- forms:write
|
|
288
313
|
docs: |
|
|
289
314
|
Update hidden fields on a form submission
|
|
290
315
|
|
|
@@ -332,82 +357,6 @@ service:
|
|
|
332
357
|
formResponse:
|
|
333
358
|
First Name: Arthur
|
|
334
359
|
Last Name: Dent
|
|
335
|
-
list-submissions-by-site:
|
|
336
|
-
path: /sites/{site_id}/form_submissions
|
|
337
|
-
method: GET
|
|
338
|
-
auth: true
|
|
339
|
-
docs: >
|
|
340
|
-
List form submissions for a given site. This endpoint differs from the
|
|
341
|
-
existing [List Form Submissions
|
|
342
|
-
endpoint](/data/reference/forms/form-submissions/list-submissions) by
|
|
343
|
-
accepting `siteId` as a path parameter and `elementId` as a query
|
|
344
|
-
parameter. You can get the `elementId` from the [List forms
|
|
345
|
-
endpoint](/data/reference/forms/forms/list).
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
Required scope | `forms:read`
|
|
351
|
-
source:
|
|
352
|
-
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
353
|
-
path-parameters:
|
|
354
|
-
site_id:
|
|
355
|
-
type: string
|
|
356
|
-
docs: Unique identifier for a Site
|
|
357
|
-
display-name: List Form Submissions by Site
|
|
358
|
-
request:
|
|
359
|
-
name: FormsListSubmissionsBySiteRequest
|
|
360
|
-
query-parameters:
|
|
361
|
-
elementId:
|
|
362
|
-
type: optional<string>
|
|
363
|
-
docs: Identifier for an element
|
|
364
|
-
offset:
|
|
365
|
-
type: optional<double>
|
|
366
|
-
docs: >-
|
|
367
|
-
Offset used for pagination if the results have more than limit
|
|
368
|
-
records
|
|
369
|
-
limit:
|
|
370
|
-
type: optional<double>
|
|
371
|
-
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
372
|
-
response:
|
|
373
|
-
docs: Request was successful
|
|
374
|
-
type: root.FormSubmissionList
|
|
375
|
-
status-code: 200
|
|
376
|
-
errors:
|
|
377
|
-
- root.BadRequestError
|
|
378
|
-
- root.UnauthorizedError
|
|
379
|
-
- root.ForbiddenError
|
|
380
|
-
- root.NotFoundError
|
|
381
|
-
- root.TooManyRequestsError
|
|
382
|
-
- root.InternalServerError
|
|
383
|
-
examples:
|
|
384
|
-
- path-parameters:
|
|
385
|
-
site_id: 580e63e98c9a982ac9b8b741
|
|
386
|
-
query-parameters:
|
|
387
|
-
elementId: 18259716-3e5a-646a-5f41-5dc4b9405aa0
|
|
388
|
-
response:
|
|
389
|
-
body:
|
|
390
|
-
formSubmissions:
|
|
391
|
-
- id: 6321ca84df3949bfc6752327
|
|
392
|
-
displayName: Sample Form
|
|
393
|
-
siteId: 62749158efef318abc8d5a0f
|
|
394
|
-
workspaceId: 62749158efef318abc8d5a0f
|
|
395
|
-
dateSubmitted: '2022-09-14T12:35:16Z'
|
|
396
|
-
formResponse:
|
|
397
|
-
First Name: Arthur
|
|
398
|
-
Last Name: Dent
|
|
399
|
-
- id: 660d64fabf6e0a0d4edab981
|
|
400
|
-
displayName: Sample Form
|
|
401
|
-
siteId: 62749158efef318abc8d5a0f
|
|
402
|
-
workspaceId: 62749158efef318abc8d5a0f
|
|
403
|
-
dateSubmitted: '2022-09-14T12:35:16Z'
|
|
404
|
-
formResponse:
|
|
405
|
-
First Name: Ford
|
|
406
|
-
Last Name: Prefect
|
|
407
|
-
pagination:
|
|
408
|
-
limit: 25
|
|
409
|
-
offset: 0
|
|
410
|
-
total: 2
|
|
411
360
|
source:
|
|
412
361
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
413
362
|
display-name: Forms
|
|
@@ -5,9 +5,11 @@ service:
|
|
|
5
5
|
base-path: ''
|
|
6
6
|
endpoints:
|
|
7
7
|
list:
|
|
8
|
-
path: /collections/{
|
|
8
|
+
path: /collections/{sku_collection_id}/items/{sku_id}/inventory
|
|
9
9
|
method: GET
|
|
10
|
-
auth:
|
|
10
|
+
auth:
|
|
11
|
+
- OAuth2:
|
|
12
|
+
- ecommerce:read
|
|
11
13
|
docs: |
|
|
12
14
|
List the current inventory levels for a particular SKU item.
|
|
13
15
|
|
|
@@ -15,12 +17,14 @@ service:
|
|
|
15
17
|
source:
|
|
16
18
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
17
19
|
path-parameters:
|
|
18
|
-
|
|
20
|
+
sku_collection_id:
|
|
19
21
|
type: string
|
|
20
|
-
docs:
|
|
21
|
-
|
|
22
|
+
docs: >-
|
|
23
|
+
Unique identifier for a SKU collection. Use the List Collections API
|
|
24
|
+
to find this ID.
|
|
25
|
+
sku_id:
|
|
22
26
|
type: string
|
|
23
|
-
docs: Unique identifier for
|
|
27
|
+
docs: Unique identifier for a SKU
|
|
24
28
|
display-name: List Inventory
|
|
25
29
|
response:
|
|
26
30
|
docs: Request was successful
|
|
@@ -36,17 +40,19 @@ service:
|
|
|
36
40
|
- root.InternalServerError
|
|
37
41
|
examples:
|
|
38
42
|
- path-parameters:
|
|
39
|
-
|
|
40
|
-
|
|
43
|
+
sku_collection_id: 6377a7c4b7a79608c34a46f7
|
|
44
|
+
sku_id: 5e8518516e147040726cc415
|
|
41
45
|
response:
|
|
42
46
|
body:
|
|
43
47
|
id: 5bfedb42bab0ad90fa7dad39
|
|
44
48
|
quantity: 100
|
|
45
49
|
inventoryType: finite
|
|
46
50
|
update:
|
|
47
|
-
path: /collections/{
|
|
51
|
+
path: /collections/{sku_collection_id}/items/{sku_id}/inventory
|
|
48
52
|
method: PATCH
|
|
49
|
-
auth:
|
|
53
|
+
auth:
|
|
54
|
+
- OAuth2:
|
|
55
|
+
- ecommerce:write
|
|
50
56
|
docs: >
|
|
51
57
|
Updates the current inventory levels for a particular SKU item.
|
|
52
58
|
|
|
@@ -65,12 +71,14 @@ service:
|
|
|
65
71
|
source:
|
|
66
72
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
67
73
|
path-parameters:
|
|
68
|
-
|
|
74
|
+
sku_collection_id:
|
|
69
75
|
type: string
|
|
70
|
-
docs:
|
|
71
|
-
|
|
76
|
+
docs: >-
|
|
77
|
+
Unique identifier for a SKU collection. Use the List Collections API
|
|
78
|
+
to find this ID.
|
|
79
|
+
sku_id:
|
|
72
80
|
type: string
|
|
73
|
-
docs: Unique identifier for
|
|
81
|
+
docs: Unique identifier for a SKU
|
|
74
82
|
display-name: Update Item Inventory
|
|
75
83
|
request:
|
|
76
84
|
name: InventoryUpdateRequest
|
|
@@ -100,8 +108,8 @@ service:
|
|
|
100
108
|
- root.InternalServerError
|
|
101
109
|
examples:
|
|
102
110
|
- path-parameters:
|
|
103
|
-
|
|
104
|
-
|
|
111
|
+
sku_collection_id: 6377a7c4b7a79608c34a46f7
|
|
112
|
+
sku_id: 5e8518516e147040726cc415
|
|
105
113
|
request:
|
|
106
114
|
inventoryType: infinite
|
|
107
115
|
response:
|
|
@@ -140,5 +148,5 @@ webhooks:
|
|
|
140
148
|
payload:
|
|
141
149
|
triggerType: ecomm_inventory_changed
|
|
142
150
|
payload:
|
|
143
|
-
ref: ./schemas/inventory.yml#/InventoryItem/example
|
|
151
|
+
\$ref: ./schemas/inventory.yml#/InventoryItem/example
|
|
144
152
|
docs: Information about updated ecommerce inventory values
|