@wix/ecom 1.0.636 → 1.0.638
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ecom",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.638",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -23,18 +23,18 @@
|
|
|
23
23
|
"@wix/ecom_additional-fees": "1.0.9",
|
|
24
24
|
"@wix/ecom_back-in-stock-notifications": "1.0.35",
|
|
25
25
|
"@wix/ecom_back-in-stock-settings": "1.0.22",
|
|
26
|
-
"@wix/ecom_cart": "1.0.
|
|
27
|
-
"@wix/ecom_checkout": "1.0.
|
|
26
|
+
"@wix/ecom_cart": "1.0.48",
|
|
27
|
+
"@wix/ecom_checkout": "1.0.52",
|
|
28
28
|
"@wix/ecom_checkout-settings": "1.0.33",
|
|
29
|
-
"@wix/ecom_checkout-templates": "1.0.
|
|
29
|
+
"@wix/ecom_checkout-templates": "1.0.54",
|
|
30
30
|
"@wix/ecom_currencies": "1.0.23",
|
|
31
|
-
"@wix/ecom_current-cart": "1.0.
|
|
31
|
+
"@wix/ecom_current-cart": "1.0.48",
|
|
32
32
|
"@wix/ecom_custom-triggers": "1.0.7",
|
|
33
33
|
"@wix/ecom_discount-rules": "1.0.35",
|
|
34
34
|
"@wix/ecom_order-fulfillments": "1.0.30",
|
|
35
35
|
"@wix/ecom_order-invoices": "1.0.25",
|
|
36
36
|
"@wix/ecom_order-transactions": "1.0.41",
|
|
37
|
-
"@wix/ecom_orders": "1.0.
|
|
37
|
+
"@wix/ecom_orders": "1.0.71",
|
|
38
38
|
"@wix/ecom_orders-settings": "1.0.30",
|
|
39
39
|
"@wix/ecom_payment-settings": "1.0.13",
|
|
40
40
|
"@wix/ecom_recommendations": "1.0.26",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"fqdn": ""
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
|
-
"falconPackageHash": "
|
|
67
|
+
"falconPackageHash": "76d56dc041f581707a1dfcbaed10338b79efc498aac64e7e3522b16a"
|
|
68
68
|
}
|
|
@@ -8669,6 +8669,18 @@ interface CustomSettings$1 {
|
|
|
8669
8669
|
* Default: `false`
|
|
8670
8670
|
*/
|
|
8671
8671
|
lockCouponCode?: boolean;
|
|
8672
|
+
/**
|
|
8673
|
+
* Whether to disable policy agreement checkout in the checkout page
|
|
8674
|
+
*
|
|
8675
|
+
* Default: `false`
|
|
8676
|
+
*/
|
|
8677
|
+
disabledPolicyAgreementCheckbox?: boolean;
|
|
8678
|
+
/**
|
|
8679
|
+
* Whether to disable manual payment option for this checkout.
|
|
8680
|
+
*
|
|
8681
|
+
* Default: `false`
|
|
8682
|
+
*/
|
|
8683
|
+
disabledManualPayment?: boolean;
|
|
8672
8684
|
}
|
|
8673
8685
|
interface GetCheckoutResponse {
|
|
8674
8686
|
/** The requested checkout. */
|
|
@@ -9471,6 +9483,8 @@ interface GetCheckoutResponseNonNullableFields {
|
|
|
9471
9483
|
customSettings?: {
|
|
9472
9484
|
lockGiftCard: boolean;
|
|
9473
9485
|
lockCouponCode: boolean;
|
|
9486
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
9487
|
+
disabledManualPayment: boolean;
|
|
9474
9488
|
};
|
|
9475
9489
|
};
|
|
9476
9490
|
}
|
|
@@ -10176,6 +10190,8 @@ interface RemoveCouponResponseNonNullableFields {
|
|
|
10176
10190
|
customSettings?: {
|
|
10177
10191
|
lockGiftCard: boolean;
|
|
10178
10192
|
lockCouponCode: boolean;
|
|
10193
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
10194
|
+
disabledManualPayment: boolean;
|
|
10179
10195
|
};
|
|
10180
10196
|
};
|
|
10181
10197
|
}
|
|
@@ -10878,6 +10894,8 @@ interface RemoveGiftCardResponseNonNullableFields {
|
|
|
10878
10894
|
customSettings?: {
|
|
10879
10895
|
lockGiftCard: boolean;
|
|
10880
10896
|
lockCouponCode: boolean;
|
|
10897
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
10898
|
+
disabledManualPayment: boolean;
|
|
10881
10899
|
};
|
|
10882
10900
|
};
|
|
10883
10901
|
}
|
|
@@ -11580,6 +11598,8 @@ interface RemoveOverrideCheckoutUrlResponseNonNullableFields {
|
|
|
11580
11598
|
customSettings?: {
|
|
11581
11599
|
lockGiftCard: boolean;
|
|
11582
11600
|
lockCouponCode: boolean;
|
|
11601
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
11602
|
+
disabledManualPayment: boolean;
|
|
11583
11603
|
};
|
|
11584
11604
|
};
|
|
11585
11605
|
}
|
|
@@ -12282,6 +12302,8 @@ interface AddToCheckoutResponseNonNullableFields {
|
|
|
12282
12302
|
customSettings?: {
|
|
12283
12303
|
lockGiftCard: boolean;
|
|
12284
12304
|
lockCouponCode: boolean;
|
|
12305
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
12306
|
+
disabledManualPayment: boolean;
|
|
12285
12307
|
};
|
|
12286
12308
|
};
|
|
12287
12309
|
}
|
|
@@ -12984,6 +13006,8 @@ interface RemoveLineItemsResponseNonNullableFields {
|
|
|
12984
13006
|
customSettings?: {
|
|
12985
13007
|
lockGiftCard: boolean;
|
|
12986
13008
|
lockCouponCode: boolean;
|
|
13009
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
13010
|
+
disabledManualPayment: boolean;
|
|
12987
13011
|
};
|
|
12988
13012
|
};
|
|
12989
13013
|
}
|
|
@@ -13690,6 +13714,8 @@ interface UpdateLineItemsQuantityResponseNonNullableFields {
|
|
|
13690
13714
|
customSettings?: {
|
|
13691
13715
|
lockGiftCard: boolean;
|
|
13692
13716
|
lockCouponCode: boolean;
|
|
13717
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
13718
|
+
disabledManualPayment: boolean;
|
|
13693
13719
|
};
|
|
13694
13720
|
};
|
|
13695
13721
|
}
|
|
@@ -14649,6 +14675,8 @@ declare function createCheckout$1(httpClient: HttpClient): (options?: CreateChec
|
|
|
14649
14675
|
customSettings?: {
|
|
14650
14676
|
lockGiftCard: boolean;
|
|
14651
14677
|
lockCouponCode: boolean;
|
|
14678
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
14679
|
+
disabledManualPayment: boolean;
|
|
14652
14680
|
} | undefined;
|
|
14653
14681
|
}>;
|
|
14654
14682
|
declare function getCheckout$1(httpClient: HttpClient): (_id: string) => Promise<GetCheckoutResponse & GetCheckoutResponseNonNullableFields>;
|
|
@@ -15351,6 +15379,8 @@ declare function updateCheckout$1(httpClient: HttpClient): (_id: string | null,
|
|
|
15351
15379
|
customSettings?: {
|
|
15352
15380
|
lockGiftCard: boolean;
|
|
15353
15381
|
lockCouponCode: boolean;
|
|
15382
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
15383
|
+
disabledManualPayment: boolean;
|
|
15354
15384
|
} | undefined;
|
|
15355
15385
|
}>;
|
|
15356
15386
|
declare function removeCoupon$1(httpClient: HttpClient): (_id: string) => Promise<RemoveCouponResponse & RemoveCouponResponseNonNullableFields>;
|
|
@@ -4869,6 +4869,9 @@ interface DomainEventBodyOneOf$8 {
|
|
|
4869
4869
|
interface EntityCreatedEvent$8 {
|
|
4870
4870
|
entity?: string;
|
|
4871
4871
|
}
|
|
4872
|
+
interface UndeleteInfo$4 {
|
|
4873
|
+
deletedDate?: Date;
|
|
4874
|
+
}
|
|
4872
4875
|
interface EntityUpdatedEvent$8 {
|
|
4873
4876
|
/**
|
|
4874
4877
|
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
@@ -7277,7 +7280,7 @@ declare const index_d$9_estimateTotals: typeof estimateTotals;
|
|
|
7277
7280
|
declare const index_d$9_getCart: typeof getCart;
|
|
7278
7281
|
declare const index_d$9_updateCart: typeof updateCart;
|
|
7279
7282
|
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$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 };
|
|
7283
|
+
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 UndeleteInfo$4 as UndeleteInfo, 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
7284
|
}
|
|
7282
7285
|
|
|
7283
7286
|
interface Cart {
|
|
@@ -8832,6 +8835,9 @@ interface DomainEventBodyOneOf$7 {
|
|
|
8832
8835
|
interface EntityCreatedEvent$7 {
|
|
8833
8836
|
entity?: string;
|
|
8834
8837
|
}
|
|
8838
|
+
interface UndeleteInfo$3 {
|
|
8839
|
+
deletedDate?: Date;
|
|
8840
|
+
}
|
|
8835
8841
|
interface EntityUpdatedEvent$7 {
|
|
8836
8842
|
/**
|
|
8837
8843
|
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
@@ -11079,7 +11085,7 @@ declare const index_d$8_removeLineItemsFromCurrentCart: typeof removeLineItemsFr
|
|
|
11079
11085
|
declare const index_d$8_updateCurrentCart: typeof updateCurrentCart;
|
|
11080
11086
|
declare const index_d$8_updateCurrentCartLineItemQuantity: typeof updateCurrentCartLineItemQuantity;
|
|
11081
11087
|
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$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 };
|
|
11088
|
+
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 UndeleteInfo$3 as UndeleteInfo, 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
11089
|
}
|
|
11084
11090
|
|
|
11085
11091
|
interface Checkout$1 {
|
|
@@ -12472,6 +12478,18 @@ interface CustomSettings$1 {
|
|
|
12472
12478
|
* Default: `false`
|
|
12473
12479
|
*/
|
|
12474
12480
|
lockCouponCode?: boolean;
|
|
12481
|
+
/**
|
|
12482
|
+
* Whether to disable policy agreement checkout in the checkout page
|
|
12483
|
+
*
|
|
12484
|
+
* Default: `false`
|
|
12485
|
+
*/
|
|
12486
|
+
disabledPolicyAgreementCheckbox?: boolean;
|
|
12487
|
+
/**
|
|
12488
|
+
* Whether to disable manual payment option for this checkout.
|
|
12489
|
+
*
|
|
12490
|
+
* Default: `false`
|
|
12491
|
+
*/
|
|
12492
|
+
disabledManualPayment?: boolean;
|
|
12475
12493
|
}
|
|
12476
12494
|
interface CustomContentReference$1 {
|
|
12477
12495
|
/**
|
|
@@ -13257,6 +13275,9 @@ interface DomainEventBodyOneOf$6 {
|
|
|
13257
13275
|
interface EntityCreatedEvent$6 {
|
|
13258
13276
|
entity?: string;
|
|
13259
13277
|
}
|
|
13278
|
+
interface UndeleteInfo$2 {
|
|
13279
|
+
deletedDate?: Date;
|
|
13280
|
+
}
|
|
13260
13281
|
interface EntityUpdatedEvent$6 {
|
|
13261
13282
|
/**
|
|
13262
13283
|
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
@@ -14011,6 +14032,8 @@ interface CreateCheckoutResponseNonNullableFields {
|
|
|
14011
14032
|
customSettings?: {
|
|
14012
14033
|
lockGiftCard: boolean;
|
|
14013
14034
|
lockCouponCode: boolean;
|
|
14035
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
14036
|
+
disabledManualPayment: boolean;
|
|
14014
14037
|
};
|
|
14015
14038
|
};
|
|
14016
14039
|
}
|
|
@@ -14713,6 +14736,8 @@ interface GetCheckoutResponseNonNullableFields {
|
|
|
14713
14736
|
customSettings?: {
|
|
14714
14737
|
lockGiftCard: boolean;
|
|
14715
14738
|
lockCouponCode: boolean;
|
|
14739
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
14740
|
+
disabledManualPayment: boolean;
|
|
14716
14741
|
};
|
|
14717
14742
|
};
|
|
14718
14743
|
}
|
|
@@ -15418,6 +15443,8 @@ interface UpdateCheckoutResponseNonNullableFields {
|
|
|
15418
15443
|
customSettings?: {
|
|
15419
15444
|
lockGiftCard: boolean;
|
|
15420
15445
|
lockCouponCode: boolean;
|
|
15446
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
15447
|
+
disabledManualPayment: boolean;
|
|
15421
15448
|
};
|
|
15422
15449
|
};
|
|
15423
15450
|
}
|
|
@@ -16120,6 +16147,8 @@ interface RemoveCouponResponseNonNullableFields {
|
|
|
16120
16147
|
customSettings?: {
|
|
16121
16148
|
lockGiftCard: boolean;
|
|
16122
16149
|
lockCouponCode: boolean;
|
|
16150
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
16151
|
+
disabledManualPayment: boolean;
|
|
16123
16152
|
};
|
|
16124
16153
|
};
|
|
16125
16154
|
}
|
|
@@ -16822,6 +16851,8 @@ interface RemoveGiftCardResponseNonNullableFields {
|
|
|
16822
16851
|
customSettings?: {
|
|
16823
16852
|
lockGiftCard: boolean;
|
|
16824
16853
|
lockCouponCode: boolean;
|
|
16854
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
16855
|
+
disabledManualPayment: boolean;
|
|
16825
16856
|
};
|
|
16826
16857
|
};
|
|
16827
16858
|
}
|
|
@@ -17524,6 +17555,8 @@ interface RemoveOverrideCheckoutUrlResponseNonNullableFields {
|
|
|
17524
17555
|
customSettings?: {
|
|
17525
17556
|
lockGiftCard: boolean;
|
|
17526
17557
|
lockCouponCode: boolean;
|
|
17558
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
17559
|
+
disabledManualPayment: boolean;
|
|
17527
17560
|
};
|
|
17528
17561
|
};
|
|
17529
17562
|
}
|
|
@@ -18226,6 +18259,8 @@ interface AddToCheckoutResponseNonNullableFields {
|
|
|
18226
18259
|
customSettings?: {
|
|
18227
18260
|
lockGiftCard: boolean;
|
|
18228
18261
|
lockCouponCode: boolean;
|
|
18262
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
18263
|
+
disabledManualPayment: boolean;
|
|
18229
18264
|
};
|
|
18230
18265
|
};
|
|
18231
18266
|
}
|
|
@@ -18928,6 +18963,8 @@ interface RemoveLineItemsResponseNonNullableFields {
|
|
|
18928
18963
|
customSettings?: {
|
|
18929
18964
|
lockGiftCard: boolean;
|
|
18930
18965
|
lockCouponCode: boolean;
|
|
18966
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
18967
|
+
disabledManualPayment: boolean;
|
|
18931
18968
|
};
|
|
18932
18969
|
};
|
|
18933
18970
|
}
|
|
@@ -19634,6 +19671,8 @@ interface UpdateLineItemsQuantityResponseNonNullableFields {
|
|
|
19634
19671
|
customSettings?: {
|
|
19635
19672
|
lockGiftCard: boolean;
|
|
19636
19673
|
lockCouponCode: boolean;
|
|
19674
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
19675
|
+
disabledManualPayment: boolean;
|
|
19637
19676
|
};
|
|
19638
19677
|
};
|
|
19639
19678
|
}
|
|
@@ -20596,6 +20635,8 @@ declare function createCheckout(httpClient: HttpClient): (options?: CreateChecko
|
|
|
20596
20635
|
customSettings?: {
|
|
20597
20636
|
lockGiftCard: boolean;
|
|
20598
20637
|
lockCouponCode: boolean;
|
|
20638
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
20639
|
+
disabledManualPayment: boolean;
|
|
20599
20640
|
} | undefined;
|
|
20600
20641
|
}>;
|
|
20601
20642
|
declare function getCheckout(httpClient: HttpClient): (_id: string) => Promise<GetCheckoutResponse & GetCheckoutResponseNonNullableFields>;
|
|
@@ -21298,6 +21339,8 @@ declare function updateCheckout(httpClient: HttpClient): (_id: string | null, ch
|
|
|
21298
21339
|
customSettings?: {
|
|
21299
21340
|
lockGiftCard: boolean;
|
|
21300
21341
|
lockCouponCode: boolean;
|
|
21342
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
21343
|
+
disabledManualPayment: boolean;
|
|
21301
21344
|
} | undefined;
|
|
21302
21345
|
}>;
|
|
21303
21346
|
declare function removeCoupon(httpClient: HttpClient): (_id: string) => Promise<RemoveCouponResponse & RemoveCouponResponseNonNullableFields>;
|
|
@@ -21407,7 +21450,7 @@ declare const index_d$7_removeOverrideCheckoutUrl: typeof removeOverrideCheckout
|
|
|
21407
21450
|
declare const index_d$7_updateCheckout: typeof updateCheckout;
|
|
21408
21451
|
declare const index_d$7_updateLineItemsQuantity: typeof updateLineItemsQuantity;
|
|
21409
21452
|
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$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 };
|
|
21453
|
+
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 UndeleteInfo$2 as UndeleteInfo, 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
21454
|
}
|
|
21412
21455
|
|
|
21413
21456
|
interface CheckoutSettings {
|
|
@@ -23564,6 +23607,9 @@ interface DomainEventBodyOneOf$4 {
|
|
|
23564
23607
|
interface EntityCreatedEvent$4 {
|
|
23565
23608
|
entity?: string;
|
|
23566
23609
|
}
|
|
23610
|
+
interface UndeleteInfo$1 {
|
|
23611
|
+
deletedDate?: Date;
|
|
23612
|
+
}
|
|
23567
23613
|
interface EntityUpdatedEvent$4 {
|
|
23568
23614
|
/**
|
|
23569
23615
|
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
@@ -24170,7 +24216,7 @@ declare const index_d$5_onCheckoutTemplateUsed: typeof onCheckoutTemplateUsed;
|
|
|
24170
24216
|
declare const index_d$5_queryCheckoutTemplates: typeof queryCheckoutTemplates;
|
|
24171
24217
|
declare const index_d$5_updateCheckoutTemplate: typeof updateCheckoutTemplate;
|
|
24172
24218
|
declare namespace index_d$5 {
|
|
24173
|
-
export { type ActionEvent$4 as ActionEvent, type AdditionalFee$1 as AdditionalFee, type Address$2 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type index_d$5_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$5_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$4 as BaseEventMetadata, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$5_CalculationErrors as CalculationErrors, type index_d$5_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type index_d$5_CarrierError as CarrierError, type index_d$5_CarrierErrors as CarrierErrors, type index_d$5_CarrierServiceOption as CarrierServiceOption, type index_d$5_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$1 as CatalogReference, ChannelType$2 as ChannelType, index_d$5_ChargeType as ChargeType, type index_d$5_Checkout as Checkout, type index_d$5_CheckoutCustomization as CheckoutCustomization, type index_d$5_CheckoutTemplate as CheckoutTemplate, type index_d$5_CheckoutTemplateCreatedEnvelope as CheckoutTemplateCreatedEnvelope, type index_d$5_CheckoutTemplateDeletedEnvelope as CheckoutTemplateDeletedEnvelope, type index_d$5_CheckoutTemplateUpdatedEnvelope as CheckoutTemplateUpdatedEnvelope, type index_d$5_CheckoutTemplateUsed as CheckoutTemplateUsed, type index_d$5_CheckoutTemplateUsedEnvelope as CheckoutTemplateUsedEnvelope, type index_d$5_CheckoutTemplatesQueryBuilder as CheckoutTemplatesQueryBuilder, type index_d$5_CheckoutTemplatesQueryResult as CheckoutTemplatesQueryResult, type Color$1 as Color, type index_d$5_ConversionInfo as ConversionInfo, type Coupon$1 as Coupon, type index_d$5_CreateAndRedirectToCheckoutRequest as CreateAndRedirectToCheckoutRequest, type index_d$5_CreateCheckoutFromTemplateRequest as CreateCheckoutFromTemplateRequest, type index_d$5_CreateCheckoutFromTemplateResponse as CreateCheckoutFromTemplateResponse, type index_d$5_CreateCheckoutFromTemplateResponseNonNullableFields as CreateCheckoutFromTemplateResponseNonNullableFields, type index_d$5_CreateCheckoutTemplateRequest as CreateCheckoutTemplateRequest, type index_d$5_CreateCheckoutTemplateResponse as CreateCheckoutTemplateResponse, type index_d$5_CreateCheckoutTemplateResponseNonNullableFields as CreateCheckoutTemplateResponseNonNullableFields, type CreatedBy$1 as CreatedBy, type index_d$5_CreatedByIdOneOf as CreatedByIdOneOf, type CursorPaging$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 };
|
|
24219
|
+
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 UndeleteInfo$1 as UndeleteInfo, type index_d$5_UpdateCheckoutTemplate as UpdateCheckoutTemplate, type index_d$5_UpdateCheckoutTemplateRequest as UpdateCheckoutTemplateRequest, type index_d$5_UpdateCheckoutTemplateResponse as UpdateCheckoutTemplateResponse, type index_d$5_UpdateCheckoutTemplateResponseNonNullableFields as UpdateCheckoutTemplateResponseNonNullableFields, type index_d$5_V1LineItem as V1LineItem, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, type index_d$5_Violation as Violation, type index_d$5_WebClientCustomization as WebClientCustomization, WebhookIdentityType$4 as WebhookIdentityType, WeightUnit$2 as WeightUnit, __metadata$5 as __metadata, index_d$5_createCheckoutFromTemplate as createCheckoutFromTemplate, index_d$5_createCheckoutTemplate as createCheckoutTemplate, index_d$5_deleteCheckoutTemplate as deleteCheckoutTemplate, index_d$5_getCheckoutTemplate as getCheckoutTemplate, index_d$5_onCheckoutTemplateCreated as onCheckoutTemplateCreated, index_d$5_onCheckoutTemplateDeleted as onCheckoutTemplateDeleted, index_d$5_onCheckoutTemplateUpdated as onCheckoutTemplateUpdated, index_d$5_onCheckoutTemplateUsed as onCheckoutTemplateUsed, index_d$5_queryCheckoutTemplates as queryCheckoutTemplates, index_d$5_updateCheckoutTemplate as updateCheckoutTemplate };
|
|
24174
24220
|
}
|
|
24175
24221
|
|
|
24176
24222
|
interface OrderWithFulfillments {
|
|
@@ -26867,6 +26913,9 @@ interface DomainEventBodyOneOf$2 {
|
|
|
26867
26913
|
interface EntityCreatedEvent$2 {
|
|
26868
26914
|
entity?: string;
|
|
26869
26915
|
}
|
|
26916
|
+
interface UndeleteInfo {
|
|
26917
|
+
deletedDate?: Date;
|
|
26918
|
+
}
|
|
26870
26919
|
interface EntityUpdatedEvent$2 {
|
|
26871
26920
|
/**
|
|
26872
26921
|
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
@@ -32252,6 +32301,7 @@ type index_d$3_TriggerReindexResponse = TriggerReindexResponse;
|
|
|
32252
32301
|
type index_d$3_TriggerSideEffectsFromLegacyData = TriggerSideEffectsFromLegacyData;
|
|
32253
32302
|
type index_d$3_UnArchiveOrderRequest = UnArchiveOrderRequest;
|
|
32254
32303
|
type index_d$3_UnArchiveOrderResponse = UnArchiveOrderResponse;
|
|
32304
|
+
type index_d$3_UndeleteInfo = UndeleteInfo;
|
|
32255
32305
|
type index_d$3_UpdateActivityRequest = UpdateActivityRequest;
|
|
32256
32306
|
type index_d$3_UpdateActivityResponse = UpdateActivityResponse;
|
|
32257
32307
|
type index_d$3_UpdateBillingContactDetailsRequest = UpdateBillingContactDetailsRequest;
|
|
@@ -32311,7 +32361,7 @@ declare const index_d$3_onOrderUpdated: typeof onOrderUpdated;
|
|
|
32311
32361
|
declare const index_d$3_searchOrders: typeof searchOrders;
|
|
32312
32362
|
declare const index_d$3_updateOrder: typeof updateOrder;
|
|
32313
32363
|
declare namespace index_d$3 {
|
|
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 };
|
|
32364
|
+
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_UndeleteInfo as UndeleteInfo, 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 };
|
|
32315
32365
|
}
|
|
32316
32366
|
|
|
32317
32367
|
interface OrderTransactions {
|
|
@@ -4424,6 +4424,7 @@ interface UpdateCartResponseNonNullableFields$3 {
|
|
|
4424
4424
|
subscriptionSettings?: {
|
|
4425
4425
|
frequency: SubscriptionFrequency$5;
|
|
4426
4426
|
autoRenewal: boolean;
|
|
4427
|
+
enableCustomerCancellation: boolean;
|
|
4427
4428
|
};
|
|
4428
4429
|
title?: {
|
|
4429
4430
|
original: string;
|
|
@@ -4607,6 +4608,7 @@ interface AddToCartResponseNonNullableFields$3 {
|
|
|
4607
4608
|
subscriptionSettings?: {
|
|
4608
4609
|
frequency: SubscriptionFrequency$5;
|
|
4609
4610
|
autoRenewal: boolean;
|
|
4611
|
+
enableCustomerCancellation: boolean;
|
|
4610
4612
|
};
|
|
4611
4613
|
title?: {
|
|
4612
4614
|
original: string;
|
|
@@ -4790,6 +4792,7 @@ interface RemoveLineItemsResponseNonNullableFields$5 {
|
|
|
4790
4792
|
subscriptionSettings?: {
|
|
4791
4793
|
frequency: SubscriptionFrequency$5;
|
|
4792
4794
|
autoRenewal: boolean;
|
|
4795
|
+
enableCustomerCancellation: boolean;
|
|
4793
4796
|
};
|
|
4794
4797
|
title?: {
|
|
4795
4798
|
original: string;
|
|
@@ -4976,6 +4979,7 @@ interface RemoveCouponResponseNonNullableFields$5 {
|
|
|
4976
4979
|
subscriptionSettings?: {
|
|
4977
4980
|
frequency: SubscriptionFrequency$5;
|
|
4978
4981
|
autoRenewal: boolean;
|
|
4982
|
+
enableCustomerCancellation: boolean;
|
|
4979
4983
|
};
|
|
4980
4984
|
title?: {
|
|
4981
4985
|
original: string;
|
|
@@ -5159,6 +5163,7 @@ interface UpdateLineItemsQuantityResponseNonNullableFields$5 {
|
|
|
5159
5163
|
subscriptionSettings?: {
|
|
5160
5164
|
frequency: SubscriptionFrequency$5;
|
|
5161
5165
|
autoRenewal: boolean;
|
|
5166
|
+
enableCustomerCancellation: boolean;
|
|
5162
5167
|
};
|
|
5163
5168
|
title?: {
|
|
5164
5169
|
original: string;
|
|
@@ -5342,6 +5347,7 @@ interface EstimateTotalsResponseNonNullableFields$3 {
|
|
|
5342
5347
|
subscriptionSettings?: {
|
|
5343
5348
|
frequency: SubscriptionFrequency$5;
|
|
5344
5349
|
autoRenewal: boolean;
|
|
5350
|
+
enableCustomerCancellation: boolean;
|
|
5345
5351
|
};
|
|
5346
5352
|
title?: {
|
|
5347
5353
|
original: string;
|
|
@@ -6335,6 +6341,7 @@ interface CreateCartResponseNonNullableFields$1 {
|
|
|
6335
6341
|
subscriptionSettings?: {
|
|
6336
6342
|
frequency: SubscriptionFrequency$5;
|
|
6337
6343
|
autoRenewal: boolean;
|
|
6344
|
+
enableCustomerCancellation: boolean;
|
|
6338
6345
|
};
|
|
6339
6346
|
title?: {
|
|
6340
6347
|
original: string;
|
|
@@ -6518,6 +6525,7 @@ interface GetCartResponseNonNullableFields$1 {
|
|
|
6518
6525
|
subscriptionSettings?: {
|
|
6519
6526
|
frequency: SubscriptionFrequency$5;
|
|
6520
6527
|
autoRenewal: boolean;
|
|
6528
|
+
enableCustomerCancellation: boolean;
|
|
6521
6529
|
};
|
|
6522
6530
|
title?: {
|
|
6523
6531
|
original: string;
|
|
@@ -10970,6 +10978,7 @@ interface GetCurrentCartResponseNonNullableFields$1 {
|
|
|
10970
10978
|
subscriptionSettings?: {
|
|
10971
10979
|
frequency: SubscriptionFrequency$4;
|
|
10972
10980
|
autoRenewal: boolean;
|
|
10981
|
+
enableCustomerCancellation: boolean;
|
|
10973
10982
|
};
|
|
10974
10983
|
title?: {
|
|
10975
10984
|
original: string;
|
|
@@ -11153,6 +11162,7 @@ interface UpdateCartResponseNonNullableFields$1 {
|
|
|
11153
11162
|
subscriptionSettings?: {
|
|
11154
11163
|
frequency: SubscriptionFrequency$4;
|
|
11155
11164
|
autoRenewal: boolean;
|
|
11165
|
+
enableCustomerCancellation: boolean;
|
|
11156
11166
|
};
|
|
11157
11167
|
title?: {
|
|
11158
11168
|
original: string;
|
|
@@ -11336,6 +11346,7 @@ interface AddToCartResponseNonNullableFields$1 {
|
|
|
11336
11346
|
subscriptionSettings?: {
|
|
11337
11347
|
frequency: SubscriptionFrequency$4;
|
|
11338
11348
|
autoRenewal: boolean;
|
|
11349
|
+
enableCustomerCancellation: boolean;
|
|
11339
11350
|
};
|
|
11340
11351
|
title?: {
|
|
11341
11352
|
original: string;
|
|
@@ -11519,6 +11530,7 @@ interface RemoveLineItemsResponseNonNullableFields$3 {
|
|
|
11519
11530
|
subscriptionSettings?: {
|
|
11520
11531
|
frequency: SubscriptionFrequency$4;
|
|
11521
11532
|
autoRenewal: boolean;
|
|
11533
|
+
enableCustomerCancellation: boolean;
|
|
11522
11534
|
};
|
|
11523
11535
|
title?: {
|
|
11524
11536
|
original: string;
|
|
@@ -11705,6 +11717,7 @@ interface RemoveCouponResponseNonNullableFields$3 {
|
|
|
11705
11717
|
subscriptionSettings?: {
|
|
11706
11718
|
frequency: SubscriptionFrequency$4;
|
|
11707
11719
|
autoRenewal: boolean;
|
|
11720
|
+
enableCustomerCancellation: boolean;
|
|
11708
11721
|
};
|
|
11709
11722
|
title?: {
|
|
11710
11723
|
original: string;
|
|
@@ -11888,6 +11901,7 @@ interface UpdateLineItemsQuantityResponseNonNullableFields$3 {
|
|
|
11888
11901
|
subscriptionSettings?: {
|
|
11889
11902
|
frequency: SubscriptionFrequency$4;
|
|
11890
11903
|
autoRenewal: boolean;
|
|
11904
|
+
enableCustomerCancellation: boolean;
|
|
11891
11905
|
};
|
|
11892
11906
|
title?: {
|
|
11893
11907
|
original: string;
|
|
@@ -12071,6 +12085,7 @@ interface EstimateTotalsResponseNonNullableFields$1 {
|
|
|
12071
12085
|
subscriptionSettings?: {
|
|
12072
12086
|
frequency: SubscriptionFrequency$4;
|
|
12073
12087
|
autoRenewal: boolean;
|
|
12088
|
+
enableCustomerCancellation: boolean;
|
|
12074
12089
|
};
|
|
12075
12090
|
title?: {
|
|
12076
12091
|
original: string;
|
|
@@ -17053,6 +17068,18 @@ interface CustomSettings$1 {
|
|
|
17053
17068
|
* Default: `false`
|
|
17054
17069
|
*/
|
|
17055
17070
|
lockCouponCode?: boolean;
|
|
17071
|
+
/**
|
|
17072
|
+
* Whether to disable policy agreement checkout in the checkout page
|
|
17073
|
+
*
|
|
17074
|
+
* Default: `false`
|
|
17075
|
+
*/
|
|
17076
|
+
disabledPolicyAgreementCheckbox?: boolean;
|
|
17077
|
+
/**
|
|
17078
|
+
* Whether to disable manual payment option for this checkout.
|
|
17079
|
+
*
|
|
17080
|
+
* Default: `false`
|
|
17081
|
+
*/
|
|
17082
|
+
disabledManualPayment?: boolean;
|
|
17056
17083
|
}
|
|
17057
17084
|
interface CreateCheckoutRequest$1 {
|
|
17058
17085
|
/** Checkout information. */
|
|
@@ -17400,6 +17427,7 @@ interface CreateCheckoutResponseNonNullableFields$1 {
|
|
|
17400
17427
|
subscriptionSettings?: {
|
|
17401
17428
|
frequency: SubscriptionFrequency$3;
|
|
17402
17429
|
autoRenewal: boolean;
|
|
17430
|
+
enableCustomerCancellation: boolean;
|
|
17403
17431
|
};
|
|
17404
17432
|
title?: {
|
|
17405
17433
|
original: string;
|
|
@@ -18397,6 +18425,7 @@ interface GetCheckoutResponseNonNullableFields$1 {
|
|
|
18397
18425
|
subscriptionSettings?: {
|
|
18398
18426
|
frequency: SubscriptionFrequency$3;
|
|
18399
18427
|
autoRenewal: boolean;
|
|
18428
|
+
enableCustomerCancellation: boolean;
|
|
18400
18429
|
};
|
|
18401
18430
|
title?: {
|
|
18402
18431
|
original: string;
|
|
@@ -19397,6 +19426,7 @@ interface UpdateCheckoutResponseNonNullableFields$1 {
|
|
|
19397
19426
|
subscriptionSettings?: {
|
|
19398
19427
|
frequency: SubscriptionFrequency$3;
|
|
19399
19428
|
autoRenewal: boolean;
|
|
19429
|
+
enableCustomerCancellation: boolean;
|
|
19400
19430
|
};
|
|
19401
19431
|
title?: {
|
|
19402
19432
|
original: string;
|
|
@@ -20394,6 +20424,7 @@ interface RemoveCouponResponseNonNullableFields$1 {
|
|
|
20394
20424
|
subscriptionSettings?: {
|
|
20395
20425
|
frequency: SubscriptionFrequency$3;
|
|
20396
20426
|
autoRenewal: boolean;
|
|
20427
|
+
enableCustomerCancellation: boolean;
|
|
20397
20428
|
};
|
|
20398
20429
|
title?: {
|
|
20399
20430
|
original: string;
|
|
@@ -21391,6 +21422,7 @@ interface RemoveGiftCardResponseNonNullableFields$1 {
|
|
|
21391
21422
|
subscriptionSettings?: {
|
|
21392
21423
|
frequency: SubscriptionFrequency$3;
|
|
21393
21424
|
autoRenewal: boolean;
|
|
21425
|
+
enableCustomerCancellation: boolean;
|
|
21394
21426
|
};
|
|
21395
21427
|
title?: {
|
|
21396
21428
|
original: string;
|
|
@@ -22388,6 +22420,7 @@ interface RemoveOverrideCheckoutUrlResponseNonNullableFields$1 {
|
|
|
22388
22420
|
subscriptionSettings?: {
|
|
22389
22421
|
frequency: SubscriptionFrequency$3;
|
|
22390
22422
|
autoRenewal: boolean;
|
|
22423
|
+
enableCustomerCancellation: boolean;
|
|
22391
22424
|
};
|
|
22392
22425
|
title?: {
|
|
22393
22426
|
original: string;
|
|
@@ -23385,6 +23418,7 @@ interface AddToCheckoutResponseNonNullableFields$1 {
|
|
|
23385
23418
|
subscriptionSettings?: {
|
|
23386
23419
|
frequency: SubscriptionFrequency$3;
|
|
23387
23420
|
autoRenewal: boolean;
|
|
23421
|
+
enableCustomerCancellation: boolean;
|
|
23388
23422
|
};
|
|
23389
23423
|
title?: {
|
|
23390
23424
|
original: string;
|
|
@@ -24382,6 +24416,7 @@ interface RemoveLineItemsResponseNonNullableFields$1 {
|
|
|
24382
24416
|
subscriptionSettings?: {
|
|
24383
24417
|
frequency: SubscriptionFrequency$3;
|
|
24384
24418
|
autoRenewal: boolean;
|
|
24419
|
+
enableCustomerCancellation: boolean;
|
|
24385
24420
|
};
|
|
24386
24421
|
title?: {
|
|
24387
24422
|
original: string;
|
|
@@ -25383,6 +25418,7 @@ interface UpdateLineItemsQuantityResponseNonNullableFields$1 {
|
|
|
25383
25418
|
subscriptionSettings?: {
|
|
25384
25419
|
frequency: SubscriptionFrequency$3;
|
|
25385
25420
|
autoRenewal: boolean;
|
|
25421
|
+
enableCustomerCancellation: boolean;
|
|
25386
25422
|
};
|
|
25387
25423
|
title?: {
|
|
25388
25424
|
original: string;
|
|
@@ -27453,6 +27489,18 @@ interface CustomSettings {
|
|
|
27453
27489
|
* Default: `false`
|
|
27454
27490
|
*/
|
|
27455
27491
|
lockCouponCode?: boolean;
|
|
27492
|
+
/**
|
|
27493
|
+
* Whether to disable policy agreement checkout in the checkout page
|
|
27494
|
+
*
|
|
27495
|
+
* Default: `false`
|
|
27496
|
+
*/
|
|
27497
|
+
disabledPolicyAgreementCheckbox?: boolean;
|
|
27498
|
+
/**
|
|
27499
|
+
* Whether to disable manual payment option for this checkout.
|
|
27500
|
+
*
|
|
27501
|
+
* Default: `false`
|
|
27502
|
+
*/
|
|
27503
|
+
disabledManualPayment?: boolean;
|
|
27456
27504
|
}
|
|
27457
27505
|
interface CreateCheckoutRequest {
|
|
27458
27506
|
/** Checkout information. */
|
|
@@ -28318,6 +28366,8 @@ interface CreateCheckoutResponseNonNullableFields {
|
|
|
28318
28366
|
customSettings?: {
|
|
28319
28367
|
lockGiftCard: boolean;
|
|
28320
28368
|
lockCouponCode: boolean;
|
|
28369
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
28370
|
+
disabledManualPayment: boolean;
|
|
28321
28371
|
};
|
|
28322
28372
|
};
|
|
28323
28373
|
}
|
|
@@ -29020,6 +29070,8 @@ interface GetCheckoutResponseNonNullableFields {
|
|
|
29020
29070
|
customSettings?: {
|
|
29021
29071
|
lockGiftCard: boolean;
|
|
29022
29072
|
lockCouponCode: boolean;
|
|
29073
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
29074
|
+
disabledManualPayment: boolean;
|
|
29023
29075
|
};
|
|
29024
29076
|
};
|
|
29025
29077
|
}
|
|
@@ -29725,6 +29777,8 @@ interface UpdateCheckoutResponseNonNullableFields {
|
|
|
29725
29777
|
customSettings?: {
|
|
29726
29778
|
lockGiftCard: boolean;
|
|
29727
29779
|
lockCouponCode: boolean;
|
|
29780
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
29781
|
+
disabledManualPayment: boolean;
|
|
29728
29782
|
};
|
|
29729
29783
|
};
|
|
29730
29784
|
}
|
|
@@ -30427,6 +30481,8 @@ interface RemoveCouponResponseNonNullableFields {
|
|
|
30427
30481
|
customSettings?: {
|
|
30428
30482
|
lockGiftCard: boolean;
|
|
30429
30483
|
lockCouponCode: boolean;
|
|
30484
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
30485
|
+
disabledManualPayment: boolean;
|
|
30430
30486
|
};
|
|
30431
30487
|
};
|
|
30432
30488
|
}
|
|
@@ -31129,6 +31185,8 @@ interface RemoveGiftCardResponseNonNullableFields {
|
|
|
31129
31185
|
customSettings?: {
|
|
31130
31186
|
lockGiftCard: boolean;
|
|
31131
31187
|
lockCouponCode: boolean;
|
|
31188
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
31189
|
+
disabledManualPayment: boolean;
|
|
31132
31190
|
};
|
|
31133
31191
|
};
|
|
31134
31192
|
}
|
|
@@ -31831,6 +31889,8 @@ interface RemoveOverrideCheckoutUrlResponseNonNullableFields {
|
|
|
31831
31889
|
customSettings?: {
|
|
31832
31890
|
lockGiftCard: boolean;
|
|
31833
31891
|
lockCouponCode: boolean;
|
|
31892
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
31893
|
+
disabledManualPayment: boolean;
|
|
31834
31894
|
};
|
|
31835
31895
|
};
|
|
31836
31896
|
}
|
|
@@ -32533,6 +32593,8 @@ interface AddToCheckoutResponseNonNullableFields {
|
|
|
32533
32593
|
customSettings?: {
|
|
32534
32594
|
lockGiftCard: boolean;
|
|
32535
32595
|
lockCouponCode: boolean;
|
|
32596
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
32597
|
+
disabledManualPayment: boolean;
|
|
32536
32598
|
};
|
|
32537
32599
|
};
|
|
32538
32600
|
}
|
|
@@ -33235,6 +33297,8 @@ interface RemoveLineItemsResponseNonNullableFields {
|
|
|
33235
33297
|
customSettings?: {
|
|
33236
33298
|
lockGiftCard: boolean;
|
|
33237
33299
|
lockCouponCode: boolean;
|
|
33300
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
33301
|
+
disabledManualPayment: boolean;
|
|
33238
33302
|
};
|
|
33239
33303
|
};
|
|
33240
33304
|
}
|
|
@@ -33941,6 +34005,8 @@ interface UpdateLineItemsQuantityResponseNonNullableFields {
|
|
|
33941
34005
|
customSettings?: {
|
|
33942
34006
|
lockGiftCard: boolean;
|
|
33943
34007
|
lockCouponCode: boolean;
|
|
34008
|
+
disabledPolicyAgreementCheckbox: boolean;
|
|
34009
|
+
disabledManualPayment: boolean;
|
|
33944
34010
|
};
|
|
33945
34011
|
};
|
|
33946
34012
|
}
|
|
@@ -34767,6 +34833,7 @@ interface CreateCheckoutTemplateResponseNonNullableFields$1 {
|
|
|
34767
34833
|
subscriptionSettings?: {
|
|
34768
34834
|
frequency: SubscriptionFrequency$2;
|
|
34769
34835
|
autoRenewal: boolean;
|
|
34836
|
+
enableCustomerCancellation: boolean;
|
|
34770
34837
|
};
|
|
34771
34838
|
title?: {
|
|
34772
34839
|
original: string;
|
|
@@ -34887,6 +34954,7 @@ interface GetCheckoutTemplateResponseNonNullableFields$1 {
|
|
|
34887
34954
|
subscriptionSettings?: {
|
|
34888
34955
|
frequency: SubscriptionFrequency$2;
|
|
34889
34956
|
autoRenewal: boolean;
|
|
34957
|
+
enableCustomerCancellation: boolean;
|
|
34890
34958
|
};
|
|
34891
34959
|
title?: {
|
|
34892
34960
|
original: string;
|
|
@@ -35007,6 +35075,7 @@ interface UpdateCheckoutTemplateResponseNonNullableFields$1 {
|
|
|
35007
35075
|
subscriptionSettings?: {
|
|
35008
35076
|
frequency: SubscriptionFrequency$2;
|
|
35009
35077
|
autoRenewal: boolean;
|
|
35078
|
+
enableCustomerCancellation: boolean;
|
|
35010
35079
|
};
|
|
35011
35080
|
title?: {
|
|
35012
35081
|
original: string;
|
|
@@ -35127,6 +35196,7 @@ interface QueryCheckoutTemplatesResponseNonNullableFields$1 {
|
|
|
35127
35196
|
subscriptionSettings?: {
|
|
35128
35197
|
frequency: SubscriptionFrequency$2;
|
|
35129
35198
|
autoRenewal: boolean;
|
|
35199
|
+
enableCustomerCancellation: boolean;
|
|
35130
35200
|
};
|
|
35131
35201
|
title?: {
|
|
35132
35202
|
original: string;
|