@wix/ecom 1.0.620 → 1.0.622

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/ecom",
3
- "version": "1.0.620",
3
+ "version": "1.0.622",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "dependencies": {
22
22
  "@wix/ecom_abandoned-checkouts": "1.0.29",
23
- "@wix/ecom_additional-fees": "1.0.7",
23
+ "@wix/ecom_additional-fees": "1.0.8",
24
24
  "@wix/ecom_back-in-stock-notifications": "1.0.35",
25
25
  "@wix/ecom_back-in-stock-settings": "1.0.22",
26
26
  "@wix/ecom_cart": "1.0.44",
@@ -29,17 +29,17 @@
29
29
  "@wix/ecom_checkout-templates": "1.0.47",
30
30
  "@wix/ecom_currencies": "1.0.23",
31
31
  "@wix/ecom_current-cart": "1.0.44",
32
- "@wix/ecom_custom-triggers": "1.0.6",
33
- "@wix/ecom_discount-rules": "1.0.34",
32
+ "@wix/ecom_custom-triggers": "1.0.7",
33
+ "@wix/ecom_discount-rules": "1.0.35",
34
34
  "@wix/ecom_order-fulfillments": "1.0.30",
35
35
  "@wix/ecom_order-invoices": "1.0.25",
36
36
  "@wix/ecom_order-transactions": "1.0.39",
37
37
  "@wix/ecom_orders": "1.0.66",
38
38
  "@wix/ecom_orders-settings": "1.0.29",
39
- "@wix/ecom_payment-settings": "1.0.12",
39
+ "@wix/ecom_payment-settings": "1.0.13",
40
40
  "@wix/ecom_recommendations": "1.0.26",
41
- "@wix/ecom_shipping-rates": "1.0.17",
42
- "@wix/ecom_validations": "1.0.9"
41
+ "@wix/ecom_shipping-rates": "1.0.18",
42
+ "@wix/ecom_validations": "1.0.10"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@wix/sdk": "https://cdn.dev.wixpress.com/@wix/sdk/02e8069ab2fd783e0e6a080fc7d590e76cb26ab93c8389574286305b.tar.gz",
@@ -64,5 +64,5 @@
64
64
  "fqdn": ""
65
65
  }
66
66
  },
67
- "falconPackageHash": "a01d77212a6761e56abb849b8954825c721ce09e7949cc77649ec3e9"
67
+ "falconPackageHash": "c0d9e4fa12c69286da1d4e86ffc17b5d7a930991754faad7c4e57b5e"
68
68
  }
@@ -381,15 +381,15 @@ interface ShippingRatesConfig {
381
381
  * ```
382
382
  */
383
383
  interface Context$4 {
384
- /** A unique identifier for each request. Can be used for logging / troubleshooting */
384
+ /** A unique identifier of the request. You may print this ID to your logs to help with future debugging and easier correlation with Wix's logs. */
385
385
  requestId?: string | null;
386
- /** 3 capital letters string representing a currency according to ISO-4217 */
386
+ /** [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) 3-letter currency code. */
387
387
  currency?: string | null;
388
- /** The identification type and identity data */
388
+ /** An object that describes the identity that triggered this request. */
389
389
  identity?: IdentificationData$4;
390
- /** A string representing a language and region in the format of "xx-XX". First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2 */
390
+ /** A string representing a language and region in the format of `"xx-XX"`. First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2. For example, `"en-US"`. */
391
391
  languages?: string[];
392
- /** App instance ID of SPI in context */
392
+ /** The service provider app's instance ID. */
393
393
  instanceId?: string | null;
394
394
  }
395
395
  declare enum IdentityType$4 {
@@ -895,15 +895,15 @@ interface AdditionalFeesSPIConfig {
895
895
  * ```
896
896
  */
897
897
  interface Context$3 {
898
- /** A unique identifier for each request. Can be used for logging / troubleshooting */
898
+ /** A unique identifier of the request. You may print this ID to your logs to help with future debugging and easier correlation with Wix's logs. */
899
899
  requestId?: string | null;
900
- /** 3 capital letters string representing a currency according to ISO-4217 */
900
+ /** [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) 3-letter currency code. */
901
901
  currency?: string | null;
902
- /** The identification type and identity data */
902
+ /** An object that describes the identity that triggered this request. */
903
903
  identity?: IdentificationData$3;
904
- /** A string representing a language and region in the format of "xx-XX". First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2 */
904
+ /** A string representing a language and region in the format of `"xx-XX"`. First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2. For example, `"en-US"`. */
905
905
  languages?: string[];
906
- /** App instance ID of SPI in context */
906
+ /** The service provider app's instance ID. */
907
907
  instanceId?: string | null;
908
908
  }
909
909
  declare enum IdentityType$3 {
@@ -1054,15 +1054,15 @@ interface CustomTriggerConfig {
1054
1054
  * ```
1055
1055
  */
1056
1056
  interface Context$2 {
1057
- /** A unique identifier for each request. Can be used for logging / troubleshooting */
1057
+ /** A unique identifier of the request. You may print this ID to your logs to help with future debugging and easier correlation with Wix's logs. */
1058
1058
  requestId?: string | null;
1059
- /** 3 capital letters string representing a currency according to ISO-4217 */
1059
+ /** [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) 3-letter currency code. */
1060
1060
  currency?: string | null;
1061
- /** The identification type and identity data */
1061
+ /** An object that describes the identity that triggered this request. */
1062
1062
  identity?: IdentificationData$2;
1063
- /** A string representing a language and region in the format of "xx-XX". First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2 */
1063
+ /** A string representing a language and region in the format of `"xx-XX"`. First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2. For example, `"en-US"`. */
1064
1064
  languages?: string[];
1065
- /** App instance ID of SPI in context */
1065
+ /** The service provider app's instance ID. */
1066
1066
  instanceId?: string | null;
1067
1067
  }
1068
1068
  declare enum IdentityType$2 {
@@ -2451,15 +2451,15 @@ interface PaymentSettingsSPIConfig {
2451
2451
  * ```
2452
2452
  */
2453
2453
  interface Context$1 {
2454
- /** A unique identifier for each request. Can be used for logging / troubleshooting */
2454
+ /** A unique identifier of the request. You may print this ID to your logs to help with future debugging and easier correlation with Wix's logs. */
2455
2455
  requestId?: string | null;
2456
- /** 3 capital letters string representing a currency according to ISO-4217 */
2456
+ /** [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) 3-letter currency code. */
2457
2457
  currency?: string | null;
2458
- /** The identification type and identity data */
2458
+ /** An object that describes the identity that triggered this request. */
2459
2459
  identity?: IdentificationData$1;
2460
- /** A string representing a language and region in the format of "xx-XX". First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2 */
2460
+ /** A string representing a language and region in the format of `"xx-XX"`. First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2. For example, `"en-US"`. */
2461
2461
  languages?: string[];
2462
- /** App instance ID of SPI in context */
2462
+ /** The service provider app's instance ID. */
2463
2463
  instanceId?: string | null;
2464
2464
  }
2465
2465
  declare enum IdentityType$1 {
@@ -3150,15 +3150,15 @@ interface ValidationsSPIConfig {
3150
3150
  * ```
3151
3151
  */
3152
3152
  interface Context {
3153
- /** A unique identifier for each request. Can be used for logging / troubleshooting */
3153
+ /** A unique identifier of the request. You may print this ID to your logs to help with future debugging and easier correlation with Wix's logs. */
3154
3154
  requestId?: string | null;
3155
- /** 3 capital letters string representing a currency according to ISO-4217 */
3155
+ /** [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) 3-letter currency code. */
3156
3156
  currency?: string | null;
3157
- /** The identification type and identity data */
3157
+ /** An object that describes the identity that triggered this request. */
3158
3158
  identity?: IdentificationData;
3159
- /** A string representing a language and region in the format of "xx-XX". First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2 */
3159
+ /** A string representing a language and region in the format of `"xx-XX"`. First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2. For example, `"en-US"`. */
3160
3160
  languages?: string[];
3161
- /** App instance ID of SPI in context */
3161
+ /** The service provider app's instance ID. */
3162
3162
  instanceId?: string | null;
3163
3163
  }
3164
3164
  declare enum IdentityType {
@@ -381,15 +381,15 @@ interface ShippingRatesConfig {
381
381
  * ```
382
382
  */
383
383
  interface Context$4 {
384
- /** A unique identifier for each request. Can be used for logging / troubleshooting */
384
+ /** A unique identifier of the request. You may print this ID to your logs to help with future debugging and easier correlation with Wix's logs. */
385
385
  requestId?: string | null;
386
- /** 3 capital letters string representing a currency according to ISO-4217 */
386
+ /** [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) 3-letter currency code. */
387
387
  currency?: string | null;
388
- /** The identification type and identity data */
388
+ /** An object that describes the identity that triggered this request. */
389
389
  identity?: IdentificationData$4;
390
- /** A string representing a language and region in the format of "xx-XX". First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2 */
390
+ /** A string representing a language and region in the format of `"xx-XX"`. First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2. For example, `"en-US"`. */
391
391
  languages?: string[];
392
- /** App instance ID of SPI in context */
392
+ /** The service provider app's instance ID. */
393
393
  instanceId?: string | null;
394
394
  }
395
395
  declare enum IdentityType$4 {
@@ -893,15 +893,15 @@ interface AdditionalFeesSPIConfig {
893
893
  * ```
894
894
  */
895
895
  interface Context$3 {
896
- /** A unique identifier for each request. Can be used for logging / troubleshooting */
896
+ /** A unique identifier of the request. You may print this ID to your logs to help with future debugging and easier correlation with Wix's logs. */
897
897
  requestId?: string | null;
898
- /** 3 capital letters string representing a currency according to ISO-4217 */
898
+ /** [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) 3-letter currency code. */
899
899
  currency?: string | null;
900
- /** The identification type and identity data */
900
+ /** An object that describes the identity that triggered this request. */
901
901
  identity?: IdentificationData$3;
902
- /** A string representing a language and region in the format of "xx-XX". First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2 */
902
+ /** A string representing a language and region in the format of `"xx-XX"`. First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2. For example, `"en-US"`. */
903
903
  languages?: string[];
904
- /** App instance ID of SPI in context */
904
+ /** The service provider app's instance ID. */
905
905
  instanceId?: string | null;
906
906
  }
907
907
  declare enum IdentityType$3 {
@@ -1051,15 +1051,15 @@ interface CustomTriggerConfig {
1051
1051
  * ```
1052
1052
  */
1053
1053
  interface Context$2 {
1054
- /** A unique identifier for each request. Can be used for logging / troubleshooting */
1054
+ /** A unique identifier of the request. You may print this ID to your logs to help with future debugging and easier correlation with Wix's logs. */
1055
1055
  requestId?: string | null;
1056
- /** 3 capital letters string representing a currency according to ISO-4217 */
1056
+ /** [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) 3-letter currency code. */
1057
1057
  currency?: string | null;
1058
- /** The identification type and identity data */
1058
+ /** An object that describes the identity that triggered this request. */
1059
1059
  identity?: IdentificationData$2;
1060
- /** A string representing a language and region in the format of "xx-XX". First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2 */
1060
+ /** A string representing a language and region in the format of `"xx-XX"`. First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2. For example, `"en-US"`. */
1061
1061
  languages?: string[];
1062
- /** App instance ID of SPI in context */
1062
+ /** The service provider app's instance ID. */
1063
1063
  instanceId?: string | null;
1064
1064
  }
1065
1065
  declare enum IdentityType$2 {
@@ -2448,15 +2448,15 @@ interface PaymentSettingsSPIConfig {
2448
2448
  * ```
2449
2449
  */
2450
2450
  interface Context$1 {
2451
- /** A unique identifier for each request. Can be used for logging / troubleshooting */
2451
+ /** A unique identifier of the request. You may print this ID to your logs to help with future debugging and easier correlation with Wix's logs. */
2452
2452
  requestId?: string | null;
2453
- /** 3 capital letters string representing a currency according to ISO-4217 */
2453
+ /** [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) 3-letter currency code. */
2454
2454
  currency?: string | null;
2455
- /** The identification type and identity data */
2455
+ /** An object that describes the identity that triggered this request. */
2456
2456
  identity?: IdentificationData$1;
2457
- /** A string representing a language and region in the format of "xx-XX". First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2 */
2457
+ /** A string representing a language and region in the format of `"xx-XX"`. First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2. For example, `"en-US"`. */
2458
2458
  languages?: string[];
2459
- /** App instance ID of SPI in context */
2459
+ /** The service provider app's instance ID. */
2460
2460
  instanceId?: string | null;
2461
2461
  }
2462
2462
  declare enum IdentityType$1 {
@@ -3146,15 +3146,15 @@ interface ValidationsSPIConfig {
3146
3146
  * ```
3147
3147
  */
3148
3148
  interface Context {
3149
- /** A unique identifier for each request. Can be used for logging / troubleshooting */
3149
+ /** A unique identifier of the request. You may print this ID to your logs to help with future debugging and easier correlation with Wix's logs. */
3150
3150
  requestId?: string | null;
3151
- /** 3 capital letters string representing a currency according to ISO-4217 */
3151
+ /** [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) 3-letter currency code. */
3152
3152
  currency?: string | null;
3153
- /** The identification type and identity data */
3153
+ /** An object that describes the identity that triggered this request. */
3154
3154
  identity?: IdentificationData;
3155
- /** A string representing a language and region in the format of "xx-XX". First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2 */
3155
+ /** A string representing a language and region in the format of `"xx-XX"`. First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2. For example, `"en-US"`. */
3156
3156
  languages?: string[];
3157
- /** App instance ID of SPI in context */
3157
+ /** The service provider app's instance ID. */
3158
3158
  instanceId?: string | null;
3159
3159
  }
3160
3160
  declare enum IdentityType {