@wix/ecom 1.0.674 → 1.0.676
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.
|
|
3
|
+
"version": "1.0.676",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"@wix/ecom_discount-rules": "1.0.43",
|
|
35
35
|
"@wix/ecom_order-fulfillments": "1.0.37",
|
|
36
36
|
"@wix/ecom_order-invoices": "1.0.31",
|
|
37
|
-
"@wix/ecom_order-transactions": "1.0.
|
|
37
|
+
"@wix/ecom_order-transactions": "1.0.51",
|
|
38
38
|
"@wix/ecom_orders": "1.0.84",
|
|
39
39
|
"@wix/ecom_orders-settings": "1.0.37",
|
|
40
40
|
"@wix/ecom_payment-settings": "1.0.20",
|
|
41
41
|
"@wix/ecom_recommendations": "1.0.32",
|
|
42
|
-
"@wix/ecom_shipping-rates": "1.0.
|
|
42
|
+
"@wix/ecom_shipping-rates": "1.0.28",
|
|
43
43
|
"@wix/ecom_shippo-configurations": "1.0.5",
|
|
44
44
|
"@wix/ecom_validations": "1.0.16"
|
|
45
45
|
},
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"fqdn": ""
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
|
-
"falconPackageHash": "
|
|
68
|
+
"falconPackageHash": "39117761ed2f7181ef8d6ddfec8ab8c32ab53108ca4117f94b88f545"
|
|
69
69
|
}
|
|
@@ -21998,7 +21998,7 @@ interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
|
|
|
21998
21998
|
slug?: string;
|
|
21999
21999
|
/** ID of the entity associated with the event. */
|
|
22000
22000
|
entityId?: string;
|
|
22001
|
-
/** Event timestamp. */
|
|
22001
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
22002
22002
|
eventTime?: Date;
|
|
22003
22003
|
/**
|
|
22004
22004
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -22230,7 +22230,7 @@ interface EventMetadata$2 extends BaseEventMetadata$2 {
|
|
|
22230
22230
|
slug?: string;
|
|
22231
22231
|
/** ID of the entity associated with the event. */
|
|
22232
22232
|
entityId?: string;
|
|
22233
|
-
/** Event timestamp. */
|
|
22233
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
22234
22234
|
eventTime?: Date;
|
|
22235
22235
|
/**
|
|
22236
22236
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -423,6 +423,9 @@ interface IdentificationDataIdOneOf$4 {
|
|
|
423
423
|
appId?: string;
|
|
424
424
|
}
|
|
425
425
|
|
|
426
|
+
/**
|
|
427
|
+
* Postal Code was missing from request
|
|
428
|
+
*/
|
|
426
429
|
declare class MissingPostalCodeWixError extends Error {
|
|
427
430
|
/** @hidden */
|
|
428
431
|
httpCode: number;
|
|
@@ -441,6 +444,9 @@ declare class MissingPostalCodeWixError extends Error {
|
|
|
441
444
|
/** @hidden */
|
|
442
445
|
static readonly __type = "wix_spi_error";
|
|
443
446
|
}
|
|
447
|
+
/**
|
|
448
|
+
* Postal Code was invalid in request
|
|
449
|
+
*/
|
|
444
450
|
declare class InvalidPostalCodeWixError extends Error {
|
|
445
451
|
/** @hidden */
|
|
446
452
|
httpCode: number;
|
|
@@ -459,6 +465,9 @@ declare class InvalidPostalCodeWixError extends Error {
|
|
|
459
465
|
/** @hidden */
|
|
460
466
|
static readonly __type = "wix_spi_error";
|
|
461
467
|
}
|
|
468
|
+
/**
|
|
469
|
+
* The provided address was incomplete
|
|
470
|
+
*/
|
|
462
471
|
declare class InvalidAddressWixError extends Error {
|
|
463
472
|
/** @hidden */
|
|
464
473
|
httpCode: number;
|
|
@@ -477,6 +486,9 @@ declare class InvalidAddressWixError extends Error {
|
|
|
477
486
|
/** @hidden */
|
|
478
487
|
static readonly __type = "wix_spi_error";
|
|
479
488
|
}
|
|
489
|
+
/**
|
|
490
|
+
* The provided address was incomplete
|
|
491
|
+
*/
|
|
480
492
|
declare class GenericShippingRatesWixError extends Error {
|
|
481
493
|
/** @hidden */
|
|
482
494
|
httpCode: number;
|
|
@@ -459,6 +459,9 @@ declare const provideHandlers$4: ServicePluginDefinition<{
|
|
|
459
459
|
getShippingRates(payload: GetShippingRatesEnvelope): GetShippingRatesResponse | Promise<GetShippingRatesResponse>;
|
|
460
460
|
}>;
|
|
461
461
|
|
|
462
|
+
/**
|
|
463
|
+
* Postal Code was missing from request
|
|
464
|
+
*/
|
|
462
465
|
declare class MissingPostalCodeWixError extends Error {
|
|
463
466
|
/** @hidden */
|
|
464
467
|
httpCode: number;
|
|
@@ -477,6 +480,9 @@ declare class MissingPostalCodeWixError extends Error {
|
|
|
477
480
|
/** @hidden */
|
|
478
481
|
static readonly __type = "wix_spi_error";
|
|
479
482
|
}
|
|
483
|
+
/**
|
|
484
|
+
* Postal Code was invalid in request
|
|
485
|
+
*/
|
|
480
486
|
declare class InvalidPostalCodeWixError extends Error {
|
|
481
487
|
/** @hidden */
|
|
482
488
|
httpCode: number;
|
|
@@ -495,6 +501,9 @@ declare class InvalidPostalCodeWixError extends Error {
|
|
|
495
501
|
/** @hidden */
|
|
496
502
|
static readonly __type = "wix_spi_error";
|
|
497
503
|
}
|
|
504
|
+
/**
|
|
505
|
+
* The provided address was incomplete
|
|
506
|
+
*/
|
|
498
507
|
declare class InvalidAddressWixError extends Error {
|
|
499
508
|
/** @hidden */
|
|
500
509
|
httpCode: number;
|
|
@@ -513,6 +522,9 @@ declare class InvalidAddressWixError extends Error {
|
|
|
513
522
|
/** @hidden */
|
|
514
523
|
static readonly __type = "wix_spi_error";
|
|
515
524
|
}
|
|
525
|
+
/**
|
|
526
|
+
* The provided address was incomplete
|
|
527
|
+
*/
|
|
516
528
|
declare class GenericShippingRatesWixError extends Error {
|
|
517
529
|
/** @hidden */
|
|
518
530
|
httpCode: number;
|