@wix/auto_sdk_ecom_payment-settings 1.0.134 → 1.0.136

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.
@@ -19,7 +19,9 @@ interface Order {
19
19
  */
20
20
  _id?: string | null;
21
21
  /**
22
- * Order number displayed in the site owner's dashboard (auto-generated).
22
+ * Order number displayed in the site owner's dashboard.
23
+ *
24
+ * Auto-generated for orders created through the regular order flow. When importing an order, you can provide the original number to preserve it. See [Set Order Number Counter](https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/orders/orders/set-order-number-counter) to control numbering of orders created after a migration.
23
25
  * @readonly
24
26
  */
25
27
  number?: string;
@@ -2850,6 +2852,8 @@ interface AdditionalFee {
2850
2852
  lineItemIds?: string[];
2851
2853
  /** Specifies the entity that added the additional fee. */
2852
2854
  source?: AdditionalFeeSource;
2855
+ /** Address type tax was calculated against for this fee. */
2856
+ taxableAddress?: TaxableAddress;
2853
2857
  }
2854
2858
  declare enum AdditionalFeeSource {
2855
2859
  /** The additional fee was added by an additional fee service plugin. */
@@ -4792,6 +4796,8 @@ interface V1AdditionalFee {
4792
4796
  * @maxLength 50
4793
4797
  */
4794
4798
  translatedName?: string | null;
4799
+ /** Address type tax was calculated against for this fee. */
4800
+ taxableAddress?: TaxableAddress;
4795
4801
  }
4796
4802
  declare enum AdditionalFeeAdditionalFeeSource {
4797
4803
  UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/auto_sdk_ecom_payment-settings",
3
- "version": "1.0.134",
3
+ "version": "1.0.136",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -51,5 +51,5 @@
51
51
  "fqdn": "wix.interfaces.ecommerce.v1.payment_settings_provider"
52
52
  }
53
53
  },
54
- "falconPackageHash": "7b587f578a52264bb69207c657909195fd610dfb1a728841ffd7f26c"
54
+ "falconPackageHash": "8f8e9d07bf8330076be9f8cfeaddfd4cee98ff555e867c1296377742"
55
55
  }