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
|
get-custom-code:
|
|
8
8
|
path: /pages/{page_id}/custom_code
|
|
9
9
|
method: GET
|
|
10
|
-
auth:
|
|
10
|
+
auth:
|
|
11
|
+
- OAuth2:
|
|
12
|
+
- custom_code:read
|
|
11
13
|
docs: |
|
|
12
14
|
Get all scripts applied to a page.
|
|
13
15
|
|
|
@@ -45,14 +47,22 @@ service:
|
|
|
45
47
|
upsert-custom-code:
|
|
46
48
|
path: /pages/{page_id}/custom_code
|
|
47
49
|
method: PUT
|
|
48
|
-
auth:
|
|
49
|
-
|
|
50
|
-
|
|
50
|
+
auth:
|
|
51
|
+
- OAuth2:
|
|
52
|
+
- custom_code:write
|
|
53
|
+
docs: >
|
|
54
|
+
Apply registered scripts to a page. If you have multiple scripts your
|
|
55
|
+
App needs to apply or maintain on a page, ensure they are always
|
|
56
|
+
included in the request body for this endpoint. To remove individual
|
|
57
|
+
scripts, simply call this endpoint without the script in the request
|
|
58
|
+
body.
|
|
59
|
+
|
|
51
60
|
|
|
52
61
|
<Note title="Script Registration">
|
|
53
62
|
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.
|
|
54
63
|
</Note>
|
|
55
64
|
|
|
65
|
+
|
|
56
66
|
Required scope | `custom_code:write`
|
|
57
67
|
source:
|
|
58
68
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
@@ -106,13 +116,22 @@ service:
|
|
|
106
116
|
delete-custom-code:
|
|
107
117
|
path: /pages/{page_id}/custom_code
|
|
108
118
|
method: DELETE
|
|
109
|
-
auth:
|
|
119
|
+
auth:
|
|
120
|
+
- OAuth2:
|
|
121
|
+
- custom_code:write
|
|
110
122
|
docs: >
|
|
111
|
-
|
|
123
|
+
Remove all scripts from a page applied by the App. This endpoint will
|
|
124
|
+
not remove scripts from the site's registered scripts.
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
To remove individual scripts applied by the App, use the [Add/Update
|
|
128
|
+
Custom
|
|
129
|
+
Code](/data/reference/custom-code/custom-code-pages/upsert-custom-code)
|
|
130
|
+
endpoint.
|
|
112
131
|
|
|
113
132
|
|
|
114
|
-
<Note>Access to this endpoint requires a bearer token from
|
|
115
|
-
|
|
133
|
+
<Note>Access to this endpoint requires a bearer token obtained from an
|
|
134
|
+
[OAuth Code Grant Flow](/data/reference/oauth-app).</Note>
|
|
116
135
|
|
|
117
136
|
|
|
118
137
|
Required scope | `custom_code:write`
|
|
@@ -7,7 +7,9 @@ service:
|
|
|
7
7
|
list:
|
|
8
8
|
path: /sites/{site_id}/pages
|
|
9
9
|
method: GET
|
|
10
|
-
auth:
|
|
10
|
+
auth:
|
|
11
|
+
- OAuth2:
|
|
12
|
+
- page:read
|
|
11
13
|
docs: |
|
|
12
14
|
List of all pages for a site.
|
|
13
15
|
|
|
@@ -24,14 +26,17 @@ service:
|
|
|
24
26
|
query-parameters:
|
|
25
27
|
localeId:
|
|
26
28
|
type: optional<string>
|
|
27
|
-
docs:
|
|
28
|
-
Unique identifier for a specific
|
|
29
|
-
|
|
29
|
+
docs: >
|
|
30
|
+
Unique identifier for a specific Locale.
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
[Lear more about
|
|
34
|
+
localization.](/data/v2.0.0/docs/working-with-localization)
|
|
30
35
|
limit:
|
|
31
|
-
type: optional<
|
|
36
|
+
type: optional<integer>
|
|
32
37
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
33
38
|
offset:
|
|
34
|
-
type: optional<
|
|
39
|
+
type: optional<integer>
|
|
35
40
|
docs: >-
|
|
36
41
|
Offset used for pagination if the results have more than limit
|
|
37
42
|
records
|
|
@@ -50,6 +55,8 @@ service:
|
|
|
50
55
|
site_id: 580e63e98c9a982ac9b8b741
|
|
51
56
|
query-parameters:
|
|
52
57
|
localeId: 65427cf400e02b306eaa04a0
|
|
58
|
+
limit: 1
|
|
59
|
+
offset: 1
|
|
53
60
|
response:
|
|
54
61
|
body:
|
|
55
62
|
pages:
|
|
@@ -57,6 +64,8 @@ service:
|
|
|
57
64
|
siteId: 6258612d1ee792848f805dcf
|
|
58
65
|
title: Guide to the Galaxy
|
|
59
66
|
slug: guide-to-the-galaxy
|
|
67
|
+
parentId: 6419db964a9c435aa3af6251
|
|
68
|
+
collectionId: 6390c49774a71f12831a08e3
|
|
60
69
|
createdOn: '2024-03-11T10:42:00Z'
|
|
61
70
|
lastUpdated: '2024-03-11T10:42:42Z'
|
|
62
71
|
archived: false
|
|
@@ -82,12 +91,15 @@ service:
|
|
|
82
91
|
siteId: 6258612d1ee792848f805dcf
|
|
83
92
|
title: Towel Day Celebrations
|
|
84
93
|
slug: towel-day
|
|
94
|
+
parentId: 6419db964a9c435aa3af6251
|
|
95
|
+
collectionId: 6390c49774a71f12831a08e3
|
|
85
96
|
createdOn: '2024-05-25T09:00:00Z'
|
|
86
97
|
lastUpdated: '2024-05-25T09:42:00Z'
|
|
87
98
|
archived: false
|
|
88
99
|
draft: false
|
|
89
100
|
canBranch: true
|
|
90
101
|
isBranch: false
|
|
102
|
+
branchId: 68026fa68ef6dc744c75b833
|
|
91
103
|
seo:
|
|
92
104
|
title: Celebrate Towel Day - The Hitchhiker's Guide to the Galaxy
|
|
93
105
|
description: >-
|
|
@@ -111,7 +123,9 @@ service:
|
|
|
111
123
|
get-metadata:
|
|
112
124
|
path: /pages/{page_id}
|
|
113
125
|
method: GET
|
|
114
|
-
auth:
|
|
126
|
+
auth:
|
|
127
|
+
- OAuth2:
|
|
128
|
+
- page:read
|
|
115
129
|
docs: |
|
|
116
130
|
Get metadata information for a single page.
|
|
117
131
|
|
|
@@ -128,9 +142,12 @@ service:
|
|
|
128
142
|
query-parameters:
|
|
129
143
|
localeId:
|
|
130
144
|
type: optional<string>
|
|
131
|
-
docs:
|
|
132
|
-
Unique identifier for a specific
|
|
133
|
-
|
|
145
|
+
docs: >
|
|
146
|
+
Unique identifier for a specific Locale.
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
[Lear more about
|
|
150
|
+
localization.](/data/v2.0.0/docs/working-with-localization)
|
|
134
151
|
response:
|
|
135
152
|
docs: Request was successful
|
|
136
153
|
type: root.Page
|
|
@@ -152,6 +169,8 @@ service:
|
|
|
152
169
|
siteId: 6258612d1ee792848f805dcf
|
|
153
170
|
title: Guide to the Galaxy
|
|
154
171
|
slug: guide-to-the-galaxy
|
|
172
|
+
parentId: 6419db964a9c435aa3af6251
|
|
173
|
+
collectionId: 6390c49774a71f12831a08e3
|
|
155
174
|
createdOn: '2024-03-11T10:42:00Z'
|
|
156
175
|
lastUpdated: '2024-03-11T10:42:42Z'
|
|
157
176
|
archived: false
|
|
@@ -176,14 +195,12 @@ service:
|
|
|
176
195
|
update-page-settings:
|
|
177
196
|
path: /pages/{page_id}
|
|
178
197
|
method: PUT
|
|
179
|
-
auth:
|
|
198
|
+
auth:
|
|
199
|
+
- OAuth2:
|
|
200
|
+
- page:write
|
|
180
201
|
docs: |
|
|
181
202
|
Update Page-level metadata, including SEO and Open Graph fields.
|
|
182
203
|
|
|
183
|
-
<Note>
|
|
184
|
-
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.
|
|
185
|
-
</Note>
|
|
186
|
-
|
|
187
204
|
Required scope | `pages:write`
|
|
188
205
|
source:
|
|
189
206
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
@@ -197,9 +214,12 @@ service:
|
|
|
197
214
|
query-parameters:
|
|
198
215
|
localeId:
|
|
199
216
|
type: optional<string>
|
|
200
|
-
docs:
|
|
201
|
-
Unique identifier for a specific
|
|
202
|
-
|
|
217
|
+
docs: >
|
|
218
|
+
Unique identifier for a specific Locale.
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
[Lear more about
|
|
222
|
+
localization.](/data/v2.0.0/docs/working-with-localization)
|
|
203
223
|
body:
|
|
204
224
|
properties:
|
|
205
225
|
title:
|
|
@@ -207,7 +227,14 @@ service:
|
|
|
207
227
|
docs: Title for the page
|
|
208
228
|
slug:
|
|
209
229
|
type: optional<string>
|
|
210
|
-
docs:
|
|
230
|
+
docs: >
|
|
231
|
+
Slug for the page.
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
**Note:** Updating slugs in secondary locales is only supported
|
|
236
|
+
in <a href="https://webflow.com/localization">Advanced and
|
|
237
|
+
Enterprise localization add-on plans.</a>
|
|
211
238
|
seo:
|
|
212
239
|
type: optional<PageMetadataWriteSeo>
|
|
213
240
|
docs: SEO-related fields for the Page
|
|
@@ -251,6 +278,8 @@ service:
|
|
|
251
278
|
siteId: 6258612d1ee792848f805dcf
|
|
252
279
|
title: Guide to the Galaxy
|
|
253
280
|
slug: guide-to-the-galaxy
|
|
281
|
+
parentId: 6419db964a9c435aa3af6251
|
|
282
|
+
collectionId: 6390c49774a71f12831a08e3
|
|
254
283
|
createdOn: '2024-03-11T10:42:00Z'
|
|
255
284
|
lastUpdated: '2024-03-11T10:42:42Z'
|
|
256
285
|
archived: false
|
|
@@ -275,24 +304,13 @@ service:
|
|
|
275
304
|
get-content:
|
|
276
305
|
path: /pages/{page_id}/dom
|
|
277
306
|
method: GET
|
|
278
|
-
auth:
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
overrides](https://help.webflow.com/hc/en-us/articles/33961219350547-Component-properties#how-to-modify-property-values-on-component-instances).
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
To retrieve the static content of a component instance, use the [Get
|
|
287
|
-
Component
|
|
288
|
-
Content](/data/reference/pages-and-components/components/get-content)
|
|
289
|
-
endpoint.
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
<Note>If you do not include a `localeId` in your request, the response
|
|
293
|
-
will return any content that can be localized from the Primary
|
|
294
|
-
locale.</Note>
|
|
307
|
+
auth:
|
|
308
|
+
- OAuth2:
|
|
309
|
+
- page:read
|
|
310
|
+
docs: |
|
|
311
|
+
Get text and component instance content from a static page.
|
|
295
312
|
|
|
313
|
+
<Badge intent="info">Localization</Badge>
|
|
296
314
|
|
|
297
315
|
Required scope | `pages:read`
|
|
298
316
|
source:
|
|
@@ -307,14 +325,17 @@ service:
|
|
|
307
325
|
query-parameters:
|
|
308
326
|
localeId:
|
|
309
327
|
type: optional<string>
|
|
310
|
-
docs:
|
|
311
|
-
Unique identifier for a specific
|
|
312
|
-
|
|
328
|
+
docs: >
|
|
329
|
+
Unique identifier for a specific Locale.
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
[Lear more about
|
|
333
|
+
localization.](/data/v2.0.0/docs/working-with-localization)
|
|
313
334
|
limit:
|
|
314
|
-
type: optional<
|
|
335
|
+
type: optional<integer>
|
|
315
336
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
316
337
|
offset:
|
|
317
|
-
type: optional<
|
|
338
|
+
type: optional<integer>
|
|
318
339
|
docs: >-
|
|
319
340
|
Offset used for pagination if the results have more than limit
|
|
320
341
|
records
|
|
@@ -334,6 +355,8 @@ service:
|
|
|
334
355
|
page_id: 63c720f9347c2139b248e552
|
|
335
356
|
query-parameters:
|
|
336
357
|
localeId: 65427cf400e02b306eaa04a0
|
|
358
|
+
limit: 1
|
|
359
|
+
offset: 1
|
|
337
360
|
response:
|
|
338
361
|
body:
|
|
339
362
|
pageId: 658205daa3e8206a523b5ad4
|
|
@@ -384,7 +407,9 @@ service:
|
|
|
384
407
|
update-static-content:
|
|
385
408
|
path: /pages/{page_id}/dom
|
|
386
409
|
method: POST
|
|
387
|
-
auth:
|
|
410
|
+
auth:
|
|
411
|
+
- OAuth2:
|
|
412
|
+
- page:write
|
|
388
413
|
docs: >
|
|
389
414
|
This endpoint updates content on a static page in **secondary locales**.
|
|
390
415
|
It supports updating up to 1000 nodes in a single request.
|
|
@@ -394,12 +419,17 @@ service:
|
|
|
394
419
|
|
|
395
420
|
1. Use the [get page
|
|
396
421
|
content](/data/reference/pages-and-components/pages/get-content)
|
|
397
|
-
endpoint to identify available content nodes and their types
|
|
422
|
+
endpoint to identify available content nodes and their types.
|
|
398
423
|
|
|
399
424
|
2. If the page has component instances, retrieve the component's
|
|
400
425
|
properties that you'll override using the [get component
|
|
401
426
|
properties](/data/reference/pages-and-components/components/get-properties)
|
|
402
|
-
endpoint
|
|
427
|
+
endpoint.
|
|
428
|
+
|
|
429
|
+
3. DOM elements may include a `data-w-id` attribute. This attribute is
|
|
430
|
+
used by Webflow to maintain custom attributes and links across locales.
|
|
431
|
+
Always include the original `data-w-id` value in your update requests to
|
|
432
|
+
ensure consistent behavior across all locales.
|
|
403
433
|
|
|
404
434
|
|
|
405
435
|
<Note>
|
|
@@ -514,12 +544,12 @@ types:
|
|
|
514
544
|
PageDomWriteNodesItem:
|
|
515
545
|
discriminated: false
|
|
516
546
|
union:
|
|
517
|
-
- type: root.
|
|
518
|
-
- type: root.
|
|
547
|
+
- type: root.TextNodeWrite
|
|
548
|
+
- type: root.ComponentInstanceNodePropertyOverridesWrite
|
|
519
549
|
- type: root.Select
|
|
520
|
-
- type: root.
|
|
521
|
-
- type: root.
|
|
522
|
-
- type: root.
|
|
550
|
+
- type: root.TextInputNodeWrite
|
|
551
|
+
- type: root.SubmitButtonNodeWrite
|
|
552
|
+
- type: root.SearchButtonNodeWrite
|
|
523
553
|
source:
|
|
524
554
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
525
555
|
inline: true
|
|
@@ -7,7 +7,9 @@ service:
|
|
|
7
7
|
list:
|
|
8
8
|
path: /sites/{site_id}/products
|
|
9
9
|
method: GET
|
|
10
|
-
auth:
|
|
10
|
+
auth:
|
|
11
|
+
- OAuth2:
|
|
12
|
+
- ecommerce:read
|
|
11
13
|
docs: >
|
|
12
14
|
Retrieve all products for a site.
|
|
13
15
|
|
|
@@ -31,12 +33,12 @@ service:
|
|
|
31
33
|
name: ProductsListRequest
|
|
32
34
|
query-parameters:
|
|
33
35
|
offset:
|
|
34
|
-
type: optional<
|
|
36
|
+
type: optional<integer>
|
|
35
37
|
docs: >-
|
|
36
38
|
Offset used for pagination if the results have more than limit
|
|
37
39
|
records
|
|
38
40
|
limit:
|
|
39
|
-
type: optional<
|
|
41
|
+
type: optional<integer>
|
|
40
42
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
41
43
|
response:
|
|
42
44
|
docs: Request was successful
|
|
@@ -53,6 +55,9 @@ service:
|
|
|
53
55
|
examples:
|
|
54
56
|
- path-parameters:
|
|
55
57
|
site_id: 580e63e98c9a982ac9b8b741
|
|
58
|
+
query-parameters:
|
|
59
|
+
offset: 1
|
|
60
|
+
limit: 1
|
|
56
61
|
response:
|
|
57
62
|
body:
|
|
58
63
|
items:
|
|
@@ -92,7 +97,6 @@ service:
|
|
|
92
97
|
value: 2499
|
|
93
98
|
unit: USD
|
|
94
99
|
currency: USD
|
|
95
|
-
quantity: 10
|
|
96
100
|
main-image: https://www.example.com/image.jpg
|
|
97
101
|
sku: '1234567890'
|
|
98
102
|
sku-properties:
|
|
@@ -109,7 +113,9 @@ service:
|
|
|
109
113
|
create:
|
|
110
114
|
path: /sites/{site_id}/products
|
|
111
115
|
method: POST
|
|
112
|
-
auth:
|
|
116
|
+
auth:
|
|
117
|
+
- OAuth2:
|
|
118
|
+
- ecommerce:write
|
|
113
119
|
docs: >
|
|
114
120
|
Create a new ecommerce product and defaultSKU. A product, at minimum,
|
|
115
121
|
must have a single SKU.
|
|
@@ -243,7 +249,6 @@ service:
|
|
|
243
249
|
value: 2499
|
|
244
250
|
unit: USD
|
|
245
251
|
currency: USD
|
|
246
|
-
quantity: 10
|
|
247
252
|
main-image: https://www.example.com/image.jpg
|
|
248
253
|
sku: '1234567890'
|
|
249
254
|
sku-properties:
|
|
@@ -256,7 +261,9 @@ service:
|
|
|
256
261
|
get:
|
|
257
262
|
path: /sites/{site_id}/products/{product_id}
|
|
258
263
|
method: GET
|
|
259
|
-
auth:
|
|
264
|
+
auth:
|
|
265
|
+
- OAuth2:
|
|
266
|
+
- ecommerce:read
|
|
260
267
|
docs: |
|
|
261
268
|
Retrieve a single product by its ID. All of its SKUs will also be
|
|
262
269
|
retrieved.
|
|
@@ -331,7 +338,6 @@ service:
|
|
|
331
338
|
value: 2499
|
|
332
339
|
unit: USD
|
|
333
340
|
currency: USD
|
|
334
|
-
quantity: 10
|
|
335
341
|
main-image: https://www.example.com/image.jpg
|
|
336
342
|
sku: '1234567890'
|
|
337
343
|
sku-properties:
|
|
@@ -344,7 +350,9 @@ service:
|
|
|
344
350
|
update:
|
|
345
351
|
path: /sites/{site_id}/products/{product_id}
|
|
346
352
|
method: PATCH
|
|
347
|
-
auth:
|
|
353
|
+
auth:
|
|
354
|
+
- OAuth2:
|
|
355
|
+
- ecommerce:write
|
|
348
356
|
docs: >
|
|
349
357
|
Update an existing Product.
|
|
350
358
|
|
|
@@ -419,7 +427,9 @@ service:
|
|
|
419
427
|
create-sku:
|
|
420
428
|
path: /sites/{site_id}/products/{product_id}/skus
|
|
421
429
|
method: POST
|
|
422
|
-
auth:
|
|
430
|
+
auth:
|
|
431
|
+
- OAuth2:
|
|
432
|
+
- ecommerce:write
|
|
423
433
|
docs: >
|
|
424
434
|
Create additional SKUs to manage every [option and variant of your
|
|
425
435
|
Product.](https://help.webflow.com/hc/en-us/articles/33961334531347-Create-product-options-and-variants)
|
|
@@ -498,7 +508,6 @@ service:
|
|
|
498
508
|
value: 2499
|
|
499
509
|
unit: USD
|
|
500
510
|
currency: USD
|
|
501
|
-
quantity: 10
|
|
502
511
|
main-image: https://www.example.com/image.jpg
|
|
503
512
|
sku: '1234567890'
|
|
504
513
|
sku-properties:
|
|
@@ -511,7 +520,9 @@ service:
|
|
|
511
520
|
update-sku:
|
|
512
521
|
path: /sites/{site_id}/products/{product_id}/skus/{sku_id}
|
|
513
522
|
method: PATCH
|
|
514
|
-
auth:
|
|
523
|
+
auth:
|
|
524
|
+
- OAuth2:
|
|
525
|
+
- ecommerce:write
|
|
515
526
|
docs: >
|
|
516
527
|
Update a specified SKU.
|
|
517
528
|
|
|
@@ -600,8 +611,6 @@ service:
|
|
|
600
611
|
trial: 7
|
|
601
612
|
plans:
|
|
602
613
|
- {}
|
|
603
|
-
track-inventory: true
|
|
604
|
-
quantity: 10
|
|
605
614
|
main-image: https://www.example.com/image.jpg
|
|
606
615
|
sku: '1234567890'
|
|
607
616
|
sku-properties:
|
|
@@ -7,7 +7,9 @@ service:
|
|
|
7
7
|
list:
|
|
8
8
|
path: /sites/{site_id}/registered_scripts
|
|
9
9
|
method: GET
|
|
10
|
-
auth:
|
|
10
|
+
auth:
|
|
11
|
+
- OAuth2:
|
|
12
|
+
- custom_code:read
|
|
11
13
|
docs: >
|
|
12
14
|
Get a list of scripts that have been registered to a site. A site can
|
|
13
15
|
have a maximum of 800 registered scripts.
|
|
@@ -46,6 +48,7 @@ service:
|
|
|
46
48
|
canCopy: false
|
|
47
49
|
displayName: Alert
|
|
48
50
|
hostedLocation: https://cdn.webflow.io/.../alert-0.0.1.js
|
|
51
|
+
integrityHash: integrityHash
|
|
49
52
|
createdOn: '2022-10-26T00:28:54.191Z'
|
|
50
53
|
lastUpdated: lastUpdated
|
|
51
54
|
version: 0.0.1
|
|
@@ -53,6 +56,7 @@ service:
|
|
|
53
56
|
canCopy: false
|
|
54
57
|
displayName: Alert
|
|
55
58
|
hostedLocation: https://cdn.webflow.io/.../alert-0.0.2.js
|
|
59
|
+
integrityHash: integrityHash
|
|
56
60
|
createdOn: '2022-10-26T00:28:54.191Z'
|
|
57
61
|
lastUpdated: lastUpdated
|
|
58
62
|
version: 0.0.2
|
|
@@ -72,7 +76,9 @@ service:
|
|
|
72
76
|
register-hosted:
|
|
73
77
|
path: /sites/{site_id}/registered_scripts/hosted
|
|
74
78
|
method: POST
|
|
75
|
-
auth:
|
|
79
|
+
auth:
|
|
80
|
+
- OAuth2:
|
|
81
|
+
- custom_code:write
|
|
76
82
|
docs: |
|
|
77
83
|
Register a hosted script to a site.
|
|
78
84
|
|
|
@@ -147,7 +153,9 @@ service:
|
|
|
147
153
|
register-inline:
|
|
148
154
|
path: /sites/{site_id}/registered_scripts/inline
|
|
149
155
|
method: POST
|
|
150
|
-
auth:
|
|
156
|
+
auth:
|
|
157
|
+
- OAuth2:
|
|
158
|
+
- custom_code:write
|
|
151
159
|
docs: >
|
|
152
160
|
Register an inline script to a site. Inline scripts are limited to 2000
|
|
153
161
|
characters.
|
|
@@ -206,7 +214,8 @@ service:
|
|
|
206
214
|
- root.TooManyRequestsError
|
|
207
215
|
- root.InternalServerError
|
|
208
216
|
examples:
|
|
209
|
-
-
|
|
217
|
+
- name: CustomCodeInlineResponse
|
|
218
|
+
path-parameters:
|
|
210
219
|
site_id: 580e63e98c9a982ac9b8b741
|
|
211
220
|
request:
|
|
212
221
|
sourceCode: alert('hello world');
|
|
@@ -219,6 +228,7 @@ service:
|
|
|
219
228
|
displayName: Alert
|
|
220
229
|
hostedLocation: >-
|
|
221
230
|
https://uploads-ssl.webflow.com/6258612d1ee792848f805dcf%2F64b6c769ff52ba6c3d904a91%2F660d6e15b3d1696f2d2b1447%2Falert-0.0.1.js
|
|
231
|
+
integrityHash: integrityHash
|
|
222
232
|
createdOn: '2022-10-26T00:28:54.191Z'
|
|
223
233
|
lastUpdated: lastUpdated
|
|
224
234
|
version: 0.0.1
|
|
@@ -7,7 +7,9 @@ service:
|
|
|
7
7
|
list:
|
|
8
8
|
path: /sites/{site_id}/activity_logs
|
|
9
9
|
method: GET
|
|
10
|
-
auth:
|
|
10
|
+
auth:
|
|
11
|
+
- OAuth2:
|
|
12
|
+
- site_activity:read
|
|
11
13
|
docs: >
|
|
12
14
|
Retrieve Activity Logs for a specific Site.
|
|
13
15
|
|
|
@@ -28,10 +30,10 @@ service:
|
|
|
28
30
|
name: ActivityLogsListRequest
|
|
29
31
|
query-parameters:
|
|
30
32
|
limit:
|
|
31
|
-
type: optional<
|
|
33
|
+
type: optional<integer>
|
|
32
34
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
33
35
|
offset:
|
|
34
|
-
type: optional<
|
|
36
|
+
type: optional<integer>
|
|
35
37
|
docs: >-
|
|
36
38
|
Offset used for pagination if the results have more than limit
|
|
37
39
|
records
|
|
@@ -47,6 +49,9 @@ service:
|
|
|
47
49
|
examples:
|
|
48
50
|
- path-parameters:
|
|
49
51
|
site_id: 580e63e98c9a982ac9b8b741
|
|
52
|
+
query-parameters:
|
|
53
|
+
limit: 1
|
|
54
|
+
offset: 1
|
|
50
55
|
response:
|
|
51
56
|
body:
|
|
52
57
|
items:
|
|
@@ -60,6 +65,10 @@ service:
|
|
|
60
65
|
displayName: John Doe
|
|
61
66
|
resourceId: 654c16c7b229e56bcf26870c
|
|
62
67
|
resourceName: foo-bar
|
|
68
|
+
newValue: newValue
|
|
69
|
+
previousValue: previousValue
|
|
70
|
+
payload:
|
|
71
|
+
key: value
|
|
63
72
|
pagination:
|
|
64
73
|
limit: 25
|
|
65
74
|
offset: 0
|