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
|
@@ -60,7 +60,7 @@ const errors = __importStar(require("../../../../errors/index"));
|
|
|
60
60
|
* Inventory is the stock of e-commerce items in your Webflow site.
|
|
61
61
|
*/
|
|
62
62
|
class Inventory {
|
|
63
|
-
constructor(_options) {
|
|
63
|
+
constructor(_options = {}) {
|
|
64
64
|
this._options = _options;
|
|
65
65
|
}
|
|
66
66
|
/**
|
|
@@ -68,8 +68,8 @@ class Inventory {
|
|
|
68
68
|
*
|
|
69
69
|
* Required scope | `ecommerce:read`
|
|
70
70
|
*
|
|
71
|
-
* @param {string}
|
|
72
|
-
* @param {string}
|
|
71
|
+
* @param {string} skuCollectionId - Unique identifier for a SKU collection. Use the List Collections API to find this ID.
|
|
72
|
+
* @param {string} skuId - Unique identifier for a SKU
|
|
73
73
|
* @param {Inventory.RequestOptions} requestOptions - Request-specific configuration.
|
|
74
74
|
*
|
|
75
75
|
* @throws {@link Webflow.BadRequestError}
|
|
@@ -81,17 +81,17 @@ class Inventory {
|
|
|
81
81
|
* @throws {@link Webflow.InternalServerError}
|
|
82
82
|
*
|
|
83
83
|
* @example
|
|
84
|
-
* await client.inventory.list("
|
|
84
|
+
* await client.inventory.list("6377a7c4b7a79608c34a46f7", "5e8518516e147040726cc415")
|
|
85
85
|
*/
|
|
86
|
-
list(
|
|
87
|
-
return core.HttpResponsePromise.fromPromise(this.__list(
|
|
86
|
+
list(skuCollectionId, skuId, requestOptions) {
|
|
87
|
+
return core.HttpResponsePromise.fromPromise(this.__list(skuCollectionId, skuId, requestOptions));
|
|
88
88
|
}
|
|
89
|
-
__list(
|
|
89
|
+
__list(skuCollectionId, skuId, requestOptions) {
|
|
90
90
|
return __awaiter(this, void 0, void 0, function* () {
|
|
91
91
|
var _a, _b, _c;
|
|
92
92
|
const _response = yield core.fetcher({
|
|
93
93
|
url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.WebflowEnvironment.DataApi)
|
|
94
|
-
.base, `collections/${encodeURIComponent(
|
|
94
|
+
.base, `collections/${encodeURIComponent(skuCollectionId)}/items/${encodeURIComponent(skuId)}/inventory`),
|
|
95
95
|
method: "GET",
|
|
96
96
|
headers: (0, headers_js_1.mergeHeaders)((_c = this._options) === null || _c === void 0 ? void 0 : _c.headers, (0, headers_js_1.mergeOnlyDefinedHeaders)({ Authorization: yield this._getAuthorizationHeader() }), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
|
97
97
|
timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
|
|
@@ -166,7 +166,7 @@ class Inventory {
|
|
|
166
166
|
rawResponse: _response.rawResponse,
|
|
167
167
|
});
|
|
168
168
|
case "timeout":
|
|
169
|
-
throw new errors.WebflowTimeoutError("Timeout exceeded when calling GET /collections/{
|
|
169
|
+
throw new errors.WebflowTimeoutError("Timeout exceeded when calling GET /collections/{sku_collection_id}/items/{sku_id}/inventory.");
|
|
170
170
|
case "unknown":
|
|
171
171
|
throw new errors.WebflowError({
|
|
172
172
|
message: _response.error.errorMessage,
|
|
@@ -184,8 +184,8 @@ class Inventory {
|
|
|
184
184
|
*
|
|
185
185
|
* Required scope | `ecommerce:write`
|
|
186
186
|
*
|
|
187
|
-
* @param {string}
|
|
188
|
-
* @param {string}
|
|
187
|
+
* @param {string} skuCollectionId - Unique identifier for a SKU collection. Use the List Collections API to find this ID.
|
|
188
|
+
* @param {string} skuId - Unique identifier for a SKU
|
|
189
189
|
* @param {Webflow.InventoryUpdateRequest} request
|
|
190
190
|
* @param {Inventory.RequestOptions} requestOptions - Request-specific configuration.
|
|
191
191
|
*
|
|
@@ -198,19 +198,19 @@ class Inventory {
|
|
|
198
198
|
* @throws {@link Webflow.InternalServerError}
|
|
199
199
|
*
|
|
200
200
|
* @example
|
|
201
|
-
* await client.inventory.update("
|
|
201
|
+
* await client.inventory.update("6377a7c4b7a79608c34a46f7", "5e8518516e147040726cc415", {
|
|
202
202
|
* inventoryType: "infinite"
|
|
203
203
|
* })
|
|
204
204
|
*/
|
|
205
|
-
update(
|
|
206
|
-
return core.HttpResponsePromise.fromPromise(this.__update(
|
|
205
|
+
update(skuCollectionId, skuId, request, requestOptions) {
|
|
206
|
+
return core.HttpResponsePromise.fromPromise(this.__update(skuCollectionId, skuId, request, requestOptions));
|
|
207
207
|
}
|
|
208
|
-
__update(
|
|
208
|
+
__update(skuCollectionId, skuId, request, requestOptions) {
|
|
209
209
|
return __awaiter(this, void 0, void 0, function* () {
|
|
210
210
|
var _a, _b, _c;
|
|
211
211
|
const _response = yield core.fetcher({
|
|
212
212
|
url: (0, url_join_1.default)((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : ((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.WebflowEnvironment.DataApi)
|
|
213
|
-
.base, `collections/${encodeURIComponent(
|
|
213
|
+
.base, `collections/${encodeURIComponent(skuCollectionId)}/items/${encodeURIComponent(skuId)}/inventory`),
|
|
214
214
|
method: "PATCH",
|
|
215
215
|
headers: (0, headers_js_1.mergeHeaders)((_c = this._options) === null || _c === void 0 ? void 0 : _c.headers, (0, headers_js_1.mergeOnlyDefinedHeaders)({ Authorization: yield this._getAuthorizationHeader() }), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
|
|
216
216
|
contentType: "application/json",
|
|
@@ -292,7 +292,7 @@ class Inventory {
|
|
|
292
292
|
rawResponse: _response.rawResponse,
|
|
293
293
|
});
|
|
294
294
|
case "timeout":
|
|
295
|
-
throw new errors.WebflowTimeoutError("Timeout exceeded when calling PATCH /collections/{
|
|
295
|
+
throw new errors.WebflowTimeoutError("Timeout exceeded when calling PATCH /collections/{sku_collection_id}/items/{sku_id}/inventory.");
|
|
296
296
|
case "unknown":
|
|
297
297
|
throw new errors.WebflowError({
|
|
298
298
|
message: _response.error.errorMessage,
|
|
@@ -303,7 +303,11 @@ class Inventory {
|
|
|
303
303
|
}
|
|
304
304
|
_getAuthorizationHeader() {
|
|
305
305
|
return __awaiter(this, void 0, void 0, function* () {
|
|
306
|
-
|
|
306
|
+
const bearer = yield core.Supplier.get(this._options.accessToken);
|
|
307
|
+
if (bearer != null) {
|
|
308
|
+
return `Bearer ${bearer}`;
|
|
309
|
+
}
|
|
310
|
+
return undefined;
|
|
307
311
|
});
|
|
308
312
|
}
|
|
309
313
|
}
|
|
@@ -9,7 +9,7 @@ export declare namespace Orders {
|
|
|
9
9
|
environment?: core.Supplier<environments.WebflowEnvironment | environments.WebflowEnvironmentUrls>;
|
|
10
10
|
/** Specify a custom URL to connect the client to. */
|
|
11
11
|
baseUrl?: core.Supplier<string>;
|
|
12
|
-
accessToken
|
|
12
|
+
accessToken?: core.Supplier<core.BearerToken | undefined>;
|
|
13
13
|
/** Additional headers to include in requests. */
|
|
14
14
|
headers?: Record<string, string | core.Supplier<string | undefined> | undefined>;
|
|
15
15
|
}
|
|
@@ -29,7 +29,7 @@ export declare namespace Orders {
|
|
|
29
29
|
*/
|
|
30
30
|
export declare class Orders {
|
|
31
31
|
protected readonly _options: Orders.Options;
|
|
32
|
-
constructor(_options
|
|
32
|
+
constructor(_options?: Orders.Options);
|
|
33
33
|
/**
|
|
34
34
|
* List all orders created for a given site.
|
|
35
35
|
*
|
|
@@ -48,7 +48,11 @@ export declare class Orders {
|
|
|
48
48
|
* @throws {@link Webflow.InternalServerError}
|
|
49
49
|
*
|
|
50
50
|
* @example
|
|
51
|
-
* await client.orders.list("580e63e98c9a982ac9b8b741"
|
|
51
|
+
* await client.orders.list("580e63e98c9a982ac9b8b741", {
|
|
52
|
+
* status: "pending",
|
|
53
|
+
* offset: 1,
|
|
54
|
+
* limit: 1
|
|
55
|
+
* })
|
|
52
56
|
*/
|
|
53
57
|
list(siteId: string, request?: Webflow.OrdersListRequest, requestOptions?: Orders.RequestOptions): core.HttpResponsePromise<Webflow.OrderList>;
|
|
54
58
|
private __list;
|
|
@@ -169,5 +173,5 @@ export declare class Orders {
|
|
|
169
173
|
*/
|
|
170
174
|
refund(siteId: string, orderId: string, request?: Webflow.OrdersRefundRequest, requestOptions?: Orders.RequestOptions): core.HttpResponsePromise<Webflow.Order>;
|
|
171
175
|
private __refund;
|
|
172
|
-
protected _getAuthorizationHeader(): Promise<string>;
|
|
176
|
+
protected _getAuthorizationHeader(): Promise<string | undefined>;
|
|
173
177
|
}
|
|
@@ -60,7 +60,7 @@ const errors = __importStar(require("../../../../errors/index"));
|
|
|
60
60
|
* Orders are the orders for your Webflow site.
|
|
61
61
|
*/
|
|
62
62
|
class Orders {
|
|
63
|
-
constructor(_options) {
|
|
63
|
+
constructor(_options = {}) {
|
|
64
64
|
this._options = _options;
|
|
65
65
|
}
|
|
66
66
|
/**
|
|
@@ -81,7 +81,11 @@ class Orders {
|
|
|
81
81
|
* @throws {@link Webflow.InternalServerError}
|
|
82
82
|
*
|
|
83
83
|
* @example
|
|
84
|
-
* await client.orders.list("580e63e98c9a982ac9b8b741"
|
|
84
|
+
* await client.orders.list("580e63e98c9a982ac9b8b741", {
|
|
85
|
+
* status: "pending",
|
|
86
|
+
* offset: 1,
|
|
87
|
+
* limit: 1
|
|
88
|
+
* })
|
|
85
89
|
*/
|
|
86
90
|
list(siteId, request = {}, requestOptions) {
|
|
87
91
|
return core.HttpResponsePromise.fromPromise(this.__list(siteId, request, requestOptions));
|
|
@@ -781,7 +785,11 @@ class Orders {
|
|
|
781
785
|
}
|
|
782
786
|
_getAuthorizationHeader() {
|
|
783
787
|
return __awaiter(this, void 0, void 0, function* () {
|
|
784
|
-
|
|
788
|
+
const bearer = yield core.Supplier.get(this._options.accessToken);
|
|
789
|
+
if (bearer != null) {
|
|
790
|
+
return `Bearer ${bearer}`;
|
|
791
|
+
}
|
|
792
|
+
return undefined;
|
|
785
793
|
});
|
|
786
794
|
}
|
|
787
795
|
}
|
|
@@ -10,7 +10,7 @@ export declare namespace Pages {
|
|
|
10
10
|
environment?: core.Supplier<environments.WebflowEnvironment | environments.WebflowEnvironmentUrls>;
|
|
11
11
|
/** Specify a custom URL to connect the client to. */
|
|
12
12
|
baseUrl?: core.Supplier<string>;
|
|
13
|
-
accessToken
|
|
13
|
+
accessToken?: core.Supplier<core.BearerToken | undefined>;
|
|
14
14
|
/** Additional headers to include in requests. */
|
|
15
15
|
headers?: Record<string, string | core.Supplier<string | undefined> | undefined>;
|
|
16
16
|
}
|
|
@@ -31,7 +31,7 @@ export declare namespace Pages {
|
|
|
31
31
|
export declare class Pages {
|
|
32
32
|
protected readonly _options: Pages.Options;
|
|
33
33
|
protected _scripts: Scripts | undefined;
|
|
34
|
-
constructor(_options
|
|
34
|
+
constructor(_options?: Pages.Options);
|
|
35
35
|
get scripts(): Scripts;
|
|
36
36
|
/**
|
|
37
37
|
* List of all pages for a site.
|
|
@@ -50,7 +50,9 @@ export declare class Pages {
|
|
|
50
50
|
*
|
|
51
51
|
* @example
|
|
52
52
|
* await client.pages.list("580e63e98c9a982ac9b8b741", {
|
|
53
|
-
* localeId: "65427cf400e02b306eaa04a0"
|
|
53
|
+
* localeId: "65427cf400e02b306eaa04a0",
|
|
54
|
+
* limit: 1,
|
|
55
|
+
* offset: 1
|
|
54
56
|
* })
|
|
55
57
|
*/
|
|
56
58
|
list(siteId: string, request?: Webflow.PagesListRequest, requestOptions?: Pages.RequestOptions): core.HttpResponsePromise<Webflow.PageList>;
|
|
@@ -80,10 +82,6 @@ export declare class Pages {
|
|
|
80
82
|
/**
|
|
81
83
|
* Update Page-level metadata, including SEO and Open Graph fields.
|
|
82
84
|
*
|
|
83
|
-
* <Note>
|
|
84
|
-
* Note: When updating Page Metadata in secondary locales, you may only add `slug` to the request if your Site has the [Advanced or Enterprise Localization](https://webflow.com/localization) add-on.
|
|
85
|
-
* </Note>
|
|
86
|
-
*
|
|
87
85
|
* Required scope | `pages:write`
|
|
88
86
|
*
|
|
89
87
|
* @param {string} pageId - Unique identifier for a Page
|
|
@@ -116,11 +114,9 @@ export declare class Pages {
|
|
|
116
114
|
updatePageSettings(pageId: string, request?: Webflow.PageMetadataWrite, requestOptions?: Pages.RequestOptions): core.HttpResponsePromise<Webflow.Page>;
|
|
117
115
|
private __updatePageSettings;
|
|
118
116
|
/**
|
|
119
|
-
* Get content from a static page.
|
|
120
|
-
*
|
|
121
|
-
* To retrieve the static content of a component instance, use the [Get Component Content](/data/reference/pages-and-components/components/get-content) endpoint.
|
|
117
|
+
* Get text and component instance content from a static page.
|
|
122
118
|
*
|
|
123
|
-
* <
|
|
119
|
+
* <Badge intent="info">Localization</Badge>
|
|
124
120
|
*
|
|
125
121
|
* Required scope | `pages:read`
|
|
126
122
|
*
|
|
@@ -137,7 +133,9 @@ export declare class Pages {
|
|
|
137
133
|
*
|
|
138
134
|
* @example
|
|
139
135
|
* await client.pages.getContent("63c720f9347c2139b248e552", {
|
|
140
|
-
* localeId: "65427cf400e02b306eaa04a0"
|
|
136
|
+
* localeId: "65427cf400e02b306eaa04a0",
|
|
137
|
+
* limit: 1,
|
|
138
|
+
* offset: 1
|
|
141
139
|
* })
|
|
142
140
|
*/
|
|
143
141
|
getContent(pageId: string, request?: Webflow.PagesGetContentRequest, requestOptions?: Pages.RequestOptions): core.HttpResponsePromise<Webflow.Dom>;
|
|
@@ -146,8 +144,9 @@ export declare class Pages {
|
|
|
146
144
|
* This endpoint updates content on a static page in **secondary locales**. It supports updating up to 1000 nodes in a single request.
|
|
147
145
|
*
|
|
148
146
|
* Before making updates:
|
|
149
|
-
* 1. Use the [get page content](/data/reference/pages-and-components/pages/get-content) endpoint to identify available content nodes and their types
|
|
150
|
-
* 2. If the page has component instances, retrieve the component's properties that you'll override using the [get component properties](/data/reference/pages-and-components/components/get-properties) endpoint
|
|
147
|
+
* 1. Use the [get page content](/data/reference/pages-and-components/pages/get-content) endpoint to identify available content nodes and their types.
|
|
148
|
+
* 2. If the page has component instances, retrieve the component's properties that you'll override using the [get component properties](/data/reference/pages-and-components/components/get-properties) endpoint.
|
|
149
|
+
* 3. DOM elements may include a `data-w-id` attribute. This attribute is used by Webflow to maintain custom attributes and links across locales. Always include the original `data-w-id` value in your update requests to ensure consistent behavior across all locales.
|
|
151
150
|
*
|
|
152
151
|
* <Note>
|
|
153
152
|
* This endpoint is specifically for localized pages. Ensure that the specified `localeId` is a valid **secondary locale** for the site otherwise the request will fail.
|
|
@@ -205,5 +204,5 @@ export declare class Pages {
|
|
|
205
204
|
*/
|
|
206
205
|
updateStaticContent(pageId: string, request: Webflow.PageDomWrite, requestOptions?: Pages.RequestOptions): core.HttpResponsePromise<Webflow.UpdateStaticContentResponse>;
|
|
207
206
|
private __updateStaticContent;
|
|
208
|
-
protected _getAuthorizationHeader(): Promise<string>;
|
|
207
|
+
protected _getAuthorizationHeader(): Promise<string | undefined>;
|
|
209
208
|
}
|
|
@@ -72,7 +72,7 @@ const Client_1 = require("../resources/scripts/client/Client");
|
|
|
72
72
|
* Pages are the pages in your Webflow site.
|
|
73
73
|
*/
|
|
74
74
|
class Pages {
|
|
75
|
-
constructor(_options) {
|
|
75
|
+
constructor(_options = {}) {
|
|
76
76
|
this._options = _options;
|
|
77
77
|
}
|
|
78
78
|
get scripts() {
|
|
@@ -96,7 +96,9 @@ class Pages {
|
|
|
96
96
|
*
|
|
97
97
|
* @example
|
|
98
98
|
* await client.pages.list("580e63e98c9a982ac9b8b741", {
|
|
99
|
-
* localeId: "65427cf400e02b306eaa04a0"
|
|
99
|
+
* localeId: "65427cf400e02b306eaa04a0",
|
|
100
|
+
* limit: 1,
|
|
101
|
+
* offset: 1
|
|
100
102
|
* })
|
|
101
103
|
*/
|
|
102
104
|
list(siteId, request = {}, requestOptions) {
|
|
@@ -316,10 +318,6 @@ class Pages {
|
|
|
316
318
|
/**
|
|
317
319
|
* Update Page-level metadata, including SEO and Open Graph fields.
|
|
318
320
|
*
|
|
319
|
-
* <Note>
|
|
320
|
-
* Note: When updating Page Metadata in secondary locales, you may only add `slug` to the request if your Site has the [Advanced or Enterprise Localization](https://webflow.com/localization) add-on.
|
|
321
|
-
* </Note>
|
|
322
|
-
*
|
|
323
321
|
* Required scope | `pages:write`
|
|
324
322
|
*
|
|
325
323
|
* @param {string} pageId - Unique identifier for a Page
|
|
@@ -451,11 +449,9 @@ class Pages {
|
|
|
451
449
|
});
|
|
452
450
|
}
|
|
453
451
|
/**
|
|
454
|
-
* Get content from a static page.
|
|
452
|
+
* Get text and component instance content from a static page.
|
|
455
453
|
*
|
|
456
|
-
*
|
|
457
|
-
*
|
|
458
|
-
* <Note>If you do not include a `localeId` in your request, the response will return any content that can be localized from the Primary locale.</Note>
|
|
454
|
+
* <Badge intent="info">Localization</Badge>
|
|
459
455
|
*
|
|
460
456
|
* Required scope | `pages:read`
|
|
461
457
|
*
|
|
@@ -472,7 +468,9 @@ class Pages {
|
|
|
472
468
|
*
|
|
473
469
|
* @example
|
|
474
470
|
* await client.pages.getContent("63c720f9347c2139b248e552", {
|
|
475
|
-
* localeId: "65427cf400e02b306eaa04a0"
|
|
471
|
+
* localeId: "65427cf400e02b306eaa04a0",
|
|
472
|
+
* limit: 1,
|
|
473
|
+
* offset: 1
|
|
476
474
|
* })
|
|
477
475
|
*/
|
|
478
476
|
getContent(pageId, request = {}, requestOptions) {
|
|
@@ -581,8 +579,9 @@ class Pages {
|
|
|
581
579
|
* This endpoint updates content on a static page in **secondary locales**. It supports updating up to 1000 nodes in a single request.
|
|
582
580
|
*
|
|
583
581
|
* Before making updates:
|
|
584
|
-
* 1. Use the [get page content](/data/reference/pages-and-components/pages/get-content) endpoint to identify available content nodes and their types
|
|
585
|
-
* 2. If the page has component instances, retrieve the component's properties that you'll override using the [get component properties](/data/reference/pages-and-components/components/get-properties) endpoint
|
|
582
|
+
* 1. Use the [get page content](/data/reference/pages-and-components/pages/get-content) endpoint to identify available content nodes and their types.
|
|
583
|
+
* 2. If the page has component instances, retrieve the component's properties that you'll override using the [get component properties](/data/reference/pages-and-components/components/get-properties) endpoint.
|
|
584
|
+
* 3. DOM elements may include a `data-w-id` attribute. This attribute is used by Webflow to maintain custom attributes and links across locales. Always include the original `data-w-id` value in your update requests to ensure consistent behavior across all locales.
|
|
586
585
|
*
|
|
587
586
|
* <Note>
|
|
588
587
|
* This endpoint is specifically for localized pages. Ensure that the specified `localeId` is a valid **secondary locale** for the site otherwise the request will fail.
|
|
@@ -741,7 +740,11 @@ class Pages {
|
|
|
741
740
|
}
|
|
742
741
|
_getAuthorizationHeader() {
|
|
743
742
|
return __awaiter(this, void 0, void 0, function* () {
|
|
744
|
-
|
|
743
|
+
const bearer = yield core.Supplier.get(this._options.accessToken);
|
|
744
|
+
if (bearer != null) {
|
|
745
|
+
return `Bearer ${bearer}`;
|
|
746
|
+
}
|
|
747
|
+
return undefined;
|
|
745
748
|
});
|
|
746
749
|
}
|
|
747
750
|
}
|
|
@@ -22,12 +22,19 @@ import * as Webflow from "../../../../index";
|
|
|
22
22
|
*/
|
|
23
23
|
export interface PageMetadataWrite {
|
|
24
24
|
/**
|
|
25
|
-
* Unique identifier for a specific
|
|
25
|
+
* Unique identifier for a specific Locale.
|
|
26
|
+
*
|
|
27
|
+
* [Lear more about localization.](/data/v2.0.0/docs/working-with-localization)
|
|
26
28
|
*/
|
|
27
29
|
localeId?: string;
|
|
28
30
|
/** Title for the page */
|
|
29
31
|
title?: string;
|
|
30
|
-
/**
|
|
32
|
+
/**
|
|
33
|
+
* Slug for the page.
|
|
34
|
+
*
|
|
35
|
+
*
|
|
36
|
+
* **Note:** Updating slugs in secondary locales is only supported in <a href="https://webflow.com/localization">Advanced and Enterprise localization add-on plans.</a>
|
|
37
|
+
*/
|
|
31
38
|
slug?: string;
|
|
32
39
|
/** SEO-related fields for the Page */
|
|
33
40
|
seo?: Webflow.PageMetadataWriteSeo;
|
|
@@ -4,12 +4,16 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* @example
|
|
6
6
|
* {
|
|
7
|
-
* localeId: "65427cf400e02b306eaa04a0"
|
|
7
|
+
* localeId: "65427cf400e02b306eaa04a0",
|
|
8
|
+
* limit: 1,
|
|
9
|
+
* offset: 1
|
|
8
10
|
* }
|
|
9
11
|
*/
|
|
10
12
|
export interface PagesGetContentRequest {
|
|
11
13
|
/**
|
|
12
|
-
* Unique identifier for a specific
|
|
14
|
+
* Unique identifier for a specific Locale.
|
|
15
|
+
*
|
|
16
|
+
* [Lear more about localization.](/data/v2.0.0/docs/working-with-localization)
|
|
13
17
|
*/
|
|
14
18
|
localeId?: string;
|
|
15
19
|
/**
|
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
*/
|
|
10
10
|
export interface PagesGetMetadataRequest {
|
|
11
11
|
/**
|
|
12
|
-
* Unique identifier for a specific
|
|
12
|
+
* Unique identifier for a specific Locale.
|
|
13
|
+
*
|
|
14
|
+
* [Lear more about localization.](/data/v2.0.0/docs/working-with-localization)
|
|
13
15
|
*/
|
|
14
16
|
localeId?: string;
|
|
15
17
|
}
|
|
@@ -4,12 +4,16 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* @example
|
|
6
6
|
* {
|
|
7
|
-
* localeId: "65427cf400e02b306eaa04a0"
|
|
7
|
+
* localeId: "65427cf400e02b306eaa04a0",
|
|
8
|
+
* limit: 1,
|
|
9
|
+
* offset: 1
|
|
8
10
|
* }
|
|
9
11
|
*/
|
|
10
12
|
export interface PagesListRequest {
|
|
11
13
|
/**
|
|
12
|
-
* Unique identifier for a specific
|
|
14
|
+
* Unique identifier for a specific Locale.
|
|
15
|
+
*
|
|
16
|
+
* [Lear more about localization.](/data/v2.0.0/docs/working-with-localization)
|
|
13
17
|
*/
|
|
14
18
|
localeId?: string;
|
|
15
19
|
/**
|
|
@@ -9,7 +9,7 @@ export declare namespace Scripts {
|
|
|
9
9
|
environment?: core.Supplier<environments.WebflowEnvironment | environments.WebflowEnvironmentUrls>;
|
|
10
10
|
/** Specify a custom URL to connect the client to. */
|
|
11
11
|
baseUrl?: core.Supplier<string>;
|
|
12
|
-
accessToken
|
|
12
|
+
accessToken?: core.Supplier<core.BearerToken | undefined>;
|
|
13
13
|
/** Additional headers to include in requests. */
|
|
14
14
|
headers?: Record<string, string | core.Supplier<string | undefined> | undefined>;
|
|
15
15
|
}
|
|
@@ -26,7 +26,7 @@ export declare namespace Scripts {
|
|
|
26
26
|
}
|
|
27
27
|
export declare class Scripts {
|
|
28
28
|
protected readonly _options: Scripts.Options;
|
|
29
|
-
constructor(_options
|
|
29
|
+
constructor(_options?: Scripts.Options);
|
|
30
30
|
/**
|
|
31
31
|
* Get all scripts applied to a page.
|
|
32
32
|
*
|
|
@@ -47,7 +47,7 @@ export declare class Scripts {
|
|
|
47
47
|
getCustomCode(pageId: string, requestOptions?: Scripts.RequestOptions): core.HttpResponsePromise<Webflow.ScriptApplyList>;
|
|
48
48
|
private __getCustomCode;
|
|
49
49
|
/**
|
|
50
|
-
* Apply scripts to a page.
|
|
50
|
+
* Apply registered scripts to a page. If you have multiple scripts your App needs to apply or maintain on a page, ensure they are always included in the request body for this endpoint. To remove individual scripts, simply call this endpoint without the script in the request body.
|
|
51
51
|
*
|
|
52
52
|
* <Note title="Script Registration">
|
|
53
53
|
* To apply a script to a page, the script must first be registered to a Site via the [Register Script](/data/reference/custom-code/custom-code/register-hosted) endpoints. Once registered, the script can be applied to a Site or Page using the appropriate endpoints. See the documentation on [working with Custom Code](/data/docs/custom-code) for more information.
|
|
@@ -85,9 +85,11 @@ export declare class Scripts {
|
|
|
85
85
|
upsertCustomCode(pageId: string, request: Webflow.ScriptApplyList, requestOptions?: Scripts.RequestOptions): core.HttpResponsePromise<Webflow.ScriptApplyList>;
|
|
86
86
|
private __upsertCustomCode;
|
|
87
87
|
/**
|
|
88
|
-
*
|
|
88
|
+
* Remove all scripts from a page applied by the App. This endpoint will not remove scripts from the site's registered scripts.
|
|
89
89
|
*
|
|
90
|
-
*
|
|
90
|
+
* To remove individual scripts applied by the App, use the [Add/Update Custom Code](/data/reference/custom-code/custom-code-pages/upsert-custom-code) endpoint.
|
|
91
|
+
*
|
|
92
|
+
* <Note>Access to this endpoint requires a bearer token obtained from an [OAuth Code Grant Flow](/data/reference/oauth-app).</Note>
|
|
91
93
|
*
|
|
92
94
|
* Required scope | `custom_code:write`
|
|
93
95
|
*
|
|
@@ -105,5 +107,5 @@ export declare class Scripts {
|
|
|
105
107
|
*/
|
|
106
108
|
deleteCustomCode(pageId: string, requestOptions?: Scripts.RequestOptions): core.HttpResponsePromise<void>;
|
|
107
109
|
private __deleteCustomCode;
|
|
108
|
-
protected _getAuthorizationHeader(): Promise<string>;
|
|
110
|
+
protected _getAuthorizationHeader(): Promise<string | undefined>;
|
|
109
111
|
}
|
|
@@ -57,7 +57,7 @@ const url_join_1 = __importDefault(require("url-join"));
|
|
|
57
57
|
const serializers = __importStar(require("../../../../../../serialization/index"));
|
|
58
58
|
const errors = __importStar(require("../../../../../../errors/index"));
|
|
59
59
|
class Scripts {
|
|
60
|
-
constructor(_options) {
|
|
60
|
+
constructor(_options = {}) {
|
|
61
61
|
this._options = _options;
|
|
62
62
|
}
|
|
63
63
|
/**
|
|
@@ -166,7 +166,7 @@ class Scripts {
|
|
|
166
166
|
});
|
|
167
167
|
}
|
|
168
168
|
/**
|
|
169
|
-
* Apply scripts to a page.
|
|
169
|
+
* Apply registered scripts to a page. If you have multiple scripts your App needs to apply or maintain on a page, ensure they are always included in the request body for this endpoint. To remove individual scripts, simply call this endpoint without the script in the request body.
|
|
170
170
|
*
|
|
171
171
|
* <Note title="Script Registration">
|
|
172
172
|
* To apply a script to a page, the script must first be registered to a Site via the [Register Script](/data/reference/custom-code/custom-code/register-hosted) endpoints. Once registered, the script can be applied to a Site or Page using the appropriate endpoints. See the documentation on [working with Custom Code](/data/docs/custom-code) for more information.
|
|
@@ -299,9 +299,11 @@ class Scripts {
|
|
|
299
299
|
});
|
|
300
300
|
}
|
|
301
301
|
/**
|
|
302
|
-
*
|
|
302
|
+
* Remove all scripts from a page applied by the App. This endpoint will not remove scripts from the site's registered scripts.
|
|
303
303
|
*
|
|
304
|
-
*
|
|
304
|
+
* To remove individual scripts applied by the App, use the [Add/Update Custom Code](/data/reference/custom-code/custom-code-pages/upsert-custom-code) endpoint.
|
|
305
|
+
*
|
|
306
|
+
* <Note>Access to this endpoint requires a bearer token obtained from an [OAuth Code Grant Flow](/data/reference/oauth-app).</Note>
|
|
305
307
|
*
|
|
306
308
|
* Required scope | `custom_code:write`
|
|
307
309
|
*
|
|
@@ -398,7 +400,11 @@ class Scripts {
|
|
|
398
400
|
}
|
|
399
401
|
_getAuthorizationHeader() {
|
|
400
402
|
return __awaiter(this, void 0, void 0, function* () {
|
|
401
|
-
|
|
403
|
+
const bearer = yield core.Supplier.get(this._options.accessToken);
|
|
404
|
+
if (bearer != null) {
|
|
405
|
+
return `Bearer ${bearer}`;
|
|
406
|
+
}
|
|
407
|
+
return undefined;
|
|
402
408
|
});
|
|
403
409
|
}
|
|
404
410
|
}
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
4
|
import * as Webflow from "../../../index";
|
|
5
|
-
export type PageDomWriteNodesItem = Webflow.
|
|
5
|
+
export type PageDomWriteNodesItem = Webflow.TextNodeWrite | Webflow.ComponentInstanceNodePropertyOverridesWrite | Webflow.Select | Webflow.TextInputNodeWrite | Webflow.SubmitButtonNodeWrite | Webflow.SearchButtonNodeWrite;
|
|
@@ -9,7 +9,7 @@ export declare namespace Products {
|
|
|
9
9
|
environment?: core.Supplier<environments.WebflowEnvironment | environments.WebflowEnvironmentUrls>;
|
|
10
10
|
/** Specify a custom URL to connect the client to. */
|
|
11
11
|
baseUrl?: core.Supplier<string>;
|
|
12
|
-
accessToken
|
|
12
|
+
accessToken?: core.Supplier<core.BearerToken | undefined>;
|
|
13
13
|
/** Additional headers to include in requests. */
|
|
14
14
|
headers?: Record<string, string | core.Supplier<string | undefined> | undefined>;
|
|
15
15
|
}
|
|
@@ -26,7 +26,7 @@ export declare namespace Products {
|
|
|
26
26
|
}
|
|
27
27
|
export declare class Products {
|
|
28
28
|
protected readonly _options: Products.Options;
|
|
29
|
-
constructor(_options
|
|
29
|
+
constructor(_options?: Products.Options);
|
|
30
30
|
/**
|
|
31
31
|
* Retrieve all products for a site.
|
|
32
32
|
*
|
|
@@ -48,7 +48,10 @@ export declare class Products {
|
|
|
48
48
|
* @throws {@link Webflow.InternalServerError}
|
|
49
49
|
*
|
|
50
50
|
* @example
|
|
51
|
-
* await client.products.list("580e63e98c9a982ac9b8b741"
|
|
51
|
+
* await client.products.list("580e63e98c9a982ac9b8b741", {
|
|
52
|
+
* offset: 1,
|
|
53
|
+
* limit: 1
|
|
54
|
+
* })
|
|
52
55
|
*/
|
|
53
56
|
list(siteId: string, request?: Webflow.ProductsListRequest, requestOptions?: Products.RequestOptions): core.HttpResponsePromise<Webflow.ProductAndSkUsList>;
|
|
54
57
|
private __list;
|
|
@@ -268,5 +271,5 @@ export declare class Products {
|
|
|
268
271
|
*/
|
|
269
272
|
updateSku(siteId: string, productId: string, skuId: string, request: Webflow.ProductsUpdateSkuRequest, requestOptions?: Products.RequestOptions): core.HttpResponsePromise<Webflow.Sku>;
|
|
270
273
|
private __updateSku;
|
|
271
|
-
protected _getAuthorizationHeader(): Promise<string>;
|
|
274
|
+
protected _getAuthorizationHeader(): Promise<string | undefined>;
|
|
272
275
|
}
|
|
@@ -57,7 +57,7 @@ const url_join_1 = __importDefault(require("url-join"));
|
|
|
57
57
|
const serializers = __importStar(require("../../../../serialization/index"));
|
|
58
58
|
const errors = __importStar(require("../../../../errors/index"));
|
|
59
59
|
class Products {
|
|
60
|
-
constructor(_options) {
|
|
60
|
+
constructor(_options = {}) {
|
|
61
61
|
this._options = _options;
|
|
62
62
|
}
|
|
63
63
|
/**
|
|
@@ -81,7 +81,10 @@ class Products {
|
|
|
81
81
|
* @throws {@link Webflow.InternalServerError}
|
|
82
82
|
*
|
|
83
83
|
* @example
|
|
84
|
-
* await client.products.list("580e63e98c9a982ac9b8b741"
|
|
84
|
+
* await client.products.list("580e63e98c9a982ac9b8b741", {
|
|
85
|
+
* offset: 1,
|
|
86
|
+
* limit: 1
|
|
87
|
+
* })
|
|
85
88
|
*/
|
|
86
89
|
list(siteId, request = {}, requestOptions) {
|
|
87
90
|
return core.HttpResponsePromise.fromPromise(this.__list(siteId, request, requestOptions));
|
|
@@ -880,7 +883,11 @@ class Products {
|
|
|
880
883
|
}
|
|
881
884
|
_getAuthorizationHeader() {
|
|
882
885
|
return __awaiter(this, void 0, void 0, function* () {
|
|
883
|
-
|
|
886
|
+
const bearer = yield core.Supplier.get(this._options.accessToken);
|
|
887
|
+
if (bearer != null) {
|
|
888
|
+
return `Bearer ${bearer}`;
|
|
889
|
+
}
|
|
890
|
+
return undefined;
|
|
884
891
|
});
|
|
885
892
|
}
|
|
886
893
|
}
|
|
@@ -9,7 +9,7 @@ export declare namespace Scripts {
|
|
|
9
9
|
environment?: core.Supplier<environments.WebflowEnvironment | environments.WebflowEnvironmentUrls>;
|
|
10
10
|
/** Specify a custom URL to connect the client to. */
|
|
11
11
|
baseUrl?: core.Supplier<string>;
|
|
12
|
-
accessToken
|
|
12
|
+
accessToken?: core.Supplier<core.BearerToken | undefined>;
|
|
13
13
|
/** Additional headers to include in requests. */
|
|
14
14
|
headers?: Record<string, string | core.Supplier<string | undefined> | undefined>;
|
|
15
15
|
}
|
|
@@ -26,7 +26,7 @@ export declare namespace Scripts {
|
|
|
26
26
|
}
|
|
27
27
|
export declare class Scripts {
|
|
28
28
|
protected readonly _options: Scripts.Options;
|
|
29
|
-
constructor(_options
|
|
29
|
+
constructor(_options?: Scripts.Options);
|
|
30
30
|
/**
|
|
31
31
|
* Get a list of scripts that have been registered to a site. A site can have a maximum of 800 registered scripts.
|
|
32
32
|
*
|
|
@@ -107,5 +107,5 @@ export declare class Scripts {
|
|
|
107
107
|
*/
|
|
108
108
|
registerInline(siteId: string, request: Webflow.CustomCodeInlineRequest, requestOptions?: Scripts.RequestOptions): core.HttpResponsePromise<Webflow.CustomCodeInlineResponse>;
|
|
109
109
|
private __registerInline;
|
|
110
|
-
protected _getAuthorizationHeader(): Promise<string>;
|
|
110
|
+
protected _getAuthorizationHeader(): Promise<string | undefined>;
|
|
111
111
|
}
|