webflow-api 3.1.4 → 3.2.0
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 +1003 -183
- package/.mock/definition/collections/fields.yml +6 -6
- package/.mock/definition/collections/items.yml +286 -194
- package/.mock/definition/collections.yml +128 -10
- package/.mock/definition/comments.yml +40 -0
- package/.mock/definition/components.yml +27 -6
- package/.mock/definition/forms.yml +36 -0
- package/.mock/definition/inventory.yml +20 -0
- package/.mock/definition/items.yml +99 -0
- package/.mock/definition/orders.yml +368 -0
- package/.mock/definition/pages.yml +112 -24
- package/.mock/definition/products.yml +31 -21
- package/.mock/definition/scripts.yml +4 -0
- package/.mock/definition/sites/comments.yml +0 -2
- package/.mock/definition/sites.yml +33 -6
- package/.mock/definition/users.yml +212 -28
- package/.mock/fern.config.json +1 -1
- package/Client.d.ts +21 -17
- package/Client.js +43 -1
- 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 +7 -2
- package/api/resources/accessGroups/client/Client.js +51 -28
- package/api/resources/accessGroups/client/index.d.ts +1 -0
- package/api/resources/accessGroups/types/AccessGroupsListRequestSort.d.ts +1 -1
- package/api/resources/assets/client/Client.d.ts +21 -9
- package/api/resources/assets/client/Client.js +210 -132
- package/api/resources/assets/client/index.d.ts +1 -0
- package/api/resources/collections/client/Client.d.ts +20 -10
- package/api/resources/collections/client/Client.js +121 -77
- package/api/resources/collections/client/index.d.ts +1 -0
- package/api/resources/collections/resources/fields/client/Client.d.ts +17 -8
- package/api/resources/collections/resources/fields/client/Client.js +92 -54
- 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 +129 -77
- package/api/resources/collections/resources/items/client/Client.js +582 -321
- package/api/resources/collections/resources/items/client/index.d.ts +1 -0
- package/api/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.d.ts +4 -0
- package/api/resources/collections/resources/items/client/requests/ItemsCreateItemLiveRequest.d.ts +45 -0
- package/api/resources/collections/resources/items/client/requests/ItemsCreateItemRequest.d.ts +45 -0
- package/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.d.ts +4 -0
- package/api/resources/collections/resources/items/client/requests/ItemsListItemsRequest.d.ts +4 -0
- package/api/resources/collections/resources/items/client/requests/ItemsUpdateItemLiveRequest.d.ts +24 -0
- package/api/resources/collections/resources/items/client/requests/ItemsUpdateItemRequest.d.ts +24 -0
- package/api/resources/collections/resources/items/client/requests/ItemsUpdateItemsLiveRequest.d.ts +4 -0
- package/api/resources/collections/resources/items/client/requests/ItemsUpdateItemsRequest.d.ts +4 -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 +24 -9
- package/api/resources/components/client/Client.js +176 -100
- package/api/resources/components/client/index.d.ts +1 -0
- package/api/resources/components/client/requests/ComponentDomWrite.d.ts +5 -0
- package/api/resources/components/client/requests/ComponentPropertiesWrite.d.ts +5 -0
- package/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +6 -1
- package/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +6 -1
- package/api/resources/components/client/requests/ComponentsListRequest.d.ts +7 -1
- package/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +1 -1
- package/api/resources/ecommerce/client/Client.d.ts +7 -2
- package/api/resources/ecommerce/client/Client.js +45 -26
- package/api/resources/forms/client/Client.d.ts +19 -8
- package/api/resources/forms/client/Client.js +198 -132
- package/api/resources/forms/client/index.d.ts +1 -0
- package/api/resources/index.js +17 -7
- package/api/resources/inventory/client/Client.d.ts +9 -3
- package/api/resources/inventory/client/Client.js +72 -43
- 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 +17 -7
- package/api/resources/orders/client/Client.js +190 -121
- package/api/resources/orders/client/index.d.ts +1 -0
- 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 +29 -32
- package/api/resources/pages/client/Client.js +168 -125
- package/api/resources/pages/client/index.d.ts +1 -0
- package/api/resources/pages/client/requests/PageMetadataWrite.d.ts +36 -0
- 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 +11 -4
- package/api/resources/pages/resources/scripts/client/Client.js +85 -51
- 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/PageMetadataWriteSeo.d.ts +12 -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 +29 -9
- package/api/resources/products/client/Client.js +194 -117
- 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/ProductsUpdateSkuRequest.d.ts +5 -0
- package/api/resources/products/types/ProductsCreateSkuResponse.d.ts +1 -1
- package/api/resources/scripts/client/Client.d.ts +11 -4
- package/api/resources/scripts/client/Client.js +93 -54
- package/api/resources/scripts/client/index.d.ts +1 -0
- package/api/resources/sites/client/Client.d.ts +40 -24
- package/api/resources/sites/client/Client.js +222 -147
- 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 +7 -2
- package/api/resources/sites/resources/activityLogs/client/Client.js +43 -24
- package/api/resources/sites/resources/activityLogs/client/index.d.ts +1 -0
- package/api/resources/sites/resources/comments/client/Client.d.ts +11 -4
- package/api/resources/sites/resources/comments/client/Client.js +127 -68
- package/api/resources/sites/resources/comments/client/index.d.ts +1 -0
- 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 +7 -2
- package/api/resources/sites/resources/plans/client/Client.js +43 -24
- package/api/resources/sites/resources/redirects/client/Client.d.ts +13 -5
- package/api/resources/sites/resources/redirects/client/Client.js +118 -71
- package/api/resources/sites/resources/robotsTxt/client/Client.d.ts +13 -5
- package/api/resources/sites/resources/robotsTxt/client/Client.js +118 -69
- package/api/resources/sites/resources/scripts/client/Client.d.ts +13 -5
- package/api/resources/sites/resources/scripts/client/Client.js +110 -68
- package/api/resources/sites/resources/scripts/client/index.d.ts +1 -0
- package/api/resources/sites/resources/wellKnown/client/Client.d.ts +9 -3
- package/api/resources/sites/resources/wellKnown/client/Client.js +51 -26
- package/api/resources/sites/resources/wellKnown/client/index.d.ts +1 -0
- package/api/resources/sites/resources/wellKnown/types/WellKnownFileContentType.d.ts +1 -1
- package/api/resources/token/client/Client.d.ts +9 -3
- package/api/resources/token/client/Client.js +61 -34
- package/api/resources/users/client/Client.d.ts +28 -14
- package/api/resources/users/client/Client.js +162 -101
- 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/index.d.ts +0 -1
- package/api/resources/users/types/UserAccountAddedPayload.d.ts +8 -0
- package/api/resources/users/types/UserAccountAddedPayloadPayload.d.ts +23 -0
- package/api/resources/users/types/UserAccountAddedPayloadPayloadData.d.ts +12 -0
- package/api/resources/users/types/UserAccountDeletedPayload.d.ts +8 -0
- package/api/resources/users/types/UserAccountDeletedPayloadPayload.d.ts +23 -0
- package/api/resources/users/types/UserAccountDeletedPayloadPayloadData.d.ts +12 -0
- package/api/resources/users/types/UserAccountUpdatedPayload.d.ts +8 -0
- package/api/resources/users/types/UserAccountUpdatedPayloadPayload.d.ts +23 -0
- package/api/resources/users/types/UserAccountUpdatedPayloadPayloadData.d.ts +12 -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 +15 -7
- package/api/resources/webhooks/client/Client.js +111 -69
- package/api/resources/workspaces/client/Client.d.ts +5 -11
- package/api/resources/workspaces/resources/auditLogs/client/Client.d.ts +9 -4
- package/api/resources/workspaces/resources/auditLogs/client/Client.js +59 -30
- package/api/resources/workspaces/resources/auditLogs/client/index.d.ts +1 -0
- package/api/resources/workspaces/resources/auditLogs/client/requests/AuditLogsGetWorkspaceAuditLogsRequest.d.ts +2 -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/CollectionItemChangedPayload.d.ts +5 -0
- package/api/types/CollectionItemCreated.d.ts +12 -0
- package/api/types/CollectionItemCreatedPayload.d.ts +5 -0
- package/api/types/CollectionItemRemoved.d.ts +10 -0
- package/api/types/CollectionItemRemovedPayload.d.ts +25 -0
- package/api/types/CollectionItemRemovedPayloadFieldData.d.ts +9 -0
- package/api/types/CollectionItemUnpublished.d.ts +10 -0
- package/api/types/CollectionItemUnpublishedPayload.d.ts +25 -0
- package/api/types/CollectionItemUnpublishedPayloadFieldData.d.ts +9 -0
- package/api/types/Comment.d.ts +12 -0
- package/api/types/CommentPayload.d.ts +38 -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/{dist/api/types/ComponentInstanceNodePropertyOverridesWrite.d.ts → api/types/ComponentInstance.d.ts} +1 -1
- package/api/types/ComponentInstance.js +5 -0
- package/{dist/api/types/ComponentNode.d.ts → api/types/ComponentNodeDom.d.ts} +4 -4
- package/api/types/ComponentNodeDom.js +5 -0
- 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/{dist/api/types/ImageNode.d.ts → api/types/ImageNodeDom.d.ts} +3 -3
- package/api/types/ImageNodeDom.js +5 -0
- 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/LocalizedItem.d.ts +31 -0
- package/api/types/LocalizedItem.js +5 -0
- package/api/types/MultiLocaleChangedPayload.d.ts +22 -0
- package/api/types/MultiLocaleChangedPayload.js +5 -0
- package/api/types/MultiLocaleChangedPayloadFieldData.d.ts +11 -0
- package/api/types/MultiLocaleChangedPayloadFieldData.js +5 -0
- package/api/types/MultiLocaleCreatedPayload.d.ts +16 -0
- package/api/types/MultiLocaleCreatedPayload.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 +8 -8
- 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/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/api/types/{SearchButtonNodeWrite.d.ts → SearchButton.d.ts} +1 -1
- package/api/types/SearchButton.js +5 -0
- package/{dist/api/types/SearchButtonNode.d.ts → api/types/SearchButtonNodeDom.d.ts} +1 -1
- package/api/types/SearchButtonNodeDom.js +5 -0
- package/api/types/{SelectNodeWrite.d.ts → Select.d.ts} +1 -1
- package/api/types/Select.js +5 -0
- package/{dist/api/types/SelectNode.d.ts → api/types/SelectNodeDom.d.ts} +1 -1
- package/api/types/SelectNodeDom.js +5 -0
- package/api/types/SingleLocaleChangedPayload.d.ts +22 -0
- package/api/types/SingleLocaleChangedPayload.js +5 -0
- package/api/types/SingleLocaleChangedPayloadFieldData.d.ts +9 -0
- package/api/types/SingleLocaleChangedPayloadFieldData.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/SiteMembershipAuditLogItemEventSubType.d.ts +1 -1
- 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/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/{dist/api/types/SubmitButtonNodeWrite.d.ts → api/types/SubmitButton.d.ts} +1 -1
- package/api/types/SubmitButton.js +5 -0
- package/{dist/api/types/SubmitButtonNode.d.ts → api/types/SubmitButtonNodeDom.d.ts} +1 -1
- package/api/types/SubmitButtonNodeDom.js +5 -0
- package/api/types/{TextInputNodeWrite.d.ts → TextInput.d.ts} +1 -1
- package/api/types/TextInput.js +5 -0
- package/api/types/{TextInputNode.d.ts → TextInputNodeDom.d.ts} +1 -1
- package/api/types/TextInputNodeDom.js +5 -0
- package/api/types/TextNode.d.ts +4 -7
- package/api/types/TextNodeDom.d.ts +15 -0
- package/api/types/TextNodeDom.js +5 -0
- package/api/types/TriggerType.d.ts +1 -1
- 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/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +1 -1
- 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/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.d.ts +1 -1
- package/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +1 -1
- package/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType.d.ts +1 -1
- package/api/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +1 -1
- package/api/types/WorkspaceMembershipAuditLogItemEventSubType.d.ts +1 -1
- package/api/types/index.d.ts +62 -15
- package/api/types/index.js +62 -15
- 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 +21 -17
- package/dist/Client.js +43 -1
- 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 +7 -2
- package/dist/api/resources/accessGroups/client/Client.js +51 -28
- package/dist/api/resources/accessGroups/client/index.d.ts +1 -0
- package/dist/api/resources/accessGroups/types/AccessGroupsListRequestSort.d.ts +1 -1
- package/dist/api/resources/assets/client/Client.d.ts +21 -9
- package/dist/api/resources/assets/client/Client.js +210 -132
- package/dist/api/resources/assets/client/index.d.ts +1 -0
- package/dist/api/resources/collections/client/Client.d.ts +20 -10
- package/dist/api/resources/collections/client/Client.js +121 -77
- package/dist/api/resources/collections/client/index.d.ts +1 -0
- package/dist/api/resources/collections/resources/fields/client/Client.d.ts +17 -8
- package/dist/api/resources/collections/resources/fields/client/Client.js +92 -54
- 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 +129 -77
- package/dist/api/resources/collections/resources/items/client/Client.js +582 -321
- 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 +4 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsCreateItemLiveRequest.d.ts +45 -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 +45 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsCreateItemRequest.js +5 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.d.ts +4 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsListItemsRequest.d.ts +4 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsUpdateItemLiveRequest.d.ts +24 -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 +24 -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 +4 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsUpdateItemsRequest.d.ts +4 -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 +24 -9
- package/dist/api/resources/components/client/Client.js +176 -100
- package/dist/api/resources/components/client/index.d.ts +1 -0
- package/dist/api/resources/components/client/requests/ComponentDomWrite.d.ts +5 -0
- package/dist/api/resources/components/client/requests/ComponentPropertiesWrite.d.ts +5 -0
- package/dist/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +6 -1
- package/dist/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +6 -1
- package/dist/api/resources/components/client/requests/ComponentsListRequest.d.ts +7 -1
- package/dist/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +1 -1
- package/dist/api/resources/ecommerce/client/Client.d.ts +7 -2
- package/dist/api/resources/ecommerce/client/Client.js +45 -26
- package/dist/api/resources/forms/client/Client.d.ts +19 -8
- package/dist/api/resources/forms/client/Client.js +198 -132
- package/dist/api/resources/forms/client/index.d.ts +1 -0
- package/dist/api/resources/index.js +17 -7
- package/dist/api/resources/inventory/client/Client.d.ts +9 -3
- package/dist/api/resources/inventory/client/Client.js +72 -43
- 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 +17 -7
- package/dist/api/resources/orders/client/Client.js +190 -121
- package/dist/api/resources/orders/client/index.d.ts +1 -0
- 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 +29 -32
- package/dist/api/resources/pages/client/Client.js +168 -125
- package/dist/api/resources/pages/client/index.d.ts +1 -0
- package/dist/api/resources/pages/client/requests/PageMetadataWrite.d.ts +36 -0
- package/dist/api/resources/pages/client/requests/PageMetadataWrite.js +5 -0
- 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 +11 -4
- package/dist/api/resources/pages/resources/scripts/client/Client.js +85 -51
- 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 +29 -9
- package/dist/api/resources/products/client/Client.js +194 -117
- 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/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 +11 -4
- package/dist/api/resources/scripts/client/Client.js +93 -54
- package/dist/api/resources/scripts/client/index.d.ts +1 -0
- package/dist/api/resources/sites/client/Client.d.ts +40 -24
- package/dist/api/resources/sites/client/Client.js +222 -147
- 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 +7 -2
- package/dist/api/resources/sites/resources/activityLogs/client/Client.js +43 -24
- package/dist/api/resources/sites/resources/activityLogs/client/index.d.ts +1 -0
- package/dist/api/resources/sites/resources/comments/client/Client.d.ts +11 -4
- package/dist/api/resources/sites/resources/comments/client/Client.js +127 -68
- package/dist/api/resources/sites/resources/comments/client/index.d.ts +1 -0
- 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 +7 -2
- package/dist/api/resources/sites/resources/plans/client/Client.js +43 -24
- package/dist/api/resources/sites/resources/redirects/client/Client.d.ts +13 -5
- package/dist/api/resources/sites/resources/redirects/client/Client.js +118 -71
- package/dist/api/resources/sites/resources/robotsTxt/client/Client.d.ts +13 -5
- package/dist/api/resources/sites/resources/robotsTxt/client/Client.js +118 -69
- package/dist/api/resources/sites/resources/scripts/client/Client.d.ts +13 -5
- package/dist/api/resources/sites/resources/scripts/client/Client.js +110 -68
- package/dist/api/resources/sites/resources/scripts/client/index.d.ts +1 -0
- package/dist/api/resources/sites/resources/wellKnown/client/Client.d.ts +9 -3
- package/dist/api/resources/sites/resources/wellKnown/client/Client.js +51 -26
- package/dist/api/resources/sites/resources/wellKnown/client/index.d.ts +1 -0
- package/dist/api/resources/sites/resources/wellKnown/types/WellKnownFileContentType.d.ts +1 -1
- package/dist/api/resources/token/client/Client.d.ts +9 -3
- package/dist/api/resources/token/client/Client.js +61 -34
- package/dist/api/resources/users/client/Client.d.ts +28 -14
- package/dist/api/resources/users/client/Client.js +162 -101
- 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/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 +15 -7
- package/dist/api/resources/webhooks/client/Client.js +111 -69
- package/dist/api/resources/workspaces/client/Client.d.ts +5 -11
- package/dist/api/resources/workspaces/resources/auditLogs/client/Client.d.ts +9 -4
- package/dist/api/resources/workspaces/resources/auditLogs/client/Client.js +59 -30
- 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 +2 -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/CollectionItemChangedPayload.d.ts +5 -0
- package/dist/api/types/CollectionItemChangedPayload.js +5 -0
- package/dist/api/types/CollectionItemCreated.d.ts +12 -0
- package/dist/api/types/CollectionItemCreated.js +5 -0
- package/dist/api/types/CollectionItemCreatedPayload.d.ts +5 -0
- package/dist/api/types/CollectionItemCreatedPayload.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/{api/types/ComponentInstanceNodePropertyOverridesWrite.d.ts → dist/api/types/ComponentInstance.d.ts} +1 -1
- package/dist/api/types/ComponentInstance.js +5 -0
- package/{api/types/ComponentNode.d.ts → dist/api/types/ComponentNodeDom.d.ts} +4 -4
- package/dist/api/types/ComponentNodeDom.js +5 -0
- 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/{api/types/ImageNode.d.ts → dist/api/types/ImageNodeDom.d.ts} +3 -3
- package/dist/api/types/ImageNodeDom.js +5 -0
- 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/LocalizedItem.d.ts +31 -0
- package/dist/api/types/LocalizedItem.js +5 -0
- package/dist/api/types/MultiLocaleChangedPayload.d.ts +22 -0
- package/dist/api/types/MultiLocaleChangedPayload.js +5 -0
- package/dist/api/types/MultiLocaleChangedPayloadFieldData.d.ts +11 -0
- package/dist/api/types/MultiLocaleChangedPayloadFieldData.js +5 -0
- package/dist/api/types/MultiLocaleCreatedPayload.d.ts +16 -0
- package/dist/api/types/MultiLocaleCreatedPayload.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 +8 -8
- 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/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/dist/api/types/{SearchButtonNodeWrite.d.ts → SearchButton.d.ts} +1 -1
- package/dist/api/types/SearchButton.js +5 -0
- package/{api/types/SearchButtonNode.d.ts → dist/api/types/SearchButtonNodeDom.d.ts} +1 -1
- package/dist/api/types/SearchButtonNodeDom.js +5 -0
- package/dist/api/types/{SelectNodeWrite.d.ts → Select.d.ts} +1 -1
- package/dist/api/types/Select.js +5 -0
- package/{api/types/SelectNode.d.ts → dist/api/types/SelectNodeDom.d.ts} +1 -1
- package/dist/api/types/SelectNodeDom.js +5 -0
- package/dist/api/types/SingleLocaleChangedPayload.d.ts +22 -0
- package/dist/api/types/SingleLocaleChangedPayload.js +5 -0
- package/dist/api/types/SingleLocaleChangedPayloadFieldData.d.ts +9 -0
- package/dist/api/types/SingleLocaleChangedPayloadFieldData.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/SiteMembershipAuditLogItemEventSubType.d.ts +1 -1
- 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/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/{api/types/SubmitButtonNodeWrite.d.ts → dist/api/types/SubmitButton.d.ts} +1 -1
- package/dist/api/types/SubmitButton.js +5 -0
- package/{api/types/SubmitButtonNode.d.ts → dist/api/types/SubmitButtonNodeDom.d.ts} +1 -1
- package/dist/api/types/SubmitButtonNodeDom.js +5 -0
- package/dist/api/types/{TextInputNodeWrite.d.ts → TextInput.d.ts} +1 -1
- package/dist/api/types/TextInput.js +5 -0
- package/dist/api/types/{TextInputNode.d.ts → TextInputNodeDom.d.ts} +1 -1
- package/dist/api/types/TextInputNodeDom.js +5 -0
- package/dist/api/types/TextNode.d.ts +4 -7
- package/dist/api/types/TextNodeDom.d.ts +15 -0
- package/dist/api/types/TextNodeDom.js +5 -0
- package/dist/api/types/TriggerType.d.ts +1 -1
- 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/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +1 -1
- 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/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.d.ts +1 -1
- package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +1 -1
- package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType.d.ts +1 -1
- package/dist/api/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +1 -1
- package/dist/api/types/WorkspaceMembershipAuditLogItemEventSubType.d.ts +1 -1
- package/dist/api/types/index.d.ts +62 -15
- package/dist/api/types/index.js +62 -15
- 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 -1
- 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/{serialization/resources/collections/resources/items/types/ItemsCreateItemRequest.d.ts → dist/serialization/resources/collections/resources/items/types/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 +7 -7
- package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.js +29 -19
- 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 +7 -7
- package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.js +29 -19
- 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/CollectionItemChangedPayload.d.ts +12 -0
- package/dist/serialization/types/CollectionItemChangedPayload.js +43 -0
- package/dist/serialization/types/CollectionItemCreated.d.ts +14 -0
- package/dist/serialization/types/CollectionItemCreated.js +45 -0
- package/dist/serialization/types/CollectionItemCreatedPayload.d.ts +12 -0
- package/dist/serialization/types/CollectionItemCreatedPayload.js +43 -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/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/{serialization/types/ComponentInstanceNodePropertyOverridesWrite.d.ts → dist/serialization/types/ComponentInstance.d.ts} +2 -2
- package/{serialization/types/ComponentInstanceNodePropertyOverridesWrite.js → dist/serialization/types/ComponentInstance.js} +19 -9
- package/dist/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +17 -7
- package/dist/serialization/types/ComponentList.js +17 -7
- package/dist/serialization/types/ComponentNodeDom.d.ts +15 -0
- package/dist/serialization/types/{ComponentNode.js → ComponentNodeDom.js} +22 -12
- 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/{serialization/types/ImageNode.d.ts → dist/serialization/types/ImageNodeDom.d.ts} +4 -4
- package/{serialization/types/ImageNode.js → dist/serialization/types/ImageNodeDom.js} +21 -11
- 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/LocalizedItem.d.ts +24 -0
- package/dist/serialization/types/LocalizedItem.js +55 -0
- package/dist/serialization/types/Metadata.js +17 -7
- package/dist/serialization/types/MetadataOptionsItem.js +17 -7
- package/dist/serialization/types/MultiLocaleChangedPayload.d.ts +23 -0
- package/dist/serialization/types/MultiLocaleChangedPayload.js +54 -0
- package/dist/serialization/types/MultiLocaleChangedPayloadFieldData.d.ts +15 -0
- package/dist/serialization/types/MultiLocaleChangedPayloadFieldData.js +47 -0
- package/dist/serialization/types/MultiLocaleCreatedPayload.d.ts +17 -0
- package/dist/serialization/types/MultiLocaleCreatedPayload.js +48 -0
- 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.d.ts +14 -14
- package/dist/serialization/types/Node.js +31 -21
- 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/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/{serialization/types/SearchButtonNodeWrite.d.ts → dist/serialization/types/SearchButton.d.ts} +2 -2
- package/dist/serialization/types/{SearchButtonNodeWrite.js → SearchButton.js} +19 -9
- package/dist/serialization/types/{SearchButtonNode.d.ts → SearchButtonNodeDom.d.ts} +2 -2
- package/{serialization/types/SearchButtonNode.js → dist/serialization/types/SearchButtonNodeDom.js} +19 -9
- 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/SelectNodeChoicesItem.js +17 -7
- package/{serialization/types/SelectNode.d.ts → dist/serialization/types/SelectNodeDom.d.ts} +2 -2
- package/dist/serialization/types/{SelectNode.js → SelectNodeDom.js} +19 -9
- package/dist/serialization/types/SelectNodeWriteChoicesItem.js +17 -7
- package/dist/serialization/types/SingleLocaleChangedPayload.d.ts +23 -0
- package/dist/serialization/types/SingleLocaleChangedPayload.js +54 -0
- package/dist/serialization/types/SingleLocaleChangedPayloadFieldData.d.ts +14 -0
- package/dist/serialization/types/SingleLocaleChangedPayloadFieldData.js +46 -0
- 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.js +17 -7
- package/dist/serialization/types/SiteMembershipAuditLogItem.js +17 -7
- package/dist/serialization/types/SiteMembershipAuditLogItemEventSubType.js +17 -7
- 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.js +17 -7
- 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/{serialization/types/SubmitButtonNodeWrite.d.ts → dist/serialization/types/SubmitButton.d.ts} +2 -2
- package/{serialization/types/SubmitButtonNodeWrite.js → dist/serialization/types/SubmitButton.js} +19 -9
- package/{serialization/types/SubmitButtonNode.d.ts → dist/serialization/types/SubmitButtonNodeDom.d.ts} +2 -2
- package/dist/serialization/types/{SubmitButtonNode.js → SubmitButtonNodeDom.js} +19 -9
- package/dist/serialization/types/Text.js +17 -7
- package/{serialization/types/TextInputNodeWrite.d.ts → dist/serialization/types/TextInput.d.ts} +2 -2
- package/dist/serialization/types/{TextInputNodeWrite.js → TextInput.js} +19 -9
- package/dist/serialization/types/{TextInputNode.d.ts → TextInputNodeDom.d.ts} +2 -2
- package/{serialization/types/TextInputNode.js → dist/serialization/types/TextInputNodeDom.js} +19 -9
- package/dist/serialization/types/TextNode.d.ts +2 -4
- package/dist/serialization/types/TextNode.js +19 -11
- package/dist/serialization/types/TextNodeDom.d.ts +15 -0
- package/dist/serialization/types/TextNodeDom.js +46 -0
- package/dist/serialization/types/TextNodeText.js +17 -7
- package/dist/serialization/types/TriggerType.js +17 -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/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +17 -7
- 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/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.js +17 -7
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +17 -7
- 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.js +17 -7
- package/dist/serialization/types/WorkspaceInvitationAuditLogItem.js +17 -7
- package/dist/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.js +17 -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 +62 -15
- package/dist/serialization/types/index.js +62 -15
- package/dist/version.d.ts +1 -1
- package/dist/version.js +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 -1
- package/errors/WebflowError.d.ts +4 -1
- package/errors/WebflowError.js +6 -8
- package/index.js +17 -7
- package/jest.config.mjs +13 -0
- package/package.json +25 -20
- package/reference.md +111 -87
- 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/{dist/serialization/resources/collections/resources/items/types/ItemsCreateItemRequest.d.ts → serialization/resources/collections/resources/items/types/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 +7 -7
- package/serialization/resources/components/types/ComponentDomWriteNodesItem.js +29 -19
- 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 +7 -7
- package/serialization/resources/pages/types/PageDomWriteNodesItem.js +29 -19
- 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/CollectionItemChangedPayload.d.ts +12 -0
- package/serialization/types/CollectionItemChangedPayload.js +43 -0
- package/serialization/types/CollectionItemCreated.d.ts +14 -0
- package/serialization/types/CollectionItemCreated.js +45 -0
- package/serialization/types/CollectionItemCreatedPayload.d.ts +12 -0
- package/serialization/types/CollectionItemCreatedPayload.js +43 -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/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/{dist/serialization/types/ComponentInstanceNodePropertyOverridesWrite.d.ts → serialization/types/ComponentInstance.d.ts} +2 -2
- package/{dist/serialization/types/ComponentInstanceNodePropertyOverridesWrite.js → serialization/types/ComponentInstance.js} +19 -9
- package/serialization/types/ComponentInstanceNodePropertyOverridesWritePropertyOverridesItem.js +17 -7
- package/serialization/types/ComponentList.js +17 -7
- package/serialization/types/ComponentNodeDom.d.ts +15 -0
- package/serialization/types/{ComponentNode.js → ComponentNodeDom.js} +22 -12
- 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/{dist/serialization/types/ImageNode.d.ts → serialization/types/ImageNodeDom.d.ts} +4 -4
- package/{dist/serialization/types/ImageNode.js → serialization/types/ImageNodeDom.js} +21 -11
- 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/LocalizedItem.d.ts +24 -0
- package/serialization/types/LocalizedItem.js +55 -0
- package/serialization/types/Metadata.js +17 -7
- package/serialization/types/MetadataOptionsItem.js +17 -7
- package/serialization/types/MultiLocaleChangedPayload.d.ts +23 -0
- package/serialization/types/MultiLocaleChangedPayload.js +54 -0
- package/serialization/types/MultiLocaleChangedPayloadFieldData.d.ts +15 -0
- package/serialization/types/MultiLocaleChangedPayloadFieldData.js +47 -0
- package/serialization/types/MultiLocaleCreatedPayload.d.ts +17 -0
- package/serialization/types/MultiLocaleCreatedPayload.js +48 -0
- 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.d.ts +14 -14
- package/serialization/types/Node.js +31 -21
- 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/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/{dist/serialization/types/SearchButtonNodeWrite.d.ts → serialization/types/SearchButton.d.ts} +2 -2
- package/serialization/types/{SearchButtonNodeWrite.js → SearchButton.js} +19 -9
- package/serialization/types/{SearchButtonNode.d.ts → SearchButtonNodeDom.d.ts} +2 -2
- package/{dist/serialization/types/SearchButtonNode.js → serialization/types/SearchButtonNodeDom.js} +19 -9
- 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/SelectNodeChoicesItem.js +17 -7
- package/{dist/serialization/types/SelectNode.d.ts → serialization/types/SelectNodeDom.d.ts} +2 -2
- package/serialization/types/{SelectNode.js → SelectNodeDom.js} +19 -9
- package/serialization/types/SelectNodeWriteChoicesItem.js +17 -7
- package/serialization/types/SingleLocaleChangedPayload.d.ts +23 -0
- package/serialization/types/SingleLocaleChangedPayload.js +54 -0
- package/serialization/types/SingleLocaleChangedPayloadFieldData.d.ts +14 -0
- package/serialization/types/SingleLocaleChangedPayloadFieldData.js +46 -0
- 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.js +17 -7
- package/serialization/types/SiteMembershipAuditLogItem.js +17 -7
- package/serialization/types/SiteMembershipAuditLogItemEventSubType.js +17 -7
- 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.js +17 -7
- 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/{dist/serialization/types/SubmitButtonNodeWrite.d.ts → serialization/types/SubmitButton.d.ts} +2 -2
- package/{dist/serialization/types/SubmitButtonNodeWrite.js → serialization/types/SubmitButton.js} +19 -9
- package/{dist/serialization/types/SubmitButtonNode.d.ts → serialization/types/SubmitButtonNodeDom.d.ts} +2 -2
- package/serialization/types/{SubmitButtonNode.js → SubmitButtonNodeDom.js} +19 -9
- package/serialization/types/Text.js +17 -7
- package/{dist/serialization/types/TextInputNodeWrite.d.ts → serialization/types/TextInput.d.ts} +2 -2
- package/serialization/types/{TextInputNodeWrite.js → TextInput.js} +19 -9
- package/serialization/types/{TextInputNode.d.ts → TextInputNodeDom.d.ts} +2 -2
- package/{dist/serialization/types/TextInputNode.js → serialization/types/TextInputNodeDom.js} +19 -9
- package/serialization/types/TextNode.d.ts +2 -4
- package/serialization/types/TextNode.js +19 -11
- package/serialization/types/TextNodeDom.d.ts +15 -0
- package/serialization/types/TextNodeDom.js +46 -0
- package/serialization/types/TextNodeText.js +17 -7
- package/serialization/types/TriggerType.js +17 -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/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +17 -7
- 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/WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType.js +17 -7
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +17 -7
- 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.js +17 -7
- package/serialization/types/WorkspaceInvitationAuditLogItem.js +17 -7
- package/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.js +17 -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 +62 -15
- package/serialization/types/index.js +62 -15
- package/version.d.ts +1 -1
- package/version.js +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/api/types/TextNodeWrite.d.ts +0 -12
- 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/api/types/TextNodeWrite.d.ts +0 -12
- 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/dist/serialization/types/ComponentNode.d.ts +0 -15
- package/dist/serialization/types/TextNodeWrite.d.ts +0 -13
- package/dist/serialization/types/TextNodeWrite.js +0 -34
- 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/serialization/types/ComponentNode.d.ts +0 -15
- package/serialization/types/TextNodeWrite.d.ts +0 -13
- package/serialization/types/TextNodeWrite.js +0 -34
- /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/collections/resources/items/client/requests/{ItemsPublishItemRequest.js → ItemsUpdateItemLiveRequest.js} +0 -0
- /package/api/resources/{pages/client/requests/UpdatePageSettingsRequest.js → collections/resources/items/client/requests/ItemsUpdateItemRequest.js} +0 -0
- /package/api/resources/{users/client/requests/UsersUpdateRequest.js → collections/resources/items/types/ItemIDs.js} +0 -0
- /package/api/resources/{users/types/UsersUpdateRequestData.js → collections/resources/items/types/ItemIDsWithLocales.js} +0 -0
- /package/api/{types/ComponentInstanceNodePropertyOverridesWrite.js → resources/collections/resources/items/types/ItemsCreateItemLiveRequestBody.js} +0 -0
- /package/api/{types/ComponentNode.js → resources/collections/resources/items/types/ItemsCreateItemRequestBody.js} +0 -0
- /package/{dist/api/resources/collections/resources/items/client/requests → api/resources/collections/resources/items/types}/ItemsPublishItemRequest.js +0 -0
- /package/api/{types/ImageNode.js → resources/collections/resources/items/types/ItemsPublishItemRequestItemsItemsItem.js} +0 -0
- /package/api/{types/SearchButtonNode.js → resources/collections/resources/items/types/ItemsUpdateItemsResponse.js} +0 -0
- /package/api/{types/SearchButtonNodeWrite.js → resources/inventory/types/EcommInventoryChangedPayload.js} +0 -0
- /package/api/{types/SelectNode.js → resources/pages/client/requests/PageMetadataWrite.js} +0 -0
- /package/api/{types/SelectNodeWrite.js → resources/pages/types/PageMetadataWriteOpenGraph.js} +0 -0
- /package/api/{types/SubmitButtonNode.js → resources/pages/types/PageMetadataWriteSeo.js} +0 -0
- /package/api/{types/SubmitButtonNodeWrite.js → resources/users/types/UserAccountAddedPayload.js} +0 -0
- /package/api/{types/TextInputNode.js → resources/users/types/UserAccountAddedPayloadPayload.js} +0 -0
- /package/api/{types/TextInputNodeWrite.js → resources/users/types/UserAccountAddedPayloadPayloadData.js} +0 -0
- /package/api/{types/TextNodeWrite.js → resources/users/types/UserAccountDeletedPayload.js} +0 -0
- /package/{dist/api/resources/collections/resources/items/types/ItemsCreateItemLiveRequest.js → api/resources/users/types/UserAccountDeletedPayloadPayload.js} +0 -0
- /package/{dist/api/resources/collections/resources/items/types/ItemsCreateItemRequest.js → api/resources/users/types/UserAccountDeletedPayloadPayloadData.js} +0 -0
- /package/{dist/api/resources/pages/client/requests/UpdatePageSettingsRequest.js → api/resources/users/types/UserAccountUpdatedPayload.js} +0 -0
- /package/{dist/api/resources/users/client/requests/UsersUpdateRequest.js → api/resources/users/types/UserAccountUpdatedPayloadPayload.js} +0 -0
- /package/{dist/api/resources/users/types/UsersUpdateRequestData.js → api/resources/users/types/UserAccountUpdatedPayloadPayloadData.js} +0 -0
- /package/{dist/api/types/ComponentInstanceNodePropertyOverridesWrite.js → api/types/CollectionItemChanged.js} +0 -0
- /package/{dist/api/types/ComponentNode.js → api/types/CollectionItemChangedPayload.js} +0 -0
- /package/{dist/api/types/ImageNode.js → api/types/CollectionItemCreated.js} +0 -0
- /package/{dist/api/types/SearchButtonNode.js → api/types/CollectionItemCreatedPayload.js} +0 -0
- /package/{dist/api/types/SearchButtonNodeWrite.js → api/types/CollectionItemRemoved.js} +0 -0
- /package/{dist/api/types/SelectNode.js → api/types/CollectionItemRemovedPayload.js} +0 -0
- /package/{dist/api/types/SelectNodeWrite.js → api/types/CollectionItemRemovedPayloadFieldData.js} +0 -0
- /package/{dist/api/types/SubmitButtonNode.js → api/types/CollectionItemUnpublished.js} +0 -0
- /package/{dist/api/types/SubmitButtonNodeWrite.js → api/types/CollectionItemUnpublishedPayload.js} +0 -0
- /package/{dist/api/types/TextInputNode.js → api/types/CollectionItemUnpublishedPayloadFieldData.js} +0 -0
- /package/{dist/api/types/TextInputNodeWrite.js → api/types/Comment.js} +0 -0
- /package/{dist/api/types/TextNodeWrite.js → api/types/CommentPayload.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
|
|
@@ -350,7 +386,8 @@ types:
|
|
|
350
386
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
351
387
|
User access:
|
|
352
388
|
properties:
|
|
353
|
-
method:
|
|
389
|
+
method:
|
|
390
|
+
type: optional<WorkspaceAuditLogItemPayloadUserAccessMethod>
|
|
354
391
|
location:
|
|
355
392
|
type: optional<string>
|
|
356
393
|
docs: The geolocation based on the logged IP address
|
|
@@ -368,8 +405,10 @@ types:
|
|
|
368
405
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
369
406
|
UserAccessAuditLogItem:
|
|
370
407
|
properties:
|
|
371
|
-
eventSubType:
|
|
372
|
-
|
|
408
|
+
eventSubType:
|
|
409
|
+
type: optional<UserAccessAuditLogItemEventSubType>
|
|
410
|
+
payload:
|
|
411
|
+
type: optional<User access>
|
|
373
412
|
source:
|
|
374
413
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
375
414
|
Custom role:
|
|
@@ -392,8 +431,10 @@ types:
|
|
|
392
431
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
393
432
|
CustomRoleAuditLogItem:
|
|
394
433
|
properties:
|
|
395
|
-
eventSubType:
|
|
396
|
-
|
|
434
|
+
eventSubType:
|
|
435
|
+
type: optional<CustomRoleAuditLogItemEventSubType>
|
|
436
|
+
payload:
|
|
437
|
+
type: optional<Custom role>
|
|
397
438
|
source:
|
|
398
439
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
399
440
|
WorkspaceAuditLogItemPayloadWorkspaceMembershipTargetUser:
|
|
@@ -422,9 +463,12 @@ types:
|
|
|
422
463
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
423
464
|
Workspace membership:
|
|
424
465
|
properties:
|
|
425
|
-
targetUser:
|
|
426
|
-
|
|
427
|
-
|
|
466
|
+
targetUser:
|
|
467
|
+
type: optional<WorkspaceAuditLogItemPayloadWorkspaceMembershipTargetUser>
|
|
468
|
+
method:
|
|
469
|
+
type: optional<WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod>
|
|
470
|
+
userType:
|
|
471
|
+
type: optional<WorkspaceAuditLogItemPayloadWorkspaceMembershipUserType>
|
|
428
472
|
roleName:
|
|
429
473
|
type: optional<string>
|
|
430
474
|
docs: The name of the role that was assigned to the user
|
|
@@ -443,8 +487,10 @@ types:
|
|
|
443
487
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
444
488
|
WorkspaceMembershipAuditLogItem:
|
|
445
489
|
properties:
|
|
446
|
-
eventSubType:
|
|
447
|
-
|
|
490
|
+
eventSubType:
|
|
491
|
+
type: optional<WorkspaceMembershipAuditLogItemEventSubType>
|
|
492
|
+
payload:
|
|
493
|
+
type: optional<Workspace membership>
|
|
448
494
|
source:
|
|
449
495
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
450
496
|
WorkspaceAuditLogItemPayloadSiteMembershipSite:
|
|
@@ -482,10 +528,14 @@ types:
|
|
|
482
528
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
483
529
|
Site membership:
|
|
484
530
|
properties:
|
|
485
|
-
site:
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
531
|
+
site:
|
|
532
|
+
type: optional<WorkspaceAuditLogItemPayloadSiteMembershipSite>
|
|
533
|
+
targetUser:
|
|
534
|
+
type: optional<WorkspaceAuditLogItemPayloadSiteMembershipTargetUser>
|
|
535
|
+
method:
|
|
536
|
+
type: optional<WorkspaceAuditLogItemPayloadSiteMembershipMethod>
|
|
537
|
+
userType:
|
|
538
|
+
type: optional<WorkspaceAuditLogItemPayloadSiteMembershipUserType>
|
|
489
539
|
roleName:
|
|
490
540
|
type: optional<string>
|
|
491
541
|
docs: The name of the role that was assigned to the user
|
|
@@ -504,8 +554,10 @@ types:
|
|
|
504
554
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
505
555
|
SiteMembershipAuditLogItem:
|
|
506
556
|
properties:
|
|
507
|
-
eventSubType:
|
|
508
|
-
|
|
557
|
+
eventSubType:
|
|
558
|
+
type: optional<SiteMembershipAuditLogItemEventSubType>
|
|
559
|
+
payload:
|
|
560
|
+
type: optional<Site membership>
|
|
509
561
|
source:
|
|
510
562
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
511
563
|
WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUser:
|
|
@@ -534,9 +586,12 @@ types:
|
|
|
534
586
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
535
587
|
Workspace invitation:
|
|
536
588
|
properties:
|
|
537
|
-
targetUser:
|
|
538
|
-
|
|
539
|
-
|
|
589
|
+
targetUser:
|
|
590
|
+
type: optional<WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUser>
|
|
591
|
+
method:
|
|
592
|
+
type: optional<WorkspaceAuditLogItemPayloadWorkspaceInvitationMethod>
|
|
593
|
+
userType:
|
|
594
|
+
type: optional<WorkspaceAuditLogItemPayloadWorkspaceInvitationUserType>
|
|
540
595
|
roleName:
|
|
541
596
|
type: optional<string>
|
|
542
597
|
docs: The name of the role that was assigned to the user
|
|
@@ -557,8 +612,10 @@ types:
|
|
|
557
612
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
558
613
|
WorkspaceInvitationAuditLogItem:
|
|
559
614
|
properties:
|
|
560
|
-
eventSubType:
|
|
561
|
-
|
|
615
|
+
eventSubType:
|
|
616
|
+
type: optional<WorkspaceInvitationAuditLogItemEventSubType>
|
|
617
|
+
payload:
|
|
618
|
+
type: optional<Workspace invitation>
|
|
562
619
|
source:
|
|
563
620
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
564
621
|
WorkspaceAuditLogItemActor:
|
|
@@ -582,25 +639,33 @@ types:
|
|
|
582
639
|
actor: optional<WorkspaceAuditLogItemActor>
|
|
583
640
|
workspace: optional<WorkspaceAuditLogItemWorkspace>
|
|
584
641
|
union:
|
|
585
|
-
user_access:
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
642
|
+
user_access:
|
|
643
|
+
type: UserAccessAuditLogItem
|
|
644
|
+
custom_role:
|
|
645
|
+
type: CustomRoleAuditLogItem
|
|
646
|
+
workspace_membership:
|
|
647
|
+
type: WorkspaceMembershipAuditLogItem
|
|
648
|
+
site_membership:
|
|
649
|
+
type: SiteMembershipAuditLogItem
|
|
650
|
+
workspace_invitation:
|
|
651
|
+
type: WorkspaceInvitationAuditLogItem
|
|
590
652
|
source:
|
|
591
653
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
592
654
|
Pagination:
|
|
593
655
|
docs: Pagination object
|
|
594
656
|
properties:
|
|
595
657
|
limit:
|
|
596
|
-
type: double
|
|
658
|
+
type: optional<double>
|
|
597
659
|
docs: The limit used for pagination
|
|
660
|
+
access: read-only
|
|
598
661
|
offset:
|
|
599
|
-
type: double
|
|
662
|
+
type: optional<double>
|
|
600
663
|
docs: The offset used for pagination
|
|
664
|
+
access: read-only
|
|
601
665
|
total:
|
|
602
|
-
type: double
|
|
666
|
+
type: optional<double>
|
|
603
667
|
docs: The total number of records
|
|
668
|
+
access: read-only
|
|
604
669
|
source:
|
|
605
670
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
606
671
|
WorkspaceAuditLogResponse:
|
|
@@ -827,7 +892,6 @@ types:
|
|
|
827
892
|
id:
|
|
828
893
|
type: string
|
|
829
894
|
docs: Unique identifier for a Collection
|
|
830
|
-
access: read-only
|
|
831
895
|
displayName:
|
|
832
896
|
type: optional<string>
|
|
833
897
|
docs: Name given to the Collection
|
|
@@ -999,9 +1063,9 @@ types:
|
|
|
999
1063
|
discriminated: false
|
|
1000
1064
|
docs: Details about the field of a collection
|
|
1001
1065
|
union:
|
|
1002
|
-
- Static Field
|
|
1003
|
-
- Option Field
|
|
1004
|
-
- Reference Field
|
|
1066
|
+
- type: Static Field
|
|
1067
|
+
- type: Option Field
|
|
1068
|
+
- type: Reference Field
|
|
1005
1069
|
source:
|
|
1006
1070
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1007
1071
|
FieldType:
|
|
@@ -1027,13 +1091,36 @@ types:
|
|
|
1027
1091
|
inline: true
|
|
1028
1092
|
source:
|
|
1029
1093
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1094
|
+
FieldValidationsAdditionalPropertiesAdditionalProperties:
|
|
1095
|
+
properties:
|
|
1096
|
+
additionalProperties: optional<unknown>
|
|
1097
|
+
source:
|
|
1098
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1099
|
+
inline: true
|
|
1100
|
+
FieldValidationsAdditionalProperties:
|
|
1101
|
+
discriminated: false
|
|
1102
|
+
union:
|
|
1103
|
+
- string
|
|
1104
|
+
- double
|
|
1105
|
+
- boolean
|
|
1106
|
+
- integer
|
|
1107
|
+
- FieldValidationsAdditionalPropertiesAdditionalProperties
|
|
1108
|
+
source:
|
|
1109
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1110
|
+
inline: true
|
|
1111
|
+
FieldValidations:
|
|
1112
|
+
docs: The validations for the field
|
|
1113
|
+
properties:
|
|
1114
|
+
additionalProperties: optional<FieldValidationsAdditionalProperties>
|
|
1115
|
+
source:
|
|
1116
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1117
|
+
inline: true
|
|
1030
1118
|
Field:
|
|
1031
1119
|
docs: The details of a field in a collection
|
|
1032
1120
|
properties:
|
|
1033
1121
|
id:
|
|
1034
1122
|
type: string
|
|
1035
1123
|
docs: Unique identifier for a Field
|
|
1036
|
-
access: read-only
|
|
1037
1124
|
isRequired:
|
|
1038
1125
|
type: boolean
|
|
1039
1126
|
docs: define whether a field is required in a collection
|
|
@@ -1055,6 +1142,10 @@ types:
|
|
|
1055
1142
|
helpText:
|
|
1056
1143
|
type: optional<string>
|
|
1057
1144
|
docs: Additional text to help anyone filling out this field
|
|
1145
|
+
validations:
|
|
1146
|
+
type: optional<FieldValidations>
|
|
1147
|
+
docs: The validations for the field
|
|
1148
|
+
access: read-only
|
|
1058
1149
|
source:
|
|
1059
1150
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1060
1151
|
Collection:
|
|
@@ -1063,7 +1154,6 @@ types:
|
|
|
1063
1154
|
id:
|
|
1064
1155
|
type: string
|
|
1065
1156
|
docs: Unique identifier for a Collection
|
|
1066
|
-
access: read-only
|
|
1067
1157
|
displayName:
|
|
1068
1158
|
type: string
|
|
1069
1159
|
docs: Name given to the Collection
|
|
@@ -1126,15 +1216,15 @@ types:
|
|
|
1126
1216
|
type: optional<string>
|
|
1127
1217
|
docs: Identifier for the locale of the CMS item
|
|
1128
1218
|
lastPublished:
|
|
1129
|
-
type: string
|
|
1219
|
+
type: optional<string>
|
|
1130
1220
|
docs: The date the item was last published
|
|
1131
1221
|
access: read-only
|
|
1132
1222
|
lastUpdated:
|
|
1133
|
-
type: string
|
|
1223
|
+
type: optional<string>
|
|
1134
1224
|
docs: The date the item was last updated
|
|
1135
1225
|
access: read-only
|
|
1136
1226
|
createdOn:
|
|
1137
|
-
type: string
|
|
1227
|
+
type: optional<string>
|
|
1138
1228
|
docs: The date the item was created
|
|
1139
1229
|
access: read-only
|
|
1140
1230
|
isArchived:
|
|
@@ -1170,7 +1260,8 @@ types:
|
|
|
1170
1260
|
items:
|
|
1171
1261
|
type: optional<list<CollectionItem>>
|
|
1172
1262
|
docs: List of Items within the collection
|
|
1173
|
-
pagination:
|
|
1263
|
+
pagination:
|
|
1264
|
+
type: optional<CollectionItemListPagination>
|
|
1174
1265
|
source:
|
|
1175
1266
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1176
1267
|
CollectionItemPostSingleFieldData:
|
|
@@ -1229,7 +1320,7 @@ types:
|
|
|
1229
1320
|
isDraft:
|
|
1230
1321
|
type: optional<boolean>
|
|
1231
1322
|
docs: Boolean determining if the Item is in a draft state.
|
|
1232
|
-
default:
|
|
1323
|
+
default: true
|
|
1233
1324
|
fieldData: CollectionItemPostSingleFieldData
|
|
1234
1325
|
source:
|
|
1235
1326
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
@@ -1312,9 +1403,8 @@ types:
|
|
|
1312
1403
|
items
|
|
1313
1404
|
properties:
|
|
1314
1405
|
id:
|
|
1315
|
-
type: string
|
|
1406
|
+
type: optional<string>
|
|
1316
1407
|
docs: Unique identifier for the Item
|
|
1317
|
-
access: read-only
|
|
1318
1408
|
cmsLocaleIds:
|
|
1319
1409
|
type: optional<list<string>>
|
|
1320
1410
|
docs: Array of identifiers for the locales where the item will be created
|
|
@@ -1427,15 +1517,12 @@ types:
|
|
|
1427
1517
|
id:
|
|
1428
1518
|
type: string
|
|
1429
1519
|
docs: Unique identifier for the comment thread
|
|
1430
|
-
access: read-only
|
|
1431
1520
|
siteId:
|
|
1432
1521
|
type: string
|
|
1433
1522
|
docs: The site unique identifier
|
|
1434
|
-
access: read-only
|
|
1435
1523
|
pageId:
|
|
1436
1524
|
type: string
|
|
1437
1525
|
docs: The page unique identifier
|
|
1438
|
-
access: read-only
|
|
1439
1526
|
localeId:
|
|
1440
1527
|
type: optional<string>
|
|
1441
1528
|
docs: The locale unique identifier
|
|
@@ -1447,11 +1534,9 @@ types:
|
|
|
1447
1534
|
breakpoint:
|
|
1448
1535
|
type: string
|
|
1449
1536
|
docs: The breakpoint the comment was left on
|
|
1450
|
-
access: read-only
|
|
1451
1537
|
url:
|
|
1452
1538
|
type: string
|
|
1453
1539
|
docs: The URL of the page the comment was left on
|
|
1454
|
-
access: read-only
|
|
1455
1540
|
content:
|
|
1456
1541
|
type: string
|
|
1457
1542
|
docs: The content of the comment reply
|
|
@@ -1469,11 +1554,9 @@ types:
|
|
|
1469
1554
|
createdOn:
|
|
1470
1555
|
type: string
|
|
1471
1556
|
docs: The date the item was created
|
|
1472
|
-
access: read-only
|
|
1473
1557
|
lastUpdated:
|
|
1474
1558
|
type: string
|
|
1475
1559
|
docs: The date the item was last updated
|
|
1476
|
-
access: read-only
|
|
1477
1560
|
source:
|
|
1478
1561
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1479
1562
|
CommentThreadListPagination:
|
|
@@ -1538,19 +1621,15 @@ types:
|
|
|
1538
1621
|
id:
|
|
1539
1622
|
type: string
|
|
1540
1623
|
docs: Unique identifier for the comment thread
|
|
1541
|
-
access: read-only
|
|
1542
1624
|
commentId:
|
|
1543
1625
|
type: string
|
|
1544
1626
|
docs: The comment reply unique identifier
|
|
1545
|
-
access: read-only
|
|
1546
1627
|
siteId:
|
|
1547
1628
|
type: string
|
|
1548
1629
|
docs: The site unique identifier
|
|
1549
|
-
access: read-only
|
|
1550
1630
|
pageId:
|
|
1551
1631
|
type: string
|
|
1552
1632
|
docs: The page unique identifier
|
|
1553
|
-
access: read-only
|
|
1554
1633
|
localeId:
|
|
1555
1634
|
type: optional<string>
|
|
1556
1635
|
docs: The locale unique identifier
|
|
@@ -1558,7 +1637,6 @@ types:
|
|
|
1558
1637
|
breakpoint:
|
|
1559
1638
|
type: string
|
|
1560
1639
|
docs: The breakpoint the comment was left on
|
|
1561
|
-
access: read-only
|
|
1562
1640
|
content:
|
|
1563
1641
|
type: string
|
|
1564
1642
|
docs: The content of the comment reply
|
|
@@ -1573,11 +1651,11 @@ types:
|
|
|
1573
1651
|
List of mentioned users is an empty array until email notifications
|
|
1574
1652
|
are sent.
|
|
1575
1653
|
lastUpdated:
|
|
1576
|
-
type: string
|
|
1654
|
+
type: optional<string>
|
|
1577
1655
|
docs: The date the item was last updated
|
|
1578
1656
|
access: read-only
|
|
1579
1657
|
createdOn:
|
|
1580
|
-
type: string
|
|
1658
|
+
type: optional<string>
|
|
1581
1659
|
docs: The date the item was created
|
|
1582
1660
|
access: read-only
|
|
1583
1661
|
source:
|
|
@@ -1648,7 +1726,6 @@ types:
|
|
|
1648
1726
|
id:
|
|
1649
1727
|
type: string
|
|
1650
1728
|
docs: Unique identifier for the Page
|
|
1651
|
-
access: read-only
|
|
1652
1729
|
siteId:
|
|
1653
1730
|
type: optional<string>
|
|
1654
1731
|
docs: Unique identifier for the Site
|
|
@@ -1691,7 +1768,8 @@ types:
|
|
|
1691
1768
|
type: optional<boolean>
|
|
1692
1769
|
docs: >-
|
|
1693
1770
|
Indicates whether the Page supports [Page
|
|
1694
|
-
Branching](https://university.webflow.com/lesson/page-branching)
|
|
1771
|
+
Branching](https://university.webflow.com/lesson/page-branching).
|
|
1772
|
+
Pages that are already branches cannot be branched again.
|
|
1695
1773
|
default: false
|
|
1696
1774
|
access: read-only
|
|
1697
1775
|
isBranch:
|
|
@@ -1701,6 +1779,9 @@ types:
|
|
|
1701
1779
|
Branching](https://university.webflow.com/lesson/page-branching)
|
|
1702
1780
|
default: false
|
|
1703
1781
|
access: read-only
|
|
1782
|
+
branchId:
|
|
1783
|
+
type: optional<string>
|
|
1784
|
+
docs: If the Page is a Branch of another Page, this is the ID of the Branch
|
|
1704
1785
|
seo:
|
|
1705
1786
|
type: optional<PageSeo>
|
|
1706
1787
|
docs: SEO-related fields for the Page
|
|
@@ -1736,7 +1817,7 @@ types:
|
|
|
1736
1817
|
source:
|
|
1737
1818
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1738
1819
|
inline: true
|
|
1739
|
-
|
|
1820
|
+
Text Node DOM:
|
|
1740
1821
|
docs: >
|
|
1741
1822
|
Represents text content within the DOM. It contains both the raw text and
|
|
1742
1823
|
its HTML representation. Additional attributes can be associated with the
|
|
@@ -1745,7 +1826,6 @@ types:
|
|
|
1745
1826
|
id:
|
|
1746
1827
|
type: string
|
|
1747
1828
|
docs: Node UUID
|
|
1748
|
-
access: read-only
|
|
1749
1829
|
text:
|
|
1750
1830
|
type: TextNodeText
|
|
1751
1831
|
docs: The text content of the node
|
|
@@ -1762,7 +1842,7 @@ types:
|
|
|
1762
1842
|
source:
|
|
1763
1843
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1764
1844
|
inline: true
|
|
1765
|
-
|
|
1845
|
+
Image Node DOM:
|
|
1766
1846
|
docs: >
|
|
1767
1847
|
Represents an image within the DOM. It contains details about the image,
|
|
1768
1848
|
such as its alternative text (alt) for accessibility and an asset
|
|
@@ -1772,7 +1852,6 @@ types:
|
|
|
1772
1852
|
id:
|
|
1773
1853
|
type: string
|
|
1774
1854
|
docs: Node UUID
|
|
1775
|
-
access: read-only
|
|
1776
1855
|
image:
|
|
1777
1856
|
type: ImageNodeImage
|
|
1778
1857
|
docs: The image details of the node
|
|
@@ -1827,7 +1906,7 @@ types:
|
|
|
1827
1906
|
and its HTML representation.
|
|
1828
1907
|
source:
|
|
1829
1908
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1830
|
-
|
|
1909
|
+
Component Node DOM:
|
|
1831
1910
|
docs: >
|
|
1832
1911
|
Represents a component instance within the DOM. It contains details about
|
|
1833
1912
|
the component instance, such as its type and properties.
|
|
@@ -1835,7 +1914,6 @@ types:
|
|
|
1835
1914
|
id:
|
|
1836
1915
|
type: string
|
|
1837
1916
|
docs: The unique identifier of the component instance node
|
|
1838
|
-
access: read-only
|
|
1839
1917
|
componentId:
|
|
1840
1918
|
type: string
|
|
1841
1919
|
docs: The unique identifier of the component
|
|
@@ -1844,7 +1922,7 @@ types:
|
|
|
1844
1922
|
type: list<ComponentProperty>
|
|
1845
1923
|
source:
|
|
1846
1924
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1847
|
-
|
|
1925
|
+
Text Input Node DOM:
|
|
1848
1926
|
docs: >
|
|
1849
1927
|
Represents text input and textarea elements within the DOM. It contains
|
|
1850
1928
|
the placeholder text in the input. Additional attributes can be associated
|
|
@@ -1853,7 +1931,6 @@ types:
|
|
|
1853
1931
|
id:
|
|
1854
1932
|
type: string
|
|
1855
1933
|
docs: Node UUID
|
|
1856
|
-
access: read-only
|
|
1857
1934
|
placeholder:
|
|
1858
1935
|
type: string
|
|
1859
1936
|
docs: The placeholder text of the input node
|
|
@@ -1873,7 +1950,7 @@ types:
|
|
|
1873
1950
|
source:
|
|
1874
1951
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1875
1952
|
inline: true
|
|
1876
|
-
|
|
1953
|
+
Select Node DOM:
|
|
1877
1954
|
docs: >
|
|
1878
1955
|
Represents select elements within the DOM. It contains the list of choices
|
|
1879
1956
|
in the select. Additional attributes can be associated with the text for
|
|
@@ -1882,7 +1959,6 @@ types:
|
|
|
1882
1959
|
id:
|
|
1883
1960
|
type: string
|
|
1884
1961
|
docs: Node UUID
|
|
1885
|
-
access: read-only
|
|
1886
1962
|
choices:
|
|
1887
1963
|
docs: The list of choices in this select node.
|
|
1888
1964
|
type: list<SelectNodeChoicesItem>
|
|
@@ -1891,7 +1967,7 @@ types:
|
|
|
1891
1967
|
docs: The custom attributes of the node
|
|
1892
1968
|
source:
|
|
1893
1969
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1894
|
-
|
|
1970
|
+
Submit Button Node DOM:
|
|
1895
1971
|
docs: >
|
|
1896
1972
|
Represents submit button elements within the DOM. It contains the text and
|
|
1897
1973
|
waiting text of the button. Additional attributes can be associated with
|
|
@@ -1900,7 +1976,6 @@ types:
|
|
|
1900
1976
|
id:
|
|
1901
1977
|
type: string
|
|
1902
1978
|
docs: Node UUID
|
|
1903
|
-
access: read-only
|
|
1904
1979
|
value:
|
|
1905
1980
|
type: string
|
|
1906
1981
|
docs: The text content of the submit button.
|
|
@@ -1912,7 +1987,7 @@ types:
|
|
|
1912
1987
|
docs: The custom attributes of the node
|
|
1913
1988
|
source:
|
|
1914
1989
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1915
|
-
|
|
1990
|
+
Search Button Node DOM:
|
|
1916
1991
|
docs: >
|
|
1917
1992
|
Represents search button elements within the DOM. It contains the text of
|
|
1918
1993
|
the button. Additional attributes can be associated with the text for
|
|
@@ -1921,7 +1996,6 @@ types:
|
|
|
1921
1996
|
id:
|
|
1922
1997
|
type: string
|
|
1923
1998
|
docs: Node UUID
|
|
1924
|
-
access: read-only
|
|
1925
1999
|
value:
|
|
1926
2000
|
type: string
|
|
1927
2001
|
docs: The text content of the search button.
|
|
@@ -1938,13 +2012,20 @@ types:
|
|
|
1938
2012
|
Model (DOM). Each node has a unique identifier and a specific type that
|
|
1939
2013
|
determines its content structure and attributes.
|
|
1940
2014
|
union:
|
|
1941
|
-
text:
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
2015
|
+
text:
|
|
2016
|
+
type: Text Node DOM
|
|
2017
|
+
image:
|
|
2018
|
+
type: Image Node DOM
|
|
2019
|
+
component-instance:
|
|
2020
|
+
type: Component Node DOM
|
|
2021
|
+
text-input:
|
|
2022
|
+
type: Text Input Node DOM
|
|
2023
|
+
select:
|
|
2024
|
+
type: Select Node DOM
|
|
2025
|
+
submit-button:
|
|
2026
|
+
type: Submit Button Node DOM
|
|
2027
|
+
search-button:
|
|
2028
|
+
type: Search Button Node DOM
|
|
1948
2029
|
source:
|
|
1949
2030
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1950
2031
|
Dom:
|
|
@@ -1959,6 +2040,9 @@ types:
|
|
|
1959
2040
|
pageId:
|
|
1960
2041
|
type: optional<string>
|
|
1961
2042
|
docs: Page ID
|
|
2043
|
+
branchId:
|
|
2044
|
+
type: optional<string>
|
|
2045
|
+
docs: If the page is a branch, this is the ID of the branch
|
|
1962
2046
|
nodes: optional<list<Node>>
|
|
1963
2047
|
pagination: optional<Pagination>
|
|
1964
2048
|
lastUpdated:
|
|
@@ -1967,7 +2051,7 @@ types:
|
|
|
1967
2051
|
access: read-only
|
|
1968
2052
|
source:
|
|
1969
2053
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
1970
|
-
|
|
2054
|
+
Text Node:
|
|
1971
2055
|
docs: Update a text node
|
|
1972
2056
|
properties:
|
|
1973
2057
|
nodeId:
|
|
@@ -2001,7 +2085,7 @@ types:
|
|
|
2001
2085
|
source:
|
|
2002
2086
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2003
2087
|
inline: true
|
|
2004
|
-
|
|
2088
|
+
Component Instance:
|
|
2005
2089
|
docs: Update text property overrides of a component instance
|
|
2006
2090
|
properties:
|
|
2007
2091
|
nodeId:
|
|
@@ -2025,7 +2109,7 @@ types:
|
|
|
2025
2109
|
source:
|
|
2026
2110
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2027
2111
|
inline: true
|
|
2028
|
-
|
|
2112
|
+
Select:
|
|
2029
2113
|
docs: Update choices on a select node
|
|
2030
2114
|
properties:
|
|
2031
2115
|
nodeId:
|
|
@@ -2036,7 +2120,7 @@ types:
|
|
|
2036
2120
|
type: list<SelectNodeWriteChoicesItem>
|
|
2037
2121
|
source:
|
|
2038
2122
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2039
|
-
|
|
2123
|
+
Text Input:
|
|
2040
2124
|
docs: Update placeholder text on a text input node
|
|
2041
2125
|
properties:
|
|
2042
2126
|
nodeId:
|
|
@@ -2047,7 +2131,7 @@ types:
|
|
|
2047
2131
|
docs: The placeholder text of the input node
|
|
2048
2132
|
source:
|
|
2049
2133
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2050
|
-
|
|
2134
|
+
Submit Button:
|
|
2051
2135
|
docs: Update a submit button node
|
|
2052
2136
|
properties:
|
|
2053
2137
|
nodeId:
|
|
@@ -2061,7 +2145,7 @@ types:
|
|
|
2061
2145
|
docs: The text to show while the form is submitting.
|
|
2062
2146
|
source:
|
|
2063
2147
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2064
|
-
|
|
2148
|
+
Search Button:
|
|
2065
2149
|
docs: Update a search button node
|
|
2066
2150
|
properties:
|
|
2067
2151
|
nodeId:
|
|
@@ -2078,7 +2162,6 @@ types:
|
|
|
2078
2162
|
id:
|
|
2079
2163
|
type: string
|
|
2080
2164
|
docs: Unique identifier for the Component
|
|
2081
|
-
access: read-only
|
|
2082
2165
|
name:
|
|
2083
2166
|
type: optional<string>
|
|
2084
2167
|
docs: Component Name
|
|
@@ -2228,6 +2311,7 @@ types:
|
|
|
2228
2311
|
docs: A list of scripts registered to the site
|
|
2229
2312
|
properties:
|
|
2230
2313
|
registeredScripts: optional<list<CustomCodeHostedResponse>>
|
|
2314
|
+
pagination: optional<Pagination>
|
|
2231
2315
|
source:
|
|
2232
2316
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2233
2317
|
CustomCodeInlineResponse:
|
|
@@ -2333,7 +2417,7 @@ types:
|
|
|
2333
2417
|
type: integer
|
|
2334
2418
|
docs: Width in pixels
|
|
2335
2419
|
height:
|
|
2336
|
-
type: integer
|
|
2420
|
+
type: optional<integer>
|
|
2337
2421
|
docs: Height in pixels
|
|
2338
2422
|
quality:
|
|
2339
2423
|
type: integer
|
|
@@ -2347,40 +2431,40 @@ types:
|
|
|
2347
2431
|
docs: Asset details
|
|
2348
2432
|
properties:
|
|
2349
2433
|
id:
|
|
2350
|
-
type: string
|
|
2434
|
+
type: optional<string>
|
|
2351
2435
|
docs: Unique identifier for this asset
|
|
2352
2436
|
access: read-only
|
|
2353
2437
|
contentType:
|
|
2354
|
-
type: string
|
|
2438
|
+
type: optional<string>
|
|
2355
2439
|
docs: File format type
|
|
2356
2440
|
access: read-only
|
|
2357
2441
|
size:
|
|
2358
|
-
type: integer
|
|
2442
|
+
type: optional<integer>
|
|
2359
2443
|
docs: size in bytes
|
|
2360
2444
|
access: read-only
|
|
2361
2445
|
siteId:
|
|
2362
|
-
type: string
|
|
2446
|
+
type: optional<string>
|
|
2363
2447
|
docs: Unique identifier for the site that hosts this asset
|
|
2364
2448
|
access: read-only
|
|
2365
2449
|
hostedUrl:
|
|
2366
|
-
type: string
|
|
2450
|
+
type: optional<string>
|
|
2367
2451
|
docs: Link to the asset
|
|
2368
2452
|
validation:
|
|
2369
2453
|
format: uri
|
|
2370
2454
|
access: read-only
|
|
2371
2455
|
originalFileName:
|
|
2372
|
-
type: string
|
|
2456
|
+
type: optional<string>
|
|
2373
2457
|
docs: Original file name at the time of upload
|
|
2374
2458
|
access: read-only
|
|
2375
2459
|
displayName:
|
|
2376
2460
|
type: string
|
|
2377
2461
|
docs: Display name of the asset
|
|
2378
2462
|
lastUpdated:
|
|
2379
|
-
type: datetime
|
|
2463
|
+
type: optional<datetime>
|
|
2380
2464
|
docs: Date the asset metadata was last updated
|
|
2381
2465
|
access: read-only
|
|
2382
2466
|
createdOn:
|
|
2383
|
-
type: datetime
|
|
2467
|
+
type: optional<datetime>
|
|
2384
2468
|
docs: Date the asset metadata was created
|
|
2385
2469
|
access: read-only
|
|
2386
2470
|
variants:
|
|
@@ -2688,43 +2772,12 @@ types:
|
|
|
2688
2772
|
pagination: optional<Pagination>
|
|
2689
2773
|
source:
|
|
2690
2774
|
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
2775
|
UserStatus:
|
|
2722
2776
|
enum:
|
|
2723
2777
|
- invited
|
|
2724
2778
|
- verified
|
|
2725
2779
|
- unverified
|
|
2726
2780
|
docs: The status of the user
|
|
2727
|
-
inline: true
|
|
2728
2781
|
source:
|
|
2729
2782
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2730
2783
|
UserAccessGroupsItemType:
|
|
@@ -2752,7 +2805,36 @@ types:
|
|
|
2752
2805
|
* `ecommerce` - Assigned to the user via an ecommerce purchase
|
|
2753
2806
|
source:
|
|
2754
2807
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2808
|
+
UserDataData:
|
|
2809
|
+
properties:
|
|
2810
|
+
name:
|
|
2811
|
+
type: optional<string>
|
|
2812
|
+
docs: |
|
|
2813
|
+
The name of the user
|
|
2814
|
+
email:
|
|
2815
|
+
type: optional<string>
|
|
2816
|
+
docs: |
|
|
2817
|
+
The email address of the user
|
|
2818
|
+
accept-privacy:
|
|
2819
|
+
type: optional<boolean>
|
|
2820
|
+
docs: |
|
|
2821
|
+
Boolean indicating if the user has accepted the privacy policy
|
|
2822
|
+
accept-communications:
|
|
2823
|
+
type: optional<boolean>
|
|
2824
|
+
docs: |
|
|
2825
|
+
Boolean indicating if the user has accepted to receive communications
|
|
2826
|
+
additionalProperties:
|
|
2827
|
+
type: optional<string>
|
|
2828
|
+
docs: Custom user attributes
|
|
2829
|
+
source:
|
|
2830
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2755
2831
|
inline: true
|
|
2832
|
+
UserData:
|
|
2833
|
+
docs: An object containing the User's basic info and custom fields
|
|
2834
|
+
properties:
|
|
2835
|
+
data: optional<UserDataData>
|
|
2836
|
+
source:
|
|
2837
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
2756
2838
|
User:
|
|
2757
2839
|
docs: >
|
|
2758
2840
|
The fields that define the schema for a given Item are based on the
|
|
@@ -2784,10 +2866,7 @@ types:
|
|
|
2784
2866
|
type: optional<datetime>
|
|
2785
2867
|
docs: The timestamp the user was logged in
|
|
2786
2868
|
access: read-only
|
|
2787
|
-
status:
|
|
2788
|
-
type: optional<UserStatus>
|
|
2789
|
-
docs: The status of the user
|
|
2790
|
-
access: read-only
|
|
2869
|
+
status: optional<UserStatus>
|
|
2791
2870
|
accessGroups:
|
|
2792
2871
|
type: optional<list<UserAccessGroupsItem>>
|
|
2793
2872
|
docs: Access groups the user belongs to
|
|
@@ -2993,9 +3072,9 @@ types:
|
|
|
2993
3072
|
sku-properties:
|
|
2994
3073
|
type: optional<list<SkuPropertyList>>
|
|
2995
3074
|
docs: Variant types to include in SKUs
|
|
2996
|
-
|
|
3075
|
+
category:
|
|
2997
3076
|
type: optional<list<string>>
|
|
2998
|
-
docs: The
|
|
3077
|
+
docs: The category your product belongs to.
|
|
2999
3078
|
tax-category:
|
|
3000
3079
|
type: optional<ProductFieldDataTaxCategory>
|
|
3001
3080
|
docs: Product tax class
|
|
@@ -3547,67 +3626,173 @@ types:
|
|
|
3547
3626
|
inline: true
|
|
3548
3627
|
source:
|
|
3549
3628
|
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
|
|
3629
|
+
OrderShippingAddressType:
|
|
3630
|
+
enum:
|
|
3631
|
+
- shipping
|
|
3632
|
+
- billing
|
|
3633
|
+
docs: The type of the order address (billing or shipping)
|
|
3563
3634
|
inline: true
|
|
3564
|
-
OrderMetadata:
|
|
3565
|
-
properties:
|
|
3566
|
-
isBuyNow: optional<boolean>
|
|
3567
3635
|
source:
|
|
3568
3636
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3569
|
-
|
|
3570
|
-
OrderTotalsExtrasItemType:
|
|
3637
|
+
OrderShippingAddressJapanType:
|
|
3571
3638
|
enum:
|
|
3572
|
-
-
|
|
3573
|
-
-
|
|
3574
|
-
|
|
3575
|
-
-
|
|
3576
|
-
|
|
3577
|
-
docs: The type of extra item this is.
|
|
3639
|
+
- kana
|
|
3640
|
+
- kanji
|
|
3641
|
+
docs: >-
|
|
3642
|
+
Represents a Japan-only address format. This field will only appear on
|
|
3643
|
+
orders placed from Japan.
|
|
3578
3644
|
inline: true
|
|
3579
3645
|
source:
|
|
3580
3646
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3581
|
-
|
|
3582
|
-
docs:
|
|
3647
|
+
OrderShippingAddress:
|
|
3648
|
+
docs: The shipping address
|
|
3583
3649
|
properties:
|
|
3584
3650
|
type:
|
|
3585
|
-
type: optional<
|
|
3586
|
-
docs: The type of
|
|
3587
|
-
|
|
3651
|
+
type: optional<OrderShippingAddressType>
|
|
3652
|
+
docs: The type of the order address (billing or shipping)
|
|
3653
|
+
japanType:
|
|
3654
|
+
type: optional<OrderShippingAddressJapanType>
|
|
3655
|
+
docs: >-
|
|
3656
|
+
Represents a Japan-only address format. This field will only appear on
|
|
3657
|
+
orders placed from Japan.
|
|
3658
|
+
addressee:
|
|
3588
3659
|
type: optional<string>
|
|
3589
|
-
docs:
|
|
3590
|
-
|
|
3660
|
+
docs: Display name on the address
|
|
3661
|
+
line1:
|
|
3591
3662
|
type: optional<string>
|
|
3592
|
-
docs:
|
|
3593
|
-
|
|
3594
|
-
type: optional<
|
|
3595
|
-
docs: The
|
|
3663
|
+
docs: The first line of the address
|
|
3664
|
+
line2:
|
|
3665
|
+
type: optional<string>
|
|
3666
|
+
docs: The second line of the address
|
|
3667
|
+
city:
|
|
3668
|
+
type: optional<string>
|
|
3669
|
+
docs: The city of the address.
|
|
3670
|
+
state:
|
|
3671
|
+
type: optional<string>
|
|
3672
|
+
docs: The state or province of the address
|
|
3673
|
+
country:
|
|
3674
|
+
type: optional<string>
|
|
3675
|
+
docs: The country of the address
|
|
3676
|
+
postalCode:
|
|
3677
|
+
type: optional<string>
|
|
3678
|
+
docs: The postal code of the address
|
|
3596
3679
|
source:
|
|
3597
3680
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3598
3681
|
inline: true
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3682
|
+
OrderBillingAddressType:
|
|
3683
|
+
enum:
|
|
3684
|
+
- shipping
|
|
3685
|
+
- billing
|
|
3686
|
+
docs: The type of the order address (billing or shipping)
|
|
3687
|
+
inline: true
|
|
3688
|
+
source:
|
|
3689
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3690
|
+
OrderBillingAddressJapanType:
|
|
3691
|
+
enum:
|
|
3692
|
+
- kana
|
|
3693
|
+
- kanji
|
|
3694
|
+
docs: >-
|
|
3695
|
+
Represents a Japan-only address format. This field will only appear on
|
|
3696
|
+
orders placed from Japan.
|
|
3697
|
+
inline: true
|
|
3698
|
+
source:
|
|
3699
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3700
|
+
OrderBillingAddress:
|
|
3701
|
+
docs: The billing address
|
|
3702
|
+
properties:
|
|
3703
|
+
type:
|
|
3704
|
+
type: optional<OrderBillingAddressType>
|
|
3705
|
+
docs: The type of the order address (billing or shipping)
|
|
3706
|
+
japanType:
|
|
3707
|
+
type: optional<OrderBillingAddressJapanType>
|
|
3708
|
+
docs: >-
|
|
3709
|
+
Represents a Japan-only address format. This field will only appear on
|
|
3710
|
+
orders placed from Japan.
|
|
3711
|
+
addressee:
|
|
3712
|
+
type: optional<string>
|
|
3713
|
+
docs: Display name on the address
|
|
3714
|
+
line1:
|
|
3715
|
+
type: optional<string>
|
|
3716
|
+
docs: The first line of the address
|
|
3717
|
+
line2:
|
|
3718
|
+
type: optional<string>
|
|
3719
|
+
docs: The second line of the address
|
|
3720
|
+
city:
|
|
3721
|
+
type: optional<string>
|
|
3722
|
+
docs: The city of the address.
|
|
3723
|
+
state:
|
|
3724
|
+
type: optional<string>
|
|
3725
|
+
docs: The state or province of the address
|
|
3726
|
+
country:
|
|
3727
|
+
type: optional<string>
|
|
3728
|
+
docs: The country of the address
|
|
3729
|
+
postalCode:
|
|
3730
|
+
type: optional<string>
|
|
3731
|
+
docs: The postal code of the address
|
|
3732
|
+
source:
|
|
3733
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3734
|
+
inline: true
|
|
3735
|
+
OrderCustomerInfo:
|
|
3736
|
+
docs: An object with the keys `fullName` and `email`.
|
|
3737
|
+
properties:
|
|
3738
|
+
fullName:
|
|
3739
|
+
type: optional<string>
|
|
3740
|
+
docs: The full name of the Customer
|
|
3741
|
+
email:
|
|
3742
|
+
type: optional<string>
|
|
3743
|
+
docs: The Customer's email address
|
|
3744
|
+
validation:
|
|
3745
|
+
format: email
|
|
3746
|
+
source:
|
|
3747
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3748
|
+
inline: true
|
|
3749
|
+
OrderMetadata:
|
|
3750
|
+
properties:
|
|
3751
|
+
isBuyNow: optional<boolean>
|
|
3752
|
+
source:
|
|
3753
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3754
|
+
inline: true
|
|
3755
|
+
OrderTotalsExtrasItemType:
|
|
3756
|
+
enum:
|
|
3757
|
+
- discount
|
|
3758
|
+
- value: discount-shipping
|
|
3759
|
+
name: DiscountShipping
|
|
3760
|
+
- shipping
|
|
3761
|
+
- tax
|
|
3762
|
+
docs: The type of extra item this is.
|
|
3763
|
+
inline: true
|
|
3764
|
+
source:
|
|
3765
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3766
|
+
OrderTotalsExtrasItem:
|
|
3767
|
+
docs: Extra order items, includes discounts, shipping, and taxes.
|
|
3768
|
+
properties:
|
|
3769
|
+
type:
|
|
3770
|
+
type: optional<OrderTotalsExtrasItemType>
|
|
3771
|
+
docs: The type of extra item this is.
|
|
3772
|
+
name:
|
|
3773
|
+
type: optional<string>
|
|
3774
|
+
docs: A human-readable (but English) name for this extra charge.
|
|
3775
|
+
description:
|
|
3776
|
+
type: optional<string>
|
|
3777
|
+
docs: A human-readable (but English) description of this extra charge.
|
|
3778
|
+
price:
|
|
3779
|
+
type: optional<OrderPrice>
|
|
3780
|
+
docs: The price for the item
|
|
3781
|
+
source:
|
|
3782
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3783
|
+
inline: true
|
|
3784
|
+
OrderTotals:
|
|
3785
|
+
docs: An object describing various pricing totals
|
|
3786
|
+
properties:
|
|
3787
|
+
subtotal:
|
|
3788
|
+
type: optional<OrderPrice>
|
|
3789
|
+
docs: The subtotal price
|
|
3790
|
+
extras:
|
|
3791
|
+
type: optional<list<OrderTotalsExtrasItem>>
|
|
3792
|
+
docs: An array of extra items, includes discounts, shipping, and taxes.
|
|
3793
|
+
total:
|
|
3794
|
+
type: optional<OrderPrice>
|
|
3795
|
+
docs: The total price
|
|
3611
3796
|
source:
|
|
3612
3797
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3613
3798
|
inline: true
|
|
@@ -3691,10 +3876,10 @@ types:
|
|
|
3691
3876
|
type: optional<list<OrderAddress>>
|
|
3692
3877
|
docs: All addresses provided by the customer during the ordering flow.
|
|
3693
3878
|
shippingAddress:
|
|
3694
|
-
type: optional<
|
|
3879
|
+
type: optional<OrderShippingAddress>
|
|
3695
3880
|
docs: The shipping address
|
|
3696
3881
|
billingAddress:
|
|
3697
|
-
type: optional<
|
|
3882
|
+
type: optional<OrderBillingAddress>
|
|
3698
3883
|
docs: The billing address
|
|
3699
3884
|
shippingProvider:
|
|
3700
3885
|
type: optional<string>
|
|
@@ -3806,3 +3991,638 @@ types:
|
|
|
3806
3991
|
docs: The three-letter ISO currency code for the Site
|
|
3807
3992
|
source:
|
|
3808
3993
|
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
3994
|
+
FormSubmissionTriggerPayloadSchemaItemFieldType:
|
|
3995
|
+
enum:
|
|
3996
|
+
- FormTextInput
|
|
3997
|
+
- FormTextarea
|
|
3998
|
+
- FormCheckboxInput
|
|
3999
|
+
- FormRadioInput
|
|
4000
|
+
- FormFileUploadInput
|
|
4001
|
+
docs: Form field type
|
|
4002
|
+
inline: true
|
|
4003
|
+
source:
|
|
4004
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4005
|
+
FormSubmissionTriggerPayloadSchemaItem:
|
|
4006
|
+
properties:
|
|
4007
|
+
fieldName:
|
|
4008
|
+
type: optional<string>
|
|
4009
|
+
docs: Form field name
|
|
4010
|
+
fieldType:
|
|
4011
|
+
type: optional<FormSubmissionTriggerPayloadSchemaItemFieldType>
|
|
4012
|
+
docs: Form field type
|
|
4013
|
+
fieldElementId:
|
|
4014
|
+
type: optional<string>
|
|
4015
|
+
docs: Element ID of the Form Field
|
|
4016
|
+
source:
|
|
4017
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4018
|
+
inline: true
|
|
4019
|
+
FormSubmissionTriggerPayload:
|
|
4020
|
+
docs: The payload of data sent from Webflow
|
|
4021
|
+
properties:
|
|
4022
|
+
name:
|
|
4023
|
+
type: optional<string>
|
|
4024
|
+
docs: The name of the form
|
|
4025
|
+
siteId:
|
|
4026
|
+
type: optional<string>
|
|
4027
|
+
docs: The ID of the site that the form was submitted from
|
|
4028
|
+
data:
|
|
4029
|
+
type: optional<map<string, unknown>>
|
|
4030
|
+
docs: The data submitted in the form
|
|
4031
|
+
schema:
|
|
4032
|
+
type: optional<list<FormSubmissionTriggerPayloadSchemaItem>>
|
|
4033
|
+
docs: A list of fields from the submitted form
|
|
4034
|
+
submittedAt:
|
|
4035
|
+
type: optional<string>
|
|
4036
|
+
docs: The timestamp the form was submitted
|
|
4037
|
+
id:
|
|
4038
|
+
type: optional<string>
|
|
4039
|
+
docs: the ID of the event
|
|
4040
|
+
formId:
|
|
4041
|
+
type: optional<string>
|
|
4042
|
+
docs: The ID of the form submission
|
|
4043
|
+
formElementId:
|
|
4044
|
+
type: optional<string>
|
|
4045
|
+
docs: The uniqueID of the Form element
|
|
4046
|
+
source:
|
|
4047
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4048
|
+
inline: true
|
|
4049
|
+
FormSubmissionTrigger:
|
|
4050
|
+
docs: The Webhook payload for when a form is submitted
|
|
4051
|
+
properties:
|
|
4052
|
+
triggerType:
|
|
4053
|
+
type: optional<string>
|
|
4054
|
+
docs: The type of event that triggered the request
|
|
4055
|
+
payload:
|
|
4056
|
+
type: optional<FormSubmissionTriggerPayload>
|
|
4057
|
+
docs: The payload of data sent from Webflow
|
|
4058
|
+
source:
|
|
4059
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4060
|
+
SitePublishPayload:
|
|
4061
|
+
docs: The payload of data sent from Webflow
|
|
4062
|
+
properties:
|
|
4063
|
+
siteId:
|
|
4064
|
+
type: optional<string>
|
|
4065
|
+
docs: The ID of the site that was published
|
|
4066
|
+
publishedOn:
|
|
4067
|
+
type: optional<datetime>
|
|
4068
|
+
docs: The timestamp of the publish event
|
|
4069
|
+
domains:
|
|
4070
|
+
type: optional<list<string>>
|
|
4071
|
+
docs: The domains that were published
|
|
4072
|
+
publishedBy:
|
|
4073
|
+
type: optional<map<string, unknown>>
|
|
4074
|
+
docs: The name andID of the user who published the site
|
|
4075
|
+
source:
|
|
4076
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4077
|
+
inline: true
|
|
4078
|
+
SitePublish:
|
|
4079
|
+
docs: The Webhook payload for when a Site is published
|
|
4080
|
+
properties:
|
|
4081
|
+
triggerType:
|
|
4082
|
+
type: optional<string>
|
|
4083
|
+
docs: The type of event that triggered the request
|
|
4084
|
+
payload:
|
|
4085
|
+
type: optional<SitePublishPayload>
|
|
4086
|
+
docs: The payload of data sent from Webflow
|
|
4087
|
+
source:
|
|
4088
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4089
|
+
NewOrder:
|
|
4090
|
+
docs: The Webhook payload for when a new order is created
|
|
4091
|
+
properties:
|
|
4092
|
+
triggerType:
|
|
4093
|
+
type: optional<string>
|
|
4094
|
+
docs: The type of event that triggered the request
|
|
4095
|
+
payload: optional<Order>
|
|
4096
|
+
source:
|
|
4097
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4098
|
+
UpdatedOrder:
|
|
4099
|
+
docs: The Webhook payload for when an order is updated
|
|
4100
|
+
properties:
|
|
4101
|
+
triggerType:
|
|
4102
|
+
type: optional<string>
|
|
4103
|
+
docs: The type of event that triggered the request
|
|
4104
|
+
payload: optional<Order>
|
|
4105
|
+
source:
|
|
4106
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4107
|
+
SingleLocaleCreatedPayloadFieldData:
|
|
4108
|
+
properties:
|
|
4109
|
+
name: string
|
|
4110
|
+
slug: string
|
|
4111
|
+
extra-properties: true
|
|
4112
|
+
source:
|
|
4113
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4114
|
+
inline: true
|
|
4115
|
+
SingleLocaleCreatedPayload:
|
|
4116
|
+
properties:
|
|
4117
|
+
id:
|
|
4118
|
+
type: string
|
|
4119
|
+
docs: Unique identifier for the Item
|
|
4120
|
+
validation:
|
|
4121
|
+
format: uuid
|
|
4122
|
+
workspaceId:
|
|
4123
|
+
type: string
|
|
4124
|
+
docs: Unique identifier of the workspace
|
|
4125
|
+
validation:
|
|
4126
|
+
format: uuid
|
|
4127
|
+
siteId:
|
|
4128
|
+
type: string
|
|
4129
|
+
docs: Unique identifier of the site
|
|
4130
|
+
validation:
|
|
4131
|
+
format: uuid
|
|
4132
|
+
collectionId:
|
|
4133
|
+
type: string
|
|
4134
|
+
docs: Unique identifier of the collection
|
|
4135
|
+
validation:
|
|
4136
|
+
format: uuid
|
|
4137
|
+
cmsLocaleId:
|
|
4138
|
+
type: optional<string>
|
|
4139
|
+
docs: Unique identifier of the CMS locale for this item
|
|
4140
|
+
validation:
|
|
4141
|
+
format: uuid
|
|
4142
|
+
lastPublished:
|
|
4143
|
+
type: optional<datetime>
|
|
4144
|
+
lastUpdated:
|
|
4145
|
+
type: optional<datetime>
|
|
4146
|
+
createdOn:
|
|
4147
|
+
type: optional<datetime>
|
|
4148
|
+
isArchived:
|
|
4149
|
+
type: optional<boolean>
|
|
4150
|
+
isDraft:
|
|
4151
|
+
type: optional<boolean>
|
|
4152
|
+
fieldData: SingleLocaleCreatedPayloadFieldData
|
|
4153
|
+
source:
|
|
4154
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4155
|
+
LocalizedItem:
|
|
4156
|
+
properties:
|
|
4157
|
+
_cid:
|
|
4158
|
+
type: string
|
|
4159
|
+
docs: Collection ID the item belongs to
|
|
4160
|
+
validation:
|
|
4161
|
+
format: uuid
|
|
4162
|
+
_id:
|
|
4163
|
+
type: string
|
|
4164
|
+
docs: Unique identifier for the item
|
|
4165
|
+
validation:
|
|
4166
|
+
format: uuid
|
|
4167
|
+
_locale:
|
|
4168
|
+
type: string
|
|
4169
|
+
docs: Locale identifier for this version of the item
|
|
4170
|
+
validation:
|
|
4171
|
+
format: uuid
|
|
4172
|
+
_draft:
|
|
4173
|
+
type: boolean
|
|
4174
|
+
docs: Whether the item is in draft state
|
|
4175
|
+
_archived:
|
|
4176
|
+
type: boolean
|
|
4177
|
+
docs: Whether the item is archived
|
|
4178
|
+
name:
|
|
4179
|
+
type: string
|
|
4180
|
+
docs: Name of the item
|
|
4181
|
+
slug:
|
|
4182
|
+
type: string
|
|
4183
|
+
docs: URL-friendly version of the name
|
|
4184
|
+
updated-on:
|
|
4185
|
+
type: datetime
|
|
4186
|
+
docs: Timestamp of last update
|
|
4187
|
+
updated-by:
|
|
4188
|
+
type: string
|
|
4189
|
+
docs: Identifier of user who last updated the item
|
|
4190
|
+
created-on:
|
|
4191
|
+
type: datetime
|
|
4192
|
+
docs: Timestamp of creation
|
|
4193
|
+
created-by:
|
|
4194
|
+
type: string
|
|
4195
|
+
docs: Identifier of user who created the item
|
|
4196
|
+
published-on:
|
|
4197
|
+
type: optional<datetime>
|
|
4198
|
+
docs: Timestamp of last publish, if published
|
|
4199
|
+
published-by:
|
|
4200
|
+
type: optional<string>
|
|
4201
|
+
docs: Identifier of user who last published the item
|
|
4202
|
+
source:
|
|
4203
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4204
|
+
MultiLocaleCreatedPayload:
|
|
4205
|
+
properties:
|
|
4206
|
+
siteId:
|
|
4207
|
+
type: string
|
|
4208
|
+
docs: Unique identifier of the site
|
|
4209
|
+
validation:
|
|
4210
|
+
format: uuid
|
|
4211
|
+
workspaceId:
|
|
4212
|
+
type: string
|
|
4213
|
+
docs: Unique identifier of the workspace
|
|
4214
|
+
validation:
|
|
4215
|
+
format: uuid
|
|
4216
|
+
collectionId:
|
|
4217
|
+
type: string
|
|
4218
|
+
docs: Unique identifier of the collection
|
|
4219
|
+
validation:
|
|
4220
|
+
format: uuid
|
|
4221
|
+
cmsLocaleId:
|
|
4222
|
+
type: optional<string>
|
|
4223
|
+
docs: Unique identifier of the CMS locale for this item
|
|
4224
|
+
validation:
|
|
4225
|
+
format: uuid
|
|
4226
|
+
fieldData:
|
|
4227
|
+
type: map<string, LocalizedItem>
|
|
4228
|
+
docs: Collection of localized items, keyed by locale index (0-n)
|
|
4229
|
+
source:
|
|
4230
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4231
|
+
CollectionItemCreatedPayload:
|
|
4232
|
+
discriminated: false
|
|
4233
|
+
union:
|
|
4234
|
+
- type: SingleLocaleCreatedPayload
|
|
4235
|
+
- type: MultiLocaleCreatedPayload
|
|
4236
|
+
source:
|
|
4237
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4238
|
+
inline: true
|
|
4239
|
+
CollectionItemCreated:
|
|
4240
|
+
docs: The Webhook payload for when a Collection Item is created
|
|
4241
|
+
properties:
|
|
4242
|
+
triggerType:
|
|
4243
|
+
type: literal<"collection_item_created">
|
|
4244
|
+
docs: The type of event that triggered the request
|
|
4245
|
+
payload: CollectionItemCreatedPayload
|
|
4246
|
+
source:
|
|
4247
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4248
|
+
SingleLocaleChangedPayloadFieldData:
|
|
4249
|
+
properties:
|
|
4250
|
+
name: string
|
|
4251
|
+
slug: string
|
|
4252
|
+
extra-properties: true
|
|
4253
|
+
source:
|
|
4254
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4255
|
+
inline: true
|
|
4256
|
+
SingleLocaleChangedPayload:
|
|
4257
|
+
properties:
|
|
4258
|
+
id:
|
|
4259
|
+
type: string
|
|
4260
|
+
docs: Unique identifier for the Item
|
|
4261
|
+
validation:
|
|
4262
|
+
format: uuid
|
|
4263
|
+
workspaceId:
|
|
4264
|
+
type: string
|
|
4265
|
+
docs: Unique identifier of the workspace
|
|
4266
|
+
validation:
|
|
4267
|
+
format: uuid
|
|
4268
|
+
siteId:
|
|
4269
|
+
type: string
|
|
4270
|
+
docs: Unique identifier of the site
|
|
4271
|
+
validation:
|
|
4272
|
+
format: uuid
|
|
4273
|
+
collectionId:
|
|
4274
|
+
type: string
|
|
4275
|
+
docs: Unique identifier of the collection
|
|
4276
|
+
validation:
|
|
4277
|
+
format: uuid
|
|
4278
|
+
cmsLocaleId:
|
|
4279
|
+
type: optional<string>
|
|
4280
|
+
docs: Unique identifier of the CMS locale for this item
|
|
4281
|
+
validation:
|
|
4282
|
+
format: uuid
|
|
4283
|
+
lastPublished:
|
|
4284
|
+
type: optional<datetime>
|
|
4285
|
+
lastUpdated:
|
|
4286
|
+
type: optional<datetime>
|
|
4287
|
+
createdOn:
|
|
4288
|
+
type: optional<datetime>
|
|
4289
|
+
isArchived:
|
|
4290
|
+
type: optional<boolean>
|
|
4291
|
+
isDraft:
|
|
4292
|
+
type: optional<boolean>
|
|
4293
|
+
fieldData: SingleLocaleChangedPayloadFieldData
|
|
4294
|
+
source:
|
|
4295
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4296
|
+
MultiLocaleChangedPayloadFieldData:
|
|
4297
|
+
properties:
|
|
4298
|
+
name: string
|
|
4299
|
+
slug: string
|
|
4300
|
+
_locale:
|
|
4301
|
+
type: string
|
|
4302
|
+
docs: Locale identifier for this version of the item
|
|
4303
|
+
validation:
|
|
4304
|
+
format: uuid
|
|
4305
|
+
extra-properties: true
|
|
4306
|
+
source:
|
|
4307
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4308
|
+
inline: true
|
|
4309
|
+
MultiLocaleChangedPayload:
|
|
4310
|
+
properties:
|
|
4311
|
+
id:
|
|
4312
|
+
type: string
|
|
4313
|
+
docs: Unique identifier for the Item
|
|
4314
|
+
validation:
|
|
4315
|
+
format: uuid
|
|
4316
|
+
workspaceId:
|
|
4317
|
+
type: string
|
|
4318
|
+
docs: Unique identifier of the workspace
|
|
4319
|
+
validation:
|
|
4320
|
+
format: uuid
|
|
4321
|
+
siteId:
|
|
4322
|
+
type: string
|
|
4323
|
+
docs: Unique identifier of the site
|
|
4324
|
+
validation:
|
|
4325
|
+
format: uuid
|
|
4326
|
+
collectionId:
|
|
4327
|
+
type: string
|
|
4328
|
+
docs: Unique identifier of the collection
|
|
4329
|
+
validation:
|
|
4330
|
+
format: uuid
|
|
4331
|
+
cmsLocaleId:
|
|
4332
|
+
type: optional<string>
|
|
4333
|
+
docs: Unique identifier of the CMS locale for this item
|
|
4334
|
+
validation:
|
|
4335
|
+
format: uuid
|
|
4336
|
+
lastPublished:
|
|
4337
|
+
type: optional<datetime>
|
|
4338
|
+
lastUpdated:
|
|
4339
|
+
type: optional<datetime>
|
|
4340
|
+
createdOn:
|
|
4341
|
+
type: optional<datetime>
|
|
4342
|
+
isArchived:
|
|
4343
|
+
type: optional<boolean>
|
|
4344
|
+
isDraft:
|
|
4345
|
+
type: optional<boolean>
|
|
4346
|
+
fieldData: MultiLocaleChangedPayloadFieldData
|
|
4347
|
+
source:
|
|
4348
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4349
|
+
CollectionItemChangedPayload:
|
|
4350
|
+
discriminated: false
|
|
4351
|
+
union:
|
|
4352
|
+
- type: SingleLocaleChangedPayload
|
|
4353
|
+
- type: MultiLocaleChangedPayload
|
|
4354
|
+
source:
|
|
4355
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4356
|
+
inline: true
|
|
4357
|
+
CollectionItemChanged:
|
|
4358
|
+
docs: The Webhook payload for when a Collection Item is changed
|
|
4359
|
+
properties:
|
|
4360
|
+
triggerType:
|
|
4361
|
+
type: literal<"collection_item_changed">
|
|
4362
|
+
docs: The type of event that triggered the request
|
|
4363
|
+
payload: CollectionItemChangedPayload
|
|
4364
|
+
source:
|
|
4365
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4366
|
+
CollectionItemRemovedPayloadFieldData:
|
|
4367
|
+
properties:
|
|
4368
|
+
name: string
|
|
4369
|
+
slug: string
|
|
4370
|
+
extra-properties: true
|
|
4371
|
+
source:
|
|
4372
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4373
|
+
inline: true
|
|
4374
|
+
CollectionItemRemovedPayload:
|
|
4375
|
+
docs: The payload of data sent from Webflow
|
|
4376
|
+
properties:
|
|
4377
|
+
id:
|
|
4378
|
+
type: optional<string>
|
|
4379
|
+
docs: The ID of the collection item that was deleted
|
|
4380
|
+
siteId:
|
|
4381
|
+
type: optional<string>
|
|
4382
|
+
docs: The ID of the site
|
|
4383
|
+
workspaceId:
|
|
4384
|
+
type: optional<string>
|
|
4385
|
+
docs: The ID of the workspace
|
|
4386
|
+
collectionId:
|
|
4387
|
+
type: optional<string>
|
|
4388
|
+
docs: The ID of the collection
|
|
4389
|
+
cmsLocaleId:
|
|
4390
|
+
type: optional<string>
|
|
4391
|
+
docs: Unique identifier of the CMS locale for this item
|
|
4392
|
+
validation:
|
|
4393
|
+
format: uuid
|
|
4394
|
+
lastPublished: optional<datetime>
|
|
4395
|
+
lastUpdated: optional<datetime>
|
|
4396
|
+
createdOn: optional<datetime>
|
|
4397
|
+
isArchived: optional<boolean>
|
|
4398
|
+
isDraft: optional<boolean>
|
|
4399
|
+
fieldData: optional<CollectionItemRemovedPayloadFieldData>
|
|
4400
|
+
source:
|
|
4401
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4402
|
+
inline: true
|
|
4403
|
+
CollectionItemRemoved:
|
|
4404
|
+
properties:
|
|
4405
|
+
triggerType:
|
|
4406
|
+
type: optional<string>
|
|
4407
|
+
docs: The type of event that triggered the request
|
|
4408
|
+
payload:
|
|
4409
|
+
type: optional<CollectionItemRemovedPayload>
|
|
4410
|
+
docs: The payload of data sent from Webflow
|
|
4411
|
+
source:
|
|
4412
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4413
|
+
CollectionItemUnpublishedPayloadFieldData:
|
|
4414
|
+
properties:
|
|
4415
|
+
name: string
|
|
4416
|
+
slug: string
|
|
4417
|
+
extra-properties: true
|
|
4418
|
+
source:
|
|
4419
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4420
|
+
inline: true
|
|
4421
|
+
CollectionItemUnpublishedPayload:
|
|
4422
|
+
docs: The payload of data sent from Webflow
|
|
4423
|
+
properties:
|
|
4424
|
+
id:
|
|
4425
|
+
type: optional<string>
|
|
4426
|
+
docs: The ID of the collection item that was unpublished
|
|
4427
|
+
siteId:
|
|
4428
|
+
type: optional<string>
|
|
4429
|
+
docs: The ID of the site
|
|
4430
|
+
workspaceId:
|
|
4431
|
+
type: optional<string>
|
|
4432
|
+
docs: The ID of the workspace
|
|
4433
|
+
collectionId:
|
|
4434
|
+
type: optional<string>
|
|
4435
|
+
docs: The ID of the collection
|
|
4436
|
+
cmsLocaleId:
|
|
4437
|
+
type: optional<string>
|
|
4438
|
+
docs: Unique identifier of the CMS locale for this item
|
|
4439
|
+
validation:
|
|
4440
|
+
format: uuid
|
|
4441
|
+
lastPublished: optional<datetime>
|
|
4442
|
+
lastUpdated: optional<datetime>
|
|
4443
|
+
createdOn: optional<datetime>
|
|
4444
|
+
isArchived: optional<boolean>
|
|
4445
|
+
isDraft: optional<boolean>
|
|
4446
|
+
fieldData: optional<CollectionItemUnpublishedPayloadFieldData>
|
|
4447
|
+
source:
|
|
4448
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4449
|
+
inline: true
|
|
4450
|
+
CollectionItemUnpublished:
|
|
4451
|
+
properties:
|
|
4452
|
+
triggerType:
|
|
4453
|
+
type: optional<string>
|
|
4454
|
+
docs: The type of event that triggered the request
|
|
4455
|
+
payload:
|
|
4456
|
+
type: optional<CollectionItemUnpublishedPayload>
|
|
4457
|
+
docs: The payload of data sent from Webflow
|
|
4458
|
+
source:
|
|
4459
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4460
|
+
PageCreatedWebhookPayload:
|
|
4461
|
+
docs: The payload of data sent from Webflow
|
|
4462
|
+
properties:
|
|
4463
|
+
siteId: optional<string>
|
|
4464
|
+
pageId: optional<string>
|
|
4465
|
+
pageTitle: optional<string>
|
|
4466
|
+
createdOn: optional<datetime>
|
|
4467
|
+
publishedPath: optional<string>
|
|
4468
|
+
source:
|
|
4469
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4470
|
+
inline: true
|
|
4471
|
+
PageCreatedWebhook:
|
|
4472
|
+
docs: The Webhook payload for when a Page is created
|
|
4473
|
+
properties:
|
|
4474
|
+
triggerType:
|
|
4475
|
+
type: optional<string>
|
|
4476
|
+
docs: The type of event that triggered the request
|
|
4477
|
+
payload:
|
|
4478
|
+
type: optional<PageCreatedWebhookPayload>
|
|
4479
|
+
docs: The payload of data sent from Webflow
|
|
4480
|
+
source:
|
|
4481
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4482
|
+
PageMetadataUpdatedWebhookPayload:
|
|
4483
|
+
docs: The payload of data sent from Webflow
|
|
4484
|
+
properties:
|
|
4485
|
+
siteId: optional<string>
|
|
4486
|
+
pageId: optional<string>
|
|
4487
|
+
pageTitle: optional<string>
|
|
4488
|
+
lastUpdated: optional<datetime>
|
|
4489
|
+
publishedPath: optional<string>
|
|
4490
|
+
source:
|
|
4491
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4492
|
+
inline: true
|
|
4493
|
+
PageMetadataUpdatedWebhook:
|
|
4494
|
+
docs: The Webhook payload for when a Page's metadata is updated
|
|
4495
|
+
properties:
|
|
4496
|
+
triggerType:
|
|
4497
|
+
type: optional<string>
|
|
4498
|
+
docs: The type of event that triggered the request
|
|
4499
|
+
payload:
|
|
4500
|
+
type: optional<PageMetadataUpdatedWebhookPayload>
|
|
4501
|
+
docs: The payload of data sent from Webflow
|
|
4502
|
+
source:
|
|
4503
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4504
|
+
PageDeletedWebhookPayload:
|
|
4505
|
+
docs: The payload of data sent from Webflow
|
|
4506
|
+
properties:
|
|
4507
|
+
siteId: optional<string>
|
|
4508
|
+
pageId: optional<string>
|
|
4509
|
+
pageTitle: optional<string>
|
|
4510
|
+
deletedOn: optional<datetime>
|
|
4511
|
+
publishedPath: optional<string>
|
|
4512
|
+
source:
|
|
4513
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4514
|
+
inline: true
|
|
4515
|
+
PageDeletedWebhook:
|
|
4516
|
+
docs: The Webhook payload for when a Page is deleted
|
|
4517
|
+
properties:
|
|
4518
|
+
triggerType:
|
|
4519
|
+
type: optional<string>
|
|
4520
|
+
docs: The type of event that triggered the request
|
|
4521
|
+
payload:
|
|
4522
|
+
type: optional<PageDeletedWebhookPayload>
|
|
4523
|
+
docs: The payload of data sent from Webflow
|
|
4524
|
+
source:
|
|
4525
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4526
|
+
CommentPayloadAuthor:
|
|
4527
|
+
properties:
|
|
4528
|
+
userId:
|
|
4529
|
+
type: string
|
|
4530
|
+
docs: The unique identifier of the author
|
|
4531
|
+
email:
|
|
4532
|
+
type: string
|
|
4533
|
+
docs: Email of the author
|
|
4534
|
+
name:
|
|
4535
|
+
type: string
|
|
4536
|
+
docs: Name of the author
|
|
4537
|
+
source:
|
|
4538
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4539
|
+
inline: true
|
|
4540
|
+
CommentPayloadMentionedUsersItem:
|
|
4541
|
+
properties:
|
|
4542
|
+
userId:
|
|
4543
|
+
type: string
|
|
4544
|
+
docs: The unique identifier of the mentioned user
|
|
4545
|
+
email:
|
|
4546
|
+
type: string
|
|
4547
|
+
docs: Email of the user
|
|
4548
|
+
name:
|
|
4549
|
+
type: string
|
|
4550
|
+
docs: Name of the User
|
|
4551
|
+
source:
|
|
4552
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4553
|
+
inline: true
|
|
4554
|
+
CommentPayload:
|
|
4555
|
+
docs: >
|
|
4556
|
+
The comment webhook payload contains data for the thread and for replies.
|
|
4557
|
+
Check the type to determine if the payload is for a thread or a reply.
|
|
4558
|
+
The webhook payload may be delayed by up to 5 minutes.
|
|
4559
|
+
properties:
|
|
4560
|
+
threadId:
|
|
4561
|
+
type: optional<string>
|
|
4562
|
+
docs: Unique identifier for the comment thread
|
|
4563
|
+
access: read-only
|
|
4564
|
+
commentId:
|
|
4565
|
+
type: optional<string>
|
|
4566
|
+
docs: Unique identifier for the comment reply
|
|
4567
|
+
access: read-only
|
|
4568
|
+
type:
|
|
4569
|
+
type: optional<string>
|
|
4570
|
+
docs: The type of comment payload
|
|
4571
|
+
access: read-only
|
|
4572
|
+
siteId:
|
|
4573
|
+
type: optional<string>
|
|
4574
|
+
docs: The site unique identifier
|
|
4575
|
+
access: read-only
|
|
4576
|
+
pageId:
|
|
4577
|
+
type: optional<string>
|
|
4578
|
+
docs: The page unique identifier
|
|
4579
|
+
access: read-only
|
|
4580
|
+
localeId:
|
|
4581
|
+
type: optional<string>
|
|
4582
|
+
docs: The locale unique identifier
|
|
4583
|
+
access: read-only
|
|
4584
|
+
itemId:
|
|
4585
|
+
type: optional<string>
|
|
4586
|
+
docs: The item unique identifier
|
|
4587
|
+
access: read-only
|
|
4588
|
+
breakpoint:
|
|
4589
|
+
type: optional<string>
|
|
4590
|
+
docs: The breakpoint the comment was left on
|
|
4591
|
+
access: read-only
|
|
4592
|
+
url:
|
|
4593
|
+
type: optional<string>
|
|
4594
|
+
docs: The URL of the page the comment was left on
|
|
4595
|
+
access: read-only
|
|
4596
|
+
content:
|
|
4597
|
+
type: string
|
|
4598
|
+
docs: The content of the comment reply
|
|
4599
|
+
isResolved:
|
|
4600
|
+
type: boolean
|
|
4601
|
+
docs: Boolean determining if the comment thread is resolved
|
|
4602
|
+
default: false
|
|
4603
|
+
author: CommentPayloadAuthor
|
|
4604
|
+
mentionedUsers:
|
|
4605
|
+
docs: >-
|
|
4606
|
+
List of mentioned users. This is an empty array until email
|
|
4607
|
+
notifications are sent, which can take up to 5 minutes after the
|
|
4608
|
+
comment is created.
|
|
4609
|
+
type: list<CommentPayloadMentionedUsersItem>
|
|
4610
|
+
createdOn:
|
|
4611
|
+
type: optional<string>
|
|
4612
|
+
docs: The date the item was created
|
|
4613
|
+
access: read-only
|
|
4614
|
+
lastUpdated:
|
|
4615
|
+
type: optional<string>
|
|
4616
|
+
docs: The date the item was last updated
|
|
4617
|
+
access: read-only
|
|
4618
|
+
source:
|
|
4619
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|
|
4620
|
+
Comment:
|
|
4621
|
+
docs: The Webhook payload for when a comment thread or reply is made on a Site
|
|
4622
|
+
properties:
|
|
4623
|
+
triggerType:
|
|
4624
|
+
type: optional<string>
|
|
4625
|
+
docs: The type of event that triggered the request
|
|
4626
|
+
payload: optional<CommentPayload>
|
|
4627
|
+
source:
|
|
4628
|
+
openapi: ../../../openapi/referenced-specs/v2.yml
|