webflow-api 3.2.0 → 3.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.mock/definition/__package__.yml +132 -289
- package/.mock/definition/accessGroups.yml +17 -4
- package/.mock/definition/api.yml +0 -2
- package/.mock/definition/assets.yml +41 -8
- package/.mock/definition/collections/fields.yml +9 -3
- package/.mock/definition/collections/items.yml +468 -88
- package/.mock/definition/collections.yml +15 -4
- package/.mock/definition/comments.yml +1 -0
- package/.mock/definition/components.yml +75 -31
- package/.mock/definition/ecommerce.yml +3 -1
- package/.mock/definition/forms.yml +35 -86
- package/.mock/definition/inventory.yml +25 -17
- package/.mock/definition/items.yml +29 -16
- package/.mock/definition/orders.yml +206 -112
- package/.mock/definition/pages/scripts.yml +27 -8
- package/.mock/definition/pages.yml +79 -49
- package/.mock/definition/products.yml +23 -14
- package/.mock/definition/scripts.yml +14 -4
- package/.mock/definition/sites/activityLogs.yml +12 -3
- package/.mock/definition/sites/comments.yml +47 -18
- package/.mock/definition/sites/forms.yml +316 -0
- package/.mock/definition/sites/plans.yml +3 -1
- package/.mock/definition/sites/redirects.yml +12 -4
- package/.mock/definition/sites/robotsTxt.yml +12 -4
- package/.mock/definition/sites/scripts.yml +38 -10
- package/.mock/definition/sites/wellKnown.yml +20 -4
- package/.mock/definition/sites.yml +47 -8
- package/.mock/definition/token.yml +3 -2
- package/.mock/definition/users.yml +83 -17
- package/.mock/definition/webhooks.yml +4 -4
- package/.mock/definition/workspaces/auditLogs.yml +11 -5
- package/.mock/fern.config.json +1 -1
- package/Client.d.ts +2 -2
- package/Client.js +3 -3
- package/LICENSE +21 -0
- package/api/resources/accessGroups/client/Client.d.ts +10 -4
- package/api/resources/accessGroups/client/Client.js +13 -3
- package/api/resources/accessGroups/client/requests/AccessGroupsListRequest.d.ts +5 -1
- package/api/resources/assets/client/Client.d.ts +9 -5
- package/api/resources/assets/client/Client.js +24 -7
- package/api/resources/assets/client/requests/AssetsListRequest.d.ts +20 -0
- package/api/resources/assets/client/requests/index.d.ts +1 -0
- package/api/resources/collections/client/Client.d.ts +3 -3
- package/api/resources/collections/client/Client.js +6 -2
- package/api/resources/collections/resources/fields/client/Client.d.ts +3 -3
- package/api/resources/collections/resources/fields/client/Client.js +6 -2
- package/api/resources/collections/resources/items/client/Client.d.ts +59 -25
- package/api/resources/collections/resources/items/client/Client.js +63 -25
- package/api/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.d.ts +4 -0
- package/api/resources/collections/resources/items/client/requests/ItemsCreateItemLiveRequest.d.ts +4 -2
- package/api/resources/collections/resources/items/client/requests/ItemsCreateItemRequest.d.ts +4 -2
- package/api/resources/collections/resources/items/client/requests/ItemsDeleteItemLiveRequest.d.ts +3 -1
- package/api/resources/collections/resources/items/client/requests/ItemsDeleteItemRequest.d.ts +3 -1
- package/api/resources/collections/resources/items/client/requests/ItemsGetItemLiveRequest.d.ts +3 -1
- package/api/resources/collections/resources/items/client/requests/ItemsGetItemRequest.d.ts +3 -1
- package/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.d.ts +9 -1
- package/api/resources/collections/resources/items/client/requests/ItemsListItemsRequest.d.ts +9 -1
- package/api/resources/collections/resources/items/client/requests/ItemsUpdateItemLiveRequest.d.ts +3 -2
- package/api/resources/collections/resources/items/client/requests/ItemsUpdateItemRequest.d.ts +3 -2
- package/api/resources/collections/resources/items/client/requests/ItemsUpdateItemsLiveRequest.d.ts +4 -0
- package/api/resources/collections/resources/items/client/requests/ItemsUpdateItemsRequest.d.ts +2 -0
- package/api/resources/components/client/Client.d.ts +18 -9
- package/api/resources/components/client/Client.js +21 -8
- package/api/resources/components/client/requests/ComponentDomWrite.d.ts +3 -1
- package/api/resources/components/client/requests/ComponentPropertiesWrite.d.ts +3 -1
- package/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +6 -2
- package/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +6 -2
- package/api/resources/components/client/requests/ComponentsListRequest.d.ts +3 -1
- package/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +1 -1
- package/api/resources/ecommerce/client/Client.d.ts +3 -3
- package/api/resources/ecommerce/client/Client.js +6 -2
- package/api/resources/forms/client/Client.d.ts +11 -30
- package/api/resources/forms/client/Client.js +14 -129
- package/api/resources/forms/client/requests/FormsListRequest.d.ts +4 -1
- package/api/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +4 -1
- package/api/resources/forms/client/requests/index.d.ts +0 -1
- package/api/resources/inventory/client/Client.d.ts +11 -11
- package/api/resources/inventory/client/Client.js +22 -18
- package/api/resources/orders/client/Client.d.ts +8 -4
- package/api/resources/orders/client/Client.js +11 -3
- package/api/resources/orders/client/requests/OrdersListRequest.d.ts +5 -1
- package/api/resources/pages/client/Client.d.ts +14 -15
- package/api/resources/pages/client/Client.js +17 -14
- package/api/resources/pages/client/requests/PageMetadataWrite.d.ts +9 -2
- package/api/resources/pages/client/requests/PagesGetContentRequest.d.ts +6 -2
- package/api/resources/pages/client/requests/PagesGetMetadataRequest.d.ts +3 -1
- package/api/resources/pages/client/requests/PagesListRequest.d.ts +6 -2
- package/api/resources/pages/resources/scripts/client/Client.d.ts +8 -6
- package/api/resources/pages/resources/scripts/client/Client.js +11 -5
- package/api/resources/pages/types/PageDomWriteNodesItem.d.ts +1 -1
- package/api/resources/products/client/Client.d.ts +7 -4
- package/api/resources/products/client/Client.js +10 -3
- package/api/resources/products/client/requests/ProductsListRequest.d.ts +4 -1
- package/api/resources/scripts/client/Client.d.ts +3 -3
- package/api/resources/scripts/client/Client.js +6 -2
- package/api/resources/sites/client/Client.d.ts +6 -3
- package/api/resources/sites/client/Client.js +11 -2
- package/api/resources/sites/resources/activityLogs/client/Client.d.ts +7 -4
- package/api/resources/sites/resources/activityLogs/client/Client.js +10 -3
- package/api/resources/sites/resources/activityLogs/client/requests/ActivityLogsListRequest.d.ts +4 -1
- package/api/resources/sites/resources/comments/client/Client.d.ts +18 -6
- package/api/resources/sites/resources/comments/client/Client.js +21 -5
- package/api/resources/sites/resources/comments/client/requests/CommentsGetCommentThreadRequest.d.ts +8 -2
- package/api/resources/sites/resources/comments/client/requests/CommentsListCommentRepliesRequest.d.ts +8 -2
- package/api/resources/sites/resources/comments/client/requests/CommentsListCommentThreadsRequest.d.ts +8 -2
- package/api/resources/sites/resources/forms/client/Client.d.ts +157 -0
- package/api/resources/sites/resources/forms/client/Client.js +662 -0
- package/api/resources/sites/resources/forms/client/index.d.ts +2 -0
- package/api/resources/sites/resources/forms/client/index.js +17 -0
- package/api/resources/{forms → sites/resources/forms}/client/requests/FormsListSubmissionsBySiteRequest.d.ts +3 -1
- package/api/resources/sites/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +20 -0
- package/api/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.d.ts +11 -0
- package/api/resources/sites/resources/forms/client/requests/index.d.ts +3 -0
- package/api/resources/sites/resources/forms/client/requests/index.js +2 -0
- package/api/resources/sites/resources/forms/index.d.ts +1 -0
- package/api/resources/sites/resources/forms/index.js +17 -0
- package/api/resources/sites/resources/index.d.ts +2 -0
- package/api/resources/sites/resources/index.js +3 -1
- package/api/resources/sites/resources/plans/client/Client.d.ts +3 -3
- package/api/resources/sites/resources/plans/client/Client.js +6 -2
- package/api/resources/sites/resources/redirects/client/Client.d.ts +3 -3
- package/api/resources/sites/resources/redirects/client/Client.js +6 -2
- package/api/resources/sites/resources/robotsTxt/client/Client.d.ts +3 -3
- package/api/resources/sites/resources/robotsTxt/client/Client.js +6 -2
- package/api/resources/sites/resources/scripts/client/Client.d.ts +13 -6
- package/api/resources/sites/resources/scripts/client/Client.js +16 -5
- package/api/resources/sites/resources/scripts/client/requests/ScriptsListCustomCodeBlocksRequest.d.ts +4 -1
- package/api/resources/sites/resources/wellKnown/client/Client.d.ts +6 -5
- package/api/resources/sites/resources/wellKnown/client/Client.js +9 -4
- package/api/resources/sites/resources/wellKnown/client/requests/WellKnownFile.d.ts +3 -2
- package/api/resources/token/client/Client.d.ts +3 -3
- package/api/resources/token/client/Client.js +6 -2
- package/api/resources/users/client/Client.d.ts +18 -4
- package/api/resources/users/client/Client.js +21 -3
- package/api/resources/users/client/requests/UsersListRequest.d.ts +5 -1
- package/api/resources/webhooks/client/Client.d.ts +3 -3
- package/api/resources/webhooks/client/Client.js +6 -2
- package/api/resources/workspaces/client/Client.d.ts +2 -2
- package/api/resources/workspaces/client/Client.js +1 -1
- package/api/resources/workspaces/resources/auditLogs/client/Client.d.ts +9 -5
- package/api/resources/workspaces/resources/auditLogs/client/Client.js +12 -4
- package/api/resources/workspaces/resources/auditLogs/client/requests/AuditLogsGetWorkspaceAuditLogsRequest.d.ts +6 -2
- package/api/types/CollectionItemChanged.d.ts +1 -1
- package/api/types/CollectionItemCreated.d.ts +1 -1
- package/api/types/CollectionItemPublished.d.ts +9 -0
- package/api/types/{ComponentInstance.d.ts → ComponentInstanceNodePropertyOverridesWrite.d.ts} +1 -1
- package/api/types/{ComponentNodeDom.d.ts → ComponentNode.d.ts} +1 -1
- package/api/types/Dom.d.ts +1 -1
- package/{dist/api/types/ImageNodeDom.d.ts → api/types/ImageNode.d.ts} +1 -1
- package/api/types/Node.d.ts +7 -7
- package/api/types/Payload.d.ts +25 -0
- package/api/types/{SingleLocaleChangedPayloadFieldData.d.ts → PayloadFieldData.d.ts} +1 -1
- package/api/types/{SearchButtonNodeDom.d.ts → SearchButtonNode.d.ts} +1 -1
- package/api/types/{SearchButton.d.ts → SearchButtonNodeWrite.d.ts} +1 -1
- package/{dist/api/types/SelectNodeDom.d.ts → api/types/SelectNode.d.ts} +1 -1
- package/api/types/SiteMembership.d.ts +1 -0
- package/api/types/SiteMembershipAuditLogItemEventSubType.d.ts +2 -1
- package/api/types/SiteMembershipAuditLogItemEventSubType.js +1 -0
- package/api/types/SkuFieldData.d.ts +0 -4
- package/{dist/api/types/SubmitButtonNodeDom.d.ts → api/types/SubmitButtonNode.d.ts} +1 -1
- package/api/types/{SubmitButton.d.ts → SubmitButtonNodeWrite.d.ts} +1 -1
- package/api/types/{TextInputNodeDom.d.ts → TextInputNode.d.ts} +1 -1
- package/api/types/{TextInput.d.ts → TextInputNodeWrite.d.ts} +1 -1
- package/api/types/TextNode.d.ts +7 -4
- package/api/types/TextNodeWrite.d.ts +12 -0
- package/api/types/TriggerType.d.ts +2 -1
- package/api/types/TriggerType.js +1 -0
- package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.d.ts +9 -0
- package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +2 -1
- package/api/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +1 -0
- package/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.d.ts +7 -0
- package/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +2 -1
- package/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +1 -0
- package/api/types/WorkspaceInvitation.d.ts +1 -0
- package/api/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +2 -1
- package/api/types/WorkspaceInvitationAuditLogItemEventSubType.js +1 -0
- package/api/types/index.d.ts +17 -20
- package/api/types/index.js +17 -20
- package/dist/Client.d.ts +2 -2
- package/dist/Client.js +3 -3
- package/dist/api/resources/accessGroups/client/Client.d.ts +10 -4
- package/dist/api/resources/accessGroups/client/Client.js +13 -3
- package/dist/api/resources/accessGroups/client/requests/AccessGroupsListRequest.d.ts +5 -1
- package/dist/api/resources/assets/client/Client.d.ts +9 -5
- package/dist/api/resources/assets/client/Client.js +24 -7
- package/dist/api/resources/assets/client/requests/AssetsListRequest.d.ts +20 -0
- package/dist/api/resources/assets/client/requests/index.d.ts +1 -0
- package/dist/api/resources/collections/client/Client.d.ts +3 -3
- package/dist/api/resources/collections/client/Client.js +6 -2
- package/dist/api/resources/collections/resources/fields/client/Client.d.ts +3 -3
- package/dist/api/resources/collections/resources/fields/client/Client.js +6 -2
- package/dist/api/resources/collections/resources/items/client/Client.d.ts +59 -25
- package/dist/api/resources/collections/resources/items/client/Client.js +63 -25
- package/dist/api/resources/collections/resources/items/client/requests/CreateBulkCollectionItemRequestBody.d.ts +4 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsCreateItemLiveRequest.d.ts +4 -2
- package/dist/api/resources/collections/resources/items/client/requests/ItemsCreateItemRequest.d.ts +4 -2
- package/dist/api/resources/collections/resources/items/client/requests/ItemsDeleteItemLiveRequest.d.ts +3 -1
- package/dist/api/resources/collections/resources/items/client/requests/ItemsDeleteItemRequest.d.ts +3 -1
- package/dist/api/resources/collections/resources/items/client/requests/ItemsGetItemLiveRequest.d.ts +3 -1
- package/dist/api/resources/collections/resources/items/client/requests/ItemsGetItemRequest.d.ts +3 -1
- package/dist/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.d.ts +9 -1
- package/dist/api/resources/collections/resources/items/client/requests/ItemsListItemsRequest.d.ts +9 -1
- package/dist/api/resources/collections/resources/items/client/requests/ItemsUpdateItemLiveRequest.d.ts +3 -2
- package/dist/api/resources/collections/resources/items/client/requests/ItemsUpdateItemRequest.d.ts +3 -2
- package/dist/api/resources/collections/resources/items/client/requests/ItemsUpdateItemsLiveRequest.d.ts +4 -0
- package/dist/api/resources/collections/resources/items/client/requests/ItemsUpdateItemsRequest.d.ts +2 -0
- package/dist/api/resources/components/client/Client.d.ts +18 -9
- package/dist/api/resources/components/client/Client.js +21 -8
- package/dist/api/resources/components/client/requests/ComponentDomWrite.d.ts +3 -1
- package/dist/api/resources/components/client/requests/ComponentPropertiesWrite.d.ts +3 -1
- package/dist/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +6 -2
- package/dist/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +6 -2
- package/dist/api/resources/components/client/requests/ComponentsListRequest.d.ts +3 -1
- package/dist/api/resources/components/types/ComponentDomWriteNodesItem.d.ts +1 -1
- package/dist/api/resources/ecommerce/client/Client.d.ts +3 -3
- package/dist/api/resources/ecommerce/client/Client.js +6 -2
- package/dist/api/resources/forms/client/Client.d.ts +11 -30
- package/dist/api/resources/forms/client/Client.js +14 -129
- package/dist/api/resources/forms/client/requests/FormsListRequest.d.ts +4 -1
- package/dist/api/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +4 -1
- package/dist/api/resources/forms/client/requests/index.d.ts +0 -1
- package/dist/api/resources/inventory/client/Client.d.ts +11 -11
- package/dist/api/resources/inventory/client/Client.js +22 -18
- package/dist/api/resources/orders/client/Client.d.ts +8 -4
- package/dist/api/resources/orders/client/Client.js +11 -3
- package/dist/api/resources/orders/client/requests/OrdersListRequest.d.ts +5 -1
- package/dist/api/resources/pages/client/Client.d.ts +14 -15
- package/dist/api/resources/pages/client/Client.js +17 -14
- package/dist/api/resources/pages/client/requests/PageMetadataWrite.d.ts +9 -2
- package/dist/api/resources/pages/client/requests/PagesGetContentRequest.d.ts +6 -2
- package/dist/api/resources/pages/client/requests/PagesGetMetadataRequest.d.ts +3 -1
- package/dist/api/resources/pages/client/requests/PagesListRequest.d.ts +6 -2
- package/dist/api/resources/pages/resources/scripts/client/Client.d.ts +8 -6
- package/dist/api/resources/pages/resources/scripts/client/Client.js +11 -5
- package/dist/api/resources/pages/types/PageDomWriteNodesItem.d.ts +1 -1
- package/dist/api/resources/products/client/Client.d.ts +7 -4
- package/dist/api/resources/products/client/Client.js +10 -3
- package/dist/api/resources/products/client/requests/ProductsListRequest.d.ts +4 -1
- package/dist/api/resources/scripts/client/Client.d.ts +3 -3
- package/dist/api/resources/scripts/client/Client.js +6 -2
- package/dist/api/resources/sites/client/Client.d.ts +6 -3
- package/dist/api/resources/sites/client/Client.js +11 -2
- package/dist/api/resources/sites/resources/activityLogs/client/Client.d.ts +7 -4
- package/dist/api/resources/sites/resources/activityLogs/client/Client.js +10 -3
- package/dist/api/resources/sites/resources/activityLogs/client/requests/ActivityLogsListRequest.d.ts +4 -1
- package/dist/api/resources/sites/resources/comments/client/Client.d.ts +18 -6
- package/dist/api/resources/sites/resources/comments/client/Client.js +21 -5
- package/dist/api/resources/sites/resources/comments/client/requests/CommentsGetCommentThreadRequest.d.ts +8 -2
- package/dist/api/resources/sites/resources/comments/client/requests/CommentsListCommentRepliesRequest.d.ts +8 -2
- package/dist/api/resources/sites/resources/comments/client/requests/CommentsListCommentThreadsRequest.d.ts +8 -2
- package/dist/api/resources/sites/resources/forms/client/Client.d.ts +157 -0
- package/dist/api/resources/sites/resources/forms/client/Client.js +662 -0
- package/dist/api/resources/sites/resources/forms/client/index.d.ts +2 -0
- package/dist/api/resources/sites/resources/forms/client/index.js +17 -0
- package/dist/api/resources/{forms → sites/resources/forms}/client/requests/FormsListSubmissionsBySiteRequest.d.ts +3 -1
- package/dist/api/resources/sites/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +20 -0
- package/dist/api/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.d.ts +11 -0
- package/dist/api/resources/sites/resources/forms/client/requests/index.d.ts +3 -0
- package/dist/api/resources/sites/resources/forms/client/requests/index.js +2 -0
- package/dist/api/resources/sites/resources/forms/index.d.ts +1 -0
- package/dist/api/resources/sites/resources/forms/index.js +17 -0
- package/dist/api/resources/sites/resources/index.d.ts +2 -0
- package/dist/api/resources/sites/resources/index.js +3 -1
- package/dist/api/resources/sites/resources/plans/client/Client.d.ts +3 -3
- package/dist/api/resources/sites/resources/plans/client/Client.js +6 -2
- package/dist/api/resources/sites/resources/redirects/client/Client.d.ts +3 -3
- package/dist/api/resources/sites/resources/redirects/client/Client.js +6 -2
- package/dist/api/resources/sites/resources/robotsTxt/client/Client.d.ts +3 -3
- package/dist/api/resources/sites/resources/robotsTxt/client/Client.js +6 -2
- package/dist/api/resources/sites/resources/scripts/client/Client.d.ts +13 -6
- package/dist/api/resources/sites/resources/scripts/client/Client.js +16 -5
- package/dist/api/resources/sites/resources/scripts/client/requests/ScriptsListCustomCodeBlocksRequest.d.ts +4 -1
- package/dist/api/resources/sites/resources/wellKnown/client/Client.d.ts +6 -5
- package/dist/api/resources/sites/resources/wellKnown/client/Client.js +9 -4
- package/dist/api/resources/sites/resources/wellKnown/client/requests/WellKnownFile.d.ts +3 -2
- package/dist/api/resources/token/client/Client.d.ts +3 -3
- package/dist/api/resources/token/client/Client.js +6 -2
- package/dist/api/resources/users/client/Client.d.ts +18 -4
- package/dist/api/resources/users/client/Client.js +21 -3
- package/dist/api/resources/users/client/requests/UsersListRequest.d.ts +5 -1
- package/dist/api/resources/webhooks/client/Client.d.ts +3 -3
- package/dist/api/resources/webhooks/client/Client.js +6 -2
- package/dist/api/resources/workspaces/client/Client.d.ts +2 -2
- package/dist/api/resources/workspaces/client/Client.js +1 -1
- package/dist/api/resources/workspaces/resources/auditLogs/client/Client.d.ts +9 -5
- package/dist/api/resources/workspaces/resources/auditLogs/client/Client.js +12 -4
- package/dist/api/resources/workspaces/resources/auditLogs/client/requests/AuditLogsGetWorkspaceAuditLogsRequest.d.ts +6 -2
- package/dist/api/types/CollectionItemChanged.d.ts +1 -1
- package/dist/api/types/CollectionItemCreated.d.ts +1 -1
- package/dist/api/types/CollectionItemPublished.d.ts +9 -0
- package/dist/api/types/{ComponentInstance.d.ts → ComponentInstanceNodePropertyOverridesWrite.d.ts} +1 -1
- package/dist/api/types/{ComponentNodeDom.d.ts → ComponentNode.d.ts} +1 -1
- package/dist/api/types/Dom.d.ts +1 -1
- package/{api/types/ImageNodeDom.d.ts → dist/api/types/ImageNode.d.ts} +1 -1
- package/dist/api/types/Node.d.ts +7 -7
- package/dist/api/types/Payload.d.ts +25 -0
- package/dist/api/types/{SingleLocaleChangedPayloadFieldData.d.ts → PayloadFieldData.d.ts} +1 -1
- package/dist/api/types/{SearchButtonNodeDom.d.ts → SearchButtonNode.d.ts} +1 -1
- package/dist/api/types/{SearchButton.d.ts → SearchButtonNodeWrite.d.ts} +1 -1
- package/{api/types/SelectNodeDom.d.ts → dist/api/types/SelectNode.d.ts} +1 -1
- package/dist/api/types/SiteMembership.d.ts +1 -0
- package/dist/api/types/SiteMembershipAuditLogItemEventSubType.d.ts +2 -1
- package/dist/api/types/SiteMembershipAuditLogItemEventSubType.js +1 -0
- package/dist/api/types/SkuFieldData.d.ts +0 -4
- package/{api/types/SubmitButtonNodeDom.d.ts → dist/api/types/SubmitButtonNode.d.ts} +1 -1
- package/dist/api/types/{SubmitButton.d.ts → SubmitButtonNodeWrite.d.ts} +1 -1
- package/dist/api/types/{TextInputNodeDom.d.ts → TextInputNode.d.ts} +1 -1
- package/dist/api/types/{TextInput.d.ts → TextInputNodeWrite.d.ts} +1 -1
- package/dist/api/types/TextNode.d.ts +7 -4
- package/dist/api/types/TextNodeWrite.d.ts +12 -0
- package/dist/api/types/TriggerType.d.ts +2 -1
- package/dist/api/types/TriggerType.js +1 -0
- package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.d.ts +9 -0
- package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +2 -1
- package/dist/api/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +1 -0
- package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.d.ts +7 -0
- package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +2 -1
- package/dist/api/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +1 -0
- package/dist/api/types/WorkspaceInvitation.d.ts +1 -0
- package/dist/api/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +2 -1
- package/dist/api/types/WorkspaceInvitationAuditLogItemEventSubType.js +1 -0
- package/dist/api/types/index.d.ts +17 -20
- package/dist/api/types/index.js +17 -20
- package/dist/environments.d.ts +0 -4
- package/dist/environments.js +0 -2
- package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +6 -6
- package/dist/serialization/resources/components/types/ComponentDomWriteNodesItem.js +10 -10
- package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +6 -6
- package/dist/serialization/resources/pages/types/PageDomWriteNodesItem.js +10 -10
- package/dist/serialization/resources/sites/resources/forms/client/index.d.ts +1 -0
- package/dist/serialization/resources/sites/resources/forms/client/index.js +17 -0
- package/dist/serialization/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.d.ts +12 -0
- package/dist/serialization/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.js +43 -0
- package/dist/serialization/resources/sites/resources/forms/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/sites/resources/forms/client/requests/index.js +5 -0
- package/dist/serialization/resources/sites/resources/forms/index.d.ts +1 -0
- package/dist/serialization/resources/sites/resources/forms/index.js +17 -0
- package/dist/serialization/resources/sites/resources/index.d.ts +2 -0
- package/dist/serialization/resources/sites/resources/index.js +3 -1
- package/dist/serialization/types/CollectionItemChanged.d.ts +2 -2
- package/dist/serialization/types/CollectionItemChanged.js +2 -2
- package/dist/serialization/types/CollectionItemCreated.d.ts +2 -2
- package/dist/serialization/types/CollectionItemCreated.js +2 -2
- package/dist/serialization/types/CollectionItemPublished.d.ts +14 -0
- package/dist/serialization/types/CollectionItemPublished.js +45 -0
- package/{serialization/types/ComponentInstance.d.ts → dist/serialization/types/ComponentInstanceNodePropertyOverridesWrite.d.ts} +2 -2
- package/{serialization/types/ComponentInstance.js → dist/serialization/types/ComponentInstanceNodePropertyOverridesWrite.js} +2 -2
- package/{serialization/types/ComponentNodeDom.d.ts → dist/serialization/types/ComponentNode.d.ts} +2 -2
- package/{serialization/types/ComponentNodeDom.js → dist/serialization/types/ComponentNode.js} +2 -2
- package/dist/serialization/types/FieldValidationsAdditionalPropertiesAdditionalProperties.d.ts +1 -1
- package/dist/serialization/types/FieldValidationsAdditionalPropertiesAdditionalProperties.js +1 -1
- package/dist/serialization/types/{ImageNodeDom.d.ts → ImageNode.d.ts} +2 -2
- package/dist/serialization/types/{ImageNodeDom.js → ImageNode.js} +2 -2
- package/dist/serialization/types/Node.d.ts +14 -14
- package/dist/serialization/types/Node.js +14 -14
- package/dist/serialization/types/Payload.d.ts +23 -0
- package/dist/serialization/types/{MultiLocaleChangedPayload.js → Payload.js} +8 -8
- package/dist/serialization/types/{SingleLocaleChangedPayloadFieldData.d.ts → PayloadFieldData.d.ts} +2 -2
- package/dist/serialization/types/{SingleLocaleChangedPayloadFieldData.js → PayloadFieldData.js} +2 -2
- package/{serialization/types/SearchButtonNodeDom.d.ts → dist/serialization/types/SearchButtonNode.d.ts} +2 -2
- package/{serialization/types/SearchButtonNodeDom.js → dist/serialization/types/SearchButtonNode.js} +2 -2
- package/{serialization/types/SearchButton.d.ts → dist/serialization/types/SearchButtonNodeWrite.d.ts} +2 -2
- package/{serialization/types/SearchButton.js → dist/serialization/types/SearchButtonNodeWrite.js} +2 -2
- package/dist/serialization/types/{SelectNodeDom.d.ts → SelectNode.d.ts} +2 -2
- package/{serialization/types/SelectNodeDom.js → dist/serialization/types/SelectNode.js} +2 -2
- package/dist/serialization/types/SiteMembership.d.ts +2 -0
- package/dist/serialization/types/SiteMembership.js +2 -0
- package/dist/serialization/types/SiteMembershipAuditLogItemEventSubType.d.ts +1 -1
- package/dist/serialization/types/SiteMembershipAuditLogItemEventSubType.js +1 -1
- package/dist/serialization/types/SkuFieldData.d.ts +0 -2
- package/dist/serialization/types/SkuFieldData.js +0 -2
- package/dist/serialization/types/{SubmitButtonNodeDom.d.ts → SubmitButtonNode.d.ts} +2 -2
- package/{serialization/types/SubmitButtonNodeDom.js → dist/serialization/types/SubmitButtonNode.js} +2 -2
- package/{serialization/types/SubmitButton.d.ts → dist/serialization/types/SubmitButtonNodeWrite.d.ts} +2 -2
- package/{serialization/types/SubmitButton.js → dist/serialization/types/SubmitButtonNodeWrite.js} +2 -2
- package/{serialization/types/TextInputNodeDom.d.ts → dist/serialization/types/TextInputNode.d.ts} +2 -2
- package/{serialization/types/TextInputNodeDom.js → dist/serialization/types/TextInputNode.js} +2 -2
- package/dist/serialization/types/{TextInput.d.ts → TextInputNodeWrite.d.ts} +2 -2
- package/dist/serialization/types/{TextInput.js → TextInputNodeWrite.js} +2 -2
- package/dist/serialization/types/TextNode.d.ts +4 -2
- package/dist/serialization/types/TextNode.js +4 -2
- package/dist/serialization/types/TextNodeWrite.d.ts +13 -0
- package/dist/serialization/types/TextNodeWrite.js +44 -0
- package/dist/serialization/types/TriggerType.d.ts +1 -1
- package/dist/serialization/types/TriggerType.js +1 -0
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.d.ts +15 -0
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.js +46 -0
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +1 -1
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +1 -1
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.d.ts +13 -0
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.js +44 -0
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +1 -1
- package/dist/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +1 -1
- package/dist/serialization/types/WorkspaceInvitation.d.ts +2 -0
- package/dist/serialization/types/WorkspaceInvitation.js +2 -0
- package/dist/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +1 -1
- package/dist/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.js +1 -0
- package/dist/serialization/types/index.d.ts +17 -20
- package/dist/serialization/types/index.js +17 -20
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/wrapper/AssetsClient.d.ts +24 -0
- package/dist/wrapper/AssetsClient.js +42 -0
- package/dist/wrapper/AssetsUtilitiesClient.d.ts +1 -1
- package/dist/wrapper/FormsClient.d.ts +37 -0
- package/dist/wrapper/FormsClient.js +193 -0
- package/dist/wrapper/ItemsClient.js +18 -14
- package/dist/wrapper/PagesClient.js +6 -5
- package/dist/wrapper/WebflowClient.d.ts +3 -0
- package/dist/wrapper/WebflowClient.js +6 -5
- package/environments.d.ts +0 -4
- package/environments.js +0 -2
- package/jest.config.mjs +25 -8
- package/package.json +3 -2
- package/reference.md +574 -137
- package/serialization/resources/components/types/ComponentDomWriteNodesItem.d.ts +6 -6
- package/serialization/resources/components/types/ComponentDomWriteNodesItem.js +10 -10
- package/serialization/resources/pages/types/PageDomWriteNodesItem.d.ts +6 -6
- package/serialization/resources/pages/types/PageDomWriteNodesItem.js +10 -10
- package/serialization/resources/sites/resources/forms/client/index.d.ts +1 -0
- package/serialization/resources/sites/resources/forms/client/index.js +17 -0
- package/serialization/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.d.ts +12 -0
- package/serialization/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.js +43 -0
- package/serialization/resources/sites/resources/forms/client/requests/index.d.ts +1 -0
- package/serialization/resources/sites/resources/forms/client/requests/index.js +5 -0
- package/serialization/resources/sites/resources/forms/index.d.ts +1 -0
- package/serialization/resources/sites/resources/forms/index.js +17 -0
- package/serialization/resources/sites/resources/index.d.ts +2 -0
- package/serialization/resources/sites/resources/index.js +3 -1
- package/serialization/types/CollectionItemChanged.d.ts +2 -2
- package/serialization/types/CollectionItemChanged.js +2 -2
- package/serialization/types/CollectionItemCreated.d.ts +2 -2
- package/serialization/types/CollectionItemCreated.js +2 -2
- package/serialization/types/CollectionItemPublished.d.ts +14 -0
- package/serialization/types/CollectionItemPublished.js +45 -0
- package/{dist/serialization/types/ComponentInstance.d.ts → serialization/types/ComponentInstanceNodePropertyOverridesWrite.d.ts} +2 -2
- package/{dist/serialization/types/ComponentInstance.js → serialization/types/ComponentInstanceNodePropertyOverridesWrite.js} +2 -2
- package/{dist/serialization/types/ComponentNodeDom.d.ts → serialization/types/ComponentNode.d.ts} +2 -2
- package/{dist/serialization/types/ComponentNodeDom.js → serialization/types/ComponentNode.js} +2 -2
- package/serialization/types/FieldValidationsAdditionalPropertiesAdditionalProperties.d.ts +1 -1
- package/serialization/types/FieldValidationsAdditionalPropertiesAdditionalProperties.js +1 -1
- package/serialization/types/{ImageNodeDom.d.ts → ImageNode.d.ts} +2 -2
- package/serialization/types/{ImageNodeDom.js → ImageNode.js} +2 -2
- package/serialization/types/Node.d.ts +14 -14
- package/serialization/types/Node.js +14 -14
- package/serialization/types/Payload.d.ts +23 -0
- package/serialization/types/{MultiLocaleChangedPayload.js → Payload.js} +8 -8
- package/serialization/types/{SingleLocaleChangedPayloadFieldData.d.ts → PayloadFieldData.d.ts} +2 -2
- package/serialization/types/{SingleLocaleChangedPayloadFieldData.js → PayloadFieldData.js} +2 -2
- package/{dist/serialization/types/SearchButtonNodeDom.d.ts → serialization/types/SearchButtonNode.d.ts} +2 -2
- package/{dist/serialization/types/SearchButtonNodeDom.js → serialization/types/SearchButtonNode.js} +2 -2
- package/{dist/serialization/types/SearchButton.d.ts → serialization/types/SearchButtonNodeWrite.d.ts} +2 -2
- package/{dist/serialization/types/SearchButton.js → serialization/types/SearchButtonNodeWrite.js} +2 -2
- package/serialization/types/{SelectNodeDom.d.ts → SelectNode.d.ts} +2 -2
- package/{dist/serialization/types/SelectNodeDom.js → serialization/types/SelectNode.js} +2 -2
- package/serialization/types/SiteMembership.d.ts +2 -0
- package/serialization/types/SiteMembership.js +2 -0
- package/serialization/types/SiteMembershipAuditLogItemEventSubType.d.ts +1 -1
- package/serialization/types/SiteMembershipAuditLogItemEventSubType.js +1 -1
- package/serialization/types/SkuFieldData.d.ts +0 -2
- package/serialization/types/SkuFieldData.js +0 -2
- package/serialization/types/{SubmitButtonNodeDom.d.ts → SubmitButtonNode.d.ts} +2 -2
- package/{dist/serialization/types/SubmitButtonNodeDom.js → serialization/types/SubmitButtonNode.js} +2 -2
- package/{dist/serialization/types/SubmitButton.d.ts → serialization/types/SubmitButtonNodeWrite.d.ts} +2 -2
- package/{dist/serialization/types/SubmitButton.js → serialization/types/SubmitButtonNodeWrite.js} +2 -2
- package/{dist/serialization/types/TextInputNodeDom.d.ts → serialization/types/TextInputNode.d.ts} +2 -2
- package/{dist/serialization/types/TextInputNodeDom.js → serialization/types/TextInputNode.js} +2 -2
- package/serialization/types/{TextInput.d.ts → TextInputNodeWrite.d.ts} +2 -2
- package/serialization/types/{TextInput.js → TextInputNodeWrite.js} +2 -2
- package/serialization/types/TextNode.d.ts +4 -2
- package/serialization/types/TextNode.js +4 -2
- package/serialization/types/TextNodeWrite.d.ts +13 -0
- package/serialization/types/TextNodeWrite.js +44 -0
- package/serialization/types/TriggerType.d.ts +1 -1
- package/serialization/types/TriggerType.js +1 -0
- package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.d.ts +15 -0
- package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.js +46 -0
- package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.d.ts +1 -1
- package/serialization/types/WorkspaceAuditLogItemPayloadSiteMembershipMethod.js +1 -1
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.d.ts +13 -0
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.js +44 -0
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.d.ts +1 -1
- package/serialization/types/WorkspaceAuditLogItemPayloadWorkspaceMembershipMethod.js +1 -1
- package/serialization/types/WorkspaceInvitation.d.ts +2 -0
- package/serialization/types/WorkspaceInvitation.js +2 -0
- package/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.d.ts +1 -1
- package/serialization/types/WorkspaceInvitationAuditLogItemEventSubType.js +1 -0
- package/serialization/types/index.d.ts +17 -20
- package/serialization/types/index.js +17 -20
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/wrapper/AssetsClient.d.ts +24 -0
- package/wrapper/AssetsClient.js +42 -0
- package/wrapper/AssetsUtilitiesClient.d.ts +1 -1
- package/wrapper/FormsClient.d.ts +37 -0
- package/wrapper/FormsClient.js +193 -0
- package/wrapper/ItemsClient.js +18 -14
- package/wrapper/PagesClient.js +6 -5
- package/wrapper/WebflowClient.d.ts +3 -0
- package/wrapper/WebflowClient.js +6 -5
- package/api/types/CollectionItemChangedPayload.d.ts +0 -5
- package/api/types/CollectionItemCreatedPayload.d.ts +0 -5
- package/api/types/LocalizedItem.d.ts +0 -31
- package/api/types/MultiLocaleChangedPayload.d.ts +0 -22
- package/api/types/MultiLocaleChangedPayloadFieldData.d.ts +0 -11
- package/api/types/MultiLocaleCreatedPayload.d.ts +0 -16
- package/api/types/SingleLocaleChangedPayload.d.ts +0 -22
- package/api/types/TextNodeDom.d.ts +0 -15
- package/dist/api/types/CollectionItemChangedPayload.d.ts +0 -5
- package/dist/api/types/CollectionItemCreatedPayload.d.ts +0 -5
- package/dist/api/types/LocalizedItem.d.ts +0 -31
- package/dist/api/types/MultiLocaleChangedPayload.d.ts +0 -22
- package/dist/api/types/MultiLocaleChangedPayloadFieldData.d.ts +0 -11
- package/dist/api/types/MultiLocaleCreatedPayload.d.ts +0 -16
- package/dist/api/types/SingleLocaleChangedPayload.d.ts +0 -22
- package/dist/api/types/TextNodeDom.d.ts +0 -15
- package/dist/serialization/types/CollectionItemChangedPayload.d.ts +0 -12
- package/dist/serialization/types/CollectionItemChangedPayload.js +0 -43
- package/dist/serialization/types/CollectionItemCreatedPayload.d.ts +0 -12
- package/dist/serialization/types/CollectionItemCreatedPayload.js +0 -43
- package/dist/serialization/types/LocalizedItem.d.ts +0 -24
- package/dist/serialization/types/LocalizedItem.js +0 -55
- package/dist/serialization/types/MultiLocaleChangedPayload.d.ts +0 -23
- package/dist/serialization/types/MultiLocaleChangedPayloadFieldData.d.ts +0 -15
- package/dist/serialization/types/MultiLocaleChangedPayloadFieldData.js +0 -47
- package/dist/serialization/types/MultiLocaleCreatedPayload.d.ts +0 -17
- package/dist/serialization/types/MultiLocaleCreatedPayload.js +0 -48
- package/dist/serialization/types/SingleLocaleChangedPayload.d.ts +0 -23
- package/dist/serialization/types/SingleLocaleChangedPayload.js +0 -54
- package/dist/serialization/types/TextNodeDom.d.ts +0 -15
- package/dist/serialization/types/TextNodeDom.js +0 -46
- package/serialization/types/CollectionItemChangedPayload.d.ts +0 -12
- package/serialization/types/CollectionItemChangedPayload.js +0 -43
- package/serialization/types/CollectionItemCreatedPayload.d.ts +0 -12
- package/serialization/types/CollectionItemCreatedPayload.js +0 -43
- package/serialization/types/LocalizedItem.d.ts +0 -24
- package/serialization/types/LocalizedItem.js +0 -55
- package/serialization/types/MultiLocaleChangedPayload.d.ts +0 -23
- package/serialization/types/MultiLocaleChangedPayloadFieldData.d.ts +0 -15
- package/serialization/types/MultiLocaleChangedPayloadFieldData.js +0 -47
- package/serialization/types/MultiLocaleCreatedPayload.d.ts +0 -17
- package/serialization/types/MultiLocaleCreatedPayload.js +0 -48
- package/serialization/types/SingleLocaleChangedPayload.d.ts +0 -23
- package/serialization/types/SingleLocaleChangedPayload.js +0 -54
- package/serialization/types/TextNodeDom.d.ts +0 -15
- package/serialization/types/TextNodeDom.js +0 -46
- /package/api/resources/{forms/client/requests/FormsListSubmissionsBySiteRequest.js → assets/client/requests/AssetsListRequest.js} +0 -0
- /package/{dist/api → api/resources/sites}/resources/forms/client/requests/FormsListSubmissionsBySiteRequest.js +0 -0
- /package/api/{types/CollectionItemChangedPayload.js → resources/sites/resources/forms/client/requests/FormsListSubmissionsRequest.js} +0 -0
- /package/api/{types/CollectionItemCreatedPayload.js → resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.js} +0 -0
- /package/api/types/{ComponentInstance.js → CollectionItemPublished.js} +0 -0
- /package/api/types/{ComponentNodeDom.js → ComponentInstanceNodePropertyOverridesWrite.js} +0 -0
- /package/api/types/{ImageNodeDom.js → ComponentNode.js} +0 -0
- /package/api/types/{LocalizedItem.js → ImageNode.js} +0 -0
- /package/api/types/{MultiLocaleChangedPayload.js → Payload.js} +0 -0
- /package/api/types/{MultiLocaleChangedPayloadFieldData.js → PayloadFieldData.js} +0 -0
- /package/api/types/{MultiLocaleCreatedPayload.js → SearchButtonNode.js} +0 -0
- /package/api/types/{SearchButton.js → SearchButtonNodeWrite.js} +0 -0
- /package/api/types/{SearchButtonNodeDom.js → SelectNode.js} +0 -0
- /package/api/types/{SelectNodeDom.js → SubmitButtonNode.js} +0 -0
- /package/api/types/{SingleLocaleChangedPayload.js → SubmitButtonNodeWrite.js} +0 -0
- /package/api/types/{SingleLocaleChangedPayloadFieldData.js → TextInputNode.js} +0 -0
- /package/api/types/{SubmitButton.js → TextInputNodeWrite.js} +0 -0
- /package/api/types/{SubmitButtonNodeDom.js → TextNodeWrite.js} +0 -0
- /package/api/types/{TextInput.js → WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.js} +0 -0
- /package/api/types/{TextInputNodeDom.js → WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.js} +0 -0
- /package/{api/types/TextNodeDom.js → dist/api/resources/assets/client/requests/AssetsListRequest.js} +0 -0
- /package/dist/api/{types/CollectionItemChangedPayload.js → resources/sites/resources/forms/client/requests/FormsListSubmissionsBySiteRequest.js} +0 -0
- /package/dist/api/{types/CollectionItemCreatedPayload.js → resources/sites/resources/forms/client/requests/FormsListSubmissionsRequest.js} +0 -0
- /package/dist/api/{types/ComponentInstance.js → resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.js} +0 -0
- /package/dist/api/types/{ComponentNodeDom.js → CollectionItemPublished.js} +0 -0
- /package/dist/api/types/{ImageNodeDom.js → ComponentInstanceNodePropertyOverridesWrite.js} +0 -0
- /package/dist/api/types/{LocalizedItem.js → ComponentNode.js} +0 -0
- /package/dist/api/types/{MultiLocaleChangedPayload.js → ImageNode.js} +0 -0
- /package/dist/api/types/{MultiLocaleChangedPayloadFieldData.js → Payload.js} +0 -0
- /package/dist/api/types/{MultiLocaleCreatedPayload.js → PayloadFieldData.js} +0 -0
- /package/dist/api/types/{SearchButton.js → SearchButtonNode.js} +0 -0
- /package/dist/api/types/{SearchButtonNodeDom.js → SearchButtonNodeWrite.js} +0 -0
- /package/dist/api/types/{SelectNodeDom.js → SelectNode.js} +0 -0
- /package/dist/api/types/{SingleLocaleChangedPayload.js → SubmitButtonNode.js} +0 -0
- /package/dist/api/types/{SingleLocaleChangedPayloadFieldData.js → SubmitButtonNodeWrite.js} +0 -0
- /package/dist/api/types/{SubmitButton.js → TextInputNode.js} +0 -0
- /package/dist/api/types/{SubmitButtonNodeDom.js → TextInputNodeWrite.js} +0 -0
- /package/dist/api/types/{TextInput.js → TextNodeWrite.js} +0 -0
- /package/dist/api/types/{TextInputNodeDom.js → WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.js} +0 -0
- /package/dist/api/types/{TextNodeDom.js → WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.js} +0 -0
|
@@ -28,7 +28,9 @@ service:
|
|
|
28
28
|
list:
|
|
29
29
|
path: /sites/{site_id}/orders
|
|
30
30
|
method: GET
|
|
31
|
-
auth:
|
|
31
|
+
auth:
|
|
32
|
+
- OAuth2:
|
|
33
|
+
- ecommerce:read
|
|
32
34
|
docs: |
|
|
33
35
|
List all orders created for a given site.
|
|
34
36
|
|
|
@@ -47,12 +49,12 @@ service:
|
|
|
47
49
|
type: optional<OrdersListRequestStatus>
|
|
48
50
|
docs: Filter the orders by status
|
|
49
51
|
offset:
|
|
50
|
-
type: optional<
|
|
52
|
+
type: optional<integer>
|
|
51
53
|
docs: >-
|
|
52
54
|
Offset used for pagination if the results have more than limit
|
|
53
55
|
records
|
|
54
56
|
limit:
|
|
55
|
-
type: optional<
|
|
57
|
+
type: optional<integer>
|
|
56
58
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
57
59
|
response:
|
|
58
60
|
docs: Request was successful
|
|
@@ -69,6 +71,10 @@ service:
|
|
|
69
71
|
examples:
|
|
70
72
|
- path-parameters:
|
|
71
73
|
site_id: 580e63e98c9a982ac9b8b741
|
|
74
|
+
query-parameters:
|
|
75
|
+
status: pending
|
|
76
|
+
offset: 1
|
|
77
|
+
limit: 1
|
|
72
78
|
response:
|
|
73
79
|
body:
|
|
74
80
|
orders:
|
|
@@ -82,18 +88,23 @@ service:
|
|
|
82
88
|
Please gift wrap with a personal note saying "Happy
|
|
83
89
|
Birthday, Ford! 🎉
|
|
84
90
|
acceptedOn: '2024-04-10T13:16:21Z'
|
|
91
|
+
fulfilledOn: '2018-12-03T22:06:15Z'
|
|
92
|
+
refundedOn: '2018-12-03T22:06:15Z'
|
|
93
|
+
disputedOn: '2018-12-03T22:06:15Z'
|
|
94
|
+
disputeUpdatedOn: '2018-12-03T22:06:15Z'
|
|
95
|
+
disputeLastStatus: warning_needs_response
|
|
85
96
|
customerPaid:
|
|
86
97
|
unit: USD
|
|
87
98
|
value: '5892'
|
|
88
|
-
string:
|
|
99
|
+
string: \$ 211.55 USD
|
|
89
100
|
netAmount:
|
|
90
101
|
unit: USD
|
|
91
102
|
value: '5892'
|
|
92
|
-
string:
|
|
103
|
+
string: \$ 200.89 USD
|
|
93
104
|
applicationFee:
|
|
94
105
|
unit: USD
|
|
95
106
|
value: '5892'
|
|
96
|
-
string:
|
|
107
|
+
string: \$ 4.23 USD
|
|
97
108
|
allAddresses:
|
|
98
109
|
- type: billing
|
|
99
110
|
addressee: Arthur Dent
|
|
@@ -141,7 +152,7 @@ service:
|
|
|
141
152
|
rowTotal:
|
|
142
153
|
unit: USD
|
|
143
154
|
value: '5892'
|
|
144
|
-
string:
|
|
155
|
+
string: \$ 111.22 USD
|
|
145
156
|
productId: 66072fb61b89448912e26791
|
|
146
157
|
productName: Luxurious Fresh Ball
|
|
147
158
|
productSlug: luxurious-fresh-ball
|
|
@@ -155,7 +166,7 @@ service:
|
|
|
155
166
|
variantPrice:
|
|
156
167
|
unit: USD
|
|
157
168
|
value: '5892'
|
|
158
|
-
string:
|
|
169
|
+
string: \$ 55.61 USD
|
|
159
170
|
weight: 11
|
|
160
171
|
width: 82
|
|
161
172
|
height: 70
|
|
@@ -164,7 +175,7 @@ service:
|
|
|
164
175
|
rowTotal:
|
|
165
176
|
unit: USD
|
|
166
177
|
value: '5892'
|
|
167
|
-
string:
|
|
178
|
+
string: \$ 83.09 USD
|
|
168
179
|
productId: 66072fb61b89448912e2678b
|
|
169
180
|
productName: Incredible Bronze Towels
|
|
170
181
|
productSlug: incredible-bronze-towels
|
|
@@ -180,16 +191,19 @@ service:
|
|
|
180
191
|
variantPrice:
|
|
181
192
|
unit: USD
|
|
182
193
|
value: '5892'
|
|
183
|
-
string:
|
|
194
|
+
string: \$ 83.09 USD
|
|
195
|
+
weight: 5
|
|
184
196
|
width: 19
|
|
185
197
|
height: 72
|
|
186
198
|
length: 18
|
|
187
199
|
purchasedItemsCount: 3
|
|
188
200
|
stripeDetails:
|
|
201
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
189
202
|
paymentMethod: pm_1P410gJYFi4lcbXWbeKghqjK
|
|
190
203
|
paymentIntentId: pi_3P410iJYFi4lcbXW0EKKgcVg
|
|
191
204
|
customerId: cus_Ptod8KJBiiPgnH
|
|
192
205
|
chargeId: ch_3P410iJYFi4lcbXW0DxUkzCH
|
|
206
|
+
refundReason: requested_by_customer
|
|
193
207
|
stripeCard:
|
|
194
208
|
last4: '4242'
|
|
195
209
|
brand: Visa
|
|
@@ -197,6 +211,13 @@ service:
|
|
|
197
211
|
expires:
|
|
198
212
|
year: 2025
|
|
199
213
|
month: 4
|
|
214
|
+
paypalDetails:
|
|
215
|
+
orderId: 1a2b3c4d5e6f7g8h9i0j
|
|
216
|
+
payerId: 9k8j7i6h5g4f3e2d1c0b
|
|
217
|
+
captureId: qwe123rty456uio789p
|
|
218
|
+
refundId: abcde12345fghij67890
|
|
219
|
+
refundReason: Customer requested refund
|
|
220
|
+
disputeId: zxcvbnm987poiuytrewq
|
|
200
221
|
customData:
|
|
201
222
|
- key: value
|
|
202
223
|
metadata:
|
|
@@ -213,7 +234,7 @@ service:
|
|
|
213
234
|
price:
|
|
214
235
|
unit: USD
|
|
215
236
|
value: '5892'
|
|
216
|
-
string:
|
|
237
|
+
string: \$3.44
|
|
217
238
|
downloadFiles:
|
|
218
239
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
219
240
|
name: The modern web design process - Webflow Ebook.pdf
|
|
@@ -224,19 +245,23 @@ service:
|
|
|
224
245
|
comment: Example comment to myself
|
|
225
246
|
orderComment: ''
|
|
226
247
|
acceptedOn: '2024-03-29T21:29:21Z'
|
|
248
|
+
fulfilledOn: '2018-12-03T22:06:15Z'
|
|
227
249
|
refundedOn: '2024-04-08T18:25:04Z'
|
|
250
|
+
disputedOn: '2018-12-03T22:06:15Z'
|
|
251
|
+
disputeUpdatedOn: '2018-12-03T22:06:15Z'
|
|
252
|
+
disputeLastStatus: warning_needs_response
|
|
228
253
|
customerPaid:
|
|
229
254
|
unit: USD
|
|
230
255
|
value: '5892'
|
|
231
|
-
string:
|
|
256
|
+
string: \$ 118.73 USD
|
|
232
257
|
netAmount:
|
|
233
258
|
unit: USD
|
|
234
259
|
value: '5892'
|
|
235
|
-
string:
|
|
260
|
+
string: \$ 112.62 USD
|
|
236
261
|
applicationFee:
|
|
237
262
|
unit: USD
|
|
238
263
|
value: '5892'
|
|
239
|
-
string:
|
|
264
|
+
string: \$ 2.37 USD
|
|
240
265
|
allAddresses:
|
|
241
266
|
- type: billing
|
|
242
267
|
addressee: Arthur Dent
|
|
@@ -283,7 +308,7 @@ service:
|
|
|
283
308
|
rowTotal:
|
|
284
309
|
unit: USD
|
|
285
310
|
value: '5892'
|
|
286
|
-
string:
|
|
311
|
+
string: \$ 55.61 USD
|
|
287
312
|
productId: 66072fb61b89448912e26791
|
|
288
313
|
productName: Luxurious Fresh Ball
|
|
289
314
|
productSlug: luxurious-fresh-ball
|
|
@@ -297,7 +322,7 @@ service:
|
|
|
297
322
|
variantPrice:
|
|
298
323
|
unit: USD
|
|
299
324
|
value: '5892'
|
|
300
|
-
string:
|
|
325
|
+
string: \$ 55.61 USD
|
|
301
326
|
weight: 11
|
|
302
327
|
width: 82
|
|
303
328
|
height: 70
|
|
@@ -306,7 +331,7 @@ service:
|
|
|
306
331
|
rowTotal:
|
|
307
332
|
unit: USD
|
|
308
333
|
value: '5892'
|
|
309
|
-
string:
|
|
334
|
+
string: \$ 53.44 USD
|
|
310
335
|
productId: 66072fb61b89448912e26799
|
|
311
336
|
productName: Recycled Steel Gloves
|
|
312
337
|
productSlug: recycled-steel-gloves
|
|
@@ -324,13 +349,14 @@ service:
|
|
|
324
349
|
variantPrice:
|
|
325
350
|
unit: USD
|
|
326
351
|
value: '5892'
|
|
327
|
-
string:
|
|
352
|
+
string: \$ 53.44 USD
|
|
328
353
|
weight: 38
|
|
329
354
|
width: 76
|
|
330
355
|
height: 85
|
|
331
356
|
length: 40
|
|
332
357
|
purchasedItemsCount: 2
|
|
333
358
|
stripeDetails:
|
|
359
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
334
360
|
paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j
|
|
335
361
|
paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft
|
|
336
362
|
customerId: cus_PpRsNHwWdUoRKR
|
|
@@ -344,6 +370,13 @@ service:
|
|
|
344
370
|
expires:
|
|
345
371
|
year: 2024
|
|
346
372
|
month: 4
|
|
373
|
+
paypalDetails:
|
|
374
|
+
orderId: 1a2b3c4d5e6f7g8h9i0j
|
|
375
|
+
payerId: 9k8j7i6h5g4f3e2d1c0b
|
|
376
|
+
captureId: qwe123rty456uio789p
|
|
377
|
+
refundId: abcde12345fghij67890
|
|
378
|
+
refundReason: Customer requested refund
|
|
379
|
+
disputeId: zxcvbnm987poiuytrewq
|
|
347
380
|
customData:
|
|
348
381
|
- key: value
|
|
349
382
|
metadata:
|
|
@@ -356,7 +389,7 @@ service:
|
|
|
356
389
|
subtotal:
|
|
357
390
|
unit: USD
|
|
358
391
|
value: '5892'
|
|
359
|
-
string:
|
|
392
|
+
string: \$ 109.05 USD
|
|
360
393
|
extras:
|
|
361
394
|
- type: tax
|
|
362
395
|
name: State Taxes
|
|
@@ -364,25 +397,25 @@ service:
|
|
|
364
397
|
price:
|
|
365
398
|
unit: USD
|
|
366
399
|
value: '5892'
|
|
367
|
-
string:
|
|
400
|
+
string: \$ 4.36 USD
|
|
368
401
|
- type: tax
|
|
369
402
|
name: City Taxes
|
|
370
403
|
description: NEW YORK Taxes (4.88%)
|
|
371
404
|
price:
|
|
372
405
|
unit: USD
|
|
373
406
|
value: '5892'
|
|
374
|
-
string:
|
|
407
|
+
string: \$ 5.32 USD
|
|
375
408
|
- type: shipping
|
|
376
409
|
name: Flat
|
|
377
410
|
description: ''
|
|
378
411
|
price:
|
|
379
412
|
unit: USD
|
|
380
413
|
value: '5892'
|
|
381
|
-
string:
|
|
414
|
+
string: \$ 0.00 USD
|
|
382
415
|
total:
|
|
383
416
|
unit: USD
|
|
384
417
|
value: '5892'
|
|
385
|
-
string:
|
|
418
|
+
string: \$ 118.73 USD
|
|
386
419
|
downloadFiles:
|
|
387
420
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
388
421
|
name: New product guide
|
|
@@ -395,7 +428,9 @@ service:
|
|
|
395
428
|
get:
|
|
396
429
|
path: /sites/{site_id}/orders/{order_id}
|
|
397
430
|
method: GET
|
|
398
|
-
auth:
|
|
431
|
+
auth:
|
|
432
|
+
- OAuth2:
|
|
433
|
+
- ecommerce:read
|
|
399
434
|
docs: |
|
|
400
435
|
Retrieve a single product by its ID. All of its SKUs will also be
|
|
401
436
|
retrieved.
|
|
@@ -447,15 +482,15 @@ service:
|
|
|
447
482
|
customerPaid:
|
|
448
483
|
unit: USD
|
|
449
484
|
value: '5892'
|
|
450
|
-
string:
|
|
485
|
+
string: \$ 118.73 USD
|
|
451
486
|
netAmount:
|
|
452
487
|
unit: USD
|
|
453
488
|
value: '5892'
|
|
454
|
-
string:
|
|
489
|
+
string: \$ 112.62 USD
|
|
455
490
|
applicationFee:
|
|
456
491
|
unit: USD
|
|
457
492
|
value: '5892'
|
|
458
|
-
string:
|
|
493
|
+
string: \$ 2.37 USD
|
|
459
494
|
allAddresses:
|
|
460
495
|
- type: billing
|
|
461
496
|
japanType: kana
|
|
@@ -506,7 +541,7 @@ service:
|
|
|
506
541
|
rowTotal:
|
|
507
542
|
unit: USD
|
|
508
543
|
value: '5892'
|
|
509
|
-
string:
|
|
544
|
+
string: \$ 55.61 USD
|
|
510
545
|
productId: 66072fb61b89448912e26791
|
|
511
546
|
productName: Luxurious Fresh Ball
|
|
512
547
|
productSlug: luxurious-fresh-ball
|
|
@@ -520,7 +555,7 @@ service:
|
|
|
520
555
|
variantPrice:
|
|
521
556
|
unit: USD
|
|
522
557
|
value: '5892'
|
|
523
|
-
string:
|
|
558
|
+
string: \$ 55.61 USD
|
|
524
559
|
weight: 11
|
|
525
560
|
width: 82
|
|
526
561
|
height: 70
|
|
@@ -529,7 +564,7 @@ service:
|
|
|
529
564
|
rowTotal:
|
|
530
565
|
unit: USD
|
|
531
566
|
value: '5892'
|
|
532
|
-
string:
|
|
567
|
+
string: \$ 53.44 USD
|
|
533
568
|
productId: 66072fb61b89448912e26799
|
|
534
569
|
productName: Recycled Steel Gloves
|
|
535
570
|
productSlug: recycled-steel-gloves
|
|
@@ -543,17 +578,19 @@ service:
|
|
|
543
578
|
variantPrice:
|
|
544
579
|
unit: USD
|
|
545
580
|
value: '5892'
|
|
546
|
-
string:
|
|
581
|
+
string: \$ 53.44 USD
|
|
547
582
|
weight: 38
|
|
548
583
|
width: 76
|
|
549
584
|
height: 85
|
|
550
585
|
length: 40
|
|
551
586
|
purchasedItemsCount: 2
|
|
552
587
|
stripeDetails:
|
|
588
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
553
589
|
paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j
|
|
554
590
|
paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft
|
|
555
591
|
customerId: cus_PpRsNHwWdUoRKR
|
|
556
592
|
chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2
|
|
593
|
+
disputeId: disputeId
|
|
557
594
|
refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk
|
|
558
595
|
refundReason: fraudulent
|
|
559
596
|
stripeCard:
|
|
@@ -563,6 +600,13 @@ service:
|
|
|
563
600
|
expires:
|
|
564
601
|
year: 2024
|
|
565
602
|
month: 4
|
|
603
|
+
paypalDetails:
|
|
604
|
+
orderId: 1a2b3c4d5e6f7g8h9i0j
|
|
605
|
+
payerId: 9k8j7i6h5g4f3e2d1c0b
|
|
606
|
+
captureId: qwe123rty456uio789p
|
|
607
|
+
refundId: abcde12345fghij67890
|
|
608
|
+
refundReason: Customer requested refund
|
|
609
|
+
disputeId: zxcvbnm987poiuytrewq
|
|
566
610
|
customData:
|
|
567
611
|
- key: value
|
|
568
612
|
metadata:
|
|
@@ -575,7 +619,7 @@ service:
|
|
|
575
619
|
subtotal:
|
|
576
620
|
unit: USD
|
|
577
621
|
value: '5892'
|
|
578
|
-
string:
|
|
622
|
+
string: \$ 109.05 USD
|
|
579
623
|
extras:
|
|
580
624
|
- type: tax
|
|
581
625
|
name: State Taxes
|
|
@@ -583,25 +627,25 @@ service:
|
|
|
583
627
|
price:
|
|
584
628
|
unit: USD
|
|
585
629
|
value: '5892'
|
|
586
|
-
string:
|
|
630
|
+
string: \$ 4.36 USD
|
|
587
631
|
- type: tax
|
|
588
632
|
name: City Taxes
|
|
589
633
|
description: NEW YORK Taxes (4.88%)
|
|
590
634
|
price:
|
|
591
635
|
unit: USD
|
|
592
636
|
value: '5892'
|
|
593
|
-
string:
|
|
637
|
+
string: \$ 5.32 USD
|
|
594
638
|
- type: shipping
|
|
595
639
|
name: Flat
|
|
596
640
|
description: ''
|
|
597
641
|
price:
|
|
598
642
|
unit: USD
|
|
599
643
|
value: '5892'
|
|
600
|
-
string:
|
|
644
|
+
string: \$ 0.00 USD
|
|
601
645
|
total:
|
|
602
646
|
unit: USD
|
|
603
647
|
value: '5892'
|
|
604
|
-
string:
|
|
648
|
+
string: \$ 118.73 USD
|
|
605
649
|
downloadFiles:
|
|
606
650
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
607
651
|
name: New product guide
|
|
@@ -610,7 +654,9 @@ service:
|
|
|
610
654
|
update:
|
|
611
655
|
path: /sites/{site_id}/orders/{order_id}
|
|
612
656
|
method: PATCH
|
|
613
|
-
auth:
|
|
657
|
+
auth:
|
|
658
|
+
- OAuth2:
|
|
659
|
+
- ecommerce:write
|
|
614
660
|
docs: |
|
|
615
661
|
This API lets you update the fields, `comment`, `shippingProvider`,
|
|
616
662
|
and/or `shippingTracking` for a given order. All three fields can be
|
|
@@ -681,15 +727,15 @@ service:
|
|
|
681
727
|
customerPaid:
|
|
682
728
|
unit: USD
|
|
683
729
|
value: '5892'
|
|
684
|
-
string:
|
|
730
|
+
string: \$ 118.73 USD
|
|
685
731
|
netAmount:
|
|
686
732
|
unit: USD
|
|
687
733
|
value: '5892'
|
|
688
|
-
string:
|
|
734
|
+
string: \$ 112.62 USD
|
|
689
735
|
applicationFee:
|
|
690
736
|
unit: USD
|
|
691
737
|
value: '5892'
|
|
692
|
-
string:
|
|
738
|
+
string: \$ 2.37 USD
|
|
693
739
|
allAddresses:
|
|
694
740
|
- type: billing
|
|
695
741
|
japanType: kana
|
|
@@ -740,7 +786,7 @@ service:
|
|
|
740
786
|
rowTotal:
|
|
741
787
|
unit: USD
|
|
742
788
|
value: '5892'
|
|
743
|
-
string:
|
|
789
|
+
string: \$ 55.61 USD
|
|
744
790
|
productId: 66072fb61b89448912e26791
|
|
745
791
|
productName: Luxurious Fresh Ball
|
|
746
792
|
productSlug: luxurious-fresh-ball
|
|
@@ -754,7 +800,7 @@ service:
|
|
|
754
800
|
variantPrice:
|
|
755
801
|
unit: USD
|
|
756
802
|
value: '5892'
|
|
757
|
-
string:
|
|
803
|
+
string: \$ 55.61 USD
|
|
758
804
|
weight: 11
|
|
759
805
|
width: 82
|
|
760
806
|
height: 70
|
|
@@ -763,7 +809,7 @@ service:
|
|
|
763
809
|
rowTotal:
|
|
764
810
|
unit: USD
|
|
765
811
|
value: '5892'
|
|
766
|
-
string:
|
|
812
|
+
string: \$ 53.44 USD
|
|
767
813
|
productId: 66072fb61b89448912e26799
|
|
768
814
|
productName: Recycled Steel Gloves
|
|
769
815
|
productSlug: recycled-steel-gloves
|
|
@@ -777,17 +823,19 @@ service:
|
|
|
777
823
|
variantPrice:
|
|
778
824
|
unit: USD
|
|
779
825
|
value: '5892'
|
|
780
|
-
string:
|
|
826
|
+
string: \$ 53.44 USD
|
|
781
827
|
weight: 38
|
|
782
828
|
width: 76
|
|
783
829
|
height: 85
|
|
784
830
|
length: 40
|
|
785
831
|
purchasedItemsCount: 2
|
|
786
832
|
stripeDetails:
|
|
833
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
787
834
|
paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j
|
|
788
835
|
paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft
|
|
789
836
|
customerId: cus_PpRsNHwWdUoRKR
|
|
790
837
|
chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2
|
|
838
|
+
disputeId: disputeId
|
|
791
839
|
refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk
|
|
792
840
|
refundReason: fraudulent
|
|
793
841
|
stripeCard:
|
|
@@ -797,6 +845,13 @@ service:
|
|
|
797
845
|
expires:
|
|
798
846
|
year: 2024
|
|
799
847
|
month: 4
|
|
848
|
+
paypalDetails:
|
|
849
|
+
orderId: 1a2b3c4d5e6f7g8h9i0j
|
|
850
|
+
payerId: 9k8j7i6h5g4f3e2d1c0b
|
|
851
|
+
captureId: qwe123rty456uio789p
|
|
852
|
+
refundId: abcde12345fghij67890
|
|
853
|
+
refundReason: Customer requested refund
|
|
854
|
+
disputeId: zxcvbnm987poiuytrewq
|
|
800
855
|
customData:
|
|
801
856
|
- key: value
|
|
802
857
|
metadata:
|
|
@@ -809,7 +864,7 @@ service:
|
|
|
809
864
|
subtotal:
|
|
810
865
|
unit: USD
|
|
811
866
|
value: '5892'
|
|
812
|
-
string:
|
|
867
|
+
string: \$ 109.05 USD
|
|
813
868
|
extras:
|
|
814
869
|
- type: tax
|
|
815
870
|
name: State Taxes
|
|
@@ -817,25 +872,25 @@ service:
|
|
|
817
872
|
price:
|
|
818
873
|
unit: USD
|
|
819
874
|
value: '5892'
|
|
820
|
-
string:
|
|
875
|
+
string: \$ 4.36 USD
|
|
821
876
|
- type: tax
|
|
822
877
|
name: City Taxes
|
|
823
878
|
description: NEW YORK Taxes (4.88%)
|
|
824
879
|
price:
|
|
825
880
|
unit: USD
|
|
826
881
|
value: '5892'
|
|
827
|
-
string:
|
|
882
|
+
string: \$ 5.32 USD
|
|
828
883
|
- type: shipping
|
|
829
884
|
name: Flat
|
|
830
885
|
description: ''
|
|
831
886
|
price:
|
|
832
887
|
unit: USD
|
|
833
888
|
value: '5892'
|
|
834
|
-
string:
|
|
889
|
+
string: \$ 0.00 USD
|
|
835
890
|
total:
|
|
836
891
|
unit: USD
|
|
837
892
|
value: '5892'
|
|
838
|
-
string:
|
|
893
|
+
string: \$ 118.73 USD
|
|
839
894
|
downloadFiles:
|
|
840
895
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
841
896
|
name: New product guide
|
|
@@ -844,7 +899,9 @@ service:
|
|
|
844
899
|
update-fulfill:
|
|
845
900
|
path: /sites/{site_id}/orders/{order_id}/fulfill
|
|
846
901
|
method: POST
|
|
847
|
-
auth:
|
|
902
|
+
auth:
|
|
903
|
+
- OAuth2:
|
|
904
|
+
- ecommerce:write
|
|
848
905
|
docs: |
|
|
849
906
|
Updates an order's status to fulfilled
|
|
850
907
|
|
|
@@ -905,15 +962,15 @@ service:
|
|
|
905
962
|
customerPaid:
|
|
906
963
|
unit: USD
|
|
907
964
|
value: '5892'
|
|
908
|
-
string:
|
|
965
|
+
string: \$ 118.73 USD
|
|
909
966
|
netAmount:
|
|
910
967
|
unit: USD
|
|
911
968
|
value: '5892'
|
|
912
|
-
string:
|
|
969
|
+
string: \$ 112.62 USD
|
|
913
970
|
applicationFee:
|
|
914
971
|
unit: USD
|
|
915
972
|
value: '5892'
|
|
916
|
-
string:
|
|
973
|
+
string: \$ 2.37 USD
|
|
917
974
|
allAddresses:
|
|
918
975
|
- type: billing
|
|
919
976
|
japanType: kana
|
|
@@ -964,7 +1021,7 @@ service:
|
|
|
964
1021
|
rowTotal:
|
|
965
1022
|
unit: USD
|
|
966
1023
|
value: '5892'
|
|
967
|
-
string:
|
|
1024
|
+
string: \$ 55.61 USD
|
|
968
1025
|
productId: 66072fb61b89448912e26791
|
|
969
1026
|
productName: Luxurious Fresh Ball
|
|
970
1027
|
productSlug: luxurious-fresh-ball
|
|
@@ -978,7 +1035,7 @@ service:
|
|
|
978
1035
|
variantPrice:
|
|
979
1036
|
unit: USD
|
|
980
1037
|
value: '5892'
|
|
981
|
-
string:
|
|
1038
|
+
string: \$ 55.61 USD
|
|
982
1039
|
weight: 11
|
|
983
1040
|
width: 82
|
|
984
1041
|
height: 70
|
|
@@ -987,7 +1044,7 @@ service:
|
|
|
987
1044
|
rowTotal:
|
|
988
1045
|
unit: USD
|
|
989
1046
|
value: '5892'
|
|
990
|
-
string:
|
|
1047
|
+
string: \$ 53.44 USD
|
|
991
1048
|
productId: 66072fb61b89448912e26799
|
|
992
1049
|
productName: Recycled Steel Gloves
|
|
993
1050
|
productSlug: recycled-steel-gloves
|
|
@@ -1001,17 +1058,19 @@ service:
|
|
|
1001
1058
|
variantPrice:
|
|
1002
1059
|
unit: USD
|
|
1003
1060
|
value: '5892'
|
|
1004
|
-
string:
|
|
1061
|
+
string: \$ 53.44 USD
|
|
1005
1062
|
weight: 38
|
|
1006
1063
|
width: 76
|
|
1007
1064
|
height: 85
|
|
1008
1065
|
length: 40
|
|
1009
1066
|
purchasedItemsCount: 2
|
|
1010
1067
|
stripeDetails:
|
|
1068
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
1011
1069
|
paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j
|
|
1012
1070
|
paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft
|
|
1013
1071
|
customerId: cus_PpRsNHwWdUoRKR
|
|
1014
1072
|
chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2
|
|
1073
|
+
disputeId: disputeId
|
|
1015
1074
|
refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk
|
|
1016
1075
|
refundReason: fraudulent
|
|
1017
1076
|
stripeCard:
|
|
@@ -1021,6 +1080,13 @@ service:
|
|
|
1021
1080
|
expires:
|
|
1022
1081
|
year: 2024
|
|
1023
1082
|
month: 4
|
|
1083
|
+
paypalDetails:
|
|
1084
|
+
orderId: 1a2b3c4d5e6f7g8h9i0j
|
|
1085
|
+
payerId: 9k8j7i6h5g4f3e2d1c0b
|
|
1086
|
+
captureId: qwe123rty456uio789p
|
|
1087
|
+
refundId: abcde12345fghij67890
|
|
1088
|
+
refundReason: Customer requested refund
|
|
1089
|
+
disputeId: zxcvbnm987poiuytrewq
|
|
1024
1090
|
customData:
|
|
1025
1091
|
- key: value
|
|
1026
1092
|
metadata:
|
|
@@ -1033,7 +1099,7 @@ service:
|
|
|
1033
1099
|
subtotal:
|
|
1034
1100
|
unit: USD
|
|
1035
1101
|
value: '5892'
|
|
1036
|
-
string:
|
|
1102
|
+
string: \$ 109.05 USD
|
|
1037
1103
|
extras:
|
|
1038
1104
|
- type: tax
|
|
1039
1105
|
name: State Taxes
|
|
@@ -1041,25 +1107,25 @@ service:
|
|
|
1041
1107
|
price:
|
|
1042
1108
|
unit: USD
|
|
1043
1109
|
value: '5892'
|
|
1044
|
-
string:
|
|
1110
|
+
string: \$ 4.36 USD
|
|
1045
1111
|
- type: tax
|
|
1046
1112
|
name: City Taxes
|
|
1047
1113
|
description: NEW YORK Taxes (4.88%)
|
|
1048
1114
|
price:
|
|
1049
1115
|
unit: USD
|
|
1050
1116
|
value: '5892'
|
|
1051
|
-
string:
|
|
1117
|
+
string: \$ 5.32 USD
|
|
1052
1118
|
- type: shipping
|
|
1053
1119
|
name: Flat
|
|
1054
1120
|
description: ''
|
|
1055
1121
|
price:
|
|
1056
1122
|
unit: USD
|
|
1057
1123
|
value: '5892'
|
|
1058
|
-
string:
|
|
1124
|
+
string: \$ 0.00 USD
|
|
1059
1125
|
total:
|
|
1060
1126
|
unit: USD
|
|
1061
1127
|
value: '5892'
|
|
1062
|
-
string:
|
|
1128
|
+
string: \$ 118.73 USD
|
|
1063
1129
|
downloadFiles:
|
|
1064
1130
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
1065
1131
|
name: New product guide
|
|
@@ -1068,7 +1134,9 @@ service:
|
|
|
1068
1134
|
update-unfulfill:
|
|
1069
1135
|
path: /sites/{site_id}/orders/{order_id}/unfulfill
|
|
1070
1136
|
method: POST
|
|
1071
|
-
auth:
|
|
1137
|
+
auth:
|
|
1138
|
+
- OAuth2:
|
|
1139
|
+
- ecommerce:write
|
|
1072
1140
|
docs: |
|
|
1073
1141
|
Updates an order's status to unfulfilled
|
|
1074
1142
|
|
|
@@ -1119,15 +1187,15 @@ service:
|
|
|
1119
1187
|
customerPaid:
|
|
1120
1188
|
unit: USD
|
|
1121
1189
|
value: '5892'
|
|
1122
|
-
string:
|
|
1190
|
+
string: \$ 118.73 USD
|
|
1123
1191
|
netAmount:
|
|
1124
1192
|
unit: USD
|
|
1125
1193
|
value: '5892'
|
|
1126
|
-
string:
|
|
1194
|
+
string: \$ 112.62 USD
|
|
1127
1195
|
applicationFee:
|
|
1128
1196
|
unit: USD
|
|
1129
1197
|
value: '5892'
|
|
1130
|
-
string:
|
|
1198
|
+
string: \$ 2.37 USD
|
|
1131
1199
|
allAddresses:
|
|
1132
1200
|
- type: billing
|
|
1133
1201
|
japanType: kana
|
|
@@ -1178,7 +1246,7 @@ service:
|
|
|
1178
1246
|
rowTotal:
|
|
1179
1247
|
unit: USD
|
|
1180
1248
|
value: '5892'
|
|
1181
|
-
string:
|
|
1249
|
+
string: \$ 55.61 USD
|
|
1182
1250
|
productId: 66072fb61b89448912e26791
|
|
1183
1251
|
productName: Luxurious Fresh Ball
|
|
1184
1252
|
productSlug: luxurious-fresh-ball
|
|
@@ -1192,7 +1260,7 @@ service:
|
|
|
1192
1260
|
variantPrice:
|
|
1193
1261
|
unit: USD
|
|
1194
1262
|
value: '5892'
|
|
1195
|
-
string:
|
|
1263
|
+
string: \$ 55.61 USD
|
|
1196
1264
|
weight: 11
|
|
1197
1265
|
width: 82
|
|
1198
1266
|
height: 70
|
|
@@ -1201,7 +1269,7 @@ service:
|
|
|
1201
1269
|
rowTotal:
|
|
1202
1270
|
unit: USD
|
|
1203
1271
|
value: '5892'
|
|
1204
|
-
string:
|
|
1272
|
+
string: \$ 53.44 USD
|
|
1205
1273
|
productId: 66072fb61b89448912e26799
|
|
1206
1274
|
productName: Recycled Steel Gloves
|
|
1207
1275
|
productSlug: recycled-steel-gloves
|
|
@@ -1215,17 +1283,19 @@ service:
|
|
|
1215
1283
|
variantPrice:
|
|
1216
1284
|
unit: USD
|
|
1217
1285
|
value: '5892'
|
|
1218
|
-
string:
|
|
1286
|
+
string: \$ 53.44 USD
|
|
1219
1287
|
weight: 38
|
|
1220
1288
|
width: 76
|
|
1221
1289
|
height: 85
|
|
1222
1290
|
length: 40
|
|
1223
1291
|
purchasedItemsCount: 2
|
|
1224
1292
|
stripeDetails:
|
|
1293
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
1225
1294
|
paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j
|
|
1226
1295
|
paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft
|
|
1227
1296
|
customerId: cus_PpRsNHwWdUoRKR
|
|
1228
1297
|
chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2
|
|
1298
|
+
disputeId: disputeId
|
|
1229
1299
|
refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk
|
|
1230
1300
|
refundReason: fraudulent
|
|
1231
1301
|
stripeCard:
|
|
@@ -1235,6 +1305,13 @@ service:
|
|
|
1235
1305
|
expires:
|
|
1236
1306
|
year: 2024
|
|
1237
1307
|
month: 4
|
|
1308
|
+
paypalDetails:
|
|
1309
|
+
orderId: 1a2b3c4d5e6f7g8h9i0j
|
|
1310
|
+
payerId: 9k8j7i6h5g4f3e2d1c0b
|
|
1311
|
+
captureId: qwe123rty456uio789p
|
|
1312
|
+
refundId: abcde12345fghij67890
|
|
1313
|
+
refundReason: Customer requested refund
|
|
1314
|
+
disputeId: zxcvbnm987poiuytrewq
|
|
1238
1315
|
customData:
|
|
1239
1316
|
- key: value
|
|
1240
1317
|
metadata:
|
|
@@ -1247,7 +1324,7 @@ service:
|
|
|
1247
1324
|
subtotal:
|
|
1248
1325
|
unit: USD
|
|
1249
1326
|
value: '5892'
|
|
1250
|
-
string:
|
|
1327
|
+
string: \$ 109.05 USD
|
|
1251
1328
|
extras:
|
|
1252
1329
|
- type: tax
|
|
1253
1330
|
name: State Taxes
|
|
@@ -1255,25 +1332,25 @@ service:
|
|
|
1255
1332
|
price:
|
|
1256
1333
|
unit: USD
|
|
1257
1334
|
value: '5892'
|
|
1258
|
-
string:
|
|
1335
|
+
string: \$ 4.36 USD
|
|
1259
1336
|
- type: tax
|
|
1260
1337
|
name: City Taxes
|
|
1261
1338
|
description: NEW YORK Taxes (4.88%)
|
|
1262
1339
|
price:
|
|
1263
1340
|
unit: USD
|
|
1264
1341
|
value: '5892'
|
|
1265
|
-
string:
|
|
1342
|
+
string: \$ 5.32 USD
|
|
1266
1343
|
- type: shipping
|
|
1267
1344
|
name: Flat
|
|
1268
1345
|
description: ''
|
|
1269
1346
|
price:
|
|
1270
1347
|
unit: USD
|
|
1271
1348
|
value: '5892'
|
|
1272
|
-
string:
|
|
1349
|
+
string: \$ 0.00 USD
|
|
1273
1350
|
total:
|
|
1274
1351
|
unit: USD
|
|
1275
1352
|
value: '5892'
|
|
1276
|
-
string:
|
|
1353
|
+
string: \$ 118.73 USD
|
|
1277
1354
|
downloadFiles:
|
|
1278
1355
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
1279
1356
|
name: New product guide
|
|
@@ -1282,7 +1359,9 @@ service:
|
|
|
1282
1359
|
refund:
|
|
1283
1360
|
path: /sites/{site_id}/orders/{order_id}/refund
|
|
1284
1361
|
method: POST
|
|
1285
|
-
auth:
|
|
1362
|
+
auth:
|
|
1363
|
+
- OAuth2:
|
|
1364
|
+
- ecommerce:write
|
|
1286
1365
|
docs: |
|
|
1287
1366
|
This API will reverse a Stripe charge and refund an order back to a
|
|
1288
1367
|
customer. It will also set the order's status to `refunded`.
|
|
@@ -1343,15 +1422,15 @@ service:
|
|
|
1343
1422
|
customerPaid:
|
|
1344
1423
|
unit: USD
|
|
1345
1424
|
value: '5892'
|
|
1346
|
-
string:
|
|
1425
|
+
string: \$ 118.73 USD
|
|
1347
1426
|
netAmount:
|
|
1348
1427
|
unit: USD
|
|
1349
1428
|
value: '5892'
|
|
1350
|
-
string:
|
|
1429
|
+
string: \$ 112.62 USD
|
|
1351
1430
|
applicationFee:
|
|
1352
1431
|
unit: USD
|
|
1353
1432
|
value: '5892'
|
|
1354
|
-
string:
|
|
1433
|
+
string: \$ 2.37 USD
|
|
1355
1434
|
allAddresses:
|
|
1356
1435
|
- type: billing
|
|
1357
1436
|
japanType: kana
|
|
@@ -1402,7 +1481,7 @@ service:
|
|
|
1402
1481
|
rowTotal:
|
|
1403
1482
|
unit: USD
|
|
1404
1483
|
value: '5892'
|
|
1405
|
-
string:
|
|
1484
|
+
string: \$ 55.61 USD
|
|
1406
1485
|
productId: 66072fb61b89448912e26791
|
|
1407
1486
|
productName: Luxurious Fresh Ball
|
|
1408
1487
|
productSlug: luxurious-fresh-ball
|
|
@@ -1416,7 +1495,7 @@ service:
|
|
|
1416
1495
|
variantPrice:
|
|
1417
1496
|
unit: USD
|
|
1418
1497
|
value: '5892'
|
|
1419
|
-
string:
|
|
1498
|
+
string: \$ 55.61 USD
|
|
1420
1499
|
weight: 11
|
|
1421
1500
|
width: 82
|
|
1422
1501
|
height: 70
|
|
@@ -1425,7 +1504,7 @@ service:
|
|
|
1425
1504
|
rowTotal:
|
|
1426
1505
|
unit: USD
|
|
1427
1506
|
value: '5892'
|
|
1428
|
-
string:
|
|
1507
|
+
string: \$ 53.44 USD
|
|
1429
1508
|
productId: 66072fb61b89448912e26799
|
|
1430
1509
|
productName: Recycled Steel Gloves
|
|
1431
1510
|
productSlug: recycled-steel-gloves
|
|
@@ -1439,17 +1518,19 @@ service:
|
|
|
1439
1518
|
variantPrice:
|
|
1440
1519
|
unit: USD
|
|
1441
1520
|
value: '5892'
|
|
1442
|
-
string:
|
|
1521
|
+
string: \$ 53.44 USD
|
|
1443
1522
|
weight: 38
|
|
1444
1523
|
width: 76
|
|
1445
1524
|
height: 85
|
|
1446
1525
|
length: 40
|
|
1447
1526
|
purchasedItemsCount: 2
|
|
1448
1527
|
stripeDetails:
|
|
1528
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
1449
1529
|
paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j
|
|
1450
1530
|
paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft
|
|
1451
1531
|
customerId: cus_PpRsNHwWdUoRKR
|
|
1452
1532
|
chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2
|
|
1533
|
+
disputeId: disputeId
|
|
1453
1534
|
refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk
|
|
1454
1535
|
refundReason: fraudulent
|
|
1455
1536
|
stripeCard:
|
|
@@ -1459,6 +1540,13 @@ service:
|
|
|
1459
1540
|
expires:
|
|
1460
1541
|
year: 2024
|
|
1461
1542
|
month: 4
|
|
1543
|
+
paypalDetails:
|
|
1544
|
+
orderId: 1a2b3c4d5e6f7g8h9i0j
|
|
1545
|
+
payerId: 9k8j7i6h5g4f3e2d1c0b
|
|
1546
|
+
captureId: qwe123rty456uio789p
|
|
1547
|
+
refundId: abcde12345fghij67890
|
|
1548
|
+
refundReason: Customer requested refund
|
|
1549
|
+
disputeId: zxcvbnm987poiuytrewq
|
|
1462
1550
|
customData:
|
|
1463
1551
|
- key: value
|
|
1464
1552
|
metadata:
|
|
@@ -1471,7 +1559,7 @@ service:
|
|
|
1471
1559
|
subtotal:
|
|
1472
1560
|
unit: USD
|
|
1473
1561
|
value: '5892'
|
|
1474
|
-
string:
|
|
1562
|
+
string: \$ 109.05 USD
|
|
1475
1563
|
extras:
|
|
1476
1564
|
- type: tax
|
|
1477
1565
|
name: State Taxes
|
|
@@ -1479,25 +1567,25 @@ service:
|
|
|
1479
1567
|
price:
|
|
1480
1568
|
unit: USD
|
|
1481
1569
|
value: '5892'
|
|
1482
|
-
string:
|
|
1570
|
+
string: \$ 4.36 USD
|
|
1483
1571
|
- type: tax
|
|
1484
1572
|
name: City Taxes
|
|
1485
1573
|
description: NEW YORK Taxes (4.88%)
|
|
1486
1574
|
price:
|
|
1487
1575
|
unit: USD
|
|
1488
1576
|
value: '5892'
|
|
1489
|
-
string:
|
|
1577
|
+
string: \$ 5.32 USD
|
|
1490
1578
|
- type: shipping
|
|
1491
1579
|
name: Flat
|
|
1492
1580
|
description: ''
|
|
1493
1581
|
price:
|
|
1494
1582
|
unit: USD
|
|
1495
1583
|
value: '5892'
|
|
1496
|
-
string:
|
|
1584
|
+
string: \$ 0.00 USD
|
|
1497
1585
|
total:
|
|
1498
1586
|
unit: USD
|
|
1499
1587
|
value: '5892'
|
|
1500
|
-
string:
|
|
1588
|
+
string: \$ 118.73 USD
|
|
1501
1589
|
downloadFiles:
|
|
1502
1590
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
1503
1591
|
name: New product guide
|
|
@@ -1528,18 +1616,22 @@ webhooks:
|
|
|
1528
1616
|
Please gift wrap with a personal note saying "Happy Birthday,
|
|
1529
1617
|
Ford! 🎉
|
|
1530
1618
|
acceptedOn: '2024-03-29T21:29:21Z'
|
|
1619
|
+
fulfilledOn: '2018-12-03T22:06:15Z'
|
|
1620
|
+
refundedOn: '2018-12-03T22:06:15Z'
|
|
1621
|
+
disputedOn: '2018-12-03T22:06:15Z'
|
|
1622
|
+
disputeUpdatedOn: '2018-12-03T22:06:15Z'
|
|
1531
1623
|
customerPaid:
|
|
1532
1624
|
unit: USD
|
|
1533
1625
|
value: '5892'
|
|
1534
|
-
string:
|
|
1626
|
+
string: \$ 118.73 USD
|
|
1535
1627
|
netAmount:
|
|
1536
1628
|
unit: USD
|
|
1537
1629
|
value: '5892'
|
|
1538
|
-
string:
|
|
1630
|
+
string: \$ 112.62 USD
|
|
1539
1631
|
applicationFee:
|
|
1540
1632
|
unit: USD
|
|
1541
1633
|
value: '5892'
|
|
1542
|
-
string:
|
|
1634
|
+
string: \$ 2.37 USD
|
|
1543
1635
|
allAddresses:
|
|
1544
1636
|
- type: billing
|
|
1545
1637
|
addressee: Arthur Dent
|
|
@@ -1587,7 +1679,7 @@ webhooks:
|
|
|
1587
1679
|
rowTotal:
|
|
1588
1680
|
unit: USD
|
|
1589
1681
|
value: '5892'
|
|
1590
|
-
string:
|
|
1682
|
+
string: \$ 55.61 USD
|
|
1591
1683
|
productId: 66072fb61b89448912e26791
|
|
1592
1684
|
productName: Luxurious Fresh Ball
|
|
1593
1685
|
productSlug: luxurious-fresh-ball
|
|
@@ -1601,7 +1693,7 @@ webhooks:
|
|
|
1601
1693
|
variantPrice:
|
|
1602
1694
|
unit: USD
|
|
1603
1695
|
value: '5892'
|
|
1604
|
-
string:
|
|
1696
|
+
string: \$ 55.61 USD
|
|
1605
1697
|
weight: 11
|
|
1606
1698
|
width: 82
|
|
1607
1699
|
height: 70
|
|
@@ -1610,7 +1702,7 @@ webhooks:
|
|
|
1610
1702
|
rowTotal:
|
|
1611
1703
|
unit: USD
|
|
1612
1704
|
value: '5892'
|
|
1613
|
-
string:
|
|
1705
|
+
string: \$ 53.44 USD
|
|
1614
1706
|
productId: 66072fb61b89448912e26799
|
|
1615
1707
|
productName: Recycled Steel Gloves
|
|
1616
1708
|
productSlug: recycled-steel-gloves
|
|
@@ -1624,13 +1716,14 @@ webhooks:
|
|
|
1624
1716
|
variantPrice:
|
|
1625
1717
|
unit: USD
|
|
1626
1718
|
value: '5892'
|
|
1627
|
-
string:
|
|
1719
|
+
string: \$ 53.44 USD
|
|
1628
1720
|
weight: 38
|
|
1629
1721
|
width: 76
|
|
1630
1722
|
height: 85
|
|
1631
1723
|
length: 40
|
|
1632
1724
|
purchasedItemsCount: 2
|
|
1633
1725
|
stripeDetails:
|
|
1726
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
1634
1727
|
paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j
|
|
1635
1728
|
paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft
|
|
1636
1729
|
customerId: cus_PpRsNHwWdUoRKR
|
|
@@ -1656,7 +1749,7 @@ webhooks:
|
|
|
1656
1749
|
subtotal:
|
|
1657
1750
|
unit: USD
|
|
1658
1751
|
value: '5892'
|
|
1659
|
-
string:
|
|
1752
|
+
string: \$ 109.05 USD
|
|
1660
1753
|
extras:
|
|
1661
1754
|
- type: tax
|
|
1662
1755
|
name: State Taxes
|
|
@@ -1664,25 +1757,25 @@ webhooks:
|
|
|
1664
1757
|
price:
|
|
1665
1758
|
unit: USD
|
|
1666
1759
|
value: '5892'
|
|
1667
|
-
string:
|
|
1760
|
+
string: \$ 4.36 USD
|
|
1668
1761
|
- type: tax
|
|
1669
1762
|
name: City Taxes
|
|
1670
1763
|
description: NEW YORK Taxes (4.88%)
|
|
1671
1764
|
price:
|
|
1672
1765
|
unit: USD
|
|
1673
1766
|
value: '5892'
|
|
1674
|
-
string:
|
|
1767
|
+
string: \$ 5.32 USD
|
|
1675
1768
|
- type: shipping
|
|
1676
1769
|
name: Flat
|
|
1677
1770
|
description: ''
|
|
1678
1771
|
price:
|
|
1679
1772
|
unit: USD
|
|
1680
1773
|
value: '5892'
|
|
1681
|
-
string:
|
|
1774
|
+
string: \$ 0.00 USD
|
|
1682
1775
|
total:
|
|
1683
1776
|
unit: USD
|
|
1684
1777
|
value: '5892'
|
|
1685
|
-
string:
|
|
1778
|
+
string: \$ 118.73 USD
|
|
1686
1779
|
downloadFiles:
|
|
1687
1780
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
1688
1781
|
name: New product guide
|
|
@@ -1717,15 +1810,15 @@ webhooks:
|
|
|
1717
1810
|
customerPaid:
|
|
1718
1811
|
unit: USD
|
|
1719
1812
|
value: '5892'
|
|
1720
|
-
string:
|
|
1813
|
+
string: \$ 118.73 USD
|
|
1721
1814
|
netAmount:
|
|
1722
1815
|
unit: USD
|
|
1723
1816
|
value: '5892'
|
|
1724
|
-
string:
|
|
1817
|
+
string: \$ 112.62 USD
|
|
1725
1818
|
applicationFee:
|
|
1726
1819
|
unit: USD
|
|
1727
1820
|
value: '5892'
|
|
1728
|
-
string:
|
|
1821
|
+
string: \$ 2.37 USD
|
|
1729
1822
|
allAddresses:
|
|
1730
1823
|
- type: billing
|
|
1731
1824
|
addressee: Arthur Dent
|
|
@@ -1773,7 +1866,7 @@ webhooks:
|
|
|
1773
1866
|
rowTotal:
|
|
1774
1867
|
unit: USD
|
|
1775
1868
|
value: '5892'
|
|
1776
|
-
string:
|
|
1869
|
+
string: \$ 55.61 USD
|
|
1777
1870
|
productId: 66072fb61b89448912e26791
|
|
1778
1871
|
productName: Luxurious Fresh Ball
|
|
1779
1872
|
productSlug: luxurious-fresh-ball
|
|
@@ -1787,7 +1880,7 @@ webhooks:
|
|
|
1787
1880
|
variantPrice:
|
|
1788
1881
|
unit: USD
|
|
1789
1882
|
value: '5892'
|
|
1790
|
-
string:
|
|
1883
|
+
string: \$ 55.61 USD
|
|
1791
1884
|
weight: 11
|
|
1792
1885
|
width: 82
|
|
1793
1886
|
height: 70
|
|
@@ -1796,7 +1889,7 @@ webhooks:
|
|
|
1796
1889
|
rowTotal:
|
|
1797
1890
|
unit: USD
|
|
1798
1891
|
value: '5892'
|
|
1799
|
-
string:
|
|
1892
|
+
string: \$ 53.44 USD
|
|
1800
1893
|
productId: 66072fb61b89448912e26799
|
|
1801
1894
|
productName: Recycled Steel Gloves
|
|
1802
1895
|
productSlug: recycled-steel-gloves
|
|
@@ -1810,13 +1903,14 @@ webhooks:
|
|
|
1810
1903
|
variantPrice:
|
|
1811
1904
|
unit: USD
|
|
1812
1905
|
value: '5892'
|
|
1813
|
-
string:
|
|
1906
|
+
string: \$ 53.44 USD
|
|
1814
1907
|
weight: 38
|
|
1815
1908
|
width: 76
|
|
1816
1909
|
height: 85
|
|
1817
1910
|
length: 40
|
|
1818
1911
|
purchasedItemsCount: 2
|
|
1819
1912
|
stripeDetails:
|
|
1913
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
1820
1914
|
paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j
|
|
1821
1915
|
paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft
|
|
1822
1916
|
customerId: cus_PpRsNHwWdUoRKR
|
|
@@ -1842,7 +1936,7 @@ webhooks:
|
|
|
1842
1936
|
subtotal:
|
|
1843
1937
|
unit: USD
|
|
1844
1938
|
value: '5892'
|
|
1845
|
-
string:
|
|
1939
|
+
string: \$ 109.05 USD
|
|
1846
1940
|
extras:
|
|
1847
1941
|
- type: tax
|
|
1848
1942
|
name: State Taxes
|
|
@@ -1850,25 +1944,25 @@ webhooks:
|
|
|
1850
1944
|
price:
|
|
1851
1945
|
unit: USD
|
|
1852
1946
|
value: '5892'
|
|
1853
|
-
string:
|
|
1947
|
+
string: \$ 4.36 USD
|
|
1854
1948
|
- type: tax
|
|
1855
1949
|
name: City Taxes
|
|
1856
1950
|
description: NEW YORK Taxes (4.88%)
|
|
1857
1951
|
price:
|
|
1858
1952
|
unit: USD
|
|
1859
1953
|
value: '5892'
|
|
1860
|
-
string:
|
|
1954
|
+
string: \$ 5.32 USD
|
|
1861
1955
|
- type: shipping
|
|
1862
1956
|
name: Flat
|
|
1863
1957
|
description: ''
|
|
1864
1958
|
price:
|
|
1865
1959
|
unit: USD
|
|
1866
1960
|
value: '5892'
|
|
1867
|
-
string:
|
|
1961
|
+
string: \$ 0.00 USD
|
|
1868
1962
|
total:
|
|
1869
1963
|
unit: USD
|
|
1870
1964
|
value: '5892'
|
|
1871
|
-
string:
|
|
1965
|
+
string: \$ 118.73 USD
|
|
1872
1966
|
downloadFiles:
|
|
1873
1967
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
1874
1968
|
name: New product guide
|