@wix/ecom 1.0.633 → 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 +573 -277
- package/type-bundles/meta.bundle.d.ts +76 -0
|
@@ -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
|
/**
|
|
@@ -4509,36 +4509,36 @@ interface LineItemDiscount$4 {
|
|
|
4509
4509
|
}
|
|
4510
4510
|
interface CalculationErrors$3 extends CalculationErrorsShippingCalculationErrorOneOf$3 {
|
|
4511
4511
|
/** General shipping calculation error. */
|
|
4512
|
-
generalShippingCalculationError?: Details$
|
|
4512
|
+
generalShippingCalculationError?: Details$4;
|
|
4513
4513
|
/** Carrier errors. */
|
|
4514
4514
|
carrierErrors?: CarrierErrors$3;
|
|
4515
4515
|
/** Tax calculation error. */
|
|
4516
|
-
taxCalculationError?: Details$
|
|
4516
|
+
taxCalculationError?: Details$4;
|
|
4517
4517
|
/** Coupon calculation error. */
|
|
4518
|
-
couponCalculationError?: Details$
|
|
4518
|
+
couponCalculationError?: Details$4;
|
|
4519
4519
|
/** Gift card calculation error. */
|
|
4520
|
-
giftCardCalculationError?: Details$
|
|
4520
|
+
giftCardCalculationError?: Details$4;
|
|
4521
4521
|
/** Order validation errors. */
|
|
4522
4522
|
orderValidationErrors?: ApplicationError$6[];
|
|
4523
4523
|
/**
|
|
4524
4524
|
* Membership payment methods calculation errors
|
|
4525
4525
|
* For example, will indicate that a line item that must be paid with membership payment doesn't have one or selected memberships are invalid
|
|
4526
4526
|
*/
|
|
4527
|
-
membershipError?: Details$
|
|
4527
|
+
membershipError?: Details$4;
|
|
4528
4528
|
/** Discount Rule calculation error. */
|
|
4529
|
-
discountsCalculationError?: Details$
|
|
4529
|
+
discountsCalculationError?: Details$4;
|
|
4530
4530
|
}
|
|
4531
4531
|
/** @oneof */
|
|
4532
4532
|
interface CalculationErrorsShippingCalculationErrorOneOf$3 {
|
|
4533
4533
|
/** General shipping calculation error. */
|
|
4534
|
-
generalShippingCalculationError?: Details$
|
|
4534
|
+
generalShippingCalculationError?: Details$4;
|
|
4535
4535
|
/** Carrier errors. */
|
|
4536
4536
|
carrierErrors?: CarrierErrors$3;
|
|
4537
4537
|
}
|
|
4538
|
-
interface Details$
|
|
4538
|
+
interface Details$4 extends DetailsKindOneOf$4 {
|
|
4539
4539
|
applicationError?: ApplicationError$6;
|
|
4540
|
-
validationError?: ValidationError$
|
|
4541
|
-
systemError?: SystemError$
|
|
4540
|
+
validationError?: ValidationError$4;
|
|
4541
|
+
systemError?: SystemError$4;
|
|
4542
4542
|
/**
|
|
4543
4543
|
* Deprecated in APIs. Used to enable migration from rendering arbitrary tracing to rest response.
|
|
4544
4544
|
* @deprecated
|
|
@@ -4546,10 +4546,10 @@ interface Details$3 extends DetailsKindOneOf$3 {
|
|
|
4546
4546
|
tracing?: Record<string, string>;
|
|
4547
4547
|
}
|
|
4548
4548
|
/** @oneof */
|
|
4549
|
-
interface DetailsKindOneOf$
|
|
4549
|
+
interface DetailsKindOneOf$4 {
|
|
4550
4550
|
applicationError?: ApplicationError$6;
|
|
4551
|
-
validationError?: ValidationError$
|
|
4552
|
-
systemError?: SystemError$
|
|
4551
|
+
validationError?: ValidationError$4;
|
|
4552
|
+
systemError?: SystemError$4;
|
|
4553
4553
|
}
|
|
4554
4554
|
/**
|
|
4555
4555
|
* example result:
|
|
@@ -4583,10 +4583,10 @@ interface DetailsKindOneOf$3 {
|
|
|
4583
4583
|
* ]
|
|
4584
4584
|
* }
|
|
4585
4585
|
*/
|
|
4586
|
-
interface ValidationError$
|
|
4587
|
-
fieldViolations?: FieldViolation$
|
|
4586
|
+
interface ValidationError$4 {
|
|
4587
|
+
fieldViolations?: FieldViolation$4[];
|
|
4588
4588
|
}
|
|
4589
|
-
declare enum RuleType$
|
|
4589
|
+
declare enum RuleType$4 {
|
|
4590
4590
|
VALIDATION = "VALIDATION",
|
|
4591
4591
|
OTHER = "OTHER",
|
|
4592
4592
|
MAX = "MAX",
|
|
@@ -4606,15 +4606,15 @@ declare enum RuleType$3 {
|
|
|
4606
4606
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
4607
4607
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
4608
4608
|
}
|
|
4609
|
-
interface FieldViolation$
|
|
4609
|
+
interface FieldViolation$4 {
|
|
4610
4610
|
field?: string;
|
|
4611
4611
|
description?: string;
|
|
4612
|
-
violatedRule?: RuleType$
|
|
4612
|
+
violatedRule?: RuleType$4;
|
|
4613
4613
|
/** applicable when violated_rule=OTHER */
|
|
4614
4614
|
ruleName?: string | null;
|
|
4615
4615
|
data?: Record<string, any> | null;
|
|
4616
4616
|
}
|
|
4617
|
-
interface SystemError$
|
|
4617
|
+
interface SystemError$4 {
|
|
4618
4618
|
/** Error code. */
|
|
4619
4619
|
errorCode?: string | null;
|
|
4620
4620
|
}
|
|
@@ -4626,7 +4626,7 @@ interface CarrierError$3 {
|
|
|
4626
4626
|
/** Carrier ID. */
|
|
4627
4627
|
carrierId?: string;
|
|
4628
4628
|
/** Error details. */
|
|
4629
|
-
error?: Details$
|
|
4629
|
+
error?: Details$4;
|
|
4630
4630
|
}
|
|
4631
4631
|
interface MembershipOptions$3 {
|
|
4632
4632
|
/** List of payment options that can be used. */
|
|
@@ -6208,7 +6208,7 @@ interface EstimateTotalsResponseNonNullableFields$1 {
|
|
|
6208
6208
|
fieldViolations: {
|
|
6209
6209
|
field: string;
|
|
6210
6210
|
description: string;
|
|
6211
|
-
violatedRule: RuleType$
|
|
6211
|
+
violatedRule: RuleType$4;
|
|
6212
6212
|
}[];
|
|
6213
6213
|
};
|
|
6214
6214
|
};
|
|
@@ -6224,7 +6224,7 @@ interface EstimateTotalsResponseNonNullableFields$1 {
|
|
|
6224
6224
|
fieldViolations: {
|
|
6225
6225
|
field: string;
|
|
6226
6226
|
description: string;
|
|
6227
|
-
violatedRule: RuleType$
|
|
6227
|
+
violatedRule: RuleType$4;
|
|
6228
6228
|
}[];
|
|
6229
6229
|
};
|
|
6230
6230
|
};
|
|
@@ -6239,7 +6239,7 @@ interface EstimateTotalsResponseNonNullableFields$1 {
|
|
|
6239
6239
|
fieldViolations: {
|
|
6240
6240
|
field: string;
|
|
6241
6241
|
description: string;
|
|
6242
|
-
violatedRule: RuleType$
|
|
6242
|
+
violatedRule: RuleType$4;
|
|
6243
6243
|
}[];
|
|
6244
6244
|
};
|
|
6245
6245
|
};
|
|
@@ -6252,7 +6252,7 @@ interface EstimateTotalsResponseNonNullableFields$1 {
|
|
|
6252
6252
|
fieldViolations: {
|
|
6253
6253
|
field: string;
|
|
6254
6254
|
description: string;
|
|
6255
|
-
violatedRule: RuleType$
|
|
6255
|
+
violatedRule: RuleType$4;
|
|
6256
6256
|
}[];
|
|
6257
6257
|
};
|
|
6258
6258
|
};
|
|
@@ -6265,7 +6265,7 @@ interface EstimateTotalsResponseNonNullableFields$1 {
|
|
|
6265
6265
|
fieldViolations: {
|
|
6266
6266
|
field: string;
|
|
6267
6267
|
description: string;
|
|
6268
|
-
violatedRule: RuleType$
|
|
6268
|
+
violatedRule: RuleType$4;
|
|
6269
6269
|
}[];
|
|
6270
6270
|
};
|
|
6271
6271
|
};
|
|
@@ -6282,7 +6282,7 @@ interface EstimateTotalsResponseNonNullableFields$1 {
|
|
|
6282
6282
|
fieldViolations: {
|
|
6283
6283
|
field: string;
|
|
6284
6284
|
description: string;
|
|
6285
|
-
violatedRule: RuleType$
|
|
6285
|
+
violatedRule: RuleType$4;
|
|
6286
6286
|
}[];
|
|
6287
6287
|
};
|
|
6288
6288
|
};
|
|
@@ -6295,7 +6295,7 @@ interface EstimateTotalsResponseNonNullableFields$1 {
|
|
|
6295
6295
|
fieldViolations: {
|
|
6296
6296
|
field: string;
|
|
6297
6297
|
description: string;
|
|
6298
|
-
violatedRule: RuleType$
|
|
6298
|
+
violatedRule: RuleType$4;
|
|
6299
6299
|
}[];
|
|
6300
6300
|
};
|
|
6301
6301
|
};
|
|
@@ -7277,7 +7277,7 @@ declare const index_d$9_estimateTotals: typeof estimateTotals;
|
|
|
7277
7277
|
declare const index_d$9_getCart: typeof getCart;
|
|
7278
7278
|
declare const index_d$9_updateCart: typeof updateCart;
|
|
7279
7279
|
declare namespace index_d$9 {
|
|
7280
|
-
export { type ActionEvent$8 as ActionEvent, type index_d$9_AddToCartOptions as AddToCartOptions, type AddToCartRequest$1 as AddToCartRequest, type AddToCartResponse$1 as AddToCartResponse, type AddToCartResponseNonNullableFields$1 as AddToCartResponseNonNullableFields, type AddToCurrentCartAndEstimateTotalsRequest$1 as AddToCurrentCartAndEstimateTotalsRequest, type AddToCurrentCartRequest$1 as AddToCurrentCartRequest, type AdditionalFee$4 as AdditionalFee, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$4 as AddressWithContact, type AggregatedTaxBreakdown$3 as AggregatedTaxBreakdown, type ApplicationError$6 as ApplicationError, type AppliedDiscount$4 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$4 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$3 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$8 as BaseEventMetadata, type BuyerInfo$6 as BuyerInfo, type BuyerInfoIdOneOf$4 as BuyerInfoIdOneOf, type CalculatedLineItem$1 as CalculatedLineItem, type CalculationErrors$3 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$3 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$3 as CarrierError, type CarrierErrors$3 as CarrierErrors, type CarrierServiceOption$3 as CarrierServiceOption, type Cart$1 as Cart, type CartCreatedEnvelope$1 as CartCreatedEnvelope, type CartDeletedEnvelope$1 as CartDeletedEnvelope, type CartDiscount$1 as CartDiscount, type CartDiscountDiscountSourceOneOf$1 as CartDiscountDiscountSourceOneOf, type CartUpdatedEnvelope$1 as CartUpdatedEnvelope, type CatalogOverrideFields$3 as CatalogOverrideFields, type CatalogReference$4 as CatalogReference, ChannelType$5 as ChannelType, ChargeType$3 as ChargeType, type Color$4 as Color, type Coupon$4 as Coupon, type index_d$9_CreateCartOptions as CreateCartOptions, type CreateCartRequest$1 as CreateCartRequest, type CreateCartResponse$1 as CreateCartResponse, type CreateCartResponseNonNullableFields$1 as CreateCartResponseNonNullableFields, type CreateCheckoutFromCurrentCartRequest$1 as CreateCheckoutFromCurrentCartRequest, type CreateCheckoutOptions$1 as CreateCheckoutOptions, type CreateCheckoutRequest$2 as CreateCheckoutRequest, type CreateCheckoutResponse$2 as CreateCheckoutResponse, type CreateCheckoutResponseNonNullableFields$2 as CreateCheckoutResponseNonNullableFields, type CustomLineItem$3 as CustomLineItem, type DeleteCartRequest$1 as DeleteCartRequest, type DeleteCartResponse$1 as DeleteCartResponse, type DeleteCurrentCartRequest$1 as DeleteCurrentCartRequest, type DeliveryLogistics$4 as DeliveryLogistics, type DeliveryTimeSlot$4 as DeliveryTimeSlot, type Description$3 as Description, type DescriptionLine$4 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$4 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$4 as DescriptionLineName, DescriptionLineType$4 as DescriptionLineType, type DescriptionLineValueOneOf$4 as DescriptionLineValueOneOf, type Details$
|
|
7280
|
+
export { type ActionEvent$8 as ActionEvent, type index_d$9_AddToCartOptions as AddToCartOptions, type AddToCartRequest$1 as AddToCartRequest, type AddToCartResponse$1 as AddToCartResponse, type AddToCartResponseNonNullableFields$1 as AddToCartResponseNonNullableFields, type AddToCurrentCartAndEstimateTotalsRequest$1 as AddToCurrentCartAndEstimateTotalsRequest, type AddToCurrentCartRequest$1 as AddToCurrentCartRequest, type AdditionalFee$4 as AdditionalFee, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$4 as AddressWithContact, type AggregatedTaxBreakdown$3 as AggregatedTaxBreakdown, type ApplicationError$6 as ApplicationError, type AppliedDiscount$4 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$4 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$3 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$8 as BaseEventMetadata, type BuyerInfo$6 as BuyerInfo, type BuyerInfoIdOneOf$4 as BuyerInfoIdOneOf, type CalculatedLineItem$1 as CalculatedLineItem, type CalculationErrors$3 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$3 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$3 as CarrierError, type CarrierErrors$3 as CarrierErrors, type CarrierServiceOption$3 as CarrierServiceOption, type Cart$1 as Cart, type CartCreatedEnvelope$1 as CartCreatedEnvelope, type CartDeletedEnvelope$1 as CartDeletedEnvelope, type CartDiscount$1 as CartDiscount, type CartDiscountDiscountSourceOneOf$1 as CartDiscountDiscountSourceOneOf, type CartUpdatedEnvelope$1 as CartUpdatedEnvelope, type CatalogOverrideFields$3 as CatalogOverrideFields, type CatalogReference$4 as CatalogReference, ChannelType$5 as ChannelType, ChargeType$3 as ChargeType, type Color$4 as Color, type Coupon$4 as Coupon, type index_d$9_CreateCartOptions as CreateCartOptions, type CreateCartRequest$1 as CreateCartRequest, type CreateCartResponse$1 as CreateCartResponse, type CreateCartResponseNonNullableFields$1 as CreateCartResponseNonNullableFields, type CreateCheckoutFromCurrentCartRequest$1 as CreateCheckoutFromCurrentCartRequest, type CreateCheckoutOptions$1 as CreateCheckoutOptions, type CreateCheckoutRequest$2 as CreateCheckoutRequest, type CreateCheckoutResponse$2 as CreateCheckoutResponse, type CreateCheckoutResponseNonNullableFields$2 as CreateCheckoutResponseNonNullableFields, type CustomLineItem$3 as CustomLineItem, type DeleteCartRequest$1 as DeleteCartRequest, type DeleteCartResponse$1 as DeleteCartResponse, type DeleteCurrentCartRequest$1 as DeleteCurrentCartRequest, type DeliveryLogistics$4 as DeliveryLogistics, type DeliveryTimeSlot$4 as DeliveryTimeSlot, type Description$3 as Description, type DescriptionLine$4 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$4 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$4 as DescriptionLineName, DescriptionLineType$4 as DescriptionLineType, type DescriptionLineValueOneOf$4 as DescriptionLineValueOneOf, type Details$4 as Details, type DetailsKindOneOf$4 as DetailsKindOneOf, type DiscountRule$4 as DiscountRule, type DiscountRuleName$4 as DiscountRuleName, DiscountType$4 as DiscountType, type DomainEvent$8 as DomainEvent, type DomainEventBodyOneOf$8 as DomainEventBodyOneOf, type Empty$4 as Empty, type EntityCreatedEvent$8 as EntityCreatedEvent, type EntityDeletedEvent$8 as EntityDeletedEvent, type EntityUpdatedEvent$8 as EntityUpdatedEvent, type EstimateCurrentCartTotalsRequest$1 as EstimateCurrentCartTotalsRequest, type index_d$9_EstimateTotalsOptions as EstimateTotalsOptions, type EstimateTotalsRequest$1 as EstimateTotalsRequest, type EstimateTotalsResponse$1 as EstimateTotalsResponse, type EstimateTotalsResponseNonNullableFields$1 as EstimateTotalsResponseNonNullableFields, type EventMetadata$8 as EventMetadata, type ExtendedFields$4 as ExtendedFields, FallbackReason$3 as FallbackReason, type FieldViolation$4 as FieldViolation, FileType$3 as FileType, type FullAddressContactDetails$4 as FullAddressContactDetails, type GetCartByCheckoutIdRequest$1 as GetCartByCheckoutIdRequest, type GetCartByCheckoutIdResponse$1 as GetCartByCheckoutIdResponse, type GetCartRequest$1 as GetCartRequest, type GetCartResponse$1 as GetCartResponse, type GetCartResponseNonNullableFields$1 as GetCartResponseNonNullableFields, type GetCurrentCartRequest$1 as GetCurrentCartRequest, type GetCurrentCartResponse$1 as GetCurrentCartResponse, type GetCurrentCartResponseNonNullableFields$1 as GetCurrentCartResponseNonNullableFields, type GiftCard$4 as GiftCard, type Group$3 as Group, type HostSelectedMembership$1 as HostSelectedMembership, type IdentificationData$8 as IdentificationData, type IdentificationDataIdOneOf$8 as IdentificationDataIdOneOf, type InvalidMembership$3 as InvalidMembership, type ItemAvailabilityInfo$3 as ItemAvailabilityInfo, ItemAvailabilityStatus$3 as ItemAvailabilityStatus, type ItemTaxFullDetails$4 as ItemTaxFullDetails, type ItemType$4 as ItemType, ItemTypeItemType$4 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$4 as ItemTypeItemTypeDataOneOf, JurisdictionType$4 as JurisdictionType, type LineItem$5 as LineItem, type LineItemDiscount$4 as LineItemDiscount, type LineItemPricesData$1 as LineItemPricesData, type LineItemQuantityUpdate$2 as LineItemQuantityUpdate, ManualCalculationReason$3 as ManualCalculationReason, type Membership$3 as Membership, type MembershipName$5 as MembershipName, type MembershipOptions$3 as MembershipOptions, type MembershipPaymentCredits$3 as MembershipPaymentCredits, type MerchantDiscount$4 as MerchantDiscount, type MerchantDiscountInput$2 as MerchantDiscountInput, type MessageEnvelope$8 as MessageEnvelope, type MultiCurrencyPrice$3 as MultiCurrencyPrice, NameInLineItem$3 as NameInLineItem, NameInOther$3 as NameInOther, type Other$3 as Other, type OtherCharge$3 as OtherCharge, PaymentOptionType$4 as PaymentOptionType, type PhysicalProperties$4 as PhysicalProperties, type PickupDetails$5 as PickupDetails, PickupMethod$4 as PickupMethod, type PlainTextValue$4 as PlainTextValue, type PriceDescription$4 as PriceDescription, type PriceSummary$4 as PriceSummary, type ProductName$4 as ProductName, RateType$3 as RateType, type RemoveCouponFromCurrentCartRequest$1 as RemoveCouponFromCurrentCartRequest, type RemoveCouponRequest$2 as RemoveCouponRequest, type RemoveCouponResponse$2 as RemoveCouponResponse, type RemoveCouponResponseNonNullableFields$2 as RemoveCouponResponseNonNullableFields, type RemoveLineItemsFromCurrentCartRequest$1 as RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsRequest$2 as RemoveLineItemsRequest, type RemoveLineItemsResponse$2 as RemoveLineItemsResponse, type RemoveLineItemsResponseNonNullableFields$2 as RemoveLineItemsResponseNonNullableFields, RuleType$4 as RuleType, type Scope$3 as Scope, type SecuredMedia$3 as SecuredMedia, type SelectedCarrierServiceOption$3 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$3 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$3 as SelectedCarrierServiceOptionPrices, type SelectedMembership$3 as SelectedMembership, type SelectedMemberships$3 as SelectedMemberships, type SelectedShippingOption$1 as SelectedShippingOption, type ServiceProperties$4 as ServiceProperties, Severity$3 as Severity, type ShippingInformation$2 as ShippingInformation, type ShippingOption$3 as ShippingOption, type ShippingPrice$4 as ShippingPrice, type ShippingRegion$4 as ShippingRegion, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$5 as SubscriptionFrequency, type SubscriptionOptionInfo$4 as SubscriptionOptionInfo, type SubscriptionSettings$5 as SubscriptionSettings, type SystemError$4 as SystemError, type Target$3 as Target, type TargetLineItem$3 as TargetLineItem, type TargetTargetTypeOneOf$3 as TargetTargetTypeOneOf, type TaxBreakdown$3 as TaxBreakdown, type TaxCalculationDetails$3 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$3 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$3 as TaxRateBreakdown, type TaxSummary$4 as TaxSummary, type Title$3 as Title, type index_d$9_UpdateCartOptions as UpdateCartOptions, type UpdateCartRequest$1 as UpdateCartRequest, type UpdateCartResponse$1 as UpdateCartResponse, type UpdateCartResponseNonNullableFields$1 as UpdateCartResponseNonNullableFields, type UpdateCurrentCartLineItemQuantityRequest$1 as UpdateCurrentCartLineItemQuantityRequest, type UpdateLineItemsQuantityRequest$2 as UpdateLineItemsQuantityRequest, type UpdateLineItemsQuantityResponse$2 as UpdateLineItemsQuantityResponse, type UpdateLineItemsQuantityResponseNonNullableFields$2 as UpdateLineItemsQuantityResponseNonNullableFields, type V1Coupon$1 as V1Coupon, type V1MerchantDiscount$1 as V1MerchantDiscount, type ValidationError$4 as ValidationError, type VatId$5 as VatId, VatType$5 as VatType, type Violation$3 as Violation, WebhookIdentityType$8 as WebhookIdentityType, WeightUnit$5 as WeightUnit, __metadata$9 as __metadata, index_d$9_addToCart as addToCart, index_d$9_createCart as createCart, createCheckout$1 as createCheckout, index_d$9_deleteCart as deleteCart, index_d$9_estimateTotals as estimateTotals, index_d$9_getCart as getCart, onCartCreated$1 as onCartCreated, onCartDeleted$1 as onCartDeleted, onCartUpdated$1 as onCartUpdated, removeCoupon$1 as removeCoupon, removeLineItems$1 as removeLineItems, index_d$9_updateCart as updateCart, updateLineItemsQuantity$1 as updateLineItemsQuantity };
|
|
7281
7281
|
}
|
|
7282
7282
|
|
|
7283
7283
|
interface Cart {
|
|
@@ -8472,36 +8472,36 @@ interface LineItemDiscount$3 {
|
|
|
8472
8472
|
}
|
|
8473
8473
|
interface CalculationErrors$2 extends CalculationErrorsShippingCalculationErrorOneOf$2 {
|
|
8474
8474
|
/** General shipping calculation error. */
|
|
8475
|
-
generalShippingCalculationError?: Details$
|
|
8475
|
+
generalShippingCalculationError?: Details$3;
|
|
8476
8476
|
/** Carrier errors. */
|
|
8477
8477
|
carrierErrors?: CarrierErrors$2;
|
|
8478
8478
|
/** Tax calculation error. */
|
|
8479
|
-
taxCalculationError?: Details$
|
|
8479
|
+
taxCalculationError?: Details$3;
|
|
8480
8480
|
/** Coupon calculation error. */
|
|
8481
|
-
couponCalculationError?: Details$
|
|
8481
|
+
couponCalculationError?: Details$3;
|
|
8482
8482
|
/** Gift card calculation error. */
|
|
8483
|
-
giftCardCalculationError?: Details$
|
|
8483
|
+
giftCardCalculationError?: Details$3;
|
|
8484
8484
|
/** Order validation errors. */
|
|
8485
8485
|
orderValidationErrors?: ApplicationError$5[];
|
|
8486
8486
|
/**
|
|
8487
8487
|
* Membership payment methods calculation errors
|
|
8488
8488
|
* For example, will indicate that a line item that must be paid with membership payment doesn't have one or selected memberships are invalid
|
|
8489
8489
|
*/
|
|
8490
|
-
membershipError?: Details$
|
|
8490
|
+
membershipError?: Details$3;
|
|
8491
8491
|
/** Discount Rule calculation error. */
|
|
8492
|
-
discountsCalculationError?: Details$
|
|
8492
|
+
discountsCalculationError?: Details$3;
|
|
8493
8493
|
}
|
|
8494
8494
|
/** @oneof */
|
|
8495
8495
|
interface CalculationErrorsShippingCalculationErrorOneOf$2 {
|
|
8496
8496
|
/** General shipping calculation error. */
|
|
8497
|
-
generalShippingCalculationError?: Details$
|
|
8497
|
+
generalShippingCalculationError?: Details$3;
|
|
8498
8498
|
/** Carrier errors. */
|
|
8499
8499
|
carrierErrors?: CarrierErrors$2;
|
|
8500
8500
|
}
|
|
8501
|
-
interface Details$
|
|
8501
|
+
interface Details$3 extends DetailsKindOneOf$3 {
|
|
8502
8502
|
applicationError?: ApplicationError$5;
|
|
8503
|
-
validationError?: ValidationError$
|
|
8504
|
-
systemError?: SystemError$
|
|
8503
|
+
validationError?: ValidationError$3;
|
|
8504
|
+
systemError?: SystemError$3;
|
|
8505
8505
|
/**
|
|
8506
8506
|
* Deprecated in APIs. Used to enable migration from rendering arbitrary tracing to rest response.
|
|
8507
8507
|
* @deprecated
|
|
@@ -8509,10 +8509,10 @@ interface Details$2 extends DetailsKindOneOf$2 {
|
|
|
8509
8509
|
tracing?: Record<string, string>;
|
|
8510
8510
|
}
|
|
8511
8511
|
/** @oneof */
|
|
8512
|
-
interface DetailsKindOneOf$
|
|
8512
|
+
interface DetailsKindOneOf$3 {
|
|
8513
8513
|
applicationError?: ApplicationError$5;
|
|
8514
|
-
validationError?: ValidationError$
|
|
8515
|
-
systemError?: SystemError$
|
|
8514
|
+
validationError?: ValidationError$3;
|
|
8515
|
+
systemError?: SystemError$3;
|
|
8516
8516
|
}
|
|
8517
8517
|
/**
|
|
8518
8518
|
* example result:
|
|
@@ -8546,10 +8546,10 @@ interface DetailsKindOneOf$2 {
|
|
|
8546
8546
|
* ]
|
|
8547
8547
|
* }
|
|
8548
8548
|
*/
|
|
8549
|
-
interface ValidationError$
|
|
8550
|
-
fieldViolations?: FieldViolation$
|
|
8549
|
+
interface ValidationError$3 {
|
|
8550
|
+
fieldViolations?: FieldViolation$3[];
|
|
8551
8551
|
}
|
|
8552
|
-
declare enum RuleType$
|
|
8552
|
+
declare enum RuleType$3 {
|
|
8553
8553
|
VALIDATION = "VALIDATION",
|
|
8554
8554
|
OTHER = "OTHER",
|
|
8555
8555
|
MAX = "MAX",
|
|
@@ -8569,15 +8569,15 @@ declare enum RuleType$2 {
|
|
|
8569
8569
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
8570
8570
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
8571
8571
|
}
|
|
8572
|
-
interface FieldViolation$
|
|
8572
|
+
interface FieldViolation$3 {
|
|
8573
8573
|
field?: string;
|
|
8574
8574
|
description?: string;
|
|
8575
|
-
violatedRule?: RuleType$
|
|
8575
|
+
violatedRule?: RuleType$3;
|
|
8576
8576
|
/** applicable when violated_rule=OTHER */
|
|
8577
8577
|
ruleName?: string | null;
|
|
8578
8578
|
data?: Record<string, any> | null;
|
|
8579
8579
|
}
|
|
8580
|
-
interface SystemError$
|
|
8580
|
+
interface SystemError$3 {
|
|
8581
8581
|
/** Error code. */
|
|
8582
8582
|
errorCode?: string | null;
|
|
8583
8583
|
}
|
|
@@ -8589,7 +8589,7 @@ interface CarrierError$2 {
|
|
|
8589
8589
|
/** Carrier ID. */
|
|
8590
8590
|
carrierId?: string;
|
|
8591
8591
|
/** Error details. */
|
|
8592
|
-
error?: Details$
|
|
8592
|
+
error?: Details$3;
|
|
8593
8593
|
}
|
|
8594
8594
|
interface MembershipOptions$2 {
|
|
8595
8595
|
/** List of payment options that can be used. */
|
|
@@ -10171,7 +10171,7 @@ interface EstimateTotalsResponseNonNullableFields {
|
|
|
10171
10171
|
fieldViolations: {
|
|
10172
10172
|
field: string;
|
|
10173
10173
|
description: string;
|
|
10174
|
-
violatedRule: RuleType$
|
|
10174
|
+
violatedRule: RuleType$3;
|
|
10175
10175
|
}[];
|
|
10176
10176
|
};
|
|
10177
10177
|
};
|
|
@@ -10187,7 +10187,7 @@ interface EstimateTotalsResponseNonNullableFields {
|
|
|
10187
10187
|
fieldViolations: {
|
|
10188
10188
|
field: string;
|
|
10189
10189
|
description: string;
|
|
10190
|
-
violatedRule: RuleType$
|
|
10190
|
+
violatedRule: RuleType$3;
|
|
10191
10191
|
}[];
|
|
10192
10192
|
};
|
|
10193
10193
|
};
|
|
@@ -10202,7 +10202,7 @@ interface EstimateTotalsResponseNonNullableFields {
|
|
|
10202
10202
|
fieldViolations: {
|
|
10203
10203
|
field: string;
|
|
10204
10204
|
description: string;
|
|
10205
|
-
violatedRule: RuleType$
|
|
10205
|
+
violatedRule: RuleType$3;
|
|
10206
10206
|
}[];
|
|
10207
10207
|
};
|
|
10208
10208
|
};
|
|
@@ -10215,7 +10215,7 @@ interface EstimateTotalsResponseNonNullableFields {
|
|
|
10215
10215
|
fieldViolations: {
|
|
10216
10216
|
field: string;
|
|
10217
10217
|
description: string;
|
|
10218
|
-
violatedRule: RuleType$
|
|
10218
|
+
violatedRule: RuleType$3;
|
|
10219
10219
|
}[];
|
|
10220
10220
|
};
|
|
10221
10221
|
};
|
|
@@ -10228,7 +10228,7 @@ interface EstimateTotalsResponseNonNullableFields {
|
|
|
10228
10228
|
fieldViolations: {
|
|
10229
10229
|
field: string;
|
|
10230
10230
|
description: string;
|
|
10231
|
-
violatedRule: RuleType$
|
|
10231
|
+
violatedRule: RuleType$3;
|
|
10232
10232
|
}[];
|
|
10233
10233
|
};
|
|
10234
10234
|
};
|
|
@@ -10245,7 +10245,7 @@ interface EstimateTotalsResponseNonNullableFields {
|
|
|
10245
10245
|
fieldViolations: {
|
|
10246
10246
|
field: string;
|
|
10247
10247
|
description: string;
|
|
10248
|
-
violatedRule: RuleType$
|
|
10248
|
+
violatedRule: RuleType$3;
|
|
10249
10249
|
}[];
|
|
10250
10250
|
};
|
|
10251
10251
|
};
|
|
@@ -10258,7 +10258,7 @@ interface EstimateTotalsResponseNonNullableFields {
|
|
|
10258
10258
|
fieldViolations: {
|
|
10259
10259
|
field: string;
|
|
10260
10260
|
description: string;
|
|
10261
|
-
violatedRule: RuleType$
|
|
10261
|
+
violatedRule: RuleType$3;
|
|
10262
10262
|
}[];
|
|
10263
10263
|
};
|
|
10264
10264
|
};
|
|
@@ -11079,7 +11079,7 @@ declare const index_d$8_removeLineItemsFromCurrentCart: typeof removeLineItemsFr
|
|
|
11079
11079
|
declare const index_d$8_updateCurrentCart: typeof updateCurrentCart;
|
|
11080
11080
|
declare const index_d$8_updateCurrentCartLineItemQuantity: typeof updateCurrentCartLineItemQuantity;
|
|
11081
11081
|
declare namespace index_d$8 {
|
|
11082
|
-
export { type ActionEvent$7 as ActionEvent, type index_d$8_AddToCartRequest as AddToCartRequest, type index_d$8_AddToCartResponse as AddToCartResponse, type index_d$8_AddToCartResponseNonNullableFields as AddToCartResponseNonNullableFields, type index_d$8_AddToCurrentCartAndEstimateTotalsRequest as AddToCurrentCartAndEstimateTotalsRequest, type index_d$8_AddToCurrentCartOptions as AddToCurrentCartOptions, type index_d$8_AddToCurrentCartRequest as AddToCurrentCartRequest, type AdditionalFee$3 as AdditionalFee, type Address$4 as Address, type AddressLocation$3 as AddressLocation, type AddressWithContact$3 as AddressWithContact, type AggregatedTaxBreakdown$2 as AggregatedTaxBreakdown, type ApplicationError$5 as ApplicationError, type AppliedDiscount$3 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$3 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$2 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$7 as BaseEventMetadata, type BuyerInfo$5 as BuyerInfo, type BuyerInfoIdOneOf$3 as BuyerInfoIdOneOf, type index_d$8_CalculatedLineItem as CalculatedLineItem, type CalculationErrors$2 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$2 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$2 as CarrierError, type CarrierErrors$2 as CarrierErrors, type CarrierServiceOption$2 as CarrierServiceOption, type index_d$8_Cart as Cart, type index_d$8_CartCreatedEnvelope as CartCreatedEnvelope, type index_d$8_CartDeletedEnvelope as CartDeletedEnvelope, type index_d$8_CartDiscount as CartDiscount, type index_d$8_CartDiscountDiscountSourceOneOf as CartDiscountDiscountSourceOneOf, type index_d$8_CartUpdatedEnvelope as CartUpdatedEnvelope, type CatalogOverrideFields$2 as CatalogOverrideFields, type CatalogReference$3 as CatalogReference, ChannelType$4 as ChannelType, ChargeType$2 as ChargeType, type Color$3 as Color, type Coupon$3 as Coupon, type index_d$8_CreateCartRequest as CreateCartRequest, type index_d$8_CreateCartResponse as CreateCartResponse, type index_d$8_CreateCartResponseNonNullableFields as CreateCartResponseNonNullableFields, type index_d$8_CreateCheckoutFromCurrentCartOptions as CreateCheckoutFromCurrentCartOptions, type index_d$8_CreateCheckoutFromCurrentCartRequest as CreateCheckoutFromCurrentCartRequest, type CreateCheckoutRequest$1 as CreateCheckoutRequest, type CreateCheckoutResponse$1 as CreateCheckoutResponse, type CreateCheckoutResponseNonNullableFields$1 as CreateCheckoutResponseNonNullableFields, type CustomLineItem$2 as CustomLineItem, type index_d$8_DeleteCartRequest as DeleteCartRequest, type index_d$8_DeleteCartResponse as DeleteCartResponse, type index_d$8_DeleteCurrentCartRequest as DeleteCurrentCartRequest, type DeliveryLogistics$3 as DeliveryLogistics, type DeliveryTimeSlot$3 as DeliveryTimeSlot, type Description$2 as Description, type DescriptionLine$3 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$3 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$3 as DescriptionLineName, DescriptionLineType$3 as DescriptionLineType, type DescriptionLineValueOneOf$3 as DescriptionLineValueOneOf, type Details$2 as Details, type DetailsKindOneOf$2 as DetailsKindOneOf, type DiscountRule$3 as DiscountRule, type DiscountRuleName$3 as DiscountRuleName, DiscountType$3 as DiscountType, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type Empty$3 as Empty, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type index_d$8_EstimateCurrentCartTotalsOptions as EstimateCurrentCartTotalsOptions, type index_d$8_EstimateCurrentCartTotalsRequest as EstimateCurrentCartTotalsRequest, type index_d$8_EstimateTotalsRequest as EstimateTotalsRequest, type index_d$8_EstimateTotalsResponse as EstimateTotalsResponse, type index_d$8_EstimateTotalsResponseNonNullableFields as EstimateTotalsResponseNonNullableFields, type EventMetadata$7 as EventMetadata, type ExtendedFields$3 as ExtendedFields, FallbackReason$2 as FallbackReason, type FieldViolation$2 as FieldViolation, FileType$2 as FileType, type FullAddressContactDetails$3 as FullAddressContactDetails, type index_d$8_GetCartByCheckoutIdRequest as GetCartByCheckoutIdRequest, type index_d$8_GetCartByCheckoutIdResponse as GetCartByCheckoutIdResponse, type index_d$8_GetCartRequest as GetCartRequest, type index_d$8_GetCartResponse as GetCartResponse, type index_d$8_GetCartResponseNonNullableFields as GetCartResponseNonNullableFields, type index_d$8_GetCurrentCartRequest as GetCurrentCartRequest, type index_d$8_GetCurrentCartResponse as GetCurrentCartResponse, type index_d$8_GetCurrentCartResponseNonNullableFields as GetCurrentCartResponseNonNullableFields, type GiftCard$3 as GiftCard, type Group$2 as Group, type index_d$8_HostSelectedMembership as HostSelectedMembership, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type InvalidMembership$2 as InvalidMembership, type ItemAvailabilityInfo$2 as ItemAvailabilityInfo, ItemAvailabilityStatus$2 as ItemAvailabilityStatus, type ItemTaxFullDetails$3 as ItemTaxFullDetails, type ItemType$3 as ItemType, ItemTypeItemType$3 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$3 as ItemTypeItemTypeDataOneOf, JurisdictionType$3 as JurisdictionType, type LineItem$4 as LineItem, type LineItemDiscount$3 as LineItemDiscount, type index_d$8_LineItemPricesData as LineItemPricesData, type LineItemQuantityUpdate$1 as LineItemQuantityUpdate, ManualCalculationReason$2 as ManualCalculationReason, type Membership$2 as Membership, type MembershipName$4 as MembershipName, type MembershipOptions$2 as MembershipOptions, type MembershipPaymentCredits$2 as MembershipPaymentCredits, type MerchantDiscount$3 as MerchantDiscount, type MerchantDiscountInput$1 as MerchantDiscountInput, type MessageEnvelope$7 as MessageEnvelope, type MultiCurrencyPrice$2 as MultiCurrencyPrice, NameInLineItem$2 as NameInLineItem, NameInOther$2 as NameInOther, type Other$2 as Other, type OtherCharge$2 as OtherCharge, PaymentOptionType$3 as PaymentOptionType, type PhysicalProperties$3 as PhysicalProperties, type PickupDetails$4 as PickupDetails, PickupMethod$3 as PickupMethod, type PlainTextValue$3 as PlainTextValue, type PriceDescription$3 as PriceDescription, type PriceSummary$3 as PriceSummary, type ProductName$3 as ProductName, RateType$2 as RateType, type index_d$8_RemoveCouponFromCurrentCartRequest as RemoveCouponFromCurrentCartRequest, type RemoveCouponRequest$1 as RemoveCouponRequest, type RemoveCouponResponse$1 as RemoveCouponResponse, type RemoveCouponResponseNonNullableFields$1 as RemoveCouponResponseNonNullableFields, type index_d$8_RemoveLineItemsFromCurrentCartRequest as RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsRequest$1 as RemoveLineItemsRequest, type RemoveLineItemsResponse$1 as RemoveLineItemsResponse, type RemoveLineItemsResponseNonNullableFields$1 as RemoveLineItemsResponseNonNullableFields, RuleType$2 as RuleType, type Scope$2 as Scope, type SecuredMedia$2 as SecuredMedia, type SelectedCarrierServiceOption$2 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$2 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$2 as SelectedCarrierServiceOptionPrices, type SelectedMembership$2 as SelectedMembership, type SelectedMemberships$2 as SelectedMemberships, type index_d$8_SelectedShippingOption as SelectedShippingOption, type ServiceProperties$3 as ServiceProperties, Severity$2 as Severity, type ShippingInformation$1 as ShippingInformation, type ShippingOption$2 as ShippingOption, type ShippingPrice$3 as ShippingPrice, type ShippingRegion$3 as ShippingRegion, type StreetAddress$3 as StreetAddress, SubscriptionFrequency$4 as SubscriptionFrequency, type SubscriptionOptionInfo$3 as SubscriptionOptionInfo, type SubscriptionSettings$4 as SubscriptionSettings, type SystemError$2 as SystemError, type Target$2 as Target, type TargetLineItem$2 as TargetLineItem, type TargetTargetTypeOneOf$2 as TargetTargetTypeOneOf, type TaxBreakdown$2 as TaxBreakdown, type TaxCalculationDetails$2 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$2 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$2 as TaxRateBreakdown, type TaxSummary$3 as TaxSummary, type Title$2 as Title, type index_d$8_UpdateCartRequest as UpdateCartRequest, type index_d$8_UpdateCartResponse as UpdateCartResponse, type index_d$8_UpdateCartResponseNonNullableFields as UpdateCartResponseNonNullableFields, type index_d$8_UpdateCurrentCartLineItemQuantityRequest as UpdateCurrentCartLineItemQuantityRequest, type index_d$8_UpdateCurrentCartOptions as UpdateCurrentCartOptions, type UpdateLineItemsQuantityRequest$1 as UpdateLineItemsQuantityRequest, type UpdateLineItemsQuantityResponse$1 as UpdateLineItemsQuantityResponse, type UpdateLineItemsQuantityResponseNonNullableFields$1 as UpdateLineItemsQuantityResponseNonNullableFields, type index_d$8_V1Coupon as V1Coupon, type index_d$8_V1MerchantDiscount as V1MerchantDiscount, type ValidationError$2 as ValidationError, type VatId$4 as VatId, VatType$4 as VatType, type Violation$2 as Violation, WebhookIdentityType$7 as WebhookIdentityType, WeightUnit$4 as WeightUnit, __metadata$8 as __metadata, index_d$8_addToCurrentCart as addToCurrentCart, index_d$8_createCheckoutFromCurrentCart as createCheckoutFromCurrentCart, index_d$8_deleteCurrentCart as deleteCurrentCart, index_d$8_estimateCurrentCartTotals as estimateCurrentCartTotals, index_d$8_getCurrentCart as getCurrentCart, index_d$8_onCartCreated as onCartCreated, index_d$8_onCartDeleted as onCartDeleted, index_d$8_onCartUpdated as onCartUpdated, index_d$8_removeCouponFromCurrentCart as removeCouponFromCurrentCart, index_d$8_removeLineItemsFromCurrentCart as removeLineItemsFromCurrentCart, index_d$8_updateCurrentCart as updateCurrentCart, index_d$8_updateCurrentCartLineItemQuantity as updateCurrentCartLineItemQuantity };
|
|
11082
|
+
export { type ActionEvent$7 as ActionEvent, type index_d$8_AddToCartRequest as AddToCartRequest, type index_d$8_AddToCartResponse as AddToCartResponse, type index_d$8_AddToCartResponseNonNullableFields as AddToCartResponseNonNullableFields, type index_d$8_AddToCurrentCartAndEstimateTotalsRequest as AddToCurrentCartAndEstimateTotalsRequest, type index_d$8_AddToCurrentCartOptions as AddToCurrentCartOptions, type index_d$8_AddToCurrentCartRequest as AddToCurrentCartRequest, type AdditionalFee$3 as AdditionalFee, type Address$4 as Address, type AddressLocation$3 as AddressLocation, type AddressWithContact$3 as AddressWithContact, type AggregatedTaxBreakdown$2 as AggregatedTaxBreakdown, type ApplicationError$5 as ApplicationError, type AppliedDiscount$3 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$3 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$2 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$7 as BaseEventMetadata, type BuyerInfo$5 as BuyerInfo, type BuyerInfoIdOneOf$3 as BuyerInfoIdOneOf, type index_d$8_CalculatedLineItem as CalculatedLineItem, type CalculationErrors$2 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$2 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$2 as CarrierError, type CarrierErrors$2 as CarrierErrors, type CarrierServiceOption$2 as CarrierServiceOption, type index_d$8_Cart as Cart, type index_d$8_CartCreatedEnvelope as CartCreatedEnvelope, type index_d$8_CartDeletedEnvelope as CartDeletedEnvelope, type index_d$8_CartDiscount as CartDiscount, type index_d$8_CartDiscountDiscountSourceOneOf as CartDiscountDiscountSourceOneOf, type index_d$8_CartUpdatedEnvelope as CartUpdatedEnvelope, type CatalogOverrideFields$2 as CatalogOverrideFields, type CatalogReference$3 as CatalogReference, ChannelType$4 as ChannelType, ChargeType$2 as ChargeType, type Color$3 as Color, type Coupon$3 as Coupon, type index_d$8_CreateCartRequest as CreateCartRequest, type index_d$8_CreateCartResponse as CreateCartResponse, type index_d$8_CreateCartResponseNonNullableFields as CreateCartResponseNonNullableFields, type index_d$8_CreateCheckoutFromCurrentCartOptions as CreateCheckoutFromCurrentCartOptions, type index_d$8_CreateCheckoutFromCurrentCartRequest as CreateCheckoutFromCurrentCartRequest, type CreateCheckoutRequest$1 as CreateCheckoutRequest, type CreateCheckoutResponse$1 as CreateCheckoutResponse, type CreateCheckoutResponseNonNullableFields$1 as CreateCheckoutResponseNonNullableFields, type CustomLineItem$2 as CustomLineItem, type index_d$8_DeleteCartRequest as DeleteCartRequest, type index_d$8_DeleteCartResponse as DeleteCartResponse, type index_d$8_DeleteCurrentCartRequest as DeleteCurrentCartRequest, type DeliveryLogistics$3 as DeliveryLogistics, type DeliveryTimeSlot$3 as DeliveryTimeSlot, type Description$2 as Description, type DescriptionLine$3 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$3 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$3 as DescriptionLineName, DescriptionLineType$3 as DescriptionLineType, type DescriptionLineValueOneOf$3 as DescriptionLineValueOneOf, type Details$3 as Details, type DetailsKindOneOf$3 as DetailsKindOneOf, type DiscountRule$3 as DiscountRule, type DiscountRuleName$3 as DiscountRuleName, DiscountType$3 as DiscountType, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type Empty$3 as Empty, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type index_d$8_EstimateCurrentCartTotalsOptions as EstimateCurrentCartTotalsOptions, type index_d$8_EstimateCurrentCartTotalsRequest as EstimateCurrentCartTotalsRequest, type index_d$8_EstimateTotalsRequest as EstimateTotalsRequest, type index_d$8_EstimateTotalsResponse as EstimateTotalsResponse, type index_d$8_EstimateTotalsResponseNonNullableFields as EstimateTotalsResponseNonNullableFields, type EventMetadata$7 as EventMetadata, type ExtendedFields$3 as ExtendedFields, FallbackReason$2 as FallbackReason, type FieldViolation$3 as FieldViolation, FileType$2 as FileType, type FullAddressContactDetails$3 as FullAddressContactDetails, type index_d$8_GetCartByCheckoutIdRequest as GetCartByCheckoutIdRequest, type index_d$8_GetCartByCheckoutIdResponse as GetCartByCheckoutIdResponse, type index_d$8_GetCartRequest as GetCartRequest, type index_d$8_GetCartResponse as GetCartResponse, type index_d$8_GetCartResponseNonNullableFields as GetCartResponseNonNullableFields, type index_d$8_GetCurrentCartRequest as GetCurrentCartRequest, type index_d$8_GetCurrentCartResponse as GetCurrentCartResponse, type index_d$8_GetCurrentCartResponseNonNullableFields as GetCurrentCartResponseNonNullableFields, type GiftCard$3 as GiftCard, type Group$2 as Group, type index_d$8_HostSelectedMembership as HostSelectedMembership, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type InvalidMembership$2 as InvalidMembership, type ItemAvailabilityInfo$2 as ItemAvailabilityInfo, ItemAvailabilityStatus$2 as ItemAvailabilityStatus, type ItemTaxFullDetails$3 as ItemTaxFullDetails, type ItemType$3 as ItemType, ItemTypeItemType$3 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$3 as ItemTypeItemTypeDataOneOf, JurisdictionType$3 as JurisdictionType, type LineItem$4 as LineItem, type LineItemDiscount$3 as LineItemDiscount, type index_d$8_LineItemPricesData as LineItemPricesData, type LineItemQuantityUpdate$1 as LineItemQuantityUpdate, ManualCalculationReason$2 as ManualCalculationReason, type Membership$2 as Membership, type MembershipName$4 as MembershipName, type MembershipOptions$2 as MembershipOptions, type MembershipPaymentCredits$2 as MembershipPaymentCredits, type MerchantDiscount$3 as MerchantDiscount, type MerchantDiscountInput$1 as MerchantDiscountInput, type MessageEnvelope$7 as MessageEnvelope, type MultiCurrencyPrice$2 as MultiCurrencyPrice, NameInLineItem$2 as NameInLineItem, NameInOther$2 as NameInOther, type Other$2 as Other, type OtherCharge$2 as OtherCharge, PaymentOptionType$3 as PaymentOptionType, type PhysicalProperties$3 as PhysicalProperties, type PickupDetails$4 as PickupDetails, PickupMethod$3 as PickupMethod, type PlainTextValue$3 as PlainTextValue, type PriceDescription$3 as PriceDescription, type PriceSummary$3 as PriceSummary, type ProductName$3 as ProductName, RateType$2 as RateType, type index_d$8_RemoveCouponFromCurrentCartRequest as RemoveCouponFromCurrentCartRequest, type RemoveCouponRequest$1 as RemoveCouponRequest, type RemoveCouponResponse$1 as RemoveCouponResponse, type RemoveCouponResponseNonNullableFields$1 as RemoveCouponResponseNonNullableFields, type index_d$8_RemoveLineItemsFromCurrentCartRequest as RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsRequest$1 as RemoveLineItemsRequest, type RemoveLineItemsResponse$1 as RemoveLineItemsResponse, type RemoveLineItemsResponseNonNullableFields$1 as RemoveLineItemsResponseNonNullableFields, RuleType$3 as RuleType, type Scope$2 as Scope, type SecuredMedia$2 as SecuredMedia, type SelectedCarrierServiceOption$2 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$2 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$2 as SelectedCarrierServiceOptionPrices, type SelectedMembership$2 as SelectedMembership, type SelectedMemberships$2 as SelectedMemberships, type index_d$8_SelectedShippingOption as SelectedShippingOption, type ServiceProperties$3 as ServiceProperties, Severity$2 as Severity, type ShippingInformation$1 as ShippingInformation, type ShippingOption$2 as ShippingOption, type ShippingPrice$3 as ShippingPrice, type ShippingRegion$3 as ShippingRegion, type StreetAddress$3 as StreetAddress, SubscriptionFrequency$4 as SubscriptionFrequency, type SubscriptionOptionInfo$3 as SubscriptionOptionInfo, type SubscriptionSettings$4 as SubscriptionSettings, type SystemError$3 as SystemError, type Target$2 as Target, type TargetLineItem$2 as TargetLineItem, type TargetTargetTypeOneOf$2 as TargetTargetTypeOneOf, type TaxBreakdown$2 as TaxBreakdown, type TaxCalculationDetails$2 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$2 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$2 as TaxRateBreakdown, type TaxSummary$3 as TaxSummary, type Title$2 as Title, type index_d$8_UpdateCartRequest as UpdateCartRequest, type index_d$8_UpdateCartResponse as UpdateCartResponse, type index_d$8_UpdateCartResponseNonNullableFields as UpdateCartResponseNonNullableFields, type index_d$8_UpdateCurrentCartLineItemQuantityRequest as UpdateCurrentCartLineItemQuantityRequest, type index_d$8_UpdateCurrentCartOptions as UpdateCurrentCartOptions, type UpdateLineItemsQuantityRequest$1 as UpdateLineItemsQuantityRequest, type UpdateLineItemsQuantityResponse$1 as UpdateLineItemsQuantityResponse, type UpdateLineItemsQuantityResponseNonNullableFields$1 as UpdateLineItemsQuantityResponseNonNullableFields, type index_d$8_V1Coupon as V1Coupon, type index_d$8_V1MerchantDiscount as V1MerchantDiscount, type ValidationError$3 as ValidationError, type VatId$4 as VatId, VatType$4 as VatType, type Violation$2 as Violation, WebhookIdentityType$7 as WebhookIdentityType, WeightUnit$4 as WeightUnit, __metadata$8 as __metadata, index_d$8_addToCurrentCart as addToCurrentCart, index_d$8_createCheckoutFromCurrentCart as createCheckoutFromCurrentCart, index_d$8_deleteCurrentCart as deleteCurrentCart, index_d$8_estimateCurrentCartTotals as estimateCurrentCartTotals, index_d$8_getCurrentCart as getCurrentCart, index_d$8_onCartCreated as onCartCreated, index_d$8_onCartDeleted as onCartDeleted, index_d$8_onCartUpdated as onCartUpdated, index_d$8_removeCouponFromCurrentCart as removeCouponFromCurrentCart, index_d$8_removeLineItemsFromCurrentCart as removeLineItemsFromCurrentCart, index_d$8_updateCurrentCart as updateCurrentCart, index_d$8_updateCurrentCartLineItemQuantity as updateCurrentCartLineItemQuantity };
|
|
11083
11083
|
}
|
|
11084
11084
|
|
|
11085
11085
|
interface Checkout$1 {
|
|
@@ -11957,36 +11957,36 @@ interface PriceSummary$2 {
|
|
|
11957
11957
|
}
|
|
11958
11958
|
interface CalculationErrors$1 extends CalculationErrorsShippingCalculationErrorOneOf$1 {
|
|
11959
11959
|
/** General shipping calculation error. */
|
|
11960
|
-
generalShippingCalculationError?: Details$
|
|
11960
|
+
generalShippingCalculationError?: Details$2;
|
|
11961
11961
|
/** Carrier errors. */
|
|
11962
11962
|
carrierErrors?: CarrierErrors$1;
|
|
11963
11963
|
/** Tax calculation error. */
|
|
11964
|
-
taxCalculationError?: Details$
|
|
11964
|
+
taxCalculationError?: Details$2;
|
|
11965
11965
|
/** Coupon calculation error. */
|
|
11966
|
-
couponCalculationError?: Details$
|
|
11966
|
+
couponCalculationError?: Details$2;
|
|
11967
11967
|
/** Gift card calculation error. */
|
|
11968
|
-
giftCardCalculationError?: Details$
|
|
11968
|
+
giftCardCalculationError?: Details$2;
|
|
11969
11969
|
/** Order validation errors. */
|
|
11970
11970
|
orderValidationErrors?: ApplicationError$4[];
|
|
11971
11971
|
/**
|
|
11972
11972
|
* Membership payment methods calculation errors
|
|
11973
11973
|
* For example, will indicate that a line item that must be paid with membership payment doesn't have one or selected memberships are invalid
|
|
11974
11974
|
*/
|
|
11975
|
-
membershipError?: Details$
|
|
11975
|
+
membershipError?: Details$2;
|
|
11976
11976
|
/** Discount Rule calculation error. */
|
|
11977
|
-
discountsCalculationError?: Details$
|
|
11977
|
+
discountsCalculationError?: Details$2;
|
|
11978
11978
|
}
|
|
11979
11979
|
/** @oneof */
|
|
11980
11980
|
interface CalculationErrorsShippingCalculationErrorOneOf$1 {
|
|
11981
11981
|
/** General shipping calculation error. */
|
|
11982
|
-
generalShippingCalculationError?: Details$
|
|
11982
|
+
generalShippingCalculationError?: Details$2;
|
|
11983
11983
|
/** Carrier errors. */
|
|
11984
11984
|
carrierErrors?: CarrierErrors$1;
|
|
11985
11985
|
}
|
|
11986
|
-
interface Details$
|
|
11986
|
+
interface Details$2 extends DetailsKindOneOf$2 {
|
|
11987
11987
|
applicationError?: ApplicationError$4;
|
|
11988
|
-
validationError?: ValidationError$
|
|
11989
|
-
systemError?: SystemError$
|
|
11988
|
+
validationError?: ValidationError$2;
|
|
11989
|
+
systemError?: SystemError$2;
|
|
11990
11990
|
/**
|
|
11991
11991
|
* deprecated in API's - to enable migration from rendering arbitrary tracing to rest response
|
|
11992
11992
|
* @deprecated
|
|
@@ -11994,10 +11994,10 @@ interface Details$1 extends DetailsKindOneOf$1 {
|
|
|
11994
11994
|
tracing?: Record<string, string>;
|
|
11995
11995
|
}
|
|
11996
11996
|
/** @oneof */
|
|
11997
|
-
interface DetailsKindOneOf$
|
|
11997
|
+
interface DetailsKindOneOf$2 {
|
|
11998
11998
|
applicationError?: ApplicationError$4;
|
|
11999
|
-
validationError?: ValidationError$
|
|
12000
|
-
systemError?: SystemError$
|
|
11999
|
+
validationError?: ValidationError$2;
|
|
12000
|
+
systemError?: SystemError$2;
|
|
12001
12001
|
}
|
|
12002
12002
|
interface ApplicationError$4 {
|
|
12003
12003
|
/** Error code. */
|
|
@@ -12039,10 +12039,10 @@ interface ApplicationError$4 {
|
|
|
12039
12039
|
* ]
|
|
12040
12040
|
* }
|
|
12041
12041
|
*/
|
|
12042
|
-
interface ValidationError$
|
|
12043
|
-
fieldViolations?: FieldViolation$
|
|
12042
|
+
interface ValidationError$2 {
|
|
12043
|
+
fieldViolations?: FieldViolation$2[];
|
|
12044
12044
|
}
|
|
12045
|
-
declare enum RuleType$
|
|
12045
|
+
declare enum RuleType$2 {
|
|
12046
12046
|
VALIDATION = "VALIDATION",
|
|
12047
12047
|
OTHER = "OTHER",
|
|
12048
12048
|
MAX = "MAX",
|
|
@@ -12062,15 +12062,15 @@ declare enum RuleType$1 {
|
|
|
12062
12062
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
12063
12063
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
12064
12064
|
}
|
|
12065
|
-
interface FieldViolation$
|
|
12065
|
+
interface FieldViolation$2 {
|
|
12066
12066
|
field?: string;
|
|
12067
12067
|
description?: string;
|
|
12068
|
-
violatedRule?: RuleType$
|
|
12068
|
+
violatedRule?: RuleType$2;
|
|
12069
12069
|
/** applicable when violated_rule=OTHER */
|
|
12070
12070
|
ruleName?: string | null;
|
|
12071
12071
|
data?: Record<string, any> | null;
|
|
12072
12072
|
}
|
|
12073
|
-
interface SystemError$
|
|
12073
|
+
interface SystemError$2 {
|
|
12074
12074
|
/** Error code. */
|
|
12075
12075
|
errorCode?: string | null;
|
|
12076
12076
|
}
|
|
@@ -12082,7 +12082,7 @@ interface CarrierError$1 {
|
|
|
12082
12082
|
/** Carrier ID. */
|
|
12083
12083
|
carrierId?: string;
|
|
12084
12084
|
/** Error details. */
|
|
12085
|
-
error?: Details$
|
|
12085
|
+
error?: Details$2;
|
|
12086
12086
|
}
|
|
12087
12087
|
interface GiftCard$2 {
|
|
12088
12088
|
/**
|
|
@@ -12605,12 +12605,12 @@ interface CreateCheckoutResponse {
|
|
|
12605
12605
|
checkout?: Checkout$1;
|
|
12606
12606
|
}
|
|
12607
12607
|
interface ShippingCalculationErrorData extends ShippingCalculationErrorDataShippingCalculationErrorOneOf {
|
|
12608
|
-
generalShippingCalculationError?: Details$
|
|
12608
|
+
generalShippingCalculationError?: Details$2;
|
|
12609
12609
|
carrierErrors?: CarrierErrors$1;
|
|
12610
12610
|
}
|
|
12611
12611
|
/** @oneof */
|
|
12612
12612
|
interface ShippingCalculationErrorDataShippingCalculationErrorOneOf {
|
|
12613
|
-
generalShippingCalculationError?: Details$
|
|
12613
|
+
generalShippingCalculationError?: Details$2;
|
|
12614
12614
|
carrierErrors?: CarrierErrors$1;
|
|
12615
12615
|
}
|
|
12616
12616
|
interface GetCheckoutRequest {
|
|
@@ -13665,7 +13665,7 @@ interface CreateCheckoutResponseNonNullableFields {
|
|
|
13665
13665
|
fieldViolations: {
|
|
13666
13666
|
field: string;
|
|
13667
13667
|
description: string;
|
|
13668
|
-
violatedRule: RuleType$
|
|
13668
|
+
violatedRule: RuleType$2;
|
|
13669
13669
|
}[];
|
|
13670
13670
|
};
|
|
13671
13671
|
};
|
|
@@ -13681,7 +13681,7 @@ interface CreateCheckoutResponseNonNullableFields {
|
|
|
13681
13681
|
fieldViolations: {
|
|
13682
13682
|
field: string;
|
|
13683
13683
|
description: string;
|
|
13684
|
-
violatedRule: RuleType$
|
|
13684
|
+
violatedRule: RuleType$2;
|
|
13685
13685
|
}[];
|
|
13686
13686
|
};
|
|
13687
13687
|
};
|
|
@@ -13696,7 +13696,7 @@ interface CreateCheckoutResponseNonNullableFields {
|
|
|
13696
13696
|
fieldViolations: {
|
|
13697
13697
|
field: string;
|
|
13698
13698
|
description: string;
|
|
13699
|
-
violatedRule: RuleType$
|
|
13699
|
+
violatedRule: RuleType$2;
|
|
13700
13700
|
}[];
|
|
13701
13701
|
};
|
|
13702
13702
|
};
|
|
@@ -13709,7 +13709,7 @@ interface CreateCheckoutResponseNonNullableFields {
|
|
|
13709
13709
|
fieldViolations: {
|
|
13710
13710
|
field: string;
|
|
13711
13711
|
description: string;
|
|
13712
|
-
violatedRule: RuleType$
|
|
13712
|
+
violatedRule: RuleType$2;
|
|
13713
13713
|
}[];
|
|
13714
13714
|
};
|
|
13715
13715
|
};
|
|
@@ -13722,7 +13722,7 @@ interface CreateCheckoutResponseNonNullableFields {
|
|
|
13722
13722
|
fieldViolations: {
|
|
13723
13723
|
field: string;
|
|
13724
13724
|
description: string;
|
|
13725
|
-
violatedRule: RuleType$
|
|
13725
|
+
violatedRule: RuleType$2;
|
|
13726
13726
|
}[];
|
|
13727
13727
|
};
|
|
13728
13728
|
};
|
|
@@ -13739,7 +13739,7 @@ interface CreateCheckoutResponseNonNullableFields {
|
|
|
13739
13739
|
fieldViolations: {
|
|
13740
13740
|
field: string;
|
|
13741
13741
|
description: string;
|
|
13742
|
-
violatedRule: RuleType$
|
|
13742
|
+
violatedRule: RuleType$2;
|
|
13743
13743
|
}[];
|
|
13744
13744
|
};
|
|
13745
13745
|
};
|
|
@@ -13752,7 +13752,7 @@ interface CreateCheckoutResponseNonNullableFields {
|
|
|
13752
13752
|
fieldViolations: {
|
|
13753
13753
|
field: string;
|
|
13754
13754
|
description: string;
|
|
13755
|
-
violatedRule: RuleType$
|
|
13755
|
+
violatedRule: RuleType$2;
|
|
13756
13756
|
}[];
|
|
13757
13757
|
};
|
|
13758
13758
|
};
|
|
@@ -14367,7 +14367,7 @@ interface GetCheckoutResponseNonNullableFields {
|
|
|
14367
14367
|
fieldViolations: {
|
|
14368
14368
|
field: string;
|
|
14369
14369
|
description: string;
|
|
14370
|
-
violatedRule: RuleType$
|
|
14370
|
+
violatedRule: RuleType$2;
|
|
14371
14371
|
}[];
|
|
14372
14372
|
};
|
|
14373
14373
|
};
|
|
@@ -14383,7 +14383,7 @@ interface GetCheckoutResponseNonNullableFields {
|
|
|
14383
14383
|
fieldViolations: {
|
|
14384
14384
|
field: string;
|
|
14385
14385
|
description: string;
|
|
14386
|
-
violatedRule: RuleType$
|
|
14386
|
+
violatedRule: RuleType$2;
|
|
14387
14387
|
}[];
|
|
14388
14388
|
};
|
|
14389
14389
|
};
|
|
@@ -14398,7 +14398,7 @@ interface GetCheckoutResponseNonNullableFields {
|
|
|
14398
14398
|
fieldViolations: {
|
|
14399
14399
|
field: string;
|
|
14400
14400
|
description: string;
|
|
14401
|
-
violatedRule: RuleType$
|
|
14401
|
+
violatedRule: RuleType$2;
|
|
14402
14402
|
}[];
|
|
14403
14403
|
};
|
|
14404
14404
|
};
|
|
@@ -14411,7 +14411,7 @@ interface GetCheckoutResponseNonNullableFields {
|
|
|
14411
14411
|
fieldViolations: {
|
|
14412
14412
|
field: string;
|
|
14413
14413
|
description: string;
|
|
14414
|
-
violatedRule: RuleType$
|
|
14414
|
+
violatedRule: RuleType$2;
|
|
14415
14415
|
}[];
|
|
14416
14416
|
};
|
|
14417
14417
|
};
|
|
@@ -14424,7 +14424,7 @@ interface GetCheckoutResponseNonNullableFields {
|
|
|
14424
14424
|
fieldViolations: {
|
|
14425
14425
|
field: string;
|
|
14426
14426
|
description: string;
|
|
14427
|
-
violatedRule: RuleType$
|
|
14427
|
+
violatedRule: RuleType$2;
|
|
14428
14428
|
}[];
|
|
14429
14429
|
};
|
|
14430
14430
|
};
|
|
@@ -14441,7 +14441,7 @@ interface GetCheckoutResponseNonNullableFields {
|
|
|
14441
14441
|
fieldViolations: {
|
|
14442
14442
|
field: string;
|
|
14443
14443
|
description: string;
|
|
14444
|
-
violatedRule: RuleType$
|
|
14444
|
+
violatedRule: RuleType$2;
|
|
14445
14445
|
}[];
|
|
14446
14446
|
};
|
|
14447
14447
|
};
|
|
@@ -14454,7 +14454,7 @@ interface GetCheckoutResponseNonNullableFields {
|
|
|
14454
14454
|
fieldViolations: {
|
|
14455
14455
|
field: string;
|
|
14456
14456
|
description: string;
|
|
14457
|
-
violatedRule: RuleType$
|
|
14457
|
+
violatedRule: RuleType$2;
|
|
14458
14458
|
}[];
|
|
14459
14459
|
};
|
|
14460
14460
|
};
|
|
@@ -15072,7 +15072,7 @@ interface UpdateCheckoutResponseNonNullableFields {
|
|
|
15072
15072
|
fieldViolations: {
|
|
15073
15073
|
field: string;
|
|
15074
15074
|
description: string;
|
|
15075
|
-
violatedRule: RuleType$
|
|
15075
|
+
violatedRule: RuleType$2;
|
|
15076
15076
|
}[];
|
|
15077
15077
|
};
|
|
15078
15078
|
};
|
|
@@ -15088,7 +15088,7 @@ interface UpdateCheckoutResponseNonNullableFields {
|
|
|
15088
15088
|
fieldViolations: {
|
|
15089
15089
|
field: string;
|
|
15090
15090
|
description: string;
|
|
15091
|
-
violatedRule: RuleType$
|
|
15091
|
+
violatedRule: RuleType$2;
|
|
15092
15092
|
}[];
|
|
15093
15093
|
};
|
|
15094
15094
|
};
|
|
@@ -15103,7 +15103,7 @@ interface UpdateCheckoutResponseNonNullableFields {
|
|
|
15103
15103
|
fieldViolations: {
|
|
15104
15104
|
field: string;
|
|
15105
15105
|
description: string;
|
|
15106
|
-
violatedRule: RuleType$
|
|
15106
|
+
violatedRule: RuleType$2;
|
|
15107
15107
|
}[];
|
|
15108
15108
|
};
|
|
15109
15109
|
};
|
|
@@ -15116,7 +15116,7 @@ interface UpdateCheckoutResponseNonNullableFields {
|
|
|
15116
15116
|
fieldViolations: {
|
|
15117
15117
|
field: string;
|
|
15118
15118
|
description: string;
|
|
15119
|
-
violatedRule: RuleType$
|
|
15119
|
+
violatedRule: RuleType$2;
|
|
15120
15120
|
}[];
|
|
15121
15121
|
};
|
|
15122
15122
|
};
|
|
@@ -15129,7 +15129,7 @@ interface UpdateCheckoutResponseNonNullableFields {
|
|
|
15129
15129
|
fieldViolations: {
|
|
15130
15130
|
field: string;
|
|
15131
15131
|
description: string;
|
|
15132
|
-
violatedRule: RuleType$
|
|
15132
|
+
violatedRule: RuleType$2;
|
|
15133
15133
|
}[];
|
|
15134
15134
|
};
|
|
15135
15135
|
};
|
|
@@ -15146,7 +15146,7 @@ interface UpdateCheckoutResponseNonNullableFields {
|
|
|
15146
15146
|
fieldViolations: {
|
|
15147
15147
|
field: string;
|
|
15148
15148
|
description: string;
|
|
15149
|
-
violatedRule: RuleType$
|
|
15149
|
+
violatedRule: RuleType$2;
|
|
15150
15150
|
}[];
|
|
15151
15151
|
};
|
|
15152
15152
|
};
|
|
@@ -15159,7 +15159,7 @@ interface UpdateCheckoutResponseNonNullableFields {
|
|
|
15159
15159
|
fieldViolations: {
|
|
15160
15160
|
field: string;
|
|
15161
15161
|
description: string;
|
|
15162
|
-
violatedRule: RuleType$
|
|
15162
|
+
violatedRule: RuleType$2;
|
|
15163
15163
|
}[];
|
|
15164
15164
|
};
|
|
15165
15165
|
};
|
|
@@ -15774,7 +15774,7 @@ interface RemoveCouponResponseNonNullableFields {
|
|
|
15774
15774
|
fieldViolations: {
|
|
15775
15775
|
field: string;
|
|
15776
15776
|
description: string;
|
|
15777
|
-
violatedRule: RuleType$
|
|
15777
|
+
violatedRule: RuleType$2;
|
|
15778
15778
|
}[];
|
|
15779
15779
|
};
|
|
15780
15780
|
};
|
|
@@ -15790,7 +15790,7 @@ interface RemoveCouponResponseNonNullableFields {
|
|
|
15790
15790
|
fieldViolations: {
|
|
15791
15791
|
field: string;
|
|
15792
15792
|
description: string;
|
|
15793
|
-
violatedRule: RuleType$
|
|
15793
|
+
violatedRule: RuleType$2;
|
|
15794
15794
|
}[];
|
|
15795
15795
|
};
|
|
15796
15796
|
};
|
|
@@ -15805,7 +15805,7 @@ interface RemoveCouponResponseNonNullableFields {
|
|
|
15805
15805
|
fieldViolations: {
|
|
15806
15806
|
field: string;
|
|
15807
15807
|
description: string;
|
|
15808
|
-
violatedRule: RuleType$
|
|
15808
|
+
violatedRule: RuleType$2;
|
|
15809
15809
|
}[];
|
|
15810
15810
|
};
|
|
15811
15811
|
};
|
|
@@ -15818,7 +15818,7 @@ interface RemoveCouponResponseNonNullableFields {
|
|
|
15818
15818
|
fieldViolations: {
|
|
15819
15819
|
field: string;
|
|
15820
15820
|
description: string;
|
|
15821
|
-
violatedRule: RuleType$
|
|
15821
|
+
violatedRule: RuleType$2;
|
|
15822
15822
|
}[];
|
|
15823
15823
|
};
|
|
15824
15824
|
};
|
|
@@ -15831,7 +15831,7 @@ interface RemoveCouponResponseNonNullableFields {
|
|
|
15831
15831
|
fieldViolations: {
|
|
15832
15832
|
field: string;
|
|
15833
15833
|
description: string;
|
|
15834
|
-
violatedRule: RuleType$
|
|
15834
|
+
violatedRule: RuleType$2;
|
|
15835
15835
|
}[];
|
|
15836
15836
|
};
|
|
15837
15837
|
};
|
|
@@ -15848,7 +15848,7 @@ interface RemoveCouponResponseNonNullableFields {
|
|
|
15848
15848
|
fieldViolations: {
|
|
15849
15849
|
field: string;
|
|
15850
15850
|
description: string;
|
|
15851
|
-
violatedRule: RuleType$
|
|
15851
|
+
violatedRule: RuleType$2;
|
|
15852
15852
|
}[];
|
|
15853
15853
|
};
|
|
15854
15854
|
};
|
|
@@ -15861,7 +15861,7 @@ interface RemoveCouponResponseNonNullableFields {
|
|
|
15861
15861
|
fieldViolations: {
|
|
15862
15862
|
field: string;
|
|
15863
15863
|
description: string;
|
|
15864
|
-
violatedRule: RuleType$
|
|
15864
|
+
violatedRule: RuleType$2;
|
|
15865
15865
|
}[];
|
|
15866
15866
|
};
|
|
15867
15867
|
};
|
|
@@ -16476,7 +16476,7 @@ interface RemoveGiftCardResponseNonNullableFields {
|
|
|
16476
16476
|
fieldViolations: {
|
|
16477
16477
|
field: string;
|
|
16478
16478
|
description: string;
|
|
16479
|
-
violatedRule: RuleType$
|
|
16479
|
+
violatedRule: RuleType$2;
|
|
16480
16480
|
}[];
|
|
16481
16481
|
};
|
|
16482
16482
|
};
|
|
@@ -16492,7 +16492,7 @@ interface RemoveGiftCardResponseNonNullableFields {
|
|
|
16492
16492
|
fieldViolations: {
|
|
16493
16493
|
field: string;
|
|
16494
16494
|
description: string;
|
|
16495
|
-
violatedRule: RuleType$
|
|
16495
|
+
violatedRule: RuleType$2;
|
|
16496
16496
|
}[];
|
|
16497
16497
|
};
|
|
16498
16498
|
};
|
|
@@ -16507,7 +16507,7 @@ interface RemoveGiftCardResponseNonNullableFields {
|
|
|
16507
16507
|
fieldViolations: {
|
|
16508
16508
|
field: string;
|
|
16509
16509
|
description: string;
|
|
16510
|
-
violatedRule: RuleType$
|
|
16510
|
+
violatedRule: RuleType$2;
|
|
16511
16511
|
}[];
|
|
16512
16512
|
};
|
|
16513
16513
|
};
|
|
@@ -16520,7 +16520,7 @@ interface RemoveGiftCardResponseNonNullableFields {
|
|
|
16520
16520
|
fieldViolations: {
|
|
16521
16521
|
field: string;
|
|
16522
16522
|
description: string;
|
|
16523
|
-
violatedRule: RuleType$
|
|
16523
|
+
violatedRule: RuleType$2;
|
|
16524
16524
|
}[];
|
|
16525
16525
|
};
|
|
16526
16526
|
};
|
|
@@ -16533,7 +16533,7 @@ interface RemoveGiftCardResponseNonNullableFields {
|
|
|
16533
16533
|
fieldViolations: {
|
|
16534
16534
|
field: string;
|
|
16535
16535
|
description: string;
|
|
16536
|
-
violatedRule: RuleType$
|
|
16536
|
+
violatedRule: RuleType$2;
|
|
16537
16537
|
}[];
|
|
16538
16538
|
};
|
|
16539
16539
|
};
|
|
@@ -16550,7 +16550,7 @@ interface RemoveGiftCardResponseNonNullableFields {
|
|
|
16550
16550
|
fieldViolations: {
|
|
16551
16551
|
field: string;
|
|
16552
16552
|
description: string;
|
|
16553
|
-
violatedRule: RuleType$
|
|
16553
|
+
violatedRule: RuleType$2;
|
|
16554
16554
|
}[];
|
|
16555
16555
|
};
|
|
16556
16556
|
};
|
|
@@ -16563,7 +16563,7 @@ interface RemoveGiftCardResponseNonNullableFields {
|
|
|
16563
16563
|
fieldViolations: {
|
|
16564
16564
|
field: string;
|
|
16565
16565
|
description: string;
|
|
16566
|
-
violatedRule: RuleType$
|
|
16566
|
+
violatedRule: RuleType$2;
|
|
16567
16567
|
}[];
|
|
16568
16568
|
};
|
|
16569
16569
|
};
|
|
@@ -17178,7 +17178,7 @@ interface RemoveOverrideCheckoutUrlResponseNonNullableFields {
|
|
|
17178
17178
|
fieldViolations: {
|
|
17179
17179
|
field: string;
|
|
17180
17180
|
description: string;
|
|
17181
|
-
violatedRule: RuleType$
|
|
17181
|
+
violatedRule: RuleType$2;
|
|
17182
17182
|
}[];
|
|
17183
17183
|
};
|
|
17184
17184
|
};
|
|
@@ -17194,7 +17194,7 @@ interface RemoveOverrideCheckoutUrlResponseNonNullableFields {
|
|
|
17194
17194
|
fieldViolations: {
|
|
17195
17195
|
field: string;
|
|
17196
17196
|
description: string;
|
|
17197
|
-
violatedRule: RuleType$
|
|
17197
|
+
violatedRule: RuleType$2;
|
|
17198
17198
|
}[];
|
|
17199
17199
|
};
|
|
17200
17200
|
};
|
|
@@ -17209,7 +17209,7 @@ interface RemoveOverrideCheckoutUrlResponseNonNullableFields {
|
|
|
17209
17209
|
fieldViolations: {
|
|
17210
17210
|
field: string;
|
|
17211
17211
|
description: string;
|
|
17212
|
-
violatedRule: RuleType$
|
|
17212
|
+
violatedRule: RuleType$2;
|
|
17213
17213
|
}[];
|
|
17214
17214
|
};
|
|
17215
17215
|
};
|
|
@@ -17222,7 +17222,7 @@ interface RemoveOverrideCheckoutUrlResponseNonNullableFields {
|
|
|
17222
17222
|
fieldViolations: {
|
|
17223
17223
|
field: string;
|
|
17224
17224
|
description: string;
|
|
17225
|
-
violatedRule: RuleType$
|
|
17225
|
+
violatedRule: RuleType$2;
|
|
17226
17226
|
}[];
|
|
17227
17227
|
};
|
|
17228
17228
|
};
|
|
@@ -17235,7 +17235,7 @@ interface RemoveOverrideCheckoutUrlResponseNonNullableFields {
|
|
|
17235
17235
|
fieldViolations: {
|
|
17236
17236
|
field: string;
|
|
17237
17237
|
description: string;
|
|
17238
|
-
violatedRule: RuleType$
|
|
17238
|
+
violatedRule: RuleType$2;
|
|
17239
17239
|
}[];
|
|
17240
17240
|
};
|
|
17241
17241
|
};
|
|
@@ -17252,7 +17252,7 @@ interface RemoveOverrideCheckoutUrlResponseNonNullableFields {
|
|
|
17252
17252
|
fieldViolations: {
|
|
17253
17253
|
field: string;
|
|
17254
17254
|
description: string;
|
|
17255
|
-
violatedRule: RuleType$
|
|
17255
|
+
violatedRule: RuleType$2;
|
|
17256
17256
|
}[];
|
|
17257
17257
|
};
|
|
17258
17258
|
};
|
|
@@ -17265,7 +17265,7 @@ interface RemoveOverrideCheckoutUrlResponseNonNullableFields {
|
|
|
17265
17265
|
fieldViolations: {
|
|
17266
17266
|
field: string;
|
|
17267
17267
|
description: string;
|
|
17268
|
-
violatedRule: RuleType$
|
|
17268
|
+
violatedRule: RuleType$2;
|
|
17269
17269
|
}[];
|
|
17270
17270
|
};
|
|
17271
17271
|
};
|
|
@@ -17880,7 +17880,7 @@ interface AddToCheckoutResponseNonNullableFields {
|
|
|
17880
17880
|
fieldViolations: {
|
|
17881
17881
|
field: string;
|
|
17882
17882
|
description: string;
|
|
17883
|
-
violatedRule: RuleType$
|
|
17883
|
+
violatedRule: RuleType$2;
|
|
17884
17884
|
}[];
|
|
17885
17885
|
};
|
|
17886
17886
|
};
|
|
@@ -17896,7 +17896,7 @@ interface AddToCheckoutResponseNonNullableFields {
|
|
|
17896
17896
|
fieldViolations: {
|
|
17897
17897
|
field: string;
|
|
17898
17898
|
description: string;
|
|
17899
|
-
violatedRule: RuleType$
|
|
17899
|
+
violatedRule: RuleType$2;
|
|
17900
17900
|
}[];
|
|
17901
17901
|
};
|
|
17902
17902
|
};
|
|
@@ -17911,7 +17911,7 @@ interface AddToCheckoutResponseNonNullableFields {
|
|
|
17911
17911
|
fieldViolations: {
|
|
17912
17912
|
field: string;
|
|
17913
17913
|
description: string;
|
|
17914
|
-
violatedRule: RuleType$
|
|
17914
|
+
violatedRule: RuleType$2;
|
|
17915
17915
|
}[];
|
|
17916
17916
|
};
|
|
17917
17917
|
};
|
|
@@ -17924,7 +17924,7 @@ interface AddToCheckoutResponseNonNullableFields {
|
|
|
17924
17924
|
fieldViolations: {
|
|
17925
17925
|
field: string;
|
|
17926
17926
|
description: string;
|
|
17927
|
-
violatedRule: RuleType$
|
|
17927
|
+
violatedRule: RuleType$2;
|
|
17928
17928
|
}[];
|
|
17929
17929
|
};
|
|
17930
17930
|
};
|
|
@@ -17937,7 +17937,7 @@ interface AddToCheckoutResponseNonNullableFields {
|
|
|
17937
17937
|
fieldViolations: {
|
|
17938
17938
|
field: string;
|
|
17939
17939
|
description: string;
|
|
17940
|
-
violatedRule: RuleType$
|
|
17940
|
+
violatedRule: RuleType$2;
|
|
17941
17941
|
}[];
|
|
17942
17942
|
};
|
|
17943
17943
|
};
|
|
@@ -17954,7 +17954,7 @@ interface AddToCheckoutResponseNonNullableFields {
|
|
|
17954
17954
|
fieldViolations: {
|
|
17955
17955
|
field: string;
|
|
17956
17956
|
description: string;
|
|
17957
|
-
violatedRule: RuleType$
|
|
17957
|
+
violatedRule: RuleType$2;
|
|
17958
17958
|
}[];
|
|
17959
17959
|
};
|
|
17960
17960
|
};
|
|
@@ -17967,7 +17967,7 @@ interface AddToCheckoutResponseNonNullableFields {
|
|
|
17967
17967
|
fieldViolations: {
|
|
17968
17968
|
field: string;
|
|
17969
17969
|
description: string;
|
|
17970
|
-
violatedRule: RuleType$
|
|
17970
|
+
violatedRule: RuleType$2;
|
|
17971
17971
|
}[];
|
|
17972
17972
|
};
|
|
17973
17973
|
};
|
|
@@ -18582,7 +18582,7 @@ interface RemoveLineItemsResponseNonNullableFields {
|
|
|
18582
18582
|
fieldViolations: {
|
|
18583
18583
|
field: string;
|
|
18584
18584
|
description: string;
|
|
18585
|
-
violatedRule: RuleType$
|
|
18585
|
+
violatedRule: RuleType$2;
|
|
18586
18586
|
}[];
|
|
18587
18587
|
};
|
|
18588
18588
|
};
|
|
@@ -18598,7 +18598,7 @@ interface RemoveLineItemsResponseNonNullableFields {
|
|
|
18598
18598
|
fieldViolations: {
|
|
18599
18599
|
field: string;
|
|
18600
18600
|
description: string;
|
|
18601
|
-
violatedRule: RuleType$
|
|
18601
|
+
violatedRule: RuleType$2;
|
|
18602
18602
|
}[];
|
|
18603
18603
|
};
|
|
18604
18604
|
};
|
|
@@ -18613,7 +18613,7 @@ interface RemoveLineItemsResponseNonNullableFields {
|
|
|
18613
18613
|
fieldViolations: {
|
|
18614
18614
|
field: string;
|
|
18615
18615
|
description: string;
|
|
18616
|
-
violatedRule: RuleType$
|
|
18616
|
+
violatedRule: RuleType$2;
|
|
18617
18617
|
}[];
|
|
18618
18618
|
};
|
|
18619
18619
|
};
|
|
@@ -18626,7 +18626,7 @@ interface RemoveLineItemsResponseNonNullableFields {
|
|
|
18626
18626
|
fieldViolations: {
|
|
18627
18627
|
field: string;
|
|
18628
18628
|
description: string;
|
|
18629
|
-
violatedRule: RuleType$
|
|
18629
|
+
violatedRule: RuleType$2;
|
|
18630
18630
|
}[];
|
|
18631
18631
|
};
|
|
18632
18632
|
};
|
|
@@ -18639,7 +18639,7 @@ interface RemoveLineItemsResponseNonNullableFields {
|
|
|
18639
18639
|
fieldViolations: {
|
|
18640
18640
|
field: string;
|
|
18641
18641
|
description: string;
|
|
18642
|
-
violatedRule: RuleType$
|
|
18642
|
+
violatedRule: RuleType$2;
|
|
18643
18643
|
}[];
|
|
18644
18644
|
};
|
|
18645
18645
|
};
|
|
@@ -18656,7 +18656,7 @@ interface RemoveLineItemsResponseNonNullableFields {
|
|
|
18656
18656
|
fieldViolations: {
|
|
18657
18657
|
field: string;
|
|
18658
18658
|
description: string;
|
|
18659
|
-
violatedRule: RuleType$
|
|
18659
|
+
violatedRule: RuleType$2;
|
|
18660
18660
|
}[];
|
|
18661
18661
|
};
|
|
18662
18662
|
};
|
|
@@ -18669,7 +18669,7 @@ interface RemoveLineItemsResponseNonNullableFields {
|
|
|
18669
18669
|
fieldViolations: {
|
|
18670
18670
|
field: string;
|
|
18671
18671
|
description: string;
|
|
18672
|
-
violatedRule: RuleType$
|
|
18672
|
+
violatedRule: RuleType$2;
|
|
18673
18673
|
}[];
|
|
18674
18674
|
};
|
|
18675
18675
|
};
|
|
@@ -19288,7 +19288,7 @@ interface UpdateLineItemsQuantityResponseNonNullableFields {
|
|
|
19288
19288
|
fieldViolations: {
|
|
19289
19289
|
field: string;
|
|
19290
19290
|
description: string;
|
|
19291
|
-
violatedRule: RuleType$
|
|
19291
|
+
violatedRule: RuleType$2;
|
|
19292
19292
|
}[];
|
|
19293
19293
|
};
|
|
19294
19294
|
};
|
|
@@ -19304,7 +19304,7 @@ interface UpdateLineItemsQuantityResponseNonNullableFields {
|
|
|
19304
19304
|
fieldViolations: {
|
|
19305
19305
|
field: string;
|
|
19306
19306
|
description: string;
|
|
19307
|
-
violatedRule: RuleType$
|
|
19307
|
+
violatedRule: RuleType$2;
|
|
19308
19308
|
}[];
|
|
19309
19309
|
};
|
|
19310
19310
|
};
|
|
@@ -19319,7 +19319,7 @@ interface UpdateLineItemsQuantityResponseNonNullableFields {
|
|
|
19319
19319
|
fieldViolations: {
|
|
19320
19320
|
field: string;
|
|
19321
19321
|
description: string;
|
|
19322
|
-
violatedRule: RuleType$
|
|
19322
|
+
violatedRule: RuleType$2;
|
|
19323
19323
|
}[];
|
|
19324
19324
|
};
|
|
19325
19325
|
};
|
|
@@ -19332,7 +19332,7 @@ interface UpdateLineItemsQuantityResponseNonNullableFields {
|
|
|
19332
19332
|
fieldViolations: {
|
|
19333
19333
|
field: string;
|
|
19334
19334
|
description: string;
|
|
19335
|
-
violatedRule: RuleType$
|
|
19335
|
+
violatedRule: RuleType$2;
|
|
19336
19336
|
}[];
|
|
19337
19337
|
};
|
|
19338
19338
|
};
|
|
@@ -19345,7 +19345,7 @@ interface UpdateLineItemsQuantityResponseNonNullableFields {
|
|
|
19345
19345
|
fieldViolations: {
|
|
19346
19346
|
field: string;
|
|
19347
19347
|
description: string;
|
|
19348
|
-
violatedRule: RuleType$
|
|
19348
|
+
violatedRule: RuleType$2;
|
|
19349
19349
|
}[];
|
|
19350
19350
|
};
|
|
19351
19351
|
};
|
|
@@ -19362,7 +19362,7 @@ interface UpdateLineItemsQuantityResponseNonNullableFields {
|
|
|
19362
19362
|
fieldViolations: {
|
|
19363
19363
|
field: string;
|
|
19364
19364
|
description: string;
|
|
19365
|
-
violatedRule: RuleType$
|
|
19365
|
+
violatedRule: RuleType$2;
|
|
19366
19366
|
}[];
|
|
19367
19367
|
};
|
|
19368
19368
|
};
|
|
@@ -19375,7 +19375,7 @@ interface UpdateLineItemsQuantityResponseNonNullableFields {
|
|
|
19375
19375
|
fieldViolations: {
|
|
19376
19376
|
field: string;
|
|
19377
19377
|
description: string;
|
|
19378
|
-
violatedRule: RuleType$
|
|
19378
|
+
violatedRule: RuleType$2;
|
|
19379
19379
|
}[];
|
|
19380
19380
|
};
|
|
19381
19381
|
};
|
|
@@ -20250,7 +20250,7 @@ declare function createCheckout(httpClient: HttpClient): (options?: CreateChecko
|
|
|
20250
20250
|
fieldViolations: {
|
|
20251
20251
|
field: string;
|
|
20252
20252
|
description: string;
|
|
20253
|
-
violatedRule: RuleType$
|
|
20253
|
+
violatedRule: RuleType$2;
|
|
20254
20254
|
}[];
|
|
20255
20255
|
} | undefined;
|
|
20256
20256
|
} | undefined;
|
|
@@ -20266,7 +20266,7 @@ declare function createCheckout(httpClient: HttpClient): (options?: CreateChecko
|
|
|
20266
20266
|
fieldViolations: {
|
|
20267
20267
|
field: string;
|
|
20268
20268
|
description: string;
|
|
20269
|
-
violatedRule: RuleType$
|
|
20269
|
+
violatedRule: RuleType$2;
|
|
20270
20270
|
}[];
|
|
20271
20271
|
} | undefined;
|
|
20272
20272
|
} | undefined;
|
|
@@ -20281,7 +20281,7 @@ declare function createCheckout(httpClient: HttpClient): (options?: CreateChecko
|
|
|
20281
20281
|
fieldViolations: {
|
|
20282
20282
|
field: string;
|
|
20283
20283
|
description: string;
|
|
20284
|
-
violatedRule: RuleType$
|
|
20284
|
+
violatedRule: RuleType$2;
|
|
20285
20285
|
}[];
|
|
20286
20286
|
} | undefined;
|
|
20287
20287
|
} | undefined;
|
|
@@ -20294,7 +20294,7 @@ declare function createCheckout(httpClient: HttpClient): (options?: CreateChecko
|
|
|
20294
20294
|
fieldViolations: {
|
|
20295
20295
|
field: string;
|
|
20296
20296
|
description: string;
|
|
20297
|
-
violatedRule: RuleType$
|
|
20297
|
+
violatedRule: RuleType$2;
|
|
20298
20298
|
}[];
|
|
20299
20299
|
} | undefined;
|
|
20300
20300
|
} | undefined;
|
|
@@ -20307,7 +20307,7 @@ declare function createCheckout(httpClient: HttpClient): (options?: CreateChecko
|
|
|
20307
20307
|
fieldViolations: {
|
|
20308
20308
|
field: string;
|
|
20309
20309
|
description: string;
|
|
20310
|
-
violatedRule: RuleType$
|
|
20310
|
+
violatedRule: RuleType$2;
|
|
20311
20311
|
}[];
|
|
20312
20312
|
} | undefined;
|
|
20313
20313
|
} | undefined;
|
|
@@ -20324,7 +20324,7 @@ declare function createCheckout(httpClient: HttpClient): (options?: CreateChecko
|
|
|
20324
20324
|
fieldViolations: {
|
|
20325
20325
|
field: string;
|
|
20326
20326
|
description: string;
|
|
20327
|
-
violatedRule: RuleType$
|
|
20327
|
+
violatedRule: RuleType$2;
|
|
20328
20328
|
}[];
|
|
20329
20329
|
} | undefined;
|
|
20330
20330
|
} | undefined;
|
|
@@ -20337,7 +20337,7 @@ declare function createCheckout(httpClient: HttpClient): (options?: CreateChecko
|
|
|
20337
20337
|
fieldViolations: {
|
|
20338
20338
|
field: string;
|
|
20339
20339
|
description: string;
|
|
20340
|
-
violatedRule: RuleType$
|
|
20340
|
+
violatedRule: RuleType$2;
|
|
20341
20341
|
}[];
|
|
20342
20342
|
} | undefined;
|
|
20343
20343
|
} | undefined;
|
|
@@ -20952,7 +20952,7 @@ declare function updateCheckout(httpClient: HttpClient): (_id: string | null, ch
|
|
|
20952
20952
|
fieldViolations: {
|
|
20953
20953
|
field: string;
|
|
20954
20954
|
description: string;
|
|
20955
|
-
violatedRule: RuleType$
|
|
20955
|
+
violatedRule: RuleType$2;
|
|
20956
20956
|
}[];
|
|
20957
20957
|
} | undefined;
|
|
20958
20958
|
} | undefined;
|
|
@@ -20968,7 +20968,7 @@ declare function updateCheckout(httpClient: HttpClient): (_id: string | null, ch
|
|
|
20968
20968
|
fieldViolations: {
|
|
20969
20969
|
field: string;
|
|
20970
20970
|
description: string;
|
|
20971
|
-
violatedRule: RuleType$
|
|
20971
|
+
violatedRule: RuleType$2;
|
|
20972
20972
|
}[];
|
|
20973
20973
|
} | undefined;
|
|
20974
20974
|
} | undefined;
|
|
@@ -20983,7 +20983,7 @@ declare function updateCheckout(httpClient: HttpClient): (_id: string | null, ch
|
|
|
20983
20983
|
fieldViolations: {
|
|
20984
20984
|
field: string;
|
|
20985
20985
|
description: string;
|
|
20986
|
-
violatedRule: RuleType$
|
|
20986
|
+
violatedRule: RuleType$2;
|
|
20987
20987
|
}[];
|
|
20988
20988
|
} | undefined;
|
|
20989
20989
|
} | undefined;
|
|
@@ -20996,7 +20996,7 @@ declare function updateCheckout(httpClient: HttpClient): (_id: string | null, ch
|
|
|
20996
20996
|
fieldViolations: {
|
|
20997
20997
|
field: string;
|
|
20998
20998
|
description: string;
|
|
20999
|
-
violatedRule: RuleType$
|
|
20999
|
+
violatedRule: RuleType$2;
|
|
21000
21000
|
}[];
|
|
21001
21001
|
} | undefined;
|
|
21002
21002
|
} | undefined;
|
|
@@ -21009,7 +21009,7 @@ declare function updateCheckout(httpClient: HttpClient): (_id: string | null, ch
|
|
|
21009
21009
|
fieldViolations: {
|
|
21010
21010
|
field: string;
|
|
21011
21011
|
description: string;
|
|
21012
|
-
violatedRule: RuleType$
|
|
21012
|
+
violatedRule: RuleType$2;
|
|
21013
21013
|
}[];
|
|
21014
21014
|
} | undefined;
|
|
21015
21015
|
} | undefined;
|
|
@@ -21026,7 +21026,7 @@ declare function updateCheckout(httpClient: HttpClient): (_id: string | null, ch
|
|
|
21026
21026
|
fieldViolations: {
|
|
21027
21027
|
field: string;
|
|
21028
21028
|
description: string;
|
|
21029
|
-
violatedRule: RuleType$
|
|
21029
|
+
violatedRule: RuleType$2;
|
|
21030
21030
|
}[];
|
|
21031
21031
|
} | undefined;
|
|
21032
21032
|
} | undefined;
|
|
@@ -21039,7 +21039,7 @@ declare function updateCheckout(httpClient: HttpClient): (_id: string | null, ch
|
|
|
21039
21039
|
fieldViolations: {
|
|
21040
21040
|
field: string;
|
|
21041
21041
|
description: string;
|
|
21042
|
-
violatedRule: RuleType$
|
|
21042
|
+
violatedRule: RuleType$2;
|
|
21043
21043
|
}[];
|
|
21044
21044
|
} | undefined;
|
|
21045
21045
|
} | undefined;
|
|
@@ -21407,7 +21407,7 @@ declare const index_d$7_removeOverrideCheckoutUrl: typeof removeOverrideCheckout
|
|
|
21407
21407
|
declare const index_d$7_updateCheckout: typeof updateCheckout;
|
|
21408
21408
|
declare const index_d$7_updateLineItemsQuantity: typeof updateLineItemsQuantity;
|
|
21409
21409
|
declare namespace index_d$7 {
|
|
21410
|
-
export { type ActionEvent$6 as ActionEvent, type index_d$7_AddToCheckoutOptions as AddToCheckoutOptions, type index_d$7_AddToCheckoutRequest as AddToCheckoutRequest, type index_d$7_AddToCheckoutResponse as AddToCheckoutResponse, type index_d$7_AddToCheckoutResponseNonNullableFields as AddToCheckoutResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type Address$3 as Address, type AddressAddressLine1OptionsOneOf$1 as AddressAddressLine1OptionsOneOf, type AddressLocation$2 as AddressLocation, type AddressWithContact$2 as AddressWithContact, type AggregatedTaxBreakdown$1 as AggregatedTaxBreakdown, type index_d$7_ApiAddress as ApiAddress, type ApplicationError$4 as ApplicationError, type AppliedCoupon$1 as AppliedCoupon, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$1 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$6 as BaseEventMetadata, type BillingInfo$1 as BillingInfo, type BuyerInfo$4 as BuyerInfo, type BuyerInfoIdOneOf$2 as BuyerInfoIdOneOf, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CarrierServiceOption$1 as CarrierServiceOption, type CatalogOverrideFields$1 as CatalogOverrideFields, type CatalogReference$2 as CatalogReference, type ChannelInfo$2 as ChannelInfo, index_d$7_ChannelInfoChannelType as ChannelInfoChannelType, ChannelType$3 as ChannelType, type index_d$7_ChargeDetails as ChargeDetails, ChargeType$1 as ChargeType, type Checkout$1 as Checkout, type index_d$7_CheckoutCompletedEnvelope as CheckoutCompletedEnvelope, type index_d$7_CheckoutCreatedEnvelope as CheckoutCreatedEnvelope, type index_d$7_CheckoutMarkedAsCompleted as CheckoutMarkedAsCompleted, type index_d$7_CheckoutUpdatedEnvelope as CheckoutUpdatedEnvelope, type Color$2 as Color, type index_d$7_CommonVatId as CommonVatId, index_d$7_CommonVatType as CommonVatType, type ConversionInfo$1 as ConversionInfo, type Coupon$2 as Coupon, type index_d$7_CreateCheckoutOptions as CreateCheckoutOptions, type index_d$7_CreateCheckoutRequest as CreateCheckoutRequest, type index_d$7_CreateCheckoutResponse as CreateCheckoutResponse, type index_d$7_CreateCheckoutResponseNonNullableFields as CreateCheckoutResponseNonNullableFields, type index_d$7_CreateOrderAndChargeRequest as CreateOrderAndChargeRequest, type index_d$7_CreateOrderAndChargeResponse as CreateOrderAndChargeResponse, type index_d$7_CreateOrderAndChargeResponseIdOneOf as CreateOrderAndChargeResponseIdOneOf, type CreateOrderRequest$1 as CreateOrderRequest, type CreateOrderResponse$1 as CreateOrderResponse, type index_d$7_CreateOrderResponseIdOneOf as CreateOrderResponseIdOneOf, type CreateOrderResponseNonNullableFields$1 as CreateOrderResponseNonNullableFields, type CreatedBy$2 as CreatedBy, type CreatedByIdOneOf$1 as CreatedByIdOneOf, type CustomContentReference$1 as CustomContentReference, type CustomField$3 as CustomField, type CustomLineItem$1 as CustomLineItem, type CustomSettings$1 as CustomSettings, type CustomTextFieldSelection$1 as CustomTextFieldSelection, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, type Description$1 as Description, type DescriptionLine$2 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$2 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$2 as DescriptionLineName, DescriptionLineType$2 as DescriptionLineType, type DescriptionLineValueOneOf$2 as DescriptionLineValueOneOf, type Details$1 as Details, type DetailsKindOneOf$1 as DetailsKindOneOf, type Discount$2 as Discount, index_d$7_DiscountDiscountType as DiscountDiscountType, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type index_d$7_DoublePaymentErrorData as DoublePaymentErrorData, type index_d$7_DoublePaymentErrorDataIdOneOf as DoublePaymentErrorDataIdOneOf, type Empty$2 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type EventMetadata$6 as EventMetadata, type ExtendedFields$2 as ExtendedFields, FallbackReason$1 as FallbackReason, type FieldViolation$1 as FieldViolation, FileType$1 as FileType, type FullAddressContactDetails$2 as FullAddressContactDetails, type FullName$1 as FullName, type index_d$7_GetCheckoutByCartIdRequest as GetCheckoutByCartIdRequest, type index_d$7_GetCheckoutByCartIdResponse as GetCheckoutByCartIdResponse, type index_d$7_GetCheckoutRequest as GetCheckoutRequest, type index_d$7_GetCheckoutResponse as GetCheckoutResponse, type index_d$7_GetCheckoutResponseNonNullableFields as GetCheckoutResponseNonNullableFields, type index_d$7_GetCheckoutURLRequest as GetCheckoutURLRequest, type index_d$7_GetCheckoutURLResponse as GetCheckoutURLResponse, type index_d$7_GetCheckoutURLResponseNonNullableFields as GetCheckoutURLResponseNonNullableFields, type index_d$7_GetCheckoutWithAllExtendedFieldsRequest as GetCheckoutWithAllExtendedFieldsRequest, type index_d$7_GetCheckoutWithAllExtendedFieldsResponse as GetCheckoutWithAllExtendedFieldsResponse, type index_d$7_GetWixCheckoutURLRequest as GetWixCheckoutURLRequest, type index_d$7_GetWixCheckoutURLResponse as GetWixCheckoutURLResponse, type GiftCard$2 as GiftCard, type Group$1 as Group, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type InvalidMembership$1 as InvalidMembership, type ItemAvailabilityInfo$1 as ItemAvailabilityInfo, ItemAvailabilityStatus$1 as ItemAvailabilityStatus, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItem$3 as LineItem, type LineItemDiscount$2 as LineItemDiscount, type index_d$7_LineItemQuantityUpdate as LineItemQuantityUpdate, LineItemType$1 as LineItemType, ManualCalculationReason$1 as ManualCalculationReason, type index_d$7_MarkCheckoutAsCompletedRequest as MarkCheckoutAsCompletedRequest, type index_d$7_MarkCheckoutAsCompletedResponse as MarkCheckoutAsCompletedResponse, type MediaItem$1 as MediaItem, MediaItemType$1 as MediaItemType, type Membership$1 as Membership, type MembershipName$3 as MembershipName, type MembershipOptions$1 as MembershipOptions, type MembershipPaymentCredits$1 as MembershipPaymentCredits, type MerchantDiscount$2 as MerchantDiscount, type index_d$7_MerchantDiscountInput as MerchantDiscountInput, type MessageEnvelope$6 as MessageEnvelope, type MultiCurrencyPrice$1 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type OptionSelection$1 as OptionSelection, type Other$1 as Other, type OtherCharge$1 as OtherCharge, type index_d$7_PaymentErrorResponseData as PaymentErrorResponseData, PaymentOptionType$2 as PaymentOptionType, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, PickupMethod$2 as PickupMethod, type PlainTextValue$2 as PlainTextValue, type PriceDescription$2 as PriceDescription, type PriceSummary$2 as PriceSummary, type index_d$7_ProductDetails as ProductDetails, type ProductName$2 as ProductName, RateType$1 as RateType, type index_d$7_RedeemErrorData as RedeemErrorData, type index_d$7_RemoveCouponRequest as RemoveCouponRequest, type index_d$7_RemoveCouponResponse as RemoveCouponResponse, type index_d$7_RemoveCouponResponseNonNullableFields as RemoveCouponResponseNonNullableFields, type index_d$7_RemoveGiftCardRequest as RemoveGiftCardRequest, type index_d$7_RemoveGiftCardResponse as RemoveGiftCardResponse, type index_d$7_RemoveGiftCardResponseNonNullableFields as RemoveGiftCardResponseNonNullableFields, type index_d$7_RemoveLineItemsRequest as RemoveLineItemsRequest, type index_d$7_RemoveLineItemsResponse as RemoveLineItemsResponse, type index_d$7_RemoveLineItemsResponseNonNullableFields as RemoveLineItemsResponseNonNullableFields, type index_d$7_RemoveOverrideCheckoutUrlRequest as RemoveOverrideCheckoutUrlRequest, type index_d$7_RemoveOverrideCheckoutUrlResponse as RemoveOverrideCheckoutUrlResponse, type index_d$7_RemoveOverrideCheckoutUrlResponseNonNullableFields as RemoveOverrideCheckoutUrlResponseNonNullableFields, RuleType$1 as RuleType, type Scope$1 as Scope, type SecuredMedia$1 as SecuredMedia, type SelectedCarrierServiceOption$1 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$1 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$1 as SelectedCarrierServiceOptionPrices, type SelectedMembership$1 as SelectedMembership, type SelectedMemberships$1 as SelectedMemberships, type ServiceProperties$2 as ServiceProperties, Severity$1 as Severity, type ShipmentDetails$1 as ShipmentDetails, type index_d$7_ShippingCalculationErrorData as ShippingCalculationErrorData, type index_d$7_ShippingCalculationErrorDataShippingCalculationErrorOneOf as ShippingCalculationErrorDataShippingCalculationErrorOneOf, type ShippingInfo$2 as ShippingInfo, type ShippingOption$1 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, type index_d$7_StoreSettings as StoreSettings, type Street$1 as Street, type StreetAddress$2 as StreetAddress, type index_d$7_Subscription as Subscription, type index_d$7_SubscriptionCreated as SubscriptionCreated, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionOptionInfo$2 as SubscriptionOptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$1 as SystemError, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type TaxCalculationDetails$1 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$1 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$1 as TaxRateBreakdown, type TaxSummary$2 as TaxSummary, type Title$1 as Title, type Totals$1 as Totals, type index_d$7_UpdateCheckout as UpdateCheckout, type index_d$7_UpdateCheckoutOptions as UpdateCheckoutOptions, type index_d$7_UpdateCheckoutRequest as UpdateCheckoutRequest, type index_d$7_UpdateCheckoutResponse as UpdateCheckoutResponse, type index_d$7_UpdateCheckoutResponseNonNullableFields as UpdateCheckoutResponseNonNullableFields, type index_d$7_UpdateLineItemsQuantityRequest as UpdateLineItemsQuantityRequest, type index_d$7_UpdateLineItemsQuantityResponse as UpdateLineItemsQuantityResponse, type index_d$7_UpdateLineItemsQuantityResponseNonNullableFields as UpdateLineItemsQuantityResponseNonNullableFields, type index_d$7_UpdatedCheckoutMessage as UpdatedCheckoutMessage, type index_d$7_V1BuyerInfo as V1BuyerInfo, type index_d$7_V1CustomField as V1CustomField, type V1LineItem$1 as V1LineItem, type index_d$7_V1PickupDetails as V1PickupDetails, type index_d$7_V1ShippingInfo as V1ShippingInfo, type index_d$7_V1ShippingInfoDetailsOneOf as V1ShippingInfoDetailsOneOf, type index_d$7_V1SubscriptionOptionInfo as V1SubscriptionOptionInfo, type index_d$7_V1SubscriptionSettings as V1SubscriptionSettings, type ValidationError$1 as ValidationError, type VatId$3 as VatId, VatType$3 as VatType, type Violation$1 as Violation, type index_d$7_ViolationsList as ViolationsList, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$3 as WeightUnit, __metadata$7 as __metadata, index_d$7_addToCheckout as addToCheckout, index_d$7_createCheckout as createCheckout, createOrder$1 as createOrder, index_d$7_getCheckout as getCheckout, index_d$7_getCheckoutUrl as getCheckoutUrl, index_d$7_markCheckoutAsCompleted as markCheckoutAsCompleted, index_d$7_onCheckoutCompleted as onCheckoutCompleted, index_d$7_onCheckoutCreated as onCheckoutCreated, index_d$7_onCheckoutUpdated as onCheckoutUpdated, index_d$7_removeCoupon as removeCoupon, index_d$7_removeGiftCard as removeGiftCard, index_d$7_removeLineItems as removeLineItems, index_d$7_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, index_d$7_updateCheckout as updateCheckout, index_d$7_updateLineItemsQuantity as updateLineItemsQuantity };
|
|
21410
|
+
export { type ActionEvent$6 as ActionEvent, type index_d$7_AddToCheckoutOptions as AddToCheckoutOptions, type index_d$7_AddToCheckoutRequest as AddToCheckoutRequest, type index_d$7_AddToCheckoutResponse as AddToCheckoutResponse, type index_d$7_AddToCheckoutResponseNonNullableFields as AddToCheckoutResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type Address$3 as Address, type AddressAddressLine1OptionsOneOf$1 as AddressAddressLine1OptionsOneOf, type AddressLocation$2 as AddressLocation, type AddressWithContact$2 as AddressWithContact, type AggregatedTaxBreakdown$1 as AggregatedTaxBreakdown, type index_d$7_ApiAddress as ApiAddress, type ApplicationError$4 as ApplicationError, type AppliedCoupon$1 as AppliedCoupon, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$1 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$6 as BaseEventMetadata, type BillingInfo$1 as BillingInfo, type BuyerInfo$4 as BuyerInfo, type BuyerInfoIdOneOf$2 as BuyerInfoIdOneOf, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CarrierServiceOption$1 as CarrierServiceOption, type CatalogOverrideFields$1 as CatalogOverrideFields, type CatalogReference$2 as CatalogReference, type ChannelInfo$2 as ChannelInfo, index_d$7_ChannelInfoChannelType as ChannelInfoChannelType, ChannelType$3 as ChannelType, type index_d$7_ChargeDetails as ChargeDetails, ChargeType$1 as ChargeType, type Checkout$1 as Checkout, type index_d$7_CheckoutCompletedEnvelope as CheckoutCompletedEnvelope, type index_d$7_CheckoutCreatedEnvelope as CheckoutCreatedEnvelope, type index_d$7_CheckoutMarkedAsCompleted as CheckoutMarkedAsCompleted, type index_d$7_CheckoutUpdatedEnvelope as CheckoutUpdatedEnvelope, type Color$2 as Color, type index_d$7_CommonVatId as CommonVatId, index_d$7_CommonVatType as CommonVatType, type ConversionInfo$1 as ConversionInfo, type Coupon$2 as Coupon, type index_d$7_CreateCheckoutOptions as CreateCheckoutOptions, type index_d$7_CreateCheckoutRequest as CreateCheckoutRequest, type index_d$7_CreateCheckoutResponse as CreateCheckoutResponse, type index_d$7_CreateCheckoutResponseNonNullableFields as CreateCheckoutResponseNonNullableFields, type index_d$7_CreateOrderAndChargeRequest as CreateOrderAndChargeRequest, type index_d$7_CreateOrderAndChargeResponse as CreateOrderAndChargeResponse, type index_d$7_CreateOrderAndChargeResponseIdOneOf as CreateOrderAndChargeResponseIdOneOf, type CreateOrderRequest$1 as CreateOrderRequest, type CreateOrderResponse$1 as CreateOrderResponse, type index_d$7_CreateOrderResponseIdOneOf as CreateOrderResponseIdOneOf, type CreateOrderResponseNonNullableFields$1 as CreateOrderResponseNonNullableFields, type CreatedBy$2 as CreatedBy, type CreatedByIdOneOf$1 as CreatedByIdOneOf, type CustomContentReference$1 as CustomContentReference, type CustomField$3 as CustomField, type CustomLineItem$1 as CustomLineItem, type CustomSettings$1 as CustomSettings, type CustomTextFieldSelection$1 as CustomTextFieldSelection, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, type Description$1 as Description, type DescriptionLine$2 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$2 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$2 as DescriptionLineName, DescriptionLineType$2 as DescriptionLineType, type DescriptionLineValueOneOf$2 as DescriptionLineValueOneOf, type Details$2 as Details, type DetailsKindOneOf$2 as DetailsKindOneOf, type Discount$2 as Discount, index_d$7_DiscountDiscountType as DiscountDiscountType, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type index_d$7_DoublePaymentErrorData as DoublePaymentErrorData, type index_d$7_DoublePaymentErrorDataIdOneOf as DoublePaymentErrorDataIdOneOf, type Empty$2 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type EventMetadata$6 as EventMetadata, type ExtendedFields$2 as ExtendedFields, FallbackReason$1 as FallbackReason, type FieldViolation$2 as FieldViolation, FileType$1 as FileType, type FullAddressContactDetails$2 as FullAddressContactDetails, type FullName$1 as FullName, type index_d$7_GetCheckoutByCartIdRequest as GetCheckoutByCartIdRequest, type index_d$7_GetCheckoutByCartIdResponse as GetCheckoutByCartIdResponse, type index_d$7_GetCheckoutRequest as GetCheckoutRequest, type index_d$7_GetCheckoutResponse as GetCheckoutResponse, type index_d$7_GetCheckoutResponseNonNullableFields as GetCheckoutResponseNonNullableFields, type index_d$7_GetCheckoutURLRequest as GetCheckoutURLRequest, type index_d$7_GetCheckoutURLResponse as GetCheckoutURLResponse, type index_d$7_GetCheckoutURLResponseNonNullableFields as GetCheckoutURLResponseNonNullableFields, type index_d$7_GetCheckoutWithAllExtendedFieldsRequest as GetCheckoutWithAllExtendedFieldsRequest, type index_d$7_GetCheckoutWithAllExtendedFieldsResponse as GetCheckoutWithAllExtendedFieldsResponse, type index_d$7_GetWixCheckoutURLRequest as GetWixCheckoutURLRequest, type index_d$7_GetWixCheckoutURLResponse as GetWixCheckoutURLResponse, type GiftCard$2 as GiftCard, type Group$1 as Group, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type InvalidMembership$1 as InvalidMembership, type ItemAvailabilityInfo$1 as ItemAvailabilityInfo, ItemAvailabilityStatus$1 as ItemAvailabilityStatus, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItem$3 as LineItem, type LineItemDiscount$2 as LineItemDiscount, type index_d$7_LineItemQuantityUpdate as LineItemQuantityUpdate, LineItemType$1 as LineItemType, ManualCalculationReason$1 as ManualCalculationReason, type index_d$7_MarkCheckoutAsCompletedRequest as MarkCheckoutAsCompletedRequest, type index_d$7_MarkCheckoutAsCompletedResponse as MarkCheckoutAsCompletedResponse, type MediaItem$1 as MediaItem, MediaItemType$1 as MediaItemType, type Membership$1 as Membership, type MembershipName$3 as MembershipName, type MembershipOptions$1 as MembershipOptions, type MembershipPaymentCredits$1 as MembershipPaymentCredits, type MerchantDiscount$2 as MerchantDiscount, type index_d$7_MerchantDiscountInput as MerchantDiscountInput, type MessageEnvelope$6 as MessageEnvelope, type MultiCurrencyPrice$1 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type OptionSelection$1 as OptionSelection, type Other$1 as Other, type OtherCharge$1 as OtherCharge, type index_d$7_PaymentErrorResponseData as PaymentErrorResponseData, PaymentOptionType$2 as PaymentOptionType, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, PickupMethod$2 as PickupMethod, type PlainTextValue$2 as PlainTextValue, type PriceDescription$2 as PriceDescription, type PriceSummary$2 as PriceSummary, type index_d$7_ProductDetails as ProductDetails, type ProductName$2 as ProductName, RateType$1 as RateType, type index_d$7_RedeemErrorData as RedeemErrorData, type index_d$7_RemoveCouponRequest as RemoveCouponRequest, type index_d$7_RemoveCouponResponse as RemoveCouponResponse, type index_d$7_RemoveCouponResponseNonNullableFields as RemoveCouponResponseNonNullableFields, type index_d$7_RemoveGiftCardRequest as RemoveGiftCardRequest, type index_d$7_RemoveGiftCardResponse as RemoveGiftCardResponse, type index_d$7_RemoveGiftCardResponseNonNullableFields as RemoveGiftCardResponseNonNullableFields, type index_d$7_RemoveLineItemsRequest as RemoveLineItemsRequest, type index_d$7_RemoveLineItemsResponse as RemoveLineItemsResponse, type index_d$7_RemoveLineItemsResponseNonNullableFields as RemoveLineItemsResponseNonNullableFields, type index_d$7_RemoveOverrideCheckoutUrlRequest as RemoveOverrideCheckoutUrlRequest, type index_d$7_RemoveOverrideCheckoutUrlResponse as RemoveOverrideCheckoutUrlResponse, type index_d$7_RemoveOverrideCheckoutUrlResponseNonNullableFields as RemoveOverrideCheckoutUrlResponseNonNullableFields, RuleType$2 as RuleType, type Scope$1 as Scope, type SecuredMedia$1 as SecuredMedia, type SelectedCarrierServiceOption$1 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$1 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$1 as SelectedCarrierServiceOptionPrices, type SelectedMembership$1 as SelectedMembership, type SelectedMemberships$1 as SelectedMemberships, type ServiceProperties$2 as ServiceProperties, Severity$1 as Severity, type ShipmentDetails$1 as ShipmentDetails, type index_d$7_ShippingCalculationErrorData as ShippingCalculationErrorData, type index_d$7_ShippingCalculationErrorDataShippingCalculationErrorOneOf as ShippingCalculationErrorDataShippingCalculationErrorOneOf, type ShippingInfo$2 as ShippingInfo, type ShippingOption$1 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, type index_d$7_StoreSettings as StoreSettings, type Street$1 as Street, type StreetAddress$2 as StreetAddress, type index_d$7_Subscription as Subscription, type index_d$7_SubscriptionCreated as SubscriptionCreated, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionOptionInfo$2 as SubscriptionOptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$2 as SystemError, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type TaxCalculationDetails$1 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$1 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$1 as TaxRateBreakdown, type TaxSummary$2 as TaxSummary, type Title$1 as Title, type Totals$1 as Totals, type index_d$7_UpdateCheckout as UpdateCheckout, type index_d$7_UpdateCheckoutOptions as UpdateCheckoutOptions, type index_d$7_UpdateCheckoutRequest as UpdateCheckoutRequest, type index_d$7_UpdateCheckoutResponse as UpdateCheckoutResponse, type index_d$7_UpdateCheckoutResponseNonNullableFields as UpdateCheckoutResponseNonNullableFields, type index_d$7_UpdateLineItemsQuantityRequest as UpdateLineItemsQuantityRequest, type index_d$7_UpdateLineItemsQuantityResponse as UpdateLineItemsQuantityResponse, type index_d$7_UpdateLineItemsQuantityResponseNonNullableFields as UpdateLineItemsQuantityResponseNonNullableFields, type index_d$7_UpdatedCheckoutMessage as UpdatedCheckoutMessage, type index_d$7_V1BuyerInfo as V1BuyerInfo, type index_d$7_V1CustomField as V1CustomField, type V1LineItem$1 as V1LineItem, type index_d$7_V1PickupDetails as V1PickupDetails, type index_d$7_V1ShippingInfo as V1ShippingInfo, type index_d$7_V1ShippingInfoDetailsOneOf as V1ShippingInfoDetailsOneOf, type index_d$7_V1SubscriptionOptionInfo as V1SubscriptionOptionInfo, type index_d$7_V1SubscriptionSettings as V1SubscriptionSettings, type ValidationError$2 as ValidationError, type VatId$3 as VatId, VatType$3 as VatType, type Violation$1 as Violation, type index_d$7_ViolationsList as ViolationsList, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$3 as WeightUnit, __metadata$7 as __metadata, index_d$7_addToCheckout as addToCheckout, index_d$7_createCheckout as createCheckout, createOrder$1 as createOrder, index_d$7_getCheckout as getCheckout, index_d$7_getCheckoutUrl as getCheckoutUrl, index_d$7_markCheckoutAsCompleted as markCheckoutAsCompleted, index_d$7_onCheckoutCompleted as onCheckoutCompleted, index_d$7_onCheckoutCreated as onCheckoutCreated, index_d$7_onCheckoutUpdated as onCheckoutUpdated, index_d$7_removeCoupon as removeCoupon, index_d$7_removeGiftCard as removeGiftCard, index_d$7_removeLineItems as removeLineItems, index_d$7_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, index_d$7_updateCheckout as updateCheckout, index_d$7_updateLineItemsQuantity as updateLineItemsQuantity };
|
|
21411
21411
|
}
|
|
21412
21412
|
|
|
21413
21413
|
interface CheckoutSettings {
|
|
@@ -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. */
|
|
@@ -22980,36 +22980,36 @@ interface PriceSummary$1 {
|
|
|
22980
22980
|
}
|
|
22981
22981
|
interface CalculationErrors extends CalculationErrorsShippingCalculationErrorOneOf {
|
|
22982
22982
|
/** General shipping calculation error. */
|
|
22983
|
-
generalShippingCalculationError?: Details;
|
|
22983
|
+
generalShippingCalculationError?: Details$1;
|
|
22984
22984
|
/** Carrier errors. */
|
|
22985
22985
|
carrierErrors?: CarrierErrors;
|
|
22986
22986
|
/** Tax calculation error. */
|
|
22987
|
-
taxCalculationError?: Details;
|
|
22987
|
+
taxCalculationError?: Details$1;
|
|
22988
22988
|
/** Coupon calculation error. */
|
|
22989
|
-
couponCalculationError?: Details;
|
|
22989
|
+
couponCalculationError?: Details$1;
|
|
22990
22990
|
/** Gift card calculation error. */
|
|
22991
|
-
giftCardCalculationError?: Details;
|
|
22991
|
+
giftCardCalculationError?: Details$1;
|
|
22992
22992
|
/** Order validation errors. */
|
|
22993
22993
|
orderValidationErrors?: ApplicationError$3[];
|
|
22994
22994
|
/**
|
|
22995
22995
|
* Membership payment methods calculation errors
|
|
22996
22996
|
* For example, will indicate that a line item that must be paid with membership payment doesn't have one or selected memberships are invalid
|
|
22997
22997
|
*/
|
|
22998
|
-
membershipError?: Details;
|
|
22998
|
+
membershipError?: Details$1;
|
|
22999
22999
|
/** Discount Rule calculation error. */
|
|
23000
|
-
discountsCalculationError?: Details;
|
|
23000
|
+
discountsCalculationError?: Details$1;
|
|
23001
23001
|
}
|
|
23002
23002
|
/** @oneof */
|
|
23003
23003
|
interface CalculationErrorsShippingCalculationErrorOneOf {
|
|
23004
23004
|
/** General shipping calculation error. */
|
|
23005
|
-
generalShippingCalculationError?: Details;
|
|
23005
|
+
generalShippingCalculationError?: Details$1;
|
|
23006
23006
|
/** Carrier errors. */
|
|
23007
23007
|
carrierErrors?: CarrierErrors;
|
|
23008
23008
|
}
|
|
23009
|
-
interface Details extends DetailsKindOneOf {
|
|
23009
|
+
interface Details$1 extends DetailsKindOneOf$1 {
|
|
23010
23010
|
applicationError?: ApplicationError$3;
|
|
23011
|
-
validationError?: ValidationError;
|
|
23012
|
-
systemError?: SystemError;
|
|
23011
|
+
validationError?: ValidationError$1;
|
|
23012
|
+
systemError?: SystemError$1;
|
|
23013
23013
|
/**
|
|
23014
23014
|
* deprecated in API's - to enable migration from rendering arbitrary tracing to rest response
|
|
23015
23015
|
* @deprecated
|
|
@@ -23017,10 +23017,10 @@ interface Details extends DetailsKindOneOf {
|
|
|
23017
23017
|
tracing?: Record<string, string>;
|
|
23018
23018
|
}
|
|
23019
23019
|
/** @oneof */
|
|
23020
|
-
interface DetailsKindOneOf {
|
|
23020
|
+
interface DetailsKindOneOf$1 {
|
|
23021
23021
|
applicationError?: ApplicationError$3;
|
|
23022
|
-
validationError?: ValidationError;
|
|
23023
|
-
systemError?: SystemError;
|
|
23022
|
+
validationError?: ValidationError$1;
|
|
23023
|
+
systemError?: SystemError$1;
|
|
23024
23024
|
}
|
|
23025
23025
|
interface ApplicationError$3 {
|
|
23026
23026
|
/** Error code. */
|
|
@@ -23062,10 +23062,10 @@ interface ApplicationError$3 {
|
|
|
23062
23062
|
* ]
|
|
23063
23063
|
* }
|
|
23064
23064
|
*/
|
|
23065
|
-
interface ValidationError {
|
|
23066
|
-
fieldViolations?: FieldViolation[];
|
|
23065
|
+
interface ValidationError$1 {
|
|
23066
|
+
fieldViolations?: FieldViolation$1[];
|
|
23067
23067
|
}
|
|
23068
|
-
declare enum RuleType {
|
|
23068
|
+
declare enum RuleType$1 {
|
|
23069
23069
|
VALIDATION = "VALIDATION",
|
|
23070
23070
|
OTHER = "OTHER",
|
|
23071
23071
|
MAX = "MAX",
|
|
@@ -23085,15 +23085,15 @@ declare enum RuleType {
|
|
|
23085
23085
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
23086
23086
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
23087
23087
|
}
|
|
23088
|
-
interface FieldViolation {
|
|
23088
|
+
interface FieldViolation$1 {
|
|
23089
23089
|
field?: string;
|
|
23090
23090
|
description?: string;
|
|
23091
|
-
violatedRule?: RuleType;
|
|
23091
|
+
violatedRule?: RuleType$1;
|
|
23092
23092
|
/** applicable when violated_rule=OTHER */
|
|
23093
23093
|
ruleName?: string | null;
|
|
23094
23094
|
data?: Record<string, any> | null;
|
|
23095
23095
|
}
|
|
23096
|
-
interface SystemError {
|
|
23096
|
+
interface SystemError$1 {
|
|
23097
23097
|
/** Error code. */
|
|
23098
23098
|
errorCode?: string | null;
|
|
23099
23099
|
}
|
|
@@ -23105,7 +23105,7 @@ interface CarrierError {
|
|
|
23105
23105
|
/** Carrier ID. */
|
|
23106
23106
|
carrierId?: string;
|
|
23107
23107
|
/** Error details. */
|
|
23108
|
-
error?: Details;
|
|
23108
|
+
error?: Details$1;
|
|
23109
23109
|
}
|
|
23110
23110
|
interface GiftCard$1 {
|
|
23111
23111
|
/**
|
|
@@ -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;
|
|
@@ -24101,11 +24101,8 @@ type index_d$5_CustomSettings = CustomSettings;
|
|
|
24101
24101
|
type index_d$5_DeleteCheckoutTemplateRequest = DeleteCheckoutTemplateRequest;
|
|
24102
24102
|
type index_d$5_DeleteCheckoutTemplateResponse = DeleteCheckoutTemplateResponse;
|
|
24103
24103
|
type index_d$5_Description = Description;
|
|
24104
|
-
type index_d$5_Details = Details;
|
|
24105
|
-
type index_d$5_DetailsKindOneOf = DetailsKindOneOf;
|
|
24106
24104
|
type index_d$5_FallbackReason = FallbackReason;
|
|
24107
24105
|
declare const index_d$5_FallbackReason: typeof FallbackReason;
|
|
24108
|
-
type index_d$5_FieldViolation = FieldViolation;
|
|
24109
24106
|
type index_d$5_FileType = FileType;
|
|
24110
24107
|
declare const index_d$5_FileType: typeof FileType;
|
|
24111
24108
|
type index_d$5_GetCheckoutTemplateRequest = GetCheckoutTemplateRequest;
|
|
@@ -24135,8 +24132,6 @@ type index_d$5_QueryCheckoutTemplatesResponseNonNullableFields = QueryCheckoutTe
|
|
|
24135
24132
|
type index_d$5_RateType = RateType;
|
|
24136
24133
|
declare const index_d$5_RateType: typeof RateType;
|
|
24137
24134
|
type index_d$5_RawHttpResponse = RawHttpResponse;
|
|
24138
|
-
type index_d$5_RuleType = RuleType;
|
|
24139
|
-
declare const index_d$5_RuleType: typeof RuleType;
|
|
24140
24135
|
type index_d$5_Scope = Scope;
|
|
24141
24136
|
type index_d$5_SecuredMedia = SecuredMedia;
|
|
24142
24137
|
type index_d$5_SelectedCarrierServiceOption = SelectedCarrierServiceOption;
|
|
@@ -24149,7 +24144,6 @@ declare const index_d$5_Severity: typeof Severity;
|
|
|
24149
24144
|
type index_d$5_ShippingOption = ShippingOption;
|
|
24150
24145
|
type index_d$5_Status = Status;
|
|
24151
24146
|
declare const index_d$5_Status: typeof Status;
|
|
24152
|
-
type index_d$5_SystemError = SystemError;
|
|
24153
24147
|
type index_d$5_Target = Target;
|
|
24154
24148
|
type index_d$5_TargetLineItem = TargetLineItem;
|
|
24155
24149
|
type index_d$5_TargetTargetTypeOneOf = TargetTargetTypeOneOf;
|
|
@@ -24163,7 +24157,6 @@ type index_d$5_UpdateCheckoutTemplateRequest = UpdateCheckoutTemplateRequest;
|
|
|
24163
24157
|
type index_d$5_UpdateCheckoutTemplateResponse = UpdateCheckoutTemplateResponse;
|
|
24164
24158
|
type index_d$5_UpdateCheckoutTemplateResponseNonNullableFields = UpdateCheckoutTemplateResponseNonNullableFields;
|
|
24165
24159
|
type index_d$5_V1LineItem = V1LineItem;
|
|
24166
|
-
type index_d$5_ValidationError = ValidationError;
|
|
24167
24160
|
type index_d$5_Violation = Violation;
|
|
24168
24161
|
type index_d$5_WebClientCustomization = WebClientCustomization;
|
|
24169
24162
|
declare const index_d$5_createCheckoutFromTemplate: typeof createCheckoutFromTemplate;
|
|
@@ -24177,7 +24170,7 @@ declare const index_d$5_onCheckoutTemplateUsed: typeof onCheckoutTemplateUsed;
|
|
|
24177
24170
|
declare const index_d$5_queryCheckoutTemplates: typeof queryCheckoutTemplates;
|
|
24178
24171
|
declare const index_d$5_updateCheckoutTemplate: typeof updateCheckoutTemplate;
|
|
24179
24172
|
declare namespace index_d$5 {
|
|
24180
|
-
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 };
|
|
24181
24174
|
}
|
|
24182
24175
|
|
|
24183
24176
|
interface OrderWithFulfillments {
|
|
@@ -26390,26 +26383,26 @@ interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
|
|
|
26390
26383
|
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
26391
26384
|
paging?: PlatformPaging;
|
|
26392
26385
|
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
26393
|
-
cursorPaging?: CursorPaging;
|
|
26386
|
+
cursorPaging?: CursorPaging$1;
|
|
26394
26387
|
/** Filter object. */
|
|
26395
26388
|
filter?: Record<string, any> | null;
|
|
26396
26389
|
/** Sorting options. For example, `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]`. */
|
|
26397
|
-
sort?: Sorting[];
|
|
26390
|
+
sort?: Sorting$1[];
|
|
26398
26391
|
}
|
|
26399
26392
|
/** @oneof */
|
|
26400
26393
|
interface PlatformQueryPagingMethodOneOf {
|
|
26401
26394
|
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
26402
26395
|
paging?: PlatformPaging;
|
|
26403
26396
|
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
26404
|
-
cursorPaging?: CursorPaging;
|
|
26397
|
+
cursorPaging?: CursorPaging$1;
|
|
26405
26398
|
}
|
|
26406
|
-
interface Sorting {
|
|
26399
|
+
interface Sorting$1 {
|
|
26407
26400
|
/** Name of the field to sort by. */
|
|
26408
26401
|
fieldName?: string;
|
|
26409
26402
|
/** Sort order. */
|
|
26410
|
-
order?: SortOrder;
|
|
26403
|
+
order?: SortOrder$1;
|
|
26411
26404
|
}
|
|
26412
|
-
declare enum SortOrder {
|
|
26405
|
+
declare enum SortOrder$1 {
|
|
26413
26406
|
ASC = "ASC",
|
|
26414
26407
|
DESC = "DESC"
|
|
26415
26408
|
}
|
|
@@ -26419,7 +26412,7 @@ interface PlatformPaging {
|
|
|
26419
26412
|
/** Number of items to skip in the current sort order. */
|
|
26420
26413
|
offset?: number | null;
|
|
26421
26414
|
}
|
|
26422
|
-
interface CursorPaging {
|
|
26415
|
+
interface CursorPaging$1 {
|
|
26423
26416
|
/** Maximum number of items to return in the results. */
|
|
26424
26417
|
limit?: number | null;
|
|
26425
26418
|
/**
|
|
@@ -26444,9 +26437,9 @@ interface PlatformPagingMetadata {
|
|
|
26444
26437
|
/** The total number of items that match the query. Returned if offset paging was used. */
|
|
26445
26438
|
total?: number | null;
|
|
26446
26439
|
/** Cursors to navigate through result pages. Returned if cursor paging was used. */
|
|
26447
|
-
cursors?: Cursors;
|
|
26440
|
+
cursors?: Cursors$1;
|
|
26448
26441
|
}
|
|
26449
|
-
interface Cursors {
|
|
26442
|
+
interface Cursors$1 {
|
|
26450
26443
|
/** Cursor string pointing to the next page in the list of results. */
|
|
26451
26444
|
next?: string | null;
|
|
26452
26445
|
/** Cursor pointing to the previous page in the list of results. */
|
|
@@ -26627,7 +26620,7 @@ interface Refund$1 {
|
|
|
26627
26620
|
/** List of transactions. */
|
|
26628
26621
|
transactions?: RefundTransaction$1[];
|
|
26629
26622
|
/** Refund business details. */
|
|
26630
|
-
details?:
|
|
26623
|
+
details?: V1RefundDetails;
|
|
26631
26624
|
/** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
|
|
26632
26625
|
_createdDate?: Date;
|
|
26633
26626
|
}
|
|
@@ -26654,7 +26647,7 @@ declare enum RefundStatus$1 {
|
|
|
26654
26647
|
FAILED = "FAILED"
|
|
26655
26648
|
}
|
|
26656
26649
|
/** Business model of a refund request */
|
|
26657
|
-
interface
|
|
26650
|
+
interface V1RefundDetails {
|
|
26658
26651
|
/** Order line item IDs and quantities that were refunded. */
|
|
26659
26652
|
items?: RefundItem$1[];
|
|
26660
26653
|
/** Whether the shipping fee was also refunded. */
|
|
@@ -26668,6 +26661,8 @@ interface RefundItem$1 {
|
|
|
26668
26661
|
/** Line item quantity refunded. */
|
|
26669
26662
|
quantity?: number;
|
|
26670
26663
|
}
|
|
26664
|
+
interface AggregatedRefundSummary$1 {
|
|
26665
|
+
}
|
|
26671
26666
|
interface TestUrlAdditionalBindingsRequest {
|
|
26672
26667
|
}
|
|
26673
26668
|
interface TestUrlAdditionalBindingsResponse {
|
|
@@ -26961,7 +26956,7 @@ interface PreviewRefundEmailRequest {
|
|
|
26961
26956
|
/** Refund amount */
|
|
26962
26957
|
refundAmount?: Price$1;
|
|
26963
26958
|
/** Refund business details */
|
|
26964
|
-
details?:
|
|
26959
|
+
details?: V1RefundDetails;
|
|
26965
26960
|
/** Personal note added to the email (optional) */
|
|
26966
26961
|
customMessage?: string | null;
|
|
26967
26962
|
}
|
|
@@ -27137,9 +27132,9 @@ interface GetRefundabilityStatusResponse$1 {
|
|
|
27137
27132
|
}
|
|
27138
27133
|
interface Refundability$1 extends RefundabilityAdditionalRefundabilityInfoOneOf$1 {
|
|
27139
27134
|
/** Reason why payment is not refundable. */
|
|
27140
|
-
nonRefundableReason?:
|
|
27135
|
+
nonRefundableReason?: RefundabilityNonRefundableReason;
|
|
27141
27136
|
/** Reason why payment is only refundable manually. */
|
|
27142
|
-
manuallyRefundableReason?:
|
|
27137
|
+
manuallyRefundableReason?: RefundabilityManuallyRefundableReason;
|
|
27143
27138
|
/** Payment ID. */
|
|
27144
27139
|
paymentId?: string;
|
|
27145
27140
|
/** Payment refundability status. */
|
|
@@ -27150,16 +27145,16 @@ interface Refundability$1 extends RefundabilityAdditionalRefundabilityInfoOneOf$
|
|
|
27150
27145
|
/** @oneof */
|
|
27151
27146
|
interface RefundabilityAdditionalRefundabilityInfoOneOf$1 {
|
|
27152
27147
|
/** Reason why payment is not refundable. */
|
|
27153
|
-
nonRefundableReason?:
|
|
27148
|
+
nonRefundableReason?: RefundabilityNonRefundableReason;
|
|
27154
27149
|
/** Reason why payment is only refundable manually. */
|
|
27155
|
-
manuallyRefundableReason?:
|
|
27150
|
+
manuallyRefundableReason?: RefundabilityManuallyRefundableReason;
|
|
27156
27151
|
}
|
|
27157
27152
|
declare enum RefundableStatus$1 {
|
|
27158
27153
|
NOT_REFUNDABLE = "NOT_REFUNDABLE",
|
|
27159
27154
|
MANUAL = "MANUAL",
|
|
27160
27155
|
REFUNDABLE = "REFUNDABLE"
|
|
27161
27156
|
}
|
|
27162
|
-
declare enum
|
|
27157
|
+
declare enum RefundabilityNonRefundableReason {
|
|
27163
27158
|
NONE = "NONE",
|
|
27164
27159
|
ALREADY_REFUNDED = "ALREADY_REFUNDED",
|
|
27165
27160
|
PROVIDER_IS_DOWN = "PROVIDER_IS_DOWN",
|
|
@@ -27172,7 +27167,7 @@ declare enum NonRefundableReason$1 {
|
|
|
27172
27167
|
FORBIDDEN = "FORBIDDEN",
|
|
27173
27168
|
TRANSACTION_NOT_FOUND = "TRANSACTION_NOT_FOUND"
|
|
27174
27169
|
}
|
|
27175
|
-
declare enum
|
|
27170
|
+
declare enum RefundabilityManuallyRefundableReason {
|
|
27176
27171
|
EXPIRED = "EXPIRED",
|
|
27177
27172
|
NOT_SUPPORTED = "NOT_SUPPORTED",
|
|
27178
27173
|
OFFLINE = "OFFLINE"
|
|
@@ -27241,16 +27236,16 @@ interface TriggerRefundRequest$1 {
|
|
|
27241
27236
|
/** The order this refund related to */
|
|
27242
27237
|
ecomOrderId?: string;
|
|
27243
27238
|
/** Refund operations information */
|
|
27244
|
-
payments?:
|
|
27239
|
+
payments?: V1PaymentRefund[];
|
|
27245
27240
|
/** Business model of a refund */
|
|
27246
|
-
details?:
|
|
27241
|
+
details?: V1RefundDetails;
|
|
27247
27242
|
/** Side effect details related to refund */
|
|
27248
|
-
sideEffects?:
|
|
27243
|
+
sideEffects?: V1RefundSideEffects;
|
|
27249
27244
|
}
|
|
27250
|
-
interface
|
|
27245
|
+
interface V1PaymentRefund {
|
|
27251
27246
|
/** Specific payment within the order to refund */
|
|
27252
27247
|
paymentId?: string;
|
|
27253
|
-
/** Refund amount. Not relevant for membership refunds. */
|
|
27248
|
+
/** Refund amount. Not relevant for membership and gift card refunds. */
|
|
27254
27249
|
amount?: Price$1;
|
|
27255
27250
|
/**
|
|
27256
27251
|
* Whether refund is made externally and manually (on the payment provider's side)
|
|
@@ -27259,7 +27254,7 @@ interface PaymentRefund$1 {
|
|
|
27259
27254
|
*/
|
|
27260
27255
|
externalRefund?: boolean;
|
|
27261
27256
|
}
|
|
27262
|
-
interface
|
|
27257
|
+
interface V1RefundSideEffects {
|
|
27263
27258
|
/** Inventory restock details as part of this refund. */
|
|
27264
27259
|
restockInfo?: RestockInfo$1;
|
|
27265
27260
|
/** Whether to send a refund confirmation email to the customer. */
|
|
@@ -27271,14 +27266,14 @@ interface RestockInfo$1 {
|
|
|
27271
27266
|
/** Restock type. */
|
|
27272
27267
|
type?: RestockType$1;
|
|
27273
27268
|
/** Restocked line items and quantities. Only relevant for `{"type": "SOME_ITEMS"}`. */
|
|
27274
|
-
items?:
|
|
27269
|
+
items?: V1RestockItem[];
|
|
27275
27270
|
}
|
|
27276
27271
|
declare enum RestockType$1 {
|
|
27277
27272
|
NO_ITEMS = "NO_ITEMS",
|
|
27278
27273
|
ALL_ITEMS = "ALL_ITEMS",
|
|
27279
27274
|
SOME_ITEMS = "SOME_ITEMS"
|
|
27280
27275
|
}
|
|
27281
|
-
interface
|
|
27276
|
+
interface V1RestockItem {
|
|
27282
27277
|
/** ID of the line item being restocked. */
|
|
27283
27278
|
lineItemId?: string;
|
|
27284
27279
|
/** Line item quantity being restocked. */
|
|
@@ -27393,6 +27388,185 @@ interface CaptureAuthorizedPaymentsResponse {
|
|
|
27393
27388
|
/** All order's transactions after the capture was triggered */
|
|
27394
27389
|
orderTransactions?: OrderTransactions$1;
|
|
27395
27390
|
}
|
|
27391
|
+
interface GetRefundOptionsRequest {
|
|
27392
|
+
}
|
|
27393
|
+
interface GetRefundOptionsResponse {
|
|
27394
|
+
}
|
|
27395
|
+
interface PaymentRefundOption extends PaymentRefundOptionStatusOneOf {
|
|
27396
|
+
}
|
|
27397
|
+
/** @oneof */
|
|
27398
|
+
interface PaymentRefundOptionStatusOneOf {
|
|
27399
|
+
}
|
|
27400
|
+
interface PaymentInfo extends PaymentInfoSummaryOneOf, PaymentInfoPaymentMethodDetailsOneOf {
|
|
27401
|
+
}
|
|
27402
|
+
/** @oneof */
|
|
27403
|
+
interface PaymentInfoSummaryOneOf {
|
|
27404
|
+
}
|
|
27405
|
+
/** @oneof */
|
|
27406
|
+
interface PaymentInfoPaymentMethodDetailsOneOf {
|
|
27407
|
+
}
|
|
27408
|
+
interface MonetaryPaymentSummary {
|
|
27409
|
+
}
|
|
27410
|
+
interface MembershipPaymentSummary {
|
|
27411
|
+
}
|
|
27412
|
+
interface ManuallyRefundablePaymentStatus {
|
|
27413
|
+
}
|
|
27414
|
+
declare enum ManuallyRefundableReason$1 {
|
|
27415
|
+
UNKNOWN_REASON = "UNKNOWN_REASON",
|
|
27416
|
+
EXPIRED = "EXPIRED",
|
|
27417
|
+
NOT_SUPPORTED = "NOT_SUPPORTED",
|
|
27418
|
+
OFFLINE = "OFFLINE"
|
|
27419
|
+
}
|
|
27420
|
+
interface NonRefundablePaymentStatus {
|
|
27421
|
+
}
|
|
27422
|
+
declare enum NonRefundableReason$1 {
|
|
27423
|
+
UNKNOWN_REASON = "UNKNOWN_REASON",
|
|
27424
|
+
ALREADY_REFUNDED = "ALREADY_REFUNDED",
|
|
27425
|
+
PROVIDER_IS_DOWN = "PROVIDER_IS_DOWN",
|
|
27426
|
+
NOT_PAID = "NOT_PAID",
|
|
27427
|
+
ZERO_PRICE = "ZERO_PRICE",
|
|
27428
|
+
DISABLED_BY_PROVIDER = "DISABLED_BY_PROVIDER",
|
|
27429
|
+
PENDING_REFUND = "PENDING_REFUND",
|
|
27430
|
+
FORBIDDEN = "FORBIDDEN",
|
|
27431
|
+
TRANSACTION_NOT_FOUND = "TRANSACTION_NOT_FOUND"
|
|
27432
|
+
}
|
|
27433
|
+
interface PaymentsSummary {
|
|
27434
|
+
}
|
|
27435
|
+
interface LineItemRefundOption {
|
|
27436
|
+
}
|
|
27437
|
+
interface ShippingRefundOption {
|
|
27438
|
+
}
|
|
27439
|
+
interface AdditionalFeeRefundOption {
|
|
27440
|
+
}
|
|
27441
|
+
interface CalculateRefundV2Request {
|
|
27442
|
+
}
|
|
27443
|
+
interface RefundDetails$1 {
|
|
27444
|
+
}
|
|
27445
|
+
interface LineItemRefund {
|
|
27446
|
+
}
|
|
27447
|
+
interface AdditionalFeeRefund {
|
|
27448
|
+
}
|
|
27449
|
+
interface ShippingRefund {
|
|
27450
|
+
}
|
|
27451
|
+
interface CalculateRefundV2Response extends CalculateRefundV2ResponseStatusOneOf {
|
|
27452
|
+
}
|
|
27453
|
+
/** @oneof */
|
|
27454
|
+
interface CalculateRefundV2ResponseStatusOneOf {
|
|
27455
|
+
}
|
|
27456
|
+
interface CalculatedRefundSummary {
|
|
27457
|
+
}
|
|
27458
|
+
interface CalculatedRefundDetails {
|
|
27459
|
+
}
|
|
27460
|
+
interface CalculatedLineItemRefund {
|
|
27461
|
+
}
|
|
27462
|
+
interface CalculatedAdditionalFeeRefund {
|
|
27463
|
+
}
|
|
27464
|
+
interface CalculatedShippingRefund {
|
|
27465
|
+
}
|
|
27466
|
+
interface CalculatedRefundNotAvailableStatus {
|
|
27467
|
+
}
|
|
27468
|
+
interface CalculationError extends CalculationErrorItemOneOf {
|
|
27469
|
+
}
|
|
27470
|
+
/** @oneof */
|
|
27471
|
+
interface CalculationErrorItemOneOf {
|
|
27472
|
+
}
|
|
27473
|
+
interface Details extends DetailsKindOneOf {
|
|
27474
|
+
applicationError?: ApplicationError$1;
|
|
27475
|
+
validationError?: ValidationError;
|
|
27476
|
+
systemError?: SystemError;
|
|
27477
|
+
/**
|
|
27478
|
+
* deprecated in API's - to enable migration from rendering arbitrary tracing to rest response
|
|
27479
|
+
* @deprecated
|
|
27480
|
+
*/
|
|
27481
|
+
tracing?: Record<string, string>;
|
|
27482
|
+
}
|
|
27483
|
+
/** @oneof */
|
|
27484
|
+
interface DetailsKindOneOf {
|
|
27485
|
+
applicationError?: ApplicationError$1;
|
|
27486
|
+
validationError?: ValidationError;
|
|
27487
|
+
systemError?: SystemError;
|
|
27488
|
+
}
|
|
27489
|
+
/**
|
|
27490
|
+
* example result:
|
|
27491
|
+
* {
|
|
27492
|
+
* "fieldViolations": [
|
|
27493
|
+
* {
|
|
27494
|
+
* "field": "fieldA",
|
|
27495
|
+
* "description": "invalid music note. supported notes: [do,re,mi,fa,sol,la,ti]",
|
|
27496
|
+
* "violatedRule": "OTHER",
|
|
27497
|
+
* "ruleName": "INVALID_NOTE",
|
|
27498
|
+
* "data": {
|
|
27499
|
+
* "value": "FI"
|
|
27500
|
+
* }
|
|
27501
|
+
* },
|
|
27502
|
+
* {
|
|
27503
|
+
* "field": "fieldB",
|
|
27504
|
+
* "description": "field value out of range. supported range: [0-20]",
|
|
27505
|
+
* "violatedRule": "MAX",
|
|
27506
|
+
* "data": {
|
|
27507
|
+
* "threshold": 20
|
|
27508
|
+
* }
|
|
27509
|
+
* },
|
|
27510
|
+
* {
|
|
27511
|
+
* "field": "fieldC",
|
|
27512
|
+
* "description": "invalid phone number. provide a valid phone number of size: [7-12], supported characters: [0-9, +, -, (, )]",
|
|
27513
|
+
* "violatedRule": "FORMAT",
|
|
27514
|
+
* "data": {
|
|
27515
|
+
* "type": "PHONE"
|
|
27516
|
+
* }
|
|
27517
|
+
* }
|
|
27518
|
+
* ]
|
|
27519
|
+
* }
|
|
27520
|
+
*/
|
|
27521
|
+
interface ValidationError {
|
|
27522
|
+
fieldViolations?: FieldViolation[];
|
|
27523
|
+
}
|
|
27524
|
+
declare enum RuleType {
|
|
27525
|
+
VALIDATION = "VALIDATION",
|
|
27526
|
+
OTHER = "OTHER",
|
|
27527
|
+
MAX = "MAX",
|
|
27528
|
+
MIN = "MIN",
|
|
27529
|
+
MAX_LENGTH = "MAX_LENGTH",
|
|
27530
|
+
MIN_LENGTH = "MIN_LENGTH",
|
|
27531
|
+
MAX_SIZE = "MAX_SIZE",
|
|
27532
|
+
MIN_SIZE = "MIN_SIZE",
|
|
27533
|
+
FORMAT = "FORMAT",
|
|
27534
|
+
DECIMAL_LTE = "DECIMAL_LTE",
|
|
27535
|
+
DECIMAL_GTE = "DECIMAL_GTE",
|
|
27536
|
+
DECIMAL_LT = "DECIMAL_LT",
|
|
27537
|
+
DECIMAL_GT = "DECIMAL_GT",
|
|
27538
|
+
DECIMAL_MAX_SCALE = "DECIMAL_MAX_SCALE",
|
|
27539
|
+
INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
|
|
27540
|
+
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
27541
|
+
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
27542
|
+
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
27543
|
+
}
|
|
27544
|
+
interface FieldViolation {
|
|
27545
|
+
field?: string;
|
|
27546
|
+
description?: string;
|
|
27547
|
+
violatedRule?: RuleType;
|
|
27548
|
+
/** applicable when violated_rule=OTHER */
|
|
27549
|
+
ruleName?: string | null;
|
|
27550
|
+
data?: Record<string, any> | null;
|
|
27551
|
+
}
|
|
27552
|
+
interface SystemError {
|
|
27553
|
+
/** Error code. */
|
|
27554
|
+
errorCode?: string | null;
|
|
27555
|
+
}
|
|
27556
|
+
interface RefundRequest {
|
|
27557
|
+
}
|
|
27558
|
+
interface PaymentRefund$1 {
|
|
27559
|
+
}
|
|
27560
|
+
interface RefundSideEffects$1 {
|
|
27561
|
+
}
|
|
27562
|
+
interface RestockItem$1 {
|
|
27563
|
+
}
|
|
27564
|
+
interface RestockSideEffects {
|
|
27565
|
+
}
|
|
27566
|
+
interface NotificationSideEffects {
|
|
27567
|
+
}
|
|
27568
|
+
interface RefundResponse {
|
|
27569
|
+
}
|
|
27396
27570
|
interface DiffmatokyPayload$1 {
|
|
27397
27571
|
left?: string;
|
|
27398
27572
|
right?: string;
|
|
@@ -27447,14 +27621,14 @@ interface QueryOrderResponse {
|
|
|
27447
27621
|
}
|
|
27448
27622
|
interface SearchOrdersRequest {
|
|
27449
27623
|
/** Search options. */
|
|
27450
|
-
search?: CursorSearch;
|
|
27624
|
+
search?: CursorSearch$1;
|
|
27451
27625
|
}
|
|
27452
|
-
interface CursorSearch extends CursorSearchPagingMethodOneOf {
|
|
27626
|
+
interface CursorSearch$1 extends CursorSearchPagingMethodOneOf$1 {
|
|
27453
27627
|
/**
|
|
27454
27628
|
* Cursor paging options.
|
|
27455
27629
|
* Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
|
|
27456
27630
|
*/
|
|
27457
|
-
cursorPaging?: CursorPaging;
|
|
27631
|
+
cursorPaging?: CursorPaging$1;
|
|
27458
27632
|
/**
|
|
27459
27633
|
* Filter object.
|
|
27460
27634
|
*
|
|
@@ -27474,27 +27648,27 @@ interface CursorSearch extends CursorSearchPagingMethodOneOf {
|
|
|
27474
27648
|
*
|
|
27475
27649
|
* Learn more about the [sort format](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
27476
27650
|
*/
|
|
27477
|
-
sort?: Sorting[];
|
|
27651
|
+
sort?: Sorting$1[];
|
|
27478
27652
|
}
|
|
27479
27653
|
/** @oneof */
|
|
27480
|
-
interface CursorSearchPagingMethodOneOf {
|
|
27654
|
+
interface CursorSearchPagingMethodOneOf$1 {
|
|
27481
27655
|
/**
|
|
27482
27656
|
* Cursor paging options.
|
|
27483
27657
|
* Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
|
|
27484
27658
|
*/
|
|
27485
|
-
cursorPaging?: CursorPaging;
|
|
27659
|
+
cursorPaging?: CursorPaging$1;
|
|
27486
27660
|
}
|
|
27487
27661
|
interface SearchOrdersResponse {
|
|
27488
27662
|
/** List of orders. */
|
|
27489
27663
|
orders?: Order$1[];
|
|
27490
27664
|
/** Details on the paged set of results returned. */
|
|
27491
|
-
metadata?: CursorPagingMetadata;
|
|
27665
|
+
metadata?: CursorPagingMetadata$1;
|
|
27492
27666
|
}
|
|
27493
|
-
interface CursorPagingMetadata {
|
|
27667
|
+
interface CursorPagingMetadata$1 {
|
|
27494
27668
|
/** Number of items returned in the response. */
|
|
27495
27669
|
count?: number | null;
|
|
27496
27670
|
/** Cursor strings that point to the next page, previous page, or both. */
|
|
27497
|
-
cursors?: Cursors;
|
|
27671
|
+
cursors?: Cursors$1;
|
|
27498
27672
|
/**
|
|
27499
27673
|
* Whether there are more pages to retrieve following the current page.
|
|
27500
27674
|
*
|
|
@@ -28368,9 +28542,9 @@ interface OrderItemsRestocked {
|
|
|
28368
28542
|
/** The order which items were restocked */
|
|
28369
28543
|
order?: Order$1;
|
|
28370
28544
|
/** Restocked items and quantities */
|
|
28371
|
-
restockItems?:
|
|
28545
|
+
restockItems?: OrdersV1RestockItem[];
|
|
28372
28546
|
}
|
|
28373
|
-
interface
|
|
28547
|
+
interface OrdersV1RestockItem {
|
|
28374
28548
|
/** ID of the line item being restocked. */
|
|
28375
28549
|
lineItemId?: string;
|
|
28376
28550
|
/** Line item quantity being restocked. */
|
|
@@ -30526,7 +30700,7 @@ interface OrderApprovedEnvelope {
|
|
|
30526
30700
|
}
|
|
30527
30701
|
interface SearchOrdersOptions {
|
|
30528
30702
|
/** Search options. */
|
|
30529
|
-
search?: CursorSearch;
|
|
30703
|
+
search?: CursorSearch$1;
|
|
30530
30704
|
}
|
|
30531
30705
|
interface UpdateOrder {
|
|
30532
30706
|
/**
|
|
@@ -31678,6 +31852,8 @@ type index_d$3_AddInternalActivityResponse = AddInternalActivityResponse;
|
|
|
31678
31852
|
type index_d$3_AdditionalFee = AdditionalFee;
|
|
31679
31853
|
type index_d$3_AdditionalFeeDelta = AdditionalFeeDelta;
|
|
31680
31854
|
type index_d$3_AdditionalFeeDeltaDeltaOneOf = AdditionalFeeDeltaDeltaOneOf;
|
|
31855
|
+
type index_d$3_AdditionalFeeRefund = AdditionalFeeRefund;
|
|
31856
|
+
type index_d$3_AdditionalFeeRefundOption = AdditionalFeeRefundOption;
|
|
31681
31857
|
type index_d$3_AddressDescription = AddressDescription;
|
|
31682
31858
|
type index_d$3_AddressLocation = AddressLocation;
|
|
31683
31859
|
type index_d$3_AddressWithContact = AddressWithContact;
|
|
@@ -31729,8 +31905,19 @@ type index_d$3_BulkUpdateOrdersRequest = BulkUpdateOrdersRequest;
|
|
|
31729
31905
|
type index_d$3_BulkUpdateOrdersResponse = BulkUpdateOrdersResponse;
|
|
31730
31906
|
type index_d$3_BuyerInfoIdOneOf = BuyerInfoIdOneOf;
|
|
31731
31907
|
type index_d$3_BuyerInfoUpdate = BuyerInfoUpdate;
|
|
31908
|
+
type index_d$3_CalculateRefundV2Request = CalculateRefundV2Request;
|
|
31909
|
+
type index_d$3_CalculateRefundV2Response = CalculateRefundV2Response;
|
|
31910
|
+
type index_d$3_CalculateRefundV2ResponseStatusOneOf = CalculateRefundV2ResponseStatusOneOf;
|
|
31911
|
+
type index_d$3_CalculatedAdditionalFeeRefund = CalculatedAdditionalFeeRefund;
|
|
31912
|
+
type index_d$3_CalculatedLineItemRefund = CalculatedLineItemRefund;
|
|
31913
|
+
type index_d$3_CalculatedRefundDetails = CalculatedRefundDetails;
|
|
31914
|
+
type index_d$3_CalculatedRefundNotAvailableStatus = CalculatedRefundNotAvailableStatus;
|
|
31915
|
+
type index_d$3_CalculatedRefundSummary = CalculatedRefundSummary;
|
|
31916
|
+
type index_d$3_CalculatedShippingRefund = CalculatedShippingRefund;
|
|
31732
31917
|
type index_d$3_CalculatedTax = CalculatedTax;
|
|
31733
31918
|
type index_d$3_CalculatedTaxes = CalculatedTaxes;
|
|
31919
|
+
type index_d$3_CalculationError = CalculationError;
|
|
31920
|
+
type index_d$3_CalculationErrorItemOneOf = CalculationErrorItemOneOf;
|
|
31734
31921
|
type index_d$3_Cancel = Cancel;
|
|
31735
31922
|
type index_d$3_CancelOrderOptions = CancelOrderOptions;
|
|
31736
31923
|
type index_d$3_CancelOrderRequest = CancelOrderRequest;
|
|
@@ -31762,11 +31949,6 @@ type index_d$3_CreatePaymentGatewayOrderRequest = CreatePaymentGatewayOrderReque
|
|
|
31762
31949
|
type index_d$3_CreatePaymentGatewayOrderResponse = CreatePaymentGatewayOrderResponse;
|
|
31763
31950
|
type index_d$3_CreatedBy = CreatedBy;
|
|
31764
31951
|
type index_d$3_CreatedByStringOneOf = CreatedByStringOneOf;
|
|
31765
|
-
type index_d$3_CursorPaging = CursorPaging;
|
|
31766
|
-
type index_d$3_CursorPagingMetadata = CursorPagingMetadata;
|
|
31767
|
-
type index_d$3_CursorSearch = CursorSearch;
|
|
31768
|
-
type index_d$3_CursorSearchPagingMethodOneOf = CursorSearchPagingMethodOneOf;
|
|
31769
|
-
type index_d$3_Cursors = Cursors;
|
|
31770
31952
|
type index_d$3_CustomActivity = CustomActivity;
|
|
31771
31953
|
type index_d$3_CustomFieldGroup = CustomFieldGroup;
|
|
31772
31954
|
declare const index_d$3_CustomFieldGroup: typeof CustomFieldGroup;
|
|
@@ -31793,6 +31975,8 @@ type index_d$3_DescriptionLineName = DescriptionLineName;
|
|
|
31793
31975
|
type index_d$3_DescriptionLineType = DescriptionLineType;
|
|
31794
31976
|
declare const index_d$3_DescriptionLineType: typeof DescriptionLineType;
|
|
31795
31977
|
type index_d$3_DescriptionLineValueOneOf = DescriptionLineValueOneOf;
|
|
31978
|
+
type index_d$3_Details = Details;
|
|
31979
|
+
type index_d$3_DetailsKindOneOf = DetailsKindOneOf;
|
|
31796
31980
|
type index_d$3_DiscountOneDiscountTypeOneOf = DiscountOneDiscountTypeOneOf;
|
|
31797
31981
|
type index_d$3_DiscountReason = DiscountReason;
|
|
31798
31982
|
declare const index_d$3_DiscountReason: typeof DiscountReason;
|
|
@@ -31810,6 +31994,7 @@ type index_d$3_EmailEdited = EmailEdited;
|
|
|
31810
31994
|
type index_d$3_Empty = Empty;
|
|
31811
31995
|
type index_d$3_ExtendedFields = ExtendedFields;
|
|
31812
31996
|
type index_d$3_ExternalUriMapping = ExternalUriMapping;
|
|
31997
|
+
type index_d$3_FieldViolation = FieldViolation;
|
|
31813
31998
|
type index_d$3_FulfillerEmailSent = FulfillerEmailSent;
|
|
31814
31999
|
type index_d$3_FulfillmentStatusUpdated = FulfillmentStatusUpdated;
|
|
31815
32000
|
type index_d$3_FulfillmentStatusesAggregate = FulfillmentStatusesAggregate;
|
|
@@ -31823,6 +32008,8 @@ type index_d$3_GetOrderResponse = GetOrderResponse;
|
|
|
31823
32008
|
type index_d$3_GetOrderResponseNonNullableFields = GetOrderResponseNonNullableFields;
|
|
31824
32009
|
type index_d$3_GetPaymentCollectabilityStatusRequest = GetPaymentCollectabilityStatusRequest;
|
|
31825
32010
|
type index_d$3_GetPaymentCollectabilityStatusResponse = GetPaymentCollectabilityStatusResponse;
|
|
32011
|
+
type index_d$3_GetRefundOptionsRequest = GetRefundOptionsRequest;
|
|
32012
|
+
type index_d$3_GetRefundOptionsResponse = GetRefundOptionsResponse;
|
|
31826
32013
|
type index_d$3_GetShipmentsRequest = GetShipmentsRequest;
|
|
31827
32014
|
type index_d$3_GetShipmentsResponse = GetShipmentsResponse;
|
|
31828
32015
|
type index_d$3_HtmlApplication = HtmlApplication;
|
|
@@ -31867,6 +32054,8 @@ type index_d$3_LineItemPriceChange = LineItemPriceChange;
|
|
|
31867
32054
|
type index_d$3_LineItemQuantityChange = LineItemQuantityChange;
|
|
31868
32055
|
type index_d$3_LineItemQuantityChangeType = LineItemQuantityChangeType;
|
|
31869
32056
|
declare const index_d$3_LineItemQuantityChangeType: typeof LineItemQuantityChangeType;
|
|
32057
|
+
type index_d$3_LineItemRefund = LineItemRefund;
|
|
32058
|
+
type index_d$3_LineItemRefundOption = LineItemRefundOption;
|
|
31870
32059
|
type index_d$3_LineItemTax = LineItemTax;
|
|
31871
32060
|
type index_d$3_LineItemTaxBreakdown = LineItemTaxBreakdown;
|
|
31872
32061
|
type index_d$3_LineItemTaxInfo = LineItemTaxInfo;
|
|
@@ -31879,6 +32068,7 @@ type index_d$3_LocationAndQuantity = LocationAndQuantity;
|
|
|
31879
32068
|
type index_d$3_ManagedAdditionalFee = ManagedAdditionalFee;
|
|
31880
32069
|
type index_d$3_ManagedDiscount = ManagedDiscount;
|
|
31881
32070
|
type index_d$3_ManagedLineItem = ManagedLineItem;
|
|
32071
|
+
type index_d$3_ManuallyRefundablePaymentStatus = ManuallyRefundablePaymentStatus;
|
|
31882
32072
|
type index_d$3_MarkAsFulfilledRequest = MarkAsFulfilledRequest;
|
|
31883
32073
|
type index_d$3_MarkAsFulfilledResponse = MarkAsFulfilledResponse;
|
|
31884
32074
|
type index_d$3_MarkAsUnfulfilledRequest = MarkAsUnfulfilledRequest;
|
|
@@ -31890,15 +32080,19 @@ type index_d$3_MarkOrderAsSeenByHumanResponse = MarkOrderAsSeenByHumanResponse;
|
|
|
31890
32080
|
type index_d$3_MaskedOrder = MaskedOrder;
|
|
31891
32081
|
type index_d$3_MaskedOrderLineItem = MaskedOrderLineItem;
|
|
31892
32082
|
type index_d$3_MembershipChargeItem = MembershipChargeItem;
|
|
32083
|
+
type index_d$3_MembershipPaymentSummary = MembershipPaymentSummary;
|
|
31893
32084
|
type index_d$3_MerchantComment = MerchantComment;
|
|
31894
32085
|
type index_d$3_MerchantDiscount = MerchantDiscount;
|
|
31895
32086
|
type index_d$3_MerchantDiscountMerchantDiscountReasonOneOf = MerchantDiscountMerchantDiscountReasonOneOf;
|
|
31896
32087
|
type index_d$3_MetaData = MetaData;
|
|
31897
32088
|
type index_d$3_MetaSite = MetaSite;
|
|
31898
32089
|
type index_d$3_MetaTag = MetaTag;
|
|
32090
|
+
type index_d$3_MonetaryPaymentSummary = MonetaryPaymentSummary;
|
|
31899
32091
|
type index_d$3_Namespace = Namespace;
|
|
31900
32092
|
declare const index_d$3_Namespace: typeof Namespace;
|
|
31901
32093
|
type index_d$3_NewExchangeOrderCreated = NewExchangeOrderCreated;
|
|
32094
|
+
type index_d$3_NonRefundablePaymentStatus = NonRefundablePaymentStatus;
|
|
32095
|
+
type index_d$3_NotificationSideEffects = NotificationSideEffects;
|
|
31902
32096
|
type index_d$3_OrderApprovalStrategy = OrderApprovalStrategy;
|
|
31903
32097
|
declare const index_d$3_OrderApprovalStrategy: typeof OrderApprovalStrategy;
|
|
31904
32098
|
type index_d$3_OrderApproved = OrderApproved;
|
|
@@ -31927,13 +32121,20 @@ type index_d$3_OrderTaxBreakdown = OrderTaxBreakdown;
|
|
|
31927
32121
|
type index_d$3_OrderTaxInfo = OrderTaxInfo;
|
|
31928
32122
|
type index_d$3_OrderUpdatedEnvelope = OrderUpdatedEnvelope;
|
|
31929
32123
|
type index_d$3_OrdersExperiments = OrdersExperiments;
|
|
32124
|
+
type index_d$3_OrdersV1RestockItem = OrdersV1RestockItem;
|
|
31930
32125
|
type index_d$3_PaymentCapture = PaymentCapture;
|
|
31931
32126
|
type index_d$3_PaymentCollectabilityStatus = PaymentCollectabilityStatus;
|
|
31932
32127
|
declare const index_d$3_PaymentCollectabilityStatus: typeof PaymentCollectabilityStatus;
|
|
32128
|
+
type index_d$3_PaymentInfo = PaymentInfo;
|
|
32129
|
+
type index_d$3_PaymentInfoPaymentMethodDetailsOneOf = PaymentInfoPaymentMethodDetailsOneOf;
|
|
32130
|
+
type index_d$3_PaymentInfoSummaryOneOf = PaymentInfoSummaryOneOf;
|
|
31933
32131
|
type index_d$3_PaymentOptionType = PaymentOptionType;
|
|
31934
32132
|
declare const index_d$3_PaymentOptionType: typeof PaymentOptionType;
|
|
32133
|
+
type index_d$3_PaymentRefundOption = PaymentRefundOption;
|
|
32134
|
+
type index_d$3_PaymentRefundOptionStatusOneOf = PaymentRefundOptionStatusOneOf;
|
|
31935
32135
|
type index_d$3_PaymentStatusUpdated = PaymentStatusUpdated;
|
|
31936
32136
|
type index_d$3_Payments = Payments;
|
|
32137
|
+
type index_d$3_PaymentsSummary = PaymentsSummary;
|
|
31937
32138
|
type index_d$3_Phone = Phone;
|
|
31938
32139
|
type index_d$3_PhysicalProperties = PhysicalProperties;
|
|
31939
32140
|
type index_d$3_PickupMethod = PickupMethod;
|
|
@@ -31981,7 +32182,16 @@ type index_d$3_QuotesAddress = QuotesAddress;
|
|
|
31981
32182
|
type index_d$3_RecordManuallyCollectedPaymentRequest = RecordManuallyCollectedPaymentRequest;
|
|
31982
32183
|
type index_d$3_RecordManuallyCollectedPaymentResponse = RecordManuallyCollectedPaymentResponse;
|
|
31983
32184
|
type index_d$3_RedirectUrls = RedirectUrls;
|
|
32185
|
+
type index_d$3_RefundRequest = RefundRequest;
|
|
32186
|
+
type index_d$3_RefundResponse = RefundResponse;
|
|
32187
|
+
type index_d$3_RefundabilityManuallyRefundableReason = RefundabilityManuallyRefundableReason;
|
|
32188
|
+
declare const index_d$3_RefundabilityManuallyRefundableReason: typeof RefundabilityManuallyRefundableReason;
|
|
32189
|
+
type index_d$3_RefundabilityNonRefundableReason = RefundabilityNonRefundableReason;
|
|
32190
|
+
declare const index_d$3_RefundabilityNonRefundableReason: typeof RefundabilityNonRefundableReason;
|
|
31984
32191
|
type index_d$3_Reschedule = Reschedule;
|
|
32192
|
+
type index_d$3_RestockSideEffects = RestockSideEffects;
|
|
32193
|
+
type index_d$3_RuleType = RuleType;
|
|
32194
|
+
declare const index_d$3_RuleType: typeof RuleType;
|
|
31985
32195
|
type index_d$3_SavedPaymentMethod = SavedPaymentMethod;
|
|
31986
32196
|
type index_d$3_SearchOrdersOptions = SearchOrdersOptions;
|
|
31987
32197
|
type index_d$3_SearchOrdersRequest = SearchOrdersRequest;
|
|
@@ -32007,10 +32217,9 @@ type index_d$3_ShippingAddressEdited = ShippingAddressEdited;
|
|
|
32007
32217
|
type index_d$3_ShippingConfirmationEmailSent = ShippingConfirmationEmailSent;
|
|
32008
32218
|
type index_d$3_ShippingInformation = ShippingInformation;
|
|
32009
32219
|
type index_d$3_ShippingPrice = ShippingPrice;
|
|
32220
|
+
type index_d$3_ShippingRefund = ShippingRefund;
|
|
32221
|
+
type index_d$3_ShippingRefundOption = ShippingRefundOption;
|
|
32010
32222
|
type index_d$3_ShippingRegion = ShippingRegion;
|
|
32011
|
-
type index_d$3_SortOrder = SortOrder;
|
|
32012
|
-
declare const index_d$3_SortOrder: typeof SortOrder;
|
|
32013
|
-
type index_d$3_Sorting = Sorting;
|
|
32014
32223
|
type index_d$3_Source = Source;
|
|
32015
32224
|
type index_d$3_SourceType = SourceType;
|
|
32016
32225
|
declare const index_d$3_SourceType: typeof SourceType;
|
|
@@ -32021,6 +32230,7 @@ type index_d$3_StreetAddress = StreetAddress;
|
|
|
32021
32230
|
type index_d$3_Subdivision = Subdivision;
|
|
32022
32231
|
type index_d$3_SubdivisionType = SubdivisionType;
|
|
32023
32232
|
declare const index_d$3_SubdivisionType: typeof SubdivisionType;
|
|
32233
|
+
type index_d$3_SystemError = SystemError;
|
|
32024
32234
|
type index_d$3_TagList = TagList;
|
|
32025
32235
|
type index_d$3_Tags = Tags;
|
|
32026
32236
|
type index_d$3_Task = Task;
|
|
@@ -32073,7 +32283,11 @@ type index_d$3_V1LineItemDelta = V1LineItemDelta;
|
|
|
32073
32283
|
type index_d$3_V1LineItemDeltaDeltaOneOf = V1LineItemDeltaDeltaOneOf;
|
|
32074
32284
|
type index_d$3_V1MarkOrderAsPaidRequest = V1MarkOrderAsPaidRequest;
|
|
32075
32285
|
type index_d$3_V1MarkOrderAsPaidResponse = V1MarkOrderAsPaidResponse;
|
|
32286
|
+
type index_d$3_V1PaymentRefund = V1PaymentRefund;
|
|
32287
|
+
type index_d$3_V1RefundDetails = V1RefundDetails;
|
|
32288
|
+
type index_d$3_V1RefundSideEffects = V1RefundSideEffects;
|
|
32076
32289
|
type index_d$3_V1RestockItem = V1RestockItem;
|
|
32290
|
+
type index_d$3_ValidationError = ValidationError;
|
|
32077
32291
|
type index_d$3_Value = Value;
|
|
32078
32292
|
type index_d$3_ValueType = ValueType;
|
|
32079
32293
|
declare const index_d$3_ValueType: typeof ValueType;
|
|
@@ -32097,7 +32311,7 @@ declare const index_d$3_onOrderUpdated: typeof onOrderUpdated;
|
|
|
32097
32311
|
declare const index_d$3_searchOrders: typeof searchOrders;
|
|
32098
32312
|
declare const index_d$3_updateOrder: typeof updateOrder;
|
|
32099
32313
|
declare namespace index_d$3 {
|
|
32100
|
-
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 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_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_CalculatedTax as CalculatedTax, type index_d$3_CalculatedTaxes as CalculatedTaxes, 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 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_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 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_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, 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_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, index_d$3_Namespace as Namespace, type index_d$3_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, 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 Payment$1 as Payment, type index_d$3_PaymentCapture as PaymentCapture, index_d$3_PaymentCollectabilityStatus as PaymentCollectabilityStatus, index_d$3_PaymentOptionType as PaymentOptionType, type PaymentPaymentDetailsOneOf$1 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, PaymentStatus$1 as PaymentStatus, type index_d$3_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$3_Payments as Payments, 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 RefundSideEffects$1 as RefundSideEffects, RefundStatus$1 as RefundStatus, type RefundTransaction$1 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, 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, RestockType$1 as RestockType, 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_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_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_V1RestockItem as V1RestockItem, 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 };
|
|
32101
32315
|
}
|
|
32102
32316
|
|
|
32103
32317
|
interface OrderTransactions {
|
|
@@ -32305,6 +32519,8 @@ interface RefundItem {
|
|
|
32305
32519
|
/** Line item quantity refunded. */
|
|
32306
32520
|
quantity?: number;
|
|
32307
32521
|
}
|
|
32522
|
+
interface AggregatedRefundSummary {
|
|
32523
|
+
}
|
|
32308
32524
|
interface SnapshotMessage {
|
|
32309
32525
|
_id?: string;
|
|
32310
32526
|
opType?: number;
|
|
@@ -33261,6 +33477,73 @@ interface BulkActionMetadata {
|
|
|
33261
33477
|
/** Number of failures without details because detailed failure threshold was exceeded. */
|
|
33262
33478
|
undetailedFailures?: number;
|
|
33263
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
|
+
}
|
|
33264
33547
|
interface TriggerRefundRequest {
|
|
33265
33548
|
/** The order this refund related to */
|
|
33266
33549
|
orderId?: string;
|
|
@@ -33281,7 +33564,7 @@ interface TriggerRefundRequest {
|
|
|
33281
33564
|
interface PaymentRefund {
|
|
33282
33565
|
/** Specific payment within the order to refund */
|
|
33283
33566
|
paymentId?: string;
|
|
33284
|
-
/** Refund amount. Not relevant for membership refunds. */
|
|
33567
|
+
/** Refund amount. Not relevant for membership and gift card refunds. */
|
|
33285
33568
|
amount?: Price;
|
|
33286
33569
|
/**
|
|
33287
33570
|
* Whether refund is made externally and manually (on the payment provider's side)
|
|
@@ -33855,6 +34138,7 @@ type index_d$2_AddRefundRequest = AddRefundRequest;
|
|
|
33855
34138
|
type index_d$2_AddRefundResponse = AddRefundResponse;
|
|
33856
34139
|
type index_d$2_Address = Address;
|
|
33857
34140
|
type index_d$2_AddressAddressLine1OptionsOneOf = AddressAddressLine1OptionsOneOf;
|
|
34141
|
+
type index_d$2_AggregatedRefundSummary = AggregatedRefundSummary;
|
|
33858
34142
|
type index_d$2_ApplicationError = ApplicationError;
|
|
33859
34143
|
type index_d$2_AppliedCoupon = AppliedCoupon;
|
|
33860
34144
|
type index_d$2_AuthorizationActionFailureDetails = AuthorizationActionFailureDetails;
|
|
@@ -33885,6 +34169,11 @@ type index_d$2_ChannelInfo = ChannelInfo;
|
|
|
33885
34169
|
type index_d$2_ChannelType = ChannelType;
|
|
33886
34170
|
declare const index_d$2_ChannelType: typeof ChannelType;
|
|
33887
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;
|
|
33888
34177
|
type index_d$2_CustomField = CustomField;
|
|
33889
34178
|
type index_d$2_CustomTextFieldSelection = CustomTextFieldSelection;
|
|
33890
34179
|
type index_d$2_DiffmatokyPayload = DiffmatokyPayload;
|
|
@@ -33973,11 +34262,16 @@ type index_d$2_RestockInfo = RestockInfo;
|
|
|
33973
34262
|
type index_d$2_RestockItem = RestockItem;
|
|
33974
34263
|
type index_d$2_RestockType = RestockType;
|
|
33975
34264
|
declare const index_d$2_RestockType: typeof RestockType;
|
|
34265
|
+
type index_d$2_SearchOrderTransactionsRequest = SearchOrderTransactionsRequest;
|
|
34266
|
+
type index_d$2_SearchOrderTransactionsResponse = SearchOrderTransactionsResponse;
|
|
33976
34267
|
type index_d$2_ShipmentDetails = ShipmentDetails;
|
|
33977
34268
|
type index_d$2_ShippingInfo = ShippingInfo;
|
|
33978
34269
|
type index_d$2_ShippingInfoDetailsOneOf = ShippingInfoDetailsOneOf;
|
|
33979
34270
|
type index_d$2_ShippingPriceData = ShippingPriceData;
|
|
33980
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;
|
|
33981
34275
|
type index_d$2_Street = Street;
|
|
33982
34276
|
type index_d$2_SubscriptionFrequency = SubscriptionFrequency;
|
|
33983
34277
|
declare const index_d$2_SubscriptionFrequency: typeof SubscriptionFrequency;
|
|
@@ -33995,6 +34289,8 @@ type index_d$2_UpdatePaymentStatusOptions = UpdatePaymentStatusOptions;
|
|
|
33995
34289
|
type index_d$2_UpdatePaymentStatusRequest = UpdatePaymentStatusRequest;
|
|
33996
34290
|
type index_d$2_UpdatePaymentStatusResponse = UpdatePaymentStatusResponse;
|
|
33997
34291
|
type index_d$2_UpdatePaymentStatusResponseNonNullableFields = UpdatePaymentStatusResponseNonNullableFields;
|
|
34292
|
+
type index_d$2_UpdateRefundTransactionRequest = UpdateRefundTransactionRequest;
|
|
34293
|
+
type index_d$2_UpdateRefundTransactionResponse = UpdateRefundTransactionResponse;
|
|
33998
34294
|
type index_d$2_V2InvoiceInfo = V2InvoiceInfo;
|
|
33999
34295
|
type index_d$2_V2Refund = V2Refund;
|
|
34000
34296
|
type index_d$2_VatId = VatId;
|
|
@@ -34009,7 +34305,7 @@ declare const index_d$2_listTransactionsForSingleOrder: typeof listTransactionsF
|
|
|
34009
34305
|
declare const index_d$2_onOrderTransactionsUpdated: typeof onOrderTransactionsUpdated;
|
|
34010
34306
|
declare const index_d$2_updatePaymentStatus: typeof updatePaymentStatus;
|
|
34011
34307
|
declare namespace index_d$2 {
|
|
34012
|
-
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 };
|
|
34013
34309
|
}
|
|
34014
34310
|
|
|
34015
34311
|
interface OrdersSettings {
|