@wix/ecom 1.0.859 → 1.0.861

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.859",
3
+ "version": "1.0.861",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -26,13 +26,13 @@
26
26
  "@wix/ecom_additional-fees": "1.0.36",
27
27
  "@wix/ecom_back-in-stock-notifications": "1.0.61",
28
28
  "@wix/ecom_back-in-stock-settings": "1.0.44",
29
- "@wix/ecom_cart": "1.0.111",
30
- "@wix/ecom_checkout": "1.0.115",
29
+ "@wix/ecom_cart": "1.0.112",
30
+ "@wix/ecom_checkout": "1.0.117",
31
31
  "@wix/ecom_checkout-content": "1.0.15",
32
32
  "@wix/ecom_checkout-settings": "1.0.61",
33
- "@wix/ecom_checkout-templates": "1.0.113",
33
+ "@wix/ecom_checkout-templates": "1.0.114",
34
34
  "@wix/ecom_currencies": "1.0.45",
35
- "@wix/ecom_current-cart": "1.0.111",
35
+ "@wix/ecom_current-cart": "1.0.112",
36
36
  "@wix/ecom_custom-triggers": "1.0.31",
37
37
  "@wix/ecom_delivery-profile": "1.0.36",
38
38
  "@wix/ecom_delivery-solutions": "1.0.13",
@@ -50,7 +50,7 @@
50
50
  "@wix/ecom_order-transactions": "1.0.80",
51
51
  "@wix/ecom_orders": "1.0.156",
52
52
  "@wix/ecom_orders-settings": "1.0.55",
53
- "@wix/ecom_payment-settings": "1.0.82",
53
+ "@wix/ecom_payment-settings": "1.0.83",
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",
@@ -61,7 +61,7 @@
61
61
  "@wix/ecom_tip-settings": "1.0.4",
62
62
  "@wix/ecom_tippable-staff": "1.0.4",
63
63
  "@wix/ecom_tips": "1.0.6",
64
- "@wix/ecom_totals-calculator": "1.0.23",
64
+ "@wix/ecom_totals-calculator": "1.0.24",
65
65
  "@wix/ecom_validations": "1.0.47"
66
66
  },
67
67
  "devDependencies": {
@@ -87,5 +87,5 @@
87
87
  "fqdn": ""
88
88
  }
89
89
  },
90
- "falconPackageHash": "b11d982d92211e0c4a57554986b32632aacf85dfb9ec583247736487"
90
+ "falconPackageHash": "4f53e3e326dd34b5f73d05f64e5ce4696437604602e7e430380303be"
91
91
  }
@@ -6673,6 +6673,30 @@ declare enum ChargeType$6 {
6673
6673
  HANDLING_FEE = "HANDLING_FEE",
6674
6674
  INSURANCE = "INSURANCE"
6675
6675
  }
6676
+ interface DeliveryAllocation$5 {
6677
+ /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
6678
+ deliveryCarrier?: Carrier$5;
6679
+ /** The delivery region that are relevant for this delivery solution. */
6680
+ deliveryRegion?: Region$5;
6681
+ /** Populated if the delivery solution is a partially supplied by this carrier. */
6682
+ applicableLineItems?: ApplicableLineItems$5;
6683
+ }
6684
+ interface Carrier$5 {
6685
+ /** The carrier app id */
6686
+ appId?: string | null;
6687
+ /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
6688
+ code?: string;
6689
+ }
6690
+ interface Region$5 {
6691
+ /** The delivery region id. */
6692
+ _id?: string | null;
6693
+ /** The delivery region name. */
6694
+ name?: string | null;
6695
+ }
6696
+ interface ApplicableLineItems$5 {
6697
+ /** Line items that the delivery solution is for. */
6698
+ lineItemIds?: string[];
6699
+ }
6676
6700
  interface CarrierServiceOption$4 {
6677
6701
  /** Carrier ID. */
6678
6702
  carrierId?: string;
@@ -6707,30 +6731,6 @@ interface OtherCharge$4 {
6707
6731
  /** Price of added cost. */
6708
6732
  price?: MultiCurrencyPrice$4;
6709
6733
  }
6710
- interface DeliveryAllocation$5 {
6711
- /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
6712
- deliveryCarrier?: Carrier$5;
6713
- /** The delivery region that are relevant for this delivery solution. */
6714
- deliveryRegion?: Region$5;
6715
- /** Populated if the delivery solution is a partially supplied by this carrier. */
6716
- applicableLineItems?: ApplicableLineItems$5;
6717
- }
6718
- interface Carrier$5 {
6719
- /** The carrier app id */
6720
- appId?: string | null;
6721
- /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
6722
- code?: string;
6723
- }
6724
- interface Region$5 {
6725
- /** The delivery region id. */
6726
- _id?: string | null;
6727
- /** The delivery region name. */
6728
- name?: string | null;
6729
- }
6730
- interface ApplicableLineItems$5 {
6731
- /** Line items that the delivery solution is for. */
6732
- lineItemIds?: string[];
6733
- }
6734
6734
  interface AppliedDiscount$6 extends AppliedDiscountDiscountSourceOneOf$6 {
6735
6735
  /** Coupon details. */
6736
6736
  coupon?: V1Coupon$1;
@@ -7663,6 +7663,16 @@ interface SelectedCarrierServiceOptionOtherChargeNonNullableFields$3 {
7663
7663
  type: ChargeType$6;
7664
7664
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$3;
7665
7665
  }
7666
+ interface CarrierNonNullableFields$4 {
7667
+ code: string;
7668
+ }
7669
+ interface ApplicableLineItemsNonNullableFields$4 {
7670
+ lineItemIds: string[];
7671
+ }
7672
+ interface DeliveryAllocationNonNullableFields$4 {
7673
+ deliveryCarrier?: CarrierNonNullableFields$4;
7674
+ applicableLineItems?: ApplicableLineItemsNonNullableFields$4;
7675
+ }
7666
7676
  interface SelectedCarrierServiceOptionNonNullableFields$3 {
7667
7677
  code: string;
7668
7678
  title: string;
@@ -7670,6 +7680,7 @@ interface SelectedCarrierServiceOptionNonNullableFields$3 {
7670
7680
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$3;
7671
7681
  requestedShippingOption: boolean;
7672
7682
  otherCharges: SelectedCarrierServiceOptionOtherChargeNonNullableFields$3[];
7683
+ deliveryAllocations: DeliveryAllocationNonNullableFields$4[];
7673
7684
  }
7674
7685
  interface OtherChargeNonNullableFields$3 {
7675
7686
  type: ChargeType$6;
@@ -7679,16 +7690,6 @@ interface ShippingPriceNonNullableFields$5 {
7679
7690
  price?: MultiCurrencyPriceNonNullableFields$3;
7680
7691
  otherCharges: OtherChargeNonNullableFields$3[];
7681
7692
  }
7682
- interface CarrierNonNullableFields$4 {
7683
- code: string;
7684
- }
7685
- interface ApplicableLineItemsNonNullableFields$4 {
7686
- lineItemIds: string[];
7687
- }
7688
- interface DeliveryAllocationNonNullableFields$4 {
7689
- deliveryCarrier?: CarrierNonNullableFields$4;
7690
- applicableLineItems?: ApplicableLineItemsNonNullableFields$4;
7691
- }
7692
7693
  interface ShippingOptionNonNullableFields$5 {
7693
7694
  code: string;
7694
7695
  title: string;
@@ -9489,6 +9490,30 @@ declare enum ChargeType$5 {
9489
9490
  HANDLING_FEE = "HANDLING_FEE",
9490
9491
  INSURANCE = "INSURANCE"
9491
9492
  }
9493
+ interface DeliveryAllocation$4 {
9494
+ /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
9495
+ deliveryCarrier?: Carrier$4;
9496
+ /** The delivery region that are relevant for this delivery solution. */
9497
+ deliveryRegion?: Region$4;
9498
+ /** Populated if the delivery solution is a partially supplied by this carrier. */
9499
+ applicableLineItems?: ApplicableLineItems$4;
9500
+ }
9501
+ interface Carrier$4 {
9502
+ /** The carrier app id */
9503
+ appId?: string | null;
9504
+ /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
9505
+ code?: string;
9506
+ }
9507
+ interface Region$4 {
9508
+ /** The delivery region id. */
9509
+ _id?: string | null;
9510
+ /** The delivery region name. */
9511
+ name?: string | null;
9512
+ }
9513
+ interface ApplicableLineItems$4 {
9514
+ /** Line items that the delivery solution is for. */
9515
+ lineItemIds?: string[];
9516
+ }
9492
9517
  interface CarrierServiceOption$3 {
9493
9518
  /** Carrier ID. */
9494
9519
  carrierId?: string;
@@ -9523,30 +9548,6 @@ interface OtherCharge$3 {
9523
9548
  /** Price of added cost. */
9524
9549
  price?: MultiCurrencyPrice$3;
9525
9550
  }
9526
- interface DeliveryAllocation$4 {
9527
- /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
9528
- deliveryCarrier?: Carrier$4;
9529
- /** The delivery region that are relevant for this delivery solution. */
9530
- deliveryRegion?: Region$4;
9531
- /** Populated if the delivery solution is a partially supplied by this carrier. */
9532
- applicableLineItems?: ApplicableLineItems$4;
9533
- }
9534
- interface Carrier$4 {
9535
- /** The carrier app id */
9536
- appId?: string | null;
9537
- /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
9538
- code?: string;
9539
- }
9540
- interface Region$4 {
9541
- /** The delivery region id. */
9542
- _id?: string | null;
9543
- /** The delivery region name. */
9544
- name?: string | null;
9545
- }
9546
- interface ApplicableLineItems$4 {
9547
- /** Line items that the delivery solution is for. */
9548
- lineItemIds?: string[];
9549
- }
9550
9551
  interface AppliedDiscount$5 extends AppliedDiscountDiscountSourceOneOf$5 {
9551
9552
  /** Coupon details. */
9552
9553
  coupon?: V1Coupon;
@@ -10479,6 +10480,16 @@ interface SelectedCarrierServiceOptionOtherChargeNonNullableFields$2 {
10479
10480
  type: ChargeType$5;
10480
10481
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$2;
10481
10482
  }
10483
+ interface CarrierNonNullableFields$3 {
10484
+ code: string;
10485
+ }
10486
+ interface ApplicableLineItemsNonNullableFields$3 {
10487
+ lineItemIds: string[];
10488
+ }
10489
+ interface DeliveryAllocationNonNullableFields$3 {
10490
+ deliveryCarrier?: CarrierNonNullableFields$3;
10491
+ applicableLineItems?: ApplicableLineItemsNonNullableFields$3;
10492
+ }
10482
10493
  interface SelectedCarrierServiceOptionNonNullableFields$2 {
10483
10494
  code: string;
10484
10495
  title: string;
@@ -10486,6 +10497,7 @@ interface SelectedCarrierServiceOptionNonNullableFields$2 {
10486
10497
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$2;
10487
10498
  requestedShippingOption: boolean;
10488
10499
  otherCharges: SelectedCarrierServiceOptionOtherChargeNonNullableFields$2[];
10500
+ deliveryAllocations: DeliveryAllocationNonNullableFields$3[];
10489
10501
  }
10490
10502
  interface OtherChargeNonNullableFields$2 {
10491
10503
  type: ChargeType$5;
@@ -10495,16 +10507,6 @@ interface ShippingPriceNonNullableFields$4 {
10495
10507
  price?: MultiCurrencyPriceNonNullableFields$2;
10496
10508
  otherCharges: OtherChargeNonNullableFields$2[];
10497
10509
  }
10498
- interface CarrierNonNullableFields$3 {
10499
- code: string;
10500
- }
10501
- interface ApplicableLineItemsNonNullableFields$3 {
10502
- lineItemIds: string[];
10503
- }
10504
- interface DeliveryAllocationNonNullableFields$3 {
10505
- deliveryCarrier?: CarrierNonNullableFields$3;
10506
- applicableLineItems?: ApplicableLineItemsNonNullableFields$3;
10507
- }
10508
10510
  interface ShippingOptionNonNullableFields$4 {
10509
10511
  code: string;
10510
10512
  title: string;
@@ -11879,6 +11881,30 @@ declare enum ChargeType$4 {
11879
11881
  HANDLING_FEE = "HANDLING_FEE",
11880
11882
  INSURANCE = "INSURANCE"
11881
11883
  }
11884
+ interface DeliveryAllocation$3 {
11885
+ /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
11886
+ deliveryCarrier?: Carrier$3;
11887
+ /** The delivery region that are relevant for this delivery solution. */
11888
+ deliveryRegion?: Region$3;
11889
+ /** Populated if the delivery solution is a partially supplied by this carrier. */
11890
+ applicableLineItems?: ApplicableLineItems$3;
11891
+ }
11892
+ interface Carrier$3 {
11893
+ /** The carrier app id */
11894
+ appId?: string | null;
11895
+ /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
11896
+ code?: string;
11897
+ }
11898
+ interface Region$3 {
11899
+ /** The delivery region id. */
11900
+ _id?: string | null;
11901
+ /** The delivery region name. */
11902
+ name?: string | null;
11903
+ }
11904
+ interface ApplicableLineItems$3 {
11905
+ /** Line items that the delivery solution is for. */
11906
+ lineItemIds?: string[];
11907
+ }
11882
11908
  interface ShippingRegion$4 {
11883
11909
  /**
11884
11910
  * Shipping region ID.
@@ -11922,30 +11948,6 @@ interface OtherCharge$2 {
11922
11948
  /** Price of added cost. */
11923
11949
  price?: MultiCurrencyPrice$2;
11924
11950
  }
11925
- interface DeliveryAllocation$3 {
11926
- /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
11927
- deliveryCarrier?: Carrier$3;
11928
- /** The delivery region that are relevant for this delivery solution. */
11929
- deliveryRegion?: Region$3;
11930
- /** Populated if the delivery solution is a partially supplied by this carrier. */
11931
- applicableLineItems?: ApplicableLineItems$3;
11932
- }
11933
- interface Carrier$3 {
11934
- /** The carrier app id */
11935
- appId?: string | null;
11936
- /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
11937
- code?: string;
11938
- }
11939
- interface Region$3 {
11940
- /** The delivery region id. */
11941
- _id?: string | null;
11942
- /** The delivery region name. */
11943
- name?: string | null;
11944
- }
11945
- interface ApplicableLineItems$3 {
11946
- /** Line items that the delivery solution is for. */
11947
- lineItemIds?: string[];
11948
- }
11949
11951
  interface BuyerInfo$5 extends BuyerInfoIdOneOf$3 {
11950
11952
  /**
11951
11953
  * Visitor ID - if the buyer is **not** a site member.
@@ -13619,6 +13621,16 @@ interface SelectedCarrierServiceOptionOtherChargeNonNullableFields$1 {
13619
13621
  type: ChargeType$4;
13620
13622
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$1;
13621
13623
  }
13624
+ interface CarrierNonNullableFields$2 {
13625
+ code: string;
13626
+ }
13627
+ interface ApplicableLineItemsNonNullableFields$2 {
13628
+ lineItemIds: string[];
13629
+ }
13630
+ interface DeliveryAllocationNonNullableFields$2 {
13631
+ deliveryCarrier?: CarrierNonNullableFields$2;
13632
+ applicableLineItems?: ApplicableLineItemsNonNullableFields$2;
13633
+ }
13622
13634
  interface SelectedCarrierServiceOptionNonNullableFields$1 {
13623
13635
  code: string;
13624
13636
  title: string;
@@ -13626,6 +13638,7 @@ interface SelectedCarrierServiceOptionNonNullableFields$1 {
13626
13638
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$1;
13627
13639
  requestedShippingOption: boolean;
13628
13640
  otherCharges: SelectedCarrierServiceOptionOtherChargeNonNullableFields$1[];
13641
+ deliveryAllocations: DeliveryAllocationNonNullableFields$2[];
13629
13642
  }
13630
13643
  interface ShippingRegionNonNullableFields$1 {
13631
13644
  _id: string;
@@ -13639,16 +13652,6 @@ interface ShippingPriceNonNullableFields$3 {
13639
13652
  price?: MultiCurrencyPriceNonNullableFields$1;
13640
13653
  otherCharges: OtherChargeNonNullableFields$1[];
13641
13654
  }
13642
- interface CarrierNonNullableFields$2 {
13643
- code: string;
13644
- }
13645
- interface ApplicableLineItemsNonNullableFields$2 {
13646
- lineItemIds: string[];
13647
- }
13648
- interface DeliveryAllocationNonNullableFields$2 {
13649
- deliveryCarrier?: CarrierNonNullableFields$2;
13650
- applicableLineItems?: ApplicableLineItemsNonNullableFields$2;
13651
- }
13652
13655
  interface ShippingOptionNonNullableFields$3 {
13653
13656
  code: string;
13654
13657
  title: string;
@@ -16243,6 +16246,30 @@ declare enum ChargeType$3 {
16243
16246
  HANDLING_FEE = "HANDLING_FEE",
16244
16247
  INSURANCE = "INSURANCE"
16245
16248
  }
16249
+ interface DeliveryAllocation$2 {
16250
+ /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
16251
+ deliveryCarrier?: Carrier$2;
16252
+ /** The delivery region that are relevant for this delivery solution. */
16253
+ deliveryRegion?: Region$2;
16254
+ /** Populated if the delivery solution is a partially supplied by this carrier. */
16255
+ applicableLineItems?: ApplicableLineItems$2;
16256
+ }
16257
+ interface Carrier$2 {
16258
+ /** The carrier app id */
16259
+ appId?: string | null;
16260
+ /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
16261
+ code?: string;
16262
+ }
16263
+ interface Region$2 {
16264
+ /** The delivery region id. */
16265
+ _id?: string | null;
16266
+ /** The delivery region name. */
16267
+ name?: string | null;
16268
+ }
16269
+ interface ApplicableLineItems$2 {
16270
+ /** Line items that the delivery solution is for. */
16271
+ lineItemIds?: string[];
16272
+ }
16246
16273
  interface ShippingRegion$3 {
16247
16274
  /**
16248
16275
  * Shipping region ID.
@@ -16286,30 +16313,6 @@ interface OtherCharge$1 {
16286
16313
  /** Price of added cost. */
16287
16314
  price?: MultiCurrencyPrice$1;
16288
16315
  }
16289
- interface DeliveryAllocation$2 {
16290
- /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
16291
- deliveryCarrier?: Carrier$2;
16292
- /** The delivery region that are relevant for this delivery solution. */
16293
- deliveryRegion?: Region$2;
16294
- /** Populated if the delivery solution is a partially supplied by this carrier. */
16295
- applicableLineItems?: ApplicableLineItems$2;
16296
- }
16297
- interface Carrier$2 {
16298
- /** The carrier app id */
16299
- appId?: string | null;
16300
- /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
16301
- code?: string;
16302
- }
16303
- interface Region$2 {
16304
- /** The delivery region id. */
16305
- _id?: string | null;
16306
- /** The delivery region name. */
16307
- name?: string | null;
16308
- }
16309
- interface ApplicableLineItems$2 {
16310
- /** Line items that the delivery solution is for. */
16311
- lineItemIds?: string[];
16312
- }
16313
16316
  interface BuyerInfo$4 extends BuyerInfoIdOneOf$2 {
16314
16317
  /**
16315
16318
  * Visitor ID (if site visitor is **not** a member).
@@ -35370,11 +35373,11 @@ declare enum SubscriptionFrequency {
35370
35373
  declare enum PaymentOptionType {
35371
35374
  /** The entire payment for this item happens as part of the checkout. */
35372
35375
  FULL_PAYMENT_ONLINE = "FULL_PAYMENT_ONLINE",
35373
- /** The entire payment for this item happens after the checkout. For example, when using cash, check, or other offline payment methods. */
35376
+ /** The entire payment for this item happens after checkout. For example, when using cash, check, or other offline payment methods. */
35374
35377
  FULL_PAYMENT_OFFLINE = "FULL_PAYMENT_OFFLINE",
35375
35378
  /** Payment for this item is done by charging a membership. When selected, `price` is `0`. */
35376
35379
  MEMBERSHIP = "MEMBERSHIP",
35377
- /** Partial payment to be paid upfront during the checkout. Initial amount to be paid for each line item is specified in `depositAmount`. */
35380
+ /** Partial payment to be paid upfront during checkout. The initial amount to be paid for each line item is specified in `depositAmount`. */
35378
35381
  DEPOSIT_ONLINE = "DEPOSIT_ONLINE",
35379
35382
  /** Payment for this item can only be done by charging a membership and must be manually redeemed in the dashboard by the site admin. When selected, `price` is `0`. */
35380
35383
  MEMBERSHIP_OFFLINE = "MEMBERSHIP_OFFLINE"
@@ -36379,6 +36382,16 @@ interface SelectedCarrierServiceOptionOtherChargeNonNullableFields {
36379
36382
  type: ChargeType$1;
36380
36383
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields;
36381
36384
  }
36385
+ interface CarrierNonNullableFields$1 {
36386
+ code: string;
36387
+ }
36388
+ interface ApplicableLineItemsNonNullableFields$1 {
36389
+ lineItemIds: string[];
36390
+ }
36391
+ interface DeliveryAllocationNonNullableFields$1 {
36392
+ deliveryCarrier?: CarrierNonNullableFields$1;
36393
+ applicableLineItems?: ApplicableLineItemsNonNullableFields$1;
36394
+ }
36382
36395
  interface SelectedCarrierServiceOptionNonNullableFields {
36383
36396
  code: string;
36384
36397
  title: string;
@@ -36386,6 +36399,7 @@ interface SelectedCarrierServiceOptionNonNullableFields {
36386
36399
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields;
36387
36400
  requestedShippingOption: boolean;
36388
36401
  otherCharges: SelectedCarrierServiceOptionOtherChargeNonNullableFields[];
36402
+ deliveryAllocations: DeliveryAllocationNonNullableFields$1[];
36389
36403
  }
36390
36404
  interface OtherChargeNonNullableFields {
36391
36405
  type: ChargeType$1;
@@ -36395,16 +36409,6 @@ interface ShippingPriceNonNullableFields {
36395
36409
  price?: MultiCurrencyPriceNonNullableFields;
36396
36410
  otherCharges: OtherChargeNonNullableFields[];
36397
36411
  }
36398
- interface CarrierNonNullableFields$1 {
36399
- code: string;
36400
- }
36401
- interface ApplicableLineItemsNonNullableFields$1 {
36402
- lineItemIds: string[];
36403
- }
36404
- interface DeliveryAllocationNonNullableFields$1 {
36405
- deliveryCarrier?: CarrierNonNullableFields$1;
36406
- applicableLineItems?: ApplicableLineItemsNonNullableFields$1;
36407
- }
36408
36412
  interface ShippingOptionNonNullableFields {
36409
36413
  code: string;
36410
36414
  title: string;
@@ -6673,6 +6673,30 @@ declare enum ChargeType$6 {
6673
6673
  HANDLING_FEE = "HANDLING_FEE",
6674
6674
  INSURANCE = "INSURANCE"
6675
6675
  }
6676
+ interface DeliveryAllocation$5 {
6677
+ /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
6678
+ deliveryCarrier?: Carrier$5;
6679
+ /** The delivery region that are relevant for this delivery solution. */
6680
+ deliveryRegion?: Region$5;
6681
+ /** Populated if the delivery solution is a partially supplied by this carrier. */
6682
+ applicableLineItems?: ApplicableLineItems$5;
6683
+ }
6684
+ interface Carrier$5 {
6685
+ /** The carrier app id */
6686
+ appId?: string | null;
6687
+ /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
6688
+ code?: string;
6689
+ }
6690
+ interface Region$5 {
6691
+ /** The delivery region id. */
6692
+ _id?: string | null;
6693
+ /** The delivery region name. */
6694
+ name?: string | null;
6695
+ }
6696
+ interface ApplicableLineItems$5 {
6697
+ /** Line items that the delivery solution is for. */
6698
+ lineItemIds?: string[];
6699
+ }
6676
6700
  interface CarrierServiceOption$4 {
6677
6701
  /** Carrier ID. */
6678
6702
  carrierId?: string;
@@ -6707,30 +6731,6 @@ interface OtherCharge$4 {
6707
6731
  /** Price of added cost. */
6708
6732
  price?: MultiCurrencyPrice$4;
6709
6733
  }
6710
- interface DeliveryAllocation$5 {
6711
- /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
6712
- deliveryCarrier?: Carrier$5;
6713
- /** The delivery region that are relevant for this delivery solution. */
6714
- deliveryRegion?: Region$5;
6715
- /** Populated if the delivery solution is a partially supplied by this carrier. */
6716
- applicableLineItems?: ApplicableLineItems$5;
6717
- }
6718
- interface Carrier$5 {
6719
- /** The carrier app id */
6720
- appId?: string | null;
6721
- /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
6722
- code?: string;
6723
- }
6724
- interface Region$5 {
6725
- /** The delivery region id. */
6726
- _id?: string | null;
6727
- /** The delivery region name. */
6728
- name?: string | null;
6729
- }
6730
- interface ApplicableLineItems$5 {
6731
- /** Line items that the delivery solution is for. */
6732
- lineItemIds?: string[];
6733
- }
6734
6734
  interface AppliedDiscount$6 extends AppliedDiscountDiscountSourceOneOf$6 {
6735
6735
  /** Coupon details. */
6736
6736
  coupon?: V1Coupon$1;
@@ -7663,6 +7663,16 @@ interface SelectedCarrierServiceOptionOtherChargeNonNullableFields$3 {
7663
7663
  type: ChargeType$6;
7664
7664
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$3;
7665
7665
  }
7666
+ interface CarrierNonNullableFields$4 {
7667
+ code: string;
7668
+ }
7669
+ interface ApplicableLineItemsNonNullableFields$4 {
7670
+ lineItemIds: string[];
7671
+ }
7672
+ interface DeliveryAllocationNonNullableFields$4 {
7673
+ deliveryCarrier?: CarrierNonNullableFields$4;
7674
+ applicableLineItems?: ApplicableLineItemsNonNullableFields$4;
7675
+ }
7666
7676
  interface SelectedCarrierServiceOptionNonNullableFields$3 {
7667
7677
  code: string;
7668
7678
  title: string;
@@ -7670,6 +7680,7 @@ interface SelectedCarrierServiceOptionNonNullableFields$3 {
7670
7680
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$3;
7671
7681
  requestedShippingOption: boolean;
7672
7682
  otherCharges: SelectedCarrierServiceOptionOtherChargeNonNullableFields$3[];
7683
+ deliveryAllocations: DeliveryAllocationNonNullableFields$4[];
7673
7684
  }
7674
7685
  interface OtherChargeNonNullableFields$3 {
7675
7686
  type: ChargeType$6;
@@ -7679,16 +7690,6 @@ interface ShippingPriceNonNullableFields$5 {
7679
7690
  price?: MultiCurrencyPriceNonNullableFields$3;
7680
7691
  otherCharges: OtherChargeNonNullableFields$3[];
7681
7692
  }
7682
- interface CarrierNonNullableFields$4 {
7683
- code: string;
7684
- }
7685
- interface ApplicableLineItemsNonNullableFields$4 {
7686
- lineItemIds: string[];
7687
- }
7688
- interface DeliveryAllocationNonNullableFields$4 {
7689
- deliveryCarrier?: CarrierNonNullableFields$4;
7690
- applicableLineItems?: ApplicableLineItemsNonNullableFields$4;
7691
- }
7692
7693
  interface ShippingOptionNonNullableFields$5 {
7693
7694
  code: string;
7694
7695
  title: string;
@@ -9489,6 +9490,30 @@ declare enum ChargeType$5 {
9489
9490
  HANDLING_FEE = "HANDLING_FEE",
9490
9491
  INSURANCE = "INSURANCE"
9491
9492
  }
9493
+ interface DeliveryAllocation$4 {
9494
+ /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
9495
+ deliveryCarrier?: Carrier$4;
9496
+ /** The delivery region that are relevant for this delivery solution. */
9497
+ deliveryRegion?: Region$4;
9498
+ /** Populated if the delivery solution is a partially supplied by this carrier. */
9499
+ applicableLineItems?: ApplicableLineItems$4;
9500
+ }
9501
+ interface Carrier$4 {
9502
+ /** The carrier app id */
9503
+ appId?: string | null;
9504
+ /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
9505
+ code?: string;
9506
+ }
9507
+ interface Region$4 {
9508
+ /** The delivery region id. */
9509
+ _id?: string | null;
9510
+ /** The delivery region name. */
9511
+ name?: string | null;
9512
+ }
9513
+ interface ApplicableLineItems$4 {
9514
+ /** Line items that the delivery solution is for. */
9515
+ lineItemIds?: string[];
9516
+ }
9492
9517
  interface CarrierServiceOption$3 {
9493
9518
  /** Carrier ID. */
9494
9519
  carrierId?: string;
@@ -9523,30 +9548,6 @@ interface OtherCharge$3 {
9523
9548
  /** Price of added cost. */
9524
9549
  price?: MultiCurrencyPrice$3;
9525
9550
  }
9526
- interface DeliveryAllocation$4 {
9527
- /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
9528
- deliveryCarrier?: Carrier$4;
9529
- /** The delivery region that are relevant for this delivery solution. */
9530
- deliveryRegion?: Region$4;
9531
- /** Populated if the delivery solution is a partially supplied by this carrier. */
9532
- applicableLineItems?: ApplicableLineItems$4;
9533
- }
9534
- interface Carrier$4 {
9535
- /** The carrier app id */
9536
- appId?: string | null;
9537
- /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
9538
- code?: string;
9539
- }
9540
- interface Region$4 {
9541
- /** The delivery region id. */
9542
- _id?: string | null;
9543
- /** The delivery region name. */
9544
- name?: string | null;
9545
- }
9546
- interface ApplicableLineItems$4 {
9547
- /** Line items that the delivery solution is for. */
9548
- lineItemIds?: string[];
9549
- }
9550
9551
  interface AppliedDiscount$5 extends AppliedDiscountDiscountSourceOneOf$5 {
9551
9552
  /** Coupon details. */
9552
9553
  coupon?: V1Coupon;
@@ -10479,6 +10480,16 @@ interface SelectedCarrierServiceOptionOtherChargeNonNullableFields$2 {
10479
10480
  type: ChargeType$5;
10480
10481
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$2;
10481
10482
  }
10483
+ interface CarrierNonNullableFields$3 {
10484
+ code: string;
10485
+ }
10486
+ interface ApplicableLineItemsNonNullableFields$3 {
10487
+ lineItemIds: string[];
10488
+ }
10489
+ interface DeliveryAllocationNonNullableFields$3 {
10490
+ deliveryCarrier?: CarrierNonNullableFields$3;
10491
+ applicableLineItems?: ApplicableLineItemsNonNullableFields$3;
10492
+ }
10482
10493
  interface SelectedCarrierServiceOptionNonNullableFields$2 {
10483
10494
  code: string;
10484
10495
  title: string;
@@ -10486,6 +10497,7 @@ interface SelectedCarrierServiceOptionNonNullableFields$2 {
10486
10497
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$2;
10487
10498
  requestedShippingOption: boolean;
10488
10499
  otherCharges: SelectedCarrierServiceOptionOtherChargeNonNullableFields$2[];
10500
+ deliveryAllocations: DeliveryAllocationNonNullableFields$3[];
10489
10501
  }
10490
10502
  interface OtherChargeNonNullableFields$2 {
10491
10503
  type: ChargeType$5;
@@ -10495,16 +10507,6 @@ interface ShippingPriceNonNullableFields$4 {
10495
10507
  price?: MultiCurrencyPriceNonNullableFields$2;
10496
10508
  otherCharges: OtherChargeNonNullableFields$2[];
10497
10509
  }
10498
- interface CarrierNonNullableFields$3 {
10499
- code: string;
10500
- }
10501
- interface ApplicableLineItemsNonNullableFields$3 {
10502
- lineItemIds: string[];
10503
- }
10504
- interface DeliveryAllocationNonNullableFields$3 {
10505
- deliveryCarrier?: CarrierNonNullableFields$3;
10506
- applicableLineItems?: ApplicableLineItemsNonNullableFields$3;
10507
- }
10508
10510
  interface ShippingOptionNonNullableFields$4 {
10509
10511
  code: string;
10510
10512
  title: string;
@@ -11879,6 +11881,30 @@ declare enum ChargeType$4 {
11879
11881
  HANDLING_FEE = "HANDLING_FEE",
11880
11882
  INSURANCE = "INSURANCE"
11881
11883
  }
11884
+ interface DeliveryAllocation$3 {
11885
+ /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
11886
+ deliveryCarrier?: Carrier$3;
11887
+ /** The delivery region that are relevant for this delivery solution. */
11888
+ deliveryRegion?: Region$3;
11889
+ /** Populated if the delivery solution is a partially supplied by this carrier. */
11890
+ applicableLineItems?: ApplicableLineItems$3;
11891
+ }
11892
+ interface Carrier$3 {
11893
+ /** The carrier app id */
11894
+ appId?: string | null;
11895
+ /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
11896
+ code?: string;
11897
+ }
11898
+ interface Region$3 {
11899
+ /** The delivery region id. */
11900
+ _id?: string | null;
11901
+ /** The delivery region name. */
11902
+ name?: string | null;
11903
+ }
11904
+ interface ApplicableLineItems$3 {
11905
+ /** Line items that the delivery solution is for. */
11906
+ lineItemIds?: string[];
11907
+ }
11882
11908
  interface ShippingRegion$4 {
11883
11909
  /**
11884
11910
  * Shipping region ID.
@@ -11922,30 +11948,6 @@ interface OtherCharge$2 {
11922
11948
  /** Price of added cost. */
11923
11949
  price?: MultiCurrencyPrice$2;
11924
11950
  }
11925
- interface DeliveryAllocation$3 {
11926
- /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
11927
- deliveryCarrier?: Carrier$3;
11928
- /** The delivery region that are relevant for this delivery solution. */
11929
- deliveryRegion?: Region$3;
11930
- /** Populated if the delivery solution is a partially supplied by this carrier. */
11931
- applicableLineItems?: ApplicableLineItems$3;
11932
- }
11933
- interface Carrier$3 {
11934
- /** The carrier app id */
11935
- appId?: string | null;
11936
- /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
11937
- code?: string;
11938
- }
11939
- interface Region$3 {
11940
- /** The delivery region id. */
11941
- _id?: string | null;
11942
- /** The delivery region name. */
11943
- name?: string | null;
11944
- }
11945
- interface ApplicableLineItems$3 {
11946
- /** Line items that the delivery solution is for. */
11947
- lineItemIds?: string[];
11948
- }
11949
11951
  interface BuyerInfo$5 extends BuyerInfoIdOneOf$3 {
11950
11952
  /**
11951
11953
  * Visitor ID - if the buyer is **not** a site member.
@@ -13619,6 +13621,16 @@ interface SelectedCarrierServiceOptionOtherChargeNonNullableFields$1 {
13619
13621
  type: ChargeType$4;
13620
13622
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$1;
13621
13623
  }
13624
+ interface CarrierNonNullableFields$2 {
13625
+ code: string;
13626
+ }
13627
+ interface ApplicableLineItemsNonNullableFields$2 {
13628
+ lineItemIds: string[];
13629
+ }
13630
+ interface DeliveryAllocationNonNullableFields$2 {
13631
+ deliveryCarrier?: CarrierNonNullableFields$2;
13632
+ applicableLineItems?: ApplicableLineItemsNonNullableFields$2;
13633
+ }
13622
13634
  interface SelectedCarrierServiceOptionNonNullableFields$1 {
13623
13635
  code: string;
13624
13636
  title: string;
@@ -13626,6 +13638,7 @@ interface SelectedCarrierServiceOptionNonNullableFields$1 {
13626
13638
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$1;
13627
13639
  requestedShippingOption: boolean;
13628
13640
  otherCharges: SelectedCarrierServiceOptionOtherChargeNonNullableFields$1[];
13641
+ deliveryAllocations: DeliveryAllocationNonNullableFields$2[];
13629
13642
  }
13630
13643
  interface ShippingRegionNonNullableFields$1 {
13631
13644
  _id: string;
@@ -13639,16 +13652,6 @@ interface ShippingPriceNonNullableFields$3 {
13639
13652
  price?: MultiCurrencyPriceNonNullableFields$1;
13640
13653
  otherCharges: OtherChargeNonNullableFields$1[];
13641
13654
  }
13642
- interface CarrierNonNullableFields$2 {
13643
- code: string;
13644
- }
13645
- interface ApplicableLineItemsNonNullableFields$2 {
13646
- lineItemIds: string[];
13647
- }
13648
- interface DeliveryAllocationNonNullableFields$2 {
13649
- deliveryCarrier?: CarrierNonNullableFields$2;
13650
- applicableLineItems?: ApplicableLineItemsNonNullableFields$2;
13651
- }
13652
13655
  interface ShippingOptionNonNullableFields$3 {
13653
13656
  code: string;
13654
13657
  title: string;
@@ -16243,6 +16246,30 @@ declare enum ChargeType$3 {
16243
16246
  HANDLING_FEE = "HANDLING_FEE",
16244
16247
  INSURANCE = "INSURANCE"
16245
16248
  }
16249
+ interface DeliveryAllocation$2 {
16250
+ /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
16251
+ deliveryCarrier?: Carrier$2;
16252
+ /** The delivery region that are relevant for this delivery solution. */
16253
+ deliveryRegion?: Region$2;
16254
+ /** Populated if the delivery solution is a partially supplied by this carrier. */
16255
+ applicableLineItems?: ApplicableLineItems$2;
16256
+ }
16257
+ interface Carrier$2 {
16258
+ /** The carrier app id */
16259
+ appId?: string | null;
16260
+ /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
16261
+ code?: string;
16262
+ }
16263
+ interface Region$2 {
16264
+ /** The delivery region id. */
16265
+ _id?: string | null;
16266
+ /** The delivery region name. */
16267
+ name?: string | null;
16268
+ }
16269
+ interface ApplicableLineItems$2 {
16270
+ /** Line items that the delivery solution is for. */
16271
+ lineItemIds?: string[];
16272
+ }
16246
16273
  interface ShippingRegion$3 {
16247
16274
  /**
16248
16275
  * Shipping region ID.
@@ -16286,30 +16313,6 @@ interface OtherCharge$1 {
16286
16313
  /** Price of added cost. */
16287
16314
  price?: MultiCurrencyPrice$1;
16288
16315
  }
16289
- interface DeliveryAllocation$2 {
16290
- /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
16291
- deliveryCarrier?: Carrier$2;
16292
- /** The delivery region that are relevant for this delivery solution. */
16293
- deliveryRegion?: Region$2;
16294
- /** Populated if the delivery solution is a partially supplied by this carrier. */
16295
- applicableLineItems?: ApplicableLineItems$2;
16296
- }
16297
- interface Carrier$2 {
16298
- /** The carrier app id */
16299
- appId?: string | null;
16300
- /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
16301
- code?: string;
16302
- }
16303
- interface Region$2 {
16304
- /** The delivery region id. */
16305
- _id?: string | null;
16306
- /** The delivery region name. */
16307
- name?: string | null;
16308
- }
16309
- interface ApplicableLineItems$2 {
16310
- /** Line items that the delivery solution is for. */
16311
- lineItemIds?: string[];
16312
- }
16313
16316
  interface BuyerInfo$4 extends BuyerInfoIdOneOf$2 {
16314
16317
  /**
16315
16318
  * Visitor ID (if site visitor is **not** a member).
@@ -35370,11 +35373,11 @@ declare enum SubscriptionFrequency {
35370
35373
  declare enum PaymentOptionType {
35371
35374
  /** The entire payment for this item happens as part of the checkout. */
35372
35375
  FULL_PAYMENT_ONLINE = "FULL_PAYMENT_ONLINE",
35373
- /** The entire payment for this item happens after the checkout. For example, when using cash, check, or other offline payment methods. */
35376
+ /** The entire payment for this item happens after checkout. For example, when using cash, check, or other offline payment methods. */
35374
35377
  FULL_PAYMENT_OFFLINE = "FULL_PAYMENT_OFFLINE",
35375
35378
  /** Payment for this item is done by charging a membership. When selected, `price` is `0`. */
35376
35379
  MEMBERSHIP = "MEMBERSHIP",
35377
- /** Partial payment to be paid upfront during the checkout. Initial amount to be paid for each line item is specified in `depositAmount`. */
35380
+ /** Partial payment to be paid upfront during checkout. The initial amount to be paid for each line item is specified in `depositAmount`. */
35378
35381
  DEPOSIT_ONLINE = "DEPOSIT_ONLINE",
35379
35382
  /** Payment for this item can only be done by charging a membership and must be manually redeemed in the dashboard by the site admin. When selected, `price` is `0`. */
35380
35383
  MEMBERSHIP_OFFLINE = "MEMBERSHIP_OFFLINE"
@@ -36379,6 +36382,16 @@ interface SelectedCarrierServiceOptionOtherChargeNonNullableFields {
36379
36382
  type: ChargeType$1;
36380
36383
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields;
36381
36384
  }
36385
+ interface CarrierNonNullableFields$1 {
36386
+ code: string;
36387
+ }
36388
+ interface ApplicableLineItemsNonNullableFields$1 {
36389
+ lineItemIds: string[];
36390
+ }
36391
+ interface DeliveryAllocationNonNullableFields$1 {
36392
+ deliveryCarrier?: CarrierNonNullableFields$1;
36393
+ applicableLineItems?: ApplicableLineItemsNonNullableFields$1;
36394
+ }
36382
36395
  interface SelectedCarrierServiceOptionNonNullableFields {
36383
36396
  code: string;
36384
36397
  title: string;
@@ -36386,6 +36399,7 @@ interface SelectedCarrierServiceOptionNonNullableFields {
36386
36399
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields;
36387
36400
  requestedShippingOption: boolean;
36388
36401
  otherCharges: SelectedCarrierServiceOptionOtherChargeNonNullableFields[];
36402
+ deliveryAllocations: DeliveryAllocationNonNullableFields$1[];
36389
36403
  }
36390
36404
  interface OtherChargeNonNullableFields {
36391
36405
  type: ChargeType$1;
@@ -36395,16 +36409,6 @@ interface ShippingPriceNonNullableFields {
36395
36409
  price?: MultiCurrencyPriceNonNullableFields;
36396
36410
  otherCharges: OtherChargeNonNullableFields[];
36397
36411
  }
36398
- interface CarrierNonNullableFields$1 {
36399
- code: string;
36400
- }
36401
- interface ApplicableLineItemsNonNullableFields$1 {
36402
- lineItemIds: string[];
36403
- }
36404
- interface DeliveryAllocationNonNullableFields$1 {
36405
- deliveryCarrier?: CarrierNonNullableFields$1;
36406
- applicableLineItems?: ApplicableLineItemsNonNullableFields$1;
36407
- }
36408
36412
  interface ShippingOptionNonNullableFields {
36409
36413
  code: string;
36410
36414
  title: string;
@@ -7257,6 +7257,16 @@ interface SelectedCarrierServiceOptionOtherChargeNonNullableFields$7 {
7257
7257
  type: ChargeType$b;
7258
7258
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$7;
7259
7259
  }
7260
+ interface CarrierNonNullableFields$9 {
7261
+ code: string;
7262
+ }
7263
+ interface ApplicableLineItemsNonNullableFields$9 {
7264
+ lineItemIds: string[];
7265
+ }
7266
+ interface DeliveryAllocationNonNullableFields$9 {
7267
+ deliveryCarrier?: CarrierNonNullableFields$9;
7268
+ applicableLineItems?: ApplicableLineItemsNonNullableFields$9;
7269
+ }
7260
7270
  interface SelectedCarrierServiceOptionNonNullableFields$7 {
7261
7271
  code: string;
7262
7272
  title: string;
@@ -7264,6 +7274,7 @@ interface SelectedCarrierServiceOptionNonNullableFields$7 {
7264
7274
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$7;
7265
7275
  requestedShippingOption: boolean;
7266
7276
  otherCharges: SelectedCarrierServiceOptionOtherChargeNonNullableFields$7[];
7277
+ deliveryAllocations: DeliveryAllocationNonNullableFields$9[];
7267
7278
  }
7268
7279
  interface OtherChargeNonNullableFields$7 {
7269
7280
  type: ChargeType$b;
@@ -7273,16 +7284,6 @@ interface ShippingPriceNonNullableFields$b {
7273
7284
  price?: MultiCurrencyPriceNonNullableFields$7;
7274
7285
  otherCharges: OtherChargeNonNullableFields$7[];
7275
7286
  }
7276
- interface CarrierNonNullableFields$9 {
7277
- code: string;
7278
- }
7279
- interface ApplicableLineItemsNonNullableFields$9 {
7280
- lineItemIds: string[];
7281
- }
7282
- interface DeliveryAllocationNonNullableFields$9 {
7283
- deliveryCarrier?: CarrierNonNullableFields$9;
7284
- applicableLineItems?: ApplicableLineItemsNonNullableFields$9;
7285
- }
7286
7287
  interface ShippingOptionNonNullableFields$b {
7287
7288
  code: string;
7288
7289
  title: string;
@@ -9249,6 +9250,16 @@ interface SelectedCarrierServiceOptionOtherChargeNonNullableFields$6 {
9249
9250
  type: ChargeType$a;
9250
9251
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$6;
9251
9252
  }
9253
+ interface CarrierNonNullableFields$8 {
9254
+ code: string;
9255
+ }
9256
+ interface ApplicableLineItemsNonNullableFields$8 {
9257
+ lineItemIds: string[];
9258
+ }
9259
+ interface DeliveryAllocationNonNullableFields$8 {
9260
+ deliveryCarrier?: CarrierNonNullableFields$8;
9261
+ applicableLineItems?: ApplicableLineItemsNonNullableFields$8;
9262
+ }
9252
9263
  interface SelectedCarrierServiceOptionNonNullableFields$6 {
9253
9264
  code: string;
9254
9265
  title: string;
@@ -9256,6 +9267,7 @@ interface SelectedCarrierServiceOptionNonNullableFields$6 {
9256
9267
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$6;
9257
9268
  requestedShippingOption: boolean;
9258
9269
  otherCharges: SelectedCarrierServiceOptionOtherChargeNonNullableFields$6[];
9270
+ deliveryAllocations: DeliveryAllocationNonNullableFields$8[];
9259
9271
  }
9260
9272
  interface OtherChargeNonNullableFields$6 {
9261
9273
  type: ChargeType$a;
@@ -9265,16 +9277,6 @@ interface ShippingPriceNonNullableFields$a {
9265
9277
  price?: MultiCurrencyPriceNonNullableFields$6;
9266
9278
  otherCharges: OtherChargeNonNullableFields$6[];
9267
9279
  }
9268
- interface CarrierNonNullableFields$8 {
9269
- code: string;
9270
- }
9271
- interface ApplicableLineItemsNonNullableFields$8 {
9272
- lineItemIds: string[];
9273
- }
9274
- interface DeliveryAllocationNonNullableFields$8 {
9275
- deliveryCarrier?: CarrierNonNullableFields$8;
9276
- applicableLineItems?: ApplicableLineItemsNonNullableFields$8;
9277
- }
9278
9280
  interface ShippingOptionNonNullableFields$a {
9279
9281
  code: string;
9280
9282
  title: string;
@@ -11333,6 +11335,16 @@ interface SelectedCarrierServiceOptionOtherChargeNonNullableFields$5 {
11333
11335
  type: ChargeType$9;
11334
11336
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$5;
11335
11337
  }
11338
+ interface CarrierNonNullableFields$7 {
11339
+ code: string;
11340
+ }
11341
+ interface ApplicableLineItemsNonNullableFields$7 {
11342
+ lineItemIds: string[];
11343
+ }
11344
+ interface DeliveryAllocationNonNullableFields$7 {
11345
+ deliveryCarrier?: CarrierNonNullableFields$7;
11346
+ applicableLineItems?: ApplicableLineItemsNonNullableFields$7;
11347
+ }
11336
11348
  interface SelectedCarrierServiceOptionNonNullableFields$5 {
11337
11349
  code: string;
11338
11350
  title: string;
@@ -11340,6 +11352,7 @@ interface SelectedCarrierServiceOptionNonNullableFields$5 {
11340
11352
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$5;
11341
11353
  requestedShippingOption: boolean;
11342
11354
  otherCharges: SelectedCarrierServiceOptionOtherChargeNonNullableFields$5[];
11355
+ deliveryAllocations: DeliveryAllocationNonNullableFields$7[];
11343
11356
  }
11344
11357
  interface OtherChargeNonNullableFields$5 {
11345
11358
  type: ChargeType$9;
@@ -11349,16 +11362,6 @@ interface ShippingPriceNonNullableFields$9 {
11349
11362
  price?: MultiCurrencyPriceNonNullableFields$5;
11350
11363
  otherCharges: OtherChargeNonNullableFields$5[];
11351
11364
  }
11352
- interface CarrierNonNullableFields$7 {
11353
- code: string;
11354
- }
11355
- interface ApplicableLineItemsNonNullableFields$7 {
11356
- lineItemIds: string[];
11357
- }
11358
- interface DeliveryAllocationNonNullableFields$7 {
11359
- deliveryCarrier?: CarrierNonNullableFields$7;
11360
- applicableLineItems?: ApplicableLineItemsNonNullableFields$7;
11361
- }
11362
11365
  interface ShippingOptionNonNullableFields$9 {
11363
11366
  code: string;
11364
11367
  title: string;
@@ -13285,6 +13288,16 @@ interface SelectedCarrierServiceOptionOtherChargeNonNullableFields$4 {
13285
13288
  type: ChargeType$8;
13286
13289
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$4;
13287
13290
  }
13291
+ interface CarrierNonNullableFields$6 {
13292
+ code: string;
13293
+ }
13294
+ interface ApplicableLineItemsNonNullableFields$6 {
13295
+ lineItemIds: string[];
13296
+ }
13297
+ interface DeliveryAllocationNonNullableFields$6 {
13298
+ deliveryCarrier?: CarrierNonNullableFields$6;
13299
+ applicableLineItems?: ApplicableLineItemsNonNullableFields$6;
13300
+ }
13288
13301
  interface SelectedCarrierServiceOptionNonNullableFields$4 {
13289
13302
  code: string;
13290
13303
  title: string;
@@ -13292,6 +13305,7 @@ interface SelectedCarrierServiceOptionNonNullableFields$4 {
13292
13305
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$4;
13293
13306
  requestedShippingOption: boolean;
13294
13307
  otherCharges: SelectedCarrierServiceOptionOtherChargeNonNullableFields$4[];
13308
+ deliveryAllocations: DeliveryAllocationNonNullableFields$6[];
13295
13309
  }
13296
13310
  interface OtherChargeNonNullableFields$4 {
13297
13311
  type: ChargeType$8;
@@ -13301,16 +13315,6 @@ interface ShippingPriceNonNullableFields$8 {
13301
13315
  price?: MultiCurrencyPriceNonNullableFields$4;
13302
13316
  otherCharges: OtherChargeNonNullableFields$4[];
13303
13317
  }
13304
- interface CarrierNonNullableFields$6 {
13305
- code: string;
13306
- }
13307
- interface ApplicableLineItemsNonNullableFields$6 {
13308
- lineItemIds: string[];
13309
- }
13310
- interface DeliveryAllocationNonNullableFields$6 {
13311
- deliveryCarrier?: CarrierNonNullableFields$6;
13312
- applicableLineItems?: ApplicableLineItemsNonNullableFields$6;
13313
- }
13314
13318
  interface ShippingOptionNonNullableFields$8 {
13315
13319
  code: string;
13316
13320
  title: string;
@@ -15453,6 +15457,16 @@ interface SelectedCarrierServiceOptionOtherChargeNonNullableFields$3 {
15453
15457
  type: ChargeType$7;
15454
15458
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$3;
15455
15459
  }
15460
+ interface CarrierNonNullableFields$5 {
15461
+ code: string;
15462
+ }
15463
+ interface ApplicableLineItemsNonNullableFields$5 {
15464
+ lineItemIds: string[];
15465
+ }
15466
+ interface DeliveryAllocationNonNullableFields$5 {
15467
+ deliveryCarrier?: CarrierNonNullableFields$5;
15468
+ applicableLineItems?: ApplicableLineItemsNonNullableFields$5;
15469
+ }
15456
15470
  interface SelectedCarrierServiceOptionNonNullableFields$3 {
15457
15471
  code: string;
15458
15472
  title: string;
@@ -15460,6 +15474,7 @@ interface SelectedCarrierServiceOptionNonNullableFields$3 {
15460
15474
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$3;
15461
15475
  requestedShippingOption: boolean;
15462
15476
  otherCharges: SelectedCarrierServiceOptionOtherChargeNonNullableFields$3[];
15477
+ deliveryAllocations: DeliveryAllocationNonNullableFields$5[];
15463
15478
  }
15464
15479
  interface ShippingRegionNonNullableFields$3 {
15465
15480
  id: string;
@@ -15473,16 +15488,6 @@ interface ShippingPriceNonNullableFields$7 {
15473
15488
  price?: MultiCurrencyPriceNonNullableFields$3;
15474
15489
  otherCharges: OtherChargeNonNullableFields$3[];
15475
15490
  }
15476
- interface CarrierNonNullableFields$5 {
15477
- code: string;
15478
- }
15479
- interface ApplicableLineItemsNonNullableFields$5 {
15480
- lineItemIds: string[];
15481
- }
15482
- interface DeliveryAllocationNonNullableFields$5 {
15483
- deliveryCarrier?: CarrierNonNullableFields$5;
15484
- applicableLineItems?: ApplicableLineItemsNonNullableFields$5;
15485
- }
15486
15491
  interface ShippingOptionNonNullableFields$7 {
15487
15492
  code: string;
15488
15493
  title: string;
@@ -17635,6 +17640,16 @@ interface SelectedCarrierServiceOptionOtherChargeNonNullableFields$2 {
17635
17640
  type: ChargeType$6;
17636
17641
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$2;
17637
17642
  }
17643
+ interface CarrierNonNullableFields$4 {
17644
+ code: string;
17645
+ }
17646
+ interface ApplicableLineItemsNonNullableFields$4 {
17647
+ lineItemIds: string[];
17648
+ }
17649
+ interface DeliveryAllocationNonNullableFields$4 {
17650
+ deliveryCarrier?: CarrierNonNullableFields$4;
17651
+ applicableLineItems?: ApplicableLineItemsNonNullableFields$4;
17652
+ }
17638
17653
  interface SelectedCarrierServiceOptionNonNullableFields$2 {
17639
17654
  code: string;
17640
17655
  title: string;
@@ -17642,6 +17657,7 @@ interface SelectedCarrierServiceOptionNonNullableFields$2 {
17642
17657
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$2;
17643
17658
  requestedShippingOption: boolean;
17644
17659
  otherCharges: SelectedCarrierServiceOptionOtherChargeNonNullableFields$2[];
17660
+ deliveryAllocations: DeliveryAllocationNonNullableFields$4[];
17645
17661
  }
17646
17662
  interface ShippingRegionNonNullableFields$2 {
17647
17663
  _id: string;
@@ -17655,16 +17671,6 @@ interface ShippingPriceNonNullableFields$6 {
17655
17671
  price?: MultiCurrencyPriceNonNullableFields$2;
17656
17672
  otherCharges: OtherChargeNonNullableFields$2[];
17657
17673
  }
17658
- interface CarrierNonNullableFields$4 {
17659
- code: string;
17660
- }
17661
- interface ApplicableLineItemsNonNullableFields$4 {
17662
- lineItemIds: string[];
17663
- }
17664
- interface DeliveryAllocationNonNullableFields$4 {
17665
- deliveryCarrier?: CarrierNonNullableFields$4;
17666
- applicableLineItems?: ApplicableLineItemsNonNullableFields$4;
17667
- }
17668
17674
  interface ShippingOptionNonNullableFields$6 {
17669
17675
  code: string;
17670
17676
  title: string;
@@ -36371,11 +36377,11 @@ declare enum SubscriptionFrequency$1 {
36371
36377
  declare enum PaymentOptionType$1 {
36372
36378
  /** The entire payment for this item happens as part of the checkout. */
36373
36379
  FULL_PAYMENT_ONLINE = "FULL_PAYMENT_ONLINE",
36374
- /** The entire payment for this item happens after the checkout. For example, when using cash, check, or other offline payment methods. */
36380
+ /** The entire payment for this item happens after checkout. For example, when using cash, check, or other offline payment methods. */
36375
36381
  FULL_PAYMENT_OFFLINE = "FULL_PAYMENT_OFFLINE",
36376
36382
  /** Payment for this item is done by charging a membership. When selected, `price` is `0`. */
36377
36383
  MEMBERSHIP = "MEMBERSHIP",
36378
- /** Partial payment to be paid upfront during the checkout. Initial amount to be paid for each line item is specified in `depositAmount`. */
36384
+ /** Partial payment to be paid upfront during checkout. The initial amount to be paid for each line item is specified in `depositAmount`. */
36379
36385
  DEPOSIT_ONLINE = "DEPOSIT_ONLINE",
36380
36386
  /** Payment for this item can only be done by charging a membership and must be manually redeemed in the dashboard by the site admin. When selected, `price` is `0`. */
36381
36387
  MEMBERSHIP_OFFLINE = "MEMBERSHIP_OFFLINE"
@@ -37221,6 +37227,16 @@ interface SelectedCarrierServiceOptionOtherChargeNonNullableFields$1 {
37221
37227
  type: ChargeType$3;
37222
37228
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$1;
37223
37229
  }
37230
+ interface CarrierNonNullableFields$3 {
37231
+ code: string;
37232
+ }
37233
+ interface ApplicableLineItemsNonNullableFields$3 {
37234
+ lineItemIds: string[];
37235
+ }
37236
+ interface DeliveryAllocationNonNullableFields$3 {
37237
+ deliveryCarrier?: CarrierNonNullableFields$3;
37238
+ applicableLineItems?: ApplicableLineItemsNonNullableFields$3;
37239
+ }
37224
37240
  interface SelectedCarrierServiceOptionNonNullableFields$1 {
37225
37241
  code: string;
37226
37242
  title: string;
@@ -37228,6 +37244,7 @@ interface SelectedCarrierServiceOptionNonNullableFields$1 {
37228
37244
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields$1;
37229
37245
  requestedShippingOption: boolean;
37230
37246
  otherCharges: SelectedCarrierServiceOptionOtherChargeNonNullableFields$1[];
37247
+ deliveryAllocations: DeliveryAllocationNonNullableFields$3[];
37231
37248
  }
37232
37249
  interface OtherChargeNonNullableFields$1 {
37233
37250
  type: ChargeType$3;
@@ -37237,16 +37254,6 @@ interface ShippingPriceNonNullableFields$1 {
37237
37254
  price?: MultiCurrencyPriceNonNullableFields$1;
37238
37255
  otherCharges: OtherChargeNonNullableFields$1[];
37239
37256
  }
37240
- interface CarrierNonNullableFields$3 {
37241
- code: string;
37242
- }
37243
- interface ApplicableLineItemsNonNullableFields$3 {
37244
- lineItemIds: string[];
37245
- }
37246
- interface DeliveryAllocationNonNullableFields$3 {
37247
- deliveryCarrier?: CarrierNonNullableFields$3;
37248
- applicableLineItems?: ApplicableLineItemsNonNullableFields$3;
37249
- }
37250
37257
  interface ShippingOptionNonNullableFields$1 {
37251
37258
  code: string;
37252
37259
  title: string;
@@ -37536,11 +37543,11 @@ declare enum SubscriptionFrequency {
37536
37543
  declare enum PaymentOptionType {
37537
37544
  /** The entire payment for this item happens as part of the checkout. */
37538
37545
  FULL_PAYMENT_ONLINE = "FULL_PAYMENT_ONLINE",
37539
- /** The entire payment for this item happens after the checkout. For example, when using cash, check, or other offline payment methods. */
37546
+ /** The entire payment for this item happens after checkout. For example, when using cash, check, or other offline payment methods. */
37540
37547
  FULL_PAYMENT_OFFLINE = "FULL_PAYMENT_OFFLINE",
37541
37548
  /** Payment for this item is done by charging a membership. When selected, `price` is `0`. */
37542
37549
  MEMBERSHIP = "MEMBERSHIP",
37543
- /** Partial payment to be paid upfront during the checkout. Initial amount to be paid for each line item is specified in `depositAmount`. */
37550
+ /** Partial payment to be paid upfront during checkout. The initial amount to be paid for each line item is specified in `depositAmount`. */
37544
37551
  DEPOSIT_ONLINE = "DEPOSIT_ONLINE",
37545
37552
  /** Payment for this item can only be done by charging a membership and must be manually redeemed in the dashboard by the site admin. When selected, `price` is `0`. */
37546
37553
  MEMBERSHIP_OFFLINE = "MEMBERSHIP_OFFLINE"
@@ -38376,6 +38383,16 @@ interface SelectedCarrierServiceOptionOtherChargeNonNullableFields {
38376
38383
  type: ChargeType$2;
38377
38384
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields;
38378
38385
  }
38386
+ interface CarrierNonNullableFields$2 {
38387
+ code: string;
38388
+ }
38389
+ interface ApplicableLineItemsNonNullableFields$2 {
38390
+ lineItemIds: string[];
38391
+ }
38392
+ interface DeliveryAllocationNonNullableFields$2 {
38393
+ deliveryCarrier?: CarrierNonNullableFields$2;
38394
+ applicableLineItems?: ApplicableLineItemsNonNullableFields$2;
38395
+ }
38379
38396
  interface SelectedCarrierServiceOptionNonNullableFields {
38380
38397
  code: string;
38381
38398
  title: string;
@@ -38383,6 +38400,7 @@ interface SelectedCarrierServiceOptionNonNullableFields {
38383
38400
  cost?: SelectedCarrierServiceOptionPricesNonNullableFields;
38384
38401
  requestedShippingOption: boolean;
38385
38402
  otherCharges: SelectedCarrierServiceOptionOtherChargeNonNullableFields[];
38403
+ deliveryAllocations: DeliveryAllocationNonNullableFields$2[];
38386
38404
  }
38387
38405
  interface OtherChargeNonNullableFields {
38388
38406
  type: ChargeType$2;
@@ -38392,16 +38410,6 @@ interface ShippingPriceNonNullableFields {
38392
38410
  price?: MultiCurrencyPriceNonNullableFields;
38393
38411
  otherCharges: OtherChargeNonNullableFields[];
38394
38412
  }
38395
- interface CarrierNonNullableFields$2 {
38396
- code: string;
38397
- }
38398
- interface ApplicableLineItemsNonNullableFields$2 {
38399
- lineItemIds: string[];
38400
- }
38401
- interface DeliveryAllocationNonNullableFields$2 {
38402
- deliveryCarrier?: CarrierNonNullableFields$2;
38403
- applicableLineItems?: ApplicableLineItemsNonNullableFields$2;
38404
- }
38405
38413
  interface ShippingOptionNonNullableFields {
38406
38414
  code: string;
38407
38415
  title: string;
@@ -4855,6 +4855,30 @@ declare enum ChargeType {
4855
4855
  HANDLING_FEE = "HANDLING_FEE",
4856
4856
  INSURANCE = "INSURANCE"
4857
4857
  }
4858
+ interface DeliveryAllocation$1 {
4859
+ /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
4860
+ deliveryCarrier?: Carrier$1;
4861
+ /** The delivery region that are relevant for this delivery solution. */
4862
+ deliveryRegion?: Region$1;
4863
+ /** Populated if the delivery solution is a partially supplied by this carrier. */
4864
+ applicableLineItems?: ApplicableLineItems$1;
4865
+ }
4866
+ interface Carrier$1 {
4867
+ /** The carrier app id */
4868
+ appId?: string | null;
4869
+ /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
4870
+ code?: string;
4871
+ }
4872
+ interface Region$1 {
4873
+ /** The delivery region id. */
4874
+ _id?: string | null;
4875
+ /** The delivery region name. */
4876
+ name?: string | null;
4877
+ }
4878
+ interface ApplicableLineItems$1 {
4879
+ /** Line items that the delivery solution is for. */
4880
+ lineItemIds?: string[];
4881
+ }
4858
4882
  interface V1ShippingRegion {
4859
4883
  /**
4860
4884
  * Shipping region ID.
@@ -4898,30 +4922,6 @@ interface OtherCharge {
4898
4922
  /** Price of added cost. */
4899
4923
  price?: MultiCurrencyPrice$1;
4900
4924
  }
4901
- interface DeliveryAllocation$1 {
4902
- /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
4903
- deliveryCarrier?: Carrier$1;
4904
- /** The delivery region that are relevant for this delivery solution. */
4905
- deliveryRegion?: Region$1;
4906
- /** Populated if the delivery solution is a partially supplied by this carrier. */
4907
- applicableLineItems?: ApplicableLineItems$1;
4908
- }
4909
- interface Carrier$1 {
4910
- /** The carrier app id */
4911
- appId?: string | null;
4912
- /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
4913
- code?: string;
4914
- }
4915
- interface Region$1 {
4916
- /** The delivery region id. */
4917
- _id?: string | null;
4918
- /** The delivery region name. */
4919
- name?: string | null;
4920
- }
4921
- interface ApplicableLineItems$1 {
4922
- /** Line items that the delivery solution is for. */
4923
- lineItemIds?: string[];
4924
- }
4925
4925
  interface BuyerInfo extends BuyerInfoIdOneOf {
4926
4926
  /**
4927
4927
  * Visitor ID (if site visitor is **not** a member).
@@ -4855,6 +4855,30 @@ declare enum ChargeType {
4855
4855
  HANDLING_FEE = "HANDLING_FEE",
4856
4856
  INSURANCE = "INSURANCE"
4857
4857
  }
4858
+ interface DeliveryAllocation$1 {
4859
+ /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
4860
+ deliveryCarrier?: Carrier$1;
4861
+ /** The delivery region that are relevant for this delivery solution. */
4862
+ deliveryRegion?: Region$1;
4863
+ /** Populated if the delivery solution is a partially supplied by this carrier. */
4864
+ applicableLineItems?: ApplicableLineItems$1;
4865
+ }
4866
+ interface Carrier$1 {
4867
+ /** The carrier app id */
4868
+ appId?: string | null;
4869
+ /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
4870
+ code?: string;
4871
+ }
4872
+ interface Region$1 {
4873
+ /** The delivery region id. */
4874
+ _id?: string | null;
4875
+ /** The delivery region name. */
4876
+ name?: string | null;
4877
+ }
4878
+ interface ApplicableLineItems$1 {
4879
+ /** Line items that the delivery solution is for. */
4880
+ lineItemIds?: string[];
4881
+ }
4858
4882
  interface V1ShippingRegion {
4859
4883
  /**
4860
4884
  * Shipping region ID.
@@ -4898,30 +4922,6 @@ interface OtherCharge {
4898
4922
  /** Price of added cost. */
4899
4923
  price?: MultiCurrencyPrice$1;
4900
4924
  }
4901
- interface DeliveryAllocation$1 {
4902
- /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
4903
- deliveryCarrier?: Carrier$1;
4904
- /** The delivery region that are relevant for this delivery solution. */
4905
- deliveryRegion?: Region$1;
4906
- /** Populated if the delivery solution is a partially supplied by this carrier. */
4907
- applicableLineItems?: ApplicableLineItems$1;
4908
- }
4909
- interface Carrier$1 {
4910
- /** The carrier app id */
4911
- appId?: string | null;
4912
- /** Unique code that acts as an ID for a shipping rate. For example, `"usps_std_overnight"`. */
4913
- code?: string;
4914
- }
4915
- interface Region$1 {
4916
- /** The delivery region id. */
4917
- _id?: string | null;
4918
- /** The delivery region name. */
4919
- name?: string | null;
4920
- }
4921
- interface ApplicableLineItems$1 {
4922
- /** Line items that the delivery solution is for. */
4923
- lineItemIds?: string[];
4924
- }
4925
4925
  interface BuyerInfo extends BuyerInfoIdOneOf {
4926
4926
  /**
4927
4927
  * Visitor ID (if site visitor is **not** a member).