webflow-api 3.2.0 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.mock/definition/__package__.yml +112 -269
- package/.mock/definition/accessGroups.yml +7 -1
- package/.mock/definition/api.yml +0 -2
- package/.mock/definition/assets.yml +38 -8
- package/.mock/definition/collections/fields.yml +9 -3
- package/.mock/definition/collections/items.yml +458 -76
- package/.mock/definition/collections.yml +12 -4
- package/.mock/definition/components.yml +65 -25
- package/.mock/definition/ecommerce.yml +3 -1
- package/.mock/definition/forms.yml +29 -7
- package/.mock/definition/inventory.yml +25 -17
- package/.mock/definition/items.yml +28 -16
- package/.mock/definition/orders.yml +126 -110
- package/.mock/definition/pages/scripts.yml +27 -8
- package/.mock/definition/pages.yml +66 -45
- package/.mock/definition/products.yml +21 -12
- package/.mock/definition/scripts.yml +9 -3
- package/.mock/definition/sites/activityLogs.yml +6 -1
- package/.mock/definition/sites/comments.yml +39 -12
- package/.mock/definition/sites/plans.yml +3 -1
- package/.mock/definition/sites/redirects.yml +12 -4
- package/.mock/definition/sites/robotsTxt.yml +12 -4
- package/.mock/definition/sites/scripts.yml +35 -8
- package/.mock/definition/sites/wellKnown.yml +20 -4
- package/.mock/definition/sites.yml +23 -8
- package/.mock/definition/token.yml +3 -2
- package/.mock/definition/users.yml +19 -5
- package/.mock/definition/webhooks.yml +0 -4
- package/.mock/definition/workspaces/auditLogs.yml +9 -3
- package/.mock/fern.config.json +1 -1
- package/Client.d.ts +2 -2
- package/Client.js +3 -3
- package/api/resources/accessGroups/client/Client.d.ts +8 -4
- package/api/resources/accessGroups/client/Client.js +11 -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 +53 -17
- package/api/resources/collections/resources/items/client/Client.js +57 -17
- 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 +14 -6
- package/api/resources/forms/client/Client.js +17 -5
- package/api/resources/forms/client/requests/FormsListRequest.d.ts +4 -1
- package/api/resources/forms/client/requests/FormsListSubmissionsBySiteRequest.d.ts +3 -1
- package/api/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +4 -1
- package/api/resources/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 +3 -3
- package/api/resources/sites/client/Client.js +6 -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/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 +8 -4
- package/api/resources/users/client/Client.js +11 -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/api/types/{ImageNodeDom.d.ts → 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/api/types/{SelectNodeDom.d.ts → 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/{dist/api/types/SubmitButton.d.ts → api/types/SubmitButtonNodeWrite.d.ts} +1 -1
- package/{dist/api/types/TextInputNodeDom.d.ts → api/types/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 +8 -4
- package/dist/api/resources/accessGroups/client/Client.js +11 -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 +53 -17
- package/dist/api/resources/collections/resources/items/client/Client.js +57 -17
- 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 +14 -6
- package/dist/api/resources/forms/client/Client.js +17 -5
- package/dist/api/resources/forms/client/requests/FormsListRequest.d.ts +4 -1
- package/dist/api/resources/forms/client/requests/FormsListSubmissionsBySiteRequest.d.ts +3 -1
- package/dist/api/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +4 -1
- package/dist/api/resources/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 +3 -3
- package/dist/api/resources/sites/client/Client.js +6 -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/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 +8 -4
- package/dist/api/resources/users/client/Client.js +11 -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/dist/api/types/{ImageNodeDom.d.ts → 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/dist/api/types/{SelectNodeDom.d.ts → 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/{api/types/SubmitButton.d.ts → dist/api/types/SubmitButtonNodeWrite.d.ts} +1 -1
- package/{api/types/TextInputNodeDom.d.ts → dist/api/types/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/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/{serialization/types/SelectNodeDom.d.ts → dist/serialization/types/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/environments.d.ts +0 -4
- package/environments.js +0 -2
- package/jest.config.mjs +0 -4
- package/package.json +3 -3
- package/reference.md +158 -54
- 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/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/{dist/serialization/types/SelectNodeDom.d.ts → serialization/types/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/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/SubmitButtonNodeDom.js +0 -5
- package/dist/api/types/TextInput.js +0 -5
- package/dist/api/types/TextInputNodeDom.js +0 -5
- package/dist/api/types/TextNodeDom.d.ts +0 -15
- package/dist/api/types/TextNodeDom.js +0 -5
- 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/{types/CollectionItemChangedPayload.js → resources/assets/client/requests/AssetsListRequest.js} +0 -0
- /package/api/types/{CollectionItemCreatedPayload.js → CollectionItemPublished.js} +0 -0
- /package/api/types/{ComponentInstance.js → ComponentInstanceNodePropertyOverridesWrite.js} +0 -0
- /package/api/types/{ComponentNodeDom.js → ComponentNode.js} +0 -0
- /package/api/types/{ImageNodeDom.js → ImageNode.js} +0 -0
- /package/api/types/{LocalizedItem.js → Payload.js} +0 -0
- /package/api/types/{MultiLocaleChangedPayload.js → PayloadFieldData.js} +0 -0
- /package/api/types/{MultiLocaleChangedPayloadFieldData.js → SearchButtonNode.js} +0 -0
- /package/api/types/{MultiLocaleCreatedPayload.js → SearchButtonNodeWrite.js} +0 -0
- /package/api/types/{SearchButton.js → SelectNode.js} +0 -0
- /package/api/types/{SearchButtonNodeDom.js → SubmitButtonNode.js} +0 -0
- /package/api/types/{SelectNodeDom.js → SubmitButtonNodeWrite.js} +0 -0
- /package/api/types/{SingleLocaleChangedPayload.js → TextInputNode.js} +0 -0
- /package/api/types/{SingleLocaleChangedPayloadFieldData.js → TextInputNodeWrite.js} +0 -0
- /package/api/types/{SubmitButton.js → TextNodeWrite.js} +0 -0
- /package/api/types/{SubmitButtonNodeDom.js → WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.js} +0 -0
- /package/api/types/{TextInput.js → WorkspaceAuditLogItemPayloadWorkspaceInvitationTargetUsersItem.js} +0 -0
- /package/{api/types/TextInputNodeDom.js → dist/api/resources/assets/client/requests/AssetsListRequest.js} +0 -0
- /package/{api/types/TextNodeDom.js → dist/api/types/CollectionItemPublished.js} +0 -0
- /package/dist/api/types/{CollectionItemChangedPayload.js → ComponentInstanceNodePropertyOverridesWrite.js} +0 -0
- /package/dist/api/types/{CollectionItemCreatedPayload.js → ComponentNode.js} +0 -0
- /package/dist/api/types/{ComponentInstance.js → ImageNode.js} +0 -0
- /package/dist/api/types/{ComponentNodeDom.js → Payload.js} +0 -0
- /package/dist/api/types/{ImageNodeDom.js → PayloadFieldData.js} +0 -0
- /package/dist/api/types/{LocalizedItem.js → SearchButtonNode.js} +0 -0
- /package/dist/api/types/{MultiLocaleChangedPayload.js → SearchButtonNodeWrite.js} +0 -0
- /package/dist/api/types/{MultiLocaleChangedPayloadFieldData.js → SelectNode.js} +0 -0
- /package/dist/api/types/{MultiLocaleCreatedPayload.js → SubmitButtonNode.js} +0 -0
- /package/dist/api/types/{SearchButton.js → SubmitButtonNodeWrite.js} +0 -0
- /package/dist/api/types/{SearchButtonNodeDom.js → TextInputNode.js} +0 -0
- /package/dist/api/types/{SelectNodeDom.js → TextInputNodeWrite.js} +0 -0
- /package/dist/api/types/{SingleLocaleChangedPayload.js → TextNodeWrite.js} +0 -0
- /package/dist/api/types/{SingleLocaleChangedPayloadFieldData.js → WorkspaceAuditLogItemPayloadSiteMembershipGranularAccess.js} +0 -0
- /package/dist/api/types/{SubmitButton.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
|
|
|
@@ -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.1
|
|
77
|
+
limit: 1.1
|
|
72
78
|
response:
|
|
73
79
|
body:
|
|
74
80
|
orders:
|
|
@@ -85,15 +91,15 @@ service:
|
|
|
85
91
|
customerPaid:
|
|
86
92
|
unit: USD
|
|
87
93
|
value: '5892'
|
|
88
|
-
string:
|
|
94
|
+
string: \$ 211.55 USD
|
|
89
95
|
netAmount:
|
|
90
96
|
unit: USD
|
|
91
97
|
value: '5892'
|
|
92
|
-
string:
|
|
98
|
+
string: \$ 200.89 USD
|
|
93
99
|
applicationFee:
|
|
94
100
|
unit: USD
|
|
95
101
|
value: '5892'
|
|
96
|
-
string:
|
|
102
|
+
string: \$ 4.23 USD
|
|
97
103
|
allAddresses:
|
|
98
104
|
- type: billing
|
|
99
105
|
addressee: Arthur Dent
|
|
@@ -141,7 +147,7 @@ service:
|
|
|
141
147
|
rowTotal:
|
|
142
148
|
unit: USD
|
|
143
149
|
value: '5892'
|
|
144
|
-
string:
|
|
150
|
+
string: \$ 111.22 USD
|
|
145
151
|
productId: 66072fb61b89448912e26791
|
|
146
152
|
productName: Luxurious Fresh Ball
|
|
147
153
|
productSlug: luxurious-fresh-ball
|
|
@@ -155,7 +161,7 @@ service:
|
|
|
155
161
|
variantPrice:
|
|
156
162
|
unit: USD
|
|
157
163
|
value: '5892'
|
|
158
|
-
string:
|
|
164
|
+
string: \$ 55.61 USD
|
|
159
165
|
weight: 11
|
|
160
166
|
width: 82
|
|
161
167
|
height: 70
|
|
@@ -164,7 +170,7 @@ service:
|
|
|
164
170
|
rowTotal:
|
|
165
171
|
unit: USD
|
|
166
172
|
value: '5892'
|
|
167
|
-
string:
|
|
173
|
+
string: \$ 83.09 USD
|
|
168
174
|
productId: 66072fb61b89448912e2678b
|
|
169
175
|
productName: Incredible Bronze Towels
|
|
170
176
|
productSlug: incredible-bronze-towels
|
|
@@ -180,7 +186,7 @@ service:
|
|
|
180
186
|
variantPrice:
|
|
181
187
|
unit: USD
|
|
182
188
|
value: '5892'
|
|
183
|
-
string:
|
|
189
|
+
string: \$ 83.09 USD
|
|
184
190
|
width: 19
|
|
185
191
|
height: 72
|
|
186
192
|
length: 18
|
|
@@ -213,7 +219,7 @@ service:
|
|
|
213
219
|
price:
|
|
214
220
|
unit: USD
|
|
215
221
|
value: '5892'
|
|
216
|
-
string:
|
|
222
|
+
string: \$3.44
|
|
217
223
|
downloadFiles:
|
|
218
224
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
219
225
|
name: The modern web design process - Webflow Ebook.pdf
|
|
@@ -228,15 +234,15 @@ service:
|
|
|
228
234
|
customerPaid:
|
|
229
235
|
unit: USD
|
|
230
236
|
value: '5892'
|
|
231
|
-
string:
|
|
237
|
+
string: \$ 118.73 USD
|
|
232
238
|
netAmount:
|
|
233
239
|
unit: USD
|
|
234
240
|
value: '5892'
|
|
235
|
-
string:
|
|
241
|
+
string: \$ 112.62 USD
|
|
236
242
|
applicationFee:
|
|
237
243
|
unit: USD
|
|
238
244
|
value: '5892'
|
|
239
|
-
string:
|
|
245
|
+
string: \$ 2.37 USD
|
|
240
246
|
allAddresses:
|
|
241
247
|
- type: billing
|
|
242
248
|
addressee: Arthur Dent
|
|
@@ -283,7 +289,7 @@ service:
|
|
|
283
289
|
rowTotal:
|
|
284
290
|
unit: USD
|
|
285
291
|
value: '5892'
|
|
286
|
-
string:
|
|
292
|
+
string: \$ 55.61 USD
|
|
287
293
|
productId: 66072fb61b89448912e26791
|
|
288
294
|
productName: Luxurious Fresh Ball
|
|
289
295
|
productSlug: luxurious-fresh-ball
|
|
@@ -297,7 +303,7 @@ service:
|
|
|
297
303
|
variantPrice:
|
|
298
304
|
unit: USD
|
|
299
305
|
value: '5892'
|
|
300
|
-
string:
|
|
306
|
+
string: \$ 55.61 USD
|
|
301
307
|
weight: 11
|
|
302
308
|
width: 82
|
|
303
309
|
height: 70
|
|
@@ -306,7 +312,7 @@ service:
|
|
|
306
312
|
rowTotal:
|
|
307
313
|
unit: USD
|
|
308
314
|
value: '5892'
|
|
309
|
-
string:
|
|
315
|
+
string: \$ 53.44 USD
|
|
310
316
|
productId: 66072fb61b89448912e26799
|
|
311
317
|
productName: Recycled Steel Gloves
|
|
312
318
|
productSlug: recycled-steel-gloves
|
|
@@ -324,7 +330,7 @@ service:
|
|
|
324
330
|
variantPrice:
|
|
325
331
|
unit: USD
|
|
326
332
|
value: '5892'
|
|
327
|
-
string:
|
|
333
|
+
string: \$ 53.44 USD
|
|
328
334
|
weight: 38
|
|
329
335
|
width: 76
|
|
330
336
|
height: 85
|
|
@@ -356,7 +362,7 @@ service:
|
|
|
356
362
|
subtotal:
|
|
357
363
|
unit: USD
|
|
358
364
|
value: '5892'
|
|
359
|
-
string:
|
|
365
|
+
string: \$ 109.05 USD
|
|
360
366
|
extras:
|
|
361
367
|
- type: tax
|
|
362
368
|
name: State Taxes
|
|
@@ -364,25 +370,25 @@ service:
|
|
|
364
370
|
price:
|
|
365
371
|
unit: USD
|
|
366
372
|
value: '5892'
|
|
367
|
-
string:
|
|
373
|
+
string: \$ 4.36 USD
|
|
368
374
|
- type: tax
|
|
369
375
|
name: City Taxes
|
|
370
376
|
description: NEW YORK Taxes (4.88%)
|
|
371
377
|
price:
|
|
372
378
|
unit: USD
|
|
373
379
|
value: '5892'
|
|
374
|
-
string:
|
|
380
|
+
string: \$ 5.32 USD
|
|
375
381
|
- type: shipping
|
|
376
382
|
name: Flat
|
|
377
383
|
description: ''
|
|
378
384
|
price:
|
|
379
385
|
unit: USD
|
|
380
386
|
value: '5892'
|
|
381
|
-
string:
|
|
387
|
+
string: \$ 0.00 USD
|
|
382
388
|
total:
|
|
383
389
|
unit: USD
|
|
384
390
|
value: '5892'
|
|
385
|
-
string:
|
|
391
|
+
string: \$ 118.73 USD
|
|
386
392
|
downloadFiles:
|
|
387
393
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
388
394
|
name: New product guide
|
|
@@ -395,7 +401,9 @@ service:
|
|
|
395
401
|
get:
|
|
396
402
|
path: /sites/{site_id}/orders/{order_id}
|
|
397
403
|
method: GET
|
|
398
|
-
auth:
|
|
404
|
+
auth:
|
|
405
|
+
- OAuth2:
|
|
406
|
+
- ecommerce:read
|
|
399
407
|
docs: |
|
|
400
408
|
Retrieve a single product by its ID. All of its SKUs will also be
|
|
401
409
|
retrieved.
|
|
@@ -447,15 +455,15 @@ service:
|
|
|
447
455
|
customerPaid:
|
|
448
456
|
unit: USD
|
|
449
457
|
value: '5892'
|
|
450
|
-
string:
|
|
458
|
+
string: \$ 118.73 USD
|
|
451
459
|
netAmount:
|
|
452
460
|
unit: USD
|
|
453
461
|
value: '5892'
|
|
454
|
-
string:
|
|
462
|
+
string: \$ 112.62 USD
|
|
455
463
|
applicationFee:
|
|
456
464
|
unit: USD
|
|
457
465
|
value: '5892'
|
|
458
|
-
string:
|
|
466
|
+
string: \$ 2.37 USD
|
|
459
467
|
allAddresses:
|
|
460
468
|
- type: billing
|
|
461
469
|
japanType: kana
|
|
@@ -506,7 +514,7 @@ service:
|
|
|
506
514
|
rowTotal:
|
|
507
515
|
unit: USD
|
|
508
516
|
value: '5892'
|
|
509
|
-
string:
|
|
517
|
+
string: \$ 55.61 USD
|
|
510
518
|
productId: 66072fb61b89448912e26791
|
|
511
519
|
productName: Luxurious Fresh Ball
|
|
512
520
|
productSlug: luxurious-fresh-ball
|
|
@@ -520,7 +528,7 @@ service:
|
|
|
520
528
|
variantPrice:
|
|
521
529
|
unit: USD
|
|
522
530
|
value: '5892'
|
|
523
|
-
string:
|
|
531
|
+
string: \$ 55.61 USD
|
|
524
532
|
weight: 11
|
|
525
533
|
width: 82
|
|
526
534
|
height: 70
|
|
@@ -529,7 +537,7 @@ service:
|
|
|
529
537
|
rowTotal:
|
|
530
538
|
unit: USD
|
|
531
539
|
value: '5892'
|
|
532
|
-
string:
|
|
540
|
+
string: \$ 53.44 USD
|
|
533
541
|
productId: 66072fb61b89448912e26799
|
|
534
542
|
productName: Recycled Steel Gloves
|
|
535
543
|
productSlug: recycled-steel-gloves
|
|
@@ -543,7 +551,7 @@ service:
|
|
|
543
551
|
variantPrice:
|
|
544
552
|
unit: USD
|
|
545
553
|
value: '5892'
|
|
546
|
-
string:
|
|
554
|
+
string: \$ 53.44 USD
|
|
547
555
|
weight: 38
|
|
548
556
|
width: 76
|
|
549
557
|
height: 85
|
|
@@ -575,7 +583,7 @@ service:
|
|
|
575
583
|
subtotal:
|
|
576
584
|
unit: USD
|
|
577
585
|
value: '5892'
|
|
578
|
-
string:
|
|
586
|
+
string: \$ 109.05 USD
|
|
579
587
|
extras:
|
|
580
588
|
- type: tax
|
|
581
589
|
name: State Taxes
|
|
@@ -583,25 +591,25 @@ service:
|
|
|
583
591
|
price:
|
|
584
592
|
unit: USD
|
|
585
593
|
value: '5892'
|
|
586
|
-
string:
|
|
594
|
+
string: \$ 4.36 USD
|
|
587
595
|
- type: tax
|
|
588
596
|
name: City Taxes
|
|
589
597
|
description: NEW YORK Taxes (4.88%)
|
|
590
598
|
price:
|
|
591
599
|
unit: USD
|
|
592
600
|
value: '5892'
|
|
593
|
-
string:
|
|
601
|
+
string: \$ 5.32 USD
|
|
594
602
|
- type: shipping
|
|
595
603
|
name: Flat
|
|
596
604
|
description: ''
|
|
597
605
|
price:
|
|
598
606
|
unit: USD
|
|
599
607
|
value: '5892'
|
|
600
|
-
string:
|
|
608
|
+
string: \$ 0.00 USD
|
|
601
609
|
total:
|
|
602
610
|
unit: USD
|
|
603
611
|
value: '5892'
|
|
604
|
-
string:
|
|
612
|
+
string: \$ 118.73 USD
|
|
605
613
|
downloadFiles:
|
|
606
614
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
607
615
|
name: New product guide
|
|
@@ -610,7 +618,9 @@ service:
|
|
|
610
618
|
update:
|
|
611
619
|
path: /sites/{site_id}/orders/{order_id}
|
|
612
620
|
method: PATCH
|
|
613
|
-
auth:
|
|
621
|
+
auth:
|
|
622
|
+
- OAuth2:
|
|
623
|
+
- ecommerce:write
|
|
614
624
|
docs: |
|
|
615
625
|
This API lets you update the fields, `comment`, `shippingProvider`,
|
|
616
626
|
and/or `shippingTracking` for a given order. All three fields can be
|
|
@@ -681,15 +691,15 @@ service:
|
|
|
681
691
|
customerPaid:
|
|
682
692
|
unit: USD
|
|
683
693
|
value: '5892'
|
|
684
|
-
string:
|
|
694
|
+
string: \$ 118.73 USD
|
|
685
695
|
netAmount:
|
|
686
696
|
unit: USD
|
|
687
697
|
value: '5892'
|
|
688
|
-
string:
|
|
698
|
+
string: \$ 112.62 USD
|
|
689
699
|
applicationFee:
|
|
690
700
|
unit: USD
|
|
691
701
|
value: '5892'
|
|
692
|
-
string:
|
|
702
|
+
string: \$ 2.37 USD
|
|
693
703
|
allAddresses:
|
|
694
704
|
- type: billing
|
|
695
705
|
japanType: kana
|
|
@@ -740,7 +750,7 @@ service:
|
|
|
740
750
|
rowTotal:
|
|
741
751
|
unit: USD
|
|
742
752
|
value: '5892'
|
|
743
|
-
string:
|
|
753
|
+
string: \$ 55.61 USD
|
|
744
754
|
productId: 66072fb61b89448912e26791
|
|
745
755
|
productName: Luxurious Fresh Ball
|
|
746
756
|
productSlug: luxurious-fresh-ball
|
|
@@ -754,7 +764,7 @@ service:
|
|
|
754
764
|
variantPrice:
|
|
755
765
|
unit: USD
|
|
756
766
|
value: '5892'
|
|
757
|
-
string:
|
|
767
|
+
string: \$ 55.61 USD
|
|
758
768
|
weight: 11
|
|
759
769
|
width: 82
|
|
760
770
|
height: 70
|
|
@@ -763,7 +773,7 @@ service:
|
|
|
763
773
|
rowTotal:
|
|
764
774
|
unit: USD
|
|
765
775
|
value: '5892'
|
|
766
|
-
string:
|
|
776
|
+
string: \$ 53.44 USD
|
|
767
777
|
productId: 66072fb61b89448912e26799
|
|
768
778
|
productName: Recycled Steel Gloves
|
|
769
779
|
productSlug: recycled-steel-gloves
|
|
@@ -777,7 +787,7 @@ service:
|
|
|
777
787
|
variantPrice:
|
|
778
788
|
unit: USD
|
|
779
789
|
value: '5892'
|
|
780
|
-
string:
|
|
790
|
+
string: \$ 53.44 USD
|
|
781
791
|
weight: 38
|
|
782
792
|
width: 76
|
|
783
793
|
height: 85
|
|
@@ -809,7 +819,7 @@ service:
|
|
|
809
819
|
subtotal:
|
|
810
820
|
unit: USD
|
|
811
821
|
value: '5892'
|
|
812
|
-
string:
|
|
822
|
+
string: \$ 109.05 USD
|
|
813
823
|
extras:
|
|
814
824
|
- type: tax
|
|
815
825
|
name: State Taxes
|
|
@@ -817,25 +827,25 @@ service:
|
|
|
817
827
|
price:
|
|
818
828
|
unit: USD
|
|
819
829
|
value: '5892'
|
|
820
|
-
string:
|
|
830
|
+
string: \$ 4.36 USD
|
|
821
831
|
- type: tax
|
|
822
832
|
name: City Taxes
|
|
823
833
|
description: NEW YORK Taxes (4.88%)
|
|
824
834
|
price:
|
|
825
835
|
unit: USD
|
|
826
836
|
value: '5892'
|
|
827
|
-
string:
|
|
837
|
+
string: \$ 5.32 USD
|
|
828
838
|
- type: shipping
|
|
829
839
|
name: Flat
|
|
830
840
|
description: ''
|
|
831
841
|
price:
|
|
832
842
|
unit: USD
|
|
833
843
|
value: '5892'
|
|
834
|
-
string:
|
|
844
|
+
string: \$ 0.00 USD
|
|
835
845
|
total:
|
|
836
846
|
unit: USD
|
|
837
847
|
value: '5892'
|
|
838
|
-
string:
|
|
848
|
+
string: \$ 118.73 USD
|
|
839
849
|
downloadFiles:
|
|
840
850
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
841
851
|
name: New product guide
|
|
@@ -844,7 +854,9 @@ service:
|
|
|
844
854
|
update-fulfill:
|
|
845
855
|
path: /sites/{site_id}/orders/{order_id}/fulfill
|
|
846
856
|
method: POST
|
|
847
|
-
auth:
|
|
857
|
+
auth:
|
|
858
|
+
- OAuth2:
|
|
859
|
+
- ecommerce:write
|
|
848
860
|
docs: |
|
|
849
861
|
Updates an order's status to fulfilled
|
|
850
862
|
|
|
@@ -905,15 +917,15 @@ service:
|
|
|
905
917
|
customerPaid:
|
|
906
918
|
unit: USD
|
|
907
919
|
value: '5892'
|
|
908
|
-
string:
|
|
920
|
+
string: \$ 118.73 USD
|
|
909
921
|
netAmount:
|
|
910
922
|
unit: USD
|
|
911
923
|
value: '5892'
|
|
912
|
-
string:
|
|
924
|
+
string: \$ 112.62 USD
|
|
913
925
|
applicationFee:
|
|
914
926
|
unit: USD
|
|
915
927
|
value: '5892'
|
|
916
|
-
string:
|
|
928
|
+
string: \$ 2.37 USD
|
|
917
929
|
allAddresses:
|
|
918
930
|
- type: billing
|
|
919
931
|
japanType: kana
|
|
@@ -964,7 +976,7 @@ service:
|
|
|
964
976
|
rowTotal:
|
|
965
977
|
unit: USD
|
|
966
978
|
value: '5892'
|
|
967
|
-
string:
|
|
979
|
+
string: \$ 55.61 USD
|
|
968
980
|
productId: 66072fb61b89448912e26791
|
|
969
981
|
productName: Luxurious Fresh Ball
|
|
970
982
|
productSlug: luxurious-fresh-ball
|
|
@@ -978,7 +990,7 @@ service:
|
|
|
978
990
|
variantPrice:
|
|
979
991
|
unit: USD
|
|
980
992
|
value: '5892'
|
|
981
|
-
string:
|
|
993
|
+
string: \$ 55.61 USD
|
|
982
994
|
weight: 11
|
|
983
995
|
width: 82
|
|
984
996
|
height: 70
|
|
@@ -987,7 +999,7 @@ service:
|
|
|
987
999
|
rowTotal:
|
|
988
1000
|
unit: USD
|
|
989
1001
|
value: '5892'
|
|
990
|
-
string:
|
|
1002
|
+
string: \$ 53.44 USD
|
|
991
1003
|
productId: 66072fb61b89448912e26799
|
|
992
1004
|
productName: Recycled Steel Gloves
|
|
993
1005
|
productSlug: recycled-steel-gloves
|
|
@@ -1001,7 +1013,7 @@ service:
|
|
|
1001
1013
|
variantPrice:
|
|
1002
1014
|
unit: USD
|
|
1003
1015
|
value: '5892'
|
|
1004
|
-
string:
|
|
1016
|
+
string: \$ 53.44 USD
|
|
1005
1017
|
weight: 38
|
|
1006
1018
|
width: 76
|
|
1007
1019
|
height: 85
|
|
@@ -1033,7 +1045,7 @@ service:
|
|
|
1033
1045
|
subtotal:
|
|
1034
1046
|
unit: USD
|
|
1035
1047
|
value: '5892'
|
|
1036
|
-
string:
|
|
1048
|
+
string: \$ 109.05 USD
|
|
1037
1049
|
extras:
|
|
1038
1050
|
- type: tax
|
|
1039
1051
|
name: State Taxes
|
|
@@ -1041,25 +1053,25 @@ service:
|
|
|
1041
1053
|
price:
|
|
1042
1054
|
unit: USD
|
|
1043
1055
|
value: '5892'
|
|
1044
|
-
string:
|
|
1056
|
+
string: \$ 4.36 USD
|
|
1045
1057
|
- type: tax
|
|
1046
1058
|
name: City Taxes
|
|
1047
1059
|
description: NEW YORK Taxes (4.88%)
|
|
1048
1060
|
price:
|
|
1049
1061
|
unit: USD
|
|
1050
1062
|
value: '5892'
|
|
1051
|
-
string:
|
|
1063
|
+
string: \$ 5.32 USD
|
|
1052
1064
|
- type: shipping
|
|
1053
1065
|
name: Flat
|
|
1054
1066
|
description: ''
|
|
1055
1067
|
price:
|
|
1056
1068
|
unit: USD
|
|
1057
1069
|
value: '5892'
|
|
1058
|
-
string:
|
|
1070
|
+
string: \$ 0.00 USD
|
|
1059
1071
|
total:
|
|
1060
1072
|
unit: USD
|
|
1061
1073
|
value: '5892'
|
|
1062
|
-
string:
|
|
1074
|
+
string: \$ 118.73 USD
|
|
1063
1075
|
downloadFiles:
|
|
1064
1076
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
1065
1077
|
name: New product guide
|
|
@@ -1068,7 +1080,9 @@ service:
|
|
|
1068
1080
|
update-unfulfill:
|
|
1069
1081
|
path: /sites/{site_id}/orders/{order_id}/unfulfill
|
|
1070
1082
|
method: POST
|
|
1071
|
-
auth:
|
|
1083
|
+
auth:
|
|
1084
|
+
- OAuth2:
|
|
1085
|
+
- ecommerce:write
|
|
1072
1086
|
docs: |
|
|
1073
1087
|
Updates an order's status to unfulfilled
|
|
1074
1088
|
|
|
@@ -1119,15 +1133,15 @@ service:
|
|
|
1119
1133
|
customerPaid:
|
|
1120
1134
|
unit: USD
|
|
1121
1135
|
value: '5892'
|
|
1122
|
-
string:
|
|
1136
|
+
string: \$ 118.73 USD
|
|
1123
1137
|
netAmount:
|
|
1124
1138
|
unit: USD
|
|
1125
1139
|
value: '5892'
|
|
1126
|
-
string:
|
|
1140
|
+
string: \$ 112.62 USD
|
|
1127
1141
|
applicationFee:
|
|
1128
1142
|
unit: USD
|
|
1129
1143
|
value: '5892'
|
|
1130
|
-
string:
|
|
1144
|
+
string: \$ 2.37 USD
|
|
1131
1145
|
allAddresses:
|
|
1132
1146
|
- type: billing
|
|
1133
1147
|
japanType: kana
|
|
@@ -1178,7 +1192,7 @@ service:
|
|
|
1178
1192
|
rowTotal:
|
|
1179
1193
|
unit: USD
|
|
1180
1194
|
value: '5892'
|
|
1181
|
-
string:
|
|
1195
|
+
string: \$ 55.61 USD
|
|
1182
1196
|
productId: 66072fb61b89448912e26791
|
|
1183
1197
|
productName: Luxurious Fresh Ball
|
|
1184
1198
|
productSlug: luxurious-fresh-ball
|
|
@@ -1192,7 +1206,7 @@ service:
|
|
|
1192
1206
|
variantPrice:
|
|
1193
1207
|
unit: USD
|
|
1194
1208
|
value: '5892'
|
|
1195
|
-
string:
|
|
1209
|
+
string: \$ 55.61 USD
|
|
1196
1210
|
weight: 11
|
|
1197
1211
|
width: 82
|
|
1198
1212
|
height: 70
|
|
@@ -1201,7 +1215,7 @@ service:
|
|
|
1201
1215
|
rowTotal:
|
|
1202
1216
|
unit: USD
|
|
1203
1217
|
value: '5892'
|
|
1204
|
-
string:
|
|
1218
|
+
string: \$ 53.44 USD
|
|
1205
1219
|
productId: 66072fb61b89448912e26799
|
|
1206
1220
|
productName: Recycled Steel Gloves
|
|
1207
1221
|
productSlug: recycled-steel-gloves
|
|
@@ -1215,7 +1229,7 @@ service:
|
|
|
1215
1229
|
variantPrice:
|
|
1216
1230
|
unit: USD
|
|
1217
1231
|
value: '5892'
|
|
1218
|
-
string:
|
|
1232
|
+
string: \$ 53.44 USD
|
|
1219
1233
|
weight: 38
|
|
1220
1234
|
width: 76
|
|
1221
1235
|
height: 85
|
|
@@ -1247,7 +1261,7 @@ service:
|
|
|
1247
1261
|
subtotal:
|
|
1248
1262
|
unit: USD
|
|
1249
1263
|
value: '5892'
|
|
1250
|
-
string:
|
|
1264
|
+
string: \$ 109.05 USD
|
|
1251
1265
|
extras:
|
|
1252
1266
|
- type: tax
|
|
1253
1267
|
name: State Taxes
|
|
@@ -1255,25 +1269,25 @@ service:
|
|
|
1255
1269
|
price:
|
|
1256
1270
|
unit: USD
|
|
1257
1271
|
value: '5892'
|
|
1258
|
-
string:
|
|
1272
|
+
string: \$ 4.36 USD
|
|
1259
1273
|
- type: tax
|
|
1260
1274
|
name: City Taxes
|
|
1261
1275
|
description: NEW YORK Taxes (4.88%)
|
|
1262
1276
|
price:
|
|
1263
1277
|
unit: USD
|
|
1264
1278
|
value: '5892'
|
|
1265
|
-
string:
|
|
1279
|
+
string: \$ 5.32 USD
|
|
1266
1280
|
- type: shipping
|
|
1267
1281
|
name: Flat
|
|
1268
1282
|
description: ''
|
|
1269
1283
|
price:
|
|
1270
1284
|
unit: USD
|
|
1271
1285
|
value: '5892'
|
|
1272
|
-
string:
|
|
1286
|
+
string: \$ 0.00 USD
|
|
1273
1287
|
total:
|
|
1274
1288
|
unit: USD
|
|
1275
1289
|
value: '5892'
|
|
1276
|
-
string:
|
|
1290
|
+
string: \$ 118.73 USD
|
|
1277
1291
|
downloadFiles:
|
|
1278
1292
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
1279
1293
|
name: New product guide
|
|
@@ -1282,7 +1296,9 @@ service:
|
|
|
1282
1296
|
refund:
|
|
1283
1297
|
path: /sites/{site_id}/orders/{order_id}/refund
|
|
1284
1298
|
method: POST
|
|
1285
|
-
auth:
|
|
1299
|
+
auth:
|
|
1300
|
+
- OAuth2:
|
|
1301
|
+
- ecommerce:write
|
|
1286
1302
|
docs: |
|
|
1287
1303
|
This API will reverse a Stripe charge and refund an order back to a
|
|
1288
1304
|
customer. It will also set the order's status to `refunded`.
|
|
@@ -1343,15 +1359,15 @@ service:
|
|
|
1343
1359
|
customerPaid:
|
|
1344
1360
|
unit: USD
|
|
1345
1361
|
value: '5892'
|
|
1346
|
-
string:
|
|
1362
|
+
string: \$ 118.73 USD
|
|
1347
1363
|
netAmount:
|
|
1348
1364
|
unit: USD
|
|
1349
1365
|
value: '5892'
|
|
1350
|
-
string:
|
|
1366
|
+
string: \$ 112.62 USD
|
|
1351
1367
|
applicationFee:
|
|
1352
1368
|
unit: USD
|
|
1353
1369
|
value: '5892'
|
|
1354
|
-
string:
|
|
1370
|
+
string: \$ 2.37 USD
|
|
1355
1371
|
allAddresses:
|
|
1356
1372
|
- type: billing
|
|
1357
1373
|
japanType: kana
|
|
@@ -1402,7 +1418,7 @@ service:
|
|
|
1402
1418
|
rowTotal:
|
|
1403
1419
|
unit: USD
|
|
1404
1420
|
value: '5892'
|
|
1405
|
-
string:
|
|
1421
|
+
string: \$ 55.61 USD
|
|
1406
1422
|
productId: 66072fb61b89448912e26791
|
|
1407
1423
|
productName: Luxurious Fresh Ball
|
|
1408
1424
|
productSlug: luxurious-fresh-ball
|
|
@@ -1416,7 +1432,7 @@ service:
|
|
|
1416
1432
|
variantPrice:
|
|
1417
1433
|
unit: USD
|
|
1418
1434
|
value: '5892'
|
|
1419
|
-
string:
|
|
1435
|
+
string: \$ 55.61 USD
|
|
1420
1436
|
weight: 11
|
|
1421
1437
|
width: 82
|
|
1422
1438
|
height: 70
|
|
@@ -1425,7 +1441,7 @@ service:
|
|
|
1425
1441
|
rowTotal:
|
|
1426
1442
|
unit: USD
|
|
1427
1443
|
value: '5892'
|
|
1428
|
-
string:
|
|
1444
|
+
string: \$ 53.44 USD
|
|
1429
1445
|
productId: 66072fb61b89448912e26799
|
|
1430
1446
|
productName: Recycled Steel Gloves
|
|
1431
1447
|
productSlug: recycled-steel-gloves
|
|
@@ -1439,7 +1455,7 @@ service:
|
|
|
1439
1455
|
variantPrice:
|
|
1440
1456
|
unit: USD
|
|
1441
1457
|
value: '5892'
|
|
1442
|
-
string:
|
|
1458
|
+
string: \$ 53.44 USD
|
|
1443
1459
|
weight: 38
|
|
1444
1460
|
width: 76
|
|
1445
1461
|
height: 85
|
|
@@ -1471,7 +1487,7 @@ service:
|
|
|
1471
1487
|
subtotal:
|
|
1472
1488
|
unit: USD
|
|
1473
1489
|
value: '5892'
|
|
1474
|
-
string:
|
|
1490
|
+
string: \$ 109.05 USD
|
|
1475
1491
|
extras:
|
|
1476
1492
|
- type: tax
|
|
1477
1493
|
name: State Taxes
|
|
@@ -1479,25 +1495,25 @@ service:
|
|
|
1479
1495
|
price:
|
|
1480
1496
|
unit: USD
|
|
1481
1497
|
value: '5892'
|
|
1482
|
-
string:
|
|
1498
|
+
string: \$ 4.36 USD
|
|
1483
1499
|
- type: tax
|
|
1484
1500
|
name: City Taxes
|
|
1485
1501
|
description: NEW YORK Taxes (4.88%)
|
|
1486
1502
|
price:
|
|
1487
1503
|
unit: USD
|
|
1488
1504
|
value: '5892'
|
|
1489
|
-
string:
|
|
1505
|
+
string: \$ 5.32 USD
|
|
1490
1506
|
- type: shipping
|
|
1491
1507
|
name: Flat
|
|
1492
1508
|
description: ''
|
|
1493
1509
|
price:
|
|
1494
1510
|
unit: USD
|
|
1495
1511
|
value: '5892'
|
|
1496
|
-
string:
|
|
1512
|
+
string: \$ 0.00 USD
|
|
1497
1513
|
total:
|
|
1498
1514
|
unit: USD
|
|
1499
1515
|
value: '5892'
|
|
1500
|
-
string:
|
|
1516
|
+
string: \$ 118.73 USD
|
|
1501
1517
|
downloadFiles:
|
|
1502
1518
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
1503
1519
|
name: New product guide
|
|
@@ -1531,15 +1547,15 @@ webhooks:
|
|
|
1531
1547
|
customerPaid:
|
|
1532
1548
|
unit: USD
|
|
1533
1549
|
value: '5892'
|
|
1534
|
-
string:
|
|
1550
|
+
string: \$ 118.73 USD
|
|
1535
1551
|
netAmount:
|
|
1536
1552
|
unit: USD
|
|
1537
1553
|
value: '5892'
|
|
1538
|
-
string:
|
|
1554
|
+
string: \$ 112.62 USD
|
|
1539
1555
|
applicationFee:
|
|
1540
1556
|
unit: USD
|
|
1541
1557
|
value: '5892'
|
|
1542
|
-
string:
|
|
1558
|
+
string: \$ 2.37 USD
|
|
1543
1559
|
allAddresses:
|
|
1544
1560
|
- type: billing
|
|
1545
1561
|
addressee: Arthur Dent
|
|
@@ -1587,7 +1603,7 @@ webhooks:
|
|
|
1587
1603
|
rowTotal:
|
|
1588
1604
|
unit: USD
|
|
1589
1605
|
value: '5892'
|
|
1590
|
-
string:
|
|
1606
|
+
string: \$ 55.61 USD
|
|
1591
1607
|
productId: 66072fb61b89448912e26791
|
|
1592
1608
|
productName: Luxurious Fresh Ball
|
|
1593
1609
|
productSlug: luxurious-fresh-ball
|
|
@@ -1601,7 +1617,7 @@ webhooks:
|
|
|
1601
1617
|
variantPrice:
|
|
1602
1618
|
unit: USD
|
|
1603
1619
|
value: '5892'
|
|
1604
|
-
string:
|
|
1620
|
+
string: \$ 55.61 USD
|
|
1605
1621
|
weight: 11
|
|
1606
1622
|
width: 82
|
|
1607
1623
|
height: 70
|
|
@@ -1610,7 +1626,7 @@ webhooks:
|
|
|
1610
1626
|
rowTotal:
|
|
1611
1627
|
unit: USD
|
|
1612
1628
|
value: '5892'
|
|
1613
|
-
string:
|
|
1629
|
+
string: \$ 53.44 USD
|
|
1614
1630
|
productId: 66072fb61b89448912e26799
|
|
1615
1631
|
productName: Recycled Steel Gloves
|
|
1616
1632
|
productSlug: recycled-steel-gloves
|
|
@@ -1624,7 +1640,7 @@ webhooks:
|
|
|
1624
1640
|
variantPrice:
|
|
1625
1641
|
unit: USD
|
|
1626
1642
|
value: '5892'
|
|
1627
|
-
string:
|
|
1643
|
+
string: \$ 53.44 USD
|
|
1628
1644
|
weight: 38
|
|
1629
1645
|
width: 76
|
|
1630
1646
|
height: 85
|
|
@@ -1656,7 +1672,7 @@ webhooks:
|
|
|
1656
1672
|
subtotal:
|
|
1657
1673
|
unit: USD
|
|
1658
1674
|
value: '5892'
|
|
1659
|
-
string:
|
|
1675
|
+
string: \$ 109.05 USD
|
|
1660
1676
|
extras:
|
|
1661
1677
|
- type: tax
|
|
1662
1678
|
name: State Taxes
|
|
@@ -1664,25 +1680,25 @@ webhooks:
|
|
|
1664
1680
|
price:
|
|
1665
1681
|
unit: USD
|
|
1666
1682
|
value: '5892'
|
|
1667
|
-
string:
|
|
1683
|
+
string: \$ 4.36 USD
|
|
1668
1684
|
- type: tax
|
|
1669
1685
|
name: City Taxes
|
|
1670
1686
|
description: NEW YORK Taxes (4.88%)
|
|
1671
1687
|
price:
|
|
1672
1688
|
unit: USD
|
|
1673
1689
|
value: '5892'
|
|
1674
|
-
string:
|
|
1690
|
+
string: \$ 5.32 USD
|
|
1675
1691
|
- type: shipping
|
|
1676
1692
|
name: Flat
|
|
1677
1693
|
description: ''
|
|
1678
1694
|
price:
|
|
1679
1695
|
unit: USD
|
|
1680
1696
|
value: '5892'
|
|
1681
|
-
string:
|
|
1697
|
+
string: \$ 0.00 USD
|
|
1682
1698
|
total:
|
|
1683
1699
|
unit: USD
|
|
1684
1700
|
value: '5892'
|
|
1685
|
-
string:
|
|
1701
|
+
string: \$ 118.73 USD
|
|
1686
1702
|
downloadFiles:
|
|
1687
1703
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
1688
1704
|
name: New product guide
|
|
@@ -1717,15 +1733,15 @@ webhooks:
|
|
|
1717
1733
|
customerPaid:
|
|
1718
1734
|
unit: USD
|
|
1719
1735
|
value: '5892'
|
|
1720
|
-
string:
|
|
1736
|
+
string: \$ 118.73 USD
|
|
1721
1737
|
netAmount:
|
|
1722
1738
|
unit: USD
|
|
1723
1739
|
value: '5892'
|
|
1724
|
-
string:
|
|
1740
|
+
string: \$ 112.62 USD
|
|
1725
1741
|
applicationFee:
|
|
1726
1742
|
unit: USD
|
|
1727
1743
|
value: '5892'
|
|
1728
|
-
string:
|
|
1744
|
+
string: \$ 2.37 USD
|
|
1729
1745
|
allAddresses:
|
|
1730
1746
|
- type: billing
|
|
1731
1747
|
addressee: Arthur Dent
|
|
@@ -1773,7 +1789,7 @@ webhooks:
|
|
|
1773
1789
|
rowTotal:
|
|
1774
1790
|
unit: USD
|
|
1775
1791
|
value: '5892'
|
|
1776
|
-
string:
|
|
1792
|
+
string: \$ 55.61 USD
|
|
1777
1793
|
productId: 66072fb61b89448912e26791
|
|
1778
1794
|
productName: Luxurious Fresh Ball
|
|
1779
1795
|
productSlug: luxurious-fresh-ball
|
|
@@ -1787,7 +1803,7 @@ webhooks:
|
|
|
1787
1803
|
variantPrice:
|
|
1788
1804
|
unit: USD
|
|
1789
1805
|
value: '5892'
|
|
1790
|
-
string:
|
|
1806
|
+
string: \$ 55.61 USD
|
|
1791
1807
|
weight: 11
|
|
1792
1808
|
width: 82
|
|
1793
1809
|
height: 70
|
|
@@ -1796,7 +1812,7 @@ webhooks:
|
|
|
1796
1812
|
rowTotal:
|
|
1797
1813
|
unit: USD
|
|
1798
1814
|
value: '5892'
|
|
1799
|
-
string:
|
|
1815
|
+
string: \$ 53.44 USD
|
|
1800
1816
|
productId: 66072fb61b89448912e26799
|
|
1801
1817
|
productName: Recycled Steel Gloves
|
|
1802
1818
|
productSlug: recycled-steel-gloves
|
|
@@ -1810,7 +1826,7 @@ webhooks:
|
|
|
1810
1826
|
variantPrice:
|
|
1811
1827
|
unit: USD
|
|
1812
1828
|
value: '5892'
|
|
1813
|
-
string:
|
|
1829
|
+
string: \$ 53.44 USD
|
|
1814
1830
|
weight: 38
|
|
1815
1831
|
width: 76
|
|
1816
1832
|
height: 85
|
|
@@ -1842,7 +1858,7 @@ webhooks:
|
|
|
1842
1858
|
subtotal:
|
|
1843
1859
|
unit: USD
|
|
1844
1860
|
value: '5892'
|
|
1845
|
-
string:
|
|
1861
|
+
string: \$ 109.05 USD
|
|
1846
1862
|
extras:
|
|
1847
1863
|
- type: tax
|
|
1848
1864
|
name: State Taxes
|
|
@@ -1850,25 +1866,25 @@ webhooks:
|
|
|
1850
1866
|
price:
|
|
1851
1867
|
unit: USD
|
|
1852
1868
|
value: '5892'
|
|
1853
|
-
string:
|
|
1869
|
+
string: \$ 4.36 USD
|
|
1854
1870
|
- type: tax
|
|
1855
1871
|
name: City Taxes
|
|
1856
1872
|
description: NEW YORK Taxes (4.88%)
|
|
1857
1873
|
price:
|
|
1858
1874
|
unit: USD
|
|
1859
1875
|
value: '5892'
|
|
1860
|
-
string:
|
|
1876
|
+
string: \$ 5.32 USD
|
|
1861
1877
|
- type: shipping
|
|
1862
1878
|
name: Flat
|
|
1863
1879
|
description: ''
|
|
1864
1880
|
price:
|
|
1865
1881
|
unit: USD
|
|
1866
1882
|
value: '5892'
|
|
1867
|
-
string:
|
|
1883
|
+
string: \$ 0.00 USD
|
|
1868
1884
|
total:
|
|
1869
1885
|
unit: USD
|
|
1870
1886
|
value: '5892'
|
|
1871
|
-
string:
|
|
1887
|
+
string: \$ 118.73 USD
|
|
1872
1888
|
downloadFiles:
|
|
1873
1889
|
- id: 5e9a5eba75e0ac242e1b6f64
|
|
1874
1890
|
name: New product guide
|