@wix/ecom 1.0.863 → 1.0.864
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.864",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@wix/ecom_currencies": "1.0.45",
|
|
35
35
|
"@wix/ecom_current-cart": "1.0.112",
|
|
36
36
|
"@wix/ecom_custom-triggers": "1.0.31",
|
|
37
|
-
"@wix/ecom_delivery-profile": "1.0.
|
|
37
|
+
"@wix/ecom_delivery-profile": "1.0.37",
|
|
38
38
|
"@wix/ecom_delivery-solutions": "1.0.13",
|
|
39
39
|
"@wix/ecom_discount-rules": "1.0.63",
|
|
40
40
|
"@wix/ecom_discounts": "1.0.14",
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"fqdn": ""
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
|
-
"falconPackageHash": "
|
|
90
|
+
"falconPackageHash": "0a27c6877250e3ed32e6b637242f441775c89bfb3b0f881b666efeb0"
|
|
91
91
|
}
|
|
@@ -17619,12 +17619,33 @@ interface DeliveryCarrier {
|
|
|
17619
17619
|
additionalCharges?: AdditionalCharge$1[];
|
|
17620
17620
|
}
|
|
17621
17621
|
interface BackupRate {
|
|
17622
|
-
/**
|
|
17622
|
+
/**
|
|
17623
|
+
* Default rate prefix that will concatenate to the delivery options the provider will offer.
|
|
17624
|
+
* @deprecated Default rate prefix that will concatenate to the delivery options the provider will offer.
|
|
17625
|
+
* @replacedBy title
|
|
17626
|
+
* @targetRemovalDate 2025-04-01
|
|
17627
|
+
*/
|
|
17623
17628
|
prefix?: string | null;
|
|
17624
|
-
/**
|
|
17629
|
+
/**
|
|
17630
|
+
* Default rate price for all delivery options that the provider will offer.
|
|
17631
|
+
* @deprecated Default rate price for all delivery options that the provider will offer.
|
|
17632
|
+
* @replacedBy amount
|
|
17633
|
+
* @targetRemovalDate 2025-04-01
|
|
17634
|
+
*/
|
|
17625
17635
|
rate?: string | null;
|
|
17626
|
-
/**
|
|
17636
|
+
/**
|
|
17637
|
+
* Should the default rate be used. Default value is false.
|
|
17638
|
+
* @deprecated Should the default rate be used. Default value is false.
|
|
17639
|
+
* @replacedBy active
|
|
17640
|
+
* @targetRemovalDate 2025-04-01
|
|
17641
|
+
*/
|
|
17627
17642
|
enabled?: boolean | null;
|
|
17643
|
+
/** Default rate title that will concatenate to the delivery options the provider will offer. */
|
|
17644
|
+
title?: string | null;
|
|
17645
|
+
/** Default amount price for all delivery options that the provider will offer. */
|
|
17646
|
+
amount?: string | null;
|
|
17647
|
+
/** Should the default rate be used. Default value is false. */
|
|
17648
|
+
active?: boolean;
|
|
17628
17649
|
}
|
|
17629
17650
|
interface AdditionalCharge$1 {
|
|
17630
17651
|
/** Additional charge type. */
|
|
@@ -18411,12 +18432,16 @@ declare enum WebhookIdentityType$c {
|
|
|
18411
18432
|
WIX_USER = "WIX_USER",
|
|
18412
18433
|
APP = "APP"
|
|
18413
18434
|
}
|
|
18435
|
+
interface BackupRateNonNullableFields {
|
|
18436
|
+
active: boolean;
|
|
18437
|
+
}
|
|
18414
18438
|
interface AdditionalChargeNonNullableFields$1 {
|
|
18415
18439
|
type: ChargeType$2;
|
|
18416
18440
|
price: string;
|
|
18417
18441
|
}
|
|
18418
18442
|
interface DeliveryCarrierNonNullableFields {
|
|
18419
18443
|
appId: string;
|
|
18444
|
+
backupRate?: BackupRateNonNullableFields;
|
|
18420
18445
|
additionalCharges: AdditionalChargeNonNullableFields$1[];
|
|
18421
18446
|
}
|
|
18422
18447
|
interface DestinationNonNullableFields$1 {
|
|
@@ -17619,12 +17619,33 @@ interface DeliveryCarrier {
|
|
|
17619
17619
|
additionalCharges?: AdditionalCharge$1[];
|
|
17620
17620
|
}
|
|
17621
17621
|
interface BackupRate {
|
|
17622
|
-
/**
|
|
17622
|
+
/**
|
|
17623
|
+
* Default rate prefix that will concatenate to the delivery options the provider will offer.
|
|
17624
|
+
* @deprecated Default rate prefix that will concatenate to the delivery options the provider will offer.
|
|
17625
|
+
* @replacedBy title
|
|
17626
|
+
* @targetRemovalDate 2025-04-01
|
|
17627
|
+
*/
|
|
17623
17628
|
prefix?: string | null;
|
|
17624
|
-
/**
|
|
17629
|
+
/**
|
|
17630
|
+
* Default rate price for all delivery options that the provider will offer.
|
|
17631
|
+
* @deprecated Default rate price for all delivery options that the provider will offer.
|
|
17632
|
+
* @replacedBy amount
|
|
17633
|
+
* @targetRemovalDate 2025-04-01
|
|
17634
|
+
*/
|
|
17625
17635
|
rate?: string | null;
|
|
17626
|
-
/**
|
|
17636
|
+
/**
|
|
17637
|
+
* Should the default rate be used. Default value is false.
|
|
17638
|
+
* @deprecated Should the default rate be used. Default value is false.
|
|
17639
|
+
* @replacedBy active
|
|
17640
|
+
* @targetRemovalDate 2025-04-01
|
|
17641
|
+
*/
|
|
17627
17642
|
enabled?: boolean | null;
|
|
17643
|
+
/** Default rate title that will concatenate to the delivery options the provider will offer. */
|
|
17644
|
+
title?: string | null;
|
|
17645
|
+
/** Default amount price for all delivery options that the provider will offer. */
|
|
17646
|
+
amount?: string | null;
|
|
17647
|
+
/** Should the default rate be used. Default value is false. */
|
|
17648
|
+
active?: boolean;
|
|
17628
17649
|
}
|
|
17629
17650
|
interface AdditionalCharge$1 {
|
|
17630
17651
|
/** Additional charge type. */
|
|
@@ -18411,12 +18432,16 @@ declare enum WebhookIdentityType$c {
|
|
|
18411
18432
|
WIX_USER = "WIX_USER",
|
|
18412
18433
|
APP = "APP"
|
|
18413
18434
|
}
|
|
18435
|
+
interface BackupRateNonNullableFields {
|
|
18436
|
+
active: boolean;
|
|
18437
|
+
}
|
|
18414
18438
|
interface AdditionalChargeNonNullableFields$1 {
|
|
18415
18439
|
type: ChargeType$2;
|
|
18416
18440
|
price: string;
|
|
18417
18441
|
}
|
|
18418
18442
|
interface DeliveryCarrierNonNullableFields {
|
|
18419
18443
|
appId: string;
|
|
18444
|
+
backupRate?: BackupRateNonNullableFields;
|
|
18420
18445
|
additionalCharges: AdditionalChargeNonNullableFields$1[];
|
|
18421
18446
|
}
|
|
18422
18447
|
interface DestinationNonNullableFields$1 {
|
|
@@ -19983,12 +19983,33 @@ interface DeliveryCarrier$1 {
|
|
|
19983
19983
|
additionalCharges?: AdditionalCharge$3[];
|
|
19984
19984
|
}
|
|
19985
19985
|
interface BackupRate$1 {
|
|
19986
|
-
/**
|
|
19986
|
+
/**
|
|
19987
|
+
* Default rate prefix that will concatenate to the delivery options the provider will offer.
|
|
19988
|
+
* @deprecated Default rate prefix that will concatenate to the delivery options the provider will offer.
|
|
19989
|
+
* @replacedBy title
|
|
19990
|
+
* @targetRemovalDate 2025-04-01
|
|
19991
|
+
*/
|
|
19987
19992
|
prefix?: string | null;
|
|
19988
|
-
/**
|
|
19993
|
+
/**
|
|
19994
|
+
* Default rate price for all delivery options that the provider will offer.
|
|
19995
|
+
* @deprecated Default rate price for all delivery options that the provider will offer.
|
|
19996
|
+
* @replacedBy amount
|
|
19997
|
+
* @targetRemovalDate 2025-04-01
|
|
19998
|
+
*/
|
|
19989
19999
|
rate?: string | null;
|
|
19990
|
-
/**
|
|
20000
|
+
/**
|
|
20001
|
+
* Should the default rate be used. Default value is false.
|
|
20002
|
+
* @deprecated Should the default rate be used. Default value is false.
|
|
20003
|
+
* @replacedBy active
|
|
20004
|
+
* @targetRemovalDate 2025-04-01
|
|
20005
|
+
*/
|
|
19991
20006
|
enabled?: boolean | null;
|
|
20007
|
+
/** Default rate title that will concatenate to the delivery options the provider will offer. */
|
|
20008
|
+
title?: string | null;
|
|
20009
|
+
/** Default amount price for all delivery options that the provider will offer. */
|
|
20010
|
+
amount?: string | null;
|
|
20011
|
+
/** Should the default rate be used. Default value is false. */
|
|
20012
|
+
active?: boolean;
|
|
19992
20013
|
}
|
|
19993
20014
|
interface AdditionalCharge$3 {
|
|
19994
20015
|
/** Additional charge type. */
|
|
@@ -20322,12 +20343,16 @@ interface UpdateExtendedFieldsResponse$7 {
|
|
|
20322
20343
|
/** Updated DeliveryProfile. */
|
|
20323
20344
|
deliveryProfile?: DeliveryProfile$1;
|
|
20324
20345
|
}
|
|
20346
|
+
interface BackupRateNonNullableFields$1 {
|
|
20347
|
+
active: boolean;
|
|
20348
|
+
}
|
|
20325
20349
|
interface AdditionalChargeNonNullableFields$3 {
|
|
20326
20350
|
type: ChargeType$5;
|
|
20327
20351
|
price: string;
|
|
20328
20352
|
}
|
|
20329
20353
|
interface DeliveryCarrierNonNullableFields$1 {
|
|
20330
20354
|
appId: string;
|
|
20355
|
+
backupRate?: BackupRateNonNullableFields$1;
|
|
20331
20356
|
additionalCharges: AdditionalChargeNonNullableFields$3[];
|
|
20332
20357
|
}
|
|
20333
20358
|
interface DestinationNonNullableFields$3 {
|
|
@@ -20495,12 +20520,33 @@ interface DeliveryCarrier {
|
|
|
20495
20520
|
additionalCharges?: AdditionalCharge$2[];
|
|
20496
20521
|
}
|
|
20497
20522
|
interface BackupRate {
|
|
20498
|
-
/**
|
|
20523
|
+
/**
|
|
20524
|
+
* Default rate prefix that will concatenate to the delivery options the provider will offer.
|
|
20525
|
+
* @deprecated Default rate prefix that will concatenate to the delivery options the provider will offer.
|
|
20526
|
+
* @replacedBy title
|
|
20527
|
+
* @targetRemovalDate 2025-04-01
|
|
20528
|
+
*/
|
|
20499
20529
|
prefix?: string | null;
|
|
20500
|
-
/**
|
|
20530
|
+
/**
|
|
20531
|
+
* Default rate price for all delivery options that the provider will offer.
|
|
20532
|
+
* @deprecated Default rate price for all delivery options that the provider will offer.
|
|
20533
|
+
* @replacedBy amount
|
|
20534
|
+
* @targetRemovalDate 2025-04-01
|
|
20535
|
+
*/
|
|
20501
20536
|
rate?: string | null;
|
|
20502
|
-
/**
|
|
20537
|
+
/**
|
|
20538
|
+
* Should the default rate be used. Default value is false.
|
|
20539
|
+
* @deprecated Should the default rate be used. Default value is false.
|
|
20540
|
+
* @replacedBy active
|
|
20541
|
+
* @targetRemovalDate 2025-04-01
|
|
20542
|
+
*/
|
|
20503
20543
|
enabled?: boolean | null;
|
|
20544
|
+
/** Default rate title that will concatenate to the delivery options the provider will offer. */
|
|
20545
|
+
title?: string | null;
|
|
20546
|
+
/** Default amount price for all delivery options that the provider will offer. */
|
|
20547
|
+
amount?: string | null;
|
|
20548
|
+
/** Should the default rate be used. Default value is false. */
|
|
20549
|
+
active?: boolean;
|
|
20504
20550
|
}
|
|
20505
20551
|
interface AdditionalCharge$2 {
|
|
20506
20552
|
/** Additional charge type. */
|
|
@@ -20834,12 +20880,16 @@ interface UpdateExtendedFieldsResponse$6 {
|
|
|
20834
20880
|
/** Updated DeliveryProfile. */
|
|
20835
20881
|
deliveryProfile?: DeliveryProfile;
|
|
20836
20882
|
}
|
|
20883
|
+
interface BackupRateNonNullableFields {
|
|
20884
|
+
active: boolean;
|
|
20885
|
+
}
|
|
20837
20886
|
interface AdditionalChargeNonNullableFields$2 {
|
|
20838
20887
|
type: ChargeType$4;
|
|
20839
20888
|
price: string;
|
|
20840
20889
|
}
|
|
20841
20890
|
interface DeliveryCarrierNonNullableFields {
|
|
20842
20891
|
appId: string;
|
|
20892
|
+
backupRate?: BackupRateNonNullableFields;
|
|
20843
20893
|
additionalCharges: AdditionalChargeNonNullableFields$2[];
|
|
20844
20894
|
}
|
|
20845
20895
|
interface DestinationNonNullableFields$2 {
|