@wix/ecom 1.0.863 → 1.0.865

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.863",
3
+ "version": "1.0.865",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -34,23 +34,23 @@
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.36",
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",
41
41
  "@wix/ecom_discounts-custom-trigger": "1.0.17",
42
- "@wix/ecom_draft-orders": "1.0.49",
42
+ "@wix/ecom_draft-orders": "1.0.50",
43
43
  "@wix/ecom_gift-vouchers": "1.0.13",
44
44
  "@wix/ecom_gift-vouchers-provider": "1.0.12",
45
- "@wix/ecom_local-delivery-options": "1.0.21",
45
+ "@wix/ecom_local-delivery-options": "1.0.22",
46
46
  "@wix/ecom_memberships": "1.0.10",
47
47
  "@wix/ecom_order-fulfillments": "1.0.55",
48
48
  "@wix/ecom_order-invoices": "1.0.48",
49
49
  "@wix/ecom_order-payment-requests": "1.0.20",
50
50
  "@wix/ecom_order-transactions": "1.0.80",
51
- "@wix/ecom_orders": "1.0.157",
51
+ "@wix/ecom_orders": "1.0.158",
52
52
  "@wix/ecom_orders-settings": "1.0.55",
53
- "@wix/ecom_payment-settings": "1.0.83",
53
+ "@wix/ecom_payment-settings": "1.0.84",
54
54
  "@wix/ecom_pickup-locations": "1.0.18",
55
55
  "@wix/ecom_recommendations": "1.0.52",
56
56
  "@wix/ecom_recommendations-provider": "1.0.12",
@@ -87,5 +87,5 @@
87
87
  "fqdn": ""
88
88
  }
89
89
  },
90
- "falconPackageHash": "66f5fa2ac0a199e225fa3ba38ef465c9a3483101746e56e3ddcae9ee"
90
+ "falconPackageHash": "dead7dddf3df7268254625fe103ddb2ceb21a6602c7943226135799b"
91
91
  }
@@ -17619,12 +17619,33 @@ interface DeliveryCarrier {
17619
17619
  additionalCharges?: AdditionalCharge$1[];
17620
17620
  }
17621
17621
  interface BackupRate {
17622
- /** Default rate prefix that will concatenate to the delivery options the provider will offer. */
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
- /** Default rate price for all delivery options that the provider will offer. */
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
- /** Should the default rate be used. Default value is false. */
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 {
@@ -20694,11 +20719,20 @@ declare enum PaymentStatus$2 {
20694
20719
  PENDING = "PENDING",
20695
20720
  /** At least one payment was received and approved, covering less than total price amount */
20696
20721
  PARTIALLY_PAID = "PARTIALLY_PAID",
20697
- /** Payment received but not yet confirmed by the payment provider and waits for some user action */
20722
+ /**
20723
+ * Payment received but not yet confirmed by the payment provider and waits for some user action
20724
+ * @documentationMaturity preview
20725
+ */
20698
20726
  PENDING_MERCHANT = "PENDING_MERCHANT",
20699
- /** Payment was canceled by user on payment provider side */
20727
+ /**
20728
+ * Payment was canceled by user on payment provider side
20729
+ * @documentationMaturity preview
20730
+ */
20700
20731
  CANCELED = "CANCELED",
20701
- /** Payment was declined by payment provider */
20732
+ /**
20733
+ * Payment was declined by payment provider
20734
+ * @documentationMaturity preview
20735
+ */
20702
20736
  DECLINED = "DECLINED"
20703
20737
  }
20704
20738
  declare enum FulfillmentStatus$3 {
@@ -20716,7 +20750,9 @@ declare enum OrderStatus$1 {
20716
20750
  INITIALIZED = "INITIALIZED",
20717
20751
  APPROVED = "APPROVED",
20718
20752
  CANCELED = "CANCELED",
20753
+ /** @documentationMaturity preview */
20719
20754
  PENDING = "PENDING",
20755
+ /** @documentationMaturity preview */
20720
20756
  REJECTED = "REJECTED"
20721
20757
  }
20722
20758
  interface Activity$2 extends ActivityContentOneOf$1 {
@@ -21093,10 +21129,15 @@ declare enum ActivityType$2 {
21093
21129
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
21094
21130
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
21095
21131
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
21132
+ /** @documentationMaturity preview */
21096
21133
  PAYMENT_PENDING = "PAYMENT_PENDING",
21134
+ /** @documentationMaturity preview */
21097
21135
  PAYMENT_CANCELED = "PAYMENT_CANCELED",
21136
+ /** @documentationMaturity preview */
21098
21137
  PAYMENT_DECLINED = "PAYMENT_DECLINED",
21138
+ /** @documentationMaturity preview */
21099
21139
  ORDER_PENDING = "ORDER_PENDING",
21140
+ /** @documentationMaturity preview */
21100
21141
  ORDER_REJECTED = "ORDER_REJECTED"
21101
21142
  }
21102
21143
  declare enum AttributionSource$1 {
@@ -23425,7 +23466,10 @@ interface LocalDeliveryOption extends LocalDeliveryOptionConfigOneOf {
23425
23466
  zipConfig?: ZipCodeConfig;
23426
23467
  radiusConfig?: RadiusConfig;
23427
23468
  customAreaConfig?: CustomAreaConfig;
23428
- /** LocalDeliveryOptionId - unique identifier of local delivery option */
23469
+ /**
23470
+ * LocalDeliveryOptionId - unique identifier of local delivery option
23471
+ * @readonly
23472
+ */
23429
23473
  _id?: string | null;
23430
23474
  /** Area name of Local Delivery Option */
23431
23475
  areaName?: string | null;
@@ -23733,6 +23777,7 @@ interface Cursors$8 {
23733
23777
  prev?: string | null;
23734
23778
  }
23735
23779
  interface UpdateLocalDeliveryOptionRequest {
23780
+ /** LocalDeliveryOption to be updated, may be partial. */
23736
23781
  localDeliveryOption: LocalDeliveryOption;
23737
23782
  }
23738
23783
  interface UpdateLocalDeliveryOptionResponse {
@@ -24039,7 +24084,10 @@ interface UpdateLocalDeliveryOption {
24039
24084
  zipConfig?: ZipCodeConfig;
24040
24085
  radiusConfig?: RadiusConfig;
24041
24086
  customAreaConfig?: CustomAreaConfig;
24042
- /** LocalDeliveryOptionId - unique identifier of local delivery option */
24087
+ /**
24088
+ * LocalDeliveryOptionId - unique identifier of local delivery option
24089
+ * @readonly
24090
+ */
24043
24091
  _id?: string | null;
24044
24092
  /** Area name of Local Delivery Option */
24045
24093
  areaName?: string | null;
@@ -24804,11 +24852,20 @@ declare enum PaymentStatus$1 {
24804
24852
  PENDING = "PENDING",
24805
24853
  /** At least one payment was received and approved, covering less than total price amount */
24806
24854
  PARTIALLY_PAID = "PARTIALLY_PAID",
24807
- /** Payment received but not yet confirmed by the payment provider and waits for some user action */
24855
+ /**
24856
+ * Payment received but not yet confirmed by the payment provider and waits for some user action
24857
+ * @documentationMaturity preview
24858
+ */
24808
24859
  PENDING_MERCHANT = "PENDING_MERCHANT",
24809
- /** Payment was canceled by user on payment provider side */
24860
+ /**
24861
+ * Payment was canceled by user on payment provider side
24862
+ * @documentationMaturity preview
24863
+ */
24810
24864
  CANCELED = "CANCELED",
24811
- /** Payment was declined by payment provider */
24865
+ /**
24866
+ * Payment was declined by payment provider
24867
+ * @documentationMaturity preview
24868
+ */
24812
24869
  DECLINED = "DECLINED"
24813
24870
  }
24814
24871
  declare enum FulfillmentStatus$1 {
@@ -25017,7 +25074,9 @@ declare enum OrderStatus {
25017
25074
  INITIALIZED = "INITIALIZED",
25018
25075
  APPROVED = "APPROVED",
25019
25076
  CANCELED = "CANCELED",
25077
+ /** @documentationMaturity preview */
25020
25078
  PENDING = "PENDING",
25079
+ /** @documentationMaturity preview */
25021
25080
  REJECTED = "REJECTED"
25022
25081
  }
25023
25082
  interface TaxSummary$1 {
@@ -25528,10 +25587,15 @@ declare enum ActivityType$1 {
25528
25587
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
25529
25588
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
25530
25589
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
25590
+ /** @documentationMaturity preview */
25531
25591
  PAYMENT_PENDING = "PAYMENT_PENDING",
25592
+ /** @documentationMaturity preview */
25532
25593
  PAYMENT_CANCELED = "PAYMENT_CANCELED",
25594
+ /** @documentationMaturity preview */
25533
25595
  PAYMENT_DECLINED = "PAYMENT_DECLINED",
25596
+ /** @documentationMaturity preview */
25534
25597
  ORDER_PENDING = "ORDER_PENDING",
25598
+ /** @documentationMaturity preview */
25535
25599
  ORDER_REJECTED = "ORDER_REJECTED"
25536
25600
  }
25537
25601
  declare enum AttributionSource {
@@ -17619,12 +17619,33 @@ interface DeliveryCarrier {
17619
17619
  additionalCharges?: AdditionalCharge$1[];
17620
17620
  }
17621
17621
  interface BackupRate {
17622
- /** Default rate prefix that will concatenate to the delivery options the provider will offer. */
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
- /** Default rate price for all delivery options that the provider will offer. */
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
- /** Should the default rate be used. Default value is false. */
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 {
@@ -20694,11 +20719,20 @@ declare enum PaymentStatus$2 {
20694
20719
  PENDING = "PENDING",
20695
20720
  /** At least one payment was received and approved, covering less than total price amount */
20696
20721
  PARTIALLY_PAID = "PARTIALLY_PAID",
20697
- /** Payment received but not yet confirmed by the payment provider and waits for some user action */
20722
+ /**
20723
+ * Payment received but not yet confirmed by the payment provider and waits for some user action
20724
+ * @documentationMaturity preview
20725
+ */
20698
20726
  PENDING_MERCHANT = "PENDING_MERCHANT",
20699
- /** Payment was canceled by user on payment provider side */
20727
+ /**
20728
+ * Payment was canceled by user on payment provider side
20729
+ * @documentationMaturity preview
20730
+ */
20700
20731
  CANCELED = "CANCELED",
20701
- /** Payment was declined by payment provider */
20732
+ /**
20733
+ * Payment was declined by payment provider
20734
+ * @documentationMaturity preview
20735
+ */
20702
20736
  DECLINED = "DECLINED"
20703
20737
  }
20704
20738
  declare enum FulfillmentStatus$3 {
@@ -20716,7 +20750,9 @@ declare enum OrderStatus$1 {
20716
20750
  INITIALIZED = "INITIALIZED",
20717
20751
  APPROVED = "APPROVED",
20718
20752
  CANCELED = "CANCELED",
20753
+ /** @documentationMaturity preview */
20719
20754
  PENDING = "PENDING",
20755
+ /** @documentationMaturity preview */
20720
20756
  REJECTED = "REJECTED"
20721
20757
  }
20722
20758
  interface Activity$2 extends ActivityContentOneOf$1 {
@@ -21093,10 +21129,15 @@ declare enum ActivityType$2 {
21093
21129
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
21094
21130
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
21095
21131
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
21132
+ /** @documentationMaturity preview */
21096
21133
  PAYMENT_PENDING = "PAYMENT_PENDING",
21134
+ /** @documentationMaturity preview */
21097
21135
  PAYMENT_CANCELED = "PAYMENT_CANCELED",
21136
+ /** @documentationMaturity preview */
21098
21137
  PAYMENT_DECLINED = "PAYMENT_DECLINED",
21138
+ /** @documentationMaturity preview */
21099
21139
  ORDER_PENDING = "ORDER_PENDING",
21140
+ /** @documentationMaturity preview */
21100
21141
  ORDER_REJECTED = "ORDER_REJECTED"
21101
21142
  }
21102
21143
  declare enum AttributionSource$1 {
@@ -23425,7 +23466,10 @@ interface LocalDeliveryOption extends LocalDeliveryOptionConfigOneOf {
23425
23466
  zipConfig?: ZipCodeConfig;
23426
23467
  radiusConfig?: RadiusConfig;
23427
23468
  customAreaConfig?: CustomAreaConfig;
23428
- /** LocalDeliveryOptionId - unique identifier of local delivery option */
23469
+ /**
23470
+ * LocalDeliveryOptionId - unique identifier of local delivery option
23471
+ * @readonly
23472
+ */
23429
23473
  _id?: string | null;
23430
23474
  /** Area name of Local Delivery Option */
23431
23475
  areaName?: string | null;
@@ -23733,6 +23777,7 @@ interface Cursors$8 {
23733
23777
  prev?: string | null;
23734
23778
  }
23735
23779
  interface UpdateLocalDeliveryOptionRequest {
23780
+ /** LocalDeliveryOption to be updated, may be partial. */
23736
23781
  localDeliveryOption: LocalDeliveryOption;
23737
23782
  }
23738
23783
  interface UpdateLocalDeliveryOptionResponse {
@@ -24039,7 +24084,10 @@ interface UpdateLocalDeliveryOption {
24039
24084
  zipConfig?: ZipCodeConfig;
24040
24085
  radiusConfig?: RadiusConfig;
24041
24086
  customAreaConfig?: CustomAreaConfig;
24042
- /** LocalDeliveryOptionId - unique identifier of local delivery option */
24087
+ /**
24088
+ * LocalDeliveryOptionId - unique identifier of local delivery option
24089
+ * @readonly
24090
+ */
24043
24091
  _id?: string | null;
24044
24092
  /** Area name of Local Delivery Option */
24045
24093
  areaName?: string | null;
@@ -24804,11 +24852,20 @@ declare enum PaymentStatus$1 {
24804
24852
  PENDING = "PENDING",
24805
24853
  /** At least one payment was received and approved, covering less than total price amount */
24806
24854
  PARTIALLY_PAID = "PARTIALLY_PAID",
24807
- /** Payment received but not yet confirmed by the payment provider and waits for some user action */
24855
+ /**
24856
+ * Payment received but not yet confirmed by the payment provider and waits for some user action
24857
+ * @documentationMaturity preview
24858
+ */
24808
24859
  PENDING_MERCHANT = "PENDING_MERCHANT",
24809
- /** Payment was canceled by user on payment provider side */
24860
+ /**
24861
+ * Payment was canceled by user on payment provider side
24862
+ * @documentationMaturity preview
24863
+ */
24810
24864
  CANCELED = "CANCELED",
24811
- /** Payment was declined by payment provider */
24865
+ /**
24866
+ * Payment was declined by payment provider
24867
+ * @documentationMaturity preview
24868
+ */
24812
24869
  DECLINED = "DECLINED"
24813
24870
  }
24814
24871
  declare enum FulfillmentStatus$1 {
@@ -25017,7 +25074,9 @@ declare enum OrderStatus {
25017
25074
  INITIALIZED = "INITIALIZED",
25018
25075
  APPROVED = "APPROVED",
25019
25076
  CANCELED = "CANCELED",
25077
+ /** @documentationMaturity preview */
25020
25078
  PENDING = "PENDING",
25079
+ /** @documentationMaturity preview */
25021
25080
  REJECTED = "REJECTED"
25022
25081
  }
25023
25082
  interface TaxSummary$1 {
@@ -25528,10 +25587,15 @@ declare enum ActivityType$1 {
25528
25587
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
25529
25588
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
25530
25589
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
25590
+ /** @documentationMaturity preview */
25531
25591
  PAYMENT_PENDING = "PAYMENT_PENDING",
25592
+ /** @documentationMaturity preview */
25532
25593
  PAYMENT_CANCELED = "PAYMENT_CANCELED",
25594
+ /** @documentationMaturity preview */
25533
25595
  PAYMENT_DECLINED = "PAYMENT_DECLINED",
25596
+ /** @documentationMaturity preview */
25534
25597
  ORDER_PENDING = "ORDER_PENDING",
25598
+ /** @documentationMaturity preview */
25535
25599
  ORDER_REJECTED = "ORDER_REJECTED"
25536
25600
  }
25537
25601
  declare enum AttributionSource {
@@ -19983,12 +19983,33 @@ interface DeliveryCarrier$1 {
19983
19983
  additionalCharges?: AdditionalCharge$3[];
19984
19984
  }
19985
19985
  interface BackupRate$1 {
19986
- /** Default rate prefix that will concatenate to the delivery options the provider will offer. */
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
- /** Default rate price for all delivery options that the provider will offer. */
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
- /** Should the default rate be used. Default value is false. */
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
- /** Default rate prefix that will concatenate to the delivery options the provider will offer. */
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
- /** Default rate price for all delivery options that the provider will offer. */
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
- /** Should the default rate be used. Default value is false. */
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 {
@@ -22684,11 +22734,20 @@ declare enum PaymentStatus$3 {
22684
22734
  PENDING = "PENDING",
22685
22735
  /** At least one payment was received and approved, covering less than total price amount */
22686
22736
  PARTIALLY_PAID = "PARTIALLY_PAID",
22687
- /** Payment received but not yet confirmed by the payment provider and waits for some user action */
22737
+ /**
22738
+ * Payment received but not yet confirmed by the payment provider and waits for some user action
22739
+ * @documentationMaturity preview
22740
+ */
22688
22741
  PENDING_MERCHANT = "PENDING_MERCHANT",
22689
- /** Payment was canceled by user on payment provider side */
22742
+ /**
22743
+ * Payment was canceled by user on payment provider side
22744
+ * @documentationMaturity preview
22745
+ */
22690
22746
  CANCELED = "CANCELED",
22691
- /** Payment was declined by payment provider */
22747
+ /**
22748
+ * Payment was declined by payment provider
22749
+ * @documentationMaturity preview
22750
+ */
22692
22751
  DECLINED = "DECLINED"
22693
22752
  }
22694
22753
  declare enum FulfillmentStatus$3 {
@@ -22706,7 +22765,9 @@ declare enum OrderStatus$3 {
22706
22765
  INITIALIZED = "INITIALIZED",
22707
22766
  APPROVED = "APPROVED",
22708
22767
  CANCELED = "CANCELED",
22768
+ /** @documentationMaturity preview */
22709
22769
  PENDING = "PENDING",
22770
+ /** @documentationMaturity preview */
22710
22771
  REJECTED = "REJECTED"
22711
22772
  }
22712
22773
  interface Activity$3 extends ActivityContentOneOf$3 {
@@ -22796,10 +22857,15 @@ declare enum ActivityType$3 {
22796
22857
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
22797
22858
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
22798
22859
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
22860
+ /** @documentationMaturity preview */
22799
22861
  PAYMENT_PENDING = "PAYMENT_PENDING",
22862
+ /** @documentationMaturity preview */
22800
22863
  PAYMENT_CANCELED = "PAYMENT_CANCELED",
22864
+ /** @documentationMaturity preview */
22801
22865
  PAYMENT_DECLINED = "PAYMENT_DECLINED",
22866
+ /** @documentationMaturity preview */
22802
22867
  ORDER_PENDING = "ORDER_PENDING",
22868
+ /** @documentationMaturity preview */
22803
22869
  ORDER_REJECTED = "ORDER_REJECTED"
22804
22870
  }
22805
22871
  declare enum AttributionSource$3 {
@@ -25311,11 +25377,20 @@ declare enum PaymentStatus$2 {
25311
25377
  PENDING = "PENDING",
25312
25378
  /** At least one payment was received and approved, covering less than total price amount */
25313
25379
  PARTIALLY_PAID = "PARTIALLY_PAID",
25314
- /** Payment received but not yet confirmed by the payment provider and waits for some user action */
25380
+ /**
25381
+ * Payment received but not yet confirmed by the payment provider and waits for some user action
25382
+ * @documentationMaturity preview
25383
+ */
25315
25384
  PENDING_MERCHANT = "PENDING_MERCHANT",
25316
- /** Payment was canceled by user on payment provider side */
25385
+ /**
25386
+ * Payment was canceled by user on payment provider side
25387
+ * @documentationMaturity preview
25388
+ */
25317
25389
  CANCELED = "CANCELED",
25318
- /** Payment was declined by payment provider */
25390
+ /**
25391
+ * Payment was declined by payment provider
25392
+ * @documentationMaturity preview
25393
+ */
25319
25394
  DECLINED = "DECLINED"
25320
25395
  }
25321
25396
  declare enum FulfillmentStatus$2 {
@@ -25333,7 +25408,9 @@ declare enum OrderStatus$2 {
25333
25408
  INITIALIZED = "INITIALIZED",
25334
25409
  APPROVED = "APPROVED",
25335
25410
  CANCELED = "CANCELED",
25411
+ /** @documentationMaturity preview */
25336
25412
  PENDING = "PENDING",
25413
+ /** @documentationMaturity preview */
25337
25414
  REJECTED = "REJECTED"
25338
25415
  }
25339
25416
  interface Activity$2 extends ActivityContentOneOf$2 {
@@ -25423,10 +25500,15 @@ declare enum ActivityType$2 {
25423
25500
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
25424
25501
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
25425
25502
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
25503
+ /** @documentationMaturity preview */
25426
25504
  PAYMENT_PENDING = "PAYMENT_PENDING",
25505
+ /** @documentationMaturity preview */
25427
25506
  PAYMENT_CANCELED = "PAYMENT_CANCELED",
25507
+ /** @documentationMaturity preview */
25428
25508
  PAYMENT_DECLINED = "PAYMENT_DECLINED",
25509
+ /** @documentationMaturity preview */
25429
25510
  ORDER_PENDING = "ORDER_PENDING",
25511
+ /** @documentationMaturity preview */
25430
25512
  ORDER_REJECTED = "ORDER_REJECTED"
25431
25513
  }
25432
25514
  declare enum AttributionSource$2 {
@@ -27055,7 +27137,10 @@ interface LocalDeliveryOption$1 extends LocalDeliveryOptionConfigOneOf$1 {
27055
27137
  zipConfig?: ZipCodeConfig$1;
27056
27138
  radiusConfig?: RadiusConfig$1;
27057
27139
  customAreaConfig?: CustomAreaConfig$1;
27058
- /** LocalDeliveryOptionId - unique identifier of local delivery option */
27140
+ /**
27141
+ * LocalDeliveryOptionId - unique identifier of local delivery option
27142
+ * @readonly
27143
+ */
27059
27144
  id?: string | null;
27060
27145
  /** Area name of Local Delivery Option */
27061
27146
  areaName?: string | null;
@@ -27363,6 +27448,7 @@ interface Cursors$f {
27363
27448
  prev?: string | null;
27364
27449
  }
27365
27450
  interface UpdateLocalDeliveryOptionRequest$1 {
27451
+ /** LocalDeliveryOption to be updated, may be partial. */
27366
27452
  localDeliveryOption: LocalDeliveryOption$1;
27367
27453
  }
27368
27454
  interface UpdateLocalDeliveryOptionResponse$1 {
@@ -27497,7 +27583,10 @@ interface LocalDeliveryOption extends LocalDeliveryOptionConfigOneOf {
27497
27583
  zipConfig?: ZipCodeConfig;
27498
27584
  radiusConfig?: RadiusConfig;
27499
27585
  customAreaConfig?: CustomAreaConfig;
27500
- /** LocalDeliveryOptionId - unique identifier of local delivery option */
27586
+ /**
27587
+ * LocalDeliveryOptionId - unique identifier of local delivery option
27588
+ * @readonly
27589
+ */
27501
27590
  _id?: string | null;
27502
27591
  /** Area name of Local Delivery Option */
27503
27592
  areaName?: string | null;
@@ -27805,6 +27894,7 @@ interface Cursors$e {
27805
27894
  prev?: string | null;
27806
27895
  }
27807
27896
  interface UpdateLocalDeliveryOptionRequest {
27897
+ /** LocalDeliveryOption to be updated, may be partial. */
27808
27898
  localDeliveryOption: LocalDeliveryOption;
27809
27899
  }
27810
27900
  interface UpdateLocalDeliveryOptionResponse {
@@ -28538,11 +28628,20 @@ declare enum PaymentStatus$1 {
28538
28628
  PENDING = "PENDING",
28539
28629
  /** At least one payment was received and approved, covering less than total price amount */
28540
28630
  PARTIALLY_PAID = "PARTIALLY_PAID",
28541
- /** Payment received but not yet confirmed by the payment provider and waits for some user action */
28631
+ /**
28632
+ * Payment received but not yet confirmed by the payment provider and waits for some user action
28633
+ * @documentationMaturity preview
28634
+ */
28542
28635
  PENDING_MERCHANT = "PENDING_MERCHANT",
28543
- /** Payment was canceled by user on payment provider side */
28636
+ /**
28637
+ * Payment was canceled by user on payment provider side
28638
+ * @documentationMaturity preview
28639
+ */
28544
28640
  CANCELED = "CANCELED",
28545
- /** Payment was declined by payment provider */
28641
+ /**
28642
+ * Payment was declined by payment provider
28643
+ * @documentationMaturity preview
28644
+ */
28546
28645
  DECLINED = "DECLINED"
28547
28646
  }
28548
28647
  declare enum FulfillmentStatus$1 {
@@ -28765,7 +28864,9 @@ declare enum OrderStatus$1 {
28765
28864
  INITIALIZED = "INITIALIZED",
28766
28865
  APPROVED = "APPROVED",
28767
28866
  CANCELED = "CANCELED",
28867
+ /** @documentationMaturity preview */
28768
28868
  PENDING = "PENDING",
28869
+ /** @documentationMaturity preview */
28769
28870
  REJECTED = "REJECTED"
28770
28871
  }
28771
28872
  interface TaxSummary$3 {
@@ -28983,10 +29084,15 @@ declare enum ActivityType$1 {
28983
29084
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
28984
29085
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
28985
29086
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
29087
+ /** @documentationMaturity preview */
28986
29088
  PAYMENT_PENDING = "PAYMENT_PENDING",
29089
+ /** @documentationMaturity preview */
28987
29090
  PAYMENT_CANCELED = "PAYMENT_CANCELED",
29091
+ /** @documentationMaturity preview */
28988
29092
  PAYMENT_DECLINED = "PAYMENT_DECLINED",
29093
+ /** @documentationMaturity preview */
28989
29094
  ORDER_PENDING = "ORDER_PENDING",
29095
+ /** @documentationMaturity preview */
28990
29096
  ORDER_REJECTED = "ORDER_REJECTED"
28991
29097
  }
28992
29098
  declare enum AttributionSource$1 {
@@ -30857,11 +30963,20 @@ declare enum PaymentStatus {
30857
30963
  PENDING = "PENDING",
30858
30964
  /** At least one payment was received and approved, covering less than total price amount */
30859
30965
  PARTIALLY_PAID = "PARTIALLY_PAID",
30860
- /** Payment received but not yet confirmed by the payment provider and waits for some user action */
30966
+ /**
30967
+ * Payment received but not yet confirmed by the payment provider and waits for some user action
30968
+ * @documentationMaturity preview
30969
+ */
30861
30970
  PENDING_MERCHANT = "PENDING_MERCHANT",
30862
- /** Payment was canceled by user on payment provider side */
30971
+ /**
30972
+ * Payment was canceled by user on payment provider side
30973
+ * @documentationMaturity preview
30974
+ */
30863
30975
  CANCELED = "CANCELED",
30864
- /** Payment was declined by payment provider */
30976
+ /**
30977
+ * Payment was declined by payment provider
30978
+ * @documentationMaturity preview
30979
+ */
30865
30980
  DECLINED = "DECLINED"
30866
30981
  }
30867
30982
  declare enum FulfillmentStatus {
@@ -31064,7 +31179,9 @@ declare enum OrderStatus {
31064
31179
  INITIALIZED = "INITIALIZED",
31065
31180
  APPROVED = "APPROVED",
31066
31181
  CANCELED = "CANCELED",
31182
+ /** @documentationMaturity preview */
31067
31183
  PENDING = "PENDING",
31184
+ /** @documentationMaturity preview */
31068
31185
  REJECTED = "REJECTED"
31069
31186
  }
31070
31187
  interface TaxSummary$2 {
@@ -31282,10 +31399,15 @@ declare enum ActivityType {
31282
31399
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
31283
31400
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
31284
31401
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
31402
+ /** @documentationMaturity preview */
31285
31403
  PAYMENT_PENDING = "PAYMENT_PENDING",
31404
+ /** @documentationMaturity preview */
31286
31405
  PAYMENT_CANCELED = "PAYMENT_CANCELED",
31406
+ /** @documentationMaturity preview */
31287
31407
  PAYMENT_DECLINED = "PAYMENT_DECLINED",
31408
+ /** @documentationMaturity preview */
31288
31409
  ORDER_PENDING = "ORDER_PENDING",
31410
+ /** @documentationMaturity preview */
31289
31411
  ORDER_REJECTED = "ORDER_REJECTED"
31290
31412
  }
31291
31413
  declare enum AttributionSource {
@@ -3282,11 +3282,20 @@ declare enum PaymentStatus {
3282
3282
  PENDING = "PENDING",
3283
3283
  /** At least one payment was received and approved, covering less than total price amount */
3284
3284
  PARTIALLY_PAID = "PARTIALLY_PAID",
3285
- /** Payment received but not yet confirmed by the payment provider and waits for some user action */
3285
+ /**
3286
+ * Payment received but not yet confirmed by the payment provider and waits for some user action
3287
+ * @documentationMaturity preview
3288
+ */
3286
3289
  PENDING_MERCHANT = "PENDING_MERCHANT",
3287
- /** Payment was canceled by user on payment provider side */
3290
+ /**
3291
+ * Payment was canceled by user on payment provider side
3292
+ * @documentationMaturity preview
3293
+ */
3288
3294
  CANCELED = "CANCELED",
3289
- /** Payment was declined by payment provider */
3295
+ /**
3296
+ * Payment was declined by payment provider
3297
+ * @documentationMaturity preview
3298
+ */
3290
3299
  DECLINED = "DECLINED"
3291
3300
  }
3292
3301
  declare enum FulfillmentStatus {
@@ -3495,7 +3504,9 @@ declare enum OrderStatus {
3495
3504
  INITIALIZED = "INITIALIZED",
3496
3505
  APPROVED = "APPROVED",
3497
3506
  CANCELED = "CANCELED",
3507
+ /** @documentationMaturity preview */
3498
3508
  PENDING = "PENDING",
3509
+ /** @documentationMaturity preview */
3499
3510
  REJECTED = "REJECTED"
3500
3511
  }
3501
3512
  interface TaxSummary {
@@ -4006,10 +4017,15 @@ declare enum ActivityType {
4006
4017
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
4007
4018
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
4008
4019
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
4020
+ /** @documentationMaturity preview */
4009
4021
  PAYMENT_PENDING = "PAYMENT_PENDING",
4022
+ /** @documentationMaturity preview */
4010
4023
  PAYMENT_CANCELED = "PAYMENT_CANCELED",
4024
+ /** @documentationMaturity preview */
4011
4025
  PAYMENT_DECLINED = "PAYMENT_DECLINED",
4026
+ /** @documentationMaturity preview */
4012
4027
  ORDER_PENDING = "ORDER_PENDING",
4028
+ /** @documentationMaturity preview */
4013
4029
  ORDER_REJECTED = "ORDER_REJECTED"
4014
4030
  }
4015
4031
  declare enum AttributionSource {
@@ -3282,11 +3282,20 @@ declare enum PaymentStatus {
3282
3282
  PENDING = "PENDING",
3283
3283
  /** At least one payment was received and approved, covering less than total price amount */
3284
3284
  PARTIALLY_PAID = "PARTIALLY_PAID",
3285
- /** Payment received but not yet confirmed by the payment provider and waits for some user action */
3285
+ /**
3286
+ * Payment received but not yet confirmed by the payment provider and waits for some user action
3287
+ * @documentationMaturity preview
3288
+ */
3286
3289
  PENDING_MERCHANT = "PENDING_MERCHANT",
3287
- /** Payment was canceled by user on payment provider side */
3290
+ /**
3291
+ * Payment was canceled by user on payment provider side
3292
+ * @documentationMaturity preview
3293
+ */
3288
3294
  CANCELED = "CANCELED",
3289
- /** Payment was declined by payment provider */
3295
+ /**
3296
+ * Payment was declined by payment provider
3297
+ * @documentationMaturity preview
3298
+ */
3290
3299
  DECLINED = "DECLINED"
3291
3300
  }
3292
3301
  declare enum FulfillmentStatus {
@@ -3495,7 +3504,9 @@ declare enum OrderStatus {
3495
3504
  INITIALIZED = "INITIALIZED",
3496
3505
  APPROVED = "APPROVED",
3497
3506
  CANCELED = "CANCELED",
3507
+ /** @documentationMaturity preview */
3498
3508
  PENDING = "PENDING",
3509
+ /** @documentationMaturity preview */
3499
3510
  REJECTED = "REJECTED"
3500
3511
  }
3501
3512
  interface TaxSummary {
@@ -4006,10 +4017,15 @@ declare enum ActivityType {
4006
4017
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
4007
4018
  DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
4008
4019
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
4020
+ /** @documentationMaturity preview */
4009
4021
  PAYMENT_PENDING = "PAYMENT_PENDING",
4022
+ /** @documentationMaturity preview */
4010
4023
  PAYMENT_CANCELED = "PAYMENT_CANCELED",
4024
+ /** @documentationMaturity preview */
4011
4025
  PAYMENT_DECLINED = "PAYMENT_DECLINED",
4026
+ /** @documentationMaturity preview */
4012
4027
  ORDER_PENDING = "ORDER_PENDING",
4028
+ /** @documentationMaturity preview */
4013
4029
  ORDER_REJECTED = "ORDER_REJECTED"
4014
4030
  }
4015
4031
  declare enum AttributionSource {