@wix/ecom 1.0.634 → 1.0.635
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
- package/type-bundles/index.bundle.d.ts +151 -78
- package/type-bundles/meta.bundle.d.ts +76 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ecom",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.635",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"@wix/ecom_discount-rules": "1.0.35",
|
|
34
34
|
"@wix/ecom_order-fulfillments": "1.0.30",
|
|
35
35
|
"@wix/ecom_order-invoices": "1.0.25",
|
|
36
|
-
"@wix/ecom_order-transactions": "1.0.
|
|
37
|
-
"@wix/ecom_orders": "1.0.
|
|
36
|
+
"@wix/ecom_order-transactions": "1.0.41",
|
|
37
|
+
"@wix/ecom_orders": "1.0.70",
|
|
38
38
|
"@wix/ecom_orders-settings": "1.0.30",
|
|
39
39
|
"@wix/ecom_payment-settings": "1.0.13",
|
|
40
40
|
"@wix/ecom_recommendations": "1.0.26",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"fqdn": ""
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
|
-
"falconPackageHash": "
|
|
67
|
+
"falconPackageHash": "b61adb164279cab12d2abf47dc632f40dbc80aded9f9589ce78a6f55"
|
|
68
68
|
}
|
|
@@ -365,26 +365,26 @@ interface PlatformQuery$2 extends PlatformQueryPagingMethodOneOf$2 {
|
|
|
365
365
|
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
366
366
|
paging?: PlatformPaging$2;
|
|
367
367
|
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
368
|
-
cursorPaging?: CursorPaging$
|
|
368
|
+
cursorPaging?: CursorPaging$5;
|
|
369
369
|
/** Filter object. */
|
|
370
370
|
filter?: Record<string, any> | null;
|
|
371
371
|
/** Sorting options. For example, `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]`. */
|
|
372
|
-
sort?: Sorting$
|
|
372
|
+
sort?: Sorting$5[];
|
|
373
373
|
}
|
|
374
374
|
/** @oneof */
|
|
375
375
|
interface PlatformQueryPagingMethodOneOf$2 {
|
|
376
376
|
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
377
377
|
paging?: PlatformPaging$2;
|
|
378
378
|
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
379
|
-
cursorPaging?: CursorPaging$
|
|
379
|
+
cursorPaging?: CursorPaging$5;
|
|
380
380
|
}
|
|
381
|
-
interface Sorting$
|
|
381
|
+
interface Sorting$5 {
|
|
382
382
|
/** Name of the field to sort by. */
|
|
383
383
|
fieldName?: string;
|
|
384
384
|
/** Sort order. */
|
|
385
|
-
order?: SortOrder$
|
|
385
|
+
order?: SortOrder$5;
|
|
386
386
|
}
|
|
387
|
-
declare enum SortOrder$
|
|
387
|
+
declare enum SortOrder$5 {
|
|
388
388
|
ASC = "ASC",
|
|
389
389
|
DESC = "DESC"
|
|
390
390
|
}
|
|
@@ -394,7 +394,7 @@ interface PlatformPaging$2 {
|
|
|
394
394
|
/** Number of items to skip in the current sort order. */
|
|
395
395
|
offset?: number | null;
|
|
396
396
|
}
|
|
397
|
-
interface CursorPaging$
|
|
397
|
+
interface CursorPaging$5 {
|
|
398
398
|
/** Maximum number of items to return in the results. */
|
|
399
399
|
limit?: number | null;
|
|
400
400
|
/**
|
|
@@ -419,9 +419,9 @@ interface PlatformPagingMetadata$2 {
|
|
|
419
419
|
/** The total number of items that match the query. Returned if offset paging was used. */
|
|
420
420
|
total?: number | null;
|
|
421
421
|
/** Cursors to navigate through result pages. Returned if cursor paging was used. */
|
|
422
|
-
cursors?: Cursors$
|
|
422
|
+
cursors?: Cursors$5;
|
|
423
423
|
}
|
|
424
|
-
interface Cursors$
|
|
424
|
+
interface Cursors$5 {
|
|
425
425
|
/** Cursor string pointing to the next page in the list of results. */
|
|
426
426
|
next?: string | null;
|
|
427
427
|
/** Cursor pointing to the previous page in the list of results. */
|
|
@@ -1009,7 +1009,7 @@ interface UpdateDiscountRule {
|
|
|
1009
1009
|
usageCount?: number;
|
|
1010
1010
|
}
|
|
1011
1011
|
interface QueryCursorResult$2 {
|
|
1012
|
-
cursors: Cursors$
|
|
1012
|
+
cursors: Cursors$5;
|
|
1013
1013
|
hasNext: () => boolean;
|
|
1014
1014
|
hasPrev: () => boolean;
|
|
1015
1015
|
length: number;
|
|
@@ -1362,7 +1362,7 @@ declare const index_d$f_onDiscountRuleUpdated: typeof onDiscountRuleUpdated;
|
|
|
1362
1362
|
declare const index_d$f_queryDiscountRules: typeof queryDiscountRules;
|
|
1363
1363
|
declare const index_d$f_updateDiscountRule: typeof updateDiscountRule;
|
|
1364
1364
|
declare namespace index_d$f {
|
|
1365
|
-
export { type ActionEvent$c as ActionEvent, type index_d$f_ActiveTimeInfo as ActiveTimeInfo, type index_d$f_And as And, type AppliedDiscount$5 as AppliedDiscount, type index_d$f_AppliedDiscountRule as AppliedDiscountRule, index_d$f_AppliedSubjectType as AppliedSubjectType, type BaseEventMetadata$b as BaseEventMetadata, type index_d$f_BuyXGetYInfo as BuyXGetYInfo, type index_d$f_CatalogItemFilter as CatalogItemFilter, type CatalogReference$7 as CatalogReference, type index_d$f_CreateDiscountRuleRequest as CreateDiscountRuleRequest, type index_d$f_CreateDiscountRuleResponse as CreateDiscountRuleResponse, type index_d$f_CreateDiscountRuleResponseNonNullableFields as CreateDiscountRuleResponseNonNullableFields, type CursorPaging$
|
|
1365
|
+
export { type ActionEvent$c as ActionEvent, type index_d$f_ActiveTimeInfo as ActiveTimeInfo, type index_d$f_And as And, type AppliedDiscount$5 as AppliedDiscount, type index_d$f_AppliedDiscountRule as AppliedDiscountRule, index_d$f_AppliedSubjectType as AppliedSubjectType, type BaseEventMetadata$b as BaseEventMetadata, type index_d$f_BuyXGetYInfo as BuyXGetYInfo, type index_d$f_CatalogItemFilter as CatalogItemFilter, type CatalogReference$7 as CatalogReference, type index_d$f_CreateDiscountRuleRequest as CreateDiscountRuleRequest, type index_d$f_CreateDiscountRuleResponse as CreateDiscountRuleResponse, type index_d$f_CreateDiscountRuleResponseNonNullableFields as CreateDiscountRuleResponseNonNullableFields, type CursorPaging$5 as CursorPaging, type Cursors$5 as Cursors, type index_d$f_Custom as Custom, type index_d$f_CustomFilter as CustomFilter, type index_d$f_CustomerBuy as CustomerBuy, type index_d$f_CustomerBuyConditionOneOf as CustomerBuyConditionOneOf, type index_d$f_CustomerGet as CustomerGet, type index_d$f_DeleteDiscountRuleRequest as DeleteDiscountRuleRequest, type index_d$f_DeleteDiscountRuleResponse as DeleteDiscountRuleResponse, type Discount$3 as Discount, type index_d$f_DiscountDiscountOneOf as DiscountDiscountOneOf, type DiscountRule$5 as DiscountRule, type index_d$f_DiscountRuleCreatedEnvelope as DiscountRuleCreatedEnvelope, type index_d$f_DiscountRuleDeletedEnvelope as DiscountRuleDeletedEnvelope, type DiscountRuleName$5 as DiscountRuleName, type index_d$f_DiscountRuleUpdatedEnvelope as DiscountRuleUpdatedEnvelope, type index_d$f_DiscountRuleUsageLimitReached as DiscountRuleUsageLimitReached, type index_d$f_DiscountRulesQueryBuilder as DiscountRulesQueryBuilder, type index_d$f_DiscountRulesQueryResult as DiscountRulesQueryResult, type index_d$f_DiscountSettings as DiscountSettings, type index_d$f_DiscountTrigger as DiscountTrigger, type index_d$f_DiscountTriggerTriggerOneOf as DiscountTriggerTriggerOneOf, DiscountType$5 as DiscountType, type index_d$f_Discounts as Discounts, type DomainEvent$c as DomainEvent, type DomainEventBodyOneOf$c as DomainEventBodyOneOf, type Empty$8 as Empty, type EntityCreatedEvent$c as EntityCreatedEvent, type EntityDeletedEvent$c as EntityDeletedEvent, type EntityUpdatedEvent$c as EntityUpdatedEvent, type EventMetadata$b as EventMetadata, type ExtendedFields$5 as ExtendedFields, type index_d$f_GetAppliedDiscountsRequest as GetAppliedDiscountsRequest, type index_d$f_GetAppliedDiscountsResponse as GetAppliedDiscountsResponse, type index_d$f_GetDiscountRuleRequest as GetDiscountRuleRequest, type index_d$f_GetDiscountRuleResponse as GetDiscountRuleResponse, type index_d$f_GetDiscountRuleResponseNonNullableFields as GetDiscountRuleResponseNonNullableFields, type IdentificationData$c as IdentificationData, type IdentificationDataIdOneOf$c as IdentificationDataIdOneOf, type index_d$f_ItemQuantityRange as ItemQuantityRange, type LineItem$6 as LineItem, type MessageEnvelope$c as MessageEnvelope, type MultiCurrencyPrice$5 as MultiCurrencyPrice, type index_d$f_Or as Or, type PlatformPaging$2 as PlatformPaging, type PlatformPagingMetadata$2 as PlatformPagingMetadata, type PlatformQuery$2 as PlatformQuery, type PlatformQueryPagingMethodOneOf$2 as PlatformQueryPagingMethodOneOf, type index_d$f_QueryDiscountRulesRequest as QueryDiscountRulesRequest, type index_d$f_QueryDiscountRulesResponse as QueryDiscountRulesResponse, type index_d$f_QueryDiscountRulesResponseNonNullableFields as QueryDiscountRulesResponseNonNullableFields, type Scope$4 as Scope, type index_d$f_ScopeScopeItemsOneOf as ScopeScopeItemsOneOf, index_d$f_ScopeType as ScopeType, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type index_d$f_SpecificItemsInfo as SpecificItemsInfo, Status$3 as Status, type index_d$f_SubtotalRange as SubtotalRange, index_d$f_TriggerType as TriggerType, index_d$f_Type as Type, type index_d$f_UpdateDiscountRule as UpdateDiscountRule, type index_d$f_UpdateDiscountRuleRequest as UpdateDiscountRuleRequest, type index_d$f_UpdateDiscountRuleResponse as UpdateDiscountRuleResponse, type index_d$f_UpdateDiscountRuleResponseNonNullableFields as UpdateDiscountRuleResponseNonNullableFields, WebhookIdentityType$c as WebhookIdentityType, __metadata$f as __metadata, index_d$f_createDiscountRule as createDiscountRule, index_d$f_deleteDiscountRule as deleteDiscountRule, index_d$f_getDiscountRule as getDiscountRule, index_d$f_onDiscountRuleCreated as onDiscountRuleCreated, index_d$f_onDiscountRuleDeleted as onDiscountRuleDeleted, index_d$f_onDiscountRuleUpdated as onDiscountRuleUpdated, index_d$f_queryDiscountRules as queryDiscountRules, index_d$f_updateDiscountRule as updateDiscountRule };
|
|
1366
1366
|
}
|
|
1367
1367
|
|
|
1368
1368
|
interface Invoice {
|
|
@@ -2030,7 +2030,7 @@ interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
|
2030
2030
|
/** Paging options to limit and skip the number of items. */
|
|
2031
2031
|
paging?: Paging;
|
|
2032
2032
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
2033
|
-
cursorPaging?: CursorPaging$
|
|
2033
|
+
cursorPaging?: CursorPaging$4;
|
|
2034
2034
|
/**
|
|
2035
2035
|
* Filter object in the following format:
|
|
2036
2036
|
* `"filter" : {
|
|
@@ -2044,7 +2044,7 @@ interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
|
2044
2044
|
* Sort object in the following format:
|
|
2045
2045
|
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
2046
2046
|
*/
|
|
2047
|
-
sort?: Sorting$
|
|
2047
|
+
sort?: Sorting$4[];
|
|
2048
2048
|
/** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
2049
2049
|
fields?: string[];
|
|
2050
2050
|
/** Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
@@ -2055,15 +2055,15 @@ interface QueryV2PagingMethodOneOf {
|
|
|
2055
2055
|
/** Paging options to limit and skip the number of items. */
|
|
2056
2056
|
paging?: Paging;
|
|
2057
2057
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
2058
|
-
cursorPaging?: CursorPaging$
|
|
2058
|
+
cursorPaging?: CursorPaging$4;
|
|
2059
2059
|
}
|
|
2060
|
-
interface Sorting$
|
|
2060
|
+
interface Sorting$4 {
|
|
2061
2061
|
/** Name of the field to sort by. */
|
|
2062
2062
|
fieldName?: string;
|
|
2063
2063
|
/** Sort order. */
|
|
2064
|
-
order?: SortOrder$
|
|
2064
|
+
order?: SortOrder$4;
|
|
2065
2065
|
}
|
|
2066
|
-
declare enum SortOrder$
|
|
2066
|
+
declare enum SortOrder$4 {
|
|
2067
2067
|
ASC = "ASC",
|
|
2068
2068
|
DESC = "DESC"
|
|
2069
2069
|
}
|
|
@@ -2073,7 +2073,7 @@ interface Paging {
|
|
|
2073
2073
|
/** Number of items to skip in the current sort order. */
|
|
2074
2074
|
offset?: number | null;
|
|
2075
2075
|
}
|
|
2076
|
-
interface CursorPaging$
|
|
2076
|
+
interface CursorPaging$4 {
|
|
2077
2077
|
/** Maximum number of items to return in the results. */
|
|
2078
2078
|
limit?: number | null;
|
|
2079
2079
|
/**
|
|
@@ -2105,9 +2105,9 @@ interface PagingMetadataV2 {
|
|
|
2105
2105
|
/** Flag that indicates the server failed to calculate the `total` field. */
|
|
2106
2106
|
tooManyToCount?: boolean | null;
|
|
2107
2107
|
/** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
|
|
2108
|
-
cursors?: Cursors$
|
|
2108
|
+
cursors?: Cursors$4;
|
|
2109
2109
|
}
|
|
2110
|
-
interface Cursors$
|
|
2110
|
+
interface Cursors$4 {
|
|
2111
2111
|
/** Cursor string pointing to the next page in the list of results. */
|
|
2112
2112
|
next?: string | null;
|
|
2113
2113
|
/** Cursor pointing to the previous page in the list of results. */
|
|
@@ -2538,7 +2538,7 @@ declare const index_d$c_getAbandonedCheckout: typeof getAbandonedCheckout;
|
|
|
2538
2538
|
declare const index_d$c_onAbandonedCheckoutCreated: typeof onAbandonedCheckoutCreated;
|
|
2539
2539
|
declare const index_d$c_onAbandonedCheckoutRecovered: typeof onAbandonedCheckoutRecovered;
|
|
2540
2540
|
declare namespace index_d$c {
|
|
2541
|
-
export { type index_d$c_AbandonedCheckout as AbandonedCheckout, type index_d$c_AbandonedCheckoutCreatedEnvelope as AbandonedCheckoutCreatedEnvelope, type index_d$c_AbandonedCheckoutRecovered as AbandonedCheckoutRecovered, type index_d$c_AbandonedCheckoutRecoveredEnvelope as AbandonedCheckoutRecoveredEnvelope, type ActionEvent$a as ActionEvent, type Activity$2 as Activity, ActivityType$2 as ActivityType, type index_d$c_AddAbandonedCheckoutActivityRequest as AddAbandonedCheckoutActivityRequest, type index_d$c_AddAbandonedCheckoutActivityResponse as AddAbandonedCheckoutActivityResponse, type BaseEventMetadata$a as BaseEventMetadata, type BuyerInfo$7 as BuyerInfo, type Cancel$1 as Cancel, type index_d$c_CartAbandonedEvent as CartAbandonedEvent, type index_d$c_CartRecoveredEvent as CartRecoveredEvent, type index_d$c_CommonCursorPaging as CommonCursorPaging, type index_d$c_CommonCursors as CommonCursors, type index_d$c_CommonPaging as CommonPaging, type index_d$c_CommonPagingMetadataV2 as CommonPagingMetadataV2, index_d$c_CommonSortOrder as CommonSortOrder, type index_d$c_CommonSorting as CommonSorting, type Complete$1 as Complete, type CursorPaging$
|
|
2541
|
+
export { type index_d$c_AbandonedCheckout as AbandonedCheckout, type index_d$c_AbandonedCheckoutCreatedEnvelope as AbandonedCheckoutCreatedEnvelope, type index_d$c_AbandonedCheckoutRecovered as AbandonedCheckoutRecovered, type index_d$c_AbandonedCheckoutRecoveredEnvelope as AbandonedCheckoutRecoveredEnvelope, type ActionEvent$a as ActionEvent, type Activity$2 as Activity, ActivityType$2 as ActivityType, type index_d$c_AddAbandonedCheckoutActivityRequest as AddAbandonedCheckoutActivityRequest, type index_d$c_AddAbandonedCheckoutActivityResponse as AddAbandonedCheckoutActivityResponse, type BaseEventMetadata$a as BaseEventMetadata, type BuyerInfo$7 as BuyerInfo, type Cancel$1 as Cancel, type index_d$c_CartAbandonedEvent as CartAbandonedEvent, type index_d$c_CartRecoveredEvent as CartRecoveredEvent, type index_d$c_CommonCursorPaging as CommonCursorPaging, type index_d$c_CommonCursors as CommonCursors, type index_d$c_CommonPaging as CommonPaging, type index_d$c_CommonPagingMetadataV2 as CommonPagingMetadataV2, index_d$c_CommonSortOrder as CommonSortOrder, type index_d$c_CommonSorting as CommonSorting, type Complete$1 as Complete, type CursorPaging$4 as CursorPaging, type Cursors$4 as Cursors, type DomainEvent$a as DomainEvent, type DomainEventBodyOneOf$a as DomainEventBodyOneOf, type Empty$6 as Empty, type EntityCreatedEvent$a as EntityCreatedEvent, type EntityDeletedEvent$a as EntityDeletedEvent, type EntityUpdatedEvent$a as EntityUpdatedEvent, type EventMetadata$a as EventMetadata, type FullAddressContactDetails$5 as FullAddressContactDetails, type index_d$c_GetAbandonedCheckoutRequest as GetAbandonedCheckoutRequest, type index_d$c_GetAbandonedCheckoutResponse as GetAbandonedCheckoutResponse, type index_d$c_GetAbandonedCheckoutResponseNonNullableFields as GetAbandonedCheckoutResponseNonNullableFields, type HeadersEntry$1 as HeadersEntry, type IdentificationData$a as IdentificationData, type IdentificationDataIdOneOf$a as IdentificationDataIdOneOf, index_d$c_Identity as Identity, type MessageEnvelope$a as MessageEnvelope, index_d$c_Mode as Mode, type MultiCurrencyPrice$4 as MultiCurrencyPrice, type index_d$c_Paging as Paging, type index_d$c_PagingMetadataV2 as PagingMetadataV2, type index_d$c_QueryAbandonedCheckoutsRequest as QueryAbandonedCheckoutsRequest, type index_d$c_QueryAbandonedCheckoutsResponse as QueryAbandonedCheckoutsResponse, type index_d$c_QueryV2 as QueryV2, type index_d$c_QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOf, type RawHttpResponse$1 as RawHttpResponse, type index_d$c_RedirectToCheckoutRequest as RedirectToCheckoutRequest, type index_d$c_RemoveAbandonedCheckoutRequest as RemoveAbandonedCheckoutRequest, type index_d$c_RemoveAbandonedCheckoutResponse as RemoveAbandonedCheckoutResponse, type Reschedule$1 as Reschedule, type index_d$c_Search as Search, type index_d$c_SearchAbandonedCheckoutsRequest as SearchAbandonedCheckoutsRequest, type index_d$c_SearchAbandonedCheckoutsResponse as SearchAbandonedCheckoutsResponse, type index_d$c_SearchDetails as SearchDetails, type index_d$c_SearchPagingMethodOneOf as SearchPagingMethodOneOf, SortOrder$4 as SortOrder, type Sorting$4 as Sorting, Status$2 as Status, type Task$1 as Task, type TaskAction$1 as TaskAction, type TaskActionActionOneOf$1 as TaskActionActionOneOf, type TaskKey$1 as TaskKey, type Totals$2 as Totals, type V1BuyerInfo$1 as V1BuyerInfo, type index_d$c_V1BuyerInfoIdOneOf as V1BuyerInfoIdOneOf, type VatId$6 as VatId, VatType$6 as VatType, WebhookIdentityType$a as WebhookIdentityType, __metadata$c as __metadata, index_d$c_getAbandonedCheckout as getAbandonedCheckout, index_d$c_onAbandonedCheckoutCreated as onAbandonedCheckoutCreated, index_d$c_onAbandonedCheckoutRecovered as onAbandonedCheckoutRecovered };
|
|
2542
2542
|
}
|
|
2543
2543
|
|
|
2544
2544
|
/**
|
|
@@ -2734,26 +2734,26 @@ interface PlatformQuery$1 extends PlatformQueryPagingMethodOneOf$1 {
|
|
|
2734
2734
|
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
2735
2735
|
paging?: PlatformPaging$1;
|
|
2736
2736
|
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
2737
|
-
cursorPaging?: CursorPaging$
|
|
2737
|
+
cursorPaging?: CursorPaging$3;
|
|
2738
2738
|
/** Filter object. */
|
|
2739
2739
|
filter?: Record<string, any> | null;
|
|
2740
2740
|
/** Sorting options. For example, `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]`. */
|
|
2741
|
-
sort?: Sorting$
|
|
2741
|
+
sort?: Sorting$3[];
|
|
2742
2742
|
}
|
|
2743
2743
|
/** @oneof */
|
|
2744
2744
|
interface PlatformQueryPagingMethodOneOf$1 {
|
|
2745
2745
|
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
2746
2746
|
paging?: PlatformPaging$1;
|
|
2747
2747
|
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
2748
|
-
cursorPaging?: CursorPaging$
|
|
2748
|
+
cursorPaging?: CursorPaging$3;
|
|
2749
2749
|
}
|
|
2750
|
-
interface Sorting$
|
|
2750
|
+
interface Sorting$3 {
|
|
2751
2751
|
/** Name of the field to sort by. */
|
|
2752
2752
|
fieldName?: string;
|
|
2753
2753
|
/** Sort order. */
|
|
2754
|
-
order?: SortOrder$
|
|
2754
|
+
order?: SortOrder$3;
|
|
2755
2755
|
}
|
|
2756
|
-
declare enum SortOrder$
|
|
2756
|
+
declare enum SortOrder$3 {
|
|
2757
2757
|
ASC = "ASC",
|
|
2758
2758
|
DESC = "DESC"
|
|
2759
2759
|
}
|
|
@@ -2763,7 +2763,7 @@ interface PlatformPaging$1 {
|
|
|
2763
2763
|
/** Number of items to skip in the current sort order. */
|
|
2764
2764
|
offset?: number | null;
|
|
2765
2765
|
}
|
|
2766
|
-
interface CursorPaging$
|
|
2766
|
+
interface CursorPaging$3 {
|
|
2767
2767
|
/** Maximum number of items to return in the results. */
|
|
2768
2768
|
limit?: number | null;
|
|
2769
2769
|
/**
|
|
@@ -2788,9 +2788,9 @@ interface PlatformPagingMetadata$1 {
|
|
|
2788
2788
|
/** The total number of items that match the query. Returned if offset paging was used. */
|
|
2789
2789
|
total?: number | null;
|
|
2790
2790
|
/** Cursors to navigate through result pages. Returned if cursor paging was used. */
|
|
2791
|
-
cursors?: Cursors$
|
|
2791
|
+
cursors?: Cursors$3;
|
|
2792
2792
|
}
|
|
2793
|
-
interface Cursors$
|
|
2793
|
+
interface Cursors$3 {
|
|
2794
2794
|
/** Cursor string pointing to the next page in the list of results. */
|
|
2795
2795
|
next?: string | null;
|
|
2796
2796
|
/** Cursor pointing to the previous page in the list of results. */
|
|
@@ -3060,7 +3060,7 @@ interface BackInStockNotificationRequestUpdatedEnvelope {
|
|
|
3060
3060
|
metadata: EventMetadata$9;
|
|
3061
3061
|
}
|
|
3062
3062
|
interface QueryCursorResult$1 {
|
|
3063
|
-
cursors: Cursors$
|
|
3063
|
+
cursors: Cursors$3;
|
|
3064
3064
|
hasNext: () => boolean;
|
|
3065
3065
|
hasPrev: () => boolean;
|
|
3066
3066
|
length: number;
|
|
@@ -3225,7 +3225,7 @@ declare const index_d$b_onBackInStockNotificationRequestUpdated: typeof onBackIn
|
|
|
3225
3225
|
declare const index_d$b_queryBackInStockNotificationRequests: typeof queryBackInStockNotificationRequests;
|
|
3226
3226
|
declare const index_d$b_reportItemsBackInStock: typeof reportItemsBackInStock;
|
|
3227
3227
|
declare namespace index_d$b {
|
|
3228
|
-
export { type ActionEvent$9 as ActionEvent, type App$1 as App, type index_d$b_BackInStockItemDetails as BackInStockItemDetails, type index_d$b_BackInStockNotificationRequest as BackInStockNotificationRequest, type index_d$b_BackInStockNotificationRequestCreatedEnvelope as BackInStockNotificationRequestCreatedEnvelope, type index_d$b_BackInStockNotificationRequestDeletedEnvelope as BackInStockNotificationRequestDeletedEnvelope, type index_d$b_BackInStockNotificationRequestUpdatedEnvelope as BackInStockNotificationRequestUpdatedEnvelope, type index_d$b_BackInStockNotificationRequestsCount as BackInStockNotificationRequestsCount, type BaseEventMetadata$9 as BaseEventMetadata, type CatalogReference$5 as CatalogReference, type index_d$b_CreateBackInStockNotificationRequestRequest as CreateBackInStockNotificationRequestRequest, type index_d$b_CreateBackInStockNotificationRequestResponse as CreateBackInStockNotificationRequestResponse, type index_d$b_CreateBackInStockNotificationRequestResponseNonNullableFields as CreateBackInStockNotificationRequestResponseNonNullableFields, type CursorPaging$
|
|
3228
|
+
export { type ActionEvent$9 as ActionEvent, type App$1 as App, type index_d$b_BackInStockItemDetails as BackInStockItemDetails, type index_d$b_BackInStockNotificationRequest as BackInStockNotificationRequest, type index_d$b_BackInStockNotificationRequestCreatedEnvelope as BackInStockNotificationRequestCreatedEnvelope, type index_d$b_BackInStockNotificationRequestDeletedEnvelope as BackInStockNotificationRequestDeletedEnvelope, type index_d$b_BackInStockNotificationRequestUpdatedEnvelope as BackInStockNotificationRequestUpdatedEnvelope, type index_d$b_BackInStockNotificationRequestsCount as BackInStockNotificationRequestsCount, type BaseEventMetadata$9 as BaseEventMetadata, type CatalogReference$5 as CatalogReference, type index_d$b_CreateBackInStockNotificationRequestRequest as CreateBackInStockNotificationRequestRequest, type index_d$b_CreateBackInStockNotificationRequestResponse as CreateBackInStockNotificationRequestResponse, type index_d$b_CreateBackInStockNotificationRequestResponseNonNullableFields as CreateBackInStockNotificationRequestResponseNonNullableFields, type CursorPaging$3 as CursorPaging, type Cursors$3 as Cursors, type index_d$b_DeleteBackInStockNotificationRequestRequest as DeleteBackInStockNotificationRequestRequest, type index_d$b_DeleteBackInStockNotificationRequestResponse as DeleteBackInStockNotificationRequestResponse, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type Empty$5 as Empty, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type EventMetadata$9 as EventMetadata, type index_d$b_File as File, type index_d$b_GetBackInStockNotificationRequestRequest as GetBackInStockNotificationRequestRequest, type index_d$b_GetBackInStockNotificationRequestResponse as GetBackInStockNotificationRequestResponse, type index_d$b_GetBackInStockNotificationRequestResponseNonNullableFields as GetBackInStockNotificationRequestResponseNonNullableFields, type index_d$b_GetBackInStockNotificationRequestsCountByCatalogReferencesRequest as GetBackInStockNotificationRequestsCountByCatalogReferencesRequest, type index_d$b_GetBackInStockNotificationRequestsCountByCatalogReferencesResponse as GetBackInStockNotificationRequestsCountByCatalogReferencesResponse, type index_d$b_GetBackInStockNotificationRequestsCountByCatalogReferencesResponseNonNullableFields as GetBackInStockNotificationRequestsCountByCatalogReferencesResponseNonNullableFields, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type index_d$b_InvalidateCache as InvalidateCache, type index_d$b_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type index_d$b_MarkAsNotificationSentRequest as MarkAsNotificationSentRequest, type index_d$b_MarkAsNotificationSentResponse as MarkAsNotificationSentResponse, type index_d$b_MarkAsNotificationSentResponseNonNullableFields as MarkAsNotificationSentResponseNonNullableFields, type MessageEnvelope$9 as MessageEnvelope, type index_d$b_Page as Page, type PlatformPaging$1 as PlatformPaging, type PlatformPagingMetadata$1 as PlatformPagingMetadata, type PlatformQuery$1 as PlatformQuery, type PlatformQueryPagingMethodOneOf$1 as PlatformQueryPagingMethodOneOf, type index_d$b_QueryBackInStockNotificationRequestsRequest as QueryBackInStockNotificationRequestsRequest, type index_d$b_QueryBackInStockNotificationRequestsResponse as QueryBackInStockNotificationRequestsResponse, type index_d$b_QueryBackInStockNotificationRequestsResponseNonNullableFields as QueryBackInStockNotificationRequestsResponseNonNullableFields, type index_d$b_ReportItemsBackInStockOptions as ReportItemsBackInStockOptions, type index_d$b_ReportItemsBackInStockRequest as ReportItemsBackInStockRequest, type index_d$b_ReportItemsBackInStockResponse as ReportItemsBackInStockResponse, type index_d$b_RequestsQueryBuilder as RequestsQueryBuilder, type index_d$b_RequestsQueryResult as RequestsQueryResult, SortOrder$3 as SortOrder, type Sorting$3 as Sorting, Status$1 as Status, type index_d$b_URI as URI, WebhookIdentityType$9 as WebhookIdentityType, __metadata$b as __metadata, index_d$b_createBackInStockNotificationRequest as createBackInStockNotificationRequest, index_d$b_deleteBackInStockNotificationRequest as deleteBackInStockNotificationRequest, index_d$b_getBackInStockNotificationRequest as getBackInStockNotificationRequest, index_d$b_getBackInStockNotificationRequestsCountByCatalogReferences as getBackInStockNotificationRequestsCountByCatalogReferences, index_d$b_markAsNotificationSent as markAsNotificationSent, index_d$b_onBackInStockNotificationRequestCreated as onBackInStockNotificationRequestCreated, index_d$b_onBackInStockNotificationRequestDeleted as onBackInStockNotificationRequestDeleted, index_d$b_onBackInStockNotificationRequestUpdated as onBackInStockNotificationRequestUpdated, index_d$b_queryBackInStockNotificationRequests as queryBackInStockNotificationRequests, index_d$b_reportItemsBackInStock as reportItemsBackInStock };
|
|
3229
3229
|
}
|
|
3230
3230
|
|
|
3231
3231
|
/**
|
|
@@ -22241,7 +22241,7 @@ interface QueryCheckoutTemplatesRequest {
|
|
|
22241
22241
|
}
|
|
22242
22242
|
interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
22243
22243
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
22244
|
-
cursorPaging?: CursorPaging$
|
|
22244
|
+
cursorPaging?: CursorPaging$2;
|
|
22245
22245
|
/**
|
|
22246
22246
|
* Filter object in the following format:
|
|
22247
22247
|
* `"filter" : {
|
|
@@ -22256,24 +22256,24 @@ interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
22256
22256
|
* Sort object in the following format:
|
|
22257
22257
|
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
22258
22258
|
*/
|
|
22259
|
-
sort?: Sorting$
|
|
22259
|
+
sort?: Sorting$2[];
|
|
22260
22260
|
}
|
|
22261
22261
|
/** @oneof */
|
|
22262
22262
|
interface CursorQueryPagingMethodOneOf {
|
|
22263
22263
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
22264
|
-
cursorPaging?: CursorPaging$
|
|
22264
|
+
cursorPaging?: CursorPaging$2;
|
|
22265
22265
|
}
|
|
22266
|
-
interface Sorting$
|
|
22266
|
+
interface Sorting$2 {
|
|
22267
22267
|
/** Name of the field to sort by. */
|
|
22268
22268
|
fieldName?: string;
|
|
22269
22269
|
/** Sort order. */
|
|
22270
|
-
order?: SortOrder$
|
|
22270
|
+
order?: SortOrder$2;
|
|
22271
22271
|
}
|
|
22272
|
-
declare enum SortOrder$
|
|
22272
|
+
declare enum SortOrder$2 {
|
|
22273
22273
|
ASC = "ASC",
|
|
22274
22274
|
DESC = "DESC"
|
|
22275
22275
|
}
|
|
22276
|
-
interface CursorPaging$
|
|
22276
|
+
interface CursorPaging$2 {
|
|
22277
22277
|
/** Number of items to load. */
|
|
22278
22278
|
limit?: number | null;
|
|
22279
22279
|
/**
|
|
@@ -22289,13 +22289,13 @@ interface QueryCheckoutTemplatesResponse {
|
|
|
22289
22289
|
/** Retrieved checkout templates. */
|
|
22290
22290
|
checkoutTemplates?: CheckoutTemplate[];
|
|
22291
22291
|
/** Paging metadata. */
|
|
22292
|
-
pagingMetadata?: CursorPagingMetadata$
|
|
22292
|
+
pagingMetadata?: CursorPagingMetadata$2;
|
|
22293
22293
|
}
|
|
22294
|
-
interface CursorPagingMetadata$
|
|
22294
|
+
interface CursorPagingMetadata$2 {
|
|
22295
22295
|
/** Number of items returned in the response. */
|
|
22296
22296
|
count?: number | null;
|
|
22297
22297
|
/** Offset that was requested. */
|
|
22298
|
-
cursors?: Cursors$
|
|
22298
|
+
cursors?: Cursors$2;
|
|
22299
22299
|
/**
|
|
22300
22300
|
* Indicates if there are more results after the current page.
|
|
22301
22301
|
* If `true`, another page of results can be retrieved.
|
|
@@ -22303,7 +22303,7 @@ interface CursorPagingMetadata$1 {
|
|
|
22303
22303
|
*/
|
|
22304
22304
|
hasNext?: boolean | null;
|
|
22305
22305
|
}
|
|
22306
|
-
interface Cursors$
|
|
22306
|
+
interface Cursors$2 {
|
|
22307
22307
|
/** Cursor pointing to next page in the list of results. */
|
|
22308
22308
|
next?: string | null;
|
|
22309
22309
|
/** Cursor pointing to previous page in the list of results. */
|
|
@@ -23879,7 +23879,7 @@ interface UpdateCheckoutTemplate {
|
|
|
23879
23879
|
couponCode?: string | null;
|
|
23880
23880
|
}
|
|
23881
23881
|
interface QueryCursorResult {
|
|
23882
|
-
cursors: Cursors$
|
|
23882
|
+
cursors: Cursors$2;
|
|
23883
23883
|
hasNext: () => boolean;
|
|
23884
23884
|
hasPrev: () => boolean;
|
|
23885
23885
|
length: number;
|
|
@@ -24170,7 +24170,7 @@ declare const index_d$5_onCheckoutTemplateUsed: typeof onCheckoutTemplateUsed;
|
|
|
24170
24170
|
declare const index_d$5_queryCheckoutTemplates: typeof queryCheckoutTemplates;
|
|
24171
24171
|
declare const index_d$5_updateCheckoutTemplate: typeof updateCheckoutTemplate;
|
|
24172
24172
|
declare namespace index_d$5 {
|
|
24173
|
-
export { type ActionEvent$4 as ActionEvent, type AdditionalFee$1 as AdditionalFee, type Address$2 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type index_d$5_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$5_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$4 as BaseEventMetadata, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$5_CalculationErrors as CalculationErrors, type index_d$5_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type index_d$5_CarrierError as CarrierError, type index_d$5_CarrierErrors as CarrierErrors, type index_d$5_CarrierServiceOption as CarrierServiceOption, type index_d$5_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$1 as CatalogReference, ChannelType$2 as ChannelType, index_d$5_ChargeType as ChargeType, type index_d$5_Checkout as Checkout, type index_d$5_CheckoutCustomization as CheckoutCustomization, type index_d$5_CheckoutTemplate as CheckoutTemplate, type index_d$5_CheckoutTemplateCreatedEnvelope as CheckoutTemplateCreatedEnvelope, type index_d$5_CheckoutTemplateDeletedEnvelope as CheckoutTemplateDeletedEnvelope, type index_d$5_CheckoutTemplateUpdatedEnvelope as CheckoutTemplateUpdatedEnvelope, type index_d$5_CheckoutTemplateUsed as CheckoutTemplateUsed, type index_d$5_CheckoutTemplateUsedEnvelope as CheckoutTemplateUsedEnvelope, type index_d$5_CheckoutTemplatesQueryBuilder as CheckoutTemplatesQueryBuilder, type index_d$5_CheckoutTemplatesQueryResult as CheckoutTemplatesQueryResult, type Color$1 as Color, type index_d$5_ConversionInfo as ConversionInfo, type Coupon$1 as Coupon, type index_d$5_CreateAndRedirectToCheckoutRequest as CreateAndRedirectToCheckoutRequest, type index_d$5_CreateCheckoutFromTemplateRequest as CreateCheckoutFromTemplateRequest, type index_d$5_CreateCheckoutFromTemplateResponse as CreateCheckoutFromTemplateResponse, type index_d$5_CreateCheckoutFromTemplateResponseNonNullableFields as CreateCheckoutFromTemplateResponseNonNullableFields, type index_d$5_CreateCheckoutTemplateRequest as CreateCheckoutTemplateRequest, type index_d$5_CreateCheckoutTemplateResponse as CreateCheckoutTemplateResponse, type index_d$5_CreateCheckoutTemplateResponseNonNullableFields as CreateCheckoutTemplateResponseNonNullableFields, type CreatedBy$1 as CreatedBy, type index_d$5_CreatedByIdOneOf as CreatedByIdOneOf, type CursorPaging$
|
|
24173
|
+
export { type ActionEvent$4 as ActionEvent, type AdditionalFee$1 as AdditionalFee, type Address$2 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type index_d$5_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$5_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$4 as BaseEventMetadata, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$5_CalculationErrors as CalculationErrors, type index_d$5_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type index_d$5_CarrierError as CarrierError, type index_d$5_CarrierErrors as CarrierErrors, type index_d$5_CarrierServiceOption as CarrierServiceOption, type index_d$5_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$1 as CatalogReference, ChannelType$2 as ChannelType, index_d$5_ChargeType as ChargeType, type index_d$5_Checkout as Checkout, type index_d$5_CheckoutCustomization as CheckoutCustomization, type index_d$5_CheckoutTemplate as CheckoutTemplate, type index_d$5_CheckoutTemplateCreatedEnvelope as CheckoutTemplateCreatedEnvelope, type index_d$5_CheckoutTemplateDeletedEnvelope as CheckoutTemplateDeletedEnvelope, type index_d$5_CheckoutTemplateUpdatedEnvelope as CheckoutTemplateUpdatedEnvelope, type index_d$5_CheckoutTemplateUsed as CheckoutTemplateUsed, type index_d$5_CheckoutTemplateUsedEnvelope as CheckoutTemplateUsedEnvelope, type index_d$5_CheckoutTemplatesQueryBuilder as CheckoutTemplatesQueryBuilder, type index_d$5_CheckoutTemplatesQueryResult as CheckoutTemplatesQueryResult, type Color$1 as Color, type index_d$5_ConversionInfo as ConversionInfo, type Coupon$1 as Coupon, type index_d$5_CreateAndRedirectToCheckoutRequest as CreateAndRedirectToCheckoutRequest, type index_d$5_CreateCheckoutFromTemplateRequest as CreateCheckoutFromTemplateRequest, type index_d$5_CreateCheckoutFromTemplateResponse as CreateCheckoutFromTemplateResponse, type index_d$5_CreateCheckoutFromTemplateResponseNonNullableFields as CreateCheckoutFromTemplateResponseNonNullableFields, type index_d$5_CreateCheckoutTemplateRequest as CreateCheckoutTemplateRequest, type index_d$5_CreateCheckoutTemplateResponse as CreateCheckoutTemplateResponse, type index_d$5_CreateCheckoutTemplateResponseNonNullableFields as CreateCheckoutTemplateResponseNonNullableFields, type CreatedBy$1 as CreatedBy, type index_d$5_CreatedByIdOneOf as CreatedByIdOneOf, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type index_d$5_CursorQuery as CursorQuery, type index_d$5_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$5_CustomContentReference as CustomContentReference, type CustomField$2 as CustomField, type index_d$5_CustomLineItem as CustomLineItem, type index_d$5_CustomSettings as CustomSettings, type index_d$5_DeleteCheckoutTemplateRequest as DeleteCheckoutTemplateRequest, type index_d$5_DeleteCheckoutTemplateResponse as DeleteCheckoutTemplateResponse, type DeliveryLogistics$1 as DeliveryLogistics, type DeliveryTimeSlot$1 as DeliveryTimeSlot, type index_d$5_Description as Description, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$1 as Details, type DetailsKindOneOf$1 as DetailsKindOneOf, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventMetadata$4 as EventMetadata, type ExtendedFields$1 as ExtendedFields, index_d$5_FallbackReason as FallbackReason, type FieldViolation$1 as FieldViolation, index_d$5_FileType as FileType, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$5_GetCheckoutTemplateRequest as GetCheckoutTemplateRequest, type index_d$5_GetCheckoutTemplateResponse as GetCheckoutTemplateResponse, type index_d$5_GetCheckoutTemplateResponseNonNullableFields as GetCheckoutTemplateResponseNonNullableFields, type GiftCard$1 as GiftCard, type index_d$5_Group as Group, type index_d$5_HeadersEntry as HeadersEntry, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type index_d$5_InvalidMembership as InvalidMembership, type index_d$5_ItemAvailabilityInfo as ItemAvailabilityInfo, index_d$5_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type LineItemDiscount$1 as LineItemDiscount, index_d$5_ManualCalculationReason as ManualCalculationReason, type index_d$5_Membership as Membership, type MembershipName$2 as MembershipName, type index_d$5_MembershipOptions as MembershipOptions, type index_d$5_MembershipPaymentCredits as MembershipPaymentCredits, type MerchantDiscount$1 as MerchantDiscount, type MessageEnvelope$4 as MessageEnvelope, type index_d$5_MultiCurrencyPrice as MultiCurrencyPrice, index_d$5_NameInLineItem as NameInLineItem, index_d$5_NameInOther as NameInOther, type index_d$5_Other as Other, type index_d$5_OtherCharge as OtherCharge, PaymentOptionType$1 as PaymentOptionType, type PhysicalProperties$1 as PhysicalProperties, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type PriceDescription$1 as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, type index_d$5_QueryCheckoutTemplatesRequest as QueryCheckoutTemplatesRequest, type index_d$5_QueryCheckoutTemplatesResponse as QueryCheckoutTemplatesResponse, type index_d$5_QueryCheckoutTemplatesResponseNonNullableFields as QueryCheckoutTemplatesResponseNonNullableFields, index_d$5_RateType as RateType, type index_d$5_RawHttpResponse as RawHttpResponse, RuleType$1 as RuleType, type index_d$5_Scope as Scope, type index_d$5_SecuredMedia as SecuredMedia, type index_d$5_SelectedCarrierServiceOption as SelectedCarrierServiceOption, type index_d$5_SelectedCarrierServiceOptionOtherCharge as SelectedCarrierServiceOptionOtherCharge, type index_d$5_SelectedCarrierServiceOptionPrices as SelectedCarrierServiceOptionPrices, type index_d$5_SelectedMembership as SelectedMembership, type index_d$5_SelectedMemberships as SelectedMemberships, type ServiceProperties$1 as ServiceProperties, index_d$5_Severity as Severity, type ShippingInfo$1 as ShippingInfo, type index_d$5_ShippingOption as ShippingOption, type ShippingPrice$1 as ShippingPrice, type ShippingRegion$1 as ShippingRegion, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, index_d$5_Status as Status, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type SystemError$1 as SystemError, type index_d$5_Target as Target, type index_d$5_TargetLineItem as TargetLineItem, type index_d$5_TargetTargetTypeOneOf as TargetTargetTypeOneOf, type index_d$5_TaxBreakdown as TaxBreakdown, type index_d$5_TaxCalculationDetails as TaxCalculationDetails, type index_d$5_TaxCalculationDetailsCalculationDetailsOneOf as TaxCalculationDetailsCalculationDetailsOneOf, type index_d$5_TaxRateBreakdown as TaxRateBreakdown, type TaxSummary$1 as TaxSummary, type index_d$5_Title as Title, type index_d$5_UpdateCheckoutTemplate as UpdateCheckoutTemplate, type index_d$5_UpdateCheckoutTemplateRequest as UpdateCheckoutTemplateRequest, type index_d$5_UpdateCheckoutTemplateResponse as UpdateCheckoutTemplateResponse, type index_d$5_UpdateCheckoutTemplateResponseNonNullableFields as UpdateCheckoutTemplateResponseNonNullableFields, type index_d$5_V1LineItem as V1LineItem, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, type index_d$5_Violation as Violation, type index_d$5_WebClientCustomization as WebClientCustomization, WebhookIdentityType$4 as WebhookIdentityType, WeightUnit$2 as WeightUnit, __metadata$5 as __metadata, index_d$5_createCheckoutFromTemplate as createCheckoutFromTemplate, index_d$5_createCheckoutTemplate as createCheckoutTemplate, index_d$5_deleteCheckoutTemplate as deleteCheckoutTemplate, index_d$5_getCheckoutTemplate as getCheckoutTemplate, index_d$5_onCheckoutTemplateCreated as onCheckoutTemplateCreated, index_d$5_onCheckoutTemplateDeleted as onCheckoutTemplateDeleted, index_d$5_onCheckoutTemplateUpdated as onCheckoutTemplateUpdated, index_d$5_onCheckoutTemplateUsed as onCheckoutTemplateUsed, index_d$5_queryCheckoutTemplates as queryCheckoutTemplates, index_d$5_updateCheckoutTemplate as updateCheckoutTemplate };
|
|
24174
24174
|
}
|
|
24175
24175
|
|
|
24176
24176
|
interface OrderWithFulfillments {
|
|
@@ -26383,26 +26383,26 @@ interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
|
|
|
26383
26383
|
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
26384
26384
|
paging?: PlatformPaging;
|
|
26385
26385
|
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
26386
|
-
cursorPaging?: CursorPaging;
|
|
26386
|
+
cursorPaging?: CursorPaging$1;
|
|
26387
26387
|
/** Filter object. */
|
|
26388
26388
|
filter?: Record<string, any> | null;
|
|
26389
26389
|
/** Sorting options. For example, `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]`. */
|
|
26390
|
-
sort?: Sorting[];
|
|
26390
|
+
sort?: Sorting$1[];
|
|
26391
26391
|
}
|
|
26392
26392
|
/** @oneof */
|
|
26393
26393
|
interface PlatformQueryPagingMethodOneOf {
|
|
26394
26394
|
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
26395
26395
|
paging?: PlatformPaging;
|
|
26396
26396
|
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
26397
|
-
cursorPaging?: CursorPaging;
|
|
26397
|
+
cursorPaging?: CursorPaging$1;
|
|
26398
26398
|
}
|
|
26399
|
-
interface Sorting {
|
|
26399
|
+
interface Sorting$1 {
|
|
26400
26400
|
/** Name of the field to sort by. */
|
|
26401
26401
|
fieldName?: string;
|
|
26402
26402
|
/** Sort order. */
|
|
26403
|
-
order?: SortOrder;
|
|
26403
|
+
order?: SortOrder$1;
|
|
26404
26404
|
}
|
|
26405
|
-
declare enum SortOrder {
|
|
26405
|
+
declare enum SortOrder$1 {
|
|
26406
26406
|
ASC = "ASC",
|
|
26407
26407
|
DESC = "DESC"
|
|
26408
26408
|
}
|
|
@@ -26412,7 +26412,7 @@ interface PlatformPaging {
|
|
|
26412
26412
|
/** Number of items to skip in the current sort order. */
|
|
26413
26413
|
offset?: number | null;
|
|
26414
26414
|
}
|
|
26415
|
-
interface CursorPaging {
|
|
26415
|
+
interface CursorPaging$1 {
|
|
26416
26416
|
/** Maximum number of items to return in the results. */
|
|
26417
26417
|
limit?: number | null;
|
|
26418
26418
|
/**
|
|
@@ -26437,9 +26437,9 @@ interface PlatformPagingMetadata {
|
|
|
26437
26437
|
/** The total number of items that match the query. Returned if offset paging was used. */
|
|
26438
26438
|
total?: number | null;
|
|
26439
26439
|
/** Cursors to navigate through result pages. Returned if cursor paging was used. */
|
|
26440
|
-
cursors?: Cursors;
|
|
26440
|
+
cursors?: Cursors$1;
|
|
26441
26441
|
}
|
|
26442
|
-
interface Cursors {
|
|
26442
|
+
interface Cursors$1 {
|
|
26443
26443
|
/** Cursor string pointing to the next page in the list of results. */
|
|
26444
26444
|
next?: string | null;
|
|
26445
26445
|
/** Cursor pointing to the previous page in the list of results. */
|
|
@@ -26661,6 +26661,8 @@ interface RefundItem$1 {
|
|
|
26661
26661
|
/** Line item quantity refunded. */
|
|
26662
26662
|
quantity?: number;
|
|
26663
26663
|
}
|
|
26664
|
+
interface AggregatedRefundSummary$1 {
|
|
26665
|
+
}
|
|
26664
26666
|
interface TestUrlAdditionalBindingsRequest {
|
|
26665
26667
|
}
|
|
26666
26668
|
interface TestUrlAdditionalBindingsResponse {
|
|
@@ -27285,8 +27287,6 @@ interface TriggerRefundResponse$1 {
|
|
|
27285
27287
|
/** Payment ID's that the refund execution had failed for */
|
|
27286
27288
|
failedPaymentIds?: ItemMetadata$1[];
|
|
27287
27289
|
}
|
|
27288
|
-
interface AggregatedRefundSummary {
|
|
27289
|
-
}
|
|
27290
27290
|
/** Triggered when a refund is created. */
|
|
27291
27291
|
interface RefundCreated$1 {
|
|
27292
27292
|
/** Updated order transactions. */
|
|
@@ -27621,14 +27621,14 @@ interface QueryOrderResponse {
|
|
|
27621
27621
|
}
|
|
27622
27622
|
interface SearchOrdersRequest {
|
|
27623
27623
|
/** Search options. */
|
|
27624
|
-
search?: CursorSearch;
|
|
27624
|
+
search?: CursorSearch$1;
|
|
27625
27625
|
}
|
|
27626
|
-
interface CursorSearch extends CursorSearchPagingMethodOneOf {
|
|
27626
|
+
interface CursorSearch$1 extends CursorSearchPagingMethodOneOf$1 {
|
|
27627
27627
|
/**
|
|
27628
27628
|
* Cursor paging options.
|
|
27629
27629
|
* Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
|
|
27630
27630
|
*/
|
|
27631
|
-
cursorPaging?: CursorPaging;
|
|
27631
|
+
cursorPaging?: CursorPaging$1;
|
|
27632
27632
|
/**
|
|
27633
27633
|
* Filter object.
|
|
27634
27634
|
*
|
|
@@ -27648,27 +27648,27 @@ interface CursorSearch extends CursorSearchPagingMethodOneOf {
|
|
|
27648
27648
|
*
|
|
27649
27649
|
* Learn more about the [sort format](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
27650
27650
|
*/
|
|
27651
|
-
sort?: Sorting[];
|
|
27651
|
+
sort?: Sorting$1[];
|
|
27652
27652
|
}
|
|
27653
27653
|
/** @oneof */
|
|
27654
|
-
interface CursorSearchPagingMethodOneOf {
|
|
27654
|
+
interface CursorSearchPagingMethodOneOf$1 {
|
|
27655
27655
|
/**
|
|
27656
27656
|
* Cursor paging options.
|
|
27657
27657
|
* Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
|
|
27658
27658
|
*/
|
|
27659
|
-
cursorPaging?: CursorPaging;
|
|
27659
|
+
cursorPaging?: CursorPaging$1;
|
|
27660
27660
|
}
|
|
27661
27661
|
interface SearchOrdersResponse {
|
|
27662
27662
|
/** List of orders. */
|
|
27663
27663
|
orders?: Order$1[];
|
|
27664
27664
|
/** Details on the paged set of results returned. */
|
|
27665
|
-
metadata?: CursorPagingMetadata;
|
|
27665
|
+
metadata?: CursorPagingMetadata$1;
|
|
27666
27666
|
}
|
|
27667
|
-
interface CursorPagingMetadata {
|
|
27667
|
+
interface CursorPagingMetadata$1 {
|
|
27668
27668
|
/** Number of items returned in the response. */
|
|
27669
27669
|
count?: number | null;
|
|
27670
27670
|
/** Cursor strings that point to the next page, previous page, or both. */
|
|
27671
|
-
cursors?: Cursors;
|
|
27671
|
+
cursors?: Cursors$1;
|
|
27672
27672
|
/**
|
|
27673
27673
|
* Whether there are more pages to retrieve following the current page.
|
|
27674
27674
|
*
|
|
@@ -30700,7 +30700,7 @@ interface OrderApprovedEnvelope {
|
|
|
30700
30700
|
}
|
|
30701
30701
|
interface SearchOrdersOptions {
|
|
30702
30702
|
/** Search options. */
|
|
30703
|
-
search?: CursorSearch;
|
|
30703
|
+
search?: CursorSearch$1;
|
|
30704
30704
|
}
|
|
30705
30705
|
interface UpdateOrder {
|
|
30706
30706
|
/**
|
|
@@ -31859,7 +31859,6 @@ type index_d$3_AddressLocation = AddressLocation;
|
|
|
31859
31859
|
type index_d$3_AddressWithContact = AddressWithContact;
|
|
31860
31860
|
type index_d$3_AggregateOrdersRequest = AggregateOrdersRequest;
|
|
31861
31861
|
type index_d$3_AggregateOrdersResponse = AggregateOrdersResponse;
|
|
31862
|
-
type index_d$3_AggregatedRefundSummary = AggregatedRefundSummary;
|
|
31863
31862
|
type index_d$3_App = App;
|
|
31864
31863
|
type index_d$3_AppliedDiscount = AppliedDiscount;
|
|
31865
31864
|
type index_d$3_AppliedDiscountDelta = AppliedDiscountDelta;
|
|
@@ -31950,11 +31949,6 @@ type index_d$3_CreatePaymentGatewayOrderRequest = CreatePaymentGatewayOrderReque
|
|
|
31950
31949
|
type index_d$3_CreatePaymentGatewayOrderResponse = CreatePaymentGatewayOrderResponse;
|
|
31951
31950
|
type index_d$3_CreatedBy = CreatedBy;
|
|
31952
31951
|
type index_d$3_CreatedByStringOneOf = CreatedByStringOneOf;
|
|
31953
|
-
type index_d$3_CursorPaging = CursorPaging;
|
|
31954
|
-
type index_d$3_CursorPagingMetadata = CursorPagingMetadata;
|
|
31955
|
-
type index_d$3_CursorSearch = CursorSearch;
|
|
31956
|
-
type index_d$3_CursorSearchPagingMethodOneOf = CursorSearchPagingMethodOneOf;
|
|
31957
|
-
type index_d$3_Cursors = Cursors;
|
|
31958
31952
|
type index_d$3_CustomActivity = CustomActivity;
|
|
31959
31953
|
type index_d$3_CustomFieldGroup = CustomFieldGroup;
|
|
31960
31954
|
declare const index_d$3_CustomFieldGroup: typeof CustomFieldGroup;
|
|
@@ -32226,9 +32220,6 @@ type index_d$3_ShippingPrice = ShippingPrice;
|
|
|
32226
32220
|
type index_d$3_ShippingRefund = ShippingRefund;
|
|
32227
32221
|
type index_d$3_ShippingRefundOption = ShippingRefundOption;
|
|
32228
32222
|
type index_d$3_ShippingRegion = ShippingRegion;
|
|
32229
|
-
type index_d$3_SortOrder = SortOrder;
|
|
32230
|
-
declare const index_d$3_SortOrder: typeof SortOrder;
|
|
32231
|
-
type index_d$3_Sorting = Sorting;
|
|
32232
32223
|
type index_d$3_Source = Source;
|
|
32233
32224
|
type index_d$3_SourceType = SourceType;
|
|
32234
32225
|
declare const index_d$3_SourceType: typeof SourceType;
|
|
@@ -32320,7 +32311,7 @@ declare const index_d$3_onOrderUpdated: typeof onOrderUpdated;
|
|
|
32320
32311
|
declare const index_d$3_searchOrders: typeof searchOrders;
|
|
32321
32312
|
declare const index_d$3_updateOrder: typeof updateOrder;
|
|
32322
32313
|
declare namespace index_d$3 {
|
|
32323
|
-
export { type ActionEvent$2 as ActionEvent, type Activity$1 as Activity, type index_d$3_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type index_d$3_AddActivitiesRequest as AddActivitiesRequest, type index_d$3_AddActivitiesResponse as AddActivitiesResponse, type index_d$3_AddActivityRequest as AddActivityRequest, type index_d$3_AddActivityResponse as AddActivityResponse, type index_d$3_AddInternalActivityRequest as AddInternalActivityRequest, type index_d$3_AddInternalActivityResponse as AddInternalActivityResponse, type index_d$3_AdditionalFee as AdditionalFee, type index_d$3_AdditionalFeeDelta as AdditionalFeeDelta, type index_d$3_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type index_d$3_AdditionalFeeRefund as AdditionalFeeRefund, type index_d$3_AdditionalFeeRefundOption as AdditionalFeeRefundOption, type Address$1 as Address, type index_d$3_AddressDescription as AddressDescription, type index_d$3_AddressLocation as AddressLocation, type index_d$3_AddressWithContact as AddressWithContact, type index_d$3_AggregateOrdersRequest as AggregateOrdersRequest, type index_d$3_AggregateOrdersResponse as AggregateOrdersResponse, type index_d$3_AggregatedRefundSummary as AggregatedRefundSummary, type index_d$3_App as App, type ApplicationError$1 as ApplicationError, type index_d$3_AppliedDiscount as AppliedDiscount, type index_d$3_AppliedDiscountDelta as AppliedDiscountDelta, type index_d$3_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type index_d$3_AppliedDiscountDiscountSourceOneOf as AppliedDiscountDiscountSourceOneOf, type index_d$3_ArchiveOrderRequest as ArchiveOrderRequest, type index_d$3_ArchiveOrderResponse as ArchiveOrderResponse, index_d$3_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$1 as AuthorizationActionFailureDetails, type AuthorizationCapture$1 as AuthorizationCapture, AuthorizationCaptureStatus$1 as AuthorizationCaptureStatus, type AuthorizationDetails$1 as AuthorizationDetails, type AuthorizationVoid$1 as AuthorizationVoid, AuthorizationVoidStatus$1 as AuthorizationVoidStatus, type index_d$3_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$3_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$3_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$3_Balance as Balance, type index_d$3_BalanceSummary as BalanceSummary, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$3_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$3_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$3_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$3_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$3_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$3_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$3_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$3_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$3_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$3_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$3_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$3_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$3_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$3_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$3_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$3_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$3_BulkOrderResult as BulkOrderResult, type index_d$3_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$3_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$3_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$3_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$3_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$3_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$3_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$3_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$3_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$3_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type index_d$3_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type index_d$3_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$3_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type BuyerInfo$1 as BuyerInfo, type index_d$3_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$3_BuyerInfoUpdate as BuyerInfoUpdate, type CalculateRefundItemRequest$1 as CalculateRefundItemRequest, type CalculateRefundItemResponse$1 as CalculateRefundItemResponse, type CalculateRefundRequest$1 as CalculateRefundRequest, type CalculateRefundResponse$1 as CalculateRefundResponse, type index_d$3_CalculateRefundV2Request as CalculateRefundV2Request, type index_d$3_CalculateRefundV2Response as CalculateRefundV2Response, type index_d$3_CalculateRefundV2ResponseStatusOneOf as CalculateRefundV2ResponseStatusOneOf, type index_d$3_CalculatedAdditionalFeeRefund as CalculatedAdditionalFeeRefund, type index_d$3_CalculatedLineItemRefund as CalculatedLineItemRefund, type index_d$3_CalculatedRefundDetails as CalculatedRefundDetails, type index_d$3_CalculatedRefundNotAvailableStatus as CalculatedRefundNotAvailableStatus, type index_d$3_CalculatedRefundSummary as CalculatedRefundSummary, type index_d$3_CalculatedShippingRefund as CalculatedShippingRefund, type index_d$3_CalculatedTax as CalculatedTax, type index_d$3_CalculatedTaxes as CalculatedTaxes, type index_d$3_CalculationError as CalculationError, type index_d$3_CalculationErrorItemOneOf as CalculationErrorItemOneOf, type index_d$3_Cancel as Cancel, type index_d$3_CancelOrderOptions as CancelOrderOptions, type index_d$3_CancelOrderRequest as CancelOrderRequest, type index_d$3_CancelOrderResponse as CancelOrderResponse, type index_d$3_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type index_d$3_CaptureAuthorizedPaymentRequest as CaptureAuthorizedPaymentRequest, type index_d$3_CaptureAuthorizedPaymentResponse as CaptureAuthorizedPaymentResponse, type index_d$3_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type index_d$3_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type index_d$3_CatalogReference as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type index_d$3_ChargeMembershipsRequest as ChargeMembershipsRequest, type index_d$3_ChargeMembershipsResponse as ChargeMembershipsResponse, type index_d$3_ChargedBy as ChargedBy, type index_d$3_Color as Color, type index_d$3_CommitDeltasRequest as CommitDeltasRequest, type index_d$3_CommitDeltasResponse as CommitDeltasResponse, type index_d$3_CommittedDiffs as CommittedDiffs, type index_d$3_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type index_d$3_CommonAddress as CommonAddress, type index_d$3_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$3_Company as Company, type index_d$3_Complete as Complete, type index_d$3_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type index_d$3_Coupon as Coupon, type index_d$3_CreateOrderRequest as CreateOrderRequest, type index_d$3_CreateOrderResponse as CreateOrderResponse, type index_d$3_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type index_d$3_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type index_d$3_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type index_d$3_CreatedBy as CreatedBy, type index_d$3_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$1 as CreditCardPaymentMethodDetails, type index_d$3_CursorPaging as CursorPaging, type index_d$3_CursorPagingMetadata as CursorPagingMetadata, type index_d$3_CursorSearch as CursorSearch, type index_d$3_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d$3_Cursors as Cursors, type index_d$3_CustomActivity as CustomActivity, type CustomField$1 as CustomField, index_d$3_CustomFieldGroup as CustomFieldGroup, type index_d$3_CustomFieldValue as CustomFieldValue, type index_d$3_Customer as Customer, type index_d$3_DecrementData as DecrementData, type index_d$3_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type index_d$3_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type index_d$3_DeleteActivityRequest as DeleteActivityRequest, type index_d$3_DeleteActivityResponse as DeleteActivityResponse, type index_d$3_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$3_DeleteByIdsOperation as DeleteByIdsOperation, type index_d$3_DeliveryLogistics as DeliveryLogistics, type index_d$3_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type index_d$3_DeliveryTimeSlot as DeliveryTimeSlot, index_d$3_DeltaPaymentOptionType as DeltaPaymentOptionType, type index_d$3_Deposit as Deposit, index_d$3_DepositType as DepositType, type index_d$3_DescriptionLine as DescriptionLine, type index_d$3_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$3_DescriptionLineName as DescriptionLineName, index_d$3_DescriptionLineType as DescriptionLineType, type index_d$3_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type index_d$3_Details as Details, type index_d$3_DetailsKindOneOf as DetailsKindOneOf, type DiffmatokyPayload$1 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type index_d$3_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, index_d$3_DiscountReason as DiscountReason, type index_d$3_DiscountRule as DiscountRule, type index_d$3_DiscountRuleName as DiscountRuleName, index_d$3_DiscountType as DiscountType, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$3_DownloadLinkSent as DownloadLinkSent, type index_d$3_DraftOrderChangesApplied as DraftOrderChangesApplied, type index_d$3_DraftOrderCommitSettings as DraftOrderCommitSettings, type index_d$3_DraftOrderDiffs as DraftOrderDiffs, type index_d$3_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type index_d$3_Email as Email, type index_d$3_EmailEdited as EmailEdited, type index_d$3_Empty as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type ErrorInformation$1 as ErrorInformation, type EventMetadata$2 as EventMetadata, type index_d$3_ExtendedFields as ExtendedFields, type index_d$3_ExternalUriMapping as ExternalUriMapping, type index_d$3_FieldViolation as FieldViolation, type index_d$3_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$3_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$3_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type index_d$3_FullAddressContactDetails as FullAddressContactDetails, type index_d$3_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$3_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$3_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$3_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$3_GetOrderRequest as GetOrderRequest, type index_d$3_GetOrderResponse as GetOrderResponse, type index_d$3_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$3_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$3_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type index_d$3_GetRefundOptionsRequest as GetRefundOptionsRequest, type index_d$3_GetRefundOptionsResponse as GetRefundOptionsResponse, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type index_d$3_GetShipmentsRequest as GetShipmentsRequest, type index_d$3_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$1 as GiftCardPaymentDetails, type index_d$3_HtmlApplication as HtmlApplication, type index_d$3_IdAndVersion as IdAndVersion, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type index_d$3_InternalActivity as InternalActivity, type index_d$3_InternalActivityContentOneOf as InternalActivityContentOneOf, type index_d$3_InternalDocument as InternalDocument, type index_d$3_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type index_d$3_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type index_d$3_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type index_d$3_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type index_d$3_InternalUpdateExistingOperation as InternalUpdateExistingOperation, index_d$3_InventoryAction as InventoryAction, type index_d$3_InventoryUpdateDetails as InventoryUpdateDetails, type index_d$3_InvoiceAdded as InvoiceAdded, type index_d$3_InvoiceDates as InvoiceDates, type index_d$3_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type index_d$3_InvoiceFields as InvoiceFields, type index_d$3_InvoiceSent as InvoiceSent, type index_d$3_InvoiceSentEvent as InvoiceSentEvent, index_d$3_InvoiceStatus as InvoiceStatus, type index_d$3_InvoicesPayment as InvoicesPayment, type index_d$3_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type index_d$3_ItemTaxFullDetails as ItemTaxFullDetails, type index_d$3_ItemType as ItemType, index_d$3_ItemTypeItemType as ItemTypeItemType, type index_d$3_ItemTypeItemTypeDataOneOf as ItemTypeItemTypeDataOneOf, type index_d$3_ItemizedFee as ItemizedFee, index_d$3_JurisdictionType as JurisdictionType, type LineItem$1 as LineItem, type index_d$3_LineItemAmount as LineItemAmount, type index_d$3_LineItemChanges as LineItemChanges, type index_d$3_LineItemDelta as LineItemDelta, type index_d$3_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type index_d$3_LineItemDiscount as LineItemDiscount, type index_d$3_LineItemExchangeData as LineItemExchangeData, type index_d$3_LineItemMetaData as LineItemMetaData, type index_d$3_LineItemPriceChange as LineItemPriceChange, type index_d$3_LineItemQuantityChange as LineItemQuantityChange, index_d$3_LineItemQuantityChangeType as LineItemQuantityChangeType, type index_d$3_LineItemRefund as LineItemRefund, type index_d$3_LineItemRefundOption as LineItemRefundOption, type index_d$3_LineItemTax as LineItemTax, type index_d$3_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$3_LineItemTaxInfo as LineItemTaxInfo, type index_d$3_LineItemUpdate as LineItemUpdate, type index_d$3_LineItems as LineItems, type index_d$3_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type index_d$3_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type index_d$3_Locale as Locale, type index_d$3_LocationAndQuantity as LocationAndQuantity, type index_d$3_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$3_ManagedDiscount as ManagedDiscount, type index_d$3_ManagedLineItem as ManagedLineItem, type index_d$3_ManuallyRefundablePaymentStatus as ManuallyRefundablePaymentStatus, ManuallyRefundableReason$1 as ManuallyRefundableReason, type index_d$3_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type index_d$3_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type index_d$3_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type index_d$3_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type index_d$3_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type index_d$3_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type index_d$3_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type index_d$3_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type index_d$3_MaskedOrder as MaskedOrder, type index_d$3_MaskedOrderLineItem as MaskedOrderLineItem, type index_d$3_MembershipChargeItem as MembershipChargeItem, type MembershipName$1 as MembershipName, type MembershipPaymentDetails$1 as MembershipPaymentDetails, MembershipPaymentStatus$1 as MembershipPaymentStatus, type index_d$3_MembershipPaymentSummary as MembershipPaymentSummary, type index_d$3_MerchantComment as MerchantComment, type index_d$3_MerchantDiscount as MerchantDiscount, type index_d$3_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$2 as MessageEnvelope, type index_d$3_MetaData as MetaData, type index_d$3_MetaSite as MetaSite, type index_d$3_MetaTag as MetaTag, type index_d$3_MonetaryPaymentSummary as MonetaryPaymentSummary, index_d$3_Namespace as Namespace, type index_d$3_NewExchangeOrderCreated as NewExchangeOrderCreated, type index_d$3_NonRefundablePaymentStatus as NonRefundablePaymentStatus, NonRefundableReason$1 as NonRefundableReason, type index_d$3_NotificationSideEffects as NotificationSideEffects, type Order$1 as Order, index_d$3_OrderApprovalStrategy as OrderApprovalStrategy, type index_d$3_OrderApproved as OrderApproved, type index_d$3_OrderApprovedEnvelope as OrderApprovedEnvelope, type index_d$3_OrderCanceled as OrderCanceled, type index_d$3_OrderCanceledEnvelope as OrderCanceledEnvelope, type index_d$3_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type index_d$3_OrderChange as OrderChange, type index_d$3_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$3_OrderCreatedEnvelope as OrderCreatedEnvelope, type index_d$3_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$3_OrderCreationSettings as OrderCreationSettings, type index_d$3_OrderDeltasCommitted as OrderDeltasCommitted, type index_d$3_OrderFulfilled as OrderFulfilled, type index_d$3_OrderItemsRestocked as OrderItemsRestocked, type index_d$3_OrderLineItem as OrderLineItem, type index_d$3_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type index_d$3_OrderNotFulfilled as OrderNotFulfilled, type index_d$3_OrderPaid as OrderPaid, type index_d$3_OrderPartiallyPaid as OrderPartiallyPaid, type index_d$3_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type index_d$3_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, index_d$3_OrderStatus as OrderStatus, type index_d$3_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$3_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$1 as OrderTransactions, type index_d$3_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type index_d$3_OrdersExperiments as OrdersExperiments, type index_d$3_OrdersV1RestockItem as OrdersV1RestockItem, type Payment$1 as Payment, type index_d$3_PaymentCapture as PaymentCapture, index_d$3_PaymentCollectabilityStatus as PaymentCollectabilityStatus, type index_d$3_PaymentInfo as PaymentInfo, type index_d$3_PaymentInfoPaymentMethodDetailsOneOf as PaymentInfoPaymentMethodDetailsOneOf, type index_d$3_PaymentInfoSummaryOneOf as PaymentInfoSummaryOneOf, index_d$3_PaymentOptionType as PaymentOptionType, type PaymentPaymentDetailsOneOf$1 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$3_PaymentRefundOption as PaymentRefundOption, type index_d$3_PaymentRefundOptionStatusOneOf as PaymentRefundOptionStatusOneOf, PaymentStatus$1 as PaymentStatus, type index_d$3_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$3_Payments as Payments, type index_d$3_PaymentsSummary as PaymentsSummary, type index_d$3_Phone as Phone, type index_d$3_PhysicalProperties as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$1 as PickupDetails, index_d$3_PickupMethod as PickupMethod, type index_d$3_PickupReadyEmailSent as PickupReadyEmailSent, index_d$3_Placement as Placement, type index_d$3_PlainTextValue as PlainTextValue, type index_d$3_PlatformPaging as PlatformPaging, type index_d$3_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$3_PlatformQuery as PlatformQuery, type index_d$3_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d$3_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$3_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type index_d$3_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type index_d$3_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type index_d$3_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type index_d$3_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type index_d$3_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type index_d$3_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type index_d$3_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type index_d$3_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type index_d$3_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type index_d$3_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type index_d$3_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type index_d$3_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, index_d$3_PreviewEmailType as PreviewEmailType, type index_d$3_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type index_d$3_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type index_d$3_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type index_d$3_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type index_d$3_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type index_d$3_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$1 as Price, type index_d$3_PriceDescription as PriceDescription, type index_d$3_PriceSummary as PriceSummary, type index_d$3_ProductName as ProductName, type index_d$3_PublicActivity as PublicActivity, type index_d$3_PublicActivityContentOneOf as PublicActivityContentOneOf, type index_d$3_QueryOrderRequest as QueryOrderRequest, type index_d$3_QueryOrderResponse as QueryOrderResponse, type index_d$3_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type index_d$3_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type index_d$3_QuotesAddress as QuotesAddress, type index_d$3_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type index_d$3_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type index_d$3_RedirectUrls as RedirectUrls, type Refund$1 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$1 as RefundDetails, type RefundItem$1 as RefundItem, type index_d$3_RefundRequest as RefundRequest, type index_d$3_RefundResponse as RefundResponse, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$1 as RefundStatus, type RefundTransaction$1 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, index_d$3_RefundabilityManuallyRefundableReason as RefundabilityManuallyRefundableReason, index_d$3_RefundabilityNonRefundableReason as RefundabilityNonRefundableReason, RefundableStatus$1 as RefundableStatus, type RegularPaymentDetails$1 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$3_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, type index_d$3_RestockSideEffects as RestockSideEffects, RestockType$1 as RestockType, index_d$3_RuleType as RuleType, type index_d$3_SavedPaymentMethod as SavedPaymentMethod, type index_d$3_SearchOrdersOptions as SearchOrdersOptions, type index_d$3_SearchOrdersRequest as SearchOrdersRequest, type index_d$3_SearchOrdersResponse as SearchOrdersResponse, type index_d$3_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type index_d$3_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type index_d$3_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type index_d$3_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type index_d$3_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type index_d$3_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type index_d$3_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type index_d$3_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type index_d$3_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type index_d$3_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type index_d$3_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type index_d$3_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type index_d$3_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type index_d$3_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type index_d$3_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type index_d$3_SeoData as SeoData, type index_d$3_ServiceProperties as ServiceProperties, type index_d$3_ShippingAddressEdited as ShippingAddressEdited, type index_d$3_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type index_d$3_ShippingInformation as ShippingInformation, type index_d$3_ShippingPrice as ShippingPrice, type index_d$3_ShippingRefund as ShippingRefund, type index_d$3_ShippingRefundOption as ShippingRefundOption, type index_d$3_ShippingRegion as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, index_d$3_SortOrder as SortOrder, type index_d$3_Sorting as Sorting, type index_d$3_Source as Source, index_d$3_SourceType as SourceType, type index_d$3_StandardDetails as StandardDetails, index_d$3_State as State, type index_d$3_StreetAddress as StreetAddress, type index_d$3_Subdivision as Subdivision, index_d$3_SubdivisionType as SubdivisionType, SubscriptionFrequency$1 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type index_d$3_SystemError as SystemError, type index_d$3_TagList as TagList, type index_d$3_Tags as Tags, type index_d$3_Task as Task, type index_d$3_TaskAction as TaskAction, type index_d$3_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$3_TaskKey as TaskKey, type index_d$3_TaxSummary as TaxSummary, type index_d$3_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type index_d$3_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type index_d$3_TotalPrice as TotalPrice, type index_d$3_TotalPriceChange as TotalPriceChange, type index_d$3_TrackingLinkAdded as TrackingLinkAdded, type index_d$3_TrackingNumberAdded as TrackingNumberAdded, type index_d$3_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$1 as TransactionStatus, type index_d$3_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type index_d$3_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type index_d$3_TriggerReindexRequest as TriggerReindexRequest, type index_d$3_TriggerReindexResponse as TriggerReindexResponse, type index_d$3_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type index_d$3_UnArchiveOrderRequest as UnArchiveOrderRequest, type index_d$3_UnArchiveOrderResponse as UnArchiveOrderResponse, type index_d$3_UpdateActivityRequest as UpdateActivityRequest, type index_d$3_UpdateActivityResponse as UpdateActivityResponse, type index_d$3_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type index_d$3_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type index_d$3_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type index_d$3_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type index_d$3_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type index_d$3_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type index_d$3_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type index_d$3_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type index_d$3_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type index_d$3_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type index_d$3_UpdateOrder as UpdateOrder, type index_d$3_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type index_d$3_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type index_d$3_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type index_d$3_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type index_d$3_UpdateOrderRequest as UpdateOrderRequest, type index_d$3_UpdateOrderResponse as UpdateOrderResponse, type index_d$3_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$3_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type index_d$3_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type index_d$3_UserDataResponse as UserDataResponse, type index_d$3_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type index_d$3_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type index_d$3_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type index_d$3_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type index_d$3_V1LineItemDelta as V1LineItemDelta, type index_d$3_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type index_d$3_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$3_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$3_V1PaymentRefund as V1PaymentRefund, type index_d$3_V1RefundDetails as V1RefundDetails, type index_d$3_V1RefundSideEffects as V1RefundSideEffects, type index_d$3_V1RestockItem as V1RestockItem, type index_d$3_ValidationError as ValidationError, type index_d$3_Value as Value, index_d$3_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type index_d$3_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type index_d$3_VersionedDocumentId as VersionedDocumentId, type index_d$3_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, index_d$3_VersioningMode as VersioningMode, type index_d$3_VoidAuthorizedPaymentRequest as VoidAuthorizedPaymentRequest, type index_d$3_VoidAuthorizedPaymentResponse as VoidAuthorizedPaymentResponse, type index_d$3_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type index_d$3_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, WebhookIdentityType$2 as WebhookIdentityType, WeightUnit$1 as WeightUnit, __metadata$3 as __metadata, index_d$3_cancelOrder as cancelOrder, index_d$3_createOrder as createOrder, index_d$3_getOrder as getOrder, index_d$3_onOrderApproved as onOrderApproved, index_d$3_onOrderCanceled as onOrderCanceled, index_d$3_onOrderCreated as onOrderCreated, index_d$3_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, index_d$3_onOrderUpdated as onOrderUpdated, index_d$3_searchOrders as searchOrders, index_d$3_updateOrder as updateOrder };
|
|
32314
|
+
export { type ActionEvent$2 as ActionEvent, type Activity$1 as Activity, type index_d$3_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type index_d$3_AddActivitiesRequest as AddActivitiesRequest, type index_d$3_AddActivitiesResponse as AddActivitiesResponse, type index_d$3_AddActivityRequest as AddActivityRequest, type index_d$3_AddActivityResponse as AddActivityResponse, type index_d$3_AddInternalActivityRequest as AddInternalActivityRequest, type index_d$3_AddInternalActivityResponse as AddInternalActivityResponse, type index_d$3_AdditionalFee as AdditionalFee, type index_d$3_AdditionalFeeDelta as AdditionalFeeDelta, type index_d$3_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type index_d$3_AdditionalFeeRefund as AdditionalFeeRefund, type index_d$3_AdditionalFeeRefundOption as AdditionalFeeRefundOption, type Address$1 as Address, type index_d$3_AddressDescription as AddressDescription, type index_d$3_AddressLocation as AddressLocation, type index_d$3_AddressWithContact as AddressWithContact, type index_d$3_AggregateOrdersRequest as AggregateOrdersRequest, type index_d$3_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$1 as AggregatedRefundSummary, type index_d$3_App as App, type ApplicationError$1 as ApplicationError, type index_d$3_AppliedDiscount as AppliedDiscount, type index_d$3_AppliedDiscountDelta as AppliedDiscountDelta, type index_d$3_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type index_d$3_AppliedDiscountDiscountSourceOneOf as AppliedDiscountDiscountSourceOneOf, type index_d$3_ArchiveOrderRequest as ArchiveOrderRequest, type index_d$3_ArchiveOrderResponse as ArchiveOrderResponse, index_d$3_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$1 as AuthorizationActionFailureDetails, type AuthorizationCapture$1 as AuthorizationCapture, AuthorizationCaptureStatus$1 as AuthorizationCaptureStatus, type AuthorizationDetails$1 as AuthorizationDetails, type AuthorizationVoid$1 as AuthorizationVoid, AuthorizationVoidStatus$1 as AuthorizationVoidStatus, type index_d$3_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$3_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$3_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$3_Balance as Balance, type index_d$3_BalanceSummary as BalanceSummary, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$3_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$3_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$3_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$3_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$3_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$3_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$3_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$3_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$3_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$3_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$3_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$3_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$3_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$3_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$3_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$3_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$3_BulkOrderResult as BulkOrderResult, type index_d$3_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$3_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$3_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$3_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$3_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$3_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$3_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$3_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$3_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$3_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type index_d$3_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type index_d$3_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$3_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type BuyerInfo$1 as BuyerInfo, type index_d$3_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$3_BuyerInfoUpdate as BuyerInfoUpdate, type CalculateRefundItemRequest$1 as CalculateRefundItemRequest, type CalculateRefundItemResponse$1 as CalculateRefundItemResponse, type CalculateRefundRequest$1 as CalculateRefundRequest, type CalculateRefundResponse$1 as CalculateRefundResponse, type index_d$3_CalculateRefundV2Request as CalculateRefundV2Request, type index_d$3_CalculateRefundV2Response as CalculateRefundV2Response, type index_d$3_CalculateRefundV2ResponseStatusOneOf as CalculateRefundV2ResponseStatusOneOf, type index_d$3_CalculatedAdditionalFeeRefund as CalculatedAdditionalFeeRefund, type index_d$3_CalculatedLineItemRefund as CalculatedLineItemRefund, type index_d$3_CalculatedRefundDetails as CalculatedRefundDetails, type index_d$3_CalculatedRefundNotAvailableStatus as CalculatedRefundNotAvailableStatus, type index_d$3_CalculatedRefundSummary as CalculatedRefundSummary, type index_d$3_CalculatedShippingRefund as CalculatedShippingRefund, type index_d$3_CalculatedTax as CalculatedTax, type index_d$3_CalculatedTaxes as CalculatedTaxes, type index_d$3_CalculationError as CalculationError, type index_d$3_CalculationErrorItemOneOf as CalculationErrorItemOneOf, type index_d$3_Cancel as Cancel, type index_d$3_CancelOrderOptions as CancelOrderOptions, type index_d$3_CancelOrderRequest as CancelOrderRequest, type index_d$3_CancelOrderResponse as CancelOrderResponse, type index_d$3_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type index_d$3_CaptureAuthorizedPaymentRequest as CaptureAuthorizedPaymentRequest, type index_d$3_CaptureAuthorizedPaymentResponse as CaptureAuthorizedPaymentResponse, type index_d$3_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type index_d$3_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type index_d$3_CatalogReference as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type index_d$3_ChargeMembershipsRequest as ChargeMembershipsRequest, type index_d$3_ChargeMembershipsResponse as ChargeMembershipsResponse, type index_d$3_ChargedBy as ChargedBy, type index_d$3_Color as Color, type index_d$3_CommitDeltasRequest as CommitDeltasRequest, type index_d$3_CommitDeltasResponse as CommitDeltasResponse, type index_d$3_CommittedDiffs as CommittedDiffs, type index_d$3_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type index_d$3_CommonAddress as CommonAddress, type index_d$3_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$3_Company as Company, type index_d$3_Complete as Complete, type index_d$3_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type index_d$3_Coupon as Coupon, type index_d$3_CreateOrderRequest as CreateOrderRequest, type index_d$3_CreateOrderResponse as CreateOrderResponse, type index_d$3_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type index_d$3_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type index_d$3_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type index_d$3_CreatedBy as CreatedBy, type index_d$3_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$1 as CreditCardPaymentMethodDetails, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 as CursorSearchPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$3_CustomActivity as CustomActivity, type CustomField$1 as CustomField, index_d$3_CustomFieldGroup as CustomFieldGroup, type index_d$3_CustomFieldValue as CustomFieldValue, type index_d$3_Customer as Customer, type index_d$3_DecrementData as DecrementData, type index_d$3_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type index_d$3_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type index_d$3_DeleteActivityRequest as DeleteActivityRequest, type index_d$3_DeleteActivityResponse as DeleteActivityResponse, type index_d$3_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$3_DeleteByIdsOperation as DeleteByIdsOperation, type index_d$3_DeliveryLogistics as DeliveryLogistics, type index_d$3_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type index_d$3_DeliveryTimeSlot as DeliveryTimeSlot, index_d$3_DeltaPaymentOptionType as DeltaPaymentOptionType, type index_d$3_Deposit as Deposit, index_d$3_DepositType as DepositType, type index_d$3_DescriptionLine as DescriptionLine, type index_d$3_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$3_DescriptionLineName as DescriptionLineName, index_d$3_DescriptionLineType as DescriptionLineType, type index_d$3_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type index_d$3_Details as Details, type index_d$3_DetailsKindOneOf as DetailsKindOneOf, type DiffmatokyPayload$1 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type index_d$3_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, index_d$3_DiscountReason as DiscountReason, type index_d$3_DiscountRule as DiscountRule, type index_d$3_DiscountRuleName as DiscountRuleName, index_d$3_DiscountType as DiscountType, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$3_DownloadLinkSent as DownloadLinkSent, type index_d$3_DraftOrderChangesApplied as DraftOrderChangesApplied, type index_d$3_DraftOrderCommitSettings as DraftOrderCommitSettings, type index_d$3_DraftOrderDiffs as DraftOrderDiffs, type index_d$3_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type index_d$3_Email as Email, type index_d$3_EmailEdited as EmailEdited, type index_d$3_Empty as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type ErrorInformation$1 as ErrorInformation, type EventMetadata$2 as EventMetadata, type index_d$3_ExtendedFields as ExtendedFields, type index_d$3_ExternalUriMapping as ExternalUriMapping, type index_d$3_FieldViolation as FieldViolation, type index_d$3_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$3_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$3_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type index_d$3_FullAddressContactDetails as FullAddressContactDetails, type index_d$3_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$3_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$3_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$3_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$3_GetOrderRequest as GetOrderRequest, type index_d$3_GetOrderResponse as GetOrderResponse, type index_d$3_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$3_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$3_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type index_d$3_GetRefundOptionsRequest as GetRefundOptionsRequest, type index_d$3_GetRefundOptionsResponse as GetRefundOptionsResponse, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type index_d$3_GetShipmentsRequest as GetShipmentsRequest, type index_d$3_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$1 as GiftCardPaymentDetails, type index_d$3_HtmlApplication as HtmlApplication, type index_d$3_IdAndVersion as IdAndVersion, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type index_d$3_InternalActivity as InternalActivity, type index_d$3_InternalActivityContentOneOf as InternalActivityContentOneOf, type index_d$3_InternalDocument as InternalDocument, type index_d$3_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type index_d$3_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type index_d$3_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type index_d$3_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type index_d$3_InternalUpdateExistingOperation as InternalUpdateExistingOperation, index_d$3_InventoryAction as InventoryAction, type index_d$3_InventoryUpdateDetails as InventoryUpdateDetails, type index_d$3_InvoiceAdded as InvoiceAdded, type index_d$3_InvoiceDates as InvoiceDates, type index_d$3_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type index_d$3_InvoiceFields as InvoiceFields, type index_d$3_InvoiceSent as InvoiceSent, type index_d$3_InvoiceSentEvent as InvoiceSentEvent, index_d$3_InvoiceStatus as InvoiceStatus, type index_d$3_InvoicesPayment as InvoicesPayment, type index_d$3_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type index_d$3_ItemTaxFullDetails as ItemTaxFullDetails, type index_d$3_ItemType as ItemType, index_d$3_ItemTypeItemType as ItemTypeItemType, type index_d$3_ItemTypeItemTypeDataOneOf as ItemTypeItemTypeDataOneOf, type index_d$3_ItemizedFee as ItemizedFee, index_d$3_JurisdictionType as JurisdictionType, type LineItem$1 as LineItem, type index_d$3_LineItemAmount as LineItemAmount, type index_d$3_LineItemChanges as LineItemChanges, type index_d$3_LineItemDelta as LineItemDelta, type index_d$3_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type index_d$3_LineItemDiscount as LineItemDiscount, type index_d$3_LineItemExchangeData as LineItemExchangeData, type index_d$3_LineItemMetaData as LineItemMetaData, type index_d$3_LineItemPriceChange as LineItemPriceChange, type index_d$3_LineItemQuantityChange as LineItemQuantityChange, index_d$3_LineItemQuantityChangeType as LineItemQuantityChangeType, type index_d$3_LineItemRefund as LineItemRefund, type index_d$3_LineItemRefundOption as LineItemRefundOption, type index_d$3_LineItemTax as LineItemTax, type index_d$3_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$3_LineItemTaxInfo as LineItemTaxInfo, type index_d$3_LineItemUpdate as LineItemUpdate, type index_d$3_LineItems as LineItems, type index_d$3_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type index_d$3_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type index_d$3_Locale as Locale, type index_d$3_LocationAndQuantity as LocationAndQuantity, type index_d$3_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$3_ManagedDiscount as ManagedDiscount, type index_d$3_ManagedLineItem as ManagedLineItem, type index_d$3_ManuallyRefundablePaymentStatus as ManuallyRefundablePaymentStatus, ManuallyRefundableReason$1 as ManuallyRefundableReason, type index_d$3_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type index_d$3_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type index_d$3_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type index_d$3_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type index_d$3_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type index_d$3_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type index_d$3_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type index_d$3_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type index_d$3_MaskedOrder as MaskedOrder, type index_d$3_MaskedOrderLineItem as MaskedOrderLineItem, type index_d$3_MembershipChargeItem as MembershipChargeItem, type MembershipName$1 as MembershipName, type MembershipPaymentDetails$1 as MembershipPaymentDetails, MembershipPaymentStatus$1 as MembershipPaymentStatus, type index_d$3_MembershipPaymentSummary as MembershipPaymentSummary, type index_d$3_MerchantComment as MerchantComment, type index_d$3_MerchantDiscount as MerchantDiscount, type index_d$3_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$2 as MessageEnvelope, type index_d$3_MetaData as MetaData, type index_d$3_MetaSite as MetaSite, type index_d$3_MetaTag as MetaTag, type index_d$3_MonetaryPaymentSummary as MonetaryPaymentSummary, index_d$3_Namespace as Namespace, type index_d$3_NewExchangeOrderCreated as NewExchangeOrderCreated, type index_d$3_NonRefundablePaymentStatus as NonRefundablePaymentStatus, NonRefundableReason$1 as NonRefundableReason, type index_d$3_NotificationSideEffects as NotificationSideEffects, type Order$1 as Order, index_d$3_OrderApprovalStrategy as OrderApprovalStrategy, type index_d$3_OrderApproved as OrderApproved, type index_d$3_OrderApprovedEnvelope as OrderApprovedEnvelope, type index_d$3_OrderCanceled as OrderCanceled, type index_d$3_OrderCanceledEnvelope as OrderCanceledEnvelope, type index_d$3_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type index_d$3_OrderChange as OrderChange, type index_d$3_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$3_OrderCreatedEnvelope as OrderCreatedEnvelope, type index_d$3_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$3_OrderCreationSettings as OrderCreationSettings, type index_d$3_OrderDeltasCommitted as OrderDeltasCommitted, type index_d$3_OrderFulfilled as OrderFulfilled, type index_d$3_OrderItemsRestocked as OrderItemsRestocked, type index_d$3_OrderLineItem as OrderLineItem, type index_d$3_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type index_d$3_OrderNotFulfilled as OrderNotFulfilled, type index_d$3_OrderPaid as OrderPaid, type index_d$3_OrderPartiallyPaid as OrderPartiallyPaid, type index_d$3_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type index_d$3_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, index_d$3_OrderStatus as OrderStatus, type index_d$3_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$3_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$1 as OrderTransactions, type index_d$3_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type index_d$3_OrdersExperiments as OrdersExperiments, type index_d$3_OrdersV1RestockItem as OrdersV1RestockItem, type Payment$1 as Payment, type index_d$3_PaymentCapture as PaymentCapture, index_d$3_PaymentCollectabilityStatus as PaymentCollectabilityStatus, type index_d$3_PaymentInfo as PaymentInfo, type index_d$3_PaymentInfoPaymentMethodDetailsOneOf as PaymentInfoPaymentMethodDetailsOneOf, type index_d$3_PaymentInfoSummaryOneOf as PaymentInfoSummaryOneOf, index_d$3_PaymentOptionType as PaymentOptionType, type PaymentPaymentDetailsOneOf$1 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$3_PaymentRefundOption as PaymentRefundOption, type index_d$3_PaymentRefundOptionStatusOneOf as PaymentRefundOptionStatusOneOf, PaymentStatus$1 as PaymentStatus, type index_d$3_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$3_Payments as Payments, type index_d$3_PaymentsSummary as PaymentsSummary, type index_d$3_Phone as Phone, type index_d$3_PhysicalProperties as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$1 as PickupDetails, index_d$3_PickupMethod as PickupMethod, type index_d$3_PickupReadyEmailSent as PickupReadyEmailSent, index_d$3_Placement as Placement, type index_d$3_PlainTextValue as PlainTextValue, type index_d$3_PlatformPaging as PlatformPaging, type index_d$3_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$3_PlatformQuery as PlatformQuery, type index_d$3_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d$3_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$3_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type index_d$3_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type index_d$3_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type index_d$3_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type index_d$3_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type index_d$3_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type index_d$3_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type index_d$3_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type index_d$3_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type index_d$3_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type index_d$3_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type index_d$3_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type index_d$3_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, index_d$3_PreviewEmailType as PreviewEmailType, type index_d$3_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type index_d$3_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type index_d$3_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type index_d$3_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type index_d$3_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type index_d$3_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$1 as Price, type index_d$3_PriceDescription as PriceDescription, type index_d$3_PriceSummary as PriceSummary, type index_d$3_ProductName as ProductName, type index_d$3_PublicActivity as PublicActivity, type index_d$3_PublicActivityContentOneOf as PublicActivityContentOneOf, type index_d$3_QueryOrderRequest as QueryOrderRequest, type index_d$3_QueryOrderResponse as QueryOrderResponse, type index_d$3_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type index_d$3_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type index_d$3_QuotesAddress as QuotesAddress, type index_d$3_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type index_d$3_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type index_d$3_RedirectUrls as RedirectUrls, type Refund$1 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$1 as RefundDetails, type RefundItem$1 as RefundItem, type index_d$3_RefundRequest as RefundRequest, type index_d$3_RefundResponse as RefundResponse, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$1 as RefundStatus, type RefundTransaction$1 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, index_d$3_RefundabilityManuallyRefundableReason as RefundabilityManuallyRefundableReason, index_d$3_RefundabilityNonRefundableReason as RefundabilityNonRefundableReason, RefundableStatus$1 as RefundableStatus, type RegularPaymentDetails$1 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$3_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, type index_d$3_RestockSideEffects as RestockSideEffects, RestockType$1 as RestockType, index_d$3_RuleType as RuleType, type index_d$3_SavedPaymentMethod as SavedPaymentMethod, type index_d$3_SearchOrdersOptions as SearchOrdersOptions, type index_d$3_SearchOrdersRequest as SearchOrdersRequest, type index_d$3_SearchOrdersResponse as SearchOrdersResponse, type index_d$3_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type index_d$3_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type index_d$3_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type index_d$3_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type index_d$3_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type index_d$3_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type index_d$3_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type index_d$3_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type index_d$3_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type index_d$3_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type index_d$3_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type index_d$3_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type index_d$3_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type index_d$3_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type index_d$3_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type index_d$3_SeoData as SeoData, type index_d$3_ServiceProperties as ServiceProperties, type index_d$3_ShippingAddressEdited as ShippingAddressEdited, type index_d$3_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type index_d$3_ShippingInformation as ShippingInformation, type index_d$3_ShippingPrice as ShippingPrice, type index_d$3_ShippingRefund as ShippingRefund, type index_d$3_ShippingRefundOption as ShippingRefundOption, type index_d$3_ShippingRegion as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type index_d$3_Source as Source, index_d$3_SourceType as SourceType, type index_d$3_StandardDetails as StandardDetails, index_d$3_State as State, type index_d$3_StreetAddress as StreetAddress, type index_d$3_Subdivision as Subdivision, index_d$3_SubdivisionType as SubdivisionType, SubscriptionFrequency$1 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type index_d$3_SystemError as SystemError, type index_d$3_TagList as TagList, type index_d$3_Tags as Tags, type index_d$3_Task as Task, type index_d$3_TaskAction as TaskAction, type index_d$3_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$3_TaskKey as TaskKey, type index_d$3_TaxSummary as TaxSummary, type index_d$3_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type index_d$3_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type index_d$3_TotalPrice as TotalPrice, type index_d$3_TotalPriceChange as TotalPriceChange, type index_d$3_TrackingLinkAdded as TrackingLinkAdded, type index_d$3_TrackingNumberAdded as TrackingNumberAdded, type index_d$3_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$1 as TransactionStatus, type index_d$3_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type index_d$3_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type index_d$3_TriggerReindexRequest as TriggerReindexRequest, type index_d$3_TriggerReindexResponse as TriggerReindexResponse, type index_d$3_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type index_d$3_UnArchiveOrderRequest as UnArchiveOrderRequest, type index_d$3_UnArchiveOrderResponse as UnArchiveOrderResponse, type index_d$3_UpdateActivityRequest as UpdateActivityRequest, type index_d$3_UpdateActivityResponse as UpdateActivityResponse, type index_d$3_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type index_d$3_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type index_d$3_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type index_d$3_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type index_d$3_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type index_d$3_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type index_d$3_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type index_d$3_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type index_d$3_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type index_d$3_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type index_d$3_UpdateOrder as UpdateOrder, type index_d$3_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type index_d$3_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type index_d$3_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type index_d$3_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type index_d$3_UpdateOrderRequest as UpdateOrderRequest, type index_d$3_UpdateOrderResponse as UpdateOrderResponse, type index_d$3_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$3_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type index_d$3_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type index_d$3_UserDataResponse as UserDataResponse, type index_d$3_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type index_d$3_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type index_d$3_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type index_d$3_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type index_d$3_V1LineItemDelta as V1LineItemDelta, type index_d$3_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type index_d$3_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$3_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$3_V1PaymentRefund as V1PaymentRefund, type index_d$3_V1RefundDetails as V1RefundDetails, type index_d$3_V1RefundSideEffects as V1RefundSideEffects, type index_d$3_V1RestockItem as V1RestockItem, type index_d$3_ValidationError as ValidationError, type index_d$3_Value as Value, index_d$3_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type index_d$3_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type index_d$3_VersionedDocumentId as VersionedDocumentId, type index_d$3_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, index_d$3_VersioningMode as VersioningMode, type index_d$3_VoidAuthorizedPaymentRequest as VoidAuthorizedPaymentRequest, type index_d$3_VoidAuthorizedPaymentResponse as VoidAuthorizedPaymentResponse, type index_d$3_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type index_d$3_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, WebhookIdentityType$2 as WebhookIdentityType, WeightUnit$1 as WeightUnit, __metadata$3 as __metadata, index_d$3_cancelOrder as cancelOrder, index_d$3_createOrder as createOrder, index_d$3_getOrder as getOrder, index_d$3_onOrderApproved as onOrderApproved, index_d$3_onOrderCanceled as onOrderCanceled, index_d$3_onOrderCreated as onOrderCreated, index_d$3_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, index_d$3_onOrderUpdated as onOrderUpdated, index_d$3_searchOrders as searchOrders, index_d$3_updateOrder as updateOrder };
|
|
32324
32315
|
}
|
|
32325
32316
|
|
|
32326
32317
|
interface OrderTransactions {
|
|
@@ -32528,6 +32519,8 @@ interface RefundItem {
|
|
|
32528
32519
|
/** Line item quantity refunded. */
|
|
32529
32520
|
quantity?: number;
|
|
32530
32521
|
}
|
|
32522
|
+
interface AggregatedRefundSummary {
|
|
32523
|
+
}
|
|
32531
32524
|
interface SnapshotMessage {
|
|
32532
32525
|
_id?: string;
|
|
32533
32526
|
opType?: number;
|
|
@@ -33484,6 +33477,73 @@ interface BulkActionMetadata {
|
|
|
33484
33477
|
/** Number of failures without details because detailed failure threshold was exceeded. */
|
|
33485
33478
|
undetailedFailures?: number;
|
|
33486
33479
|
}
|
|
33480
|
+
interface UpdateRefundTransactionRequest {
|
|
33481
|
+
}
|
|
33482
|
+
interface UpdateRefundTransactionResponse {
|
|
33483
|
+
}
|
|
33484
|
+
interface SearchOrderTransactionsRequest {
|
|
33485
|
+
}
|
|
33486
|
+
interface CursorSearch extends CursorSearchPagingMethodOneOf {
|
|
33487
|
+
/**
|
|
33488
|
+
* Cursor pointing to page of results.
|
|
33489
|
+
* When requesting 'cursor_paging.cursor', no `filter`, `sort` or `search` can be provided.
|
|
33490
|
+
*/
|
|
33491
|
+
cursorPaging?: CursorPaging;
|
|
33492
|
+
/** A filter object. See documentation [here](https://bo.wix.com/wix-docs/rnd/platformization-guidelines/api-query-language#platformization-guidelines_api-query-language_defining-in-protobuf) */
|
|
33493
|
+
filter?: Record<string, any> | null;
|
|
33494
|
+
/** Sort object in the form [{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}] */
|
|
33495
|
+
sort?: Sorting[];
|
|
33496
|
+
}
|
|
33497
|
+
/** @oneof */
|
|
33498
|
+
interface CursorSearchPagingMethodOneOf {
|
|
33499
|
+
/**
|
|
33500
|
+
* Cursor pointing to page of results.
|
|
33501
|
+
* When requesting 'cursor_paging.cursor', no `filter`, `sort` or `search` can be provided.
|
|
33502
|
+
*/
|
|
33503
|
+
cursorPaging?: CursorPaging;
|
|
33504
|
+
}
|
|
33505
|
+
interface Sorting {
|
|
33506
|
+
/** Name of the field to sort by. */
|
|
33507
|
+
fieldName?: string;
|
|
33508
|
+
/** Sort order. */
|
|
33509
|
+
order?: SortOrder;
|
|
33510
|
+
}
|
|
33511
|
+
declare enum SortOrder {
|
|
33512
|
+
ASC = "ASC",
|
|
33513
|
+
DESC = "DESC"
|
|
33514
|
+
}
|
|
33515
|
+
interface CursorPaging {
|
|
33516
|
+
/** Maximum number of items to return in the results. */
|
|
33517
|
+
limit?: number | null;
|
|
33518
|
+
/**
|
|
33519
|
+
* Pointer to the next or previous page in the list of results.
|
|
33520
|
+
*
|
|
33521
|
+
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
33522
|
+
* Not relevant for the first request.
|
|
33523
|
+
*/
|
|
33524
|
+
cursor?: string | null;
|
|
33525
|
+
}
|
|
33526
|
+
interface SearchOrderTransactionsResponse {
|
|
33527
|
+
}
|
|
33528
|
+
interface CursorPagingMetadata {
|
|
33529
|
+
/** Number of items returned in the response. */
|
|
33530
|
+
count?: number | null;
|
|
33531
|
+
/** Cursor strings that point to the next page, previous page, or both. */
|
|
33532
|
+
cursors?: Cursors;
|
|
33533
|
+
/**
|
|
33534
|
+
* Whether there are more pages to retrieve following the current page.
|
|
33535
|
+
*
|
|
33536
|
+
* + `true`: Another page of results can be retrieved.
|
|
33537
|
+
* + `false`: This is the last page.
|
|
33538
|
+
*/
|
|
33539
|
+
hasNext?: boolean | null;
|
|
33540
|
+
}
|
|
33541
|
+
interface Cursors {
|
|
33542
|
+
/** Cursor string pointing to the next page in the list of results. */
|
|
33543
|
+
next?: string | null;
|
|
33544
|
+
/** Cursor pointing to the previous page in the list of results. */
|
|
33545
|
+
prev?: string | null;
|
|
33546
|
+
}
|
|
33487
33547
|
interface TriggerRefundRequest {
|
|
33488
33548
|
/** The order this refund related to */
|
|
33489
33549
|
orderId?: string;
|
|
@@ -33504,7 +33564,7 @@ interface TriggerRefundRequest {
|
|
|
33504
33564
|
interface PaymentRefund {
|
|
33505
33565
|
/** Specific payment within the order to refund */
|
|
33506
33566
|
paymentId?: string;
|
|
33507
|
-
/** Refund amount. Not relevant for membership refunds. */
|
|
33567
|
+
/** Refund amount. Not relevant for membership and gift card refunds. */
|
|
33508
33568
|
amount?: Price;
|
|
33509
33569
|
/**
|
|
33510
33570
|
* Whether refund is made externally and manually (on the payment provider's side)
|
|
@@ -34078,6 +34138,7 @@ type index_d$2_AddRefundRequest = AddRefundRequest;
|
|
|
34078
34138
|
type index_d$2_AddRefundResponse = AddRefundResponse;
|
|
34079
34139
|
type index_d$2_Address = Address;
|
|
34080
34140
|
type index_d$2_AddressAddressLine1OptionsOneOf = AddressAddressLine1OptionsOneOf;
|
|
34141
|
+
type index_d$2_AggregatedRefundSummary = AggregatedRefundSummary;
|
|
34081
34142
|
type index_d$2_ApplicationError = ApplicationError;
|
|
34082
34143
|
type index_d$2_AppliedCoupon = AppliedCoupon;
|
|
34083
34144
|
type index_d$2_AuthorizationActionFailureDetails = AuthorizationActionFailureDetails;
|
|
@@ -34108,6 +34169,11 @@ type index_d$2_ChannelInfo = ChannelInfo;
|
|
|
34108
34169
|
type index_d$2_ChannelType = ChannelType;
|
|
34109
34170
|
declare const index_d$2_ChannelType: typeof ChannelType;
|
|
34110
34171
|
type index_d$2_CreditCardPaymentMethodDetails = CreditCardPaymentMethodDetails;
|
|
34172
|
+
type index_d$2_CursorPaging = CursorPaging;
|
|
34173
|
+
type index_d$2_CursorPagingMetadata = CursorPagingMetadata;
|
|
34174
|
+
type index_d$2_CursorSearch = CursorSearch;
|
|
34175
|
+
type index_d$2_CursorSearchPagingMethodOneOf = CursorSearchPagingMethodOneOf;
|
|
34176
|
+
type index_d$2_Cursors = Cursors;
|
|
34111
34177
|
type index_d$2_CustomField = CustomField;
|
|
34112
34178
|
type index_d$2_CustomTextFieldSelection = CustomTextFieldSelection;
|
|
34113
34179
|
type index_d$2_DiffmatokyPayload = DiffmatokyPayload;
|
|
@@ -34196,11 +34262,16 @@ type index_d$2_RestockInfo = RestockInfo;
|
|
|
34196
34262
|
type index_d$2_RestockItem = RestockItem;
|
|
34197
34263
|
type index_d$2_RestockType = RestockType;
|
|
34198
34264
|
declare const index_d$2_RestockType: typeof RestockType;
|
|
34265
|
+
type index_d$2_SearchOrderTransactionsRequest = SearchOrderTransactionsRequest;
|
|
34266
|
+
type index_d$2_SearchOrderTransactionsResponse = SearchOrderTransactionsResponse;
|
|
34199
34267
|
type index_d$2_ShipmentDetails = ShipmentDetails;
|
|
34200
34268
|
type index_d$2_ShippingInfo = ShippingInfo;
|
|
34201
34269
|
type index_d$2_ShippingInfoDetailsOneOf = ShippingInfoDetailsOneOf;
|
|
34202
34270
|
type index_d$2_ShippingPriceData = ShippingPriceData;
|
|
34203
34271
|
type index_d$2_SnapshotMessage = SnapshotMessage;
|
|
34272
|
+
type index_d$2_SortOrder = SortOrder;
|
|
34273
|
+
declare const index_d$2_SortOrder: typeof SortOrder;
|
|
34274
|
+
type index_d$2_Sorting = Sorting;
|
|
34204
34275
|
type index_d$2_Street = Street;
|
|
34205
34276
|
type index_d$2_SubscriptionFrequency = SubscriptionFrequency;
|
|
34206
34277
|
declare const index_d$2_SubscriptionFrequency: typeof SubscriptionFrequency;
|
|
@@ -34218,6 +34289,8 @@ type index_d$2_UpdatePaymentStatusOptions = UpdatePaymentStatusOptions;
|
|
|
34218
34289
|
type index_d$2_UpdatePaymentStatusRequest = UpdatePaymentStatusRequest;
|
|
34219
34290
|
type index_d$2_UpdatePaymentStatusResponse = UpdatePaymentStatusResponse;
|
|
34220
34291
|
type index_d$2_UpdatePaymentStatusResponseNonNullableFields = UpdatePaymentStatusResponseNonNullableFields;
|
|
34292
|
+
type index_d$2_UpdateRefundTransactionRequest = UpdateRefundTransactionRequest;
|
|
34293
|
+
type index_d$2_UpdateRefundTransactionResponse = UpdateRefundTransactionResponse;
|
|
34221
34294
|
type index_d$2_V2InvoiceInfo = V2InvoiceInfo;
|
|
34222
34295
|
type index_d$2_V2Refund = V2Refund;
|
|
34223
34296
|
type index_d$2_VatId = VatId;
|
|
@@ -34232,7 +34305,7 @@ declare const index_d$2_listTransactionsForSingleOrder: typeof listTransactionsF
|
|
|
34232
34305
|
declare const index_d$2_onOrderTransactionsUpdated: typeof onOrderTransactionsUpdated;
|
|
34233
34306
|
declare const index_d$2_updatePaymentStatus: typeof updatePaymentStatus;
|
|
34234
34307
|
declare namespace index_d$2 {
|
|
34235
|
-
export { type ActionEvent$1 as ActionEvent, type index_d$2_Activity as Activity, index_d$2_ActivityType as ActivityType, type index_d$2_AddInvoiceToOrderRequest as AddInvoiceToOrderRequest, type index_d$2_AddInvoiceToOrderResponse as AddInvoiceToOrderResponse, type index_d$2_AddPaymentsRequest as AddPaymentsRequest, type index_d$2_AddPaymentsResponse as AddPaymentsResponse, type index_d$2_AddPaymentsResponseNonNullableFields as AddPaymentsResponseNonNullableFields, type index_d$2_AddRefundRequest as AddRefundRequest, type index_d$2_AddRefundResponse as AddRefundResponse, type index_d$2_Address as Address, type index_d$2_AddressAddressLine1OptionsOneOf as AddressAddressLine1OptionsOneOf, type index_d$2_ApplicationError as ApplicationError, type index_d$2_AppliedCoupon as AppliedCoupon, type index_d$2_AuthorizationActionFailureDetails as AuthorizationActionFailureDetails, type index_d$2_AuthorizationCapture as AuthorizationCapture, index_d$2_AuthorizationCaptureStatus as AuthorizationCaptureStatus, type index_d$2_AuthorizationDetails as AuthorizationDetails, type index_d$2_AuthorizationVoid as AuthorizationVoid, index_d$2_AuthorizationVoidStatus as AuthorizationVoidStatus, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$2_BillingInfo as BillingInfo, type index_d$2_BulkActionMetadata as BulkActionMetadata, type index_d$2_BulkGenerateInvoicesRequest as BulkGenerateInvoicesRequest, type index_d$2_BulkGenerateInvoicesResponse as BulkGenerateInvoicesResponse, type index_d$2_BulkInvoiceResult as BulkInvoiceResult, type index_d$2_BulkPaymentResult as BulkPaymentResult, type index_d$2_BulkUpdatePaymentStatusesOptions as BulkUpdatePaymentStatusesOptions, type index_d$2_BulkUpdatePaymentStatusesRequest as BulkUpdatePaymentStatusesRequest, type index_d$2_BulkUpdatePaymentStatusesResponse as BulkUpdatePaymentStatusesResponse, type index_d$2_BulkUpdatePaymentStatusesResponseNonNullableFields as BulkUpdatePaymentStatusesResponseNonNullableFields, type index_d$2_BuyerDetails as BuyerDetails, type index_d$2_BuyerInfo as BuyerInfo, type index_d$2_CalculateRefundItemRequest as CalculateRefundItemRequest, type index_d$2_CalculateRefundItemResponse as CalculateRefundItemResponse, type index_d$2_CalculateRefundRequest as CalculateRefundRequest, type index_d$2_CalculateRefundResponse as CalculateRefundResponse, type index_d$2_ChannelInfo as ChannelInfo, index_d$2_ChannelType as ChannelType, type index_d$2_CreditCardPaymentMethodDetails as CreditCardPaymentMethodDetails, type index_d$2_CustomField as CustomField, type index_d$2_CustomTextFieldSelection as CustomTextFieldSelection, type index_d$2_DiffmatokyPayload as DiffmatokyPayload, type index_d$2_DigitalFile as DigitalFile, type index_d$2_Discount as Discount, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$2_EnteredBy as EnteredBy, index_d$2_EnteredByIdentityType as EnteredByIdentityType, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type index_d$2_ErrorInformation as ErrorInformation, type EventMetadata$1 as EventMetadata, type index_d$2_Fulfillment as Fulfillment, type index_d$2_FulfillmentLineItem as FulfillmentLineItem, index_d$2_FulfillmentStatus as FulfillmentStatus, type index_d$2_FulfillmentTrackingInfo as FulfillmentTrackingInfo, type index_d$2_FullName as FullName, type index_d$2_GenerateInvoiceRequest as GenerateInvoiceRequest, type index_d$2_GenerateInvoiceResponse as GenerateInvoiceResponse, type index_d$2_GetRefundabilityStatusRequest as GetRefundabilityStatusRequest, type index_d$2_GetRefundabilityStatusResponse as GetRefundabilityStatusResponse, type index_d$2_GiftCard as GiftCard, type index_d$2_GiftCardPaymentDetails as GiftCardPaymentDetails, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, index_d$2_IdentityType as IdentityType, type index_d$2_IndexingMessage as IndexingMessage, type index_d$2_InvoiceForOrder as InvoiceForOrder, type index_d$2_InvoiceInfo as InvoiceInfo, index_d$2_InvoiceSource as InvoiceSource, type index_d$2_InvoicesForOrder as InvoicesForOrder, type index_d$2_ItemMetadata as ItemMetadata, type index_d$2_LineItem as LineItem, type index_d$2_LineItemPriceData as LineItemPriceData, index_d$2_LineItemType as LineItemType, type index_d$2_ListInvoicesForMultipleOrdersRequest as ListInvoicesForMultipleOrdersRequest, type index_d$2_ListInvoicesForMultipleOrdersResponse as ListInvoicesForMultipleOrdersResponse, type index_d$2_ListInvoicesForSingleOrderRequest as ListInvoicesForSingleOrderRequest, type index_d$2_ListInvoicesForSingleOrderResponse as ListInvoicesForSingleOrderResponse, type index_d$2_ListTransactionsForMultipleOrdersRequest as ListTransactionsForMultipleOrdersRequest, type index_d$2_ListTransactionsForMultipleOrdersResponse as ListTransactionsForMultipleOrdersResponse, type index_d$2_ListTransactionsForMultipleOrdersResponseNonNullableFields as ListTransactionsForMultipleOrdersResponseNonNullableFields, type index_d$2_ListTransactionsForSingleOrderRequest as ListTransactionsForSingleOrderRequest, type index_d$2_ListTransactionsForSingleOrderResponse as ListTransactionsForSingleOrderResponse, type index_d$2_ListTransactionsForSingleOrderResponseNonNullableFields as ListTransactionsForSingleOrderResponseNonNullableFields, index_d$2_ManuallyRefundableReason as ManuallyRefundableReason, type index_d$2_MediaItem as MediaItem, index_d$2_MediaItemType as MediaItemType, type index_d$2_MembershipName as MembershipName, type index_d$2_MembershipPaymentDetails as MembershipPaymentDetails, index_d$2_MembershipPaymentStatus as MembershipPaymentStatus, type MessageEnvelope$1 as MessageEnvelope, index_d$2_NonRefundableReason as NonRefundableReason, type index_d$2_OptionSelection as OptionSelection, type index_d$2_Order as Order, type index_d$2_OrderRefunded as OrderRefunded, type index_d$2_OrderTransactions as OrderTransactions, type index_d$2_OrderTransactionsUpdatedEnvelope as OrderTransactionsUpdatedEnvelope, type index_d$2_Payment as Payment, type index_d$2_PaymentAndOrderId as PaymentAndOrderId, type index_d$2_PaymentPaymentDetailsOneOf as PaymentPaymentDetailsOneOf, type index_d$2_PaymentRefund as PaymentRefund, index_d$2_PaymentStatus as PaymentStatus, type index_d$2_PaymentsUpdated as PaymentsUpdated, type index_d$2_PickupAddress as PickupAddress, type index_d$2_PickupDetails as PickupDetails, type index_d$2_Price as Price, type index_d$2_Refund as Refund, type index_d$2_RefundCreated as RefundCreated, type index_d$2_RefundDetails as RefundDetails, type index_d$2_RefundItem as RefundItem, type index_d$2_RefundSideEffects as RefundSideEffects, index_d$2_RefundStatus as RefundStatus, type index_d$2_RefundTransaction as RefundTransaction, type index_d$2_Refundability as Refundability, type index_d$2_RefundabilityAdditionalRefundabilityInfoOneOf as RefundabilityAdditionalRefundabilityInfoOneOf, index_d$2_RefundableStatus as RefundableStatus, type index_d$2_RegularPaymentDetails as RegularPaymentDetails, type index_d$2_RegularPaymentDetailsPaymentMethodDetailsOneOf as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$2_RestockInfo as RestockInfo, type index_d$2_RestockItem as RestockItem, index_d$2_RestockType as RestockType, type index_d$2_ShipmentDetails as ShipmentDetails, type index_d$2_ShippingInfo as ShippingInfo, type index_d$2_ShippingInfoDetailsOneOf as ShippingInfoDetailsOneOf, type index_d$2_ShippingPriceData as ShippingPriceData, type index_d$2_SnapshotMessage as SnapshotMessage, type index_d$2_Street as Street, index_d$2_SubscriptionFrequency as SubscriptionFrequency, type index_d$2_SubscriptionInfo as SubscriptionInfo, type index_d$2_SubscriptionOptionInfo as SubscriptionOptionInfo, type index_d$2_SubscriptionSettings as SubscriptionSettings, type index_d$2_Totals as Totals, type index_d$2_TrackingInfo as TrackingInfo, index_d$2_TransactionStatus as TransactionStatus, type index_d$2_TriggerRefundRequest as TriggerRefundRequest, type index_d$2_TriggerRefundResponse as TriggerRefundResponse, type index_d$2_UpdatePaymentStatusIdentifiers as UpdatePaymentStatusIdentifiers, type index_d$2_UpdatePaymentStatusOptions as UpdatePaymentStatusOptions, type index_d$2_UpdatePaymentStatusRequest as UpdatePaymentStatusRequest, type index_d$2_UpdatePaymentStatusResponse as UpdatePaymentStatusResponse, type index_d$2_UpdatePaymentStatusResponseNonNullableFields as UpdatePaymentStatusResponseNonNullableFields, type index_d$2_V2InvoiceInfo as V2InvoiceInfo, type index_d$2_V2Refund as V2Refund, type index_d$2_VatId as VatId, index_d$2_VatType as VatType, WebhookIdentityType$1 as WebhookIdentityType, index_d$2_WeightUnit as WeightUnit, __metadata$2 as __metadata, index_d$2_addPayments as addPayments, index_d$2_bulkUpdatePaymentStatuses as bulkUpdatePaymentStatuses, index_d$2_listTransactionsForMultipleOrders as listTransactionsForMultipleOrders, index_d$2_listTransactionsForSingleOrder as listTransactionsForSingleOrder, index_d$2_onOrderTransactionsUpdated as onOrderTransactionsUpdated, index_d$2_updatePaymentStatus as updatePaymentStatus };
|
|
34308
|
+
export { type ActionEvent$1 as ActionEvent, type index_d$2_Activity as Activity, index_d$2_ActivityType as ActivityType, type index_d$2_AddInvoiceToOrderRequest as AddInvoiceToOrderRequest, type index_d$2_AddInvoiceToOrderResponse as AddInvoiceToOrderResponse, type index_d$2_AddPaymentsRequest as AddPaymentsRequest, type index_d$2_AddPaymentsResponse as AddPaymentsResponse, type index_d$2_AddPaymentsResponseNonNullableFields as AddPaymentsResponseNonNullableFields, type index_d$2_AddRefundRequest as AddRefundRequest, type index_d$2_AddRefundResponse as AddRefundResponse, type index_d$2_Address as Address, type index_d$2_AddressAddressLine1OptionsOneOf as AddressAddressLine1OptionsOneOf, type index_d$2_AggregatedRefundSummary as AggregatedRefundSummary, type index_d$2_ApplicationError as ApplicationError, type index_d$2_AppliedCoupon as AppliedCoupon, type index_d$2_AuthorizationActionFailureDetails as AuthorizationActionFailureDetails, type index_d$2_AuthorizationCapture as AuthorizationCapture, index_d$2_AuthorizationCaptureStatus as AuthorizationCaptureStatus, type index_d$2_AuthorizationDetails as AuthorizationDetails, type index_d$2_AuthorizationVoid as AuthorizationVoid, index_d$2_AuthorizationVoidStatus as AuthorizationVoidStatus, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$2_BillingInfo as BillingInfo, type index_d$2_BulkActionMetadata as BulkActionMetadata, type index_d$2_BulkGenerateInvoicesRequest as BulkGenerateInvoicesRequest, type index_d$2_BulkGenerateInvoicesResponse as BulkGenerateInvoicesResponse, type index_d$2_BulkInvoiceResult as BulkInvoiceResult, type index_d$2_BulkPaymentResult as BulkPaymentResult, type index_d$2_BulkUpdatePaymentStatusesOptions as BulkUpdatePaymentStatusesOptions, type index_d$2_BulkUpdatePaymentStatusesRequest as BulkUpdatePaymentStatusesRequest, type index_d$2_BulkUpdatePaymentStatusesResponse as BulkUpdatePaymentStatusesResponse, type index_d$2_BulkUpdatePaymentStatusesResponseNonNullableFields as BulkUpdatePaymentStatusesResponseNonNullableFields, type index_d$2_BuyerDetails as BuyerDetails, type index_d$2_BuyerInfo as BuyerInfo, type index_d$2_CalculateRefundItemRequest as CalculateRefundItemRequest, type index_d$2_CalculateRefundItemResponse as CalculateRefundItemResponse, type index_d$2_CalculateRefundRequest as CalculateRefundRequest, type index_d$2_CalculateRefundResponse as CalculateRefundResponse, type index_d$2_ChannelInfo as ChannelInfo, index_d$2_ChannelType as ChannelType, type index_d$2_CreditCardPaymentMethodDetails as CreditCardPaymentMethodDetails, type index_d$2_CursorPaging as CursorPaging, type index_d$2_CursorPagingMetadata as CursorPagingMetadata, type index_d$2_CursorSearch as CursorSearch, type index_d$2_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type index_d$2_Cursors as Cursors, type index_d$2_CustomField as CustomField, type index_d$2_CustomTextFieldSelection as CustomTextFieldSelection, type index_d$2_DiffmatokyPayload as DiffmatokyPayload, type index_d$2_DigitalFile as DigitalFile, type index_d$2_Discount as Discount, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$2_EnteredBy as EnteredBy, index_d$2_EnteredByIdentityType as EnteredByIdentityType, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type index_d$2_ErrorInformation as ErrorInformation, type EventMetadata$1 as EventMetadata, type index_d$2_Fulfillment as Fulfillment, type index_d$2_FulfillmentLineItem as FulfillmentLineItem, index_d$2_FulfillmentStatus as FulfillmentStatus, type index_d$2_FulfillmentTrackingInfo as FulfillmentTrackingInfo, type index_d$2_FullName as FullName, type index_d$2_GenerateInvoiceRequest as GenerateInvoiceRequest, type index_d$2_GenerateInvoiceResponse as GenerateInvoiceResponse, type index_d$2_GetRefundabilityStatusRequest as GetRefundabilityStatusRequest, type index_d$2_GetRefundabilityStatusResponse as GetRefundabilityStatusResponse, type index_d$2_GiftCard as GiftCard, type index_d$2_GiftCardPaymentDetails as GiftCardPaymentDetails, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, index_d$2_IdentityType as IdentityType, type index_d$2_IndexingMessage as IndexingMessage, type index_d$2_InvoiceForOrder as InvoiceForOrder, type index_d$2_InvoiceInfo as InvoiceInfo, index_d$2_InvoiceSource as InvoiceSource, type index_d$2_InvoicesForOrder as InvoicesForOrder, type index_d$2_ItemMetadata as ItemMetadata, type index_d$2_LineItem as LineItem, type index_d$2_LineItemPriceData as LineItemPriceData, index_d$2_LineItemType as LineItemType, type index_d$2_ListInvoicesForMultipleOrdersRequest as ListInvoicesForMultipleOrdersRequest, type index_d$2_ListInvoicesForMultipleOrdersResponse as ListInvoicesForMultipleOrdersResponse, type index_d$2_ListInvoicesForSingleOrderRequest as ListInvoicesForSingleOrderRequest, type index_d$2_ListInvoicesForSingleOrderResponse as ListInvoicesForSingleOrderResponse, type index_d$2_ListTransactionsForMultipleOrdersRequest as ListTransactionsForMultipleOrdersRequest, type index_d$2_ListTransactionsForMultipleOrdersResponse as ListTransactionsForMultipleOrdersResponse, type index_d$2_ListTransactionsForMultipleOrdersResponseNonNullableFields as ListTransactionsForMultipleOrdersResponseNonNullableFields, type index_d$2_ListTransactionsForSingleOrderRequest as ListTransactionsForSingleOrderRequest, type index_d$2_ListTransactionsForSingleOrderResponse as ListTransactionsForSingleOrderResponse, type index_d$2_ListTransactionsForSingleOrderResponseNonNullableFields as ListTransactionsForSingleOrderResponseNonNullableFields, index_d$2_ManuallyRefundableReason as ManuallyRefundableReason, type index_d$2_MediaItem as MediaItem, index_d$2_MediaItemType as MediaItemType, type index_d$2_MembershipName as MembershipName, type index_d$2_MembershipPaymentDetails as MembershipPaymentDetails, index_d$2_MembershipPaymentStatus as MembershipPaymentStatus, type MessageEnvelope$1 as MessageEnvelope, index_d$2_NonRefundableReason as NonRefundableReason, type index_d$2_OptionSelection as OptionSelection, type index_d$2_Order as Order, type index_d$2_OrderRefunded as OrderRefunded, type index_d$2_OrderTransactions as OrderTransactions, type index_d$2_OrderTransactionsUpdatedEnvelope as OrderTransactionsUpdatedEnvelope, type index_d$2_Payment as Payment, type index_d$2_PaymentAndOrderId as PaymentAndOrderId, type index_d$2_PaymentPaymentDetailsOneOf as PaymentPaymentDetailsOneOf, type index_d$2_PaymentRefund as PaymentRefund, index_d$2_PaymentStatus as PaymentStatus, type index_d$2_PaymentsUpdated as PaymentsUpdated, type index_d$2_PickupAddress as PickupAddress, type index_d$2_PickupDetails as PickupDetails, type index_d$2_Price as Price, type index_d$2_Refund as Refund, type index_d$2_RefundCreated as RefundCreated, type index_d$2_RefundDetails as RefundDetails, type index_d$2_RefundItem as RefundItem, type index_d$2_RefundSideEffects as RefundSideEffects, index_d$2_RefundStatus as RefundStatus, type index_d$2_RefundTransaction as RefundTransaction, type index_d$2_Refundability as Refundability, type index_d$2_RefundabilityAdditionalRefundabilityInfoOneOf as RefundabilityAdditionalRefundabilityInfoOneOf, index_d$2_RefundableStatus as RefundableStatus, type index_d$2_RegularPaymentDetails as RegularPaymentDetails, type index_d$2_RegularPaymentDetailsPaymentMethodDetailsOneOf as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$2_RestockInfo as RestockInfo, type index_d$2_RestockItem as RestockItem, index_d$2_RestockType as RestockType, type index_d$2_SearchOrderTransactionsRequest as SearchOrderTransactionsRequest, type index_d$2_SearchOrderTransactionsResponse as SearchOrderTransactionsResponse, type index_d$2_ShipmentDetails as ShipmentDetails, type index_d$2_ShippingInfo as ShippingInfo, type index_d$2_ShippingInfoDetailsOneOf as ShippingInfoDetailsOneOf, type index_d$2_ShippingPriceData as ShippingPriceData, type index_d$2_SnapshotMessage as SnapshotMessage, index_d$2_SortOrder as SortOrder, type index_d$2_Sorting as Sorting, type index_d$2_Street as Street, index_d$2_SubscriptionFrequency as SubscriptionFrequency, type index_d$2_SubscriptionInfo as SubscriptionInfo, type index_d$2_SubscriptionOptionInfo as SubscriptionOptionInfo, type index_d$2_SubscriptionSettings as SubscriptionSettings, type index_d$2_Totals as Totals, type index_d$2_TrackingInfo as TrackingInfo, index_d$2_TransactionStatus as TransactionStatus, type index_d$2_TriggerRefundRequest as TriggerRefundRequest, type index_d$2_TriggerRefundResponse as TriggerRefundResponse, type index_d$2_UpdatePaymentStatusIdentifiers as UpdatePaymentStatusIdentifiers, type index_d$2_UpdatePaymentStatusOptions as UpdatePaymentStatusOptions, type index_d$2_UpdatePaymentStatusRequest as UpdatePaymentStatusRequest, type index_d$2_UpdatePaymentStatusResponse as UpdatePaymentStatusResponse, type index_d$2_UpdatePaymentStatusResponseNonNullableFields as UpdatePaymentStatusResponseNonNullableFields, type index_d$2_UpdateRefundTransactionRequest as UpdateRefundTransactionRequest, type index_d$2_UpdateRefundTransactionResponse as UpdateRefundTransactionResponse, type index_d$2_V2InvoiceInfo as V2InvoiceInfo, type index_d$2_V2Refund as V2Refund, type index_d$2_VatId as VatId, index_d$2_VatType as VatType, WebhookIdentityType$1 as WebhookIdentityType, index_d$2_WeightUnit as WeightUnit, __metadata$2 as __metadata, index_d$2_addPayments as addPayments, index_d$2_bulkUpdatePaymentStatuses as bulkUpdatePaymentStatuses, index_d$2_listTransactionsForMultipleOrders as listTransactionsForMultipleOrders, index_d$2_listTransactionsForSingleOrder as listTransactionsForSingleOrder, index_d$2_onOrderTransactionsUpdated as onOrderTransactionsUpdated, index_d$2_updatePaymentStatus as updatePaymentStatus };
|
|
34236
34309
|
}
|
|
34237
34310
|
|
|
34238
34311
|
interface OrdersSettings {
|
|
@@ -43716,6 +43716,25 @@ interface ListTransactionsForSingleOrderResponseNonNullableFields$1 {
|
|
|
43716
43716
|
}[];
|
|
43717
43717
|
shippingIncluded: boolean;
|
|
43718
43718
|
};
|
|
43719
|
+
summary?: {
|
|
43720
|
+
requestedRefund?: {
|
|
43721
|
+
amount: string;
|
|
43722
|
+
formattedAmount: string;
|
|
43723
|
+
};
|
|
43724
|
+
pendingRefund?: {
|
|
43725
|
+
amount: string;
|
|
43726
|
+
formattedAmount: string;
|
|
43727
|
+
};
|
|
43728
|
+
refunded?: {
|
|
43729
|
+
amount: string;
|
|
43730
|
+
formattedAmount: string;
|
|
43731
|
+
};
|
|
43732
|
+
failedRefundAmount?: {
|
|
43733
|
+
amount: string;
|
|
43734
|
+
formattedAmount: string;
|
|
43735
|
+
};
|
|
43736
|
+
pending: boolean;
|
|
43737
|
+
};
|
|
43719
43738
|
}[];
|
|
43720
43739
|
};
|
|
43721
43740
|
}
|
|
@@ -43787,6 +43806,25 @@ interface ListTransactionsForMultipleOrdersResponseNonNullableFields$1 {
|
|
|
43787
43806
|
}[];
|
|
43788
43807
|
shippingIncluded: boolean;
|
|
43789
43808
|
};
|
|
43809
|
+
summary?: {
|
|
43810
|
+
requestedRefund?: {
|
|
43811
|
+
amount: string;
|
|
43812
|
+
formattedAmount: string;
|
|
43813
|
+
};
|
|
43814
|
+
pendingRefund?: {
|
|
43815
|
+
amount: string;
|
|
43816
|
+
formattedAmount: string;
|
|
43817
|
+
};
|
|
43818
|
+
refunded?: {
|
|
43819
|
+
amount: string;
|
|
43820
|
+
formattedAmount: string;
|
|
43821
|
+
};
|
|
43822
|
+
failedRefundAmount?: {
|
|
43823
|
+
amount: string;
|
|
43824
|
+
formattedAmount: string;
|
|
43825
|
+
};
|
|
43826
|
+
pending: boolean;
|
|
43827
|
+
};
|
|
43790
43828
|
}[];
|
|
43791
43829
|
}[];
|
|
43792
43830
|
}
|
|
@@ -43858,6 +43896,25 @@ interface AddPaymentsResponseNonNullableFields$1 {
|
|
|
43858
43896
|
}[];
|
|
43859
43897
|
shippingIncluded: boolean;
|
|
43860
43898
|
};
|
|
43899
|
+
summary?: {
|
|
43900
|
+
requestedRefund?: {
|
|
43901
|
+
amount: string;
|
|
43902
|
+
formattedAmount: string;
|
|
43903
|
+
};
|
|
43904
|
+
pendingRefund?: {
|
|
43905
|
+
amount: string;
|
|
43906
|
+
formattedAmount: string;
|
|
43907
|
+
};
|
|
43908
|
+
refunded?: {
|
|
43909
|
+
amount: string;
|
|
43910
|
+
formattedAmount: string;
|
|
43911
|
+
};
|
|
43912
|
+
failedRefundAmount?: {
|
|
43913
|
+
amount: string;
|
|
43914
|
+
formattedAmount: string;
|
|
43915
|
+
};
|
|
43916
|
+
pending: boolean;
|
|
43917
|
+
};
|
|
43861
43918
|
}[];
|
|
43862
43919
|
};
|
|
43863
43920
|
paymentsIds: string[];
|
|
@@ -43930,6 +43987,25 @@ interface UpdatePaymentStatusResponseNonNullableFields$1 {
|
|
|
43930
43987
|
}[];
|
|
43931
43988
|
shippingIncluded: boolean;
|
|
43932
43989
|
};
|
|
43990
|
+
summary?: {
|
|
43991
|
+
requestedRefund?: {
|
|
43992
|
+
amount: string;
|
|
43993
|
+
formattedAmount: string;
|
|
43994
|
+
};
|
|
43995
|
+
pendingRefund?: {
|
|
43996
|
+
amount: string;
|
|
43997
|
+
formattedAmount: string;
|
|
43998
|
+
};
|
|
43999
|
+
refunded?: {
|
|
44000
|
+
amount: string;
|
|
44001
|
+
formattedAmount: string;
|
|
44002
|
+
};
|
|
44003
|
+
failedRefundAmount?: {
|
|
44004
|
+
amount: string;
|
|
44005
|
+
formattedAmount: string;
|
|
44006
|
+
};
|
|
44007
|
+
pending: boolean;
|
|
44008
|
+
};
|
|
43933
44009
|
}[];
|
|
43934
44010
|
};
|
|
43935
44011
|
}
|