@wix/ecom 1.0.726 → 1.0.728

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.
@@ -142,7 +142,7 @@ interface LineItem$8 {
142
142
  quantity?: number | null;
143
143
  /**
144
144
  * Catalog and item reference. Holds IDs for the item and the catalog it came from, as well as further optional info.
145
- * This field is empty in the case of a custom line item.
145
+ * This field may be empty in the case of a custom line item.
146
146
  */
147
147
  catalogReference?: CatalogReference$a;
148
148
  /** Price of a single item. */
@@ -3621,7 +3621,7 @@ interface LineItem$6 {
3621
3621
  _id?: string | null;
3622
3622
  /** Item quantity. */
3623
3623
  quantity?: number;
3624
- /** Catalog and item reference. Holds IDs for the item and the catalog it came from, as well as further optional info. */
3624
+ /** Catalog and item reference. Holds IDs for the item and the catalog it came from, as well as further optional info. Optional for custom line items, which don't trigger the Catalog service plugin. */
3625
3625
  catalogReference?: CatalogReference$6;
3626
3626
  /**
3627
3627
  * Item name.
@@ -3900,6 +3900,12 @@ interface SubscriptionOptionInfo$4 {
3900
3900
  interface SubscriptionSettings$7 {
3901
3901
  /** Frequency of recurring payment. */
3902
3902
  frequency?: SubscriptionFrequency$7;
3903
+ /**
3904
+ * Interval of recurring payment.
3905
+ *
3906
+ * Default: `1`.
3907
+ */
3908
+ interval?: number | null;
3903
3909
  /** Whether subscription is renewed automatically at the end of each period. */
3904
3910
  autoRenewal?: boolean;
3905
3911
  /** Number of billing cycles before subscription ends. Ignored if `autoRenewal` is `true`. */
@@ -4167,7 +4173,7 @@ interface UpdateCartRequest$1 {
4167
4173
  /** Catalog line items. */
4168
4174
  lineItems?: LineItem$6[];
4169
4175
  /**
4170
- * Custom line items.
4176
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
4171
4177
  *
4172
4178
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
4173
4179
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -4256,7 +4262,7 @@ interface CustomLineItem$4 {
4256
4262
  * When omitted, the item's price will not be split and is expected to be paid in a single installment.
4257
4263
  */
4258
4264
  depositAmount?: string | null;
4259
- /** Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info. */
4265
+ /** Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info. Optional for custom line items, which don't trigger the Catalog service plugin. */
4260
4266
  catalogReference?: CatalogReference$6;
4261
4267
  }
4262
4268
  interface UpdateCartResponse$1 {
@@ -4267,7 +4273,7 @@ interface AddToCurrentCartRequest$1 {
4267
4273
  /** Catalog line items. */
4268
4274
  lineItems?: LineItem$6[];
4269
4275
  /**
4270
- * Custom line items.
4276
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
4271
4277
  *
4272
4278
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
4273
4279
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -4282,7 +4288,7 @@ interface AddToCurrentCartAndEstimateTotalsRequest$1 {
4282
4288
  /** Catalog line items. */
4283
4289
  lineItems?: LineItem$6[];
4284
4290
  /**
4285
- * Custom line items.
4291
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
4286
4292
  *
4287
4293
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
4288
4294
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -5194,7 +5200,7 @@ interface CreateCartRequest$1 {
5194
5200
  /** Catalog line items. */
5195
5201
  lineItems?: LineItem$6[];
5196
5202
  /**
5197
- * Custom line items.
5203
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
5198
5204
  *
5199
5205
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
5200
5206
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -5227,7 +5233,7 @@ interface AddToCartRequest$1 {
5227
5233
  /** Catalog line items. */
5228
5234
  lineItems?: LineItem$6[];
5229
5235
  /**
5230
- * Custom line items.
5236
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
5231
5237
  *
5232
5238
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
5233
5239
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -5793,7 +5799,7 @@ interface CreateCartOptions {
5793
5799
  /** Catalog line items. */
5794
5800
  lineItems?: LineItem$6[];
5795
5801
  /**
5796
- * Custom line items.
5802
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
5797
5803
  *
5798
5804
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
5799
5805
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -5889,7 +5895,7 @@ interface UpdateCartOptions {
5889
5895
  /** Catalog line items. */
5890
5896
  lineItems?: LineItem$6[];
5891
5897
  /**
5892
- * Custom line items.
5898
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
5893
5899
  *
5894
5900
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
5895
5901
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -5900,7 +5906,7 @@ interface AddToCartOptions {
5900
5906
  /** Catalog line items. */
5901
5907
  lineItems?: LineItem$6[];
5902
5908
  /**
5903
- * Custom line items.
5909
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
5904
5910
  *
5905
5911
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
5906
5912
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -6210,7 +6216,7 @@ interface LineItem$5 {
6210
6216
  _id?: string | null;
6211
6217
  /** Item quantity. */
6212
6218
  quantity?: number;
6213
- /** Catalog and item reference. Holds IDs for the item and the catalog it came from, as well as further optional info. */
6219
+ /** Catalog and item reference. Holds IDs for the item and the catalog it came from, as well as further optional info. Optional for custom line items, which don't trigger the Catalog service plugin. */
6214
6220
  catalogReference?: CatalogReference$5;
6215
6221
  /**
6216
6222
  * Item name.
@@ -6489,6 +6495,12 @@ interface SubscriptionOptionInfo$3 {
6489
6495
  interface SubscriptionSettings$6 {
6490
6496
  /** Frequency of recurring payment. */
6491
6497
  frequency?: SubscriptionFrequency$6;
6498
+ /**
6499
+ * Interval of recurring payment.
6500
+ *
6501
+ * Default: `1`.
6502
+ */
6503
+ interval?: number | null;
6492
6504
  /** Whether subscription is renewed automatically at the end of each period. */
6493
6505
  autoRenewal?: boolean;
6494
6506
  /** Number of billing cycles before subscription ends. Ignored if `autoRenewal` is `true`. */
@@ -6756,7 +6768,7 @@ interface UpdateCartRequest {
6756
6768
  /** Catalog line items. */
6757
6769
  lineItems?: LineItem$5[];
6758
6770
  /**
6759
- * Custom line items.
6771
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
6760
6772
  *
6761
6773
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
6762
6774
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -6845,7 +6857,7 @@ interface CustomLineItem$3 {
6845
6857
  * When omitted, the item's price will not be split and is expected to be paid in a single installment.
6846
6858
  */
6847
6859
  depositAmount?: string | null;
6848
- /** Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info. */
6860
+ /** Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info. Optional for custom line items, which don't trigger the Catalog service plugin. */
6849
6861
  catalogReference?: CatalogReference$5;
6850
6862
  }
6851
6863
  interface UpdateCartResponse {
@@ -6856,7 +6868,7 @@ interface AddToCurrentCartRequest {
6856
6868
  /** Catalog line items. */
6857
6869
  lineItems?: LineItem$5[];
6858
6870
  /**
6859
- * Custom line items.
6871
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
6860
6872
  *
6861
6873
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
6862
6874
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -6871,7 +6883,7 @@ interface AddToCurrentCartAndEstimateTotalsRequest {
6871
6883
  /** Catalog line items. */
6872
6884
  lineItems?: LineItem$5[];
6873
6885
  /**
6874
- * Custom line items.
6886
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
6875
6887
  *
6876
6888
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
6877
6889
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -7783,7 +7795,7 @@ interface CreateCartRequest {
7783
7795
  /** Catalog line items. */
7784
7796
  lineItems?: LineItem$5[];
7785
7797
  /**
7786
- * Custom line items.
7798
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
7787
7799
  *
7788
7800
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
7789
7801
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -7816,7 +7828,7 @@ interface AddToCartRequest {
7816
7828
  /** Catalog line items. */
7817
7829
  lineItems?: LineItem$5[];
7818
7830
  /**
7819
- * Custom line items.
7831
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
7820
7832
  *
7821
7833
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
7822
7834
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -8382,7 +8394,7 @@ interface UpdateCurrentCartOptions {
8382
8394
  /** Catalog line items. */
8383
8395
  lineItems?: LineItem$5[];
8384
8396
  /**
8385
- * Custom line items.
8397
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
8386
8398
  *
8387
8399
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
8388
8400
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -8393,7 +8405,7 @@ interface AddToCurrentCartOptions {
8393
8405
  /** Catalog line items. */
8394
8406
  lineItems?: LineItem$5[];
8395
8407
  /**
8396
- * Custom line items.
8408
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
8397
8409
  *
8398
8410
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
8399
8411
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -8790,16 +8802,12 @@ interface Checkout$1 {
8790
8802
  */
8791
8803
  customSettings?: CustomSettings$1;
8792
8804
  /**
8793
- * Customize the content of the checkout page.
8805
+ * Reference IDs for the app and component providing custom checkout page content.
8794
8806
  *
8795
- * Includes IDs for the app and the component providing the content
8807
+ * To access and manage custom checkout page content, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
8808
+ * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
8796
8809
  */
8797
8810
  customContentReference?: CustomContentReference$1;
8798
- /**
8799
- * Used for integration and tracking across different platforms.
8800
- * Contains external system IDs (e.g., app ID, external ID) to link the checkout with other systems.
8801
- */
8802
- externalReference?: ExternalReference$2;
8803
8811
  }
8804
8812
  interface LineItem$4 {
8805
8813
  /**
@@ -8814,7 +8822,7 @@ interface LineItem$4 {
8814
8822
  * Max: `"100000"`
8815
8823
  */
8816
8824
  quantity?: number;
8817
- /** Catalog and item reference. Holds IDs for the item and the catalog it came from, as well as further optional info. */
8825
+ /** Catalog and item reference. Holds IDs for the item and the catalog it came from, as well as further optional info. Optional for custom line items, which don't trigger the Catalog service plugin. */
8818
8826
  catalogReference?: CatalogReference$4;
8819
8827
  /**
8820
8828
  * Item name.
@@ -8927,7 +8935,7 @@ interface LineItem$4 {
8927
8935
  */
8928
8936
  depositAmount?: MultiCurrencyPrice$2;
8929
8937
  /**
8930
- * Whether the line item is custom or from catalog.
8938
+ * Whether the line item is a custom line item. Custom line items don't trigger the Catalog service plugin.
8931
8939
  * @readonly
8932
8940
  */
8933
8941
  customLineItem?: boolean;
@@ -9192,6 +9200,12 @@ interface SubscriptionOptionInfo$2 {
9192
9200
  interface SubscriptionSettings$5 {
9193
9201
  /** Frequency of recurring payment. */
9194
9202
  frequency?: SubscriptionFrequency$5;
9203
+ /**
9204
+ * Interval of recurring payment.
9205
+ *
9206
+ * Default: `1`.
9207
+ */
9208
+ interval?: number | null;
9195
9209
  /** Whether subscription is renewed automatically at the end of each period. */
9196
9210
  autoRenewal?: boolean;
9197
9211
  /** Number of billing cycles before subscription ends. Ignored if `autoRenewal` is `true`. */
@@ -10087,9 +10101,15 @@ interface CustomContentReference$1 {
10087
10101
  componentId?: string;
10088
10102
  }
10089
10103
  interface ExternalReference$2 {
10090
- /** ID of the app that associated with the purchase flow. */
10104
+ /**
10105
+ * ID of the app associated with the purchase flow.
10106
+ * For example, the Wix Pay Links app ID.
10107
+ */
10091
10108
  appId?: string;
10092
- /** Reference to an external system ID, used to link the purchase flow to a specific ID in another system */
10109
+ /**
10110
+ * Reference to an external resource ID. Used to link the purchase flow to a specific entity in an external system.
10111
+ * For example, a Wix Pay Link ID.
10112
+ */
10093
10113
  resourceId?: string | null;
10094
10114
  }
10095
10115
  interface UpdatedCheckoutMessage {
@@ -10103,10 +10123,10 @@ interface CreateCheckoutRequest {
10103
10123
  checkoutInfo?: Checkout$1;
10104
10124
  /** The code of an existing coupon to apply to checkout. For more information, see the [Coupons API](https://www.wix.com/velo/reference/wix-marketing-backend/coupons). */
10105
10125
  couponCode?: string | null;
10106
- /** Line items to add to the checkout. */
10126
+ /** Catalog line items to add to the checkout. */
10107
10127
  lineItems?: LineItem$4[];
10108
10128
  /**
10109
- * Custom line items to add to the checkout.
10129
+ * Custom line items to add to the checkout. Custom line items don't trigger the Catalog service plugin.
10110
10130
  *
10111
10131
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
10112
10132
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -10204,7 +10224,7 @@ interface CustomLineItem$2 {
10204
10224
  * When omitted, the item's price will not be split and is expected to be paid in a single installment.
10205
10225
  */
10206
10226
  depositAmount?: string | null;
10207
- /** Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info. */
10227
+ /** Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info. Optional for custom line items, which don't trigger the Catalog service plugin. */
10208
10228
  catalogReference?: CatalogReference$4;
10209
10229
  }
10210
10230
  interface MerchantDiscountInput$1 {
@@ -10279,10 +10299,10 @@ interface UpdateCheckoutRequest {
10279
10299
  * This field overrides the `checkoutUrl` in a cart or checkout. `checkoutUrl` is used to send customers back to their checkouts. By default, a `checkoutUrl` generates for a checkout and directs to a standard Wix checkout page. When `overrideCheckoutUrl` has a value, it will replace and set the value of `checkoutUrl`.
10280
10300
  */
10281
10301
  overrideCheckoutUrl?: string | null;
10282
- /** Line items. */
10302
+ /** Catalog line items. */
10283
10303
  lineItems?: LineItem$4[];
10284
10304
  /**
10285
- * Custom line items.
10305
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
10286
10306
  *
10287
10307
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
10288
10308
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -10323,7 +10343,7 @@ interface AddToCheckoutRequest {
10323
10343
  /** Catalog line items. */
10324
10344
  lineItems?: LineItem$4[];
10325
10345
  /**
10326
- * Custom line items.
10346
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
10327
10347
  *
10328
10348
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
10329
10349
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -11466,10 +11486,10 @@ interface CreateCheckoutOptions {
11466
11486
  checkoutInfo?: Checkout$1;
11467
11487
  /** The code of an existing coupon to apply to checkout. For more information, see the [Coupons API](https://www.wix.com/velo/reference/wix-marketing-backend/coupons). */
11468
11488
  couponCode?: string | null;
11469
- /** Line items to add to the checkout. */
11489
+ /** Catalog line items to add to the checkout. */
11470
11490
  lineItems?: LineItem$4[];
11471
11491
  /**
11472
- * Custom line items to add to the checkout.
11492
+ * Custom line items to add to the checkout. Custom line items don't trigger the Catalog service plugin.
11473
11493
  *
11474
11494
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
11475
11495
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -11651,16 +11671,12 @@ interface UpdateCheckout {
11651
11671
  */
11652
11672
  customSettings?: CustomSettings$1;
11653
11673
  /**
11654
- * Customize the content of the checkout page.
11674
+ * Reference IDs for the app and component providing custom checkout page content.
11655
11675
  *
11656
- * Includes IDs for the app and the component providing the content
11676
+ * To access and manage custom checkout page content, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
11677
+ * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
11657
11678
  */
11658
11679
  customContentReference?: CustomContentReference$1;
11659
- /**
11660
- * Used for integration and tracking across different platforms.
11661
- * Contains external system IDs (e.g., app ID, external ID) to link the checkout with other systems.
11662
- */
11663
- externalReference?: ExternalReference$2;
11664
11680
  }
11665
11681
  interface UpdateCheckoutOptions {
11666
11682
  /** The code of an existing coupon to apply to checkout. For more information, see the [Coupons API](https://www.wix.com/velo/reference/wix-marketing-backend/coupons). */
@@ -11673,10 +11689,10 @@ interface UpdateCheckoutOptions {
11673
11689
  * This field overrides the `checkoutUrl` in a cart or checkout. `checkoutUrl` is used to send customers back to their checkouts. By default, a `checkoutUrl` generates for a checkout and directs to a standard Wix checkout page. When `overrideCheckoutUrl` has a value, it will replace and set the value of `checkoutUrl`.
11674
11690
  */
11675
11691
  overrideCheckoutUrl?: string | null;
11676
- /** Line items. */
11692
+ /** Catalog line items. */
11677
11693
  lineItems?: LineItem$4[];
11678
11694
  /**
11679
- * Custom line items.
11695
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
11680
11696
  *
11681
11697
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
11682
11698
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -11687,7 +11703,7 @@ interface AddToCheckoutOptions {
11687
11703
  /** Catalog line items. */
11688
11704
  lineItems?: LineItem$4[];
11689
11705
  /**
11690
- * Custom line items.
11706
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
11691
11707
  *
11692
11708
  * To access and manage custom line items, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
11693
11709
  * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
@@ -12477,13 +12493,13 @@ interface CheckoutTemplate {
12477
12493
  /** Custom settings to apply to the checkout page created from this template. */
12478
12494
  customization?: CheckoutCustomization;
12479
12495
  /**
12480
- * Line items.
12496
+ * Catalog line items.
12481
12497
  *
12482
12498
  * Max: 300 items
12483
12499
  */
12484
12500
  lineItems?: V1LineItem[];
12485
12501
  /**
12486
- * Custom line items.
12502
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
12487
12503
  *
12488
12504
  * Max: 300 items
12489
12505
  */
@@ -12496,16 +12512,12 @@ interface CheckoutTemplate {
12496
12512
  */
12497
12513
  couponCode?: string | null;
12498
12514
  /**
12499
- * Customize the content of the checkout page.
12515
+ * Reference IDs for the app and component providing custom checkout page content.
12500
12516
  *
12501
- * Includes IDs for the app and the component providing the content
12517
+ * To access and manage custom checkout page content, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
12518
+ * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
12502
12519
  */
12503
12520
  customContentReference?: CustomContentReference;
12504
- /**
12505
- * Used for integration and tracking across different platforms.
12506
- * Contains external system IDs (e.g., app ID, external ID) to link the checkout template with other systems.
12507
- */
12508
- externalReference?: ExternalReference$1;
12509
12521
  }
12510
12522
  declare enum Status$1 {
12511
12523
  UNKNOWN_STATUS = "UNKNOWN_STATUS",
@@ -12556,11 +12568,7 @@ interface V1LineItem {
12556
12568
  * Max: `100000`
12557
12569
  */
12558
12570
  quantity?: number;
12559
- /**
12560
- * Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info.
12561
- *
12562
- * > **Note:** For more information on what to pass to `lineItems.catalogReference`, see [eCommerce Integration in the Wix Stores Catalog API](https://dev.wix.com/api/rest/wix-stores/catalog/ecommerce-integration).
12563
- */
12571
+ /** Catalog and item reference. Holds IDs for the item and the catalog it came from, as well as further optional info. Optional for custom line items, which don't trigger the Catalog service plugin. */
12564
12572
  catalogReference?: CatalogReference$3;
12565
12573
  /** Overriding values for catalog item properties. */
12566
12574
  catalogOverrideFields?: CatalogOverrideFields;
@@ -12753,7 +12761,7 @@ interface CustomLineItem$1 {
12753
12761
  * When omitted, the item's price will not be split and is expected to be paid in a single installment.
12754
12762
  */
12755
12763
  depositAmount?: string | null;
12756
- /** Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info. */
12764
+ /** Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info. Optional for custom line items, which don't trigger the Catalog service plugin. */
12757
12765
  catalogReference?: CatalogReference$3;
12758
12766
  }
12759
12767
  interface PriceDescription$2 {
@@ -12797,6 +12805,12 @@ interface SubscriptionOptionInfo$1 {
12797
12805
  interface SubscriptionSettings$4 {
12798
12806
  /** Frequency of recurring payment. */
12799
12807
  frequency?: SubscriptionFrequency$4;
12808
+ /**
12809
+ * Interval of recurring payment.
12810
+ *
12811
+ * Default: `1`.
12812
+ */
12813
+ interval?: number | null;
12800
12814
  /** Whether subscription is renewed automatically at the end of each period. */
12801
12815
  autoRenewal?: boolean;
12802
12816
  /** Number of billing cycles before subscription ends. Ignored if `autoRenewal` is `true`. */
@@ -12890,9 +12904,15 @@ interface CustomContentReference {
12890
12904
  componentId?: string;
12891
12905
  }
12892
12906
  interface ExternalReference$1 {
12893
- /** ID of the app that associated with the purchase flow. */
12907
+ /**
12908
+ * ID of the app associated with the purchase flow.
12909
+ * For example, the Wix Pay Links app ID.
12910
+ */
12894
12911
  appId?: string;
12895
- /** Reference to an external system ID, used to link the purchase flow to a specific ID in another system */
12912
+ /**
12913
+ * Reference to an external resource ID. Used to link the purchase flow to a specific entity in an external system.
12914
+ * For example, a Wix Pay Link ID.
12915
+ */
12896
12916
  resourceId?: string | null;
12897
12917
  }
12898
12918
  interface CreateCheckoutTemplateRequest {
@@ -13172,20 +13192,18 @@ interface Checkout {
13172
13192
  /**
13173
13193
  * Additional settings for customization of the checkout process.
13174
13194
  *
13175
- * Custom settings can only be set when [creating a checkout](https://dev.wix.com/docs/rest/api-reference/wix-e-commerce/checkout/create-checkout).
13195
+ * > **Notes:**
13196
+ * > * Custom settings can only be set when [creating a checkout](https://dev.wix.com/docs/rest/api-reference/wix-e-commerce/checkout/create-checkout).
13197
+ * > * To access and manage custom checkout page content, your app must have the permission scope named "Manage eCommerce - Admin Permissions". Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
13176
13198
  */
13177
13199
  customSettings?: CustomSettings;
13178
13200
  /**
13179
- * Customize the content of the checkout page.
13201
+ * Reference IDs for the app and component providing custom checkout page content.
13180
13202
  *
13181
- * Includes IDs for the app and the component providing the content
13203
+ * To access and manage custom checkout page content, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
13204
+ * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
13182
13205
  */
13183
13206
  customContentReference?: CustomContentReference;
13184
- /**
13185
- * Used for integration and tracking across different platforms.
13186
- * Contains external system IDs (e.g., app ID, external ID) to link the checkout with other systems.
13187
- */
13188
- externalReference?: ExternalReference$1;
13189
13207
  }
13190
13208
  interface LineItem$3 {
13191
13209
  /**
@@ -13200,7 +13218,7 @@ interface LineItem$3 {
13200
13218
  * Max: `"100000"`
13201
13219
  */
13202
13220
  quantity?: number;
13203
- /** Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info. */
13221
+ /** Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info. Optional for custom line items, which don't trigger the Catalog service plugin. */
13204
13222
  catalogReference?: CatalogReference$3;
13205
13223
  /**
13206
13224
  * Item name.
@@ -13314,7 +13332,7 @@ interface LineItem$3 {
13314
13332
  */
13315
13333
  depositAmount?: MultiCurrencyPrice$1;
13316
13334
  /**
13317
- * Whether the line item is custom or from catalog.
13335
+ * Whether the line item is a custom line item. Custom line items don't trigger the Catalog service plugin.
13318
13336
  * @readonly
13319
13337
  */
13320
13338
  customLineItem?: boolean;
@@ -14558,13 +14576,13 @@ interface UpdateCheckoutTemplate {
14558
14576
  /** Custom settings to apply to the checkout page created from this template. */
14559
14577
  customization?: CheckoutCustomization;
14560
14578
  /**
14561
- * Line items.
14579
+ * Catalog line items.
14562
14580
  *
14563
14581
  * Max: 300 items
14564
14582
  */
14565
14583
  lineItems?: V1LineItem[];
14566
14584
  /**
14567
- * Custom line items.
14585
+ * Custom line items. Custom line items don't trigger the Catalog service plugin.
14568
14586
  *
14569
14587
  * Max: 300 items
14570
14588
  */
@@ -14577,16 +14595,12 @@ interface UpdateCheckoutTemplate {
14577
14595
  */
14578
14596
  couponCode?: string | null;
14579
14597
  /**
14580
- * Customize the content of the checkout page.
14598
+ * Reference IDs for the app and component providing custom checkout page content.
14581
14599
  *
14582
- * Includes IDs for the app and the component providing the content
14600
+ * To access and manage custom checkout page content, your app must have the permission scope named "Manage eCommerce - Admin Permissions".
14601
+ * Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
14583
14602
  */
14584
14603
  customContentReference?: CustomContentReference;
14585
- /**
14586
- * Used for integration and tracking across different platforms.
14587
- * Contains external system IDs (e.g., app ID, external ID) to link the checkout template with other systems.
14588
- */
14589
- externalReference?: ExternalReference$1;
14590
14604
  }
14591
14605
  interface QueryCursorResult$6 {
14592
14606
  cursors: Cursors$8;
@@ -16527,7 +16541,7 @@ interface OrderLineItem$1 {
16527
16541
  productName?: ProductName$1;
16528
16542
  /**
16529
16543
  * References to the line item's origin catalog.
16530
- * This field is empty in the case of a custom line item.
16544
+ * This field may be empty in the case of a custom line item.
16531
16545
  */
16532
16546
  catalogReference?: CatalogReference$2;
16533
16547
  /** Line item quantity. */
@@ -17616,11 +17630,11 @@ interface AddLineItemsToDraftOrderRequest {
17616
17630
  draftOrderId: string;
17617
17631
  /** Catalog line items to add to draft order. */
17618
17632
  catalogLineItems?: CatalogReferenceLineItem[];
17619
- /** Custom line items to add to draft order. */
17633
+ /** Custom line items to add to draft order. Custom line items don't trigger the Catalog service plugin. */
17620
17634
  customLineItems?: CustomLineItem[];
17621
17635
  }
17622
17636
  interface CatalogReferenceLineItem {
17623
- /** Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info. */
17637
+ /** Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info. Optional for custom line items, which don't trigger the Catalog service plugin. */
17624
17638
  catalogReference?: CatalogReference$2;
17625
17639
  /** Item quantity. */
17626
17640
  quantity?: number;
@@ -17637,7 +17651,7 @@ interface CustomLineItem {
17637
17651
  * Max: `"100000"`
17638
17652
  */
17639
17653
  quantity?: number;
17640
- /** Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info. */
17654
+ /** Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info. Optional for custom line items, which don't trigger the Catalog service plugin. */
17641
17655
  catalogReference?: CatalogReference$2;
17642
17656
  /**
17643
17657
  * Item name.
@@ -19315,7 +19329,7 @@ interface QueryDraftOrdersResponseNonNullableFields {
19315
19329
  interface AddLineItemsToDraftOrderOptions {
19316
19330
  /** Catalog line items to add to draft order. */
19317
19331
  catalogLineItems?: CatalogReferenceLineItem[];
19318
- /** Custom line items to add to draft order. */
19332
+ /** Custom line items to add to draft order. Custom line items don't trigger the Catalog service plugin. */
19319
19333
  customLineItems?: CustomLineItem[];
19320
19334
  }
19321
19335
  interface UpdateLineItemsOptions {
@@ -21140,7 +21154,7 @@ interface OrderLineItem {
21140
21154
  * + Events - `ticket.name`
21141
21155
  */
21142
21156
  productName?: ProductName;
21143
- /** Catalog and item reference. Holds IDs for the item and the catalog it came from, as well as further optional info. */
21157
+ /** Catalog and item reference. Holds IDs for the item and the catalog it came from, as well as further optional info. Optional for custom line items, which don't trigger the Catalog service plugin. */
21144
21158
  catalogReference?: CatalogReference$1;
21145
21159
  /** Line item quantity. */
21146
21160
  quantity?: number;
@@ -22462,7 +22476,7 @@ interface AuthorizationDetails$2 {
22462
22476
  /** Void associated with payment */
22463
22477
  void?: AuthorizationVoid$2;
22464
22478
  /** Scheduled action for this transaction */
22465
- scheduledAction?: ScheduledAction$2;
22479
+ scheduledAction?: V1ScheduledAction;
22466
22480
  }
22467
22481
  interface AuthorizationCapture$2 {
22468
22482
  /**
@@ -22521,7 +22535,7 @@ declare enum Reason$2 {
22521
22535
  MANUAL = "MANUAL",
22522
22536
  SCHEDULED = "SCHEDULED"
22523
22537
  }
22524
- interface ScheduledAction$2 {
22538
+ interface V1ScheduledAction {
22525
22539
  /** type of the action */
22526
22540
  actionType?: ActionType$2;
22527
22541
  /** the date and time of the action */
@@ -23046,6 +23060,7 @@ interface UpsertRefundResponse {
23046
23060
  orderTransactions?: OrderTransactions$2;
23047
23061
  }
23048
23062
  interface TestUrlAdditionalBindingsRequest {
23063
+ testId?: string | null;
23049
23064
  }
23050
23065
  interface TestUrlAdditionalBindingsResponse {
23051
23066
  responseString?: string;
@@ -23405,8 +23420,14 @@ interface PreparePaymentCollectionRequest {
23405
23420
  /**
23406
23421
  * Whether to delay capture of the payment.
23407
23422
  * Default: false
23423
+ * @deprecated Whether to delay capture of the payment.
23424
+ * Default: false
23425
+ * @replacedBy delayed_capture_settings.scheduled_action
23426
+ * @targetRemovalDate 2024-09-30
23408
23427
  */
23409
23428
  delayedCapture?: boolean;
23429
+ /** Delayed capture payment settings */
23430
+ delayedCaptureSettings?: DelayedCaptureSettings;
23410
23431
  }
23411
23432
  interface RedirectUrls {
23412
23433
  /** URL to redirect buyer in case of approved (successful) transaction */
@@ -23418,6 +23439,31 @@ interface RedirectUrls {
23418
23439
  /** URL to redirect buyer in case of pending transaction (that might take some time to process) */
23419
23440
  pendingUrl?: string | null;
23420
23441
  }
23442
+ interface DelayedCaptureSettings {
23443
+ /** Specifies the automatic action (void/capture) for authorized transaction after the specified duration */
23444
+ scheduledAction?: ScheduledAction$2;
23445
+ /** Delay duration before execution. Optional - if not set, providers default period will be used */
23446
+ delayDuration?: Duration;
23447
+ }
23448
+ declare enum ScheduledAction$2 {
23449
+ UNSPECIFIED = "UNSPECIFIED",
23450
+ /** Whether payment will be auto-voided when duration passes */
23451
+ VOID = "VOID",
23452
+ /** Whether payment will be auto-captured when duration passes */
23453
+ CAPTURE = "CAPTURE"
23454
+ }
23455
+ interface Duration {
23456
+ /** Amount of units. For example, 30 MINUTES, 1 HOURS, 7 DAYS, etc */
23457
+ count?: number;
23458
+ /** Duration unit: MINUTES, HOURS and DAYS */
23459
+ unit?: DurationUnit;
23460
+ }
23461
+ declare enum DurationUnit {
23462
+ UNKNOWN_DURATION_UNIT = "UNKNOWN_DURATION_UNIT",
23463
+ MINUTES = "MINUTES",
23464
+ HOURS = "HOURS",
23465
+ DAYS = "DAYS"
23466
+ }
23421
23467
  interface PreparePaymentCollectionResponse {
23422
23468
  /** Payment gateway order id which is associated with given payment */
23423
23469
  paymentGatewayOrderId?: string;
@@ -24018,7 +24064,7 @@ interface OrderLineItemChangedDetails {
24018
24064
  productName?: ProductName;
24019
24065
  /**
24020
24066
  * References to the line item's origin catalog.
24021
- * This field is empty in the case of a custom line item.
24067
+ * This field may be empty in the case of a custom line item.
24022
24068
  */
24023
24069
  catalogReference?: CatalogReference$1;
24024
24070
  /** Line item quantity. */
@@ -25229,14 +25275,14 @@ interface AuthorizationVoidNonNullableFields$1 {
25229
25275
  failureDetails?: AuthorizationActionFailureDetailsNonNullableFields$1;
25230
25276
  reason: Reason$2;
25231
25277
  }
25232
- interface ScheduledActionNonNullableFields$1 {
25278
+ interface V1ScheduledActionNonNullableFields {
25233
25279
  actionType: ActionType$2;
25234
25280
  }
25235
25281
  interface AuthorizationDetailsNonNullableFields$1 {
25236
25282
  delayedCapture: boolean;
25237
25283
  captures: AuthorizationCaptureNonNullableFields$1[];
25238
25284
  void?: AuthorizationVoidNonNullableFields$1;
25239
- scheduledAction?: ScheduledActionNonNullableFields$1;
25285
+ scheduledAction?: V1ScheduledActionNonNullableFields;
25240
25286
  }
25241
25287
  interface RegularPaymentDetailsNonNullableFields$1 {
25242
25288
  offlinePayment: boolean;
@@ -26282,6 +26328,7 @@ type index_d$8_Customer = Customer;
26282
26328
  type index_d$8_DecrementData = DecrementData;
26283
26329
  type index_d$8_DecrementItemsQuantityRequest = DecrementItemsQuantityRequest;
26284
26330
  type index_d$8_DecrementItemsQuantityResponse = DecrementItemsQuantityResponse;
26331
+ type index_d$8_DelayedCaptureSettings = DelayedCaptureSettings;
26285
26332
  type index_d$8_DeleteActivityRequest = DeleteActivityRequest;
26286
26333
  type index_d$8_DeleteActivityResponse = DeleteActivityResponse;
26287
26334
  type index_d$8_DeleteByFilterOperation = DeleteByFilterOperation;
@@ -26309,6 +26356,9 @@ type index_d$8_DraftOrderDiffsBillingUpdateInfoOneOf = DraftOrderDiffsBillingUpd
26309
26356
  type index_d$8_DraftOrderDiffsBuyerUpdateInfoOneOf = DraftOrderDiffsBuyerUpdateInfoOneOf;
26310
26357
  type index_d$8_DraftOrderDiffsRecipientUpdateInfoOneOf = DraftOrderDiffsRecipientUpdateInfoOneOf;
26311
26358
  type index_d$8_DraftOrderDiffsShippingUpdateInfoOneOf = DraftOrderDiffsShippingUpdateInfoOneOf;
26359
+ type index_d$8_Duration = Duration;
26360
+ type index_d$8_DurationUnit = DurationUnit;
26361
+ declare const index_d$8_DurationUnit: typeof DurationUnit;
26312
26362
  type index_d$8_Email = Email;
26313
26363
  type index_d$8_EmailEdited = EmailEdited;
26314
26364
  type index_d$8_ExternalUriMapping = ExternalUriMapping;
@@ -26562,6 +26612,7 @@ type index_d$8_V1LineItemDeltaDeltaOneOf = V1LineItemDeltaDeltaOneOf;
26562
26612
  type index_d$8_V1MarkOrderAsPaidRequest = V1MarkOrderAsPaidRequest;
26563
26613
  type index_d$8_V1MarkOrderAsPaidResponse = V1MarkOrderAsPaidResponse;
26564
26614
  type index_d$8_V1RestockItem = V1RestockItem;
26615
+ type index_d$8_V1ScheduledAction = V1ScheduledAction;
26565
26616
  type index_d$8_V1ShippingInformation = V1ShippingInformation;
26566
26617
  type index_d$8_Value = Value;
26567
26618
  type index_d$8_ValueType = ValueType;
@@ -26592,7 +26643,7 @@ declare const index_d$8_searchOrders: typeof searchOrders;
26592
26643
  declare const index_d$8_updateOrder: typeof updateOrder;
26593
26644
  declare const index_d$8_voidAuthorizedPayments: typeof voidAuthorizedPayments;
26594
26645
  declare namespace index_d$8 {
26595
- export { type ActionEvent$6 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type index_d$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type index_d$8_AddActivitiesRequest as AddActivitiesRequest, type index_d$8_AddActivitiesResponse as AddActivitiesResponse, type index_d$8_AddActivityRequest as AddActivityRequest, type index_d$8_AddActivityResponse as AddActivityResponse, type index_d$8_AddInternalActivityRequest as AddInternalActivityRequest, type index_d$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type index_d$8_AdditionalFeeDelta as AdditionalFeeDelta, type index_d$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$4 as Address, type index_d$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type index_d$8_AddressWithContact as AddressWithContact, type index_d$8_AggregateOrdersRequest as AggregateOrdersRequest, type index_d$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type index_d$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type index_d$8_AppliedDiscountDelta as AppliedDiscountDelta, type index_d$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$8_ArchiveOrderRequest as ArchiveOrderRequest, type index_d$8_ArchiveOrderResponse as ArchiveOrderResponse, index_d$8_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$2 as AuthorizationActionFailureDetails, type AuthorizationCapture$2 as AuthorizationCapture, AuthorizationCaptureStatus$2 as AuthorizationCaptureStatus, type AuthorizationDetails$2 as AuthorizationDetails, type AuthorizationVoid$2 as AuthorizationVoid, AuthorizationVoidStatus$2 as AuthorizationVoidStatus, type index_d$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$8_Balance as Balance, type index_d$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type index_d$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$8_BulkOrderResult as BulkOrderResult, type index_d$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type index_d$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type index_d$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type index_d$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type index_d$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type index_d$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$8_BuyerInfoUpdate as BuyerInfoUpdate, type CalculateRefundItemRequest$1 as CalculateRefundItemRequest, type CalculateRefundItemResponse$1 as CalculateRefundItemResponse, type CalculateRefundRequest$1 as CalculateRefundRequest, type CalculateRefundResponse$1 as CalculateRefundResponse, type index_d$8_CalculatedTax as CalculatedTax, type index_d$8_CalculatedTaxes as CalculatedTaxes, type index_d$8_Cancel as Cancel, type index_d$8_CancelOrderOptions as CancelOrderOptions, type index_d$8_CancelOrderRequest as CancelOrderRequest, type index_d$8_CancelOrderResponse as CancelOrderResponse, type index_d$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type index_d$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type index_d$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type index_d$8_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type index_d$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type index_d$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type index_d$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type index_d$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type index_d$8_ChargedBy as ChargedBy, type index_d$8_Color as Color, type index_d$8_CommitDeltasRequest as CommitDeltasRequest, type index_d$8_CommitDeltasResponse as CommitDeltasResponse, type index_d$8_CommittedDiffs as CommittedDiffs, type index_d$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type index_d$8_CommonAddress as CommonAddress, type index_d$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$8_Company as Company, type index_d$8_Complete as Complete, type index_d$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type index_d$8_CreateOrderRequest as CreateOrderRequest, type index_d$8_CreateOrderResponse as CreateOrderResponse, type index_d$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type index_d$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type index_d$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type index_d$8_CreatedBy as CreatedBy, type index_d$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type index_d$8_CursorSearch as CursorSearch, type index_d$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, index_d$8_CustomFieldGroup as CustomFieldGroup, type index_d$8_CustomFieldValue as CustomFieldValue, type index_d$8_Customer as Customer, type index_d$8_DecrementData as DecrementData, type index_d$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type index_d$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type index_d$8_DeleteActivityRequest as DeleteActivityRequest, type index_d$8_DeleteActivityResponse as DeleteActivityResponse, type index_d$8_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type index_d$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, index_d$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type index_d$8_Deposit as Deposit, index_d$8_DepositType as DepositType, type index_d$8_DescriptionLine as DescriptionLine, type index_d$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$8_DescriptionLineName as DescriptionLineName, index_d$8_DescriptionLineType as DescriptionLineType, type index_d$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type index_d$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, index_d$8_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type index_d$8_DownloadLinkSent as DownloadLinkSent, type index_d$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type index_d$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type index_d$8_DraftOrderDiffs as DraftOrderDiffs, type index_d$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type index_d$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type index_d$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type index_d$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type index_d$8_Email as Email, type index_d$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type index_d$8_ExternalUriMapping as ExternalUriMapping, type index_d$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type index_d$8_FullAddressContactDetails as FullAddressContactDetails, type index_d$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$8_GetOrderRequest as GetOrderRequest, type index_d$8_GetOrderResponse as GetOrderResponse, type index_d$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type index_d$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type index_d$8_GetShipmentsRequest as GetShipmentsRequest, type index_d$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type index_d$8_HtmlApplication as HtmlApplication, type index_d$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type index_d$8_InternalActivity as InternalActivity, type index_d$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type index_d$8_InternalDocument as InternalDocument, type index_d$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type index_d$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type index_d$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type index_d$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type index_d$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, index_d$8_InventoryAction as InventoryAction, type index_d$8_InventoryUpdateDetails as InventoryUpdateDetails, type index_d$8_InvoiceAdded as InvoiceAdded, type index_d$8_InvoiceDates as InvoiceDates, type index_d$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type index_d$8_InvoiceFields as InvoiceFields, type index_d$8_InvoiceSent as InvoiceSent, type index_d$8_InvoiceSentEvent as InvoiceSentEvent, index_d$8_InvoiceStatus as InvoiceStatus, type index_d$8_InvoicesPayment as InvoicesPayment, type index_d$8_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, type index_d$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type index_d$8_LineItemAmount as LineItemAmount, type index_d$8_LineItemChanges as LineItemChanges, type index_d$8_LineItemDelta as LineItemDelta, type index_d$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type index_d$8_LineItemExchangeData as LineItemExchangeData, type index_d$8_LineItemMetaData as LineItemMetaData, type index_d$8_LineItemPriceChange as LineItemPriceChange, type index_d$8_LineItemQuantityChange as LineItemQuantityChange, index_d$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type index_d$8_LineItemTax as LineItemTax, type index_d$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$8_LineItemTaxInfo as LineItemTaxInfo, type index_d$8_LineItemUpdate as LineItemUpdate, type index_d$8_LineItems as LineItems, type index_d$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type index_d$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type index_d$8_Locale as Locale, type index_d$8_LocationAndQuantity as LocationAndQuantity, type index_d$8_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$8_ManagedDiscount as ManagedDiscount, type index_d$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type index_d$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type index_d$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type index_d$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type index_d$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type index_d$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type index_d$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type index_d$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type index_d$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type index_d$8_MaskedOrder as MaskedOrder, type index_d$8_MaskedOrderLineItem as MaskedOrderLineItem, type index_d$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type index_d$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type index_d$8_MetaData as MetaData, type index_d$8_MetaSite as MetaSite, type index_d$8_MetaTag as MetaTag, index_d$8_Namespace as Namespace, type index_d$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, index_d$8_OrderApprovalStrategy as OrderApprovalStrategy, type index_d$8_OrderApproved as OrderApproved, type index_d$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type index_d$8_OrderCanceled as OrderCanceled, type index_d$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type index_d$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type index_d$8_OrderChange as OrderChange, type index_d$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$8_OrderCreateNotifications as OrderCreateNotifications, type index_d$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type index_d$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$8_OrderCreationSettings as OrderCreationSettings, type index_d$8_OrderDeltasCommitted as OrderDeltasCommitted, type index_d$8_OrderFulfilled as OrderFulfilled, type index_d$8_OrderItemsRestocked as OrderItemsRestocked, type index_d$8_OrderLineItem as OrderLineItem, type index_d$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type index_d$8_OrderNonNullableFields as OrderNonNullableFields, type index_d$8_OrderNotFulfilled as OrderNotFulfilled, type index_d$8_OrderPaid as OrderPaid, type index_d$8_OrderPartiallyPaid as OrderPartiallyPaid, type index_d$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type index_d$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, index_d$8_OrderStatus as OrderStatus, type index_d$8_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type index_d$8_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type index_d$8_PaymentCapture as PaymentCapture, index_d$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$8_PaymentRefundFailed as PaymentRefundFailed, type index_d$8_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type index_d$8_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$8_Payments as Payments, type PaymentsUpdated$2 as PaymentsUpdated, type index_d$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type index_d$8_PickupReadyEmailSent as PickupReadyEmailSent, index_d$8_Placement as Placement, type index_d$8_PlainTextValue as PlainTextValue, type index_d$8_PlatformPaging as PlatformPaging, type index_d$8_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$8_PlatformQuery as PlatformQuery, type index_d$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type index_d$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type index_d$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type index_d$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type index_d$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type index_d$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type index_d$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type index_d$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type index_d$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type index_d$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type index_d$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type index_d$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type index_d$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, index_d$8_PreviewEmailType as PreviewEmailType, type index_d$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type index_d$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type index_d$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type index_d$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type index_d$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type index_d$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type index_d$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type index_d$8_ProductName as ProductName, type index_d$8_PublicActivity as PublicActivity, type index_d$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type index_d$8_QueryOrderRequest as QueryOrderRequest, type index_d$8_QueryOrderResponse as QueryOrderResponse, type index_d$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type index_d$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type index_d$8_QuotesAddress as QuotesAddress, Reason$2 as Reason, type index_d$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type index_d$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type index_d$8_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type index_d$8_RefundInitiated as RefundInitiated, type RefundItem$2 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$2 as RefundStatus, type RefundTransaction$2 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type index_d$8_RefundedPayment as RefundedPayment, type index_d$8_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$8_RegularPaymentRefund as RegularPaymentRefund, type index_d$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type index_d$8_SavedPaymentMethod as SavedPaymentMethod, type ScheduledAction$2 as ScheduledAction, type index_d$8_SearchOrdersOptions as SearchOrdersOptions, type index_d$8_SearchOrdersRequest as SearchOrdersRequest, type index_d$8_SearchOrdersResponse as SearchOrdersResponse, type index_d$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type index_d$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type index_d$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type index_d$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type index_d$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type index_d$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type index_d$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type index_d$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type index_d$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type index_d$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type index_d$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type index_d$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type index_d$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type index_d$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type index_d$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type index_d$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type index_d$8_ShippingAddressEdited as ShippingAddressEdited, type index_d$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type index_d$8_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$2 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, index_d$8_SourceType as SourceType, type index_d$8_StandardDetails as StandardDetails, index_d$8_State as State, type StreetAddress$3 as StreetAddress, type index_d$8_Subdivision as Subdivision, index_d$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type index_d$8_TagList as TagList, type index_d$8_Tags as Tags, type index_d$8_Task as Task, type index_d$8_TaskAction as TaskAction, type index_d$8_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type index_d$8_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type index_d$8_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type index_d$8_TotalPrice as TotalPrice, type index_d$8_TotalPriceChange as TotalPriceChange, type index_d$8_TrackingLinkAdded as TrackingLinkAdded, type index_d$8_TrackingNumberAdded as TrackingNumberAdded, type index_d$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type index_d$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type index_d$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type index_d$8_TriggerReindexRequest as TriggerReindexRequest, type index_d$8_TriggerReindexResponse as TriggerReindexResponse, type index_d$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type index_d$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type index_d$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type index_d$8_UpdateActivityRequest as UpdateActivityRequest, type index_d$8_UpdateActivityResponse as UpdateActivityResponse, type index_d$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type index_d$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type index_d$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type index_d$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type index_d$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type index_d$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type index_d$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type index_d$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type index_d$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type index_d$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type index_d$8_UpdateOrder as UpdateOrder, type index_d$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type index_d$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type index_d$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type index_d$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type index_d$8_UpdateOrderRequest as UpdateOrderRequest, type index_d$8_UpdateOrderResponse as UpdateOrderResponse, type index_d$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type index_d$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type index_d$8_UpsertRefundRequest as UpsertRefundRequest, type index_d$8_UpsertRefundResponse as UpsertRefundResponse, type index_d$8_UserDataResponse as UserDataResponse, type index_d$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type index_d$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type index_d$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type index_d$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type index_d$8_V1LineItemDelta as V1LineItemDelta, type index_d$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type index_d$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$8_V1RestockItem as V1RestockItem, type index_d$8_V1ShippingInformation as V1ShippingInformation, type index_d$8_Value as Value, index_d$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type index_d$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type index_d$8_VersionedDocumentId as VersionedDocumentId, type index_d$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, index_d$8_VersioningMode as VersioningMode, type index_d$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type index_d$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type index_d$8_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type index_d$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type index_d$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type index_d$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type index_d$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, index_d$8_bulkUpdateOrders as bulkUpdateOrders, index_d$8_cancelOrder as cancelOrder, index_d$8_captureAuthorizedPayments as captureAuthorizedPayments, index_d$8_createOrder as createOrder, index_d$8_getOrder as getOrder, index_d$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, index_d$8_onOrderApproved as onOrderApproved, index_d$8_onOrderCanceled as onOrderCanceled, index_d$8_onOrderCreated as onOrderCreated, index_d$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, index_d$8_searchOrders as searchOrders, index_d$8_updateOrder as updateOrder, index_d$8_voidAuthorizedPayments as voidAuthorizedPayments };
26646
+ export { type ActionEvent$6 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type index_d$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type index_d$8_AddActivitiesRequest as AddActivitiesRequest, type index_d$8_AddActivitiesResponse as AddActivitiesResponse, type index_d$8_AddActivityRequest as AddActivityRequest, type index_d$8_AddActivityResponse as AddActivityResponse, type index_d$8_AddInternalActivityRequest as AddInternalActivityRequest, type index_d$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type index_d$8_AdditionalFeeDelta as AdditionalFeeDelta, type index_d$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$4 as Address, type index_d$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type index_d$8_AddressWithContact as AddressWithContact, type index_d$8_AggregateOrdersRequest as AggregateOrdersRequest, type index_d$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type index_d$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type index_d$8_AppliedDiscountDelta as AppliedDiscountDelta, type index_d$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$8_ArchiveOrderRequest as ArchiveOrderRequest, type index_d$8_ArchiveOrderResponse as ArchiveOrderResponse, index_d$8_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$2 as AuthorizationActionFailureDetails, type AuthorizationCapture$2 as AuthorizationCapture, AuthorizationCaptureStatus$2 as AuthorizationCaptureStatus, type AuthorizationDetails$2 as AuthorizationDetails, type AuthorizationVoid$2 as AuthorizationVoid, AuthorizationVoidStatus$2 as AuthorizationVoidStatus, type index_d$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$8_Balance as Balance, type index_d$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type index_d$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$8_BulkOrderResult as BulkOrderResult, type index_d$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type index_d$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type index_d$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type index_d$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type index_d$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type index_d$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$8_BuyerInfoUpdate as BuyerInfoUpdate, type CalculateRefundItemRequest$1 as CalculateRefundItemRequest, type CalculateRefundItemResponse$1 as CalculateRefundItemResponse, type CalculateRefundRequest$1 as CalculateRefundRequest, type CalculateRefundResponse$1 as CalculateRefundResponse, type index_d$8_CalculatedTax as CalculatedTax, type index_d$8_CalculatedTaxes as CalculatedTaxes, type index_d$8_Cancel as Cancel, type index_d$8_CancelOrderOptions as CancelOrderOptions, type index_d$8_CancelOrderRequest as CancelOrderRequest, type index_d$8_CancelOrderResponse as CancelOrderResponse, type index_d$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type index_d$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type index_d$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type index_d$8_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type index_d$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type index_d$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type index_d$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type index_d$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type index_d$8_ChargedBy as ChargedBy, type index_d$8_Color as Color, type index_d$8_CommitDeltasRequest as CommitDeltasRequest, type index_d$8_CommitDeltasResponse as CommitDeltasResponse, type index_d$8_CommittedDiffs as CommittedDiffs, type index_d$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type index_d$8_CommonAddress as CommonAddress, type index_d$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$8_Company as Company, type index_d$8_Complete as Complete, type index_d$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type index_d$8_CreateOrderRequest as CreateOrderRequest, type index_d$8_CreateOrderResponse as CreateOrderResponse, type index_d$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type index_d$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type index_d$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type index_d$8_CreatedBy as CreatedBy, type index_d$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type index_d$8_CursorSearch as CursorSearch, type index_d$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, index_d$8_CustomFieldGroup as CustomFieldGroup, type index_d$8_CustomFieldValue as CustomFieldValue, type index_d$8_Customer as Customer, type index_d$8_DecrementData as DecrementData, type index_d$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type index_d$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type index_d$8_DelayedCaptureSettings as DelayedCaptureSettings, type index_d$8_DeleteActivityRequest as DeleteActivityRequest, type index_d$8_DeleteActivityResponse as DeleteActivityResponse, type index_d$8_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type index_d$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, index_d$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type index_d$8_Deposit as Deposit, index_d$8_DepositType as DepositType, type index_d$8_DescriptionLine as DescriptionLine, type index_d$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$8_DescriptionLineName as DescriptionLineName, index_d$8_DescriptionLineType as DescriptionLineType, type index_d$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type index_d$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, index_d$8_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type index_d$8_DownloadLinkSent as DownloadLinkSent, type index_d$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type index_d$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type index_d$8_DraftOrderDiffs as DraftOrderDiffs, type index_d$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type index_d$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type index_d$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type index_d$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type index_d$8_Duration as Duration, index_d$8_DurationUnit as DurationUnit, type index_d$8_Email as Email, type index_d$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type index_d$8_ExternalUriMapping as ExternalUriMapping, type index_d$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type index_d$8_FullAddressContactDetails as FullAddressContactDetails, type index_d$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$8_GetOrderRequest as GetOrderRequest, type index_d$8_GetOrderResponse as GetOrderResponse, type index_d$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type index_d$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type index_d$8_GetShipmentsRequest as GetShipmentsRequest, type index_d$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type index_d$8_HtmlApplication as HtmlApplication, type index_d$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type index_d$8_InternalActivity as InternalActivity, type index_d$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type index_d$8_InternalDocument as InternalDocument, type index_d$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type index_d$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type index_d$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type index_d$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type index_d$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, index_d$8_InventoryAction as InventoryAction, type index_d$8_InventoryUpdateDetails as InventoryUpdateDetails, type index_d$8_InvoiceAdded as InvoiceAdded, type index_d$8_InvoiceDates as InvoiceDates, type index_d$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type index_d$8_InvoiceFields as InvoiceFields, type index_d$8_InvoiceSent as InvoiceSent, type index_d$8_InvoiceSentEvent as InvoiceSentEvent, index_d$8_InvoiceStatus as InvoiceStatus, type index_d$8_InvoicesPayment as InvoicesPayment, type index_d$8_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, type index_d$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type index_d$8_LineItemAmount as LineItemAmount, type index_d$8_LineItemChanges as LineItemChanges, type index_d$8_LineItemDelta as LineItemDelta, type index_d$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type index_d$8_LineItemExchangeData as LineItemExchangeData, type index_d$8_LineItemMetaData as LineItemMetaData, type index_d$8_LineItemPriceChange as LineItemPriceChange, type index_d$8_LineItemQuantityChange as LineItemQuantityChange, index_d$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type index_d$8_LineItemTax as LineItemTax, type index_d$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$8_LineItemTaxInfo as LineItemTaxInfo, type index_d$8_LineItemUpdate as LineItemUpdate, type index_d$8_LineItems as LineItems, type index_d$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type index_d$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type index_d$8_Locale as Locale, type index_d$8_LocationAndQuantity as LocationAndQuantity, type index_d$8_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$8_ManagedDiscount as ManagedDiscount, type index_d$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type index_d$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type index_d$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type index_d$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type index_d$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type index_d$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type index_d$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type index_d$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type index_d$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type index_d$8_MaskedOrder as MaskedOrder, type index_d$8_MaskedOrderLineItem as MaskedOrderLineItem, type index_d$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type index_d$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type index_d$8_MetaData as MetaData, type index_d$8_MetaSite as MetaSite, type index_d$8_MetaTag as MetaTag, index_d$8_Namespace as Namespace, type index_d$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, index_d$8_OrderApprovalStrategy as OrderApprovalStrategy, type index_d$8_OrderApproved as OrderApproved, type index_d$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type index_d$8_OrderCanceled as OrderCanceled, type index_d$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type index_d$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type index_d$8_OrderChange as OrderChange, type index_d$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$8_OrderCreateNotifications as OrderCreateNotifications, type index_d$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type index_d$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$8_OrderCreationSettings as OrderCreationSettings, type index_d$8_OrderDeltasCommitted as OrderDeltasCommitted, type index_d$8_OrderFulfilled as OrderFulfilled, type index_d$8_OrderItemsRestocked as OrderItemsRestocked, type index_d$8_OrderLineItem as OrderLineItem, type index_d$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type index_d$8_OrderNonNullableFields as OrderNonNullableFields, type index_d$8_OrderNotFulfilled as OrderNotFulfilled, type index_d$8_OrderPaid as OrderPaid, type index_d$8_OrderPartiallyPaid as OrderPartiallyPaid, type index_d$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type index_d$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, index_d$8_OrderStatus as OrderStatus, type index_d$8_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type index_d$8_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type index_d$8_PaymentCapture as PaymentCapture, index_d$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$8_PaymentRefundFailed as PaymentRefundFailed, type index_d$8_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type index_d$8_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$8_Payments as Payments, type PaymentsUpdated$2 as PaymentsUpdated, type index_d$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type index_d$8_PickupReadyEmailSent as PickupReadyEmailSent, index_d$8_Placement as Placement, type index_d$8_PlainTextValue as PlainTextValue, type index_d$8_PlatformPaging as PlatformPaging, type index_d$8_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$8_PlatformQuery as PlatformQuery, type index_d$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type index_d$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type index_d$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type index_d$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type index_d$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type index_d$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type index_d$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type index_d$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type index_d$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type index_d$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type index_d$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type index_d$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type index_d$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, index_d$8_PreviewEmailType as PreviewEmailType, type index_d$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type index_d$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type index_d$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type index_d$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type index_d$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type index_d$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type index_d$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type index_d$8_ProductName as ProductName, type index_d$8_PublicActivity as PublicActivity, type index_d$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type index_d$8_QueryOrderRequest as QueryOrderRequest, type index_d$8_QueryOrderResponse as QueryOrderResponse, type index_d$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type index_d$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type index_d$8_QuotesAddress as QuotesAddress, Reason$2 as Reason, type index_d$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type index_d$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type index_d$8_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type index_d$8_RefundInitiated as RefundInitiated, type RefundItem$2 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$2 as RefundStatus, type RefundTransaction$2 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type index_d$8_RefundedPayment as RefundedPayment, type index_d$8_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$8_RegularPaymentRefund as RegularPaymentRefund, type index_d$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type index_d$8_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$2 as ScheduledAction, type index_d$8_SearchOrdersOptions as SearchOrdersOptions, type index_d$8_SearchOrdersRequest as SearchOrdersRequest, type index_d$8_SearchOrdersResponse as SearchOrdersResponse, type index_d$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type index_d$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type index_d$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type index_d$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type index_d$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type index_d$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type index_d$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type index_d$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type index_d$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type index_d$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type index_d$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type index_d$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type index_d$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type index_d$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type index_d$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type index_d$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type index_d$8_ShippingAddressEdited as ShippingAddressEdited, type index_d$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type index_d$8_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$2 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, index_d$8_SourceType as SourceType, type index_d$8_StandardDetails as StandardDetails, index_d$8_State as State, type StreetAddress$3 as StreetAddress, type index_d$8_Subdivision as Subdivision, index_d$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type index_d$8_TagList as TagList, type index_d$8_Tags as Tags, type index_d$8_Task as Task, type index_d$8_TaskAction as TaskAction, type index_d$8_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type index_d$8_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type index_d$8_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type index_d$8_TotalPrice as TotalPrice, type index_d$8_TotalPriceChange as TotalPriceChange, type index_d$8_TrackingLinkAdded as TrackingLinkAdded, type index_d$8_TrackingNumberAdded as TrackingNumberAdded, type index_d$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type index_d$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type index_d$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type index_d$8_TriggerReindexRequest as TriggerReindexRequest, type index_d$8_TriggerReindexResponse as TriggerReindexResponse, type index_d$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type index_d$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type index_d$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type index_d$8_UpdateActivityRequest as UpdateActivityRequest, type index_d$8_UpdateActivityResponse as UpdateActivityResponse, type index_d$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type index_d$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type index_d$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type index_d$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type index_d$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type index_d$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type index_d$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type index_d$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type index_d$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type index_d$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type index_d$8_UpdateOrder as UpdateOrder, type index_d$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type index_d$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type index_d$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type index_d$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type index_d$8_UpdateOrderRequest as UpdateOrderRequest, type index_d$8_UpdateOrderResponse as UpdateOrderResponse, type index_d$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type index_d$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type index_d$8_UpsertRefundRequest as UpsertRefundRequest, type index_d$8_UpsertRefundResponse as UpsertRefundResponse, type index_d$8_UserDataResponse as UserDataResponse, type index_d$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type index_d$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type index_d$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type index_d$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type index_d$8_V1LineItemDelta as V1LineItemDelta, type index_d$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type index_d$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$8_V1RestockItem as V1RestockItem, type index_d$8_V1ScheduledAction as V1ScheduledAction, type index_d$8_V1ShippingInformation as V1ShippingInformation, type index_d$8_Value as Value, index_d$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type index_d$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type index_d$8_VersionedDocumentId as VersionedDocumentId, type index_d$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, index_d$8_VersioningMode as VersioningMode, type index_d$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type index_d$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type index_d$8_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type index_d$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type index_d$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type index_d$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type index_d$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, index_d$8_bulkUpdateOrders as bulkUpdateOrders, index_d$8_cancelOrder as cancelOrder, index_d$8_captureAuthorizedPayments as captureAuthorizedPayments, index_d$8_createOrder as createOrder, index_d$8_getOrder as getOrder, index_d$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, index_d$8_onOrderApproved as onOrderApproved, index_d$8_onOrderCanceled as onOrderCanceled, index_d$8_onOrderCreated as onOrderCreated, index_d$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, index_d$8_searchOrders as searchOrders, index_d$8_updateOrder as updateOrder, index_d$8_voidAuthorizedPayments as voidAuthorizedPayments };
26596
26647
  }
26597
26648
 
26598
26649
  interface OrderPaymentRequest {
@@ -32071,7 +32122,7 @@ interface LineItem {
32071
32122
  /**
32072
32123
  * Optional references to the line item's origin catalog.
32073
32124
  * See [Catalog SPI](https://bo.wix.com/wix-docs/rest/ecommerce/catalog-spi/introduction) for more details.
32074
- * This field is empty in the case of a custom line item.
32125
+ * This field may be empty in the case of a custom line item.
32075
32126
  * currently we only use the catalog app id to set tax=0 for specific apps.
32076
32127
  */
32077
32128
  catalogReference?: CatalogReference;
@@ -32449,9 +32500,15 @@ declare enum DataFetchType {
32449
32500
  ORDER_VALIDATION = "ORDER_VALIDATION"
32450
32501
  }
32451
32502
  interface ExternalReference {
32452
- /** ID of the app that associated with the purchase flow. */
32503
+ /**
32504
+ * ID of the app associated with the purchase flow.
32505
+ * For example, the Wix Pay Links app ID.
32506
+ */
32453
32507
  appId?: string;
32454
- /** Reference to an external system ID, used to link the purchase flow to a specific ID in another system */
32508
+ /**
32509
+ * Reference to an external resource ID. Used to link the purchase flow to a specific entity in an external system.
32510
+ * For example, a Wix Pay Link ID.
32511
+ */
32455
32512
  resourceId?: string | null;
32456
32513
  }
32457
32514
  interface CalculateTotalsResponse {