webflow-api 3.1.4 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.mock/definition/__package__.yml +811 -148
- package/.mock/definition/accessGroups.yml +7 -1
- package/.mock/definition/api.yml +0 -2
- package/.mock/definition/assets.yml +38 -8
- package/.mock/definition/collections/fields.yml +15 -9
- package/.mock/definition/collections/items.yml +740 -266
- package/.mock/definition/collections.yml +140 -14
- package/.mock/definition/comments.yml +40 -0
- package/.mock/definition/components.yml +87 -26
- package/.mock/definition/ecommerce.yml +3 -1
- package/.mock/definition/forms.yml +65 -7
- package/.mock/definition/inventory.yml +44 -16
- package/.mock/definition/items.yml +111 -0
- package/.mock/definition/orders.yml +470 -86
- package/.mock/definition/pages/scripts.yml +27 -8
- package/.mock/definition/pages.yml +172 -63
- package/.mock/definition/products.yml +52 -33
- package/.mock/definition/scripts.yml +13 -3
- package/.mock/definition/sites/activityLogs.yml +6 -1
- package/.mock/definition/sites/comments.yml +39 -14
- package/.mock/definition/sites/plans.yml +3 -1
- package/.mock/definition/sites/redirects.yml +12 -4
- package/.mock/definition/sites/robotsTxt.yml +12 -4
- package/.mock/definition/sites/scripts.yml +35 -8
- package/.mock/definition/sites/wellKnown.yml +20 -4
- package/.mock/definition/sites.yml +56 -14
- package/.mock/definition/token.yml +3 -2
- package/.mock/definition/users.yml +231 -33
- package/.mock/definition/webhooks.yml +0 -4
- package/.mock/definition/workspaces/auditLogs.yml +9 -3
- package/.mock/fern.config.json +1 -1
- package/Client.d.ts +22 -18
- package/Client.js +44 -2
- package/api/errors/BadRequestError.d.ts +2 -1
- package/api/errors/BadRequestError.js +19 -8
- package/api/errors/ConflictError.d.ts +2 -1
- package/api/errors/ConflictError.js +19 -8
- package/api/errors/ForbiddenError.d.ts +2 -1
- package/api/errors/ForbiddenError.js +19 -8
- package/api/errors/InternalServerError.d.ts +2 -1
- package/api/errors/InternalServerError.js +19 -8
- package/api/errors/NotFoundError.d.ts +2 -1
- package/api/errors/NotFoundError.js +19 -8
- package/api/errors/TooManyRequestsError.d.ts +2 -1
- package/api/errors/TooManyRequestsError.js +19 -8
- package/api/errors/UnauthorizedError.d.ts +2 -1
- package/api/errors/UnauthorizedError.js +19 -8
- package/api/resources/accessGroups/client/Client.d.ts +15 -6
- package/api/resources/accessGroups/client/Client.js +62 -31
- package/api/resources/accessGroups/client/index.d.ts +1 -0
- package/api/resources/accessGroups/client/requests/AccessGroupsListRequest.d.ts +5 -1
- package/api/resources/accessGroups/types/AccessGroupsListRequestSort.d.ts +1 -1
- package/api/resources/assets/client/Client.d.ts +29 -13
- package/api/resources/assets/client/Client.js +232 -137
- package/api/resources/assets/client/index.d.ts +1 -0
- 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 +23 -13
- package/api/resources/collections/client/Client.js +127 -79
- package/api/resources/collections/client/index.d.ts +1 -0
- package/api/resources/collections/resources/fields/client/Client.d.ts +20 -11
- package/api/resources/collections/resources/fields/client/Client.js +98 -56
- package/api/resources/collections/resources/fields/client/index.d.ts +1 -0
- package/api/resources/collections/resources/index.js +17 -7
- package/api/resources/collections/resources/items/client/Client.d.ts +174 -86
- package/api/resources/collections/resources/items/client/Client.js +631 -330
- package/api/resources/collections/resources/items/client/index.d.ts +1 -0
- package/api/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.d.ts +8 -0
- package/api/resources/collections/resources/items/client/requests/ItemsCreateItemLiveRequest.d.ts +47 -0
- package/api/resources/collections/resources/items/client/requests/ItemsCreateItemRequest.d.ts +47 -0
- 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 +13 -1
- package/api/resources/collections/resources/items/client/requests/ItemsListItemsRequest.d.ts +13 -1
- package/api/resources/collections/resources/items/client/requests/ItemsUpdateItemLiveRequest.d.ts +25 -0
- package/api/resources/collections/resources/items/client/requests/ItemsUpdateItemRequest.d.ts +25 -0
- package/api/resources/collections/resources/items/client/requests/ItemsUpdateItemsLiveRequest.d.ts +8 -0
- package/api/resources/collections/resources/items/client/requests/ItemsUpdateItemsRequest.d.ts +6 -66
- package/api/resources/collections/resources/items/client/requests/index.d.ts +4 -1
- package/api/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldData.d.ts +1 -1
- package/api/resources/collections/resources/items/types/ItemIDs.d.ts +9 -0
- package/api/resources/collections/resources/items/types/ItemIDsWithLocales.d.ts +10 -0
- package/{dist/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.d.ts → api/resources/collections/resources/items/types/ItemsCreateItemLiveRequestBody.d.ts} +1 -1
- package/api/resources/collections/resources/items/types/{ItemsCreateItemLiveRequest.d.ts → ItemsCreateItemRequestBody.d.ts} +1 -1
- package/api/resources/collections/resources/items/types/ItemsListItemsLiveRequestSortBy.d.ts +1 -1
- package/api/resources/collections/resources/items/types/ItemsListItemsLiveRequestSortOrder.d.ts +1 -1
- package/api/resources/collections/resources/items/types/ItemsListItemsRequestSortBy.d.ts +1 -1
- package/api/resources/collections/resources/items/types/ItemsListItemsRequestSortOrder.d.ts +1 -1
- package/api/resources/collections/resources/items/types/ItemsPublishItemRequest.d.ts +11 -0
- package/api/resources/collections/resources/items/types/ItemsPublishItemRequestItemsItemsItem.d.ts +9 -0
- package/api/resources/collections/resources/items/types/{ItemsCreateItemRequest.d.ts → ItemsUpdateItemsResponse.d.ts} +1 -1
- package/api/resources/collections/resources/items/types/index.d.ts +7 -2
- package/api/resources/collections/resources/items/types/index.js +7 -2
- package/api/resources/components/client/Client.d.ts +39 -15
- package/api/resources/components/client/Client.js +194 -105
- package/api/resources/components/client/index.d.ts +1 -0
- package/api/resources/components/client/requests/ComponentDomWrite.d.ts +8 -1
- package/api/resources/components/client/requests/ComponentPropertiesWrite.d.ts +8 -1
- package/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +11 -2
- package/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +11 -2
- package/api/resources/components/client/requests/ComponentsListRequest.d.ts +9 -1
- package/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +1 -1
- package/api/resources/ecommerce/client/Client.d.ts +10 -5
- package/api/resources/ecommerce/client/Client.js +51 -28
- package/api/resources/forms/client/Client.d.ts +33 -14
- package/api/resources/forms/client/Client.js +215 -137
- package/api/resources/forms/client/index.d.ts +1 -0
- package/api/resources/forms/client/requests/FormsListRequest.d.ts +4 -1
- package/api/resources/forms/client/requests/FormsListSubmissionsBySiteRequest.d.ts +3 -1
- package/api/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +4 -1
- package/api/resources/index.js +17 -7
- package/api/resources/inventory/client/Client.d.ts +18 -12
- package/api/resources/inventory/client/Client.js +88 -55
- package/api/resources/inventory/client/index.d.ts +1 -0
- package/api/resources/inventory/types/EcommInventoryChangedPayload.d.ts +8 -0
- package/api/resources/inventory/types/InventoryUpdateRequestInventoryType.d.ts +1 -1
- package/api/resources/inventory/types/index.d.ts +1 -0
- package/api/resources/inventory/types/index.js +1 -0
- package/api/resources/orders/client/Client.d.ts +25 -11
- package/api/resources/orders/client/Client.js +201 -124
- package/api/resources/orders/client/index.d.ts +1 -0
- package/api/resources/orders/client/requests/OrdersListRequest.d.ts +5 -1
- package/api/resources/orders/types/OrdersListRequestStatus.d.ts +1 -1
- package/api/resources/orders/types/OrdersRefundRequestReason.d.ts +1 -1
- package/api/resources/pages/client/Client.d.ts +43 -47
- package/api/resources/pages/client/Client.js +185 -139
- package/api/resources/pages/client/index.d.ts +1 -0
- package/api/resources/pages/client/requests/PageMetadataWrite.d.ts +43 -0
- 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/client/requests/index.d.ts +1 -1
- package/api/resources/pages/resources/index.js +17 -7
- package/api/resources/pages/resources/scripts/client/Client.d.ts +19 -10
- package/api/resources/pages/resources/scripts/client/Client.js +96 -56
- package/api/resources/pages/types/PageDomWriteNodesItem.d.ts +1 -1
- package/api/resources/pages/types/PageMetadataWriteOpenGraph.d.ts +16 -0
- package/api/resources/pages/types/PageMetadataWriteOpenGraph.js +5 -0
- package/api/resources/pages/types/PageMetadataWriteSeo.d.ts +12 -0
- package/api/resources/pages/types/PageMetadataWriteSeo.js +5 -0
- package/api/resources/pages/types/index.d.ts +2 -0
- package/api/resources/pages/types/index.js +2 -0
- package/api/resources/products/client/Client.d.ts +36 -13
- package/api/resources/products/client/Client.js +204 -120
- package/api/resources/products/client/index.d.ts +1 -0
- package/api/resources/products/client/requests/ProductSkuCreate.d.ts +2 -2
- package/api/resources/products/client/requests/ProductsCreateSkuRequest.d.ts +5 -0
- package/api/resources/products/client/requests/ProductsListRequest.d.ts +4 -1
- package/api/resources/products/client/requests/ProductsUpdateSkuRequest.d.ts +5 -0
- package/api/resources/products/types/ProductsCreateSkuResponse.d.ts +1 -1
- package/api/resources/scripts/client/Client.d.ts +14 -7
- package/api/resources/scripts/client/Client.js +99 -56
- package/api/resources/scripts/client/index.d.ts +1 -0
- package/api/resources/sites/client/Client.d.ts +43 -27
- package/api/resources/sites/client/Client.js +228 -149
- package/api/resources/sites/client/index.d.ts +1 -0
- package/api/resources/sites/client/requests/SitesPublishRequest.d.ts +4 -1
- package/api/resources/sites/resources/activityLogs/client/Client.d.ts +14 -6
- package/api/resources/sites/resources/activityLogs/client/Client.js +53 -27
- package/api/resources/sites/resources/activityLogs/client/index.d.ts +1 -0
- package/api/resources/sites/resources/activityLogs/client/requests/ActivityLogsListRequest.d.ts +4 -1
- package/api/resources/sites/resources/comments/client/Client.d.ts +29 -10
- package/api/resources/sites/resources/comments/client/Client.js +148 -73
- package/api/resources/sites/resources/comments/client/index.d.ts +1 -0
- 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/comments/types/CommentsGetCommentThreadRequestSortBy.d.ts +1 -1
- package/api/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortOrder.d.ts +1 -1
- package/api/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortBy.d.ts +1 -1
- package/api/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortOrder.d.ts +1 -1
- package/api/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortBy.d.ts +1 -1
- package/api/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortOrder.d.ts +1 -1
- package/api/resources/sites/resources/index.js +17 -7
- package/api/resources/sites/resources/plans/client/Client.d.ts +10 -5
- package/api/resources/sites/resources/plans/client/Client.js +49 -26
- package/api/resources/sites/resources/redirects/client/Client.d.ts +16 -8
- package/api/resources/sites/resources/redirects/client/Client.js +124 -73
- package/api/resources/sites/resources/robotsTxt/client/Client.d.ts +16 -8
- package/api/resources/sites/resources/robotsTxt/client/Client.js +124 -71
- package/api/resources/sites/resources/scripts/client/Client.d.ts +26 -11
- package/api/resources/sites/resources/scripts/client/Client.js +126 -73
- package/api/resources/sites/resources/scripts/client/index.d.ts +1 -0
- package/api/resources/sites/resources/scripts/client/requests/ScriptsListCustomCodeBlocksRequest.d.ts +4 -1
- package/api/resources/sites/resources/wellKnown/client/Client.d.ts +15 -8
- package/api/resources/sites/resources/wellKnown/client/Client.js +60 -30
- package/api/resources/sites/resources/wellKnown/client/index.d.ts +1 -0
- package/api/resources/sites/resources/wellKnown/client/requests/WellKnownFile.d.ts +3 -2
- package/api/resources/sites/resources/wellKnown/types/WellKnownFileContentType.d.ts +1 -1
- package/api/resources/token/client/Client.d.ts +12 -6
- package/api/resources/token/client/Client.js +67 -36
- package/api/resources/users/client/Client.d.ts +36 -18
- package/api/resources/users/client/Client.js +173 -104
- package/api/resources/users/client/index.d.ts +1 -0
- package/api/resources/users/client/requests/UsersInviteRequest.d.ts +1 -1
- package/api/resources/users/client/requests/UsersListRequest.d.ts +5 -1
- package/api/resources/users/client/requests/index.d.ts +0 -1
- package/api/resources/users/types/UserAccountAddedPayload.d.ts +8 -0
- package/api/resources/users/types/UserAccountAddedPayload.js +5 -0
- package/api/resources/users/types/UserAccountAddedPayloadPayload.d.ts +23 -0
- package/api/resources/users/types/UserAccountAddedPayloadPayload.js +5 -0
- package/api/resources/users/types/UserAccountAddedPayloadPayloadData.d.ts +12 -0
- package/api/resources/users/types/UserAccountAddedPayloadPayloadData.js +5 -0
- package/api/resources/users/types/UserAccountDeletedPayload.d.ts +8 -0
- package/api/resources/users/types/UserAccountDeletedPayload.js +5 -0
- package/api/resources/users/types/UserAccountDeletedPayloadPayload.d.ts +23 -0
- package/api/resources/users/types/UserAccountDeletedPayloadPayload.js +5 -0
- package/api/resources/users/types/UserAccountDeletedPayloadPayloadData.d.ts +12 -0
- package/api/resources/users/types/UserAccountDeletedPayloadPayloadData.js +5 -0
- package/api/resources/users/types/UserAccountUpdatedPayload.d.ts +8 -0
- package/api/resources/users/types/UserAccountUpdatedPayload.js +5 -0
- package/api/resources/users/types/UserAccountUpdatedPayloadPayload.d.ts +23 -0
- package/api/resources/users/types/UserAccountUpdatedPayloadPayload.js +5 -0
- package/api/resources/users/types/UserAccountUpdatedPayloadPayloadData.d.ts +12 -0
- package/api/resources/users/types/UserAccountUpdatedPayloadPayloadData.js +5 -0
- package/api/resources/users/types/UsersListRequestSort.d.ts +1 -1
- package/api/resources/users/types/index.d.ts +9 -1
- package/api/resources/users/types/index.js +9 -1
- package/api/resources/webhooks/client/Client.d.ts +18 -10
- package/api/resources/webhooks/client/Client.js +117 -71
- package/api/resources/workspaces/client/Client.d.ts +6 -12
- package/api/resources/workspaces/client/Client.js +1 -1
- package/api/resources/workspaces/resources/auditLogs/client/Client.d.ts +16 -7
- package/api/resources/workspaces/resources/auditLogs/client/Client.js +69 -32
- package/api/resources/workspaces/resources/auditLogs/client/index.d.ts +1 -0
- package/api/resources/workspaces/resources/auditLogs/client/requests/AuditLogsGetWorkspaceAuditLogsRequest.d.ts +6 -2
- package/api/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestEventType.d.ts +1 -1
- package/api/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestSortOrder.d.ts +1 -1
- package/api/resources/workspaces/resources/index.js +17 -7
- package/api/types/Application.d.ts +10 -1
- package/api/types/Asset.d.ts +2 -2
- package/api/types/AssetVariant.d.ts +6 -6
- package/api/types/Authorization.d.ts +1 -1
- package/api/types/BadRequestErrorBody.d.ts +1 -1
- package/api/types/BulkCollectionItem.d.ts +1 -1
- package/api/types/Collection.d.ts +2 -2
- package/api/types/CollectionItemChanged.d.ts +12 -0
- package/api/types/CollectionItemChanged.js +5 -0
- package/api/types/CollectionItemCreated.d.ts +12 -0
- package/api/types/CollectionItemCreated.js +5 -0
- package/api/types/CollectionItemPublished.d.ts +9 -0
- package/api/types/CollectionItemPublished.js +5 -0
- package/api/types/CollectionItemRemoved.d.ts +10 -0
- package/api/types/CollectionItemRemoved.js +5 -0
- package/api/types/CollectionItemRemovedPayload.d.ts +25 -0
- package/api/types/CollectionItemRemovedPayload.js +5 -0
- package/api/types/CollectionItemRemovedPayloadFieldData.d.ts +9 -0
- package/api/types/CollectionItemRemovedPayloadFieldData.js +5 -0
- package/api/types/CollectionItemUnpublished.d.ts +10 -0
- package/api/types/CollectionItemUnpublished.js +5 -0
- package/api/types/CollectionItemUnpublishedPayload.d.ts +25 -0
- package/api/types/CollectionItemUnpublishedPayload.js +5 -0
- package/api/types/CollectionItemUnpublishedPayloadFieldData.d.ts +9 -0
- package/api/types/CollectionItemUnpublishedPayloadFieldData.js +5 -0
- package/api/types/Comment.d.ts +12 -0
- package/api/types/Comment.js +5 -0
- package/api/types/CommentPayload.d.ts +38 -0
- package/api/types/CommentPayload.js +5 -0
- package/api/types/CommentPayloadAuthor.d.ts +11 -0
- package/api/types/CommentPayloadAuthor.js +5 -0
- package/api/types/CommentPayloadMentionedUsersItem.d.ts +11 -0
- package/api/types/CommentPayloadMentionedUsersItem.js +5 -0
- package/api/types/CommentReply.d.ts +2 -2
- package/api/types/ComponentNode.d.ts +3 -3
- package/api/types/ComponentPropertyType.d.ts +1 -1
- package/api/types/Conflict.d.ts +1 -1
- package/api/types/ConflictErrorBody.d.ts +1 -1
- package/api/types/CustomCodeBlockType.d.ts +1 -1
- package/api/types/CustomRoleAuditLogItemEventSubType.d.ts +1 -1
- package/api/types/Dom.d.ts +2 -0
- package/api/types/DuplicateUserEmail.d.ts +1 -1
- package/api/types/ErrorCode.d.ts +1 -1
- package/api/types/Field.d.ts +2 -0
- package/api/types/FieldCreate.d.ts +1 -1
- package/api/types/FieldType.d.ts +1 -1
- package/api/types/FieldValidations.d.ts +10 -0
- package/api/types/FieldValidations.js +5 -0
- package/api/types/FieldValidationsAdditionalProperties.d.ts +5 -0
- package/api/types/FieldValidationsAdditionalProperties.js +5 -0
- package/api/types/FieldValidationsAdditionalPropertiesAdditionalProperties.d.ts +6 -0
- package/api/types/FieldValidationsAdditionalPropertiesAdditionalProperties.js +5 -0
- package/api/types/ForbiddenErrorBody.d.ts +1 -1
- package/api/types/FormField.d.ts +1 -1
- package/api/types/FormFieldValueType.d.ts +1 -1
- package/api/types/FormSubmissionTrigger.d.ts +13 -0
- package/api/types/FormSubmissionTrigger.js +5 -0
- package/api/types/FormSubmissionTriggerPayload.d.ts +25 -0
- package/api/types/FormSubmissionTriggerPayload.js +5 -0
- package/api/types/FormSubmissionTriggerPayloadSchemaItem.d.ts +12 -0
- package/api/types/FormSubmissionTriggerPayloadSchemaItem.js +5 -0
- package/api/types/FormSubmissionTriggerPayloadSchemaItemFieldType.d.ts +14 -0
- package/api/types/FormSubmissionTriggerPayloadSchemaItemFieldType.js +13 -0
- package/api/types/ImageNode.d.ts +2 -2
- package/api/types/InvalidDomain.d.ts +1 -1
- package/api/types/InvalidScopes.d.ts +1 -1
- package/api/types/InventoryItemInventoryType.d.ts +1 -1
- package/api/types/ItemsListItemsLiveRequestLastPublished.d.ts +9 -0
- package/api/types/ItemsListItemsLiveRequestLastPublished.js +5 -0
- package/api/types/ItemsListItemsRequestLastPublished.d.ts +9 -0
- package/api/types/ItemsListItemsRequestLastPublished.js +5 -0
- package/api/types/NewOrder.d.ts +12 -0
- package/api/types/NewOrder.js +5 -0
- package/api/types/NoDomains.d.ts +1 -1
- package/api/types/Node.d.ts +1 -1
- package/api/types/NotEnterprisePlanSite.d.ts +1 -1
- package/api/types/NotEnterprisePlanWorkspace.d.ts +1 -1
- package/api/types/OAuthScope.d.ts +1 -1
- package/api/types/Order.d.ts +2 -2
- package/api/types/OrderAddressJapanType.d.ts +1 -1
- package/api/types/OrderAddressType.d.ts +1 -1
- package/api/types/OrderBillingAddress.d.ts +27 -0
- package/api/types/OrderBillingAddress.js +5 -0
- package/api/types/OrderBillingAddressJapanType.d.ts +11 -0
- package/api/types/OrderBillingAddressJapanType.js +10 -0
- package/api/types/OrderBillingAddressType.d.ts +11 -0
- package/api/types/OrderBillingAddressType.js +10 -0
- package/api/types/OrderDisputeLastStatus.d.ts +1 -1
- package/api/types/OrderShippingAddress.d.ts +27 -0
- package/api/types/OrderShippingAddress.js +5 -0
- package/api/types/OrderShippingAddressJapanType.d.ts +11 -0
- package/api/types/OrderShippingAddressJapanType.js +10 -0
- package/api/types/OrderShippingAddressType.d.ts +11 -0
- package/api/types/OrderShippingAddressType.js +10 -0
- package/api/types/OrderStatus.d.ts +1 -1
- package/api/types/OrderTotalsExtrasItemType.d.ts +1 -1
- package/api/types/Page.d.ts +3 -1
- package/api/types/PageCreatedWebhook.d.ts +13 -0
- package/api/types/PageCreatedWebhook.js +5 -0
- package/api/types/PageCreatedWebhookPayload.d.ts +13 -0
- package/api/types/PageCreatedWebhookPayload.js +5 -0
- package/api/types/PageDeletedWebhook.d.ts +13 -0
- package/api/types/PageDeletedWebhook.js +5 -0
- package/api/types/PageDeletedWebhookPayload.d.ts +13 -0
- package/api/types/PageDeletedWebhookPayload.js +5 -0
- package/api/types/PageMetadataUpdatedWebhook.d.ts +13 -0
- package/api/types/PageMetadataUpdatedWebhook.js +5 -0
- package/api/types/PageMetadataUpdatedWebhookPayload.d.ts +13 -0
- package/api/types/PageMetadataUpdatedWebhookPayload.js +5 -0
- package/api/types/Payload.d.ts +25 -0
- package/api/types/Payload.js +5 -0
- package/api/types/PayloadFieldData.d.ts +9 -0
- package/api/types/PayloadFieldData.js +5 -0
- package/api/types/ProductFieldData.d.ts +2 -2
- package/api/types/ProductFieldDataEcProductType.d.ts +1 -1
- package/api/types/ProductFieldDataTaxCategory.d.ts +1 -1
- package/api/types/PublishStatus.d.ts +1 -1
- package/api/types/ReferenceFieldType.d.ts +1 -1
- package/api/types/RegisteredScriptList.d.ts +1 -0
- package/api/types/ScriptApplyLocation.d.ts +1 -1
- package/api/types/Scripts.d.ts +1 -1
- package/{dist/api/types/SelectNodeWrite.d.ts → api/types/Select.d.ts} +1 -1
- package/api/types/Select.js +5 -0
- package/api/types/SingleLocaleCreatedPayload.d.ts +22 -0
- package/api/types/SingleLocaleCreatedPayload.js +5 -0
- package/api/types/SingleLocaleCreatedPayloadFieldData.d.ts +9 -0
- package/api/types/SingleLocaleCreatedPayloadFieldData.js +5 -0
- package/api/types/SiteActivityLogItemEvent.d.ts +1 -1
- package/api/types/SiteActivityLogItemResourceOperation.d.ts +1 -1
- package/api/types/SiteDataCollectionType.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/SitePlanId.d.ts +1 -1
- package/api/types/SitePlanName.d.ts +1 -1
- package/api/types/SitePublish.d.ts +13 -0
- package/api/types/SitePublish.js +5 -0
- package/api/types/SitePublishPayload.d.ts +16 -0
- package/api/types/SitePublishPayload.js +5 -0
- package/api/types/SkuFieldData.d.ts +0 -4
- package/api/types/SkuFieldDataEcSkuBillingMethod.d.ts +1 -1
- package/api/types/SkuFieldDataEcSkuSubscriptionPlanInterval.d.ts +1 -1
- package/api/types/SkuFieldDataEcSkuSubscriptionPlanPlansItemStatus.d.ts +1 -1
- package/api/types/SkuValueList.d.ts +1 -1
- package/api/types/StaticFieldType.d.ts +1 -1
- package/api/types/StripeCardBrand.d.ts +1 -1
- package/api/types/TextNode.d.ts +2 -2
- package/api/types/TriggerType.d.ts +2 -1
- package/api/types/TriggerType.js +1 -0
- package/api/types/UpdatedOrder.d.ts +12 -0
- package/api/types/UpdatedOrder.js +5 -0
- package/api/types/User.d.ts +0 -1
- package/api/types/UserAccessAuditLogItemEventSubType.d.ts +1 -1
- package/api/types/UserAccessGroupsItemType.d.ts +1 -1
- package/api/types/UserLimitReached.d.ts +1 -1
- package/api/types/UserStatus.d.ts +1 -1
- package/api/types/UsersNotEnabled.d.ts +1 -1
- package/api/types/WorkspaceAuditLogItem.d.ts +1 -1
- package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.d.ts +9 -0
- package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.js +5 -0
- package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +2 -1
- package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +1 -0
- package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipUserType.d.ts +1 -1
- package/api/types/WorkspaceAuditLogItemPayloadUserAccessMethod.d.ts +1 -1
- package/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationMethod.d.ts +1 -1
- package/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.d.ts +7 -0
- package/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.js +5 -0
- package/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.d.ts +1 -1
- package/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +2 -1
- package/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +1 -0
- package/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType.d.ts +1 -1
- 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/WorkspaceMembershipAuditLogItemEventSubType.d.ts +1 -1
- package/api/types/index.d.ts +47 -3
- package/api/types/index.js +47 -3
- package/core/auth/BearerToken.d.ts +1 -1
- package/core/fetcher/APIResponse.d.ts +11 -1
- package/core/fetcher/Fetcher.d.ts +4 -3
- package/core/fetcher/Fetcher.js +35 -14
- package/core/fetcher/Headers.d.ts +2 -0
- package/core/fetcher/Headers.js +84 -0
- package/core/fetcher/HttpResponsePromise.d.ts +58 -0
- package/core/fetcher/HttpResponsePromise.js +103 -0
- package/core/fetcher/RawResponse.d.ts +29 -0
- package/core/fetcher/RawResponse.js +44 -0
- package/core/fetcher/Supplier.d.ts +1 -1
- package/core/fetcher/createRequestUrl.d.ts +1 -1
- package/core/fetcher/createRequestUrl.js +1 -2
- package/core/fetcher/getFetchFn.js +18 -9
- package/core/fetcher/getHeader.js +1 -2
- package/core/fetcher/getRequestBody.js +5 -5
- package/core/fetcher/getResponseBody.js +1 -2
- package/core/fetcher/index.d.ts +3 -0
- package/core/fetcher/index.js +7 -1
- package/core/fetcher/makeRequest.d.ts +1 -1
- package/core/fetcher/requestWithRetries.js +4 -5
- package/core/fetcher/signals.d.ts +0 -1
- package/core/fetcher/signals.js +2 -3
- package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +0 -1
- package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +6 -4
- package/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +1 -1
- package/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +1 -1
- package/core/fetcher/stream-wrappers/chooseStreamWrapper.js +18 -9
- package/core/headers.d.ts +3 -0
- package/core/headers.js +29 -0
- package/core/index.d.ts +1 -1
- package/core/index.js +18 -8
- package/core/json.d.ts +15 -0
- package/core/json.js +24 -0
- package/core/runtime/runtime.d.ts +1 -1
- package/core/runtime/runtime.js +50 -41
- package/core/schemas/Schema.d.ts +7 -5
- package/core/schemas/Schema.js +2 -0
- package/core/schemas/builders/bigint/bigint.d.ts +1 -1
- package/core/schemas/builders/bigint/bigint.js +22 -19
- package/core/schemas/builders/date/date.js +1 -2
- package/core/schemas/builders/enum/enum.js +1 -2
- package/core/schemas/builders/lazy/lazy.d.ts +1 -1
- package/core/schemas/builders/lazy/lazy.js +3 -4
- package/core/schemas/builders/lazy/lazyObject.js +1 -2
- package/core/schemas/builders/list/list.js +1 -2
- package/core/schemas/builders/literals/booleanLiteral.js +1 -2
- package/core/schemas/builders/literals/stringLiteral.js +1 -2
- package/core/schemas/builders/object/object.d.ts +1 -1
- package/core/schemas/builders/object/object.js +3 -3
- package/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +3 -3
- package/core/schemas/builders/object/objectWithoutOptionalProperties.js +1 -2
- package/core/schemas/builders/object/property.js +2 -3
- package/core/schemas/builders/object/types.d.ts +11 -11
- package/core/schemas/builders/object-like/getObjectLikeUtils.js +2 -3
- package/core/schemas/builders/object-like/types.d.ts +1 -1
- package/core/schemas/builders/record/record.js +2 -4
- package/core/schemas/builders/record/types.d.ts +2 -2
- package/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +4 -0
- package/core/schemas/builders/schema-utils/getSchemaUtils.js +67 -4
- package/core/schemas/builders/schema-utils/stringifyValidationErrors.js +1 -2
- package/core/schemas/builders/set/set.js +1 -2
- package/core/schemas/builders/undiscriminated-union/types.d.ts +4 -4
- package/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +1 -2
- package/core/schemas/builders/union/discriminant.js +1 -2
- package/core/schemas/builders/union/types.d.ts +6 -6
- package/core/schemas/builders/union/union.d.ts +1 -1
- package/core/schemas/builders/union/union.js +1 -2
- package/core/schemas/utils/MaybePromise.d.ts +1 -1
- package/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +4 -4
- package/core/schemas/utils/createIdentitySchemaCreator.js +1 -2
- package/core/schemas/utils/entries.d.ts +1 -1
- package/core/schemas/utils/entries.js +1 -2
- package/core/schemas/utils/filterObject.d.ts +1 -1
- package/core/schemas/utils/filterObject.js +1 -2
- package/core/schemas/utils/getErrorMessageForIncorrectType.js +1 -2
- package/core/schemas/utils/isPlainObject.js +1 -2
- package/core/schemas/utils/keys.d.ts +1 -1
- package/core/schemas/utils/keys.js +1 -2
- package/core/schemas/utils/maybeSkipValidation.js +1 -2
- package/core/schemas/utils/partition.js +1 -2
- package/dist/Client.d.ts +22 -18
- package/dist/Client.js +44 -2
- package/dist/api/errors/BadRequestError.d.ts +2 -1
- package/dist/api/errors/BadRequestError.js +19 -8
- package/dist/api/errors/ConflictError.d.ts +2 -1
- package/dist/api/errors/ConflictError.js +19 -8
- package/dist/api/errors/ForbiddenError.d.ts +2 -1
- package/dist/api/errors/ForbiddenError.js +19 -8
- package/dist/api/errors/InternalServerError.d.ts +2 -1
- package/dist/api/errors/InternalServerError.js +19 -8
- package/dist/api/errors/NotFoundError.d.ts +2 -1
- package/dist/api/errors/NotFoundError.js +19 -8
- package/dist/api/errors/TooManyRequestsError.d.ts +2 -1
- package/dist/api/errors/TooManyRequestsError.js +19 -8
- package/dist/api/errors/UnauthorizedError.d.ts +2 -1
- package/dist/api/errors/UnauthorizedError.js +19 -8
- package/dist/api/resources/accessGroups/client/Client.d.ts +15 -6
- package/dist/api/resources/accessGroups/client/Client.js +62 -31
- package/dist/api/resources/accessGroups/client/index.d.ts +1 -0
- package/dist/api/resources/accessGroups/client/requests/AccessGroupsListRequest.d.ts +5 -1
- package/dist/api/resources/accessGroups/types/AccessGroupsListRequestSort.d.ts +1 -1
- package/dist/api/resources/assets/client/Client.d.ts +29 -13
- package/dist/api/resources/assets/client/Client.js +232 -137
- package/dist/api/resources/assets/client/index.d.ts +1 -0
- package/dist/api/resources/assets/client/requests/AssetsListRequest.d.ts +20 -0
- package/dist/api/resources/assets/client/requests/AssetsListRequest.js +5 -0
- package/dist/api/resources/assets/client/requests/index.d.ts +1 -0
- package/dist/api/resources/collections/client/Client.d.ts +23 -13
- package/dist/api/resources/collections/client/Client.js +127 -79
- package/dist/api/resources/collections/client/index.d.ts +1 -0
- package/dist/api/resources/collections/resources/fields/client/Client.d.ts +20 -11
- package/dist/api/resources/collections/resources/fields/client/Client.js +98 -56
- package/dist/api/resources/collections/resources/fields/client/index.d.ts +1 -0
- package/dist/api/resources/collections/resources/index.js +17 -7
- package/dist/api/resources/collections/resources/items/client/Client.d.ts +174 -86
- package/dist/api/resources/collections/resources/items/client/Client.js +631 -330
- package/dist/api/resources/collections/resources/items/client/index.d.ts +1 -0
- package/dist/api/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.d.ts +8 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsCreateItemLiveRequest.d.ts +47 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsCreateItemLiveRequest.js +5 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsCreateItemRequest.d.ts +47 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsCreateItemRequest.js +5 -0
- 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 +13 -1
- package/dist/api/resources/collections/resources/items/client/requests/ItemsListItemsRequest.d.ts +13 -1
- package/dist/api/resources/collections/resources/items/client/requests/ItemsUpdateItemLiveRequest.d.ts +25 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsUpdateItemLiveRequest.js +5 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsUpdateItemRequest.d.ts +25 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsUpdateItemRequest.js +5 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsUpdateItemsLiveRequest.d.ts +8 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsUpdateItemsRequest.d.ts +6 -66
- package/dist/api/resources/collections/resources/items/client/requests/index.d.ts +4 -1
- package/dist/api/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldData.d.ts +1 -1
- package/dist/api/resources/collections/resources/items/types/ItemIDs.d.ts +9 -0
- package/dist/api/resources/collections/resources/items/types/ItemIDs.js +5 -0
- package/dist/api/resources/collections/resources/items/types/ItemIDsWithLocales.d.ts +10 -0
- package/dist/api/resources/collections/resources/items/types/ItemIDsWithLocales.js +5 -0
- package/dist/api/resources/collections/resources/items/types/{ItemsCreateItemRequest.d.ts → ItemsCreateItemLiveRequestBody.d.ts} +1 -1
- package/dist/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequestBody.js +5 -0
- package/dist/api/resources/collections/resources/items/types/ItemsCreateItemRequestBody.d.ts +5 -0
- package/dist/api/resources/collections/resources/items/types/ItemsCreateItemRequestBody.js +5 -0
- package/dist/api/resources/collections/resources/items/types/ItemsListItemsLiveRequestSortBy.d.ts +1 -1
- package/dist/api/resources/collections/resources/items/types/ItemsListItemsLiveRequestSortOrder.d.ts +1 -1
- package/dist/api/resources/collections/resources/items/types/ItemsListItemsRequestSortBy.d.ts +1 -1
- package/dist/api/resources/collections/resources/items/types/ItemsListItemsRequestSortOrder.d.ts +1 -1
- package/dist/api/resources/collections/resources/items/types/ItemsPublishItemRequest.d.ts +11 -0
- package/dist/api/resources/collections/resources/items/types/ItemsPublishItemRequest.js +5 -0
- package/dist/api/resources/collections/resources/items/types/ItemsPublishItemRequestItemsItemsItem.d.ts +9 -0
- package/dist/api/resources/collections/resources/items/types/ItemsPublishItemRequestItemsItemsItem.js +5 -0
- package/dist/api/resources/collections/resources/items/types/ItemsUpdateItemsResponse.d.ts +5 -0
- package/dist/api/resources/collections/resources/items/types/ItemsUpdateItemsResponse.js +5 -0
- package/dist/api/resources/collections/resources/items/types/index.d.ts +7 -2
- package/dist/api/resources/collections/resources/items/types/index.js +7 -2
- package/dist/api/resources/components/client/Client.d.ts +39 -15
- package/dist/api/resources/components/client/Client.js +194 -105
- package/dist/api/resources/components/client/index.d.ts +1 -0
- package/dist/api/resources/components/client/requests/ComponentDomWrite.d.ts +8 -1
- package/dist/api/resources/components/client/requests/ComponentPropertiesWrite.d.ts +8 -1
- package/dist/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +11 -2
- package/dist/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +11 -2
- package/dist/api/resources/components/client/requests/ComponentsListRequest.d.ts +9 -1
- package/dist/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +1 -1
- package/dist/api/resources/ecommerce/client/Client.d.ts +10 -5
- package/dist/api/resources/ecommerce/client/Client.js +51 -28
- package/dist/api/resources/forms/client/Client.d.ts +33 -14
- package/dist/api/resources/forms/client/Client.js +215 -137
- package/dist/api/resources/forms/client/index.d.ts +1 -0
- package/dist/api/resources/forms/client/requests/FormsListRequest.d.ts +4 -1
- package/dist/api/resources/forms/client/requests/FormsListSubmissionsBySiteRequest.d.ts +3 -1
- package/dist/api/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +4 -1
- package/dist/api/resources/index.js +17 -7
- package/dist/api/resources/inventory/client/Client.d.ts +18 -12
- package/dist/api/resources/inventory/client/Client.js +88 -55
- package/dist/api/resources/inventory/client/index.d.ts +1 -0
- package/dist/api/resources/inventory/types/EcommInventoryChangedPayload.d.ts +8 -0
- package/dist/api/resources/inventory/types/EcommInventoryChangedPayload.js +5 -0
- package/dist/api/resources/inventory/types/InventoryUpdateRequestInventoryType.d.ts +1 -1
- package/dist/api/resources/inventory/types/index.d.ts +1 -0
- package/dist/api/resources/inventory/types/index.js +1 -0
- package/dist/api/resources/orders/client/Client.d.ts +25 -11
- package/dist/api/resources/orders/client/Client.js +201 -124
- package/dist/api/resources/orders/client/index.d.ts +1 -0
- package/dist/api/resources/orders/client/requests/OrdersListRequest.d.ts +5 -1
- package/dist/api/resources/orders/types/OrdersListRequestStatus.d.ts +1 -1
- package/dist/api/resources/orders/types/OrdersRefundRequestReason.d.ts +1 -1
- package/dist/api/resources/pages/client/Client.d.ts +43 -47
- package/dist/api/resources/pages/client/Client.js +185 -139
- package/dist/api/resources/pages/client/index.d.ts +1 -0
- package/dist/api/resources/pages/client/requests/PageMetadataWrite.d.ts +43 -0
- package/dist/api/resources/pages/client/requests/PageMetadataWrite.js +5 -0
- 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/client/requests/index.d.ts +1 -1
- package/dist/api/resources/pages/resources/index.js +17 -7
- package/dist/api/resources/pages/resources/scripts/client/Client.d.ts +19 -10
- package/dist/api/resources/pages/resources/scripts/client/Client.js +96 -56
- package/dist/api/resources/pages/types/PageDomWriteNodesItem.d.ts +1 -1
- package/dist/api/resources/pages/types/PageMetadataWriteOpenGraph.d.ts +16 -0
- package/dist/api/resources/pages/types/PageMetadataWriteOpenGraph.js +5 -0
- package/dist/api/resources/pages/types/PageMetadataWriteSeo.d.ts +12 -0
- package/dist/api/resources/pages/types/PageMetadataWriteSeo.js +5 -0
- package/dist/api/resources/pages/types/index.d.ts +2 -0
- package/dist/api/resources/pages/types/index.js +2 -0
- package/dist/api/resources/products/client/Client.d.ts +36 -13
- package/dist/api/resources/products/client/Client.js +204 -120
- package/dist/api/resources/products/client/index.d.ts +1 -0
- package/dist/api/resources/products/client/requests/ProductSkuCreate.d.ts +2 -2
- package/dist/api/resources/products/client/requests/ProductsCreateSkuRequest.d.ts +5 -0
- package/dist/api/resources/products/client/requests/ProductsListRequest.d.ts +4 -1
- package/dist/api/resources/products/client/requests/ProductsUpdateSkuRequest.d.ts +5 -0
- package/dist/api/resources/products/types/ProductsCreateSkuResponse.d.ts +1 -1
- package/dist/api/resources/scripts/client/Client.d.ts +14 -7
- package/dist/api/resources/scripts/client/Client.js +99 -56
- package/dist/api/resources/scripts/client/index.d.ts +1 -0
- package/dist/api/resources/sites/client/Client.d.ts +43 -27
- package/dist/api/resources/sites/client/Client.js +228 -149
- package/dist/api/resources/sites/client/index.d.ts +1 -0
- package/dist/api/resources/sites/client/requests/SitesPublishRequest.d.ts +4 -1
- package/dist/api/resources/sites/resources/activityLogs/client/Client.d.ts +14 -6
- package/dist/api/resources/sites/resources/activityLogs/client/Client.js +53 -27
- package/dist/api/resources/sites/resources/activityLogs/client/index.d.ts +1 -0
- 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 +29 -10
- package/dist/api/resources/sites/resources/comments/client/Client.js +148 -73
- package/dist/api/resources/sites/resources/comments/client/index.d.ts +1 -0
- 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/comments/types/CommentsGetCommentThreadRequestSortBy.d.ts +1 -1
- package/dist/api/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortOrder.d.ts +1 -1
- package/dist/api/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortBy.d.ts +1 -1
- package/dist/api/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortOrder.d.ts +1 -1
- package/dist/api/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortBy.d.ts +1 -1
- package/dist/api/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortOrder.d.ts +1 -1
- package/dist/api/resources/sites/resources/index.js +17 -7
- package/dist/api/resources/sites/resources/plans/client/Client.d.ts +10 -5
- package/dist/api/resources/sites/resources/plans/client/Client.js +49 -26
- package/dist/api/resources/sites/resources/redirects/client/Client.d.ts +16 -8
- package/dist/api/resources/sites/resources/redirects/client/Client.js +124 -73
- package/dist/api/resources/sites/resources/robotsTxt/client/Client.d.ts +16 -8
- package/dist/api/resources/sites/resources/robotsTxt/client/Client.js +124 -71
- package/dist/api/resources/sites/resources/scripts/client/Client.d.ts +26 -11
- package/dist/api/resources/sites/resources/scripts/client/Client.js +126 -73
- package/dist/api/resources/sites/resources/scripts/client/index.d.ts +1 -0
- 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 +15 -8
- package/dist/api/resources/sites/resources/wellKnown/client/Client.js +60 -30
- package/dist/api/resources/sites/resources/wellKnown/client/index.d.ts +1 -0
- package/dist/api/resources/sites/resources/wellKnown/client/requests/WellKnownFile.d.ts +3 -2
- package/dist/api/resources/sites/resources/wellKnown/types/WellKnownFileContentType.d.ts +1 -1
- package/dist/api/resources/token/client/Client.d.ts +12 -6
- package/dist/api/resources/token/client/Client.js +67 -36
- package/dist/api/resources/users/client/Client.d.ts +36 -18
- package/dist/api/resources/users/client/Client.js +173 -104
- package/dist/api/resources/users/client/index.d.ts +1 -0
- package/dist/api/resources/users/client/requests/UsersInviteRequest.d.ts +1 -1
- package/dist/api/resources/users/client/requests/UsersListRequest.d.ts +5 -1
- package/dist/api/resources/users/client/requests/index.d.ts +0 -1
- package/dist/api/resources/users/types/UserAccountAddedPayload.d.ts +8 -0
- package/dist/api/resources/users/types/UserAccountAddedPayload.js +5 -0
- package/dist/api/resources/users/types/UserAccountAddedPayloadPayload.d.ts +23 -0
- package/dist/api/resources/users/types/UserAccountAddedPayloadPayload.js +5 -0
- package/dist/api/resources/users/types/UserAccountAddedPayloadPayloadData.d.ts +12 -0
- package/dist/api/resources/users/types/UserAccountAddedPayloadPayloadData.js +5 -0
- package/dist/api/resources/users/types/UserAccountDeletedPayload.d.ts +8 -0
- package/dist/api/resources/users/types/UserAccountDeletedPayload.js +5 -0
- package/dist/api/resources/users/types/UserAccountDeletedPayloadPayload.d.ts +23 -0
- package/dist/api/resources/users/types/UserAccountDeletedPayloadPayload.js +5 -0
- package/dist/api/resources/users/types/UserAccountDeletedPayloadPayloadData.d.ts +12 -0
- package/dist/api/resources/users/types/UserAccountDeletedPayloadPayloadData.js +5 -0
- package/dist/api/resources/users/types/UserAccountUpdatedPayload.d.ts +8 -0
- package/dist/api/resources/users/types/UserAccountUpdatedPayload.js +5 -0
- package/dist/api/resources/users/types/UserAccountUpdatedPayloadPayload.d.ts +23 -0
- package/dist/api/resources/users/types/UserAccountUpdatedPayloadPayload.js +5 -0
- package/dist/api/resources/users/types/UserAccountUpdatedPayloadPayloadData.d.ts +12 -0
- package/dist/api/resources/users/types/UserAccountUpdatedPayloadPayloadData.js +5 -0
- package/dist/api/resources/users/types/UsersListRequestSort.d.ts +1 -1
- package/dist/api/resources/users/types/index.d.ts +9 -1
- package/dist/api/resources/users/types/index.js +9 -1
- package/dist/api/resources/webhooks/client/Client.d.ts +18 -10
- package/dist/api/resources/webhooks/client/Client.js +117 -71
- package/dist/api/resources/workspaces/client/Client.d.ts +6 -12
- package/dist/api/resources/workspaces/client/Client.js +1 -1
- package/dist/api/resources/workspaces/resources/auditLogs/client/Client.d.ts +16 -7
- package/dist/api/resources/workspaces/resources/auditLogs/client/Client.js +69 -32
- package/dist/api/resources/workspaces/resources/auditLogs/client/index.d.ts +1 -0
- package/dist/api/resources/workspaces/resources/auditLogs/client/requests/AuditLogsGetWorkspaceAuditLogsRequest.d.ts +6 -2
- package/dist/api/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestEventType.d.ts +1 -1
- package/dist/api/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestSortOrder.d.ts +1 -1
- package/dist/api/resources/workspaces/resources/index.js +17 -7
- package/dist/api/types/Application.d.ts +10 -1
- package/dist/api/types/Asset.d.ts +2 -2
- package/dist/api/types/AssetVariant.d.ts +6 -6
- package/dist/api/types/Authorization.d.ts +1 -1
- package/dist/api/types/BadRequestErrorBody.d.ts +1 -1
- package/dist/api/types/BulkCollectionItem.d.ts +1 -1
- package/dist/api/types/Collection.d.ts +2 -2
- package/dist/api/types/CollectionItemChanged.d.ts +12 -0
- package/dist/api/types/CollectionItemChanged.js +5 -0
- package/dist/api/types/CollectionItemCreated.d.ts +12 -0
- package/dist/api/types/CollectionItemCreated.js +5 -0
- package/dist/api/types/CollectionItemPublished.d.ts +9 -0
- package/dist/api/types/CollectionItemPublished.js +5 -0
- package/dist/api/types/CollectionItemRemoved.d.ts +10 -0
- package/dist/api/types/CollectionItemRemoved.js +5 -0
- package/dist/api/types/CollectionItemRemovedPayload.d.ts +25 -0
- package/dist/api/types/CollectionItemRemovedPayload.js +5 -0
- package/dist/api/types/CollectionItemRemovedPayloadFieldData.d.ts +9 -0
- package/dist/api/types/CollectionItemRemovedPayloadFieldData.js +5 -0
- package/dist/api/types/CollectionItemUnpublished.d.ts +10 -0
- package/dist/api/types/CollectionItemUnpublished.js +5 -0
- package/dist/api/types/CollectionItemUnpublishedPayload.d.ts +25 -0
- package/dist/api/types/CollectionItemUnpublishedPayload.js +5 -0
- package/dist/api/types/CollectionItemUnpublishedPayloadFieldData.d.ts +9 -0
- package/dist/api/types/CollectionItemUnpublishedPayloadFieldData.js +5 -0
- package/dist/api/types/Comment.d.ts +12 -0
- package/dist/api/types/Comment.js +5 -0
- package/dist/api/types/CommentPayload.d.ts +38 -0
- package/dist/api/types/CommentPayload.js +5 -0
- package/dist/api/types/CommentPayloadAuthor.d.ts +11 -0
- package/dist/api/types/CommentPayloadAuthor.js +5 -0
- package/dist/api/types/CommentPayloadMentionedUsersItem.d.ts +11 -0
- package/dist/api/types/CommentPayloadMentionedUsersItem.js +5 -0
- package/dist/api/types/CommentReply.d.ts +2 -2
- package/dist/api/types/ComponentNode.d.ts +3 -3
- package/dist/api/types/ComponentPropertyType.d.ts +1 -1
- package/dist/api/types/Conflict.d.ts +1 -1
- package/dist/api/types/ConflictErrorBody.d.ts +1 -1
- package/dist/api/types/CustomCodeBlockType.d.ts +1 -1
- package/dist/api/types/CustomRoleAuditLogItemEventSubType.d.ts +1 -1
- package/dist/api/types/Dom.d.ts +2 -0
- package/dist/api/types/DuplicateUserEmail.d.ts +1 -1
- package/dist/api/types/ErrorCode.d.ts +1 -1
- package/dist/api/types/Field.d.ts +2 -0
- package/dist/api/types/FieldCreate.d.ts +1 -1
- package/dist/api/types/FieldType.d.ts +1 -1
- package/dist/api/types/FieldValidations.d.ts +10 -0
- package/dist/api/types/FieldValidations.js +5 -0
- package/dist/api/types/FieldValidationsAdditionalProperties.d.ts +5 -0
- package/dist/api/types/FieldValidationsAdditionalProperties.js +5 -0
- package/dist/api/types/FieldValidationsAdditionalPropertiesAdditionalProperties.d.ts +6 -0
- package/dist/api/types/FieldValidationsAdditionalPropertiesAdditionalProperties.js +5 -0
- package/dist/api/types/ForbiddenErrorBody.d.ts +1 -1
- package/dist/api/types/FormField.d.ts +1 -1
- package/dist/api/types/FormFieldValueType.d.ts +1 -1
- package/dist/api/types/FormSubmissionTrigger.d.ts +13 -0
- package/dist/api/types/FormSubmissionTrigger.js +5 -0
- package/dist/api/types/FormSubmissionTriggerPayload.d.ts +25 -0
- package/dist/api/types/FormSubmissionTriggerPayload.js +5 -0
- package/dist/api/types/FormSubmissionTriggerPayloadSchemaItem.d.ts +12 -0
- package/dist/api/types/FormSubmissionTriggerPayloadSchemaItem.js +5 -0
- package/dist/api/types/FormSubmissionTriggerPayloadSchemaItemFieldType.d.ts +14 -0
- package/dist/api/types/FormSubmissionTriggerPayloadSchemaItemFieldType.js +13 -0
- package/dist/api/types/ImageNode.d.ts +2 -2
- package/dist/api/types/InvalidDomain.d.ts +1 -1
- package/dist/api/types/InvalidScopes.d.ts +1 -1
- package/dist/api/types/InventoryItemInventoryType.d.ts +1 -1
- package/dist/api/types/ItemsListItemsLiveRequestLastPublished.d.ts +9 -0
- package/dist/api/types/ItemsListItemsLiveRequestLastPublished.js +5 -0
- package/dist/api/types/ItemsListItemsRequestLastPublished.d.ts +9 -0
- package/dist/api/types/ItemsListItemsRequestLastPublished.js +5 -0
- package/dist/api/types/NewOrder.d.ts +12 -0
- package/dist/api/types/NewOrder.js +5 -0
- package/dist/api/types/NoDomains.d.ts +1 -1
- package/dist/api/types/Node.d.ts +1 -1
- package/dist/api/types/NotEnterprisePlanSite.d.ts +1 -1
- package/dist/api/types/NotEnterprisePlanWorkspace.d.ts +1 -1
- package/dist/api/types/OAuthScope.d.ts +1 -1
- package/dist/api/types/Order.d.ts +2 -2
- package/dist/api/types/OrderAddressJapanType.d.ts +1 -1
- package/dist/api/types/OrderAddressType.d.ts +1 -1
- package/dist/api/types/OrderBillingAddress.d.ts +27 -0
- package/dist/api/types/OrderBillingAddress.js +5 -0
- package/dist/api/types/OrderBillingAddressJapanType.d.ts +11 -0
- package/dist/api/types/OrderBillingAddressJapanType.js +10 -0
- package/dist/api/types/OrderBillingAddressType.d.ts +11 -0
- package/dist/api/types/OrderBillingAddressType.js +10 -0
- package/dist/api/types/OrderDisputeLastStatus.d.ts +1 -1
- package/dist/api/types/OrderShippingAddress.d.ts +27 -0
- package/dist/api/types/OrderShippingAddress.js +5 -0
- package/dist/api/types/OrderShippingAddressJapanType.d.ts +11 -0
- package/dist/api/types/OrderShippingAddressJapanType.js +10 -0
- package/dist/api/types/OrderShippingAddressType.d.ts +11 -0
- package/dist/api/types/OrderShippingAddressType.js +10 -0
- package/dist/api/types/OrderStatus.d.ts +1 -1
- package/dist/api/types/OrderTotalsExtrasItemType.d.ts +1 -1
- package/dist/api/types/Page.d.ts +3 -1
- package/dist/api/types/PageCreatedWebhook.d.ts +13 -0
- package/dist/api/types/PageCreatedWebhook.js +5 -0
- package/dist/api/types/PageCreatedWebhookPayload.d.ts +13 -0
- package/dist/api/types/PageCreatedWebhookPayload.js +5 -0
- package/dist/api/types/PageDeletedWebhook.d.ts +13 -0
- package/dist/api/types/PageDeletedWebhook.js +5 -0
- package/dist/api/types/PageDeletedWebhookPayload.d.ts +13 -0
- package/dist/api/types/PageDeletedWebhookPayload.js +5 -0
- package/dist/api/types/PageMetadataUpdatedWebhook.d.ts +13 -0
- package/dist/api/types/PageMetadataUpdatedWebhook.js +5 -0
- package/dist/api/types/PageMetadataUpdatedWebhookPayload.d.ts +13 -0
- package/dist/api/types/PageMetadataUpdatedWebhookPayload.js +5 -0
- package/dist/api/types/Payload.d.ts +25 -0
- package/dist/api/types/Payload.js +5 -0
- package/dist/api/types/PayloadFieldData.d.ts +9 -0
- package/dist/api/types/PayloadFieldData.js +5 -0
- package/dist/api/types/ProductFieldData.d.ts +2 -2
- package/dist/api/types/ProductFieldDataEcProductType.d.ts +1 -1
- package/dist/api/types/ProductFieldDataTaxCategory.d.ts +1 -1
- package/dist/api/types/PublishStatus.d.ts +1 -1
- package/dist/api/types/ReferenceFieldType.d.ts +1 -1
- package/dist/api/types/RegisteredScriptList.d.ts +1 -0
- package/dist/api/types/ScriptApplyLocation.d.ts +1 -1
- package/dist/api/types/Scripts.d.ts +1 -1
- package/{api/types/SelectNodeWrite.d.ts → dist/api/types/Select.d.ts} +1 -1
- package/dist/api/types/Select.js +5 -0
- package/dist/api/types/SingleLocaleCreatedPayload.d.ts +22 -0
- package/dist/api/types/SingleLocaleCreatedPayload.js +5 -0
- package/dist/api/types/SingleLocaleCreatedPayloadFieldData.d.ts +9 -0
- package/dist/api/types/SingleLocaleCreatedPayloadFieldData.js +5 -0
- package/dist/api/types/SiteActivityLogItemEvent.d.ts +1 -1
- package/dist/api/types/SiteActivityLogItemResourceOperation.d.ts +1 -1
- package/dist/api/types/SiteDataCollectionType.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/SitePlanId.d.ts +1 -1
- package/dist/api/types/SitePlanName.d.ts +1 -1
- package/dist/api/types/SitePublish.d.ts +13 -0
- package/dist/api/types/SitePublish.js +5 -0
- package/dist/api/types/SitePublishPayload.d.ts +16 -0
- package/dist/api/types/SitePublishPayload.js +5 -0
- package/dist/api/types/SkuFieldData.d.ts +0 -4
- package/dist/api/types/SkuFieldDataEcSkuBillingMethod.d.ts +1 -1
- package/dist/api/types/SkuFieldDataEcSkuSubscriptionPlanInterval.d.ts +1 -1
- package/dist/api/types/SkuFieldDataEcSkuSubscriptionPlanPlansItemStatus.d.ts +1 -1
- package/dist/api/types/SkuValueList.d.ts +1 -1
- package/dist/api/types/StaticFieldType.d.ts +1 -1
- package/dist/api/types/StripeCardBrand.d.ts +1 -1
- package/dist/api/types/TextNode.d.ts +2 -2
- package/dist/api/types/TriggerType.d.ts +2 -1
- package/dist/api/types/TriggerType.js +1 -0
- package/dist/api/types/UpdatedOrder.d.ts +12 -0
- package/dist/api/types/UpdatedOrder.js +5 -0
- package/dist/api/types/User.d.ts +0 -1
- package/dist/api/types/UserAccessAuditLogItemEventSubType.d.ts +1 -1
- package/dist/api/types/UserAccessGroupsItemType.d.ts +1 -1
- package/dist/api/types/UserLimitReached.d.ts +1 -1
- package/dist/api/types/UserStatus.d.ts +1 -1
- package/dist/api/types/UsersNotEnabled.d.ts +1 -1
- package/dist/api/types/WorkspaceAuditLogItem.d.ts +1 -1
- package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.d.ts +9 -0
- package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.js +5 -0
- package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +2 -1
- package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +1 -0
- package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipUserType.d.ts +1 -1
- package/dist/api/types/WorkspaceAuditLogItemPayloadUserAccessMethod.d.ts +1 -1
- package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationMethod.d.ts +1 -1
- package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.d.ts +7 -0
- package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.js +5 -0
- package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.d.ts +1 -1
- package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +2 -1
- package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +1 -0
- package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType.d.ts +1 -1
- 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/WorkspaceMembershipAuditLogItemEventSubType.d.ts +1 -1
- package/dist/api/types/index.d.ts +47 -3
- package/dist/api/types/index.js +47 -3
- package/dist/core/auth/BearerToken.d.ts +1 -1
- package/dist/core/fetcher/APIResponse.d.ts +11 -1
- package/dist/core/fetcher/Fetcher.d.ts +4 -3
- package/dist/core/fetcher/Fetcher.js +35 -14
- package/dist/core/fetcher/Headers.d.ts +2 -0
- package/dist/core/fetcher/Headers.js +84 -0
- package/dist/core/fetcher/HttpResponsePromise.d.ts +58 -0
- package/dist/core/fetcher/HttpResponsePromise.js +103 -0
- package/dist/core/fetcher/RawResponse.d.ts +29 -0
- package/dist/core/fetcher/RawResponse.js +44 -0
- package/dist/core/fetcher/Supplier.d.ts +1 -1
- package/dist/core/fetcher/createRequestUrl.d.ts +1 -1
- package/dist/core/fetcher/createRequestUrl.js +1 -2
- package/dist/core/fetcher/getFetchFn.js +18 -9
- package/dist/core/fetcher/getHeader.js +1 -2
- package/dist/core/fetcher/getRequestBody.js +5 -5
- package/dist/core/fetcher/getResponseBody.js +1 -2
- package/dist/core/fetcher/index.d.ts +3 -0
- package/dist/core/fetcher/index.js +7 -1
- package/dist/core/fetcher/makeRequest.d.ts +1 -1
- package/dist/core/fetcher/requestWithRetries.js +4 -5
- package/dist/core/fetcher/signals.d.ts +0 -1
- package/dist/core/fetcher/signals.js +2 -3
- package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +0 -1
- package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +6 -4
- package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +1 -1
- package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +1 -1
- package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.js +18 -9
- package/dist/core/headers.d.ts +3 -0
- package/dist/core/headers.js +29 -0
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.js +18 -8
- package/dist/core/json.d.ts +15 -0
- package/dist/core/json.js +24 -0
- package/dist/core/runtime/runtime.d.ts +1 -1
- package/dist/core/runtime/runtime.js +50 -41
- package/dist/core/schemas/Schema.d.ts +7 -5
- package/dist/core/schemas/Schema.js +2 -0
- package/dist/core/schemas/builders/bigint/bigint.d.ts +1 -1
- package/dist/core/schemas/builders/bigint/bigint.js +22 -19
- package/dist/core/schemas/builders/date/date.js +1 -2
- package/dist/core/schemas/builders/enum/enum.js +1 -2
- package/dist/core/schemas/builders/lazy/lazy.d.ts +1 -1
- package/dist/core/schemas/builders/lazy/lazy.js +3 -4
- package/dist/core/schemas/builders/lazy/lazyObject.js +1 -2
- package/dist/core/schemas/builders/list/list.js +1 -2
- package/dist/core/schemas/builders/literals/booleanLiteral.js +1 -2
- package/dist/core/schemas/builders/literals/stringLiteral.js +1 -2
- package/dist/core/schemas/builders/object/object.d.ts +1 -1
- package/dist/core/schemas/builders/object/object.js +3 -3
- package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +3 -3
- package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.js +1 -2
- package/dist/core/schemas/builders/object/property.js +2 -3
- package/dist/core/schemas/builders/object/types.d.ts +11 -11
- package/dist/core/schemas/builders/object-like/getObjectLikeUtils.js +2 -3
- package/dist/core/schemas/builders/object-like/types.d.ts +1 -1
- package/dist/core/schemas/builders/record/record.js +2 -4
- package/dist/core/schemas/builders/record/types.d.ts +2 -2
- package/dist/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +4 -0
- package/dist/core/schemas/builders/schema-utils/getSchemaUtils.js +67 -4
- package/dist/core/schemas/builders/schema-utils/stringifyValidationErrors.js +1 -2
- package/dist/core/schemas/builders/set/set.js +1 -2
- package/dist/core/schemas/builders/undiscriminated-union/types.d.ts +4 -4
- package/dist/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +1 -2
- package/dist/core/schemas/builders/union/discriminant.js +1 -2
- package/dist/core/schemas/builders/union/types.d.ts +6 -6
- package/dist/core/schemas/builders/union/union.d.ts +1 -1
- package/dist/core/schemas/builders/union/union.js +1 -2
- package/dist/core/schemas/utils/MaybePromise.d.ts +1 -1
- package/dist/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +4 -4
- package/dist/core/schemas/utils/createIdentitySchemaCreator.js +1 -2
- package/dist/core/schemas/utils/entries.d.ts +1 -1
- package/dist/core/schemas/utils/entries.js +1 -2
- package/dist/core/schemas/utils/filterObject.d.ts +1 -1
- package/dist/core/schemas/utils/filterObject.js +1 -2
- package/dist/core/schemas/utils/getErrorMessageForIncorrectType.js +1 -2
- package/dist/core/schemas/utils/isPlainObject.js +1 -2
- package/dist/core/schemas/utils/keys.d.ts +1 -1
- package/dist/core/schemas/utils/keys.js +1 -2
- package/dist/core/schemas/utils/maybeSkipValidation.js +1 -2
- package/dist/core/schemas/utils/partition.js +1 -2
- package/dist/environments.d.ts +1 -5
- package/dist/environments.js +0 -2
- package/dist/errors/WebflowError.d.ts +4 -1
- package/dist/errors/WebflowError.js +6 -8
- package/dist/index.js +17 -7
- package/dist/serialization/resources/accessGroups/types/AccessGroupsListRequestSort.js +17 -7
- package/dist/serialization/resources/assets/client/requests/AssetsCreateFolderRequest.js +17 -7
- package/dist/serialization/resources/assets/client/requests/AssetsCreateRequest.js +17 -7
- package/dist/serialization/resources/assets/client/requests/AssetsUpdateRequest.js +17 -7
- package/dist/serialization/resources/collections/client/requests/CollectionsCreateRequest.js +17 -7
- package/dist/serialization/resources/collections/resources/fields/client/requests/FieldUpdate.js +17 -7
- package/dist/serialization/resources/collections/resources/index.js +17 -7
- package/dist/serialization/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.d.ts +1 -1
- package/dist/serialization/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.js +17 -7
- package/dist/serialization/resources/collections/resources/items/client/requests/ItemsDeleteItemsLiveRequest.js +17 -7
- package/dist/serialization/resources/collections/resources/items/client/requests/ItemsDeleteItemsRequest.js +17 -7
- package/dist/serialization/resources/collections/resources/items/client/requests/ItemsUpdateItemsLiveRequest.d.ts +1 -1
- package/dist/serialization/resources/collections/resources/items/client/requests/ItemsUpdateItemsLiveRequest.js +17 -7
- package/dist/serialization/resources/collections/resources/items/client/requests/ItemsUpdateItemsRequest.d.ts +1 -1
- package/dist/serialization/resources/collections/resources/items/client/requests/ItemsUpdateItemsRequest.js +17 -7
- package/dist/serialization/resources/collections/resources/items/client/requests/index.d.ts +0 -1
- package/dist/serialization/resources/collections/resources/items/client/requests/index.js +1 -3
- package/dist/serialization/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldData.js +17 -7
- package/dist/serialization/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldDataItem.js +17 -7
- package/dist/serialization/resources/collections/resources/items/types/ItemIDs.d.ts +12 -0
- package/{serialization/resources/collections/resources/items/client/requests/ItemsPublishItemRequest.js → dist/serialization/resources/collections/resources/items/types/ItemIDs.js} +21 -11
- package/dist/serialization/resources/collections/resources/items/types/ItemIDsWithLocales.d.ts +13 -0
- package/dist/serialization/resources/collections/resources/items/types/ItemIDsWithLocales.js +44 -0
- package/dist/serialization/resources/collections/resources/items/types/{ItemsCreateItemLiveRequest.d.ts → ItemsCreateItemLiveRequestBody.d.ts} +2 -2
- package/{serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.js → dist/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequestBody.js} +19 -9
- package/dist/serialization/resources/collections/resources/items/types/{ItemsCreateItemRequest.d.ts → ItemsCreateItemRequestBody.d.ts} +2 -2
- package/dist/serialization/resources/collections/resources/items/types/{ItemsCreateItemRequest.js → ItemsCreateItemRequestBody.js} +19 -9
- package/dist/serialization/resources/collections/resources/items/types/ItemsDeleteItemsLiveRequestItemsItem.js +17 -7
- package/dist/serialization/resources/collections/resources/items/types/ItemsDeleteItemsRequestItemsItem.js +17 -7
- package/dist/serialization/resources/collections/resources/items/types/ItemsListItemsLiveRequestSortBy.js +17 -7
- package/dist/serialization/resources/collections/resources/items/types/ItemsListItemsLiveRequestSortOrder.js +17 -7
- package/dist/serialization/resources/collections/resources/items/types/ItemsListItemsRequestSortBy.js +17 -7
- package/dist/serialization/resources/collections/resources/items/types/ItemsListItemsRequestSortOrder.js +17 -7
- package/dist/serialization/resources/collections/resources/items/types/ItemsPublishItemRequest.d.ts +12 -0
- package/dist/serialization/resources/collections/resources/items/types/ItemsPublishItemRequest.js +43 -0
- package/dist/serialization/resources/collections/resources/items/types/ItemsPublishItemRequestItemsItemsItem.d.ts +13 -0
- package/dist/serialization/resources/collections/resources/items/types/ItemsPublishItemRequestItemsItemsItem.js +44 -0
- package/dist/serialization/resources/collections/resources/items/types/ItemsPublishItemResponse.js +17 -7
- package/dist/serialization/resources/collections/resources/items/types/ItemsUpdateItemsResponse.d.ts +12 -0
- package/dist/serialization/resources/collections/resources/items/types/ItemsUpdateItemsResponse.js +43 -0
- package/dist/serialization/resources/collections/resources/items/types/MultipleItems.js +17 -7
- package/dist/serialization/resources/collections/resources/items/types/MultipleLiveItems.js +17 -7
- package/dist/serialization/resources/collections/resources/items/types/SingleCmsItem.js +17 -7
- package/dist/serialization/resources/collections/resources/items/types/index.d.ts +7 -2
- package/dist/serialization/resources/collections/resources/items/types/index.js +7 -2
- package/dist/serialization/resources/components/client/requests/ComponentDomWrite.d.ts +1 -1
- package/dist/serialization/resources/components/client/requests/ComponentDomWrite.js +17 -7
- package/dist/serialization/resources/components/client/requests/ComponentPropertiesWrite.d.ts +1 -1
- package/dist/serialization/resources/components/client/requests/ComponentPropertiesWrite.js +17 -7
- package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +2 -2
- package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.js +19 -9
- package/dist/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.js +17 -7
- package/dist/serialization/resources/components/types/ComponentsUpdateContentResponse.js +17 -7
- package/dist/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.js +17 -7
- package/dist/serialization/resources/forms/client/requests/FormsUpdateSubmissionRequest.js +17 -7
- package/dist/serialization/resources/index.js +17 -7
- package/dist/serialization/resources/inventory/client/requests/InventoryUpdateRequest.js +17 -7
- package/dist/serialization/resources/inventory/types/EcommInventoryChangedPayload.d.ts +14 -0
- package/dist/serialization/resources/inventory/types/EcommInventoryChangedPayload.js +45 -0
- package/dist/serialization/resources/inventory/types/InventoryUpdateRequestInventoryType.js +17 -7
- package/dist/serialization/resources/inventory/types/index.d.ts +1 -0
- package/dist/serialization/resources/inventory/types/index.js +1 -0
- package/dist/serialization/resources/orders/client/requests/OrdersRefundRequest.js +17 -7
- package/dist/serialization/resources/orders/client/requests/OrdersUpdateFulfillRequest.js +17 -7
- package/dist/serialization/resources/orders/client/requests/OrdersUpdateRequest.js +17 -7
- package/dist/serialization/resources/orders/types/OrdersListRequestStatus.js +17 -7
- package/dist/serialization/resources/orders/types/OrdersRefundRequestReason.js +17 -7
- package/dist/serialization/resources/pages/client/requests/PageDomWrite.js +17 -7
- package/dist/serialization/resources/pages/client/requests/PageMetadataWrite.d.ts +17 -0
- package/dist/serialization/resources/pages/client/requests/PageMetadataWrite.js +48 -0
- package/dist/serialization/resources/pages/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/pages/client/requests/index.js +3 -1
- package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +2 -2
- package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.js +19 -9
- package/dist/serialization/resources/pages/types/PageMetadataWriteOpenGraph.d.ts +15 -0
- package/dist/serialization/resources/pages/types/PageMetadataWriteOpenGraph.js +46 -0
- package/dist/serialization/resources/pages/types/PageMetadataWriteSeo.d.ts +13 -0
- package/dist/serialization/resources/pages/types/PageMetadataWriteSeo.js +44 -0
- package/dist/serialization/resources/pages/types/UpdateStaticContentResponse.js +17 -7
- package/dist/serialization/resources/pages/types/index.d.ts +2 -0
- package/dist/serialization/resources/pages/types/index.js +2 -0
- package/dist/serialization/resources/products/client/requests/ProductSkuCreate.js +17 -7
- package/dist/serialization/resources/products/client/requests/ProductSkuUpdate.js +17 -7
- package/dist/serialization/resources/products/client/requests/ProductsCreateSkuRequest.js +17 -7
- package/dist/serialization/resources/products/client/requests/ProductsUpdateSkuRequest.js +17 -7
- package/dist/serialization/resources/products/types/ProductSkuCreateProduct.js +17 -7
- package/dist/serialization/resources/products/types/ProductSkuCreateSku.js +17 -7
- package/dist/serialization/resources/products/types/ProductsCreateSkuResponse.d.ts +1 -1
- package/dist/serialization/resources/products/types/ProductsCreateSkuResponse.js +18 -8
- package/dist/serialization/resources/scripts/client/requests/CustomCodeHostedRequest.js +17 -7
- package/dist/serialization/resources/scripts/client/requests/CustomCodeInlineRequest.js +17 -7
- package/dist/serialization/resources/sites/client/requests/SitesCreateRequest.js +17 -7
- package/dist/serialization/resources/sites/client/requests/SitesPublishRequest.js +17 -7
- package/dist/serialization/resources/sites/client/requests/SitesUpdateRequest.js +17 -7
- package/dist/serialization/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortBy.js +17 -7
- package/dist/serialization/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortOrder.js +17 -7
- package/dist/serialization/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortBy.js +17 -7
- package/dist/serialization/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortOrder.js +17 -7
- package/dist/serialization/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortBy.js +17 -7
- package/dist/serialization/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortOrder.js +17 -7
- package/dist/serialization/resources/sites/resources/index.js +17 -7
- package/dist/serialization/resources/sites/resources/wellKnown/client/requests/WellKnownDeleteRequest.js +17 -7
- package/dist/serialization/resources/sites/resources/wellKnown/client/requests/WellKnownFile.js +17 -7
- package/dist/serialization/resources/sites/resources/wellKnown/types/WellKnownFileContentType.js +17 -7
- package/dist/serialization/resources/sites/types/SitesPublishResponse.js +17 -7
- package/dist/serialization/resources/users/client/requests/UsersInviteRequest.js +17 -7
- package/dist/serialization/resources/users/client/requests/index.d.ts +0 -1
- package/dist/serialization/resources/users/client/requests/index.js +1 -3
- package/dist/serialization/resources/users/types/UserAccountAddedPayload.d.ts +14 -0
- package/dist/serialization/resources/users/types/UserAccountAddedPayload.js +45 -0
- package/dist/serialization/resources/users/types/UserAccountAddedPayloadPayload.d.ts +23 -0
- package/dist/serialization/resources/users/types/UserAccountAddedPayloadPayload.js +54 -0
- package/dist/serialization/resources/users/types/UserAccountAddedPayloadPayloadData.d.ts +15 -0
- package/dist/serialization/resources/users/types/{UsersUpdateRequestData.js → UserAccountAddedPayloadPayloadData.js} +22 -11
- package/dist/serialization/resources/users/types/UserAccountDeletedPayload.d.ts +14 -0
- package/dist/serialization/resources/users/types/UserAccountDeletedPayload.js +45 -0
- package/dist/serialization/resources/users/types/UserAccountDeletedPayloadPayload.d.ts +23 -0
- package/dist/serialization/resources/users/types/UserAccountDeletedPayloadPayload.js +54 -0
- package/dist/serialization/resources/users/types/UserAccountDeletedPayloadPayloadData.d.ts +15 -0
- package/dist/serialization/resources/users/types/UserAccountDeletedPayloadPayloadData.js +46 -0
- package/dist/serialization/resources/users/types/UserAccountUpdatedPayload.d.ts +14 -0
- package/dist/serialization/resources/users/types/UserAccountUpdatedPayload.js +45 -0
- package/dist/serialization/resources/users/types/UserAccountUpdatedPayloadPayload.d.ts +23 -0
- package/dist/serialization/resources/users/types/UserAccountUpdatedPayloadPayload.js +54 -0
- package/dist/serialization/resources/users/types/UserAccountUpdatedPayloadPayloadData.d.ts +15 -0
- package/dist/serialization/resources/users/types/UserAccountUpdatedPayloadPayloadData.js +46 -0
- package/dist/serialization/resources/users/types/UsersListRequestSort.js +17 -7
- package/dist/serialization/resources/users/types/index.d.ts +9 -1
- package/dist/serialization/resources/users/types/index.js +9 -1
- package/dist/serialization/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestEventType.js +17 -7
- package/dist/serialization/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestSortOrder.js +17 -7
- package/dist/serialization/resources/workspaces/resources/index.js +17 -7
- package/dist/serialization/types/AccessGroup.js +17 -7
- package/dist/serialization/types/AccessGroupList.js +17 -7
- package/dist/serialization/types/Application.d.ts +7 -2
- package/dist/serialization/types/Application.js +23 -8
- package/dist/serialization/types/Asset.d.ts +2 -2
- package/dist/serialization/types/Asset.js +19 -9
- package/dist/serialization/types/AssetFolder.js +17 -7
- package/dist/serialization/types/AssetFolderList.js +17 -7
- package/dist/serialization/types/AssetUpload.js +17 -7
- package/dist/serialization/types/AssetUploadUploadDetails.js +17 -7
- package/dist/serialization/types/AssetVariant.d.ts +6 -6
- package/dist/serialization/types/AssetVariant.js +23 -13
- package/dist/serialization/types/Assets.js +17 -7
- package/dist/serialization/types/Authorization.d.ts +1 -1
- package/dist/serialization/types/Authorization.js +17 -7
- package/dist/serialization/types/AuthorizationAuthorization.js +17 -7
- package/dist/serialization/types/AuthorizationAuthorizationAuthorizedTo.js +17 -7
- package/dist/serialization/types/AuthorizedUser.js +17 -7
- package/dist/serialization/types/BadRequestErrorBody.js +17 -7
- package/dist/serialization/types/BulkCollectionItem.d.ts +1 -1
- package/dist/serialization/types/BulkCollectionItem.js +18 -8
- package/dist/serialization/types/BulkCollectionItemFieldData.js +17 -7
- package/dist/serialization/types/Collection.d.ts +2 -2
- package/dist/serialization/types/Collection.js +19 -9
- package/dist/serialization/types/CollectionItem.js +17 -7
- package/dist/serialization/types/CollectionItemChanged.d.ts +14 -0
- package/dist/serialization/types/CollectionItemChanged.js +45 -0
- package/dist/serialization/types/CollectionItemCreated.d.ts +14 -0
- package/dist/serialization/types/CollectionItemCreated.js +45 -0
- package/dist/serialization/types/CollectionItemFieldData.js +17 -7
- package/dist/serialization/types/CollectionItemList.js +17 -7
- package/dist/serialization/types/CollectionItemListNoPagination.js +17 -7
- package/dist/serialization/types/CollectionItemListPagination.js +17 -7
- package/dist/serialization/types/CollectionItemPatchSingle.js +17 -7
- package/dist/serialization/types/CollectionItemPatchSingleFieldData.js +17 -7
- package/dist/serialization/types/CollectionItemPostSingle.js +17 -7
- package/dist/serialization/types/CollectionItemPostSingleFieldData.js +17 -7
- package/dist/serialization/types/CollectionItemPublished.d.ts +14 -0
- package/dist/serialization/types/CollectionItemPublished.js +45 -0
- package/dist/serialization/types/CollectionItemRemoved.d.ts +14 -0
- package/dist/serialization/types/CollectionItemRemoved.js +45 -0
- package/dist/serialization/types/CollectionItemRemovedPayload.d.ts +23 -0
- package/dist/serialization/types/CollectionItemRemovedPayload.js +54 -0
- package/dist/serialization/types/CollectionItemRemovedPayloadFieldData.d.ts +14 -0
- package/dist/serialization/types/CollectionItemRemovedPayloadFieldData.js +46 -0
- package/dist/serialization/types/CollectionItemUnpublished.d.ts +14 -0
- package/dist/serialization/types/CollectionItemUnpublished.js +45 -0
- package/dist/serialization/types/CollectionItemUnpublishedPayload.d.ts +23 -0
- package/dist/serialization/types/CollectionItemUnpublishedPayload.js +54 -0
- package/dist/serialization/types/CollectionItemUnpublishedPayloadFieldData.d.ts +14 -0
- package/dist/serialization/types/CollectionItemUnpublishedPayloadFieldData.js +46 -0
- package/dist/serialization/types/CollectionItemWithIdInput.js +17 -7
- package/dist/serialization/types/CollectionItemWithIdInputFieldData.js +17 -7
- package/dist/serialization/types/CollectionList.js +17 -7
- package/dist/serialization/types/CollectionListArrayItem.js +17 -7
- package/dist/serialization/types/Comment.d.ts +14 -0
- package/dist/serialization/types/Comment.js +45 -0
- package/dist/serialization/types/CommentPayload.d.ts +28 -0
- package/dist/serialization/types/CommentPayload.js +59 -0
- package/dist/serialization/types/CommentPayloadAuthor.d.ts +14 -0
- package/dist/serialization/types/CommentPayloadAuthor.js +45 -0
- package/dist/serialization/types/CommentPayloadMentionedUsersItem.d.ts +14 -0
- package/dist/serialization/types/CommentPayloadMentionedUsersItem.js +45 -0
- package/dist/serialization/types/CommentReply.d.ts +2 -2
- package/dist/serialization/types/CommentReply.js +19 -9
- package/dist/serialization/types/CommentReplyAuthor.js +17 -7
- package/dist/serialization/types/CommentReplyList.js +17 -7
- package/dist/serialization/types/CommentReplyListPagination.js +17 -7
- package/dist/serialization/types/CommentReplyMentionedUsersItem.js +17 -7
- package/dist/serialization/types/CommentThread.js +17 -7
- package/dist/serialization/types/CommentThreadAuthor.js +17 -7
- package/dist/serialization/types/CommentThreadList.js +17 -7
- package/dist/serialization/types/CommentThreadListPagination.js +17 -7
- package/dist/serialization/types/CommentThreadMentionedUsersItem.js +17 -7
- package/dist/serialization/types/Component.js +17 -7
- package/dist/serialization/types/ComponentDom.js +17 -7
- package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWrite.js +17 -7
- package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +17 -7
- package/dist/serialization/types/ComponentList.js +17 -7
- package/dist/serialization/types/ComponentNode.d.ts +3 -3
- package/dist/serialization/types/ComponentNode.js +20 -10
- package/dist/serialization/types/ComponentProperties.js +17 -7
- package/dist/serialization/types/ComponentProperty.js +17 -7
- package/dist/serialization/types/ComponentPropertyType.js +17 -7
- package/dist/serialization/types/Conflict.js +17 -7
- package/dist/serialization/types/ConflictErrorBody.js +17 -7
- package/dist/serialization/types/CustomCodeBlock.js +17 -7
- package/dist/serialization/types/CustomCodeBlockType.js +17 -7
- package/dist/serialization/types/CustomCodeHostedResponse.js +17 -7
- package/dist/serialization/types/CustomCodeInlineResponse.js +17 -7
- package/dist/serialization/types/CustomRole.js +17 -7
- package/dist/serialization/types/CustomRoleAuditLogItem.js +17 -7
- package/dist/serialization/types/CustomRoleAuditLogItemEventSubType.js +17 -7
- package/dist/serialization/types/Dom.d.ts +1 -0
- package/dist/serialization/types/Dom.js +18 -7
- package/dist/serialization/types/Domain.js +17 -7
- package/dist/serialization/types/Domains.js +17 -7
- package/dist/serialization/types/DuplicateUserEmail.js +17 -7
- package/dist/serialization/types/EcommerceSettings.js +17 -7
- package/dist/serialization/types/ErrorCode.js +17 -7
- package/dist/serialization/types/Error_.js +17 -7
- package/dist/serialization/types/Field.d.ts +2 -0
- package/dist/serialization/types/Field.js +19 -7
- package/dist/serialization/types/FieldCreate.js +17 -7
- package/dist/serialization/types/FieldType.js +17 -7
- package/dist/serialization/types/FieldValidations.d.ts +13 -0
- package/dist/serialization/types/FieldValidations.js +44 -0
- package/dist/serialization/types/FieldValidationsAdditionalProperties.d.ts +11 -0
- package/dist/serialization/types/FieldValidationsAdditionalProperties.js +48 -0
- package/dist/serialization/types/FieldValidationsAdditionalPropertiesAdditionalProperties.d.ts +12 -0
- package/dist/serialization/types/FieldValidationsAdditionalPropertiesAdditionalProperties.js +43 -0
- package/dist/serialization/types/ForbiddenErrorBody.js +17 -7
- package/dist/serialization/types/Form.js +17 -7
- package/dist/serialization/types/FormField.js +17 -7
- package/dist/serialization/types/FormFieldValue.js +17 -7
- package/dist/serialization/types/FormFieldValueType.js +17 -7
- package/dist/serialization/types/FormList.js +17 -7
- package/dist/serialization/types/FormResponseSettings.js +17 -7
- package/dist/serialization/types/FormSubmission.js +17 -7
- package/dist/serialization/types/FormSubmissionList.js +17 -7
- package/dist/serialization/types/FormSubmissionTrigger.d.ts +14 -0
- package/dist/serialization/types/FormSubmissionTrigger.js +45 -0
- package/dist/serialization/types/FormSubmissionTriggerPayload.d.ts +20 -0
- package/dist/serialization/types/FormSubmissionTriggerPayload.js +51 -0
- package/dist/serialization/types/FormSubmissionTriggerPayloadSchemaItem.d.ts +15 -0
- package/dist/serialization/types/FormSubmissionTriggerPayloadSchemaItem.js +46 -0
- package/dist/serialization/types/FormSubmissionTriggerPayloadSchemaItemFieldType.d.ts +10 -0
- package/dist/serialization/types/FormSubmissionTriggerPayloadSchemaItemFieldType.js +47 -0
- package/dist/serialization/types/ImageNode.d.ts +2 -2
- package/dist/serialization/types/ImageNode.js +19 -9
- package/dist/serialization/types/ImageNodeImage.js +17 -7
- package/dist/serialization/types/InvalidDomain.js +17 -7
- package/dist/serialization/types/InvalidScopes.js +17 -7
- package/dist/serialization/types/InventoryItem.js +17 -7
- package/dist/serialization/types/InventoryItemInventoryType.js +17 -7
- package/dist/serialization/types/ItemsListItemsLiveRequestLastPublished.d.ts +13 -0
- package/dist/serialization/types/ItemsListItemsLiveRequestLastPublished.js +44 -0
- package/dist/serialization/types/ItemsListItemsRequestLastPublished.d.ts +13 -0
- package/dist/serialization/types/ItemsListItemsRequestLastPublished.js +44 -0
- package/dist/serialization/types/ListCustomCodeBlocks.js +17 -7
- package/dist/serialization/types/Locale.js +17 -7
- package/dist/serialization/types/Locales.js +17 -7
- package/dist/serialization/types/Metadata.js +17 -7
- package/dist/serialization/types/MetadataOptionsItem.js +17 -7
- package/dist/serialization/types/NewOrder.d.ts +14 -0
- package/dist/serialization/types/NewOrder.js +45 -0
- package/dist/serialization/types/NoDomains.js +17 -7
- package/dist/serialization/types/Node.js +17 -7
- package/dist/serialization/types/NotEnterprisePlanSite.js +17 -7
- package/dist/serialization/types/NotEnterprisePlanWorkspace.js +17 -7
- package/dist/serialization/types/OptionField.js +17 -7
- package/dist/serialization/types/Order.d.ts +4 -2
- package/dist/serialization/types/Order.js +21 -9
- package/dist/serialization/types/OrderAddress.js +17 -7
- package/dist/serialization/types/OrderAddressJapanType.js +17 -7
- package/dist/serialization/types/OrderAddressType.js +17 -7
- package/dist/serialization/types/OrderBillingAddress.d.ts +22 -0
- package/dist/serialization/types/OrderBillingAddress.js +53 -0
- package/dist/serialization/types/OrderBillingAddressJapanType.d.ts +10 -0
- package/dist/serialization/types/OrderBillingAddressJapanType.js +41 -0
- package/dist/serialization/types/OrderBillingAddressType.d.ts +10 -0
- package/dist/serialization/types/OrderBillingAddressType.js +41 -0
- package/dist/serialization/types/OrderCustomerInfo.js +17 -7
- package/dist/serialization/types/OrderDisputeLastStatus.js +17 -7
- package/dist/serialization/types/OrderDownloadFilesItem.js +17 -7
- package/dist/serialization/types/OrderList.js +17 -7
- package/dist/serialization/types/OrderMetadata.js +17 -7
- package/dist/serialization/types/OrderPrice.js +17 -7
- package/dist/serialization/types/OrderPurchasedItem.js +17 -7
- package/dist/serialization/types/OrderPurchasedItemVariantImage.js +17 -7
- package/dist/serialization/types/OrderPurchasedItemVariantImageFile.js +17 -7
- package/dist/serialization/types/OrderPurchasedItemVariantImageFileVariantsItem.js +17 -7
- package/dist/serialization/types/OrderShippingAddress.d.ts +22 -0
- package/dist/serialization/types/OrderShippingAddress.js +53 -0
- package/dist/serialization/types/OrderShippingAddressJapanType.d.ts +10 -0
- package/dist/serialization/types/OrderShippingAddressJapanType.js +41 -0
- package/dist/serialization/types/OrderShippingAddressType.d.ts +10 -0
- package/dist/serialization/types/OrderShippingAddressType.js +41 -0
- package/dist/serialization/types/OrderStatus.js +17 -7
- package/dist/serialization/types/OrderTotals.js +17 -7
- package/dist/serialization/types/OrderTotalsExtrasItem.js +17 -7
- package/dist/serialization/types/OrderTotalsExtrasItemType.js +17 -7
- package/dist/serialization/types/Page.d.ts +1 -0
- package/dist/serialization/types/Page.js +18 -7
- package/dist/serialization/types/PageCreatedWebhook.d.ts +14 -0
- package/dist/serialization/types/PageCreatedWebhook.js +45 -0
- package/dist/serialization/types/PageCreatedWebhookPayload.d.ts +16 -0
- package/dist/serialization/types/PageCreatedWebhookPayload.js +47 -0
- package/dist/serialization/types/PageDeletedWebhook.d.ts +14 -0
- package/dist/serialization/types/PageDeletedWebhook.js +45 -0
- package/dist/serialization/types/PageDeletedWebhookPayload.d.ts +16 -0
- package/dist/serialization/types/PageDeletedWebhookPayload.js +47 -0
- package/dist/serialization/types/PageList.js +17 -7
- package/dist/serialization/types/PageMetadataUpdatedWebhook.d.ts +14 -0
- package/dist/serialization/types/PageMetadataUpdatedWebhook.js +45 -0
- package/dist/serialization/types/PageMetadataUpdatedWebhookPayload.d.ts +16 -0
- package/dist/serialization/types/PageMetadataUpdatedWebhookPayload.js +47 -0
- package/dist/serialization/types/PageOpenGraph.js +17 -7
- package/dist/serialization/types/PageSeo.js +17 -7
- package/dist/serialization/types/Pagination.js +17 -7
- package/dist/serialization/types/Payload.d.ts +23 -0
- package/dist/serialization/types/Payload.js +54 -0
- package/dist/serialization/types/PayloadFieldData.d.ts +14 -0
- package/dist/serialization/types/PayloadFieldData.js +46 -0
- package/dist/serialization/types/PaypalDetails.js +17 -7
- package/dist/serialization/types/Product.js +17 -7
- package/dist/serialization/types/ProductAndSkUs.js +17 -7
- package/dist/serialization/types/ProductAndSkUsList.js +17 -7
- package/dist/serialization/types/ProductFieldData.d.ts +1 -1
- package/dist/serialization/types/ProductFieldData.js +18 -8
- package/dist/serialization/types/ProductFieldDataEcProductType.js +17 -7
- package/dist/serialization/types/ProductFieldDataTaxCategory.js +17 -7
- package/dist/serialization/types/PublishStatus.js +17 -7
- package/dist/serialization/types/Redirect.js +17 -7
- package/dist/serialization/types/Redirects.js +17 -7
- package/dist/serialization/types/ReferenceField.js +17 -7
- package/dist/serialization/types/ReferenceFieldMetadata.js +17 -7
- package/dist/serialization/types/ReferenceFieldType.js +17 -7
- package/dist/serialization/types/RegisteredScriptList.d.ts +2 -0
- package/dist/serialization/types/RegisteredScriptList.js +19 -7
- package/dist/serialization/types/Robots.js +17 -7
- package/dist/serialization/types/RobotsRulesItem.js +17 -7
- package/dist/serialization/types/ScriptApply.js +17 -7
- package/dist/serialization/types/ScriptApplyList.js +17 -7
- package/dist/serialization/types/ScriptApplyLocation.js +17 -7
- package/dist/serialization/types/Scripts.js +17 -7
- package/dist/serialization/types/SearchButtonNode.js +17 -7
- package/dist/serialization/types/SearchButtonNodeWrite.js +17 -7
- package/{serialization/types/SelectNodeWrite.d.ts → dist/serialization/types/Select.d.ts} +2 -2
- package/{serialization/types/SelectNodeWrite.js → dist/serialization/types/Select.js} +19 -9
- package/dist/serialization/types/SelectNode.js +17 -7
- package/dist/serialization/types/SelectNodeChoicesItem.js +17 -7
- package/dist/serialization/types/SelectNodeWriteChoicesItem.js +17 -7
- package/dist/serialization/types/SingleLocaleCreatedPayload.d.ts +23 -0
- package/dist/serialization/types/SingleLocaleCreatedPayload.js +54 -0
- package/dist/serialization/types/SingleLocaleCreatedPayloadFieldData.d.ts +14 -0
- package/dist/serialization/types/SingleLocaleCreatedPayloadFieldData.js +46 -0
- package/dist/serialization/types/Site.js +17 -7
- package/dist/serialization/types/SiteActivityLogItem.js +17 -7
- package/dist/serialization/types/SiteActivityLogItemEvent.js +17 -7
- package/dist/serialization/types/SiteActivityLogItemResourceOperation.js +17 -7
- package/dist/serialization/types/SiteActivityLogItemUser.js +17 -7
- package/dist/serialization/types/SiteActivityLogResponse.js +17 -7
- package/dist/serialization/types/SiteDataCollectionType.js +17 -7
- package/dist/serialization/types/SiteMembership.d.ts +2 -0
- package/dist/serialization/types/SiteMembership.js +19 -7
- package/dist/serialization/types/SiteMembershipAuditLogItem.js +17 -7
- package/dist/serialization/types/SiteMembershipAuditLogItemEventSubType.d.ts +1 -1
- package/dist/serialization/types/SiteMembershipAuditLogItemEventSubType.js +18 -8
- package/dist/serialization/types/SitePlan.js +17 -7
- package/dist/serialization/types/SitePlanId.js +17 -7
- package/dist/serialization/types/SitePlanName.js +17 -7
- package/dist/serialization/types/SitePublish.d.ts +14 -0
- package/dist/serialization/types/SitePublish.js +45 -0
- package/dist/serialization/types/SitePublishPayload.d.ts +15 -0
- package/dist/serialization/types/SitePublishPayload.js +46 -0
- package/dist/serialization/types/Sites.js +17 -7
- package/dist/serialization/types/Sku.js +17 -7
- package/dist/serialization/types/SkuFieldData.d.ts +0 -2
- package/dist/serialization/types/SkuFieldData.js +17 -9
- package/dist/serialization/types/SkuFieldDataCompareAtPrice.js +17 -7
- package/dist/serialization/types/SkuFieldDataEcSkuBillingMethod.js +17 -7
- package/dist/serialization/types/SkuFieldDataEcSkuSubscriptionPlan.js +17 -7
- package/dist/serialization/types/SkuFieldDataEcSkuSubscriptionPlanInterval.js +17 -7
- package/dist/serialization/types/SkuFieldDataEcSkuSubscriptionPlanPlansItem.js +17 -7
- package/dist/serialization/types/SkuFieldDataEcSkuSubscriptionPlanPlansItemStatus.js +17 -7
- package/dist/serialization/types/SkuFieldDataPrice.js +17 -7
- package/dist/serialization/types/SkuPropertyList.js +17 -7
- package/dist/serialization/types/SkuPropertyListEnumItem.js +17 -7
- package/dist/serialization/types/SkuValueList.js +17 -7
- package/dist/serialization/types/StaticField.js +17 -7
- package/dist/serialization/types/StaticFieldType.js +17 -7
- package/dist/serialization/types/StripeCard.js +17 -7
- package/dist/serialization/types/StripeCardBrand.js +17 -7
- package/dist/serialization/types/StripeCardExpires.js +17 -7
- package/dist/serialization/types/StripeDetails.js +17 -7
- package/dist/serialization/types/SubmitButtonNode.js +17 -7
- package/dist/serialization/types/SubmitButtonNodeWrite.js +17 -7
- package/dist/serialization/types/Text.js +17 -7
- package/dist/serialization/types/TextInputNode.js +17 -7
- package/dist/serialization/types/TextInputNodeWrite.js +17 -7
- package/dist/serialization/types/TextNode.d.ts +2 -2
- package/dist/serialization/types/TextNode.js +19 -9
- package/dist/serialization/types/TextNodeText.js +17 -7
- package/dist/serialization/types/TextNodeWrite.js +17 -7
- package/dist/serialization/types/TriggerType.d.ts +1 -1
- package/dist/serialization/types/TriggerType.js +18 -7
- package/dist/serialization/types/UpdatedOrder.d.ts +14 -0
- package/dist/serialization/types/UpdatedOrder.js +45 -0
- package/dist/serialization/types/User.js +17 -7
- package/dist/serialization/types/UserAccess.js +17 -7
- package/dist/serialization/types/UserAccessAuditLogItem.js +17 -7
- package/dist/serialization/types/UserAccessAuditLogItemEventSubType.js +17 -7
- package/dist/serialization/types/UserAccessGroupsItem.js +17 -7
- package/dist/serialization/types/UserAccessGroupsItemType.js +17 -7
- package/dist/serialization/types/UserData.js +17 -7
- package/dist/serialization/types/UserDataData.js +17 -7
- package/dist/serialization/types/UserLimitReached.js +17 -7
- package/dist/serialization/types/UserList.js +17 -7
- package/dist/serialization/types/UserStatus.js +17 -7
- package/dist/serialization/types/UsersNotEnabled.js +17 -7
- package/dist/serialization/types/Webhook.js +17 -7
- package/dist/serialization/types/WebhookFilter.js +17 -7
- package/dist/serialization/types/WebhookList.js +17 -7
- package/dist/serialization/types/WorkspaceAuditLogItem.js +17 -7
- package/dist/serialization/types/WorkspaceAuditLogItemActor.js +17 -7
- 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 +18 -8
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipSite.js +17 -7
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipTargetUser.js +17 -7
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipUserType.js +17 -7
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadUserAccessMethod.js +17 -7
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationMethod.js +17 -7
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUser.js +17 -7
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.d.ts +13 -0
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.js +44 -0
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.js +17 -7
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +1 -1
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +18 -8
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipTargetUser.js +17 -7
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType.js +17 -7
- package/dist/serialization/types/WorkspaceAuditLogItemWorkspace.js +17 -7
- package/dist/serialization/types/WorkspaceAuditLogResponse.js +17 -7
- package/dist/serialization/types/WorkspaceInvitation.d.ts +2 -0
- package/dist/serialization/types/WorkspaceInvitation.js +19 -7
- package/dist/serialization/types/WorkspaceInvitationAuditLogItem.js +17 -7
- package/dist/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +1 -1
- package/dist/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.js +18 -7
- package/dist/serialization/types/WorkspaceMembership.js +17 -7
- package/dist/serialization/types/WorkspaceMembershipAuditLogItem.js +17 -7
- package/dist/serialization/types/WorkspaceMembershipAuditLogItemEventSubType.js +17 -7
- package/dist/serialization/types/index.d.ts +47 -3
- package/dist/serialization/types/index.js +47 -3
- 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/CollectionsClient.d.ts +11 -0
- package/dist/wrapper/CollectionsClient.js +18 -0
- package/dist/wrapper/ItemsClient.d.ts +167 -0
- package/dist/wrapper/ItemsClient.js +630 -0
- package/dist/wrapper/PagesClient.d.ts +49 -0
- package/dist/wrapper/PagesClient.js +214 -0
- package/dist/wrapper/WebflowClient.d.ts +6 -0
- package/dist/wrapper/WebflowClient.js +29 -9
- package/dist/wrapper/WebhooksClient.d.ts +0 -1
- package/dist/wrapper/WebhooksClient.js +2 -5
- package/dist/wrapper/schemas/ItemsCreateItemLiveRequest.d.ts +4 -0
- package/dist/wrapper/schemas/ItemsCreateItemLiveRequest.js +2 -0
- package/dist/wrapper/schemas/ItemsCreateItemRequest.d.ts +4 -0
- package/dist/wrapper/schemas/ItemsCreateItemRequest.js +2 -0
- package/dist/wrapper/schemas/ItemsUpdateItemLiveRequest.d.ts +4 -0
- package/dist/wrapper/schemas/ItemsUpdateItemLiveRequest.js +2 -0
- package/dist/wrapper/schemas/ItemsUpdateItemRequest.d.ts +4 -0
- package/dist/wrapper/schemas/ItemsUpdateItemRequest.js +2 -0
- package/{api/resources/pages/client/requests/UpdatePageSettingsRequest.d.ts → dist/wrapper/schemas/PageMetadataWrite.d.ts} +13 -17
- package/dist/wrapper/schemas/PageMetadataWrite.js +2 -0
- package/dist/wrapper/schemas/index.d.ts +5 -0
- package/dist/wrapper/schemas/index.js +21 -0
- package/environments.d.ts +1 -5
- package/environments.js +0 -2
- package/errors/WebflowError.d.ts +4 -1
- package/errors/WebflowError.js +6 -8
- package/index.js +17 -7
- package/jest.config.mjs +9 -0
- package/package.json +25 -20
- package/reference.md +259 -131
- package/scripts/rename-to-esm-files.js +123 -0
- package/serialization/resources/accessGroups/types/AccessGroupsListRequestSort.js +17 -7
- package/serialization/resources/assets/client/requests/AssetsCreateFolderRequest.js +17 -7
- package/serialization/resources/assets/client/requests/AssetsCreateRequest.js +17 -7
- package/serialization/resources/assets/client/requests/AssetsUpdateRequest.js +17 -7
- package/serialization/resources/collections/client/requests/CollectionsCreateRequest.js +17 -7
- package/serialization/resources/collections/resources/fields/client/requests/FieldUpdate.js +17 -7
- package/serialization/resources/collections/resources/index.js +17 -7
- package/serialization/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.d.ts +1 -1
- package/serialization/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.js +17 -7
- package/serialization/resources/collections/resources/items/client/requests/ItemsDeleteItemsLiveRequest.js +17 -7
- package/serialization/resources/collections/resources/items/client/requests/ItemsDeleteItemsRequest.js +17 -7
- package/serialization/resources/collections/resources/items/client/requests/ItemsUpdateItemsLiveRequest.d.ts +1 -1
- package/serialization/resources/collections/resources/items/client/requests/ItemsUpdateItemsLiveRequest.js +17 -7
- package/serialization/resources/collections/resources/items/client/requests/ItemsUpdateItemsRequest.d.ts +1 -1
- package/serialization/resources/collections/resources/items/client/requests/ItemsUpdateItemsRequest.js +17 -7
- package/serialization/resources/collections/resources/items/client/requests/index.d.ts +0 -1
- package/serialization/resources/collections/resources/items/client/requests/index.js +1 -3
- package/serialization/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldData.js +17 -7
- package/serialization/resources/collections/resources/items/types/CreateBulkCollectionItemRequestBodyFieldDataItem.js +17 -7
- package/serialization/resources/collections/resources/items/types/ItemIDs.d.ts +12 -0
- package/{dist/serialization/resources/collections/resources/items/client/requests/ItemsPublishItemRequest.js → serialization/resources/collections/resources/items/types/ItemIDs.js} +21 -11
- package/serialization/resources/collections/resources/items/types/ItemIDsWithLocales.d.ts +13 -0
- package/serialization/resources/collections/resources/items/types/ItemIDsWithLocales.js +44 -0
- package/serialization/resources/collections/resources/items/types/{ItemsCreateItemLiveRequest.d.ts → ItemsCreateItemLiveRequestBody.d.ts} +2 -2
- package/{dist/serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.js → serialization/resources/collections/resources/items/types/ItemsCreateItemLiveRequestBody.js} +19 -9
- package/serialization/resources/collections/resources/items/types/{ItemsCreateItemRequest.d.ts → ItemsCreateItemRequestBody.d.ts} +2 -2
- package/serialization/resources/collections/resources/items/types/{ItemsCreateItemRequest.js → ItemsCreateItemRequestBody.js} +19 -9
- package/serialization/resources/collections/resources/items/types/ItemsDeleteItemsLiveRequestItemsItem.js +17 -7
- package/serialization/resources/collections/resources/items/types/ItemsDeleteItemsRequestItemsItem.js +17 -7
- package/serialization/resources/collections/resources/items/types/ItemsListItemsLiveRequestSortBy.js +17 -7
- package/serialization/resources/collections/resources/items/types/ItemsListItemsLiveRequestSortOrder.js +17 -7
- package/serialization/resources/collections/resources/items/types/ItemsListItemsRequestSortBy.js +17 -7
- package/serialization/resources/collections/resources/items/types/ItemsListItemsRequestSortOrder.js +17 -7
- package/serialization/resources/collections/resources/items/types/ItemsPublishItemRequest.d.ts +12 -0
- package/serialization/resources/collections/resources/items/types/ItemsPublishItemRequest.js +43 -0
- package/serialization/resources/collections/resources/items/types/ItemsPublishItemRequestItemsItemsItem.d.ts +13 -0
- package/serialization/resources/collections/resources/items/types/ItemsPublishItemRequestItemsItemsItem.js +44 -0
- package/serialization/resources/collections/resources/items/types/ItemsPublishItemResponse.js +17 -7
- package/serialization/resources/collections/resources/items/types/ItemsUpdateItemsResponse.d.ts +12 -0
- package/serialization/resources/collections/resources/items/types/ItemsUpdateItemsResponse.js +43 -0
- package/serialization/resources/collections/resources/items/types/MultipleItems.js +17 -7
- package/serialization/resources/collections/resources/items/types/MultipleLiveItems.js +17 -7
- package/serialization/resources/collections/resources/items/types/SingleCmsItem.js +17 -7
- package/serialization/resources/collections/resources/items/types/index.d.ts +7 -2
- package/serialization/resources/collections/resources/items/types/index.js +7 -2
- package/serialization/resources/components/client/requests/ComponentDomWrite.d.ts +1 -1
- package/serialization/resources/components/client/requests/ComponentDomWrite.js +17 -7
- package/serialization/resources/components/client/requests/ComponentPropertiesWrite.d.ts +1 -1
- package/serialization/resources/components/client/requests/ComponentPropertiesWrite.js +17 -7
- package/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +2 -2
- package/serialization/resources/components/types/ComponentDomWriteNodesItem.js +19 -9
- package/serialization/resources/components/types/ComponentPropertiesWritePropertiesItem.js +17 -7
- package/serialization/resources/components/types/ComponentsUpdateContentResponse.js +17 -7
- package/serialization/resources/components/types/ComponentsUpdatePropertiesResponse.js +17 -7
- package/serialization/resources/forms/client/requests/FormsUpdateSubmissionRequest.js +17 -7
- package/serialization/resources/index.js +17 -7
- package/serialization/resources/inventory/client/requests/InventoryUpdateRequest.js +17 -7
- package/serialization/resources/inventory/types/EcommInventoryChangedPayload.d.ts +14 -0
- package/serialization/resources/inventory/types/EcommInventoryChangedPayload.js +45 -0
- package/serialization/resources/inventory/types/InventoryUpdateRequestInventoryType.js +17 -7
- package/serialization/resources/inventory/types/index.d.ts +1 -0
- package/serialization/resources/inventory/types/index.js +1 -0
- package/serialization/resources/orders/client/requests/OrdersRefundRequest.js +17 -7
- package/serialization/resources/orders/client/requests/OrdersUpdateFulfillRequest.js +17 -7
- package/serialization/resources/orders/client/requests/OrdersUpdateRequest.js +17 -7
- package/serialization/resources/orders/types/OrdersListRequestStatus.js +17 -7
- package/serialization/resources/orders/types/OrdersRefundRequestReason.js +17 -7
- package/serialization/resources/pages/client/requests/PageDomWrite.js +17 -7
- package/serialization/resources/pages/client/requests/PageMetadataWrite.d.ts +17 -0
- package/serialization/resources/pages/client/requests/PageMetadataWrite.js +48 -0
- package/serialization/resources/pages/client/requests/index.d.ts +1 -0
- package/serialization/resources/pages/client/requests/index.js +3 -1
- package/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +2 -2
- package/serialization/resources/pages/types/PageDomWriteNodesItem.js +19 -9
- package/serialization/resources/pages/types/PageMetadataWriteOpenGraph.d.ts +15 -0
- package/serialization/resources/pages/types/PageMetadataWriteOpenGraph.js +46 -0
- package/serialization/resources/pages/types/PageMetadataWriteSeo.d.ts +13 -0
- package/serialization/resources/pages/types/PageMetadataWriteSeo.js +44 -0
- package/serialization/resources/pages/types/UpdateStaticContentResponse.js +17 -7
- package/serialization/resources/pages/types/index.d.ts +2 -0
- package/serialization/resources/pages/types/index.js +2 -0
- package/serialization/resources/products/client/requests/ProductSkuCreate.js +17 -7
- package/serialization/resources/products/client/requests/ProductSkuUpdate.js +17 -7
- package/serialization/resources/products/client/requests/ProductsCreateSkuRequest.js +17 -7
- package/serialization/resources/products/client/requests/ProductsUpdateSkuRequest.js +17 -7
- package/serialization/resources/products/types/ProductSkuCreateProduct.js +17 -7
- package/serialization/resources/products/types/ProductSkuCreateSku.js +17 -7
- package/serialization/resources/products/types/ProductsCreateSkuResponse.d.ts +1 -1
- package/serialization/resources/products/types/ProductsCreateSkuResponse.js +18 -8
- package/serialization/resources/scripts/client/requests/CustomCodeHostedRequest.js +17 -7
- package/serialization/resources/scripts/client/requests/CustomCodeInlineRequest.js +17 -7
- package/serialization/resources/sites/client/requests/SitesCreateRequest.js +17 -7
- package/serialization/resources/sites/client/requests/SitesPublishRequest.js +17 -7
- package/serialization/resources/sites/client/requests/SitesUpdateRequest.js +17 -7
- package/serialization/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortBy.js +17 -7
- package/serialization/resources/sites/resources/comments/types/CommentsGetCommentThreadRequestSortOrder.js +17 -7
- package/serialization/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortBy.js +17 -7
- package/serialization/resources/sites/resources/comments/types/CommentsListCommentRepliesRequestSortOrder.js +17 -7
- package/serialization/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortBy.js +17 -7
- package/serialization/resources/sites/resources/comments/types/CommentsListCommentThreadsRequestSortOrder.js +17 -7
- package/serialization/resources/sites/resources/index.js +17 -7
- package/serialization/resources/sites/resources/wellKnown/client/requests/WellKnownDeleteRequest.js +17 -7
- package/serialization/resources/sites/resources/wellKnown/client/requests/WellKnownFile.js +17 -7
- package/serialization/resources/sites/resources/wellKnown/types/WellKnownFileContentType.js +17 -7
- package/serialization/resources/sites/types/SitesPublishResponse.js +17 -7
- package/serialization/resources/users/client/requests/UsersInviteRequest.js +17 -7
- package/serialization/resources/users/client/requests/index.d.ts +0 -1
- package/serialization/resources/users/client/requests/index.js +1 -3
- package/serialization/resources/users/types/UserAccountAddedPayload.d.ts +14 -0
- package/serialization/resources/users/types/UserAccountAddedPayload.js +45 -0
- package/serialization/resources/users/types/UserAccountAddedPayloadPayload.d.ts +23 -0
- package/serialization/resources/users/types/UserAccountAddedPayloadPayload.js +54 -0
- package/serialization/resources/users/types/UserAccountAddedPayloadPayloadData.d.ts +15 -0
- package/serialization/resources/users/types/{UsersUpdateRequestData.js → UserAccountAddedPayloadPayloadData.js} +22 -11
- package/serialization/resources/users/types/UserAccountDeletedPayload.d.ts +14 -0
- package/serialization/resources/users/types/UserAccountDeletedPayload.js +45 -0
- package/serialization/resources/users/types/UserAccountDeletedPayloadPayload.d.ts +23 -0
- package/serialization/resources/users/types/UserAccountDeletedPayloadPayload.js +54 -0
- package/serialization/resources/users/types/UserAccountDeletedPayloadPayloadData.d.ts +15 -0
- package/serialization/resources/users/types/UserAccountDeletedPayloadPayloadData.js +46 -0
- package/serialization/resources/users/types/UserAccountUpdatedPayload.d.ts +14 -0
- package/serialization/resources/users/types/UserAccountUpdatedPayload.js +45 -0
- package/serialization/resources/users/types/UserAccountUpdatedPayloadPayload.d.ts +23 -0
- package/serialization/resources/users/types/UserAccountUpdatedPayloadPayload.js +54 -0
- package/serialization/resources/users/types/UserAccountUpdatedPayloadPayloadData.d.ts +15 -0
- package/serialization/resources/users/types/UserAccountUpdatedPayloadPayloadData.js +46 -0
- package/serialization/resources/users/types/UsersListRequestSort.js +17 -7
- package/serialization/resources/users/types/index.d.ts +9 -1
- package/serialization/resources/users/types/index.js +9 -1
- package/serialization/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestEventType.js +17 -7
- package/serialization/resources/workspaces/resources/auditLogs/types/AuditLogsGetWorkspaceAuditLogsRequestSortOrder.js +17 -7
- package/serialization/resources/workspaces/resources/index.js +17 -7
- package/serialization/types/AccessGroup.js +17 -7
- package/serialization/types/AccessGroupList.js +17 -7
- package/serialization/types/Application.d.ts +7 -2
- package/serialization/types/Application.js +23 -8
- package/serialization/types/Asset.d.ts +2 -2
- package/serialization/types/Asset.js +19 -9
- package/serialization/types/AssetFolder.js +17 -7
- package/serialization/types/AssetFolderList.js +17 -7
- package/serialization/types/AssetUpload.js +17 -7
- package/serialization/types/AssetUploadUploadDetails.js +17 -7
- package/serialization/types/AssetVariant.d.ts +6 -6
- package/serialization/types/AssetVariant.js +23 -13
- package/serialization/types/Assets.js +17 -7
- package/serialization/types/Authorization.d.ts +1 -1
- package/serialization/types/Authorization.js +17 -7
- package/serialization/types/AuthorizationAuthorization.js +17 -7
- package/serialization/types/AuthorizationAuthorizationAuthorizedTo.js +17 -7
- package/serialization/types/AuthorizedUser.js +17 -7
- package/serialization/types/BadRequestErrorBody.js +17 -7
- package/serialization/types/BulkCollectionItem.d.ts +1 -1
- package/serialization/types/BulkCollectionItem.js +18 -8
- package/serialization/types/BulkCollectionItemFieldData.js +17 -7
- package/serialization/types/Collection.d.ts +2 -2
- package/serialization/types/Collection.js +19 -9
- package/serialization/types/CollectionItem.js +17 -7
- package/serialization/types/CollectionItemChanged.d.ts +14 -0
- package/serialization/types/CollectionItemChanged.js +45 -0
- package/serialization/types/CollectionItemCreated.d.ts +14 -0
- package/serialization/types/CollectionItemCreated.js +45 -0
- package/serialization/types/CollectionItemFieldData.js +17 -7
- package/serialization/types/CollectionItemList.js +17 -7
- package/serialization/types/CollectionItemListNoPagination.js +17 -7
- package/serialization/types/CollectionItemListPagination.js +17 -7
- package/serialization/types/CollectionItemPatchSingle.js +17 -7
- package/serialization/types/CollectionItemPatchSingleFieldData.js +17 -7
- package/serialization/types/CollectionItemPostSingle.js +17 -7
- package/serialization/types/CollectionItemPostSingleFieldData.js +17 -7
- package/serialization/types/CollectionItemPublished.d.ts +14 -0
- package/serialization/types/CollectionItemPublished.js +45 -0
- package/serialization/types/CollectionItemRemoved.d.ts +14 -0
- package/serialization/types/CollectionItemRemoved.js +45 -0
- package/serialization/types/CollectionItemRemovedPayload.d.ts +23 -0
- package/serialization/types/CollectionItemRemovedPayload.js +54 -0
- package/serialization/types/CollectionItemRemovedPayloadFieldData.d.ts +14 -0
- package/serialization/types/CollectionItemRemovedPayloadFieldData.js +46 -0
- package/serialization/types/CollectionItemUnpublished.d.ts +14 -0
- package/serialization/types/CollectionItemUnpublished.js +45 -0
- package/serialization/types/CollectionItemUnpublishedPayload.d.ts +23 -0
- package/serialization/types/CollectionItemUnpublishedPayload.js +54 -0
- package/serialization/types/CollectionItemUnpublishedPayloadFieldData.d.ts +14 -0
- package/serialization/types/CollectionItemUnpublishedPayloadFieldData.js +46 -0
- package/serialization/types/CollectionItemWithIdInput.js +17 -7
- package/serialization/types/CollectionItemWithIdInputFieldData.js +17 -7
- package/serialization/types/CollectionList.js +17 -7
- package/serialization/types/CollectionListArrayItem.js +17 -7
- package/serialization/types/Comment.d.ts +14 -0
- package/serialization/types/Comment.js +45 -0
- package/serialization/types/CommentPayload.d.ts +28 -0
- package/serialization/types/CommentPayload.js +59 -0
- package/serialization/types/CommentPayloadAuthor.d.ts +14 -0
- package/serialization/types/CommentPayloadAuthor.js +45 -0
- package/serialization/types/CommentPayloadMentionedUsersItem.d.ts +14 -0
- package/serialization/types/CommentPayloadMentionedUsersItem.js +45 -0
- package/serialization/types/CommentReply.d.ts +2 -2
- package/serialization/types/CommentReply.js +19 -9
- package/serialization/types/CommentReplyAuthor.js +17 -7
- package/serialization/types/CommentReplyList.js +17 -7
- package/serialization/types/CommentReplyListPagination.js +17 -7
- package/serialization/types/CommentReplyMentionedUsersItem.js +17 -7
- package/serialization/types/CommentThread.js +17 -7
- package/serialization/types/CommentThreadAuthor.js +17 -7
- package/serialization/types/CommentThreadList.js +17 -7
- package/serialization/types/CommentThreadListPagination.js +17 -7
- package/serialization/types/CommentThreadMentionedUsersItem.js +17 -7
- package/serialization/types/Component.js +17 -7
- package/serialization/types/ComponentDom.js +17 -7
- package/serialization/types/ComponentInstanceNodePropertyOverridesWrite.js +17 -7
- package/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +17 -7
- package/serialization/types/ComponentList.js +17 -7
- package/serialization/types/ComponentNode.d.ts +3 -3
- package/serialization/types/ComponentNode.js +20 -10
- package/serialization/types/ComponentProperties.js +17 -7
- package/serialization/types/ComponentProperty.js +17 -7
- package/serialization/types/ComponentPropertyType.js +17 -7
- package/serialization/types/Conflict.js +17 -7
- package/serialization/types/ConflictErrorBody.js +17 -7
- package/serialization/types/CustomCodeBlock.js +17 -7
- package/serialization/types/CustomCodeBlockType.js +17 -7
- package/serialization/types/CustomCodeHostedResponse.js +17 -7
- package/serialization/types/CustomCodeInlineResponse.js +17 -7
- package/serialization/types/CustomRole.js +17 -7
- package/serialization/types/CustomRoleAuditLogItem.js +17 -7
- package/serialization/types/CustomRoleAuditLogItemEventSubType.js +17 -7
- package/serialization/types/Dom.d.ts +1 -0
- package/serialization/types/Dom.js +18 -7
- package/serialization/types/Domain.js +17 -7
- package/serialization/types/Domains.js +17 -7
- package/serialization/types/DuplicateUserEmail.js +17 -7
- package/serialization/types/EcommerceSettings.js +17 -7
- package/serialization/types/ErrorCode.js +17 -7
- package/serialization/types/Error_.js +17 -7
- package/serialization/types/Field.d.ts +2 -0
- package/serialization/types/Field.js +19 -7
- package/serialization/types/FieldCreate.js +17 -7
- package/serialization/types/FieldType.js +17 -7
- package/serialization/types/FieldValidations.d.ts +13 -0
- package/serialization/types/FieldValidations.js +44 -0
- package/serialization/types/FieldValidationsAdditionalProperties.d.ts +11 -0
- package/serialization/types/FieldValidationsAdditionalProperties.js +48 -0
- package/serialization/types/FieldValidationsAdditionalPropertiesAdditionalProperties.d.ts +12 -0
- package/serialization/types/FieldValidationsAdditionalPropertiesAdditionalProperties.js +43 -0
- package/serialization/types/ForbiddenErrorBody.js +17 -7
- package/serialization/types/Form.js +17 -7
- package/serialization/types/FormField.js +17 -7
- package/serialization/types/FormFieldValue.js +17 -7
- package/serialization/types/FormFieldValueType.js +17 -7
- package/serialization/types/FormList.js +17 -7
- package/serialization/types/FormResponseSettings.js +17 -7
- package/serialization/types/FormSubmission.js +17 -7
- package/serialization/types/FormSubmissionList.js +17 -7
- package/serialization/types/FormSubmissionTrigger.d.ts +14 -0
- package/serialization/types/FormSubmissionTrigger.js +45 -0
- package/serialization/types/FormSubmissionTriggerPayload.d.ts +20 -0
- package/serialization/types/FormSubmissionTriggerPayload.js +51 -0
- package/serialization/types/FormSubmissionTriggerPayloadSchemaItem.d.ts +15 -0
- package/serialization/types/FormSubmissionTriggerPayloadSchemaItem.js +46 -0
- package/serialization/types/FormSubmissionTriggerPayloadSchemaItemFieldType.d.ts +10 -0
- package/serialization/types/FormSubmissionTriggerPayloadSchemaItemFieldType.js +47 -0
- package/serialization/types/ImageNode.d.ts +2 -2
- package/serialization/types/ImageNode.js +19 -9
- package/serialization/types/ImageNodeImage.js +17 -7
- package/serialization/types/InvalidDomain.js +17 -7
- package/serialization/types/InvalidScopes.js +17 -7
- package/serialization/types/InventoryItem.js +17 -7
- package/serialization/types/InventoryItemInventoryType.js +17 -7
- package/serialization/types/ItemsListItemsLiveRequestLastPublished.d.ts +13 -0
- package/serialization/types/ItemsListItemsLiveRequestLastPublished.js +44 -0
- package/serialization/types/ItemsListItemsRequestLastPublished.d.ts +13 -0
- package/serialization/types/ItemsListItemsRequestLastPublished.js +44 -0
- package/serialization/types/ListCustomCodeBlocks.js +17 -7
- package/serialization/types/Locale.js +17 -7
- package/serialization/types/Locales.js +17 -7
- package/serialization/types/Metadata.js +17 -7
- package/serialization/types/MetadataOptionsItem.js +17 -7
- package/serialization/types/NewOrder.d.ts +14 -0
- package/serialization/types/NewOrder.js +45 -0
- package/serialization/types/NoDomains.js +17 -7
- package/serialization/types/Node.js +17 -7
- package/serialization/types/NotEnterprisePlanSite.js +17 -7
- package/serialization/types/NotEnterprisePlanWorkspace.js +17 -7
- package/serialization/types/OptionField.js +17 -7
- package/serialization/types/Order.d.ts +4 -2
- package/serialization/types/Order.js +21 -9
- package/serialization/types/OrderAddress.js +17 -7
- package/serialization/types/OrderAddressJapanType.js +17 -7
- package/serialization/types/OrderAddressType.js +17 -7
- package/serialization/types/OrderBillingAddress.d.ts +22 -0
- package/serialization/types/OrderBillingAddress.js +53 -0
- package/serialization/types/OrderBillingAddressJapanType.d.ts +10 -0
- package/serialization/types/OrderBillingAddressJapanType.js +41 -0
- package/serialization/types/OrderBillingAddressType.d.ts +10 -0
- package/serialization/types/OrderBillingAddressType.js +41 -0
- package/serialization/types/OrderCustomerInfo.js +17 -7
- package/serialization/types/OrderDisputeLastStatus.js +17 -7
- package/serialization/types/OrderDownloadFilesItem.js +17 -7
- package/serialization/types/OrderList.js +17 -7
- package/serialization/types/OrderMetadata.js +17 -7
- package/serialization/types/OrderPrice.js +17 -7
- package/serialization/types/OrderPurchasedItem.js +17 -7
- package/serialization/types/OrderPurchasedItemVariantImage.js +17 -7
- package/serialization/types/OrderPurchasedItemVariantImageFile.js +17 -7
- package/serialization/types/OrderPurchasedItemVariantImageFileVariantsItem.js +17 -7
- package/serialization/types/OrderShippingAddress.d.ts +22 -0
- package/serialization/types/OrderShippingAddress.js +53 -0
- package/serialization/types/OrderShippingAddressJapanType.d.ts +10 -0
- package/serialization/types/OrderShippingAddressJapanType.js +41 -0
- package/serialization/types/OrderShippingAddressType.d.ts +10 -0
- package/serialization/types/OrderShippingAddressType.js +41 -0
- package/serialization/types/OrderStatus.js +17 -7
- package/serialization/types/OrderTotals.js +17 -7
- package/serialization/types/OrderTotalsExtrasItem.js +17 -7
- package/serialization/types/OrderTotalsExtrasItemType.js +17 -7
- package/serialization/types/Page.d.ts +1 -0
- package/serialization/types/Page.js +18 -7
- package/serialization/types/PageCreatedWebhook.d.ts +14 -0
- package/serialization/types/PageCreatedWebhook.js +45 -0
- package/serialization/types/PageCreatedWebhookPayload.d.ts +16 -0
- package/serialization/types/PageCreatedWebhookPayload.js +47 -0
- package/serialization/types/PageDeletedWebhook.d.ts +14 -0
- package/serialization/types/PageDeletedWebhook.js +45 -0
- package/serialization/types/PageDeletedWebhookPayload.d.ts +16 -0
- package/serialization/types/PageDeletedWebhookPayload.js +47 -0
- package/serialization/types/PageList.js +17 -7
- package/serialization/types/PageMetadataUpdatedWebhook.d.ts +14 -0
- package/serialization/types/PageMetadataUpdatedWebhook.js +45 -0
- package/serialization/types/PageMetadataUpdatedWebhookPayload.d.ts +16 -0
- package/serialization/types/PageMetadataUpdatedWebhookPayload.js +47 -0
- package/serialization/types/PageOpenGraph.js +17 -7
- package/serialization/types/PageSeo.js +17 -7
- package/serialization/types/Pagination.js +17 -7
- package/serialization/types/Payload.d.ts +23 -0
- package/serialization/types/Payload.js +54 -0
- package/serialization/types/PayloadFieldData.d.ts +14 -0
- package/serialization/types/PayloadFieldData.js +46 -0
- package/serialization/types/PaypalDetails.js +17 -7
- package/serialization/types/Product.js +17 -7
- package/serialization/types/ProductAndSkUs.js +17 -7
- package/serialization/types/ProductAndSkUsList.js +17 -7
- package/serialization/types/ProductFieldData.d.ts +1 -1
- package/serialization/types/ProductFieldData.js +18 -8
- package/serialization/types/ProductFieldDataEcProductType.js +17 -7
- package/serialization/types/ProductFieldDataTaxCategory.js +17 -7
- package/serialization/types/PublishStatus.js +17 -7
- package/serialization/types/Redirect.js +17 -7
- package/serialization/types/Redirects.js +17 -7
- package/serialization/types/ReferenceField.js +17 -7
- package/serialization/types/ReferenceFieldMetadata.js +17 -7
- package/serialization/types/ReferenceFieldType.js +17 -7
- package/serialization/types/RegisteredScriptList.d.ts +2 -0
- package/serialization/types/RegisteredScriptList.js +19 -7
- package/serialization/types/Robots.js +17 -7
- package/serialization/types/RobotsRulesItem.js +17 -7
- package/serialization/types/ScriptApply.js +17 -7
- package/serialization/types/ScriptApplyList.js +17 -7
- package/serialization/types/ScriptApplyLocation.js +17 -7
- package/serialization/types/Scripts.js +17 -7
- package/serialization/types/SearchButtonNode.js +17 -7
- package/serialization/types/SearchButtonNodeWrite.js +17 -7
- package/{dist/serialization/types/SelectNodeWrite.d.ts → serialization/types/Select.d.ts} +2 -2
- package/{dist/serialization/types/SelectNodeWrite.js → serialization/types/Select.js} +19 -9
- package/serialization/types/SelectNode.js +17 -7
- package/serialization/types/SelectNodeChoicesItem.js +17 -7
- package/serialization/types/SelectNodeWriteChoicesItem.js +17 -7
- package/serialization/types/SingleLocaleCreatedPayload.d.ts +23 -0
- package/serialization/types/SingleLocaleCreatedPayload.js +54 -0
- package/serialization/types/SingleLocaleCreatedPayloadFieldData.d.ts +14 -0
- package/serialization/types/SingleLocaleCreatedPayloadFieldData.js +46 -0
- package/serialization/types/Site.js +17 -7
- package/serialization/types/SiteActivityLogItem.js +17 -7
- package/serialization/types/SiteActivityLogItemEvent.js +17 -7
- package/serialization/types/SiteActivityLogItemResourceOperation.js +17 -7
- package/serialization/types/SiteActivityLogItemUser.js +17 -7
- package/serialization/types/SiteActivityLogResponse.js +17 -7
- package/serialization/types/SiteDataCollectionType.js +17 -7
- package/serialization/types/SiteMembership.d.ts +2 -0
- package/serialization/types/SiteMembership.js +19 -7
- package/serialization/types/SiteMembershipAuditLogItem.js +17 -7
- package/serialization/types/SiteMembershipAuditLogItemEventSubType.d.ts +1 -1
- package/serialization/types/SiteMembershipAuditLogItemEventSubType.js +18 -8
- package/serialization/types/SitePlan.js +17 -7
- package/serialization/types/SitePlanId.js +17 -7
- package/serialization/types/SitePlanName.js +17 -7
- package/serialization/types/SitePublish.d.ts +14 -0
- package/serialization/types/SitePublish.js +45 -0
- package/serialization/types/SitePublishPayload.d.ts +15 -0
- package/serialization/types/SitePublishPayload.js +46 -0
- package/serialization/types/Sites.js +17 -7
- package/serialization/types/Sku.js +17 -7
- package/serialization/types/SkuFieldData.d.ts +0 -2
- package/serialization/types/SkuFieldData.js +17 -9
- package/serialization/types/SkuFieldDataCompareAtPrice.js +17 -7
- package/serialization/types/SkuFieldDataEcSkuBillingMethod.js +17 -7
- package/serialization/types/SkuFieldDataEcSkuSubscriptionPlan.js +17 -7
- package/serialization/types/SkuFieldDataEcSkuSubscriptionPlanInterval.js +17 -7
- package/serialization/types/SkuFieldDataEcSkuSubscriptionPlanPlansItem.js +17 -7
- package/serialization/types/SkuFieldDataEcSkuSubscriptionPlanPlansItemStatus.js +17 -7
- package/serialization/types/SkuFieldDataPrice.js +17 -7
- package/serialization/types/SkuPropertyList.js +17 -7
- package/serialization/types/SkuPropertyListEnumItem.js +17 -7
- package/serialization/types/SkuValueList.js +17 -7
- package/serialization/types/StaticField.js +17 -7
- package/serialization/types/StaticFieldType.js +17 -7
- package/serialization/types/StripeCard.js +17 -7
- package/serialization/types/StripeCardBrand.js +17 -7
- package/serialization/types/StripeCardExpires.js +17 -7
- package/serialization/types/StripeDetails.js +17 -7
- package/serialization/types/SubmitButtonNode.js +17 -7
- package/serialization/types/SubmitButtonNodeWrite.js +17 -7
- package/serialization/types/Text.js +17 -7
- package/serialization/types/TextInputNode.js +17 -7
- package/serialization/types/TextInputNodeWrite.js +17 -7
- package/serialization/types/TextNode.d.ts +2 -2
- package/serialization/types/TextNode.js +19 -9
- package/serialization/types/TextNodeText.js +17 -7
- package/serialization/types/TextNodeWrite.js +17 -7
- package/serialization/types/TriggerType.d.ts +1 -1
- package/serialization/types/TriggerType.js +18 -7
- package/serialization/types/UpdatedOrder.d.ts +14 -0
- package/serialization/types/UpdatedOrder.js +45 -0
- package/serialization/types/User.js +17 -7
- package/serialization/types/UserAccess.js +17 -7
- package/serialization/types/UserAccessAuditLogItem.js +17 -7
- package/serialization/types/UserAccessAuditLogItemEventSubType.js +17 -7
- package/serialization/types/UserAccessGroupsItem.js +17 -7
- package/serialization/types/UserAccessGroupsItemType.js +17 -7
- package/serialization/types/UserData.js +17 -7
- package/serialization/types/UserDataData.js +17 -7
- package/serialization/types/UserLimitReached.js +17 -7
- package/serialization/types/UserList.js +17 -7
- package/serialization/types/UserStatus.js +17 -7
- package/serialization/types/UsersNotEnabled.js +17 -7
- package/serialization/types/Webhook.js +17 -7
- package/serialization/types/WebhookFilter.js +17 -7
- package/serialization/types/WebhookList.js +17 -7
- package/serialization/types/WorkspaceAuditLogItem.js +17 -7
- package/serialization/types/WorkspaceAuditLogItemActor.js +17 -7
- 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 +18 -8
- package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipSite.js +17 -7
- package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipTargetUser.js +17 -7
- package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipUserType.js +17 -7
- package/serialization/types/WorkspaceAuditLogItemPayloadUserAccessMethod.js +17 -7
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationMethod.js +17 -7
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUser.js +17 -7
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.d.ts +13 -0
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.js +44 -0
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.js +17 -7
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +1 -1
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +18 -8
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipTargetUser.js +17 -7
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType.js +17 -7
- package/serialization/types/WorkspaceAuditLogItemWorkspace.js +17 -7
- package/serialization/types/WorkspaceAuditLogResponse.js +17 -7
- package/serialization/types/WorkspaceInvitation.d.ts +2 -0
- package/serialization/types/WorkspaceInvitation.js +19 -7
- package/serialization/types/WorkspaceInvitationAuditLogItem.js +17 -7
- package/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +1 -1
- package/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.js +18 -7
- package/serialization/types/WorkspaceMembership.js +17 -7
- package/serialization/types/WorkspaceMembershipAuditLogItem.js +17 -7
- package/serialization/types/WorkspaceMembershipAuditLogItemEventSubType.js +17 -7
- package/serialization/types/index.d.ts +47 -3
- package/serialization/types/index.js +47 -3
- 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/CollectionsClient.d.ts +11 -0
- package/wrapper/CollectionsClient.js +18 -0
- package/wrapper/ItemsClient.d.ts +167 -0
- package/wrapper/ItemsClient.js +630 -0
- package/wrapper/PagesClient.d.ts +49 -0
- package/wrapper/PagesClient.js +214 -0
- package/wrapper/WebflowClient.d.ts +6 -0
- package/wrapper/WebflowClient.js +29 -9
- package/wrapper/WebhooksClient.d.ts +0 -1
- package/wrapper/WebhooksClient.js +2 -5
- package/wrapper/schemas/ItemsCreateItemLiveRequest.d.ts +4 -0
- package/wrapper/schemas/ItemsCreateItemLiveRequest.js +2 -0
- package/wrapper/schemas/ItemsCreateItemRequest.d.ts +4 -0
- package/wrapper/schemas/ItemsCreateItemRequest.js +2 -0
- package/wrapper/schemas/ItemsUpdateItemLiveRequest.d.ts +4 -0
- package/wrapper/schemas/ItemsUpdateItemLiveRequest.js +2 -0
- package/wrapper/schemas/ItemsUpdateItemRequest.d.ts +4 -0
- package/wrapper/schemas/ItemsUpdateItemRequest.js +2 -0
- package/{dist/api/resources/pages/client/requests/UpdatePageSettingsRequest.d.ts → wrapper/schemas/PageMetadataWrite.d.ts} +13 -17
- package/wrapper/schemas/PageMetadataWrite.js +2 -0
- package/wrapper/schemas/index.d.ts +5 -0
- package/wrapper/schemas/index.js +21 -0
- package/api/resources/collections/resources/items/client/requests/ItemsPublishItemRequest.d.ts +0 -12
- package/api/resources/users/client/requests/UsersUpdateRequest.d.ts +0 -20
- package/api/resources/users/types/UsersUpdateRequestData.d.ts +0 -11
- package/dist/api/resources/collections/resources/items/client/requests/ItemsPublishItemRequest.d.ts +0 -12
- package/dist/api/resources/users/client/requests/UsersUpdateRequest.d.ts +0 -20
- package/dist/api/resources/users/types/UsersUpdateRequestData.d.ts +0 -11
- package/dist/serialization/resources/collections/resources/items/client/requests/ItemsPublishItemRequest.d.ts +0 -12
- package/dist/serialization/resources/users/client/requests/UsersUpdateRequest.d.ts +0 -14
- package/dist/serialization/resources/users/client/requests/UsersUpdateRequest.js +0 -35
- package/dist/serialization/resources/users/types/UsersUpdateRequestData.d.ts +0 -14
- package/jest.config.js +0 -5
- package/serialization/resources/collections/resources/items/client/requests/ItemsPublishItemRequest.d.ts +0 -12
- package/serialization/resources/users/client/requests/UsersUpdateRequest.d.ts +0 -14
- package/serialization/resources/users/client/requests/UsersUpdateRequest.js +0 -35
- package/serialization/resources/users/types/UsersUpdateRequestData.d.ts +0 -14
- /package/api/resources/{collections/resources/items/client/requests/ItemsPublishItemRequest.js → assets/client/requests/AssetsListRequest.js} +0 -0
- /package/api/resources/collections/resources/items/{types → client/requests}/ItemsCreateItemLiveRequest.js +0 -0
- /package/api/resources/collections/resources/items/{types → client/requests}/ItemsCreateItemRequest.js +0 -0
- /package/api/resources/{pages/client/requests/UpdatePageSettingsRequest.js → collections/resources/items/client/requests/ItemsUpdateItemLiveRequest.js} +0 -0
- /package/api/resources/{users/client/requests/UsersUpdateRequest.js → collections/resources/items/client/requests/ItemsUpdateItemRequest.js} +0 -0
- /package/api/resources/{users/types/UsersUpdateRequestData.js → collections/resources/items/types/ItemIDs.js} +0 -0
- /package/api/{types/SelectNodeWrite.js → resources/collections/resources/items/types/ItemIDsWithLocales.js} +0 -0
- /package/{dist/api/resources/collections/resources/items/client/requests/ItemsPublishItemRequest.js → api/resources/collections/resources/items/types/ItemsCreateItemLiveRequestBody.js} +0 -0
- /package/{dist/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.js → api/resources/collections/resources/items/types/ItemsCreateItemRequestBody.js} +0 -0
- /package/{dist/api/resources/collections/resources/items/types/ItemsCreateItemRequest.js → api/resources/collections/resources/items/types/ItemsPublishItemRequest.js} +0 -0
- /package/{dist/api/resources/pages/client/requests/UpdatePageSettingsRequest.js → api/resources/collections/resources/items/types/ItemsPublishItemRequestItemsItemsItem.js} +0 -0
- /package/{dist/api/resources/users/client/requests/UsersUpdateRequest.js → api/resources/collections/resources/items/types/ItemsUpdateItemsResponse.js} +0 -0
- /package/{dist/api/resources/users/types/UsersUpdateRequestData.js → api/resources/inventory/types/EcommInventoryChangedPayload.js} +0 -0
- /package/{dist/api/types/SelectNodeWrite.js → api/resources/pages/client/requests/PageMetadataWrite.js} +0 -0
|
@@ -105,6 +105,26 @@ types:
|
|
|
105
105
|
- NoDomains
|
|
106
106
|
source:
|
|
107
107
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
108
|
+
ItemsListItemsRequestLastPublished:
|
|
109
|
+
properties:
|
|
110
|
+
lte:
|
|
111
|
+
type: optional<datetime>
|
|
112
|
+
docs: Filter items last published before this date
|
|
113
|
+
gte:
|
|
114
|
+
type: optional<datetime>
|
|
115
|
+
docs: Filter items last published after this date
|
|
116
|
+
source:
|
|
117
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
118
|
+
ItemsListItemsLiveRequestLastPublished:
|
|
119
|
+
properties:
|
|
120
|
+
lte:
|
|
121
|
+
type: optional<datetime>
|
|
122
|
+
docs: Filter items last published before this date
|
|
123
|
+
gte:
|
|
124
|
+
type: optional<datetime>
|
|
125
|
+
docs: Filter items last published after this date
|
|
126
|
+
source:
|
|
127
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
108
128
|
ConflictErrorBody:
|
|
109
129
|
discriminated: false
|
|
110
130
|
union:
|
|
@@ -181,7 +201,24 @@ types:
|
|
|
181
201
|
docs: Array of errors
|
|
182
202
|
source:
|
|
183
203
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
184
|
-
Application:
|
|
204
|
+
Application:
|
|
205
|
+
properties:
|
|
206
|
+
id:
|
|
207
|
+
type: optional<string>
|
|
208
|
+
docs: Unique identifier for the Application
|
|
209
|
+
description:
|
|
210
|
+
type: optional<string>
|
|
211
|
+
docs: Application description provided by the developer
|
|
212
|
+
homepage:
|
|
213
|
+
type: optional<string>
|
|
214
|
+
docs: Application homepage URL provided by the developer
|
|
215
|
+
validation:
|
|
216
|
+
format: uri
|
|
217
|
+
displayName:
|
|
218
|
+
type: optional<string>
|
|
219
|
+
docs: Application name provided by the developer
|
|
220
|
+
source:
|
|
221
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
185
222
|
AuthorizationAuthorizationAuthorizedTo:
|
|
186
223
|
properties:
|
|
187
224
|
siteIds:
|
|
@@ -234,7 +271,6 @@ types:
|
|
|
234
271
|
id:
|
|
235
272
|
type: string
|
|
236
273
|
docs: Unique identifier for the Domain
|
|
237
|
-
access: read-only
|
|
238
274
|
url:
|
|
239
275
|
type: optional<string>
|
|
240
276
|
docs: The registered Domain name
|
|
@@ -408,6 +444,7 @@ types:
|
|
|
408
444
|
- sso
|
|
409
445
|
- dashboard
|
|
410
446
|
- admin
|
|
447
|
+
- access_request
|
|
411
448
|
inline: true
|
|
412
449
|
source:
|
|
413
450
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
@@ -468,6 +505,7 @@ types:
|
|
|
468
505
|
- scim
|
|
469
506
|
- dashboard
|
|
470
507
|
- admin
|
|
508
|
+
- access_request
|
|
471
509
|
inline: true
|
|
472
510
|
source:
|
|
473
511
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
@@ -480,6 +518,15 @@ types:
|
|
|
480
518
|
inline: true
|
|
481
519
|
source:
|
|
482
520
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
521
|
+
WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess:
|
|
522
|
+
properties:
|
|
523
|
+
id: optional<string>
|
|
524
|
+
name: optional<string>
|
|
525
|
+
type: optional<literal<"cms">>
|
|
526
|
+
restricted: optional<boolean>
|
|
527
|
+
source:
|
|
528
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
529
|
+
inline: true
|
|
483
530
|
Site membership:
|
|
484
531
|
properties:
|
|
485
532
|
site: optional<WorkspaceAuditLogItemPayloadSiteMembershipSite>
|
|
@@ -492,6 +539,7 @@ types:
|
|
|
492
539
|
previousRoleName:
|
|
493
540
|
type: optional<string>
|
|
494
541
|
docs: The previous role that the user had
|
|
542
|
+
granularAccess: optional<WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess>
|
|
495
543
|
source:
|
|
496
544
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
497
545
|
SiteMembershipAuditLogItemEventSubType:
|
|
@@ -499,6 +547,7 @@ types:
|
|
|
499
547
|
- user_added
|
|
500
548
|
- user_removed
|
|
501
549
|
- user_role_updated
|
|
550
|
+
- user_granular_access_updated
|
|
502
551
|
inline: true
|
|
503
552
|
source:
|
|
504
553
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
@@ -532,6 +581,13 @@ types:
|
|
|
532
581
|
inline: true
|
|
533
582
|
source:
|
|
534
583
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
584
|
+
WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem:
|
|
585
|
+
properties:
|
|
586
|
+
id: optional<string>
|
|
587
|
+
email: optional<string>
|
|
588
|
+
source:
|
|
589
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
590
|
+
inline: true
|
|
535
591
|
Workspace invitation:
|
|
536
592
|
properties:
|
|
537
593
|
targetUser: optional<WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUser>
|
|
@@ -543,6 +599,8 @@ types:
|
|
|
543
599
|
previousRoleName:
|
|
544
600
|
type: optional<string>
|
|
545
601
|
docs: The previous role that the user had
|
|
602
|
+
targetUsers: >-
|
|
603
|
+
optional<list<WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem>>
|
|
546
604
|
source:
|
|
547
605
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
548
606
|
WorkspaceInvitationAuditLogItemEventSubType:
|
|
@@ -552,6 +610,7 @@ types:
|
|
|
552
610
|
- invite_updated
|
|
553
611
|
- invite_canceled
|
|
554
612
|
- invite_declined
|
|
613
|
+
- access_request_accepted
|
|
555
614
|
inline: true
|
|
556
615
|
source:
|
|
557
616
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
@@ -582,25 +641,33 @@ types:
|
|
|
582
641
|
actor: optional<WorkspaceAuditLogItemActor>
|
|
583
642
|
workspace: optional<WorkspaceAuditLogItemWorkspace>
|
|
584
643
|
union:
|
|
585
|
-
user_access:
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
644
|
+
user_access:
|
|
645
|
+
type: UserAccessAuditLogItem
|
|
646
|
+
custom_role:
|
|
647
|
+
type: CustomRoleAuditLogItem
|
|
648
|
+
workspace_membership:
|
|
649
|
+
type: WorkspaceMembershipAuditLogItem
|
|
650
|
+
site_membership:
|
|
651
|
+
type: SiteMembershipAuditLogItem
|
|
652
|
+
workspace_invitation:
|
|
653
|
+
type: WorkspaceInvitationAuditLogItem
|
|
590
654
|
source:
|
|
591
655
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
592
656
|
Pagination:
|
|
593
657
|
docs: Pagination object
|
|
594
658
|
properties:
|
|
595
659
|
limit:
|
|
596
|
-
type: double
|
|
660
|
+
type: optional<double>
|
|
597
661
|
docs: The limit used for pagination
|
|
662
|
+
access: read-only
|
|
598
663
|
offset:
|
|
599
|
-
type: double
|
|
664
|
+
type: optional<double>
|
|
600
665
|
docs: The offset used for pagination
|
|
666
|
+
access: read-only
|
|
601
667
|
total:
|
|
602
|
-
type: double
|
|
668
|
+
type: optional<double>
|
|
603
669
|
docs: The total number of records
|
|
670
|
+
access: read-only
|
|
604
671
|
source:
|
|
605
672
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
606
673
|
WorkspaceAuditLogResponse:
|
|
@@ -827,7 +894,6 @@ types:
|
|
|
827
894
|
id:
|
|
828
895
|
type: string
|
|
829
896
|
docs: Unique identifier for a Collection
|
|
830
|
-
access: read-only
|
|
831
897
|
displayName:
|
|
832
898
|
type: optional<string>
|
|
833
899
|
docs: Name given to the Collection
|
|
@@ -999,9 +1065,9 @@ types:
|
|
|
999
1065
|
discriminated: false
|
|
1000
1066
|
docs: Details about the field of a collection
|
|
1001
1067
|
union:
|
|
1002
|
-
- Static Field
|
|
1003
|
-
- Option Field
|
|
1004
|
-
- Reference Field
|
|
1068
|
+
- type: Static Field
|
|
1069
|
+
- type: Option Field
|
|
1070
|
+
- type: Reference Field
|
|
1005
1071
|
source:
|
|
1006
1072
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1007
1073
|
FieldType:
|
|
@@ -1027,13 +1093,36 @@ types:
|
|
|
1027
1093
|
inline: true
|
|
1028
1094
|
source:
|
|
1029
1095
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1096
|
+
FieldValidationsAdditionalPropertiesAdditionalProperties:
|
|
1097
|
+
properties:
|
|
1098
|
+
additionalProperties: unknown
|
|
1099
|
+
source:
|
|
1100
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1101
|
+
inline: true
|
|
1102
|
+
FieldValidationsAdditionalProperties:
|
|
1103
|
+
discriminated: false
|
|
1104
|
+
union:
|
|
1105
|
+
- string
|
|
1106
|
+
- double
|
|
1107
|
+
- boolean
|
|
1108
|
+
- integer
|
|
1109
|
+
- FieldValidationsAdditionalPropertiesAdditionalProperties
|
|
1110
|
+
source:
|
|
1111
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1112
|
+
inline: true
|
|
1113
|
+
FieldValidations:
|
|
1114
|
+
docs: The validations for the field
|
|
1115
|
+
properties:
|
|
1116
|
+
additionalProperties: optional<FieldValidationsAdditionalProperties>
|
|
1117
|
+
source:
|
|
1118
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1119
|
+
inline: true
|
|
1030
1120
|
Field:
|
|
1031
1121
|
docs: The details of a field in a collection
|
|
1032
1122
|
properties:
|
|
1033
1123
|
id:
|
|
1034
1124
|
type: string
|
|
1035
1125
|
docs: Unique identifier for a Field
|
|
1036
|
-
access: read-only
|
|
1037
1126
|
isRequired:
|
|
1038
1127
|
type: boolean
|
|
1039
1128
|
docs: define whether a field is required in a collection
|
|
@@ -1055,6 +1144,10 @@ types:
|
|
|
1055
1144
|
helpText:
|
|
1056
1145
|
type: optional<string>
|
|
1057
1146
|
docs: Additional text to help anyone filling out this field
|
|
1147
|
+
validations:
|
|
1148
|
+
type: optional<FieldValidations>
|
|
1149
|
+
docs: The validations for the field
|
|
1150
|
+
access: read-only
|
|
1058
1151
|
source:
|
|
1059
1152
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1060
1153
|
Collection:
|
|
@@ -1063,7 +1156,6 @@ types:
|
|
|
1063
1156
|
id:
|
|
1064
1157
|
type: string
|
|
1065
1158
|
docs: Unique identifier for a Collection
|
|
1066
|
-
access: read-only
|
|
1067
1159
|
displayName:
|
|
1068
1160
|
type: string
|
|
1069
1161
|
docs: Name given to the Collection
|
|
@@ -1126,15 +1218,15 @@ types:
|
|
|
1126
1218
|
type: optional<string>
|
|
1127
1219
|
docs: Identifier for the locale of the CMS item
|
|
1128
1220
|
lastPublished:
|
|
1129
|
-
type: string
|
|
1221
|
+
type: optional<string>
|
|
1130
1222
|
docs: The date the item was last published
|
|
1131
1223
|
access: read-only
|
|
1132
1224
|
lastUpdated:
|
|
1133
|
-
type: string
|
|
1225
|
+
type: optional<string>
|
|
1134
1226
|
docs: The date the item was last updated
|
|
1135
1227
|
access: read-only
|
|
1136
1228
|
createdOn:
|
|
1137
|
-
type: string
|
|
1229
|
+
type: optional<string>
|
|
1138
1230
|
docs: The date the item was created
|
|
1139
1231
|
access: read-only
|
|
1140
1232
|
isArchived:
|
|
@@ -1229,7 +1321,7 @@ types:
|
|
|
1229
1321
|
isDraft:
|
|
1230
1322
|
type: optional<boolean>
|
|
1231
1323
|
docs: Boolean determining if the Item is in a draft state.
|
|
1232
|
-
default:
|
|
1324
|
+
default: true
|
|
1233
1325
|
fieldData: CollectionItemPostSingleFieldData
|
|
1234
1326
|
source:
|
|
1235
1327
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
@@ -1312,9 +1404,8 @@ types:
|
|
|
1312
1404
|
items
|
|
1313
1405
|
properties:
|
|
1314
1406
|
id:
|
|
1315
|
-
type: string
|
|
1407
|
+
type: optional<string>
|
|
1316
1408
|
docs: Unique identifier for the Item
|
|
1317
|
-
access: read-only
|
|
1318
1409
|
cmsLocaleIds:
|
|
1319
1410
|
type: optional<list<string>>
|
|
1320
1411
|
docs: Array of identifiers for the locales where the item will be created
|
|
@@ -1427,15 +1518,12 @@ types:
|
|
|
1427
1518
|
id:
|
|
1428
1519
|
type: string
|
|
1429
1520
|
docs: Unique identifier for the comment thread
|
|
1430
|
-
access: read-only
|
|
1431
1521
|
siteId:
|
|
1432
1522
|
type: string
|
|
1433
1523
|
docs: The site unique identifier
|
|
1434
|
-
access: read-only
|
|
1435
1524
|
pageId:
|
|
1436
1525
|
type: string
|
|
1437
1526
|
docs: The page unique identifier
|
|
1438
|
-
access: read-only
|
|
1439
1527
|
localeId:
|
|
1440
1528
|
type: optional<string>
|
|
1441
1529
|
docs: The locale unique identifier
|
|
@@ -1447,11 +1535,9 @@ types:
|
|
|
1447
1535
|
breakpoint:
|
|
1448
1536
|
type: string
|
|
1449
1537
|
docs: The breakpoint the comment was left on
|
|
1450
|
-
access: read-only
|
|
1451
1538
|
url:
|
|
1452
1539
|
type: string
|
|
1453
1540
|
docs: The URL of the page the comment was left on
|
|
1454
|
-
access: read-only
|
|
1455
1541
|
content:
|
|
1456
1542
|
type: string
|
|
1457
1543
|
docs: The content of the comment reply
|
|
@@ -1469,11 +1555,9 @@ types:
|
|
|
1469
1555
|
createdOn:
|
|
1470
1556
|
type: string
|
|
1471
1557
|
docs: The date the item was created
|
|
1472
|
-
access: read-only
|
|
1473
1558
|
lastUpdated:
|
|
1474
1559
|
type: string
|
|
1475
1560
|
docs: The date the item was last updated
|
|
1476
|
-
access: read-only
|
|
1477
1561
|
source:
|
|
1478
1562
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1479
1563
|
CommentThreadListPagination:
|
|
@@ -1538,19 +1622,15 @@ types:
|
|
|
1538
1622
|
id:
|
|
1539
1623
|
type: string
|
|
1540
1624
|
docs: Unique identifier for the comment thread
|
|
1541
|
-
access: read-only
|
|
1542
1625
|
commentId:
|
|
1543
1626
|
type: string
|
|
1544
1627
|
docs: The comment reply unique identifier
|
|
1545
|
-
access: read-only
|
|
1546
1628
|
siteId:
|
|
1547
1629
|
type: string
|
|
1548
1630
|
docs: The site unique identifier
|
|
1549
|
-
access: read-only
|
|
1550
1631
|
pageId:
|
|
1551
1632
|
type: string
|
|
1552
1633
|
docs: The page unique identifier
|
|
1553
|
-
access: read-only
|
|
1554
1634
|
localeId:
|
|
1555
1635
|
type: optional<string>
|
|
1556
1636
|
docs: The locale unique identifier
|
|
@@ -1558,7 +1638,6 @@ types:
|
|
|
1558
1638
|
breakpoint:
|
|
1559
1639
|
type: string
|
|
1560
1640
|
docs: The breakpoint the comment was left on
|
|
1561
|
-
access: read-only
|
|
1562
1641
|
content:
|
|
1563
1642
|
type: string
|
|
1564
1643
|
docs: The content of the comment reply
|
|
@@ -1573,11 +1652,11 @@ types:
|
|
|
1573
1652
|
List of mentioned users is an empty array until email notifications
|
|
1574
1653
|
are sent.
|
|
1575
1654
|
lastUpdated:
|
|
1576
|
-
type: string
|
|
1655
|
+
type: optional<string>
|
|
1577
1656
|
docs: The date the item was last updated
|
|
1578
1657
|
access: read-only
|
|
1579
1658
|
createdOn:
|
|
1580
|
-
type: string
|
|
1659
|
+
type: optional<string>
|
|
1581
1660
|
docs: The date the item was created
|
|
1582
1661
|
access: read-only
|
|
1583
1662
|
source:
|
|
@@ -1648,7 +1727,6 @@ types:
|
|
|
1648
1727
|
id:
|
|
1649
1728
|
type: string
|
|
1650
1729
|
docs: Unique identifier for the Page
|
|
1651
|
-
access: read-only
|
|
1652
1730
|
siteId:
|
|
1653
1731
|
type: optional<string>
|
|
1654
1732
|
docs: Unique identifier for the Site
|
|
@@ -1691,7 +1769,8 @@ types:
|
|
|
1691
1769
|
type: optional<boolean>
|
|
1692
1770
|
docs: >-
|
|
1693
1771
|
Indicates whether the Page supports [Page
|
|
1694
|
-
Branching](https://university.webflow.com/lesson/page-branching)
|
|
1772
|
+
Branching](https://university.webflow.com/lesson/page-branching).
|
|
1773
|
+
Pages that are already branches cannot be branched again.
|
|
1695
1774
|
default: false
|
|
1696
1775
|
access: read-only
|
|
1697
1776
|
isBranch:
|
|
@@ -1701,6 +1780,9 @@ types:
|
|
|
1701
1780
|
Branching](https://university.webflow.com/lesson/page-branching)
|
|
1702
1781
|
default: false
|
|
1703
1782
|
access: read-only
|
|
1783
|
+
branchId:
|
|
1784
|
+
type: optional<string>
|
|
1785
|
+
docs: If the Page is a Branch of another Page, this is the ID of the Branch
|
|
1704
1786
|
seo:
|
|
1705
1787
|
type: optional<PageSeo>
|
|
1706
1788
|
docs: SEO-related fields for the Page
|
|
@@ -1745,7 +1827,6 @@ types:
|
|
|
1745
1827
|
id:
|
|
1746
1828
|
type: string
|
|
1747
1829
|
docs: Node UUID
|
|
1748
|
-
access: read-only
|
|
1749
1830
|
text:
|
|
1750
1831
|
type: TextNodeText
|
|
1751
1832
|
docs: The text content of the node
|
|
@@ -1772,7 +1853,6 @@ types:
|
|
|
1772
1853
|
id:
|
|
1773
1854
|
type: string
|
|
1774
1855
|
docs: Node UUID
|
|
1775
|
-
access: read-only
|
|
1776
1856
|
image:
|
|
1777
1857
|
type: ImageNodeImage
|
|
1778
1858
|
docs: The image details of the node
|
|
@@ -1835,7 +1915,6 @@ types:
|
|
|
1835
1915
|
id:
|
|
1836
1916
|
type: string
|
|
1837
1917
|
docs: The unique identifier of the component instance node
|
|
1838
|
-
access: read-only
|
|
1839
1918
|
componentId:
|
|
1840
1919
|
type: string
|
|
1841
1920
|
docs: The unique identifier of the component
|
|
@@ -1853,7 +1932,6 @@ types:
|
|
|
1853
1932
|
id:
|
|
1854
1933
|
type: string
|
|
1855
1934
|
docs: Node UUID
|
|
1856
|
-
access: read-only
|
|
1857
1935
|
placeholder:
|
|
1858
1936
|
type: string
|
|
1859
1937
|
docs: The placeholder text of the input node
|
|
@@ -1882,7 +1960,6 @@ types:
|
|
|
1882
1960
|
id:
|
|
1883
1961
|
type: string
|
|
1884
1962
|
docs: Node UUID
|
|
1885
|
-
access: read-only
|
|
1886
1963
|
choices:
|
|
1887
1964
|
docs: The list of choices in this select node.
|
|
1888
1965
|
type: list<SelectNodeChoicesItem>
|
|
@@ -1900,7 +1977,6 @@ types:
|
|
|
1900
1977
|
id:
|
|
1901
1978
|
type: string
|
|
1902
1979
|
docs: Node UUID
|
|
1903
|
-
access: read-only
|
|
1904
1980
|
value:
|
|
1905
1981
|
type: string
|
|
1906
1982
|
docs: The text content of the submit button.
|
|
@@ -1921,7 +1997,6 @@ types:
|
|
|
1921
1997
|
id:
|
|
1922
1998
|
type: string
|
|
1923
1999
|
docs: Node UUID
|
|
1924
|
-
access: read-only
|
|
1925
2000
|
value:
|
|
1926
2001
|
type: string
|
|
1927
2002
|
docs: The text content of the search button.
|
|
@@ -1938,13 +2013,20 @@ types:
|
|
|
1938
2013
|
Model (DOM). Each node has a unique identifier and a specific type that
|
|
1939
2014
|
determines its content structure and attributes.
|
|
1940
2015
|
union:
|
|
1941
|
-
text:
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
2016
|
+
text:
|
|
2017
|
+
type: TextNode
|
|
2018
|
+
image:
|
|
2019
|
+
type: ImageNode
|
|
2020
|
+
component-instance:
|
|
2021
|
+
type: ComponentNode
|
|
2022
|
+
text-input:
|
|
2023
|
+
type: TextInputNode
|
|
2024
|
+
select:
|
|
2025
|
+
type: SelectNode
|
|
2026
|
+
submit-button:
|
|
2027
|
+
type: SubmitButtonNode
|
|
2028
|
+
search-button:
|
|
2029
|
+
type: SearchButtonNode
|
|
1948
2030
|
source:
|
|
1949
2031
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1950
2032
|
Dom:
|
|
@@ -1959,6 +2041,11 @@ types:
|
|
|
1959
2041
|
pageId:
|
|
1960
2042
|
type: optional<string>
|
|
1961
2043
|
docs: Page ID
|
|
2044
|
+
branchId:
|
|
2045
|
+
type: optional<string>
|
|
2046
|
+
docs: >-
|
|
2047
|
+
The unique identifier of a [specific page
|
|
2048
|
+
branch.](https://help.webflow.com/hc/en-us/articles/33961355506195-Page-branching)
|
|
1962
2049
|
nodes: optional<list<Node>>
|
|
1963
2050
|
pagination: optional<Pagination>
|
|
1964
2051
|
lastUpdated:
|
|
@@ -2025,7 +2112,7 @@ types:
|
|
|
2025
2112
|
source:
|
|
2026
2113
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2027
2114
|
inline: true
|
|
2028
|
-
|
|
2115
|
+
Select:
|
|
2029
2116
|
docs: Update choices on a select node
|
|
2030
2117
|
properties:
|
|
2031
2118
|
nodeId:
|
|
@@ -2078,7 +2165,6 @@ types:
|
|
|
2078
2165
|
id:
|
|
2079
2166
|
type: string
|
|
2080
2167
|
docs: Unique identifier for the Component
|
|
2081
|
-
access: read-only
|
|
2082
2168
|
name:
|
|
2083
2169
|
type: optional<string>
|
|
2084
2170
|
docs: Component Name
|
|
@@ -2228,6 +2314,7 @@ types:
|
|
|
2228
2314
|
docs: A list of scripts registered to the site
|
|
2229
2315
|
properties:
|
|
2230
2316
|
registeredScripts: optional<list<CustomCodeHostedResponse>>
|
|
2317
|
+
pagination: optional<Pagination>
|
|
2231
2318
|
source:
|
|
2232
2319
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2233
2320
|
CustomCodeInlineResponse:
|
|
@@ -2333,7 +2420,7 @@ types:
|
|
|
2333
2420
|
type: integer
|
|
2334
2421
|
docs: Width in pixels
|
|
2335
2422
|
height:
|
|
2336
|
-
type: integer
|
|
2423
|
+
type: optional<integer>
|
|
2337
2424
|
docs: Height in pixels
|
|
2338
2425
|
quality:
|
|
2339
2426
|
type: integer
|
|
@@ -2347,40 +2434,40 @@ types:
|
|
|
2347
2434
|
docs: Asset details
|
|
2348
2435
|
properties:
|
|
2349
2436
|
id:
|
|
2350
|
-
type: string
|
|
2437
|
+
type: optional<string>
|
|
2351
2438
|
docs: Unique identifier for this asset
|
|
2352
2439
|
access: read-only
|
|
2353
2440
|
contentType:
|
|
2354
|
-
type: string
|
|
2441
|
+
type: optional<string>
|
|
2355
2442
|
docs: File format type
|
|
2356
2443
|
access: read-only
|
|
2357
2444
|
size:
|
|
2358
|
-
type: integer
|
|
2445
|
+
type: optional<integer>
|
|
2359
2446
|
docs: size in bytes
|
|
2360
2447
|
access: read-only
|
|
2361
2448
|
siteId:
|
|
2362
|
-
type: string
|
|
2449
|
+
type: optional<string>
|
|
2363
2450
|
docs: Unique identifier for the site that hosts this asset
|
|
2364
2451
|
access: read-only
|
|
2365
2452
|
hostedUrl:
|
|
2366
|
-
type: string
|
|
2453
|
+
type: optional<string>
|
|
2367
2454
|
docs: Link to the asset
|
|
2368
2455
|
validation:
|
|
2369
2456
|
format: uri
|
|
2370
2457
|
access: read-only
|
|
2371
2458
|
originalFileName:
|
|
2372
|
-
type: string
|
|
2459
|
+
type: optional<string>
|
|
2373
2460
|
docs: Original file name at the time of upload
|
|
2374
2461
|
access: read-only
|
|
2375
2462
|
displayName:
|
|
2376
2463
|
type: string
|
|
2377
2464
|
docs: Display name of the asset
|
|
2378
2465
|
lastUpdated:
|
|
2379
|
-
type: datetime
|
|
2466
|
+
type: optional<datetime>
|
|
2380
2467
|
docs: Date the asset metadata was last updated
|
|
2381
2468
|
access: read-only
|
|
2382
2469
|
createdOn:
|
|
2383
|
-
type: datetime
|
|
2470
|
+
type: optional<datetime>
|
|
2384
2471
|
docs: Date the asset metadata was created
|
|
2385
2472
|
access: read-only
|
|
2386
2473
|
variants:
|
|
@@ -2506,6 +2593,7 @@ types:
|
|
|
2506
2593
|
- collection_item_created
|
|
2507
2594
|
- collection_item_changed
|
|
2508
2595
|
- collection_item_deleted
|
|
2596
|
+
- collection_item_published
|
|
2509
2597
|
- collection_item_unpublished
|
|
2510
2598
|
- comment_created
|
|
2511
2599
|
docs: >
|
|
@@ -2688,43 +2776,12 @@ types:
|
|
|
2688
2776
|
pagination: optional<Pagination>
|
|
2689
2777
|
source:
|
|
2690
2778
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2691
|
-
UserDataData:
|
|
2692
|
-
properties:
|
|
2693
|
-
name:
|
|
2694
|
-
type: optional<string>
|
|
2695
|
-
docs: |
|
|
2696
|
-
The name of the user
|
|
2697
|
-
email:
|
|
2698
|
-
type: optional<string>
|
|
2699
|
-
docs: |
|
|
2700
|
-
The email address of the user
|
|
2701
|
-
accept-privacy:
|
|
2702
|
-
type: optional<boolean>
|
|
2703
|
-
docs: |
|
|
2704
|
-
Boolean indicating if the user has accepted the privacy policy
|
|
2705
|
-
accept-communications:
|
|
2706
|
-
type: optional<boolean>
|
|
2707
|
-
docs: |
|
|
2708
|
-
Boolean indicating if the user has accepted to receive communications
|
|
2709
|
-
additionalProperties:
|
|
2710
|
-
type: optional<string>
|
|
2711
|
-
docs: Custom user attributes
|
|
2712
|
-
source:
|
|
2713
|
-
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2714
|
-
inline: true
|
|
2715
|
-
UserData:
|
|
2716
|
-
docs: An object containing the User's basic info and custom fields
|
|
2717
|
-
properties:
|
|
2718
|
-
data: optional<UserDataData>
|
|
2719
|
-
source:
|
|
2720
|
-
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2721
2779
|
UserStatus:
|
|
2722
2780
|
enum:
|
|
2723
2781
|
- invited
|
|
2724
2782
|
- verified
|
|
2725
2783
|
- unverified
|
|
2726
2784
|
docs: The status of the user
|
|
2727
|
-
inline: true
|
|
2728
2785
|
source:
|
|
2729
2786
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2730
2787
|
UserAccessGroupsItemType:
|
|
@@ -2752,7 +2809,36 @@ types:
|
|
|
2752
2809
|
* `ecommerce` - Assigned to the user via an ecommerce purchase
|
|
2753
2810
|
source:
|
|
2754
2811
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2812
|
+
UserDataData:
|
|
2813
|
+
properties:
|
|
2814
|
+
name:
|
|
2815
|
+
type: optional<string>
|
|
2816
|
+
docs: |
|
|
2817
|
+
The name of the user
|
|
2818
|
+
email:
|
|
2819
|
+
type: optional<string>
|
|
2820
|
+
docs: |
|
|
2821
|
+
The email address of the user
|
|
2822
|
+
accept-privacy:
|
|
2823
|
+
type: optional<boolean>
|
|
2824
|
+
docs: |
|
|
2825
|
+
Boolean indicating if the user has accepted the privacy policy
|
|
2826
|
+
accept-communications:
|
|
2827
|
+
type: optional<boolean>
|
|
2828
|
+
docs: |
|
|
2829
|
+
Boolean indicating if the user has accepted to receive communications
|
|
2830
|
+
additionalProperties:
|
|
2831
|
+
type: optional<string>
|
|
2832
|
+
docs: Custom user attributes
|
|
2833
|
+
source:
|
|
2834
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2755
2835
|
inline: true
|
|
2836
|
+
UserData:
|
|
2837
|
+
docs: An object containing the User's basic info and custom fields
|
|
2838
|
+
properties:
|
|
2839
|
+
data: optional<UserDataData>
|
|
2840
|
+
source:
|
|
2841
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2756
2842
|
User:
|
|
2757
2843
|
docs: >
|
|
2758
2844
|
The fields that define the schema for a given Item are based on the
|
|
@@ -2784,10 +2870,7 @@ types:
|
|
|
2784
2870
|
type: optional<datetime>
|
|
2785
2871
|
docs: The timestamp the user was logged in
|
|
2786
2872
|
access: read-only
|
|
2787
|
-
status:
|
|
2788
|
-
type: optional<UserStatus>
|
|
2789
|
-
docs: The status of the user
|
|
2790
|
-
access: read-only
|
|
2873
|
+
status: optional<UserStatus>
|
|
2791
2874
|
accessGroups:
|
|
2792
2875
|
type: optional<list<UserAccessGroupsItem>>
|
|
2793
2876
|
docs: Access groups the user belongs to
|
|
@@ -2993,9 +3076,9 @@ types:
|
|
|
2993
3076
|
sku-properties:
|
|
2994
3077
|
type: optional<list<SkuPropertyList>>
|
|
2995
3078
|
docs: Variant types to include in SKUs
|
|
2996
|
-
|
|
3079
|
+
category:
|
|
2997
3080
|
type: optional<list<string>>
|
|
2998
|
-
docs: The
|
|
3081
|
+
docs: The category your product belongs to.
|
|
2999
3082
|
tax-category:
|
|
3000
3083
|
type: optional<ProductFieldDataTaxCategory>
|
|
3001
3084
|
docs: Product tax class
|
|
@@ -3173,15 +3256,6 @@ types:
|
|
|
3173
3256
|
[Subscription
|
|
3174
3257
|
plan](https://help.webflow.com/hc/en-us/articles/33961432087955-Add-and-manage-products-and-categories#subscription)
|
|
3175
3258
|
for the SKU
|
|
3176
|
-
track-inventory:
|
|
3177
|
-
type: optional<boolean>
|
|
3178
|
-
docs: >-
|
|
3179
|
-
A boolean indicating whether inventory for this product should be
|
|
3180
|
-
tracked.
|
|
3181
|
-
default: false
|
|
3182
|
-
quantity:
|
|
3183
|
-
type: optional<double>
|
|
3184
|
-
docs: Quantity of SKU that will be tracked as items are ordered.
|
|
3185
3259
|
main-image:
|
|
3186
3260
|
type: optional<string>
|
|
3187
3261
|
docs: The URL for the main image of the SKU
|
|
@@ -3547,57 +3621,163 @@ types:
|
|
|
3547
3621
|
inline: true
|
|
3548
3622
|
source:
|
|
3549
3623
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
docs: The full name of the Customer
|
|
3556
|
-
email:
|
|
3557
|
-
type: optional<string>
|
|
3558
|
-
docs: The Customer's email address
|
|
3559
|
-
validation:
|
|
3560
|
-
format: email
|
|
3561
|
-
source:
|
|
3562
|
-
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3624
|
+
OrderShippingAddressType:
|
|
3625
|
+
enum:
|
|
3626
|
+
- shipping
|
|
3627
|
+
- billing
|
|
3628
|
+
docs: The type of the order address (billing or shipping)
|
|
3563
3629
|
inline: true
|
|
3564
|
-
OrderMetadata:
|
|
3565
|
-
properties:
|
|
3566
|
-
isBuyNow: optional<boolean>
|
|
3567
3630
|
source:
|
|
3568
3631
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3569
|
-
|
|
3570
|
-
OrderTotalsExtrasItemType:
|
|
3632
|
+
OrderShippingAddressJapanType:
|
|
3571
3633
|
enum:
|
|
3572
|
-
-
|
|
3573
|
-
-
|
|
3574
|
-
|
|
3575
|
-
-
|
|
3576
|
-
|
|
3577
|
-
docs: The type of extra item this is.
|
|
3634
|
+
- kana
|
|
3635
|
+
- kanji
|
|
3636
|
+
docs: >-
|
|
3637
|
+
Represents a Japan-only address format. This field will only appear on
|
|
3638
|
+
orders placed from Japan.
|
|
3578
3639
|
inline: true
|
|
3579
3640
|
source:
|
|
3580
3641
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3581
|
-
|
|
3582
|
-
docs:
|
|
3642
|
+
OrderShippingAddress:
|
|
3643
|
+
docs: The shipping address
|
|
3583
3644
|
properties:
|
|
3584
3645
|
type:
|
|
3585
|
-
type: optional<
|
|
3586
|
-
docs: The type of
|
|
3587
|
-
|
|
3646
|
+
type: optional<OrderShippingAddressType>
|
|
3647
|
+
docs: The type of the order address (billing or shipping)
|
|
3648
|
+
japanType:
|
|
3649
|
+
type: optional<OrderShippingAddressJapanType>
|
|
3650
|
+
docs: >-
|
|
3651
|
+
Represents a Japan-only address format. This field will only appear on
|
|
3652
|
+
orders placed from Japan.
|
|
3653
|
+
addressee:
|
|
3588
3654
|
type: optional<string>
|
|
3589
|
-
docs:
|
|
3590
|
-
|
|
3655
|
+
docs: Display name on the address
|
|
3656
|
+
line1:
|
|
3591
3657
|
type: optional<string>
|
|
3592
|
-
docs:
|
|
3593
|
-
|
|
3594
|
-
type: optional<
|
|
3595
|
-
docs: The
|
|
3658
|
+
docs: The first line of the address
|
|
3659
|
+
line2:
|
|
3660
|
+
type: optional<string>
|
|
3661
|
+
docs: The second line of the address
|
|
3662
|
+
city:
|
|
3663
|
+
type: optional<string>
|
|
3664
|
+
docs: The city of the address.
|
|
3665
|
+
state:
|
|
3666
|
+
type: optional<string>
|
|
3667
|
+
docs: The state or province of the address
|
|
3668
|
+
country:
|
|
3669
|
+
type: optional<string>
|
|
3670
|
+
docs: The country of the address
|
|
3671
|
+
postalCode:
|
|
3672
|
+
type: optional<string>
|
|
3673
|
+
docs: The postal code of the address
|
|
3596
3674
|
source:
|
|
3597
3675
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3598
3676
|
inline: true
|
|
3599
|
-
|
|
3600
|
-
|
|
3677
|
+
OrderBillingAddressType:
|
|
3678
|
+
enum:
|
|
3679
|
+
- shipping
|
|
3680
|
+
- billing
|
|
3681
|
+
docs: The type of the order address (billing or shipping)
|
|
3682
|
+
inline: true
|
|
3683
|
+
source:
|
|
3684
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3685
|
+
OrderBillingAddressJapanType:
|
|
3686
|
+
enum:
|
|
3687
|
+
- kana
|
|
3688
|
+
- kanji
|
|
3689
|
+
docs: >-
|
|
3690
|
+
Represents a Japan-only address format. This field will only appear on
|
|
3691
|
+
orders placed from Japan.
|
|
3692
|
+
inline: true
|
|
3693
|
+
source:
|
|
3694
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3695
|
+
OrderBillingAddress:
|
|
3696
|
+
docs: The billing address
|
|
3697
|
+
properties:
|
|
3698
|
+
type:
|
|
3699
|
+
type: optional<OrderBillingAddressType>
|
|
3700
|
+
docs: The type of the order address (billing or shipping)
|
|
3701
|
+
japanType:
|
|
3702
|
+
type: optional<OrderBillingAddressJapanType>
|
|
3703
|
+
docs: >-
|
|
3704
|
+
Represents a Japan-only address format. This field will only appear on
|
|
3705
|
+
orders placed from Japan.
|
|
3706
|
+
addressee:
|
|
3707
|
+
type: optional<string>
|
|
3708
|
+
docs: Display name on the address
|
|
3709
|
+
line1:
|
|
3710
|
+
type: optional<string>
|
|
3711
|
+
docs: The first line of the address
|
|
3712
|
+
line2:
|
|
3713
|
+
type: optional<string>
|
|
3714
|
+
docs: The second line of the address
|
|
3715
|
+
city:
|
|
3716
|
+
type: optional<string>
|
|
3717
|
+
docs: The city of the address.
|
|
3718
|
+
state:
|
|
3719
|
+
type: optional<string>
|
|
3720
|
+
docs: The state or province of the address
|
|
3721
|
+
country:
|
|
3722
|
+
type: optional<string>
|
|
3723
|
+
docs: The country of the address
|
|
3724
|
+
postalCode:
|
|
3725
|
+
type: optional<string>
|
|
3726
|
+
docs: The postal code of the address
|
|
3727
|
+
source:
|
|
3728
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3729
|
+
inline: true
|
|
3730
|
+
OrderCustomerInfo:
|
|
3731
|
+
docs: An object with the keys `fullName` and `email`.
|
|
3732
|
+
properties:
|
|
3733
|
+
fullName:
|
|
3734
|
+
type: optional<string>
|
|
3735
|
+
docs: The full name of the Customer
|
|
3736
|
+
email:
|
|
3737
|
+
type: optional<string>
|
|
3738
|
+
docs: The Customer's email address
|
|
3739
|
+
validation:
|
|
3740
|
+
format: email
|
|
3741
|
+
source:
|
|
3742
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3743
|
+
inline: true
|
|
3744
|
+
OrderMetadata:
|
|
3745
|
+
properties:
|
|
3746
|
+
isBuyNow: optional<boolean>
|
|
3747
|
+
source:
|
|
3748
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3749
|
+
inline: true
|
|
3750
|
+
OrderTotalsExtrasItemType:
|
|
3751
|
+
enum:
|
|
3752
|
+
- discount
|
|
3753
|
+
- value: discount-shipping
|
|
3754
|
+
name: DiscountShipping
|
|
3755
|
+
- shipping
|
|
3756
|
+
- tax
|
|
3757
|
+
docs: The type of extra item this is.
|
|
3758
|
+
inline: true
|
|
3759
|
+
source:
|
|
3760
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3761
|
+
OrderTotalsExtrasItem:
|
|
3762
|
+
docs: Extra order items, includes discounts, shipping, and taxes.
|
|
3763
|
+
properties:
|
|
3764
|
+
type:
|
|
3765
|
+
type: optional<OrderTotalsExtrasItemType>
|
|
3766
|
+
docs: The type of extra item this is.
|
|
3767
|
+
name:
|
|
3768
|
+
type: optional<string>
|
|
3769
|
+
docs: A human-readable (but English) name for this extra charge.
|
|
3770
|
+
description:
|
|
3771
|
+
type: optional<string>
|
|
3772
|
+
docs: A human-readable (but English) description of this extra charge.
|
|
3773
|
+
price:
|
|
3774
|
+
type: optional<OrderPrice>
|
|
3775
|
+
docs: The price for the item
|
|
3776
|
+
source:
|
|
3777
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3778
|
+
inline: true
|
|
3779
|
+
OrderTotals:
|
|
3780
|
+
docs: An object describing various pricing totals
|
|
3601
3781
|
properties:
|
|
3602
3782
|
subtotal:
|
|
3603
3783
|
type: optional<OrderPrice>
|
|
@@ -3691,10 +3871,10 @@ types:
|
|
|
3691
3871
|
type: optional<list<OrderAddress>>
|
|
3692
3872
|
docs: All addresses provided by the customer during the ordering flow.
|
|
3693
3873
|
shippingAddress:
|
|
3694
|
-
type: optional<
|
|
3874
|
+
type: optional<OrderShippingAddress>
|
|
3695
3875
|
docs: The shipping address
|
|
3696
3876
|
billingAddress:
|
|
3697
|
-
type: optional<
|
|
3877
|
+
type: optional<OrderBillingAddress>
|
|
3698
3878
|
docs: The billing address
|
|
3699
3879
|
shippingProvider:
|
|
3700
3880
|
type: optional<string>
|
|
@@ -3806,3 +3986,486 @@ types:
|
|
|
3806
3986
|
docs: The three-letter ISO currency code for the Site
|
|
3807
3987
|
source:
|
|
3808
3988
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3989
|
+
FormSubmissionTriggerPayloadSchemaItemFieldType:
|
|
3990
|
+
enum:
|
|
3991
|
+
- FormTextInput
|
|
3992
|
+
- FormTextarea
|
|
3993
|
+
- FormCheckboxInput
|
|
3994
|
+
- FormRadioInput
|
|
3995
|
+
- FormFileUploadInput
|
|
3996
|
+
docs: Form field type
|
|
3997
|
+
inline: true
|
|
3998
|
+
source:
|
|
3999
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4000
|
+
FormSubmissionTriggerPayloadSchemaItem:
|
|
4001
|
+
properties:
|
|
4002
|
+
fieldName:
|
|
4003
|
+
type: optional<string>
|
|
4004
|
+
docs: Form field name
|
|
4005
|
+
fieldType:
|
|
4006
|
+
type: optional<FormSubmissionTriggerPayloadSchemaItemFieldType>
|
|
4007
|
+
docs: Form field type
|
|
4008
|
+
fieldElementId:
|
|
4009
|
+
type: optional<string>
|
|
4010
|
+
docs: Element ID of the Form Field
|
|
4011
|
+
source:
|
|
4012
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4013
|
+
inline: true
|
|
4014
|
+
FormSubmissionTriggerPayload:
|
|
4015
|
+
docs: The payload of data sent from Webflow
|
|
4016
|
+
properties:
|
|
4017
|
+
name:
|
|
4018
|
+
type: optional<string>
|
|
4019
|
+
docs: The name of the form
|
|
4020
|
+
siteId:
|
|
4021
|
+
type: optional<string>
|
|
4022
|
+
docs: The ID of the site that the form was submitted from
|
|
4023
|
+
data:
|
|
4024
|
+
type: optional<map<string, unknown>>
|
|
4025
|
+
docs: The data submitted in the form
|
|
4026
|
+
schema:
|
|
4027
|
+
type: optional<list<FormSubmissionTriggerPayloadSchemaItem>>
|
|
4028
|
+
docs: A list of fields from the submitted form
|
|
4029
|
+
submittedAt:
|
|
4030
|
+
type: optional<string>
|
|
4031
|
+
docs: The timestamp the form was submitted
|
|
4032
|
+
id:
|
|
4033
|
+
type: optional<string>
|
|
4034
|
+
docs: the ID of the event
|
|
4035
|
+
formId:
|
|
4036
|
+
type: optional<string>
|
|
4037
|
+
docs: The ID of the form submission
|
|
4038
|
+
formElementId:
|
|
4039
|
+
type: optional<string>
|
|
4040
|
+
docs: The uniqueID of the Form element
|
|
4041
|
+
source:
|
|
4042
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4043
|
+
inline: true
|
|
4044
|
+
FormSubmissionTrigger:
|
|
4045
|
+
docs: The Webhook payload for when a form is submitted
|
|
4046
|
+
properties:
|
|
4047
|
+
triggerType:
|
|
4048
|
+
type: optional<string>
|
|
4049
|
+
docs: The type of event that triggered the request
|
|
4050
|
+
payload:
|
|
4051
|
+
type: optional<FormSubmissionTriggerPayload>
|
|
4052
|
+
docs: The payload of data sent from Webflow
|
|
4053
|
+
source:
|
|
4054
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4055
|
+
SitePublishPayload:
|
|
4056
|
+
docs: The payload of data sent from Webflow
|
|
4057
|
+
properties:
|
|
4058
|
+
siteId:
|
|
4059
|
+
type: optional<string>
|
|
4060
|
+
docs: The ID of the site that was published
|
|
4061
|
+
publishedOn:
|
|
4062
|
+
type: optional<datetime>
|
|
4063
|
+
docs: The timestamp of the publish event
|
|
4064
|
+
domains:
|
|
4065
|
+
type: optional<list<string>>
|
|
4066
|
+
docs: The domains that were published
|
|
4067
|
+
publishedBy:
|
|
4068
|
+
type: optional<map<string, unknown>>
|
|
4069
|
+
docs: The name andID of the user who published the site
|
|
4070
|
+
source:
|
|
4071
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4072
|
+
inline: true
|
|
4073
|
+
SitePublish:
|
|
4074
|
+
docs: The Webhook payload for when a Site is published
|
|
4075
|
+
properties:
|
|
4076
|
+
triggerType:
|
|
4077
|
+
type: optional<string>
|
|
4078
|
+
docs: The type of event that triggered the request
|
|
4079
|
+
payload:
|
|
4080
|
+
type: optional<SitePublishPayload>
|
|
4081
|
+
docs: The payload of data sent from Webflow
|
|
4082
|
+
source:
|
|
4083
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4084
|
+
NewOrder:
|
|
4085
|
+
docs: The Webhook payload for when a new order is created
|
|
4086
|
+
properties:
|
|
4087
|
+
triggerType:
|
|
4088
|
+
type: optional<string>
|
|
4089
|
+
docs: The type of event that triggered the request
|
|
4090
|
+
payload: optional<Order>
|
|
4091
|
+
source:
|
|
4092
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4093
|
+
UpdatedOrder:
|
|
4094
|
+
docs: The Webhook payload for when an order is updated
|
|
4095
|
+
properties:
|
|
4096
|
+
triggerType:
|
|
4097
|
+
type: optional<string>
|
|
4098
|
+
docs: The type of event that triggered the request
|
|
4099
|
+
payload: optional<Order>
|
|
4100
|
+
source:
|
|
4101
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4102
|
+
SingleLocaleCreatedPayloadFieldData:
|
|
4103
|
+
properties:
|
|
4104
|
+
name: string
|
|
4105
|
+
slug: string
|
|
4106
|
+
extra-properties: true
|
|
4107
|
+
source:
|
|
4108
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4109
|
+
inline: true
|
|
4110
|
+
SingleLocaleCreatedPayload:
|
|
4111
|
+
properties:
|
|
4112
|
+
id:
|
|
4113
|
+
type: string
|
|
4114
|
+
docs: Unique identifier for the Item
|
|
4115
|
+
validation:
|
|
4116
|
+
format: uuid
|
|
4117
|
+
workspaceId:
|
|
4118
|
+
type: string
|
|
4119
|
+
docs: Unique identifier of the workspace
|
|
4120
|
+
validation:
|
|
4121
|
+
format: uuid
|
|
4122
|
+
siteId:
|
|
4123
|
+
type: string
|
|
4124
|
+
docs: Unique identifier of the site
|
|
4125
|
+
validation:
|
|
4126
|
+
format: uuid
|
|
4127
|
+
collectionId:
|
|
4128
|
+
type: string
|
|
4129
|
+
docs: Unique identifier of the collection
|
|
4130
|
+
validation:
|
|
4131
|
+
format: uuid
|
|
4132
|
+
cmsLocaleId:
|
|
4133
|
+
type: optional<string>
|
|
4134
|
+
docs: Unique identifier of the CMS locale for this item
|
|
4135
|
+
validation:
|
|
4136
|
+
format: uuid
|
|
4137
|
+
lastPublished: optional<datetime>
|
|
4138
|
+
lastUpdated: optional<datetime>
|
|
4139
|
+
createdOn: optional<datetime>
|
|
4140
|
+
isArchived: optional<boolean>
|
|
4141
|
+
isDraft: optional<boolean>
|
|
4142
|
+
fieldData: SingleLocaleCreatedPayloadFieldData
|
|
4143
|
+
source:
|
|
4144
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4145
|
+
CollectionItemCreated:
|
|
4146
|
+
docs: The Webhook payload for when a Collection Item is created
|
|
4147
|
+
properties:
|
|
4148
|
+
triggerType:
|
|
4149
|
+
type: literal<"collection_item_created">
|
|
4150
|
+
docs: The type of event that triggered the request
|
|
4151
|
+
payload:
|
|
4152
|
+
type: SingleLocaleCreatedPayload
|
|
4153
|
+
source:
|
|
4154
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4155
|
+
CollectionItemChanged:
|
|
4156
|
+
docs: The Webhook payload for when a Collection Item is changed
|
|
4157
|
+
properties:
|
|
4158
|
+
triggerType:
|
|
4159
|
+
type: literal<"collection_item_changed">
|
|
4160
|
+
docs: The type of event that triggered the request
|
|
4161
|
+
payload:
|
|
4162
|
+
type: SingleLocaleCreatedPayload
|
|
4163
|
+
source:
|
|
4164
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4165
|
+
CollectionItemRemovedPayloadFieldData:
|
|
4166
|
+
properties:
|
|
4167
|
+
name: string
|
|
4168
|
+
slug: string
|
|
4169
|
+
extra-properties: true
|
|
4170
|
+
source:
|
|
4171
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4172
|
+
inline: true
|
|
4173
|
+
CollectionItemRemovedPayload:
|
|
4174
|
+
docs: The payload of data sent from Webflow
|
|
4175
|
+
properties:
|
|
4176
|
+
id:
|
|
4177
|
+
type: optional<string>
|
|
4178
|
+
docs: The ID of the collection item that was deleted
|
|
4179
|
+
siteId:
|
|
4180
|
+
type: optional<string>
|
|
4181
|
+
docs: The ID of the site
|
|
4182
|
+
workspaceId:
|
|
4183
|
+
type: optional<string>
|
|
4184
|
+
docs: The ID of the workspace
|
|
4185
|
+
collectionId:
|
|
4186
|
+
type: optional<string>
|
|
4187
|
+
docs: The ID of the collection
|
|
4188
|
+
cmsLocaleId:
|
|
4189
|
+
type: optional<string>
|
|
4190
|
+
docs: Unique identifier of the CMS locale for this item
|
|
4191
|
+
validation:
|
|
4192
|
+
format: uuid
|
|
4193
|
+
lastPublished: optional<datetime>
|
|
4194
|
+
lastUpdated: optional<datetime>
|
|
4195
|
+
createdOn: optional<datetime>
|
|
4196
|
+
isArchived: optional<boolean>
|
|
4197
|
+
isDraft: optional<boolean>
|
|
4198
|
+
fieldData: optional<CollectionItemRemovedPayloadFieldData>
|
|
4199
|
+
source:
|
|
4200
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4201
|
+
inline: true
|
|
4202
|
+
CollectionItemRemoved:
|
|
4203
|
+
properties:
|
|
4204
|
+
triggerType:
|
|
4205
|
+
type: optional<string>
|
|
4206
|
+
docs: The type of event that triggered the request
|
|
4207
|
+
payload:
|
|
4208
|
+
type: optional<CollectionItemRemovedPayload>
|
|
4209
|
+
docs: The payload of data sent from Webflow
|
|
4210
|
+
source:
|
|
4211
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4212
|
+
PayloadFieldData:
|
|
4213
|
+
properties:
|
|
4214
|
+
name: string
|
|
4215
|
+
slug: string
|
|
4216
|
+
extra-properties: true
|
|
4217
|
+
source:
|
|
4218
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4219
|
+
inline: true
|
|
4220
|
+
Payload:
|
|
4221
|
+
docs: The payload of data sent from Webflow
|
|
4222
|
+
properties:
|
|
4223
|
+
id:
|
|
4224
|
+
type: optional<string>
|
|
4225
|
+
docs: The ID of the collection item that was unpublished
|
|
4226
|
+
siteId:
|
|
4227
|
+
type: optional<string>
|
|
4228
|
+
docs: The ID of the site
|
|
4229
|
+
workspaceId:
|
|
4230
|
+
type: optional<string>
|
|
4231
|
+
docs: The ID of the workspace
|
|
4232
|
+
collectionId:
|
|
4233
|
+
type: optional<string>
|
|
4234
|
+
docs: The ID of the collection
|
|
4235
|
+
cmsLocaleId:
|
|
4236
|
+
type: optional<string>
|
|
4237
|
+
docs: Unique identifier of the CMS locale for this item
|
|
4238
|
+
validation:
|
|
4239
|
+
format: uuid
|
|
4240
|
+
lastPublished: optional<datetime>
|
|
4241
|
+
lastUpdated: optional<datetime>
|
|
4242
|
+
createdOn: optional<datetime>
|
|
4243
|
+
isArchived: optional<boolean>
|
|
4244
|
+
isDraft: optional<boolean>
|
|
4245
|
+
fieldData: optional<PayloadFieldData>
|
|
4246
|
+
source:
|
|
4247
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4248
|
+
CollectionItemPublished:
|
|
4249
|
+
properties:
|
|
4250
|
+
triggerType:
|
|
4251
|
+
type: optional<string>
|
|
4252
|
+
docs: The type of event that triggered the request
|
|
4253
|
+
payload: optional<Payload>
|
|
4254
|
+
source:
|
|
4255
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4256
|
+
CollectionItemUnpublishedPayloadFieldData:
|
|
4257
|
+
properties:
|
|
4258
|
+
name: string
|
|
4259
|
+
slug: string
|
|
4260
|
+
extra-properties: true
|
|
4261
|
+
source:
|
|
4262
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4263
|
+
inline: true
|
|
4264
|
+
CollectionItemUnpublishedPayload:
|
|
4265
|
+
docs: The payload of data sent from Webflow
|
|
4266
|
+
properties:
|
|
4267
|
+
id:
|
|
4268
|
+
type: optional<string>
|
|
4269
|
+
docs: The ID of the collection item that was unpublished
|
|
4270
|
+
siteId:
|
|
4271
|
+
type: optional<string>
|
|
4272
|
+
docs: The ID of the site
|
|
4273
|
+
workspaceId:
|
|
4274
|
+
type: optional<string>
|
|
4275
|
+
docs: The ID of the workspace
|
|
4276
|
+
collectionId:
|
|
4277
|
+
type: optional<string>
|
|
4278
|
+
docs: The ID of the collection
|
|
4279
|
+
cmsLocaleId:
|
|
4280
|
+
type: optional<string>
|
|
4281
|
+
docs: Unique identifier of the CMS locale for this item
|
|
4282
|
+
validation:
|
|
4283
|
+
format: uuid
|
|
4284
|
+
lastPublished: optional<datetime>
|
|
4285
|
+
lastUpdated: optional<datetime>
|
|
4286
|
+
createdOn: optional<datetime>
|
|
4287
|
+
isArchived: optional<boolean>
|
|
4288
|
+
isDraft: optional<boolean>
|
|
4289
|
+
fieldData: optional<CollectionItemUnpublishedPayloadFieldData>
|
|
4290
|
+
source:
|
|
4291
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4292
|
+
inline: true
|
|
4293
|
+
CollectionItemUnpublished:
|
|
4294
|
+
properties:
|
|
4295
|
+
triggerType:
|
|
4296
|
+
type: optional<string>
|
|
4297
|
+
docs: The type of event that triggered the request
|
|
4298
|
+
payload:
|
|
4299
|
+
type: optional<CollectionItemUnpublishedPayload>
|
|
4300
|
+
docs: The payload of data sent from Webflow
|
|
4301
|
+
source:
|
|
4302
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4303
|
+
PageCreatedWebhookPayload:
|
|
4304
|
+
docs: The payload of data sent from Webflow
|
|
4305
|
+
properties:
|
|
4306
|
+
siteId: optional<string>
|
|
4307
|
+
pageId: optional<string>
|
|
4308
|
+
pageTitle: optional<string>
|
|
4309
|
+
createdOn: optional<datetime>
|
|
4310
|
+
publishedPath: optional<string>
|
|
4311
|
+
source:
|
|
4312
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4313
|
+
inline: true
|
|
4314
|
+
PageCreatedWebhook:
|
|
4315
|
+
docs: The Webhook payload for when a Page is created
|
|
4316
|
+
properties:
|
|
4317
|
+
triggerType:
|
|
4318
|
+
type: optional<string>
|
|
4319
|
+
docs: The type of event that triggered the request
|
|
4320
|
+
payload:
|
|
4321
|
+
type: optional<PageCreatedWebhookPayload>
|
|
4322
|
+
docs: The payload of data sent from Webflow
|
|
4323
|
+
source:
|
|
4324
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4325
|
+
PageMetadataUpdatedWebhookPayload:
|
|
4326
|
+
docs: The payload of data sent from Webflow
|
|
4327
|
+
properties:
|
|
4328
|
+
siteId: optional<string>
|
|
4329
|
+
pageId: optional<string>
|
|
4330
|
+
pageTitle: optional<string>
|
|
4331
|
+
lastUpdated: optional<datetime>
|
|
4332
|
+
publishedPath: optional<string>
|
|
4333
|
+
source:
|
|
4334
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4335
|
+
inline: true
|
|
4336
|
+
PageMetadataUpdatedWebhook:
|
|
4337
|
+
docs: The Webhook payload for when a Page's metadata is updated
|
|
4338
|
+
properties:
|
|
4339
|
+
triggerType:
|
|
4340
|
+
type: optional<string>
|
|
4341
|
+
docs: The type of event that triggered the request
|
|
4342
|
+
payload:
|
|
4343
|
+
type: optional<PageMetadataUpdatedWebhookPayload>
|
|
4344
|
+
docs: The payload of data sent from Webflow
|
|
4345
|
+
source:
|
|
4346
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4347
|
+
PageDeletedWebhookPayload:
|
|
4348
|
+
docs: The payload of data sent from Webflow
|
|
4349
|
+
properties:
|
|
4350
|
+
siteId: optional<string>
|
|
4351
|
+
pageId: optional<string>
|
|
4352
|
+
pageTitle: optional<string>
|
|
4353
|
+
deletedOn: optional<datetime>
|
|
4354
|
+
publishedPath: optional<string>
|
|
4355
|
+
source:
|
|
4356
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4357
|
+
inline: true
|
|
4358
|
+
PageDeletedWebhook:
|
|
4359
|
+
docs: The Webhook payload for when a Page is deleted
|
|
4360
|
+
properties:
|
|
4361
|
+
triggerType:
|
|
4362
|
+
type: optional<string>
|
|
4363
|
+
docs: The type of event that triggered the request
|
|
4364
|
+
payload:
|
|
4365
|
+
type: optional<PageDeletedWebhookPayload>
|
|
4366
|
+
docs: The payload of data sent from Webflow
|
|
4367
|
+
source:
|
|
4368
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4369
|
+
CommentPayloadAuthor:
|
|
4370
|
+
properties:
|
|
4371
|
+
userId:
|
|
4372
|
+
type: string
|
|
4373
|
+
docs: The unique identifier of the author
|
|
4374
|
+
email:
|
|
4375
|
+
type: string
|
|
4376
|
+
docs: Email of the author
|
|
4377
|
+
name:
|
|
4378
|
+
type: string
|
|
4379
|
+
docs: Name of the author
|
|
4380
|
+
source:
|
|
4381
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4382
|
+
inline: true
|
|
4383
|
+
CommentPayloadMentionedUsersItem:
|
|
4384
|
+
properties:
|
|
4385
|
+
userId:
|
|
4386
|
+
type: string
|
|
4387
|
+
docs: The unique identifier of the mentioned user
|
|
4388
|
+
email:
|
|
4389
|
+
type: string
|
|
4390
|
+
docs: Email of the user
|
|
4391
|
+
name:
|
|
4392
|
+
type: string
|
|
4393
|
+
docs: Name of the User
|
|
4394
|
+
source:
|
|
4395
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4396
|
+
inline: true
|
|
4397
|
+
CommentPayload:
|
|
4398
|
+
docs: >
|
|
4399
|
+
The comment webhook payload contains data for the thread and for replies.
|
|
4400
|
+
Check the type to determine if the payload is for a thread or a reply.
|
|
4401
|
+
The webhook payload may be delayed by up to 5 minutes.
|
|
4402
|
+
properties:
|
|
4403
|
+
threadId:
|
|
4404
|
+
type: optional<string>
|
|
4405
|
+
docs: Unique identifier for the comment thread
|
|
4406
|
+
access: read-only
|
|
4407
|
+
commentId:
|
|
4408
|
+
type: optional<string>
|
|
4409
|
+
docs: Unique identifier for the comment reply
|
|
4410
|
+
access: read-only
|
|
4411
|
+
type:
|
|
4412
|
+
type: optional<string>
|
|
4413
|
+
docs: The type of comment payload
|
|
4414
|
+
access: read-only
|
|
4415
|
+
siteId:
|
|
4416
|
+
type: optional<string>
|
|
4417
|
+
docs: The site unique identifier
|
|
4418
|
+
access: read-only
|
|
4419
|
+
pageId:
|
|
4420
|
+
type: optional<string>
|
|
4421
|
+
docs: The page unique identifier
|
|
4422
|
+
access: read-only
|
|
4423
|
+
localeId:
|
|
4424
|
+
type: optional<string>
|
|
4425
|
+
docs: The locale unique identifier
|
|
4426
|
+
access: read-only
|
|
4427
|
+
itemId:
|
|
4428
|
+
type: optional<string>
|
|
4429
|
+
docs: The item unique identifier
|
|
4430
|
+
access: read-only
|
|
4431
|
+
breakpoint:
|
|
4432
|
+
type: optional<string>
|
|
4433
|
+
docs: The breakpoint the comment was left on
|
|
4434
|
+
access: read-only
|
|
4435
|
+
url:
|
|
4436
|
+
type: optional<string>
|
|
4437
|
+
docs: The URL of the page the comment was left on
|
|
4438
|
+
access: read-only
|
|
4439
|
+
content:
|
|
4440
|
+
type: string
|
|
4441
|
+
docs: The content of the comment reply
|
|
4442
|
+
isResolved:
|
|
4443
|
+
type: boolean
|
|
4444
|
+
docs: Boolean determining if the comment thread is resolved
|
|
4445
|
+
default: false
|
|
4446
|
+
author: CommentPayloadAuthor
|
|
4447
|
+
mentionedUsers:
|
|
4448
|
+
docs: >-
|
|
4449
|
+
List of mentioned users. This is an empty array until email
|
|
4450
|
+
notifications are sent, which can take up to 5 minutes after the
|
|
4451
|
+
comment is created.
|
|
4452
|
+
type: list<CommentPayloadMentionedUsersItem>
|
|
4453
|
+
createdOn:
|
|
4454
|
+
type: optional<string>
|
|
4455
|
+
docs: The date the item was created
|
|
4456
|
+
access: read-only
|
|
4457
|
+
lastUpdated:
|
|
4458
|
+
type: optional<string>
|
|
4459
|
+
docs: The date the item was last updated
|
|
4460
|
+
access: read-only
|
|
4461
|
+
source:
|
|
4462
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4463
|
+
Comment:
|
|
4464
|
+
docs: The Webhook payload for when a comment thread or reply is made on a Site
|
|
4465
|
+
properties:
|
|
4466
|
+
triggerType:
|
|
4467
|
+
type: optional<string>
|
|
4468
|
+
docs: The type of event that triggered the request
|
|
4469
|
+
payload: optional<CommentPayload>
|
|
4470
|
+
source:
|
|
4471
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|