@gradientedge/commercetools-utils 5.8.0 → 5.9.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.
|
@@ -671,6 +671,19 @@ export interface CartSetShippingAddressAction {
|
|
|
671
671
|
readonly action: 'setShippingAddress';
|
|
672
672
|
readonly address?: _BaseAddress;
|
|
673
673
|
}
|
|
674
|
+
export interface CartSetShippingAddressAndShippingMethodAction {
|
|
675
|
+
readonly action: 'setShippingAddressAndShippingMethod';
|
|
676
|
+
readonly address?: _BaseAddress;
|
|
677
|
+
readonly shippingMethod?: ShippingMethodReference;
|
|
678
|
+
}
|
|
679
|
+
export interface CartSetShippingAddressAndCustomShippingMethodAction {
|
|
680
|
+
readonly action: 'setShippingAddressAndCustomShippingMethod';
|
|
681
|
+
readonly address?: _BaseAddress;
|
|
682
|
+
readonly shippingMethodName: string;
|
|
683
|
+
readonly shippingRate: ShippingRateDraft;
|
|
684
|
+
readonly taxCategory?: TaxCategoryResourceIdentifier;
|
|
685
|
+
externalTaxRate?: ExternalTaxRateDraft;
|
|
686
|
+
}
|
|
674
687
|
export interface CartSetShippingAddressCustomFieldAction {
|
|
675
688
|
readonly action: 'setShippingAddressCustomField';
|
|
676
689
|
readonly name: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gradientedge/commercetools-utils",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.9.1",
|
|
4
4
|
"description": "Provide utility classes and functions for interacting with the commercetools API",
|
|
5
5
|
"main": "./dist/ge-commercetools-utils-node.cjs.js",
|
|
6
6
|
"module": "./dist/ge-commercetools-utils-node.esm.js",
|