@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.
- package/build/cjs/service-plugins-context.d.ts +1 -0
- package/build/cjs/service-plugins-context.js +2 -1
- package/build/cjs/service-plugins-context.js.map +1 -1
- package/build/cjs/service-plugins.d.ts +1 -0
- package/build/cjs/service-plugins.js +2 -1
- package/build/cjs/service-plugins.js.map +1 -1
- package/build/es/service-plugins-context.d.ts +1 -0
- package/build/es/service-plugins-context.js +1 -0
- package/build/es/service-plugins-context.js.map +1 -1
- package/build/es/service-plugins.d.ts +1 -0
- package/build/es/service-plugins.js +1 -0
- package/build/es/service-plugins.js.map +1 -1
- package/package.json +33 -32
- package/type-bundles/context.bundle.d.ts +157 -100
- package/type-bundles/index.bundle.d.ts +157 -100
- package/type-bundles/meta.bundle.d.ts +77 -123
- package/type-bundles/service-plugins-context.bundle.d.ts +368 -41
- package/type-bundles/service-plugins.bundle.d.ts +368 -41
|
@@ -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
|
|
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
|
-
*
|
|
8805
|
+
* Reference IDs for the app and component providing custom checkout page content.
|
|
8794
8806
|
*
|
|
8795
|
-
*
|
|
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
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
*
|
|
11674
|
+
* Reference IDs for the app and component providing custom checkout page content.
|
|
11655
11675
|
*
|
|
11656
|
-
*
|
|
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
|
-
/**
|
|
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
|
-
*
|
|
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
|
-
*
|
|
12515
|
+
* Reference IDs for the app and component providing custom checkout page content.
|
|
12500
12516
|
*
|
|
12501
|
-
*
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
*
|
|
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
|
-
*
|
|
13201
|
+
* Reference IDs for the app and component providing custom checkout page content.
|
|
13180
13202
|
*
|
|
13181
|
-
*
|
|
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
|
|
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
|
-
*
|
|
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
|
-
*
|
|
14598
|
+
* Reference IDs for the app and component providing custom checkout page content.
|
|
14581
14599
|
*
|
|
14582
|
-
*
|
|
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
|
|
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?:
|
|
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
|
|
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
|
|
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
|
|
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?:
|
|
25285
|
+
scheduledAction?: V1ScheduledActionNonNullableFields;
|
|
25240
25286
|
}
|
|
25241
25287
|
interface RegularPaymentDetailsNonNullableFields$1 {
|
|
25242
25288
|
offlinePayment: boolean;
|
|
@@ -26282,6 +26328,7 @@ type context$8_Customer = Customer;
|
|
|
26282
26328
|
type context$8_DecrementData = DecrementData;
|
|
26283
26329
|
type context$8_DecrementItemsQuantityRequest = DecrementItemsQuantityRequest;
|
|
26284
26330
|
type context$8_DecrementItemsQuantityResponse = DecrementItemsQuantityResponse;
|
|
26331
|
+
type context$8_DelayedCaptureSettings = DelayedCaptureSettings;
|
|
26285
26332
|
type context$8_DeleteActivityRequest = DeleteActivityRequest;
|
|
26286
26333
|
type context$8_DeleteActivityResponse = DeleteActivityResponse;
|
|
26287
26334
|
type context$8_DeleteByFilterOperation = DeleteByFilterOperation;
|
|
@@ -26309,6 +26356,9 @@ type context$8_DraftOrderDiffsBillingUpdateInfoOneOf = DraftOrderDiffsBillingUpd
|
|
|
26309
26356
|
type context$8_DraftOrderDiffsBuyerUpdateInfoOneOf = DraftOrderDiffsBuyerUpdateInfoOneOf;
|
|
26310
26357
|
type context$8_DraftOrderDiffsRecipientUpdateInfoOneOf = DraftOrderDiffsRecipientUpdateInfoOneOf;
|
|
26311
26358
|
type context$8_DraftOrderDiffsShippingUpdateInfoOneOf = DraftOrderDiffsShippingUpdateInfoOneOf;
|
|
26359
|
+
type context$8_Duration = Duration;
|
|
26360
|
+
type context$8_DurationUnit = DurationUnit;
|
|
26361
|
+
declare const context$8_DurationUnit: typeof DurationUnit;
|
|
26312
26362
|
type context$8_Email = Email;
|
|
26313
26363
|
type context$8_EmailEdited = EmailEdited;
|
|
26314
26364
|
type context$8_ExternalUriMapping = ExternalUriMapping;
|
|
@@ -26562,6 +26612,7 @@ type context$8_V1LineItemDeltaDeltaOneOf = V1LineItemDeltaDeltaOneOf;
|
|
|
26562
26612
|
type context$8_V1MarkOrderAsPaidRequest = V1MarkOrderAsPaidRequest;
|
|
26563
26613
|
type context$8_V1MarkOrderAsPaidResponse = V1MarkOrderAsPaidResponse;
|
|
26564
26614
|
type context$8_V1RestockItem = V1RestockItem;
|
|
26615
|
+
type context$8_V1ScheduledAction = V1ScheduledAction;
|
|
26565
26616
|
type context$8_V1ShippingInformation = V1ShippingInformation;
|
|
26566
26617
|
type context$8_Value = Value;
|
|
26567
26618
|
type context$8_ValueType = ValueType;
|
|
@@ -26592,7 +26643,7 @@ declare const context$8_searchOrders: typeof searchOrders;
|
|
|
26592
26643
|
declare const context$8_updateOrder: typeof updateOrder;
|
|
26593
26644
|
declare const context$8_voidAuthorizedPayments: typeof voidAuthorizedPayments;
|
|
26594
26645
|
declare namespace context$8 {
|
|
26595
|
-
export { type ActionEvent$6 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type context$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type context$8_AddActivitiesRequest as AddActivitiesRequest, type context$8_AddActivitiesResponse as AddActivitiesResponse, type context$8_AddActivityRequest as AddActivityRequest, type context$8_AddActivityResponse as AddActivityResponse, type context$8_AddInternalActivityRequest as AddInternalActivityRequest, type context$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type context$8_AdditionalFeeDelta as AdditionalFeeDelta, type context$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$4 as Address, type context$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type context$8_AddressWithContact as AddressWithContact, type context$8_AggregateOrdersRequest as AggregateOrdersRequest, type context$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type context$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type context$8_AppliedDiscountDelta as AppliedDiscountDelta, type context$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type context$8_ArchiveOrderRequest as ArchiveOrderRequest, type context$8_ArchiveOrderResponse as ArchiveOrderResponse, context$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 context$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$8_Balance as Balance, type context$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type context$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type context$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type context$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type context$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type context$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type context$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type context$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type context$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type context$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type context$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type context$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type context$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type context$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type context$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type context$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type context$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type context$8_BulkOrderResult as BulkOrderResult, type context$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type context$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type context$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type context$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type context$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type context$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type context$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type context$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type context$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type context$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type context$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type context$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type context$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type context$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type context$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type context$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$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 context$8_CalculatedTax as CalculatedTax, type context$8_CalculatedTaxes as CalculatedTaxes, type context$8_Cancel as Cancel, type context$8_CancelOrderOptions as CancelOrderOptions, type context$8_CancelOrderRequest as CancelOrderRequest, type context$8_CancelOrderResponse as CancelOrderResponse, type context$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type context$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type context$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type context$8_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type context$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type context$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type context$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type context$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type context$8_ChargedBy as ChargedBy, type context$8_Color as Color, type context$8_CommitDeltasRequest as CommitDeltasRequest, type context$8_CommitDeltasResponse as CommitDeltasResponse, type context$8_CommittedDiffs as CommittedDiffs, type context$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type context$8_CommonAddress as CommonAddress, type context$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type context$8_Company as Company, type context$8_Complete as Complete, type context$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type context$8_CreateOrderRequest as CreateOrderRequest, type context$8_CreateOrderResponse as CreateOrderResponse, type context$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type context$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type context$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type context$8_CreatedBy as CreatedBy, type context$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type context$8_CursorSearch as CursorSearch, type context$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type context$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, context$8_CustomFieldGroup as CustomFieldGroup, type context$8_CustomFieldValue as CustomFieldValue, type context$8_Customer as Customer, type context$8_DecrementData as DecrementData, type context$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type context$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type context$8_DeleteActivityRequest as DeleteActivityRequest, type context$8_DeleteActivityResponse as DeleteActivityResponse, type context$8_DeleteByFilterOperation as DeleteByFilterOperation, type context$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type context$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, context$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type context$8_Deposit as Deposit, context$8_DepositType as DepositType, type context$8_DescriptionLine as DescriptionLine, type context$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$8_DescriptionLineName as DescriptionLineName, context$8_DescriptionLineType as DescriptionLineType, type context$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type context$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, context$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 context$8_DownloadLinkSent as DownloadLinkSent, type context$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type context$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type context$8_DraftOrderDiffs as DraftOrderDiffs, type context$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type context$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type context$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type context$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type context$8_Email as Email, type context$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 context$8_ExternalUriMapping as ExternalUriMapping, type context$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type context$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type context$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type context$8_FullAddressContactDetails as FullAddressContactDetails, type context$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type context$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type context$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type context$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type context$8_GetOrderRequest as GetOrderRequest, type context$8_GetOrderResponse as GetOrderResponse, type context$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type context$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type context$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type context$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type context$8_GetShipmentsRequest as GetShipmentsRequest, type context$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type context$8_HtmlApplication as HtmlApplication, type context$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type context$8_InternalActivity as InternalActivity, type context$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type context$8_InternalDocument as InternalDocument, type context$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type context$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type context$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type context$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type context$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, context$8_InventoryAction as InventoryAction, type context$8_InventoryUpdateDetails as InventoryUpdateDetails, type context$8_InvoiceAdded as InvoiceAdded, type context$8_InvoiceDates as InvoiceDates, type context$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type context$8_InvoiceFields as InvoiceFields, type context$8_InvoiceSent as InvoiceSent, type context$8_InvoiceSentEvent as InvoiceSentEvent, context$8_InvoiceStatus as InvoiceStatus, type context$8_InvoicesPayment as InvoicesPayment, type context$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 context$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type context$8_LineItemAmount as LineItemAmount, type context$8_LineItemChanges as LineItemChanges, type context$8_LineItemDelta as LineItemDelta, type context$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type context$8_LineItemExchangeData as LineItemExchangeData, type context$8_LineItemMetaData as LineItemMetaData, type context$8_LineItemPriceChange as LineItemPriceChange, type context$8_LineItemQuantityChange as LineItemQuantityChange, context$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type context$8_LineItemTax as LineItemTax, type context$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$8_LineItemTaxInfo as LineItemTaxInfo, type context$8_LineItemUpdate as LineItemUpdate, type context$8_LineItems as LineItems, type context$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type context$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type context$8_Locale as Locale, type context$8_LocationAndQuantity as LocationAndQuantity, type context$8_ManagedAdditionalFee as ManagedAdditionalFee, type context$8_ManagedDiscount as ManagedDiscount, type context$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type context$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type context$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type context$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type context$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type context$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type context$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type context$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type context$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type context$8_MaskedOrder as MaskedOrder, type context$8_MaskedOrderLineItem as MaskedOrderLineItem, type context$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type context$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type context$8_MetaData as MetaData, type context$8_MetaSite as MetaSite, type context$8_MetaTag as MetaTag, context$8_Namespace as Namespace, type context$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, context$8_OrderApprovalStrategy as OrderApprovalStrategy, type context$8_OrderApproved as OrderApproved, type context$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type context$8_OrderCanceled as OrderCanceled, type context$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type context$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type context$8_OrderChange as OrderChange, type context$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$8_OrderCreateNotifications as OrderCreateNotifications, type context$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type context$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$8_OrderCreationSettings as OrderCreationSettings, type context$8_OrderDeltasCommitted as OrderDeltasCommitted, type context$8_OrderFulfilled as OrderFulfilled, type context$8_OrderItemsRestocked as OrderItemsRestocked, type context$8_OrderLineItem as OrderLineItem, type context$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type context$8_OrderNonNullableFields as OrderNonNullableFields, type context$8_OrderNotFulfilled as OrderNotFulfilled, type context$8_OrderPaid as OrderPaid, type context$8_OrderPartiallyPaid as OrderPartiallyPaid, type context$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type context$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, context$8_OrderStatus as OrderStatus, type context$8_OrderTaxBreakdown as OrderTaxBreakdown, type context$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type context$8_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type context$8_PaymentCapture as PaymentCapture, context$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type context$8_PaymentRefundFailed as PaymentRefundFailed, type context$8_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type context$8_PaymentStatusUpdated as PaymentStatusUpdated, type context$8_Payments as Payments, type PaymentsUpdated$2 as PaymentsUpdated, type context$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type context$8_PickupReadyEmailSent as PickupReadyEmailSent, context$8_Placement as Placement, type context$8_PlainTextValue as PlainTextValue, type context$8_PlatformPaging as PlatformPaging, type context$8_PlatformPagingMetadata as PlatformPagingMetadata, type context$8_PlatformQuery as PlatformQuery, type context$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type context$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type context$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type context$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type context$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type context$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type context$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type context$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type context$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type context$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type context$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type context$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type context$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type context$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type context$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, context$8_PreviewEmailType as PreviewEmailType, type context$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type context$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type context$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type context$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type context$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type context$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type context$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type context$8_ProductName as ProductName, type context$8_PublicActivity as PublicActivity, type context$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type context$8_QueryOrderRequest as QueryOrderRequest, type context$8_QueryOrderResponse as QueryOrderResponse, type context$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type context$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type context$8_QuotesAddress as QuotesAddress, Reason$2 as Reason, type context$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type context$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type context$8_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type context$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 context$8_RefundedPayment as RefundedPayment, type context$8_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$8_RegularPaymentRefund as RegularPaymentRefund, type context$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type context$8_SavedPaymentMethod as SavedPaymentMethod, type ScheduledAction$2 as ScheduledAction, type context$8_SearchOrdersOptions as SearchOrdersOptions, type context$8_SearchOrdersRequest as SearchOrdersRequest, type context$8_SearchOrdersResponse as SearchOrdersResponse, type context$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type context$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type context$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type context$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type context$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type context$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type context$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type context$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type context$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type context$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type context$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type context$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type context$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type context$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type context$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type context$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type context$8_ShippingAddressEdited as ShippingAddressEdited, type context$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type context$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, context$8_SourceType as SourceType, type context$8_StandardDetails as StandardDetails, context$8_State as State, type StreetAddress$3 as StreetAddress, type context$8_Subdivision as Subdivision, context$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type context$8_TagList as TagList, type context$8_Tags as Tags, type context$8_Task as Task, type context$8_TaskAction as TaskAction, type context$8_TaskActionActionOneOf as TaskActionActionOneOf, type context$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type context$8_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type context$8_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type context$8_TotalPrice as TotalPrice, type context$8_TotalPriceChange as TotalPriceChange, type context$8_TrackingLinkAdded as TrackingLinkAdded, type context$8_TrackingNumberAdded as TrackingNumberAdded, type context$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type context$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type context$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type context$8_TriggerReindexRequest as TriggerReindexRequest, type context$8_TriggerReindexResponse as TriggerReindexResponse, type context$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type context$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type context$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type context$8_UpdateActivityRequest as UpdateActivityRequest, type context$8_UpdateActivityResponse as UpdateActivityResponse, type context$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type context$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type context$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type context$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type context$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type context$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type context$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type context$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type context$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type context$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type context$8_UpdateOrder as UpdateOrder, type context$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type context$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type context$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type context$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type context$8_UpdateOrderRequest as UpdateOrderRequest, type context$8_UpdateOrderResponse as UpdateOrderResponse, type context$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type context$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type context$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type context$8_UpsertRefundRequest as UpsertRefundRequest, type context$8_UpsertRefundResponse as UpsertRefundResponse, type context$8_UserDataResponse as UserDataResponse, type context$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type context$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type context$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type context$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type context$8_V1LineItemDelta as V1LineItemDelta, type context$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type context$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type context$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type context$8_V1RestockItem as V1RestockItem, type context$8_V1ShippingInformation as V1ShippingInformation, type context$8_Value as Value, context$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type context$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type context$8_VersionedDocumentId as VersionedDocumentId, type context$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, context$8_VersioningMode as VersioningMode, type context$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type context$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type context$8_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type context$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type context$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type context$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type context$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, context$8_bulkUpdateOrders as bulkUpdateOrders, context$8_cancelOrder as cancelOrder, context$8_captureAuthorizedPayments as captureAuthorizedPayments, context$8_createOrder as createOrder, context$8_getOrder as getOrder, context$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, context$8_onOrderApproved as onOrderApproved, context$8_onOrderCanceled as onOrderCanceled, context$8_onOrderCreated as onOrderCreated, context$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, context$8_searchOrders as searchOrders, context$8_updateOrder as updateOrder, context$8_voidAuthorizedPayments as voidAuthorizedPayments };
|
|
26646
|
+
export { type ActionEvent$6 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type context$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type context$8_AddActivitiesRequest as AddActivitiesRequest, type context$8_AddActivitiesResponse as AddActivitiesResponse, type context$8_AddActivityRequest as AddActivityRequest, type context$8_AddActivityResponse as AddActivityResponse, type context$8_AddInternalActivityRequest as AddInternalActivityRequest, type context$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type context$8_AdditionalFeeDelta as AdditionalFeeDelta, type context$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$4 as Address, type context$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type context$8_AddressWithContact as AddressWithContact, type context$8_AggregateOrdersRequest as AggregateOrdersRequest, type context$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type context$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type context$8_AppliedDiscountDelta as AppliedDiscountDelta, type context$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type context$8_ArchiveOrderRequest as ArchiveOrderRequest, type context$8_ArchiveOrderResponse as ArchiveOrderResponse, context$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 context$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$8_Balance as Balance, type context$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type context$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type context$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type context$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type context$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type context$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type context$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type context$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type context$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type context$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type context$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type context$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type context$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type context$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type context$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type context$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type context$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type context$8_BulkOrderResult as BulkOrderResult, type context$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type context$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type context$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type context$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type context$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type context$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type context$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type context$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type context$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type context$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type context$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type context$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type context$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type context$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type context$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type context$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$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 context$8_CalculatedTax as CalculatedTax, type context$8_CalculatedTaxes as CalculatedTaxes, type context$8_Cancel as Cancel, type context$8_CancelOrderOptions as CancelOrderOptions, type context$8_CancelOrderRequest as CancelOrderRequest, type context$8_CancelOrderResponse as CancelOrderResponse, type context$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type context$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type context$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type context$8_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type context$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type context$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type context$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type context$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type context$8_ChargedBy as ChargedBy, type context$8_Color as Color, type context$8_CommitDeltasRequest as CommitDeltasRequest, type context$8_CommitDeltasResponse as CommitDeltasResponse, type context$8_CommittedDiffs as CommittedDiffs, type context$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type context$8_CommonAddress as CommonAddress, type context$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type context$8_Company as Company, type context$8_Complete as Complete, type context$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type context$8_CreateOrderRequest as CreateOrderRequest, type context$8_CreateOrderResponse as CreateOrderResponse, type context$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type context$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type context$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type context$8_CreatedBy as CreatedBy, type context$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type context$8_CursorSearch as CursorSearch, type context$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type context$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, context$8_CustomFieldGroup as CustomFieldGroup, type context$8_CustomFieldValue as CustomFieldValue, type context$8_Customer as Customer, type context$8_DecrementData as DecrementData, type context$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type context$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type context$8_DelayedCaptureSettings as DelayedCaptureSettings, type context$8_DeleteActivityRequest as DeleteActivityRequest, type context$8_DeleteActivityResponse as DeleteActivityResponse, type context$8_DeleteByFilterOperation as DeleteByFilterOperation, type context$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type context$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, context$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type context$8_Deposit as Deposit, context$8_DepositType as DepositType, type context$8_DescriptionLine as DescriptionLine, type context$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$8_DescriptionLineName as DescriptionLineName, context$8_DescriptionLineType as DescriptionLineType, type context$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type context$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, context$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 context$8_DownloadLinkSent as DownloadLinkSent, type context$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type context$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type context$8_DraftOrderDiffs as DraftOrderDiffs, type context$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type context$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type context$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type context$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type context$8_Duration as Duration, context$8_DurationUnit as DurationUnit, type context$8_Email as Email, type context$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 context$8_ExternalUriMapping as ExternalUriMapping, type context$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type context$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type context$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type context$8_FullAddressContactDetails as FullAddressContactDetails, type context$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type context$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type context$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type context$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type context$8_GetOrderRequest as GetOrderRequest, type context$8_GetOrderResponse as GetOrderResponse, type context$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type context$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type context$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type context$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type context$8_GetShipmentsRequest as GetShipmentsRequest, type context$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type context$8_HtmlApplication as HtmlApplication, type context$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type context$8_InternalActivity as InternalActivity, type context$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type context$8_InternalDocument as InternalDocument, type context$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type context$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type context$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type context$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type context$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, context$8_InventoryAction as InventoryAction, type context$8_InventoryUpdateDetails as InventoryUpdateDetails, type context$8_InvoiceAdded as InvoiceAdded, type context$8_InvoiceDates as InvoiceDates, type context$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type context$8_InvoiceFields as InvoiceFields, type context$8_InvoiceSent as InvoiceSent, type context$8_InvoiceSentEvent as InvoiceSentEvent, context$8_InvoiceStatus as InvoiceStatus, type context$8_InvoicesPayment as InvoicesPayment, type context$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 context$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type context$8_LineItemAmount as LineItemAmount, type context$8_LineItemChanges as LineItemChanges, type context$8_LineItemDelta as LineItemDelta, type context$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type context$8_LineItemExchangeData as LineItemExchangeData, type context$8_LineItemMetaData as LineItemMetaData, type context$8_LineItemPriceChange as LineItemPriceChange, type context$8_LineItemQuantityChange as LineItemQuantityChange, context$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type context$8_LineItemTax as LineItemTax, type context$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$8_LineItemTaxInfo as LineItemTaxInfo, type context$8_LineItemUpdate as LineItemUpdate, type context$8_LineItems as LineItems, type context$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type context$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type context$8_Locale as Locale, type context$8_LocationAndQuantity as LocationAndQuantity, type context$8_ManagedAdditionalFee as ManagedAdditionalFee, type context$8_ManagedDiscount as ManagedDiscount, type context$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type context$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type context$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type context$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type context$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type context$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type context$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type context$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type context$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type context$8_MaskedOrder as MaskedOrder, type context$8_MaskedOrderLineItem as MaskedOrderLineItem, type context$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type context$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type context$8_MetaData as MetaData, type context$8_MetaSite as MetaSite, type context$8_MetaTag as MetaTag, context$8_Namespace as Namespace, type context$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, context$8_OrderApprovalStrategy as OrderApprovalStrategy, type context$8_OrderApproved as OrderApproved, type context$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type context$8_OrderCanceled as OrderCanceled, type context$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type context$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type context$8_OrderChange as OrderChange, type context$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$8_OrderCreateNotifications as OrderCreateNotifications, type context$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type context$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$8_OrderCreationSettings as OrderCreationSettings, type context$8_OrderDeltasCommitted as OrderDeltasCommitted, type context$8_OrderFulfilled as OrderFulfilled, type context$8_OrderItemsRestocked as OrderItemsRestocked, type context$8_OrderLineItem as OrderLineItem, type context$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type context$8_OrderNonNullableFields as OrderNonNullableFields, type context$8_OrderNotFulfilled as OrderNotFulfilled, type context$8_OrderPaid as OrderPaid, type context$8_OrderPartiallyPaid as OrderPartiallyPaid, type context$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type context$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, context$8_OrderStatus as OrderStatus, type context$8_OrderTaxBreakdown as OrderTaxBreakdown, type context$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type context$8_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type context$8_PaymentCapture as PaymentCapture, context$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type context$8_PaymentRefundFailed as PaymentRefundFailed, type context$8_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type context$8_PaymentStatusUpdated as PaymentStatusUpdated, type context$8_Payments as Payments, type PaymentsUpdated$2 as PaymentsUpdated, type context$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type context$8_PickupReadyEmailSent as PickupReadyEmailSent, context$8_Placement as Placement, type context$8_PlainTextValue as PlainTextValue, type context$8_PlatformPaging as PlatformPaging, type context$8_PlatformPagingMetadata as PlatformPagingMetadata, type context$8_PlatformQuery as PlatformQuery, type context$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type context$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type context$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type context$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type context$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type context$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type context$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type context$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type context$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type context$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type context$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type context$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type context$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type context$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type context$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, context$8_PreviewEmailType as PreviewEmailType, type context$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type context$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type context$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type context$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type context$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type context$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type context$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type context$8_ProductName as ProductName, type context$8_PublicActivity as PublicActivity, type context$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type context$8_QueryOrderRequest as QueryOrderRequest, type context$8_QueryOrderResponse as QueryOrderResponse, type context$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type context$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type context$8_QuotesAddress as QuotesAddress, Reason$2 as Reason, type context$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type context$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type context$8_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type context$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 context$8_RefundedPayment as RefundedPayment, type context$8_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$8_RegularPaymentRefund as RegularPaymentRefund, type context$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type context$8_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$2 as ScheduledAction, type context$8_SearchOrdersOptions as SearchOrdersOptions, type context$8_SearchOrdersRequest as SearchOrdersRequest, type context$8_SearchOrdersResponse as SearchOrdersResponse, type context$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type context$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type context$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type context$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type context$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type context$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type context$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type context$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type context$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type context$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type context$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type context$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type context$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type context$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type context$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type context$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type context$8_ShippingAddressEdited as ShippingAddressEdited, type context$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type context$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, context$8_SourceType as SourceType, type context$8_StandardDetails as StandardDetails, context$8_State as State, type StreetAddress$3 as StreetAddress, type context$8_Subdivision as Subdivision, context$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type context$8_TagList as TagList, type context$8_Tags as Tags, type context$8_Task as Task, type context$8_TaskAction as TaskAction, type context$8_TaskActionActionOneOf as TaskActionActionOneOf, type context$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type context$8_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type context$8_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type context$8_TotalPrice as TotalPrice, type context$8_TotalPriceChange as TotalPriceChange, type context$8_TrackingLinkAdded as TrackingLinkAdded, type context$8_TrackingNumberAdded as TrackingNumberAdded, type context$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type context$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type context$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type context$8_TriggerReindexRequest as TriggerReindexRequest, type context$8_TriggerReindexResponse as TriggerReindexResponse, type context$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type context$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type context$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type context$8_UpdateActivityRequest as UpdateActivityRequest, type context$8_UpdateActivityResponse as UpdateActivityResponse, type context$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type context$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type context$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type context$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type context$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type context$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type context$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type context$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type context$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type context$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type context$8_UpdateOrder as UpdateOrder, type context$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type context$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type context$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type context$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type context$8_UpdateOrderRequest as UpdateOrderRequest, type context$8_UpdateOrderResponse as UpdateOrderResponse, type context$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type context$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type context$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type context$8_UpsertRefundRequest as UpsertRefundRequest, type context$8_UpsertRefundResponse as UpsertRefundResponse, type context$8_UserDataResponse as UserDataResponse, type context$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type context$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type context$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type context$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type context$8_V1LineItemDelta as V1LineItemDelta, type context$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type context$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type context$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type context$8_V1RestockItem as V1RestockItem, type context$8_V1ScheduledAction as V1ScheduledAction, type context$8_V1ShippingInformation as V1ShippingInformation, type context$8_Value as Value, context$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type context$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type context$8_VersionedDocumentId as VersionedDocumentId, type context$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, context$8_VersioningMode as VersioningMode, type context$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type context$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type context$8_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type context$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type context$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type context$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type context$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, context$8_bulkUpdateOrders as bulkUpdateOrders, context$8_cancelOrder as cancelOrder, context$8_captureAuthorizedPayments as captureAuthorizedPayments, context$8_createOrder as createOrder, context$8_getOrder as getOrder, context$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, context$8_onOrderApproved as onOrderApproved, context$8_onOrderCanceled as onOrderCanceled, context$8_onOrderCreated as onOrderCreated, context$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, context$8_searchOrders as searchOrders, context$8_updateOrder as updateOrder, context$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
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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 {
|