@wix/ecom 1.0.693 → 1.0.701
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.
|
@@ -3361,6 +3361,18 @@ interface LineItem$6 {
|
|
|
3361
3361
|
* @readonly
|
|
3362
3362
|
*/
|
|
3363
3363
|
taxGroupId?: string | null;
|
|
3364
|
+
/**
|
|
3365
|
+
* Item payment policy that requires customer consent to complete purchase. The payment policy will be displayed on the checkout page.
|
|
3366
|
+
* @readonly
|
|
3367
|
+
*/
|
|
3368
|
+
consentRequiredPaymentPolicy?: string | null;
|
|
3369
|
+
/**
|
|
3370
|
+
* Whether to save the payment method on the order.
|
|
3371
|
+
*
|
|
3372
|
+
* Default: `false`
|
|
3373
|
+
* @readonly
|
|
3374
|
+
*/
|
|
3375
|
+
savePaymentMethod?: boolean;
|
|
3364
3376
|
}
|
|
3365
3377
|
/** Used for grouping line items. Sent when an item is added to a cart, checkout, or order. */
|
|
3366
3378
|
interface CatalogReference$6 {
|
|
@@ -4376,36 +4388,36 @@ interface LineItemDiscount$6 {
|
|
|
4376
4388
|
}
|
|
4377
4389
|
interface CalculationErrors$5 extends CalculationErrorsShippingCalculationErrorOneOf$5 {
|
|
4378
4390
|
/** General shipping calculation error. */
|
|
4379
|
-
generalShippingCalculationError?: Details$
|
|
4391
|
+
generalShippingCalculationError?: Details$5;
|
|
4380
4392
|
/** Carrier errors. */
|
|
4381
4393
|
carrierErrors?: CarrierErrors$5;
|
|
4382
4394
|
/** Tax calculation error. */
|
|
4383
|
-
taxCalculationError?: Details$
|
|
4395
|
+
taxCalculationError?: Details$5;
|
|
4384
4396
|
/** Coupon calculation error. */
|
|
4385
|
-
couponCalculationError?: Details$
|
|
4397
|
+
couponCalculationError?: Details$5;
|
|
4386
4398
|
/** Gift card calculation error. */
|
|
4387
|
-
giftCardCalculationError?: Details$
|
|
4399
|
+
giftCardCalculationError?: Details$5;
|
|
4388
4400
|
/** Order validation errors. */
|
|
4389
4401
|
orderValidationErrors?: ApplicationError$a[];
|
|
4390
4402
|
/**
|
|
4391
4403
|
* Membership payment methods calculation errors
|
|
4392
4404
|
* For example, will indicate that a line item that must be paid with membership payment doesn't have one or selected memberships are invalid
|
|
4393
4405
|
*/
|
|
4394
|
-
membershipError?: Details$
|
|
4406
|
+
membershipError?: Details$5;
|
|
4395
4407
|
/** Discount Rule calculation error. */
|
|
4396
|
-
discountsCalculationError?: Details$
|
|
4408
|
+
discountsCalculationError?: Details$5;
|
|
4397
4409
|
}
|
|
4398
4410
|
/** @oneof */
|
|
4399
4411
|
interface CalculationErrorsShippingCalculationErrorOneOf$5 {
|
|
4400
4412
|
/** General shipping calculation error. */
|
|
4401
|
-
generalShippingCalculationError?: Details$
|
|
4413
|
+
generalShippingCalculationError?: Details$5;
|
|
4402
4414
|
/** Carrier errors. */
|
|
4403
4415
|
carrierErrors?: CarrierErrors$5;
|
|
4404
4416
|
}
|
|
4405
|
-
interface Details$
|
|
4417
|
+
interface Details$5 extends DetailsKindOneOf$5 {
|
|
4406
4418
|
applicationError?: ApplicationError$a;
|
|
4407
|
-
validationError?: ValidationError$
|
|
4408
|
-
systemError?: SystemError$
|
|
4419
|
+
validationError?: ValidationError$5;
|
|
4420
|
+
systemError?: SystemError$5;
|
|
4409
4421
|
/**
|
|
4410
4422
|
* Deprecated in APIs. Used to enable migration from rendering arbitrary tracing to rest response.
|
|
4411
4423
|
* @deprecated
|
|
@@ -4413,10 +4425,10 @@ interface Details$6 extends DetailsKindOneOf$6 {
|
|
|
4413
4425
|
tracing?: Record<string, string>;
|
|
4414
4426
|
}
|
|
4415
4427
|
/** @oneof */
|
|
4416
|
-
interface DetailsKindOneOf$
|
|
4428
|
+
interface DetailsKindOneOf$5 {
|
|
4417
4429
|
applicationError?: ApplicationError$a;
|
|
4418
|
-
validationError?: ValidationError$
|
|
4419
|
-
systemError?: SystemError$
|
|
4430
|
+
validationError?: ValidationError$5;
|
|
4431
|
+
systemError?: SystemError$5;
|
|
4420
4432
|
}
|
|
4421
4433
|
/**
|
|
4422
4434
|
* example result:
|
|
@@ -4450,10 +4462,10 @@ interface DetailsKindOneOf$6 {
|
|
|
4450
4462
|
* ]
|
|
4451
4463
|
* }
|
|
4452
4464
|
*/
|
|
4453
|
-
interface ValidationError$
|
|
4454
|
-
fieldViolations?: FieldViolation$
|
|
4465
|
+
interface ValidationError$5 {
|
|
4466
|
+
fieldViolations?: FieldViolation$5[];
|
|
4455
4467
|
}
|
|
4456
|
-
declare enum RuleType$
|
|
4468
|
+
declare enum RuleType$5 {
|
|
4457
4469
|
VALIDATION = "VALIDATION",
|
|
4458
4470
|
OTHER = "OTHER",
|
|
4459
4471
|
MAX = "MAX",
|
|
@@ -4473,15 +4485,15 @@ declare enum RuleType$6 {
|
|
|
4473
4485
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
4474
4486
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
4475
4487
|
}
|
|
4476
|
-
interface FieldViolation$
|
|
4488
|
+
interface FieldViolation$5 {
|
|
4477
4489
|
field?: string;
|
|
4478
4490
|
description?: string;
|
|
4479
|
-
violatedRule?: RuleType$
|
|
4491
|
+
violatedRule?: RuleType$5;
|
|
4480
4492
|
/** applicable when violated_rule=OTHER */
|
|
4481
4493
|
ruleName?: string | null;
|
|
4482
4494
|
data?: Record<string, any> | null;
|
|
4483
4495
|
}
|
|
4484
|
-
interface SystemError$
|
|
4496
|
+
interface SystemError$5 {
|
|
4485
4497
|
/** Error code. */
|
|
4486
4498
|
errorCode?: string | null;
|
|
4487
4499
|
}
|
|
@@ -4493,7 +4505,7 @@ interface CarrierError$5 {
|
|
|
4493
4505
|
/** Carrier ID. */
|
|
4494
4506
|
carrierId?: string;
|
|
4495
4507
|
/** Error details. */
|
|
4496
|
-
error?: Details$
|
|
4508
|
+
error?: Details$5;
|
|
4497
4509
|
}
|
|
4498
4510
|
interface MembershipOptions$4 {
|
|
4499
4511
|
/** List of payment options that can be used. */
|
|
@@ -5227,7 +5239,7 @@ interface AppliedDiscountNonNullableFields$5 {
|
|
|
5227
5239
|
interface FieldViolationNonNullableFields$4 {
|
|
5228
5240
|
field: string;
|
|
5229
5241
|
description: string;
|
|
5230
|
-
violatedRule: RuleType$
|
|
5242
|
+
violatedRule: RuleType$5;
|
|
5231
5243
|
}
|
|
5232
5244
|
interface ValidationErrorNonNullableFields$4 {
|
|
5233
5245
|
fieldViolations: FieldViolationNonNullableFields$4[];
|
|
@@ -5543,7 +5555,7 @@ declare const context$h_estimateTotals: typeof estimateTotals;
|
|
|
5543
5555
|
declare const context$h_getCart: typeof getCart;
|
|
5544
5556
|
declare const context$h_updateCart: typeof updateCart;
|
|
5545
5557
|
declare namespace context$h {
|
|
5546
|
-
export { type ActionEvent$f as ActionEvent, type context$h_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$6 as AdditionalFee, type Address$9 as Address, type AddressLocation$8 as AddressLocation, type AddressWithContact$5 as AddressWithContact, type AggregatedTaxBreakdown$4 as AggregatedTaxBreakdown, type ApplicationError$a as ApplicationError, type AppliedDiscount$6 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$6 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$4 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$d as BaseEventMetadata, type BuyerInfo$7 as BuyerInfo, type BuyerInfoIdOneOf$5 as BuyerInfoIdOneOf, type CalculatedLineItem$2 as CalculatedLineItem, type CalculationErrors$5 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$5 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$5 as CarrierError, type CarrierErrors$5 as CarrierErrors, type CarrierServiceOption$4 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 CartNonNullableFields$1 as CartNonNullableFields, type CartUpdatedEnvelope$1 as CartUpdatedEnvelope, type CatalogOverrideFields$3 as CatalogOverrideFields, type CatalogReference$6 as CatalogReference, ChannelType$6 as ChannelType, ChargeType$5 as ChargeType, type Color$5 as Color, type Coupon$6 as Coupon, type context$h_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$4 as CustomLineItem, type DeleteCartRequest$1 as DeleteCartRequest, type DeleteCartResponse$1 as DeleteCartResponse, type DeleteCurrentCartRequest$1 as DeleteCurrentCartRequest, type DeliveryLogistics$6 as DeliveryLogistics, type DeliveryTimeSlot$6 as DeliveryTimeSlot, type Description$3 as Description, type DescriptionLine$5 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$5 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$5 as DescriptionLineName, DescriptionLineType$5 as DescriptionLineType, type DescriptionLineValueOneOf$5 as DescriptionLineValueOneOf, type Details$
|
|
5558
|
+
export { type ActionEvent$f as ActionEvent, type context$h_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$6 as AdditionalFee, type Address$9 as Address, type AddressLocation$8 as AddressLocation, type AddressWithContact$5 as AddressWithContact, type AggregatedTaxBreakdown$4 as AggregatedTaxBreakdown, type ApplicationError$a as ApplicationError, type AppliedDiscount$6 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$6 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$4 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$d as BaseEventMetadata, type BuyerInfo$7 as BuyerInfo, type BuyerInfoIdOneOf$5 as BuyerInfoIdOneOf, type CalculatedLineItem$2 as CalculatedLineItem, type CalculationErrors$5 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$5 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$5 as CarrierError, type CarrierErrors$5 as CarrierErrors, type CarrierServiceOption$4 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 CartNonNullableFields$1 as CartNonNullableFields, type CartUpdatedEnvelope$1 as CartUpdatedEnvelope, type CatalogOverrideFields$3 as CatalogOverrideFields, type CatalogReference$6 as CatalogReference, ChannelType$6 as ChannelType, ChargeType$5 as ChargeType, type Color$5 as Color, type Coupon$6 as Coupon, type context$h_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$4 as CustomLineItem, type DeleteCartRequest$1 as DeleteCartRequest, type DeleteCartResponse$1 as DeleteCartResponse, type DeleteCurrentCartRequest$1 as DeleteCurrentCartRequest, type DeliveryLogistics$6 as DeliveryLogistics, type DeliveryTimeSlot$6 as DeliveryTimeSlot, type Description$3 as Description, type DescriptionLine$5 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$5 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$5 as DescriptionLineName, DescriptionLineType$5 as DescriptionLineType, type DescriptionLineValueOneOf$5 as DescriptionLineValueOneOf, type Details$5 as Details, type DetailsKindOneOf$5 as DetailsKindOneOf, type DiscountRule$6 as DiscountRule, type DiscountRuleName$6 as DiscountRuleName, DiscountType$6 as DiscountType, type DomainEvent$f as DomainEvent, type DomainEventBodyOneOf$f as DomainEventBodyOneOf, type Empty$a as Empty, type EntityCreatedEvent$f as EntityCreatedEvent, type EntityDeletedEvent$f as EntityDeletedEvent, type EntityUpdatedEvent$f as EntityUpdatedEvent, type EstimateCurrentCartTotalsRequest$1 as EstimateCurrentCartTotalsRequest, type context$h_EstimateTotalsOptions as EstimateTotalsOptions, type EstimateTotalsRequest$1 as EstimateTotalsRequest, type EstimateTotalsResponse$1 as EstimateTotalsResponse, type EstimateTotalsResponseNonNullableFields$1 as EstimateTotalsResponseNonNullableFields, type EventMetadata$d as EventMetadata, type ExtendedFields$9 as ExtendedFields, FallbackReason$4 as FallbackReason, type FieldViolation$5 as FieldViolation, FileType$4 as FileType, type FullAddressContactDetails$5 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$5 as GiftCard, type Group$4 as Group, type HostSelectedMembership$1 as HostSelectedMembership, type IdentificationData$f as IdentificationData, type IdentificationDataIdOneOf$f as IdentificationDataIdOneOf, type InvalidMembership$4 as InvalidMembership, type ItemAvailabilityInfo$3 as ItemAvailabilityInfo, ItemAvailabilityStatus$3 as ItemAvailabilityStatus, type ItemTaxFullDetails$6 as ItemTaxFullDetails, type ItemType$6 as ItemType, ItemTypeItemType$6 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$6 as ItemTypeItemTypeDataOneOf, JurisdictionType$6 as JurisdictionType, type LineItem$6 as LineItem, type LineItemDiscount$6 as LineItemDiscount, type LineItemPricesData$2 as LineItemPricesData, type LineItemQuantityUpdate$2 as LineItemQuantityUpdate, ManualCalculationReason$4 as ManualCalculationReason, type Membership$4 as Membership, type MembershipName$6 as MembershipName, type MembershipOptions$4 as MembershipOptions, type MembershipPaymentCredits$4 as MembershipPaymentCredits, type MerchantDiscount$6 as MerchantDiscount, type MerchantDiscountInput$3 as MerchantDiscountInput, type MessageEnvelope$f as MessageEnvelope, type MultiCurrencyPrice$4 as MultiCurrencyPrice, NameInLineItem$3 as NameInLineItem, NameInOther$3 as NameInOther, type Other$3 as Other, type OtherCharge$4 as OtherCharge, PaymentOptionType$6 as PaymentOptionType, type PhysicalProperties$6 as PhysicalProperties, type PickupDetails$7 as PickupDetails, PickupMethod$6 as PickupMethod, type PlainTextValue$5 as PlainTextValue, type PriceDescription$5 as PriceDescription, type PriceSummary$6 as PriceSummary, type ProductName$5 as ProductName, RateType$4 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, type RestoreInfo$f as RestoreInfo, RuleType$5 as RuleType, type Scope$4 as Scope, type SecuredMedia$4 as SecuredMedia, type SelectedCarrierServiceOption$4 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$4 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$4 as SelectedCarrierServiceOptionPrices, type SelectedMembership$4 as SelectedMembership, type SelectedMemberships$4 as SelectedMemberships, type SelectedShippingOption$2 as SelectedShippingOption, type ServiceProperties$5 as ServiceProperties, Severity$3 as Severity, type ShippingInformation$4 as ShippingInformation, type ShippingOption$6 as ShippingOption, type ShippingPrice$6 as ShippingPrice, type ShippingRegion$6 as ShippingRegion, type StreetAddress$8 as StreetAddress, SubscriptionFrequency$7 as SubscriptionFrequency, type SubscriptionOptionInfo$4 as SubscriptionOptionInfo, type SubscriptionSettings$7 as SubscriptionSettings, type SystemError$5 as SystemError, type Target$3 as Target, type TargetLineItem$3 as TargetLineItem, type TargetTargetTypeOneOf$3 as TargetTargetTypeOneOf, type TaxBreakdown$4 as TaxBreakdown, type TaxCalculationDetails$4 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$4 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$4 as TaxRateBreakdown, type TaxSummary$6 as TaxSummary, type Title$3 as Title, type context$h_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$5 as ValidationError, type VatId$6 as VatId, VatType$6 as VatType, type Violation$3 as Violation, WebhookIdentityType$f as WebhookIdentityType, WeightUnit$7 as WeightUnit, context$h_addToCart as addToCart, context$h_createCart as createCart, createCheckout$1 as createCheckout, context$h_deleteCart as deleteCart, context$h_estimateTotals as estimateTotals, context$h_getCart as getCart, onCartCreated$1 as onCartCreated, onCartDeleted$1 as onCartDeleted, onCartUpdated$1 as onCartUpdated, removeCoupon$1 as removeCoupon, removeLineItems$1 as removeLineItems, context$h_updateCart as updateCart, updateLineItemsQuantity$1 as updateLineItemsQuantity };
|
|
5547
5559
|
}
|
|
5548
5560
|
|
|
5549
5561
|
interface Cart {
|
|
@@ -5727,6 +5739,18 @@ interface LineItem$5 {
|
|
|
5727
5739
|
* @readonly
|
|
5728
5740
|
*/
|
|
5729
5741
|
taxGroupId?: string | null;
|
|
5742
|
+
/**
|
|
5743
|
+
* Item payment policy that requires customer consent to complete purchase. The payment policy will be displayed on the checkout page.
|
|
5744
|
+
* @readonly
|
|
5745
|
+
*/
|
|
5746
|
+
consentRequiredPaymentPolicy?: string | null;
|
|
5747
|
+
/**
|
|
5748
|
+
* Whether to save the payment method on the order.
|
|
5749
|
+
*
|
|
5750
|
+
* Default: `false`
|
|
5751
|
+
* @readonly
|
|
5752
|
+
*/
|
|
5753
|
+
savePaymentMethod?: boolean;
|
|
5730
5754
|
}
|
|
5731
5755
|
/** Used for grouping line items. Sent when an item is added to a cart, checkout, or order. */
|
|
5732
5756
|
interface CatalogReference$5 {
|
|
@@ -6742,36 +6766,36 @@ interface LineItemDiscount$5 {
|
|
|
6742
6766
|
}
|
|
6743
6767
|
interface CalculationErrors$4 extends CalculationErrorsShippingCalculationErrorOneOf$4 {
|
|
6744
6768
|
/** General shipping calculation error. */
|
|
6745
|
-
generalShippingCalculationError?: Details$
|
|
6769
|
+
generalShippingCalculationError?: Details$4;
|
|
6746
6770
|
/** Carrier errors. */
|
|
6747
6771
|
carrierErrors?: CarrierErrors$4;
|
|
6748
6772
|
/** Tax calculation error. */
|
|
6749
|
-
taxCalculationError?: Details$
|
|
6773
|
+
taxCalculationError?: Details$4;
|
|
6750
6774
|
/** Coupon calculation error. */
|
|
6751
|
-
couponCalculationError?: Details$
|
|
6775
|
+
couponCalculationError?: Details$4;
|
|
6752
6776
|
/** Gift card calculation error. */
|
|
6753
|
-
giftCardCalculationError?: Details$
|
|
6777
|
+
giftCardCalculationError?: Details$4;
|
|
6754
6778
|
/** Order validation errors. */
|
|
6755
6779
|
orderValidationErrors?: ApplicationError$9[];
|
|
6756
6780
|
/**
|
|
6757
6781
|
* Membership payment methods calculation errors
|
|
6758
6782
|
* For example, will indicate that a line item that must be paid with membership payment doesn't have one or selected memberships are invalid
|
|
6759
6783
|
*/
|
|
6760
|
-
membershipError?: Details$
|
|
6784
|
+
membershipError?: Details$4;
|
|
6761
6785
|
/** Discount Rule calculation error. */
|
|
6762
|
-
discountsCalculationError?: Details$
|
|
6786
|
+
discountsCalculationError?: Details$4;
|
|
6763
6787
|
}
|
|
6764
6788
|
/** @oneof */
|
|
6765
6789
|
interface CalculationErrorsShippingCalculationErrorOneOf$4 {
|
|
6766
6790
|
/** General shipping calculation error. */
|
|
6767
|
-
generalShippingCalculationError?: Details$
|
|
6791
|
+
generalShippingCalculationError?: Details$4;
|
|
6768
6792
|
/** Carrier errors. */
|
|
6769
6793
|
carrierErrors?: CarrierErrors$4;
|
|
6770
6794
|
}
|
|
6771
|
-
interface Details$
|
|
6795
|
+
interface Details$4 extends DetailsKindOneOf$4 {
|
|
6772
6796
|
applicationError?: ApplicationError$9;
|
|
6773
|
-
validationError?: ValidationError$
|
|
6774
|
-
systemError?: SystemError$
|
|
6797
|
+
validationError?: ValidationError$4;
|
|
6798
|
+
systemError?: SystemError$4;
|
|
6775
6799
|
/**
|
|
6776
6800
|
* Deprecated in APIs. Used to enable migration from rendering arbitrary tracing to rest response.
|
|
6777
6801
|
* @deprecated
|
|
@@ -6779,10 +6803,10 @@ interface Details$5 extends DetailsKindOneOf$5 {
|
|
|
6779
6803
|
tracing?: Record<string, string>;
|
|
6780
6804
|
}
|
|
6781
6805
|
/** @oneof */
|
|
6782
|
-
interface DetailsKindOneOf$
|
|
6806
|
+
interface DetailsKindOneOf$4 {
|
|
6783
6807
|
applicationError?: ApplicationError$9;
|
|
6784
|
-
validationError?: ValidationError$
|
|
6785
|
-
systemError?: SystemError$
|
|
6808
|
+
validationError?: ValidationError$4;
|
|
6809
|
+
systemError?: SystemError$4;
|
|
6786
6810
|
}
|
|
6787
6811
|
/**
|
|
6788
6812
|
* example result:
|
|
@@ -6816,10 +6840,10 @@ interface DetailsKindOneOf$5 {
|
|
|
6816
6840
|
* ]
|
|
6817
6841
|
* }
|
|
6818
6842
|
*/
|
|
6819
|
-
interface ValidationError$
|
|
6820
|
-
fieldViolations?: FieldViolation$
|
|
6843
|
+
interface ValidationError$4 {
|
|
6844
|
+
fieldViolations?: FieldViolation$4[];
|
|
6821
6845
|
}
|
|
6822
|
-
declare enum RuleType$
|
|
6846
|
+
declare enum RuleType$4 {
|
|
6823
6847
|
VALIDATION = "VALIDATION",
|
|
6824
6848
|
OTHER = "OTHER",
|
|
6825
6849
|
MAX = "MAX",
|
|
@@ -6839,15 +6863,15 @@ declare enum RuleType$5 {
|
|
|
6839
6863
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
6840
6864
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
6841
6865
|
}
|
|
6842
|
-
interface FieldViolation$
|
|
6866
|
+
interface FieldViolation$4 {
|
|
6843
6867
|
field?: string;
|
|
6844
6868
|
description?: string;
|
|
6845
|
-
violatedRule?: RuleType$
|
|
6869
|
+
violatedRule?: RuleType$4;
|
|
6846
6870
|
/** applicable when violated_rule=OTHER */
|
|
6847
6871
|
ruleName?: string | null;
|
|
6848
6872
|
data?: Record<string, any> | null;
|
|
6849
6873
|
}
|
|
6850
|
-
interface SystemError$
|
|
6874
|
+
interface SystemError$4 {
|
|
6851
6875
|
/** Error code. */
|
|
6852
6876
|
errorCode?: string | null;
|
|
6853
6877
|
}
|
|
@@ -6859,7 +6883,7 @@ interface CarrierError$4 {
|
|
|
6859
6883
|
/** Carrier ID. */
|
|
6860
6884
|
carrierId?: string;
|
|
6861
6885
|
/** Error details. */
|
|
6862
|
-
error?: Details$
|
|
6886
|
+
error?: Details$4;
|
|
6863
6887
|
}
|
|
6864
6888
|
interface MembershipOptions$3 {
|
|
6865
6889
|
/** List of payment options that can be used. */
|
|
@@ -7593,7 +7617,7 @@ interface AppliedDiscountNonNullableFields$4 {
|
|
|
7593
7617
|
interface FieldViolationNonNullableFields$3 {
|
|
7594
7618
|
field: string;
|
|
7595
7619
|
description: string;
|
|
7596
|
-
violatedRule: RuleType$
|
|
7620
|
+
violatedRule: RuleType$4;
|
|
7597
7621
|
}
|
|
7598
7622
|
interface ValidationErrorNonNullableFields$3 {
|
|
7599
7623
|
fieldViolations: FieldViolationNonNullableFields$3[];
|
|
@@ -7863,7 +7887,7 @@ declare const context$g_removeLineItemsFromCurrentCart: typeof removeLineItemsFr
|
|
|
7863
7887
|
declare const context$g_updateCurrentCart: typeof updateCurrentCart;
|
|
7864
7888
|
declare const context$g_updateCurrentCartLineItemQuantity: typeof updateCurrentCartLineItemQuantity;
|
|
7865
7889
|
declare namespace context$g {
|
|
7866
|
-
export { type ActionEvent$e as ActionEvent, type context$g_AddToCartRequest as AddToCartRequest, type context$g_AddToCartResponse as AddToCartResponse, type context$g_AddToCartResponseNonNullableFields as AddToCartResponseNonNullableFields, type context$g_AddToCurrentCartAndEstimateTotalsRequest as AddToCurrentCartAndEstimateTotalsRequest, type context$g_AddToCurrentCartOptions as AddToCurrentCartOptions, type context$g_AddToCurrentCartRequest as AddToCurrentCartRequest, type AdditionalFee$5 as AdditionalFee, type Address$8 as Address, type AddressLocation$7 as AddressLocation, type AddressWithContact$4 as AddressWithContact, type AggregatedTaxBreakdown$3 as AggregatedTaxBreakdown, type ApplicationError$9 as ApplicationError, type AppliedDiscount$5 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$5 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$3 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$c as BaseEventMetadata, type BuyerInfo$6 as BuyerInfo, type BuyerInfoIdOneOf$4 as BuyerInfoIdOneOf, type CalculatedLineItem$1 as CalculatedLineItem, type CalculationErrors$4 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$4 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$4 as CarrierError, type CarrierErrors$4 as CarrierErrors, type CarrierServiceOption$3 as CarrierServiceOption, type context$g_Cart as Cart, type context$g_CartCreatedEnvelope as CartCreatedEnvelope, type context$g_CartDeletedEnvelope as CartDeletedEnvelope, type context$g_CartDiscount as CartDiscount, type context$g_CartDiscountDiscountSourceOneOf as CartDiscountDiscountSourceOneOf, type context$g_CartNonNullableFields as CartNonNullableFields, type context$g_CartUpdatedEnvelope as CartUpdatedEnvelope, type CatalogOverrideFields$2 as CatalogOverrideFields, type CatalogReference$5 as CatalogReference, ChannelType$5 as ChannelType, ChargeType$4 as ChargeType, type Color$4 as Color, type Coupon$5 as Coupon, type context$g_CreateCartRequest as CreateCartRequest, type context$g_CreateCartResponse as CreateCartResponse, type context$g_CreateCartResponseNonNullableFields as CreateCartResponseNonNullableFields, type context$g_CreateCheckoutFromCurrentCartOptions as CreateCheckoutFromCurrentCartOptions, type context$g_CreateCheckoutFromCurrentCartRequest as CreateCheckoutFromCurrentCartRequest, type CreateCheckoutRequest$1 as CreateCheckoutRequest, type CreateCheckoutResponse$1 as CreateCheckoutResponse, type CreateCheckoutResponseNonNullableFields$1 as CreateCheckoutResponseNonNullableFields, type CustomLineItem$3 as CustomLineItem, type context$g_DeleteCartRequest as DeleteCartRequest, type context$g_DeleteCartResponse as DeleteCartResponse, type context$g_DeleteCurrentCartRequest as DeleteCurrentCartRequest, type DeliveryLogistics$5 as DeliveryLogistics, type DeliveryTimeSlot$5 as DeliveryTimeSlot, type Description$2 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$5 as Details, type DetailsKindOneOf$5 as DetailsKindOneOf, type DiscountRule$5 as DiscountRule, type DiscountRuleName$5 as DiscountRuleName, DiscountType$5 as DiscountType, type DomainEvent$e as DomainEvent, type DomainEventBodyOneOf$e as DomainEventBodyOneOf, type Empty$9 as Empty, type EntityCreatedEvent$e as EntityCreatedEvent, type EntityDeletedEvent$e as EntityDeletedEvent, type EntityUpdatedEvent$e as EntityUpdatedEvent, type context$g_EstimateCurrentCartTotalsOptions as EstimateCurrentCartTotalsOptions, type context$g_EstimateCurrentCartTotalsRequest as EstimateCurrentCartTotalsRequest, type context$g_EstimateTotalsRequest as EstimateTotalsRequest, type context$g_EstimateTotalsResponse as EstimateTotalsResponse, type context$g_EstimateTotalsResponseNonNullableFields as EstimateTotalsResponseNonNullableFields, type EventMetadata$c as EventMetadata, type ExtendedFields$8 as ExtendedFields, FallbackReason$3 as FallbackReason, type FieldViolation$5 as FieldViolation, FileType$3 as FileType, type FullAddressContactDetails$4 as FullAddressContactDetails, type context$g_GetCartByCheckoutIdRequest as GetCartByCheckoutIdRequest, type context$g_GetCartByCheckoutIdResponse as GetCartByCheckoutIdResponse, type context$g_GetCartRequest as GetCartRequest, type context$g_GetCartResponse as GetCartResponse, type context$g_GetCartResponseNonNullableFields as GetCartResponseNonNullableFields, type context$g_GetCurrentCartRequest as GetCurrentCartRequest, type context$g_GetCurrentCartResponse as GetCurrentCartResponse, type context$g_GetCurrentCartResponseNonNullableFields as GetCurrentCartResponseNonNullableFields, type GiftCard$4 as GiftCard, type Group$3 as Group, type context$g_HostSelectedMembership as HostSelectedMembership, type IdentificationData$e as IdentificationData, type IdentificationDataIdOneOf$e as IdentificationDataIdOneOf, type InvalidMembership$3 as InvalidMembership, type ItemAvailabilityInfo$2 as ItemAvailabilityInfo, ItemAvailabilityStatus$2 as ItemAvailabilityStatus, type ItemTaxFullDetails$5 as ItemTaxFullDetails, type ItemType$5 as ItemType, ItemTypeItemType$5 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$5 as ItemTypeItemTypeDataOneOf, JurisdictionType$5 as JurisdictionType, type LineItem$5 as LineItem, type LineItemDiscount$5 as LineItemDiscount, type LineItemPricesData$1 as LineItemPricesData, type LineItemQuantityUpdate$1 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$5 as MerchantDiscount, type MerchantDiscountInput$2 as MerchantDiscountInput, type MessageEnvelope$e as MessageEnvelope, type MultiCurrencyPrice$3 as MultiCurrencyPrice, NameInLineItem$2 as NameInLineItem, NameInOther$2 as NameInOther, type Other$2 as Other, type OtherCharge$3 as OtherCharge, PaymentOptionType$5 as PaymentOptionType, type PhysicalProperties$5 as PhysicalProperties, type PickupDetails$6 as PickupDetails, PickupMethod$5 as PickupMethod, type PlainTextValue$4 as PlainTextValue, type PriceDescription$4 as PriceDescription, type PriceSummary$5 as PriceSummary, type ProductName$4 as ProductName, RateType$3 as RateType, type context$g_RemoveCouponFromCurrentCartRequest as RemoveCouponFromCurrentCartRequest, type RemoveCouponRequest$1 as RemoveCouponRequest, type RemoveCouponResponse$1 as RemoveCouponResponse, type RemoveCouponResponseNonNullableFields$1 as RemoveCouponResponseNonNullableFields, type context$g_RemoveLineItemsFromCurrentCartRequest as RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsRequest$1 as RemoveLineItemsRequest, type RemoveLineItemsResponse$1 as RemoveLineItemsResponse, type RemoveLineItemsResponseNonNullableFields$1 as RemoveLineItemsResponseNonNullableFields, type RestoreInfo$e as RestoreInfo, RuleType$5 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$2 as Severity, type ShippingInformation$3 as ShippingInformation, type ShippingOption$5 as ShippingOption, type ShippingPrice$5 as ShippingPrice, type ShippingRegion$5 as ShippingRegion, type StreetAddress$7 as StreetAddress, SubscriptionFrequency$6 as SubscriptionFrequency, type SubscriptionOptionInfo$3 as SubscriptionOptionInfo, type SubscriptionSettings$6 as SubscriptionSettings, type SystemError$5 as SystemError, type Target$2 as Target, type TargetLineItem$2 as TargetLineItem, type TargetTargetTypeOneOf$2 as TargetTargetTypeOneOf, type TaxBreakdown$3 as TaxBreakdown, type TaxCalculationDetails$3 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$3 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$3 as TaxRateBreakdown, type TaxSummary$5 as TaxSummary, type Title$2 as Title, type context$g_UpdateCartRequest as UpdateCartRequest, type context$g_UpdateCartResponse as UpdateCartResponse, type context$g_UpdateCartResponseNonNullableFields as UpdateCartResponseNonNullableFields, type context$g_UpdateCurrentCartLineItemQuantityRequest as UpdateCurrentCartLineItemQuantityRequest, type context$g_UpdateCurrentCartOptions as UpdateCurrentCartOptions, type UpdateLineItemsQuantityRequest$1 as UpdateLineItemsQuantityRequest, type UpdateLineItemsQuantityResponse$1 as UpdateLineItemsQuantityResponse, type UpdateLineItemsQuantityResponseNonNullableFields$1 as UpdateLineItemsQuantityResponseNonNullableFields, type context$g_V1Coupon as V1Coupon, type context$g_V1MerchantDiscount as V1MerchantDiscount, type ValidationError$5 as ValidationError, type VatId$5 as VatId, VatType$5 as VatType, type Violation$2 as Violation, WebhookIdentityType$e as WebhookIdentityType, WeightUnit$6 as WeightUnit, context$g_addToCurrentCart as addToCurrentCart, context$g_createCheckoutFromCurrentCart as createCheckoutFromCurrentCart, context$g_deleteCurrentCart as deleteCurrentCart, context$g_estimateCurrentCartTotals as estimateCurrentCartTotals, context$g_getCurrentCart as getCurrentCart, context$g_onCartCreated as onCartCreated, context$g_onCartDeleted as onCartDeleted, context$g_onCartUpdated as onCartUpdated, context$g_removeCouponFromCurrentCart as removeCouponFromCurrentCart, context$g_removeLineItemsFromCurrentCart as removeLineItemsFromCurrentCart, context$g_updateCurrentCart as updateCurrentCart, context$g_updateCurrentCartLineItemQuantity as updateCurrentCartLineItemQuantity };
|
|
7890
|
+
export { type ActionEvent$e as ActionEvent, type context$g_AddToCartRequest as AddToCartRequest, type context$g_AddToCartResponse as AddToCartResponse, type context$g_AddToCartResponseNonNullableFields as AddToCartResponseNonNullableFields, type context$g_AddToCurrentCartAndEstimateTotalsRequest as AddToCurrentCartAndEstimateTotalsRequest, type context$g_AddToCurrentCartOptions as AddToCurrentCartOptions, type context$g_AddToCurrentCartRequest as AddToCurrentCartRequest, type AdditionalFee$5 as AdditionalFee, type Address$8 as Address, type AddressLocation$7 as AddressLocation, type AddressWithContact$4 as AddressWithContact, type AggregatedTaxBreakdown$3 as AggregatedTaxBreakdown, type ApplicationError$9 as ApplicationError, type AppliedDiscount$5 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$5 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$3 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$c as BaseEventMetadata, type BuyerInfo$6 as BuyerInfo, type BuyerInfoIdOneOf$4 as BuyerInfoIdOneOf, type CalculatedLineItem$1 as CalculatedLineItem, type CalculationErrors$4 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$4 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$4 as CarrierError, type CarrierErrors$4 as CarrierErrors, type CarrierServiceOption$3 as CarrierServiceOption, type context$g_Cart as Cart, type context$g_CartCreatedEnvelope as CartCreatedEnvelope, type context$g_CartDeletedEnvelope as CartDeletedEnvelope, type context$g_CartDiscount as CartDiscount, type context$g_CartDiscountDiscountSourceOneOf as CartDiscountDiscountSourceOneOf, type context$g_CartNonNullableFields as CartNonNullableFields, type context$g_CartUpdatedEnvelope as CartUpdatedEnvelope, type CatalogOverrideFields$2 as CatalogOverrideFields, type CatalogReference$5 as CatalogReference, ChannelType$5 as ChannelType, ChargeType$4 as ChargeType, type Color$4 as Color, type Coupon$5 as Coupon, type context$g_CreateCartRequest as CreateCartRequest, type context$g_CreateCartResponse as CreateCartResponse, type context$g_CreateCartResponseNonNullableFields as CreateCartResponseNonNullableFields, type context$g_CreateCheckoutFromCurrentCartOptions as CreateCheckoutFromCurrentCartOptions, type context$g_CreateCheckoutFromCurrentCartRequest as CreateCheckoutFromCurrentCartRequest, type CreateCheckoutRequest$1 as CreateCheckoutRequest, type CreateCheckoutResponse$1 as CreateCheckoutResponse, type CreateCheckoutResponseNonNullableFields$1 as CreateCheckoutResponseNonNullableFields, type CustomLineItem$3 as CustomLineItem, type context$g_DeleteCartRequest as DeleteCartRequest, type context$g_DeleteCartResponse as DeleteCartResponse, type context$g_DeleteCurrentCartRequest as DeleteCurrentCartRequest, type DeliveryLogistics$5 as DeliveryLogistics, type DeliveryTimeSlot$5 as DeliveryTimeSlot, type Description$2 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$5 as DiscountRule, type DiscountRuleName$5 as DiscountRuleName, DiscountType$5 as DiscountType, type DomainEvent$e as DomainEvent, type DomainEventBodyOneOf$e as DomainEventBodyOneOf, type Empty$9 as Empty, type EntityCreatedEvent$e as EntityCreatedEvent, type EntityDeletedEvent$e as EntityDeletedEvent, type EntityUpdatedEvent$e as EntityUpdatedEvent, type context$g_EstimateCurrentCartTotalsOptions as EstimateCurrentCartTotalsOptions, type context$g_EstimateCurrentCartTotalsRequest as EstimateCurrentCartTotalsRequest, type context$g_EstimateTotalsRequest as EstimateTotalsRequest, type context$g_EstimateTotalsResponse as EstimateTotalsResponse, type context$g_EstimateTotalsResponseNonNullableFields as EstimateTotalsResponseNonNullableFields, type EventMetadata$c as EventMetadata, type ExtendedFields$8 as ExtendedFields, FallbackReason$3 as FallbackReason, type FieldViolation$4 as FieldViolation, FileType$3 as FileType, type FullAddressContactDetails$4 as FullAddressContactDetails, type context$g_GetCartByCheckoutIdRequest as GetCartByCheckoutIdRequest, type context$g_GetCartByCheckoutIdResponse as GetCartByCheckoutIdResponse, type context$g_GetCartRequest as GetCartRequest, type context$g_GetCartResponse as GetCartResponse, type context$g_GetCartResponseNonNullableFields as GetCartResponseNonNullableFields, type context$g_GetCurrentCartRequest as GetCurrentCartRequest, type context$g_GetCurrentCartResponse as GetCurrentCartResponse, type context$g_GetCurrentCartResponseNonNullableFields as GetCurrentCartResponseNonNullableFields, type GiftCard$4 as GiftCard, type Group$3 as Group, type context$g_HostSelectedMembership as HostSelectedMembership, type IdentificationData$e as IdentificationData, type IdentificationDataIdOneOf$e as IdentificationDataIdOneOf, type InvalidMembership$3 as InvalidMembership, type ItemAvailabilityInfo$2 as ItemAvailabilityInfo, ItemAvailabilityStatus$2 as ItemAvailabilityStatus, type ItemTaxFullDetails$5 as ItemTaxFullDetails, type ItemType$5 as ItemType, ItemTypeItemType$5 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$5 as ItemTypeItemTypeDataOneOf, JurisdictionType$5 as JurisdictionType, type LineItem$5 as LineItem, type LineItemDiscount$5 as LineItemDiscount, type LineItemPricesData$1 as LineItemPricesData, type LineItemQuantityUpdate$1 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$5 as MerchantDiscount, type MerchantDiscountInput$2 as MerchantDiscountInput, type MessageEnvelope$e as MessageEnvelope, type MultiCurrencyPrice$3 as MultiCurrencyPrice, NameInLineItem$2 as NameInLineItem, NameInOther$2 as NameInOther, type Other$2 as Other, type OtherCharge$3 as OtherCharge, PaymentOptionType$5 as PaymentOptionType, type PhysicalProperties$5 as PhysicalProperties, type PickupDetails$6 as PickupDetails, PickupMethod$5 as PickupMethod, type PlainTextValue$4 as PlainTextValue, type PriceDescription$4 as PriceDescription, type PriceSummary$5 as PriceSummary, type ProductName$4 as ProductName, RateType$3 as RateType, type context$g_RemoveCouponFromCurrentCartRequest as RemoveCouponFromCurrentCartRequest, type RemoveCouponRequest$1 as RemoveCouponRequest, type RemoveCouponResponse$1 as RemoveCouponResponse, type RemoveCouponResponseNonNullableFields$1 as RemoveCouponResponseNonNullableFields, type context$g_RemoveLineItemsFromCurrentCartRequest as RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsRequest$1 as RemoveLineItemsRequest, type RemoveLineItemsResponse$1 as RemoveLineItemsResponse, type RemoveLineItemsResponseNonNullableFields$1 as RemoveLineItemsResponseNonNullableFields, type RestoreInfo$e as RestoreInfo, 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$2 as Severity, type ShippingInformation$3 as ShippingInformation, type ShippingOption$5 as ShippingOption, type ShippingPrice$5 as ShippingPrice, type ShippingRegion$5 as ShippingRegion, type StreetAddress$7 as StreetAddress, SubscriptionFrequency$6 as SubscriptionFrequency, type SubscriptionOptionInfo$3 as SubscriptionOptionInfo, type SubscriptionSettings$6 as SubscriptionSettings, type SystemError$4 as SystemError, type Target$2 as Target, type TargetLineItem$2 as TargetLineItem, type TargetTargetTypeOneOf$2 as TargetTargetTypeOneOf, type TaxBreakdown$3 as TaxBreakdown, type TaxCalculationDetails$3 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$3 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$3 as TaxRateBreakdown, type TaxSummary$5 as TaxSummary, type Title$2 as Title, type context$g_UpdateCartRequest as UpdateCartRequest, type context$g_UpdateCartResponse as UpdateCartResponse, type context$g_UpdateCartResponseNonNullableFields as UpdateCartResponseNonNullableFields, type context$g_UpdateCurrentCartLineItemQuantityRequest as UpdateCurrentCartLineItemQuantityRequest, type context$g_UpdateCurrentCartOptions as UpdateCurrentCartOptions, type UpdateLineItemsQuantityRequest$1 as UpdateLineItemsQuantityRequest, type UpdateLineItemsQuantityResponse$1 as UpdateLineItemsQuantityResponse, type UpdateLineItemsQuantityResponseNonNullableFields$1 as UpdateLineItemsQuantityResponseNonNullableFields, type context$g_V1Coupon as V1Coupon, type context$g_V1MerchantDiscount as V1MerchantDiscount, type ValidationError$4 as ValidationError, type VatId$5 as VatId, VatType$5 as VatType, type Violation$2 as Violation, WebhookIdentityType$e as WebhookIdentityType, WeightUnit$6 as WeightUnit, context$g_addToCurrentCart as addToCurrentCart, context$g_createCheckoutFromCurrentCart as createCheckoutFromCurrentCart, context$g_deleteCurrentCart as deleteCurrentCart, context$g_estimateCurrentCartTotals as estimateCurrentCartTotals, context$g_getCurrentCart as getCurrentCart, context$g_onCartCreated as onCartCreated, context$g_onCartDeleted as onCartDeleted, context$g_onCartUpdated as onCartUpdated, context$g_removeCouponFromCurrentCart as removeCouponFromCurrentCart, context$g_removeLineItemsFromCurrentCart as removeLineItemsFromCurrentCart, context$g_updateCurrentCart as updateCurrentCart, context$g_updateCurrentCartLineItemQuantity as updateCurrentCartLineItemQuantity };
|
|
7867
7891
|
}
|
|
7868
7892
|
|
|
7869
7893
|
interface Checkout$1 {
|
|
@@ -8153,6 +8177,18 @@ interface LineItem$4 {
|
|
|
8153
8177
|
* @readonly
|
|
8154
8178
|
*/
|
|
8155
8179
|
depositAmount?: MultiCurrencyPrice$2;
|
|
8180
|
+
/**
|
|
8181
|
+
* Item payment policy that requires customer consent to complete purchase. The payment policy will be displayed on the checkout page.
|
|
8182
|
+
* @readonly
|
|
8183
|
+
*/
|
|
8184
|
+
consentRequiredPaymentPolicy?: string | null;
|
|
8185
|
+
/**
|
|
8186
|
+
* Whether to save the payment method on the order.
|
|
8187
|
+
*
|
|
8188
|
+
* Default: `false`
|
|
8189
|
+
* @readonly
|
|
8190
|
+
*/
|
|
8191
|
+
savePaymentMethod?: boolean;
|
|
8156
8192
|
}
|
|
8157
8193
|
/** Used for grouping line items. Sent when an item is added to a cart, checkout, or order. */
|
|
8158
8194
|
interface CatalogReference$4 {
|
|
@@ -8745,36 +8781,36 @@ interface PriceSummary$4 {
|
|
|
8745
8781
|
}
|
|
8746
8782
|
interface CalculationErrors$3 extends CalculationErrorsShippingCalculationErrorOneOf$3 {
|
|
8747
8783
|
/** General shipping calculation error. */
|
|
8748
|
-
generalShippingCalculationError?: Details$
|
|
8784
|
+
generalShippingCalculationError?: Details$3;
|
|
8749
8785
|
/** Carrier errors. */
|
|
8750
8786
|
carrierErrors?: CarrierErrors$3;
|
|
8751
8787
|
/** Tax calculation error. */
|
|
8752
|
-
taxCalculationError?: Details$
|
|
8788
|
+
taxCalculationError?: Details$3;
|
|
8753
8789
|
/** Coupon calculation error. */
|
|
8754
|
-
couponCalculationError?: Details$
|
|
8790
|
+
couponCalculationError?: Details$3;
|
|
8755
8791
|
/** Gift card calculation error. */
|
|
8756
|
-
giftCardCalculationError?: Details$
|
|
8792
|
+
giftCardCalculationError?: Details$3;
|
|
8757
8793
|
/** Order validation errors. */
|
|
8758
8794
|
orderValidationErrors?: ApplicationError$8[];
|
|
8759
8795
|
/**
|
|
8760
8796
|
* Membership payment methods calculation errors
|
|
8761
8797
|
* For example, will indicate that a line item that must be paid with membership payment doesn't have one or selected memberships are invalid
|
|
8762
8798
|
*/
|
|
8763
|
-
membershipError?: Details$
|
|
8799
|
+
membershipError?: Details$3;
|
|
8764
8800
|
/** Discount Rule calculation error. */
|
|
8765
|
-
discountsCalculationError?: Details$
|
|
8801
|
+
discountsCalculationError?: Details$3;
|
|
8766
8802
|
}
|
|
8767
8803
|
/** @oneof */
|
|
8768
8804
|
interface CalculationErrorsShippingCalculationErrorOneOf$3 {
|
|
8769
8805
|
/** General shipping calculation error. */
|
|
8770
|
-
generalShippingCalculationError?: Details$
|
|
8806
|
+
generalShippingCalculationError?: Details$3;
|
|
8771
8807
|
/** Carrier errors. */
|
|
8772
8808
|
carrierErrors?: CarrierErrors$3;
|
|
8773
8809
|
}
|
|
8774
|
-
interface Details$
|
|
8810
|
+
interface Details$3 extends DetailsKindOneOf$3 {
|
|
8775
8811
|
applicationError?: ApplicationError$8;
|
|
8776
|
-
validationError?: ValidationError$
|
|
8777
|
-
systemError?: SystemError$
|
|
8812
|
+
validationError?: ValidationError$3;
|
|
8813
|
+
systemError?: SystemError$3;
|
|
8778
8814
|
/**
|
|
8779
8815
|
* deprecated in API's - to enable migration from rendering arbitrary tracing to rest response
|
|
8780
8816
|
* @deprecated
|
|
@@ -8782,10 +8818,10 @@ interface Details$4 extends DetailsKindOneOf$4 {
|
|
|
8782
8818
|
tracing?: Record<string, string>;
|
|
8783
8819
|
}
|
|
8784
8820
|
/** @oneof */
|
|
8785
|
-
interface DetailsKindOneOf$
|
|
8821
|
+
interface DetailsKindOneOf$3 {
|
|
8786
8822
|
applicationError?: ApplicationError$8;
|
|
8787
|
-
validationError?: ValidationError$
|
|
8788
|
-
systemError?: SystemError$
|
|
8823
|
+
validationError?: ValidationError$3;
|
|
8824
|
+
systemError?: SystemError$3;
|
|
8789
8825
|
}
|
|
8790
8826
|
interface ApplicationError$8 {
|
|
8791
8827
|
/** Error code. */
|
|
@@ -8827,10 +8863,10 @@ interface ApplicationError$8 {
|
|
|
8827
8863
|
* ]
|
|
8828
8864
|
* }
|
|
8829
8865
|
*/
|
|
8830
|
-
interface ValidationError$
|
|
8831
|
-
fieldViolations?: FieldViolation$
|
|
8866
|
+
interface ValidationError$3 {
|
|
8867
|
+
fieldViolations?: FieldViolation$3[];
|
|
8832
8868
|
}
|
|
8833
|
-
declare enum RuleType$
|
|
8869
|
+
declare enum RuleType$3 {
|
|
8834
8870
|
VALIDATION = "VALIDATION",
|
|
8835
8871
|
OTHER = "OTHER",
|
|
8836
8872
|
MAX = "MAX",
|
|
@@ -8850,15 +8886,15 @@ declare enum RuleType$4 {
|
|
|
8850
8886
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
8851
8887
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
8852
8888
|
}
|
|
8853
|
-
interface FieldViolation$
|
|
8889
|
+
interface FieldViolation$3 {
|
|
8854
8890
|
field?: string;
|
|
8855
8891
|
description?: string;
|
|
8856
|
-
violatedRule?: RuleType$
|
|
8892
|
+
violatedRule?: RuleType$3;
|
|
8857
8893
|
/** applicable when violated_rule=OTHER */
|
|
8858
8894
|
ruleName?: string | null;
|
|
8859
8895
|
data?: Record<string, any> | null;
|
|
8860
8896
|
}
|
|
8861
|
-
interface SystemError$
|
|
8897
|
+
interface SystemError$3 {
|
|
8862
8898
|
/** Error code. */
|
|
8863
8899
|
errorCode?: string | null;
|
|
8864
8900
|
}
|
|
@@ -8870,7 +8906,7 @@ interface CarrierError$3 {
|
|
|
8870
8906
|
/** Carrier ID. */
|
|
8871
8907
|
carrierId?: string;
|
|
8872
8908
|
/** Error details. */
|
|
8873
|
-
error?: Details$
|
|
8909
|
+
error?: Details$3;
|
|
8874
8910
|
}
|
|
8875
8911
|
interface GiftCard$3 {
|
|
8876
8912
|
/**
|
|
@@ -9413,12 +9449,12 @@ interface CreateCheckoutResponse {
|
|
|
9413
9449
|
checkout?: Checkout$1;
|
|
9414
9450
|
}
|
|
9415
9451
|
interface ShippingCalculationErrorData extends ShippingCalculationErrorDataShippingCalculationErrorOneOf {
|
|
9416
|
-
generalShippingCalculationError?: Details$
|
|
9452
|
+
generalShippingCalculationError?: Details$3;
|
|
9417
9453
|
carrierErrors?: CarrierErrors$3;
|
|
9418
9454
|
}
|
|
9419
9455
|
/** @oneof */
|
|
9420
9456
|
interface ShippingCalculationErrorDataShippingCalculationErrorOneOf {
|
|
9421
|
-
generalShippingCalculationError?: Details$
|
|
9457
|
+
generalShippingCalculationError?: Details$3;
|
|
9422
9458
|
carrierErrors?: CarrierErrors$3;
|
|
9423
9459
|
}
|
|
9424
9460
|
interface GetCheckoutRequest {
|
|
@@ -10350,7 +10386,7 @@ interface ApplicationErrorNonNullableFields$7 {
|
|
|
10350
10386
|
interface FieldViolationNonNullableFields$2 {
|
|
10351
10387
|
field: string;
|
|
10352
10388
|
description: string;
|
|
10353
|
-
violatedRule: RuleType$
|
|
10389
|
+
violatedRule: RuleType$3;
|
|
10354
10390
|
}
|
|
10355
10391
|
interface ValidationErrorNonNullableFields$2 {
|
|
10356
10392
|
fieldViolations: FieldViolationNonNullableFields$2[];
|
|
@@ -10972,7 +11008,7 @@ declare const context$f_removeOverrideCheckoutUrl: typeof removeOverrideCheckout
|
|
|
10972
11008
|
declare const context$f_updateCheckout: typeof updateCheckout;
|
|
10973
11009
|
declare const context$f_updateLineItemsQuantity: typeof updateLineItemsQuantity;
|
|
10974
11010
|
declare namespace context$f {
|
|
10975
|
-
export { type ActionEvent$d as ActionEvent, type context$f_AddToCheckoutOptions as AddToCheckoutOptions, type context$f_AddToCheckoutRequest as AddToCheckoutRequest, type context$f_AddToCheckoutResponse as AddToCheckoutResponse, type context$f_AddToCheckoutResponseNonNullableFields as AddToCheckoutResponseNonNullableFields, type AdditionalFee$4 as AdditionalFee, type Address$7 as Address, type AddressAddressLine1OptionsOneOf$1 as AddressAddressLine1OptionsOneOf, type AddressLocation$6 as AddressLocation, type AddressWithContact$3 as AddressWithContact, type AggregatedTaxBreakdown$2 as AggregatedTaxBreakdown, type context$f_ApiAddress as ApiAddress, type ApplicationError$8 as ApplicationError, type AppliedCoupon$1 as AppliedCoupon, type AppliedDiscount$4 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$4 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$2 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$b as BaseEventMetadata, type BillingInfo$1 as BillingInfo, type BuyerInfo$5 as BuyerInfo, type BuyerInfoIdOneOf$3 as BuyerInfoIdOneOf, type CalculationErrors$3 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$3 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$3 as CarrierError, type CarrierErrors$3 as CarrierErrors, type CarrierServiceOption$2 as CarrierServiceOption, type CatalogOverrideFields$1 as CatalogOverrideFields, type CatalogReference$4 as CatalogReference, type ChannelInfo$3 as ChannelInfo, context$f_ChannelInfoChannelType as ChannelInfoChannelType, ChannelType$4 as ChannelType, type context$f_ChargeDetails as ChargeDetails, ChargeType$3 as ChargeType, type Checkout$1 as Checkout, type context$f_CheckoutCompletedEnvelope as CheckoutCompletedEnvelope, type context$f_CheckoutCreatedEnvelope as CheckoutCreatedEnvelope, type context$f_CheckoutMarkedAsCompleted as CheckoutMarkedAsCompleted, type context$f_CheckoutNonNullableFields as CheckoutNonNullableFields, type context$f_CheckoutUpdatedEnvelope as CheckoutUpdatedEnvelope, type Color$3 as Color, type context$f_CommonVatId as CommonVatId, context$f_CommonVatType as CommonVatType, type ConversionInfo$1 as ConversionInfo, type Coupon$4 as Coupon, type context$f_CreateCheckoutOptions as CreateCheckoutOptions, type context$f_CreateCheckoutRequest as CreateCheckoutRequest, type context$f_CreateCheckoutResponse as CreateCheckoutResponse, type context$f_CreateCheckoutResponseNonNullableFields as CreateCheckoutResponseNonNullableFields, type context$f_CreateOrderAndChargeRequest as CreateOrderAndChargeRequest, type context$f_CreateOrderAndChargeResponse as CreateOrderAndChargeResponse, type context$f_CreateOrderAndChargeResponseIdOneOf as CreateOrderAndChargeResponseIdOneOf, type CreateOrderRequest$1 as CreateOrderRequest, type CreateOrderResponse$1 as CreateOrderResponse, type context$f_CreateOrderResponseIdOneOf as CreateOrderResponseIdOneOf, type CreateOrderResponseNonNullableFields$1 as CreateOrderResponseNonNullableFields, type CreatedBy$3 as CreatedBy, type CreatedByIdOneOf$1 as CreatedByIdOneOf, type CustomContentReference$1 as CustomContentReference, type CustomField$4 as CustomField, type CustomLineItem$2 as CustomLineItem, type CustomSettings$1 as CustomSettings, type CustomTextFieldSelection$1 as CustomTextFieldSelection, type DeliveryLogistics$4 as DeliveryLogistics, type DeliveryTimeSlot$4 as DeliveryTimeSlot, type Description$1 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$4 as Details, type DetailsKindOneOf$4 as DetailsKindOneOf, type Discount$2 as Discount, context$f_DiscountDiscountType as DiscountDiscountType, type DiscountRule$4 as DiscountRule, type DiscountRuleName$4 as DiscountRuleName, DiscountType$4 as DiscountType, type DomainEvent$d as DomainEvent, type DomainEventBodyOneOf$d as DomainEventBodyOneOf, type context$f_DoublePaymentErrorData as DoublePaymentErrorData, type context$f_DoublePaymentErrorDataIdOneOf as DoublePaymentErrorDataIdOneOf, type Empty$8 as Empty, type EntityCreatedEvent$d as EntityCreatedEvent, type EntityDeletedEvent$d as EntityDeletedEvent, type EntityUpdatedEvent$d as EntityUpdatedEvent, type EventMetadata$b as EventMetadata, type ExtendedFields$7 as ExtendedFields, type ExternalReference$1 as ExternalReference, FallbackReason$2 as FallbackReason, type FieldViolation$4 as FieldViolation, FileType$2 as FileType, type FullAddressContactDetails$3 as FullAddressContactDetails, type FullName$1 as FullName, type context$f_GetCheckoutByCartIdRequest as GetCheckoutByCartIdRequest, type context$f_GetCheckoutByCartIdResponse as GetCheckoutByCartIdResponse, type context$f_GetCheckoutByCartIdResponseNonNullableFields as GetCheckoutByCartIdResponseNonNullableFields, type context$f_GetCheckoutRequest as GetCheckoutRequest, type context$f_GetCheckoutResponse as GetCheckoutResponse, type context$f_GetCheckoutResponseNonNullableFields as GetCheckoutResponseNonNullableFields, type context$f_GetCheckoutURLRequest as GetCheckoutURLRequest, type context$f_GetCheckoutURLResponse as GetCheckoutURLResponse, type context$f_GetCheckoutURLResponseNonNullableFields as GetCheckoutURLResponseNonNullableFields, type context$f_GetCheckoutWithAllExtendedFieldsRequest as GetCheckoutWithAllExtendedFieldsRequest, type context$f_GetCheckoutWithAllExtendedFieldsResponse as GetCheckoutWithAllExtendedFieldsResponse, type context$f_GetWixCheckoutURLRequest as GetWixCheckoutURLRequest, type context$f_GetWixCheckoutURLResponse as GetWixCheckoutURLResponse, type GiftCard$3 as GiftCard, type Group$2 as Group, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type InvalidMembership$2 as InvalidMembership, type ItemAvailabilityInfo$1 as ItemAvailabilityInfo, ItemAvailabilityStatus$1 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$4 as LineItem, type LineItemDiscount$4 as LineItemDiscount, type context$f_LineItemQuantityUpdate as LineItemQuantityUpdate, LineItemType$1 as LineItemType, ManualCalculationReason$2 as ManualCalculationReason, type context$f_MarkCheckoutAsCompletedRequest as MarkCheckoutAsCompletedRequest, type context$f_MarkCheckoutAsCompletedResponse as MarkCheckoutAsCompletedResponse, type MediaItem$1 as MediaItem, MediaItemType$1 as MediaItemType, type Membership$2 as Membership, type MembershipName$4 as MembershipName, type MembershipOptions$2 as MembershipOptions, type MembershipPaymentCredits$2 as MembershipPaymentCredits, type MerchantDiscount$4 as MerchantDiscount, type MerchantDiscountInput$1 as MerchantDiscountInput, type MessageEnvelope$d as MessageEnvelope, type MultiCurrencyPrice$2 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type OptionSelection$1 as OptionSelection, type Other$1 as Other, type OtherCharge$2 as OtherCharge, type context$f_PaymentErrorResponseData as PaymentErrorResponseData, PaymentOptionType$4 as PaymentOptionType, type PhysicalProperties$4 as PhysicalProperties, type PickupAddress$3 as PickupAddress, type PickupDetails$5 as PickupDetails, PickupMethod$4 as PickupMethod, type PlainTextValue$3 as PlainTextValue, type PriceDescription$3 as PriceDescription, type PriceSummary$4 as PriceSummary, type context$f_ProductDetails as ProductDetails, type ProductName$3 as ProductName, RateType$2 as RateType, type context$f_RedeemErrorData as RedeemErrorData, type context$f_RemoveCouponRequest as RemoveCouponRequest, type context$f_RemoveCouponResponse as RemoveCouponResponse, type context$f_RemoveCouponResponseNonNullableFields as RemoveCouponResponseNonNullableFields, type context$f_RemoveGiftCardRequest as RemoveGiftCardRequest, type context$f_RemoveGiftCardResponse as RemoveGiftCardResponse, type context$f_RemoveGiftCardResponseNonNullableFields as RemoveGiftCardResponseNonNullableFields, type context$f_RemoveLineItemsRequest as RemoveLineItemsRequest, type context$f_RemoveLineItemsResponse as RemoveLineItemsResponse, type context$f_RemoveLineItemsResponseNonNullableFields as RemoveLineItemsResponseNonNullableFields, type context$f_RemoveOverrideCheckoutUrlRequest as RemoveOverrideCheckoutUrlRequest, type context$f_RemoveOverrideCheckoutUrlResponse as RemoveOverrideCheckoutUrlResponse, type context$f_RemoveOverrideCheckoutUrlResponseNonNullableFields as RemoveOverrideCheckoutUrlResponseNonNullableFields, type RestoreInfo$d as RestoreInfo, RuleType$4 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 ServiceProperties$3 as ServiceProperties, Severity$1 as Severity, type ShipmentDetails$1 as ShipmentDetails, type context$f_ShippingCalculationErrorData as ShippingCalculationErrorData, type context$f_ShippingCalculationErrorDataShippingCalculationErrorOneOf as ShippingCalculationErrorDataShippingCalculationErrorOneOf, type ShippingInfo$2 as ShippingInfo, type ShippingOption$4 as ShippingOption, type ShippingPrice$4 as ShippingPrice, type ShippingRegion$4 as ShippingRegion, type context$f_StoreSettings as StoreSettings, type Street$1 as Street, type StreetAddress$6 as StreetAddress, type context$f_Subscription as Subscription, type context$f_SubscriptionCreated as SubscriptionCreated, SubscriptionFrequency$5 as SubscriptionFrequency, type SubscriptionOptionInfo$2 as SubscriptionOptionInfo, type SubscriptionSettings$5 as SubscriptionSettings, type SystemError$4 as SystemError, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$2 as TaxBreakdown, type TaxCalculationDetails$2 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$2 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$2 as TaxRateBreakdown, type TaxSummary$4 as TaxSummary, type Title$1 as Title, type Totals$1 as Totals, type context$f_UpdateCheckout as UpdateCheckout, type context$f_UpdateCheckoutOptions as UpdateCheckoutOptions, type context$f_UpdateCheckoutRequest as UpdateCheckoutRequest, type context$f_UpdateCheckoutResponse as UpdateCheckoutResponse, type context$f_UpdateCheckoutResponseNonNullableFields as UpdateCheckoutResponseNonNullableFields, type context$f_UpdateLineItemsQuantityRequest as UpdateLineItemsQuantityRequest, type context$f_UpdateLineItemsQuantityResponse as UpdateLineItemsQuantityResponse, type context$f_UpdateLineItemsQuantityResponseNonNullableFields as UpdateLineItemsQuantityResponseNonNullableFields, type context$f_UpdatedCheckoutMessage as UpdatedCheckoutMessage, type context$f_V1BuyerInfo as V1BuyerInfo, type context$f_V1CustomField as V1CustomField, type V1LineItem$1 as V1LineItem, type V1PickupDetails$1 as V1PickupDetails, type context$f_V1ShippingInfo as V1ShippingInfo, type context$f_V1ShippingInfoDetailsOneOf as V1ShippingInfoDetailsOneOf, type context$f_V1SubscriptionOptionInfo as V1SubscriptionOptionInfo, type context$f_V1SubscriptionSettings as V1SubscriptionSettings, type ValidationError$4 as ValidationError, type VatId$4 as VatId, VatType$4 as VatType, type Violation$1 as Violation, type context$f_ViolationsList as ViolationsList, WebhookIdentityType$d as WebhookIdentityType, WeightUnit$5 as WeightUnit, context$f_addToCheckout as addToCheckout, context$f_createCheckout as createCheckout, createOrder$1 as createOrder, context$f_getCheckout as getCheckout, context$f_getCheckoutByCartId as getCheckoutByCartId, context$f_getCheckoutUrl as getCheckoutUrl, context$f_markCheckoutAsCompleted as markCheckoutAsCompleted, context$f_onCheckoutCompleted as onCheckoutCompleted, context$f_onCheckoutCreated as onCheckoutCreated, context$f_onCheckoutUpdated as onCheckoutUpdated, context$f_removeCoupon as removeCoupon, context$f_removeGiftCard as removeGiftCard, context$f_removeLineItems as removeLineItems, context$f_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, context$f_updateCheckout as updateCheckout, context$f_updateLineItemsQuantity as updateLineItemsQuantity };
|
|
11011
|
+
export { type ActionEvent$d as ActionEvent, type context$f_AddToCheckoutOptions as AddToCheckoutOptions, type context$f_AddToCheckoutRequest as AddToCheckoutRequest, type context$f_AddToCheckoutResponse as AddToCheckoutResponse, type context$f_AddToCheckoutResponseNonNullableFields as AddToCheckoutResponseNonNullableFields, type AdditionalFee$4 as AdditionalFee, type Address$7 as Address, type AddressAddressLine1OptionsOneOf$1 as AddressAddressLine1OptionsOneOf, type AddressLocation$6 as AddressLocation, type AddressWithContact$3 as AddressWithContact, type AggregatedTaxBreakdown$2 as AggregatedTaxBreakdown, type context$f_ApiAddress as ApiAddress, type ApplicationError$8 as ApplicationError, type AppliedCoupon$1 as AppliedCoupon, type AppliedDiscount$4 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$4 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$2 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$b as BaseEventMetadata, type BillingInfo$1 as BillingInfo, type BuyerInfo$5 as BuyerInfo, type BuyerInfoIdOneOf$3 as BuyerInfoIdOneOf, type CalculationErrors$3 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$3 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$3 as CarrierError, type CarrierErrors$3 as CarrierErrors, type CarrierServiceOption$2 as CarrierServiceOption, type CatalogOverrideFields$1 as CatalogOverrideFields, type CatalogReference$4 as CatalogReference, type ChannelInfo$3 as ChannelInfo, context$f_ChannelInfoChannelType as ChannelInfoChannelType, ChannelType$4 as ChannelType, type context$f_ChargeDetails as ChargeDetails, ChargeType$3 as ChargeType, type Checkout$1 as Checkout, type context$f_CheckoutCompletedEnvelope as CheckoutCompletedEnvelope, type context$f_CheckoutCreatedEnvelope as CheckoutCreatedEnvelope, type context$f_CheckoutMarkedAsCompleted as CheckoutMarkedAsCompleted, type context$f_CheckoutNonNullableFields as CheckoutNonNullableFields, type context$f_CheckoutUpdatedEnvelope as CheckoutUpdatedEnvelope, type Color$3 as Color, type context$f_CommonVatId as CommonVatId, context$f_CommonVatType as CommonVatType, type ConversionInfo$1 as ConversionInfo, type Coupon$4 as Coupon, type context$f_CreateCheckoutOptions as CreateCheckoutOptions, type context$f_CreateCheckoutRequest as CreateCheckoutRequest, type context$f_CreateCheckoutResponse as CreateCheckoutResponse, type context$f_CreateCheckoutResponseNonNullableFields as CreateCheckoutResponseNonNullableFields, type context$f_CreateOrderAndChargeRequest as CreateOrderAndChargeRequest, type context$f_CreateOrderAndChargeResponse as CreateOrderAndChargeResponse, type context$f_CreateOrderAndChargeResponseIdOneOf as CreateOrderAndChargeResponseIdOneOf, type CreateOrderRequest$1 as CreateOrderRequest, type CreateOrderResponse$1 as CreateOrderResponse, type context$f_CreateOrderResponseIdOneOf as CreateOrderResponseIdOneOf, type CreateOrderResponseNonNullableFields$1 as CreateOrderResponseNonNullableFields, type CreatedBy$3 as CreatedBy, type CreatedByIdOneOf$1 as CreatedByIdOneOf, type CustomContentReference$1 as CustomContentReference, type CustomField$4 as CustomField, type CustomLineItem$2 as CustomLineItem, type CustomSettings$1 as CustomSettings, type CustomTextFieldSelection$1 as CustomTextFieldSelection, type DeliveryLogistics$4 as DeliveryLogistics, type DeliveryTimeSlot$4 as DeliveryTimeSlot, type Description$1 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 Discount$2 as Discount, context$f_DiscountDiscountType as DiscountDiscountType, type DiscountRule$4 as DiscountRule, type DiscountRuleName$4 as DiscountRuleName, DiscountType$4 as DiscountType, type DomainEvent$d as DomainEvent, type DomainEventBodyOneOf$d as DomainEventBodyOneOf, type context$f_DoublePaymentErrorData as DoublePaymentErrorData, type context$f_DoublePaymentErrorDataIdOneOf as DoublePaymentErrorDataIdOneOf, type Empty$8 as Empty, type EntityCreatedEvent$d as EntityCreatedEvent, type EntityDeletedEvent$d as EntityDeletedEvent, type EntityUpdatedEvent$d as EntityUpdatedEvent, type EventMetadata$b as EventMetadata, type ExtendedFields$7 as ExtendedFields, type ExternalReference$1 as ExternalReference, FallbackReason$2 as FallbackReason, type FieldViolation$3 as FieldViolation, FileType$2 as FileType, type FullAddressContactDetails$3 as FullAddressContactDetails, type FullName$1 as FullName, type context$f_GetCheckoutByCartIdRequest as GetCheckoutByCartIdRequest, type context$f_GetCheckoutByCartIdResponse as GetCheckoutByCartIdResponse, type context$f_GetCheckoutByCartIdResponseNonNullableFields as GetCheckoutByCartIdResponseNonNullableFields, type context$f_GetCheckoutRequest as GetCheckoutRequest, type context$f_GetCheckoutResponse as GetCheckoutResponse, type context$f_GetCheckoutResponseNonNullableFields as GetCheckoutResponseNonNullableFields, type context$f_GetCheckoutURLRequest as GetCheckoutURLRequest, type context$f_GetCheckoutURLResponse as GetCheckoutURLResponse, type context$f_GetCheckoutURLResponseNonNullableFields as GetCheckoutURLResponseNonNullableFields, type context$f_GetCheckoutWithAllExtendedFieldsRequest as GetCheckoutWithAllExtendedFieldsRequest, type context$f_GetCheckoutWithAllExtendedFieldsResponse as GetCheckoutWithAllExtendedFieldsResponse, type context$f_GetWixCheckoutURLRequest as GetWixCheckoutURLRequest, type context$f_GetWixCheckoutURLResponse as GetWixCheckoutURLResponse, type GiftCard$3 as GiftCard, type Group$2 as Group, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type InvalidMembership$2 as InvalidMembership, type ItemAvailabilityInfo$1 as ItemAvailabilityInfo, ItemAvailabilityStatus$1 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$4 as LineItem, type LineItemDiscount$4 as LineItemDiscount, type context$f_LineItemQuantityUpdate as LineItemQuantityUpdate, LineItemType$1 as LineItemType, ManualCalculationReason$2 as ManualCalculationReason, type context$f_MarkCheckoutAsCompletedRequest as MarkCheckoutAsCompletedRequest, type context$f_MarkCheckoutAsCompletedResponse as MarkCheckoutAsCompletedResponse, type MediaItem$1 as MediaItem, MediaItemType$1 as MediaItemType, type Membership$2 as Membership, type MembershipName$4 as MembershipName, type MembershipOptions$2 as MembershipOptions, type MembershipPaymentCredits$2 as MembershipPaymentCredits, type MerchantDiscount$4 as MerchantDiscount, type MerchantDiscountInput$1 as MerchantDiscountInput, type MessageEnvelope$d as MessageEnvelope, type MultiCurrencyPrice$2 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type OptionSelection$1 as OptionSelection, type Other$1 as Other, type OtherCharge$2 as OtherCharge, type context$f_PaymentErrorResponseData as PaymentErrorResponseData, PaymentOptionType$4 as PaymentOptionType, type PhysicalProperties$4 as PhysicalProperties, type PickupAddress$3 as PickupAddress, type PickupDetails$5 as PickupDetails, PickupMethod$4 as PickupMethod, type PlainTextValue$3 as PlainTextValue, type PriceDescription$3 as PriceDescription, type PriceSummary$4 as PriceSummary, type context$f_ProductDetails as ProductDetails, type ProductName$3 as ProductName, RateType$2 as RateType, type context$f_RedeemErrorData as RedeemErrorData, type context$f_RemoveCouponRequest as RemoveCouponRequest, type context$f_RemoveCouponResponse as RemoveCouponResponse, type context$f_RemoveCouponResponseNonNullableFields as RemoveCouponResponseNonNullableFields, type context$f_RemoveGiftCardRequest as RemoveGiftCardRequest, type context$f_RemoveGiftCardResponse as RemoveGiftCardResponse, type context$f_RemoveGiftCardResponseNonNullableFields as RemoveGiftCardResponseNonNullableFields, type context$f_RemoveLineItemsRequest as RemoveLineItemsRequest, type context$f_RemoveLineItemsResponse as RemoveLineItemsResponse, type context$f_RemoveLineItemsResponseNonNullableFields as RemoveLineItemsResponseNonNullableFields, type context$f_RemoveOverrideCheckoutUrlRequest as RemoveOverrideCheckoutUrlRequest, type context$f_RemoveOverrideCheckoutUrlResponse as RemoveOverrideCheckoutUrlResponse, type context$f_RemoveOverrideCheckoutUrlResponseNonNullableFields as RemoveOverrideCheckoutUrlResponseNonNullableFields, type RestoreInfo$d as RestoreInfo, 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 ServiceProperties$3 as ServiceProperties, Severity$1 as Severity, type ShipmentDetails$1 as ShipmentDetails, type context$f_ShippingCalculationErrorData as ShippingCalculationErrorData, type context$f_ShippingCalculationErrorDataShippingCalculationErrorOneOf as ShippingCalculationErrorDataShippingCalculationErrorOneOf, type ShippingInfo$2 as ShippingInfo, type ShippingOption$4 as ShippingOption, type ShippingPrice$4 as ShippingPrice, type ShippingRegion$4 as ShippingRegion, type context$f_StoreSettings as StoreSettings, type Street$1 as Street, type StreetAddress$6 as StreetAddress, type context$f_Subscription as Subscription, type context$f_SubscriptionCreated as SubscriptionCreated, SubscriptionFrequency$5 as SubscriptionFrequency, type SubscriptionOptionInfo$2 as SubscriptionOptionInfo, type SubscriptionSettings$5 as SubscriptionSettings, type SystemError$3 as SystemError, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$2 as TaxBreakdown, type TaxCalculationDetails$2 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$2 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$2 as TaxRateBreakdown, type TaxSummary$4 as TaxSummary, type Title$1 as Title, type Totals$1 as Totals, type context$f_UpdateCheckout as UpdateCheckout, type context$f_UpdateCheckoutOptions as UpdateCheckoutOptions, type context$f_UpdateCheckoutRequest as UpdateCheckoutRequest, type context$f_UpdateCheckoutResponse as UpdateCheckoutResponse, type context$f_UpdateCheckoutResponseNonNullableFields as UpdateCheckoutResponseNonNullableFields, type context$f_UpdateLineItemsQuantityRequest as UpdateLineItemsQuantityRequest, type context$f_UpdateLineItemsQuantityResponse as UpdateLineItemsQuantityResponse, type context$f_UpdateLineItemsQuantityResponseNonNullableFields as UpdateLineItemsQuantityResponseNonNullableFields, type context$f_UpdatedCheckoutMessage as UpdatedCheckoutMessage, type context$f_V1BuyerInfo as V1BuyerInfo, type context$f_V1CustomField as V1CustomField, type V1LineItem$1 as V1LineItem, type V1PickupDetails$1 as V1PickupDetails, type context$f_V1ShippingInfo as V1ShippingInfo, type context$f_V1ShippingInfoDetailsOneOf as V1ShippingInfoDetailsOneOf, type context$f_V1SubscriptionOptionInfo as V1SubscriptionOptionInfo, type context$f_V1SubscriptionSettings as V1SubscriptionSettings, type ValidationError$3 as ValidationError, type VatId$4 as VatId, VatType$4 as VatType, type Violation$1 as Violation, type context$f_ViolationsList as ViolationsList, WebhookIdentityType$d as WebhookIdentityType, WeightUnit$5 as WeightUnit, context$f_addToCheckout as addToCheckout, context$f_createCheckout as createCheckout, createOrder$1 as createOrder, context$f_getCheckout as getCheckout, context$f_getCheckoutByCartId as getCheckoutByCartId, context$f_getCheckoutUrl as getCheckoutUrl, context$f_markCheckoutAsCompleted as markCheckoutAsCompleted, context$f_onCheckoutCompleted as onCheckoutCompleted, context$f_onCheckoutCreated as onCheckoutCreated, context$f_onCheckoutUpdated as onCheckoutUpdated, context$f_removeCoupon as removeCoupon, context$f_removeGiftCard as removeGiftCard, context$f_removeLineItems as removeLineItems, context$f_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, context$f_updateCheckout as updateCheckout, context$f_updateLineItemsQuantity as updateLineItemsQuantity };
|
|
10976
11012
|
}
|
|
10977
11013
|
|
|
10978
11014
|
interface CheckoutSettings {
|
|
@@ -12233,6 +12269,18 @@ interface LineItem$3 {
|
|
|
12233
12269
|
* @readonly
|
|
12234
12270
|
*/
|
|
12235
12271
|
depositAmount?: MultiCurrencyPrice$1;
|
|
12272
|
+
/**
|
|
12273
|
+
* Item payment policy that requires customer consent to complete purchase. The payment policy will be displayed on the checkout page.
|
|
12274
|
+
* @readonly
|
|
12275
|
+
*/
|
|
12276
|
+
consentRequiredPaymentPolicy?: string | null;
|
|
12277
|
+
/**
|
|
12278
|
+
* Whether to save the payment method on the order.
|
|
12279
|
+
*
|
|
12280
|
+
* Default: `false`
|
|
12281
|
+
* @readonly
|
|
12282
|
+
*/
|
|
12283
|
+
savePaymentMethod?: boolean;
|
|
12236
12284
|
}
|
|
12237
12285
|
interface MultiCurrencyPrice$1 {
|
|
12238
12286
|
/** Amount. */
|
|
@@ -12599,36 +12647,36 @@ interface PriceSummary$3 {
|
|
|
12599
12647
|
}
|
|
12600
12648
|
interface CalculationErrors$2 extends CalculationErrorsShippingCalculationErrorOneOf$2 {
|
|
12601
12649
|
/** General shipping calculation error. */
|
|
12602
|
-
generalShippingCalculationError?: Details$
|
|
12650
|
+
generalShippingCalculationError?: Details$2;
|
|
12603
12651
|
/** Carrier errors. */
|
|
12604
12652
|
carrierErrors?: CarrierErrors$2;
|
|
12605
12653
|
/** Tax calculation error. */
|
|
12606
|
-
taxCalculationError?: Details$
|
|
12654
|
+
taxCalculationError?: Details$2;
|
|
12607
12655
|
/** Coupon calculation error. */
|
|
12608
|
-
couponCalculationError?: Details$
|
|
12656
|
+
couponCalculationError?: Details$2;
|
|
12609
12657
|
/** Gift card calculation error. */
|
|
12610
|
-
giftCardCalculationError?: Details$
|
|
12658
|
+
giftCardCalculationError?: Details$2;
|
|
12611
12659
|
/** Order validation errors. */
|
|
12612
12660
|
orderValidationErrors?: ApplicationError$7[];
|
|
12613
12661
|
/**
|
|
12614
12662
|
* Membership payment methods calculation errors
|
|
12615
12663
|
* For example, will indicate that a line item that must be paid with membership payment doesn't have one or selected memberships are invalid
|
|
12616
12664
|
*/
|
|
12617
|
-
membershipError?: Details$
|
|
12665
|
+
membershipError?: Details$2;
|
|
12618
12666
|
/** Discount Rule calculation error. */
|
|
12619
|
-
discountsCalculationError?: Details$
|
|
12667
|
+
discountsCalculationError?: Details$2;
|
|
12620
12668
|
}
|
|
12621
12669
|
/** @oneof */
|
|
12622
12670
|
interface CalculationErrorsShippingCalculationErrorOneOf$2 {
|
|
12623
12671
|
/** General shipping calculation error. */
|
|
12624
|
-
generalShippingCalculationError?: Details$
|
|
12672
|
+
generalShippingCalculationError?: Details$2;
|
|
12625
12673
|
/** Carrier errors. */
|
|
12626
12674
|
carrierErrors?: CarrierErrors$2;
|
|
12627
12675
|
}
|
|
12628
|
-
interface Details$
|
|
12676
|
+
interface Details$2 extends DetailsKindOneOf$2 {
|
|
12629
12677
|
applicationError?: ApplicationError$7;
|
|
12630
|
-
validationError?: ValidationError$
|
|
12631
|
-
systemError?: SystemError$
|
|
12678
|
+
validationError?: ValidationError$2;
|
|
12679
|
+
systemError?: SystemError$2;
|
|
12632
12680
|
/**
|
|
12633
12681
|
* deprecated in API's - to enable migration from rendering arbitrary tracing to rest response
|
|
12634
12682
|
* @deprecated
|
|
@@ -12636,10 +12684,10 @@ interface Details$3 extends DetailsKindOneOf$3 {
|
|
|
12636
12684
|
tracing?: Record<string, string>;
|
|
12637
12685
|
}
|
|
12638
12686
|
/** @oneof */
|
|
12639
|
-
interface DetailsKindOneOf$
|
|
12687
|
+
interface DetailsKindOneOf$2 {
|
|
12640
12688
|
applicationError?: ApplicationError$7;
|
|
12641
|
-
validationError?: ValidationError$
|
|
12642
|
-
systemError?: SystemError$
|
|
12689
|
+
validationError?: ValidationError$2;
|
|
12690
|
+
systemError?: SystemError$2;
|
|
12643
12691
|
}
|
|
12644
12692
|
interface ApplicationError$7 {
|
|
12645
12693
|
/** Error code. */
|
|
@@ -12681,10 +12729,10 @@ interface ApplicationError$7 {
|
|
|
12681
12729
|
* ]
|
|
12682
12730
|
* }
|
|
12683
12731
|
*/
|
|
12684
|
-
interface ValidationError$
|
|
12685
|
-
fieldViolations?: FieldViolation$
|
|
12732
|
+
interface ValidationError$2 {
|
|
12733
|
+
fieldViolations?: FieldViolation$2[];
|
|
12686
12734
|
}
|
|
12687
|
-
declare enum RuleType$
|
|
12735
|
+
declare enum RuleType$2 {
|
|
12688
12736
|
VALIDATION = "VALIDATION",
|
|
12689
12737
|
OTHER = "OTHER",
|
|
12690
12738
|
MAX = "MAX",
|
|
@@ -12704,15 +12752,15 @@ declare enum RuleType$3 {
|
|
|
12704
12752
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
12705
12753
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
12706
12754
|
}
|
|
12707
|
-
interface FieldViolation$
|
|
12755
|
+
interface FieldViolation$2 {
|
|
12708
12756
|
field?: string;
|
|
12709
12757
|
description?: string;
|
|
12710
|
-
violatedRule?: RuleType$
|
|
12758
|
+
violatedRule?: RuleType$2;
|
|
12711
12759
|
/** applicable when violated_rule=OTHER */
|
|
12712
12760
|
ruleName?: string | null;
|
|
12713
12761
|
data?: Record<string, any> | null;
|
|
12714
12762
|
}
|
|
12715
|
-
interface SystemError$
|
|
12763
|
+
interface SystemError$2 {
|
|
12716
12764
|
/** Error code. */
|
|
12717
12765
|
errorCode?: string | null;
|
|
12718
12766
|
}
|
|
@@ -12724,7 +12772,7 @@ interface CarrierError$2 {
|
|
|
12724
12772
|
/** Carrier ID. */
|
|
12725
12773
|
carrierId?: string;
|
|
12726
12774
|
/** Error details. */
|
|
12727
|
-
error?: Details$
|
|
12775
|
+
error?: Details$2;
|
|
12728
12776
|
}
|
|
12729
12777
|
interface GiftCard$2 {
|
|
12730
12778
|
/**
|
|
@@ -13620,7 +13668,7 @@ declare const context$d_onCheckoutTemplateUsed: typeof onCheckoutTemplateUsed;
|
|
|
13620
13668
|
declare const context$d_queryCheckoutTemplates: typeof queryCheckoutTemplates;
|
|
13621
13669
|
declare const context$d_updateCheckoutTemplate: typeof updateCheckoutTemplate;
|
|
13622
13670
|
declare namespace context$d {
|
|
13623
|
-
export { type ActionEvent$b as ActionEvent, type AdditionalFee$3 as AdditionalFee, type Address$6 as Address, type AddressLocation$5 as AddressLocation, type AddressWithContact$2 as AddressWithContact, type AggregatedTaxBreakdown$1 as AggregatedTaxBreakdown, type ApplicationError$7 as ApplicationError, type AppliedDiscount$3 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$3 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$1 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$9 as BaseEventMetadata, type BuyerInfo$4 as BuyerInfo, type BuyerInfoIdOneOf$2 as BuyerInfoIdOneOf, type CalculationErrors$2 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$2 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$2 as CarrierError, type CarrierErrors$2 as CarrierErrors, type CarrierServiceOption$1 as CarrierServiceOption, type context$d_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$3 as CatalogReference, ChannelType$3 as ChannelType, ChargeType$2 as ChargeType, type context$d_Checkout as Checkout, type context$d_CheckoutCustomization as CheckoutCustomization, type context$d_CheckoutTemplate as CheckoutTemplate, type context$d_CheckoutTemplateCreatedEnvelope as CheckoutTemplateCreatedEnvelope, type context$d_CheckoutTemplateDeletedEnvelope as CheckoutTemplateDeletedEnvelope, type context$d_CheckoutTemplateNonNullableFields as CheckoutTemplateNonNullableFields, type context$d_CheckoutTemplateUpdatedEnvelope as CheckoutTemplateUpdatedEnvelope, type context$d_CheckoutTemplateUsed as CheckoutTemplateUsed, type context$d_CheckoutTemplateUsedEnvelope as CheckoutTemplateUsedEnvelope, type context$d_CheckoutTemplatesQueryBuilder as CheckoutTemplatesQueryBuilder, type context$d_CheckoutTemplatesQueryResult as CheckoutTemplatesQueryResult, type Color$2 as Color, type context$d_ConversionInfo as ConversionInfo, type Coupon$3 as Coupon, type context$d_CreateAndRedirectToCheckoutRequest as CreateAndRedirectToCheckoutRequest, type context$d_CreateCheckoutFromTemplateRequest as CreateCheckoutFromTemplateRequest, type context$d_CreateCheckoutFromTemplateResponse as CreateCheckoutFromTemplateResponse, type context$d_CreateCheckoutFromTemplateResponseNonNullableFields as CreateCheckoutFromTemplateResponseNonNullableFields, type context$d_CreateCheckoutTemplateRequest as CreateCheckoutTemplateRequest, type context$d_CreateCheckoutTemplateResponse as CreateCheckoutTemplateResponse, type context$d_CreateCheckoutTemplateResponseNonNullableFields as CreateCheckoutTemplateResponseNonNullableFields, type CreatedBy$2 as CreatedBy, type context$d_CreatedByIdOneOf as CreatedByIdOneOf, type CursorPaging$8 as CursorPaging, type CursorPagingMetadata$8 as CursorPagingMetadata, type CursorQuery$5 as CursorQuery, type CursorQueryPagingMethodOneOf$5 as CursorQueryPagingMethodOneOf, type Cursors$8 as Cursors, type context$d_CustomContentReference as CustomContentReference, type CustomField$3 as CustomField, type CustomLineItem$1 as CustomLineItem, type context$d_CustomSettings as CustomSettings, type context$d_DeleteCheckoutTemplateRequest as DeleteCheckoutTemplateRequest, type context$d_DeleteCheckoutTemplateResponse as DeleteCheckoutTemplateResponse, type DeliveryLogistics$3 as DeliveryLogistics, type DeliveryTimeSlot$3 as DeliveryTimeSlot, type context$d_Description 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$
|
|
13671
|
+
export { type ActionEvent$b as ActionEvent, type AdditionalFee$3 as AdditionalFee, type Address$6 as Address, type AddressLocation$5 as AddressLocation, type AddressWithContact$2 as AddressWithContact, type AggregatedTaxBreakdown$1 as AggregatedTaxBreakdown, type ApplicationError$7 as ApplicationError, type AppliedDiscount$3 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$3 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$1 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$9 as BaseEventMetadata, type BuyerInfo$4 as BuyerInfo, type BuyerInfoIdOneOf$2 as BuyerInfoIdOneOf, type CalculationErrors$2 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$2 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$2 as CarrierError, type CarrierErrors$2 as CarrierErrors, type CarrierServiceOption$1 as CarrierServiceOption, type context$d_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$3 as CatalogReference, ChannelType$3 as ChannelType, ChargeType$2 as ChargeType, type context$d_Checkout as Checkout, type context$d_CheckoutCustomization as CheckoutCustomization, type context$d_CheckoutTemplate as CheckoutTemplate, type context$d_CheckoutTemplateCreatedEnvelope as CheckoutTemplateCreatedEnvelope, type context$d_CheckoutTemplateDeletedEnvelope as CheckoutTemplateDeletedEnvelope, type context$d_CheckoutTemplateNonNullableFields as CheckoutTemplateNonNullableFields, type context$d_CheckoutTemplateUpdatedEnvelope as CheckoutTemplateUpdatedEnvelope, type context$d_CheckoutTemplateUsed as CheckoutTemplateUsed, type context$d_CheckoutTemplateUsedEnvelope as CheckoutTemplateUsedEnvelope, type context$d_CheckoutTemplatesQueryBuilder as CheckoutTemplatesQueryBuilder, type context$d_CheckoutTemplatesQueryResult as CheckoutTemplatesQueryResult, type Color$2 as Color, type context$d_ConversionInfo as ConversionInfo, type Coupon$3 as Coupon, type context$d_CreateAndRedirectToCheckoutRequest as CreateAndRedirectToCheckoutRequest, type context$d_CreateCheckoutFromTemplateRequest as CreateCheckoutFromTemplateRequest, type context$d_CreateCheckoutFromTemplateResponse as CreateCheckoutFromTemplateResponse, type context$d_CreateCheckoutFromTemplateResponseNonNullableFields as CreateCheckoutFromTemplateResponseNonNullableFields, type context$d_CreateCheckoutTemplateRequest as CreateCheckoutTemplateRequest, type context$d_CreateCheckoutTemplateResponse as CreateCheckoutTemplateResponse, type context$d_CreateCheckoutTemplateResponseNonNullableFields as CreateCheckoutTemplateResponseNonNullableFields, type CreatedBy$2 as CreatedBy, type context$d_CreatedByIdOneOf as CreatedByIdOneOf, type CursorPaging$8 as CursorPaging, type CursorPagingMetadata$8 as CursorPagingMetadata, type CursorQuery$5 as CursorQuery, type CursorQueryPagingMethodOneOf$5 as CursorQueryPagingMethodOneOf, type Cursors$8 as Cursors, type context$d_CustomContentReference as CustomContentReference, type CustomField$3 as CustomField, type CustomLineItem$1 as CustomLineItem, type context$d_CustomSettings as CustomSettings, type context$d_DeleteCheckoutTemplateRequest as DeleteCheckoutTemplateRequest, type context$d_DeleteCheckoutTemplateResponse as DeleteCheckoutTemplateResponse, type DeliveryLogistics$3 as DeliveryLogistics, type DeliveryTimeSlot$3 as DeliveryTimeSlot, type context$d_Description 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 DiscountRule$3 as DiscountRule, type DiscountRuleName$3 as DiscountRuleName, DiscountType$3 as DiscountType, type DomainEvent$b as DomainEvent, type DomainEventBodyOneOf$b as DomainEventBodyOneOf, type EntityCreatedEvent$b as EntityCreatedEvent, type EntityDeletedEvent$b as EntityDeletedEvent, type EntityUpdatedEvent$b as EntityUpdatedEvent, type EventMetadata$9 as EventMetadata, type ExtendedFields$6 as ExtendedFields, type context$d_ExternalReference as ExternalReference, FallbackReason$1 as FallbackReason, type FieldViolation$2 as FieldViolation, FileType$1 as FileType, type FullAddressContactDetails$2 as FullAddressContactDetails, type context$d_GetCheckoutTemplateRequest as GetCheckoutTemplateRequest, type context$d_GetCheckoutTemplateResponse as GetCheckoutTemplateResponse, type context$d_GetCheckoutTemplateResponseNonNullableFields as GetCheckoutTemplateResponseNonNullableFields, type GiftCard$2 as GiftCard, type Group$1 as Group, type context$d_HeadersEntry as HeadersEntry, type IdentificationData$b as IdentificationData, type IdentificationDataIdOneOf$b as IdentificationDataIdOneOf, type InvalidMembership$1 as InvalidMembership, type context$d_ItemAvailabilityInfo as ItemAvailabilityInfo, context$d_ItemAvailabilityStatus 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$3 as LineItem, type LineItemDiscount$3 as LineItemDiscount, ManualCalculationReason$1 as ManualCalculationReason, type Membership$1 as Membership, type MembershipName$3 as MembershipName, type MembershipOptions$1 as MembershipOptions, type MembershipPaymentCredits$1 as MembershipPaymentCredits, type MerchantDiscount$3 as MerchantDiscount, type MessageEnvelope$b as MessageEnvelope, type MultiCurrencyPrice$1 as MultiCurrencyPrice, context$d_NameInLineItem as NameInLineItem, context$d_NameInOther as NameInOther, type context$d_Other as Other, type OtherCharge$1 as OtherCharge, PaymentOptionType$3 as PaymentOptionType, type PhysicalProperties$3 as PhysicalProperties, type PickupDetails$4 as PickupDetails, PickupMethod$3 as PickupMethod, type PlainTextValue$2 as PlainTextValue, type PriceDescription$2 as PriceDescription, type PriceSummary$3 as PriceSummary, type ProductName$2 as ProductName, type context$d_QueryCheckoutTemplatesRequest as QueryCheckoutTemplatesRequest, type context$d_QueryCheckoutTemplatesResponse as QueryCheckoutTemplatesResponse, type context$d_QueryCheckoutTemplatesResponseNonNullableFields as QueryCheckoutTemplatesResponseNonNullableFields, RateType$1 as RateType, type context$d_RawHttpResponse as RawHttpResponse, type context$d_RawHttpResponseNonNullableFields as RawHttpResponseNonNullableFields, type RestoreInfo$b as RestoreInfo, 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, context$d_Severity as Severity, type ShippingInfo$1 as ShippingInfo, type ShippingOption$3 as ShippingOption, type ShippingPrice$3 as ShippingPrice, type ShippingRegion$3 as ShippingRegion, SortOrder$8 as SortOrder, type Sorting$8 as Sorting, Status$1 as Status, type StreetAddress$5 as StreetAddress, SubscriptionFrequency$4 as SubscriptionFrequency, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$4 as SubscriptionSettings, type SystemError$2 as SystemError, type context$d_Target as Target, type context$d_TargetLineItem as TargetLineItem, type context$d_TargetTargetTypeOneOf as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type TaxCalculationDetails$1 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$1 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$1 as TaxRateBreakdown, type TaxSummary$3 as TaxSummary, type context$d_Title as Title, type context$d_UpdateCheckoutTemplate as UpdateCheckoutTemplate, type context$d_UpdateCheckoutTemplateRequest as UpdateCheckoutTemplateRequest, type context$d_UpdateCheckoutTemplateResponse as UpdateCheckoutTemplateResponse, type context$d_UpdateCheckoutTemplateResponseNonNullableFields as UpdateCheckoutTemplateResponseNonNullableFields, type context$d_V1LineItem as V1LineItem, type ValidationError$2 as ValidationError, type VatId$3 as VatId, VatType$3 as VatType, type context$d_Violation as Violation, type context$d_WebClientCustomization as WebClientCustomization, WebhookIdentityType$b as WebhookIdentityType, WeightUnit$4 as WeightUnit, context$d_createAndRedirectToCheckout as createAndRedirectToCheckout, context$d_createCheckoutFromTemplate as createCheckoutFromTemplate, context$d_createCheckoutTemplate as createCheckoutTemplate, context$d_deleteCheckoutTemplate as deleteCheckoutTemplate, context$d_getCheckoutTemplate as getCheckoutTemplate, context$d_onCheckoutTemplateCreated as onCheckoutTemplateCreated, context$d_onCheckoutTemplateDeleted as onCheckoutTemplateDeleted, context$d_onCheckoutTemplateUpdated as onCheckoutTemplateUpdated, context$d_onCheckoutTemplateUsed as onCheckoutTemplateUsed, context$d_queryCheckoutTemplates as queryCheckoutTemplates, context$d_updateCheckoutTemplate as updateCheckoutTemplate };
|
|
13624
13672
|
}
|
|
13625
13673
|
|
|
13626
13674
|
/**
|
|
@@ -15455,7 +15503,7 @@ interface ShippingDetails extends ShippingDetailsChangeTypeOneOf {
|
|
|
15455
15503
|
/** Whether shipping info was removed as part of the draft. */
|
|
15456
15504
|
removed?: boolean;
|
|
15457
15505
|
/** Selected Shipping details. */
|
|
15458
|
-
shippingInfo?:
|
|
15506
|
+
shippingInfo?: V1ShippingInformation$1;
|
|
15459
15507
|
}
|
|
15460
15508
|
/** @oneof */
|
|
15461
15509
|
interface ShippingDetailsChangeTypeOneOf {
|
|
@@ -15466,7 +15514,7 @@ interface ShippingDetailsChangeTypeOneOf {
|
|
|
15466
15514
|
/** Whether shipping info was removed as part of the draft. */
|
|
15467
15515
|
removed?: boolean;
|
|
15468
15516
|
}
|
|
15469
|
-
interface
|
|
15517
|
+
interface V1ShippingInformation$1 {
|
|
15470
15518
|
/** App Def Id of external provider which was a source of shipping info */
|
|
15471
15519
|
carrierId?: string | null;
|
|
15472
15520
|
/** Unique code (or ID) of selected shipping option. For example, `"usps_std_overnight"``. */
|
|
@@ -15637,7 +15685,7 @@ interface ShippingRegion$2 {
|
|
|
15637
15685
|
}
|
|
15638
15686
|
interface ShippingChangedDetails {
|
|
15639
15687
|
/** Shipping info before the change. */
|
|
15640
|
-
shippingInfoBeforeChange?:
|
|
15688
|
+
shippingInfoBeforeChange?: V1ShippingInformation$1;
|
|
15641
15689
|
}
|
|
15642
15690
|
/** Buyer Info */
|
|
15643
15691
|
interface BuyerInfo$3 extends BuyerInfoIdOneOf$1 {
|
|
@@ -16074,25 +16122,25 @@ interface ShippingPrice$2 {
|
|
|
16074
16122
|
}
|
|
16075
16123
|
interface CalculationErrors$1 extends CalculationErrorsShippingCalculationErrorOneOf$1 {
|
|
16076
16124
|
/** General shipping calculation error. */
|
|
16077
|
-
generalShippingCalculationError?: Details$
|
|
16125
|
+
generalShippingCalculationError?: Details$1;
|
|
16078
16126
|
/** Carrier errors. */
|
|
16079
16127
|
carrierErrors?: CarrierErrors$1;
|
|
16080
16128
|
/** Tax calculation error. */
|
|
16081
|
-
taxCalculationError?: Details$
|
|
16129
|
+
taxCalculationError?: Details$1;
|
|
16082
16130
|
/** Order validation errors. */
|
|
16083
16131
|
orderValidationErrors?: ApplicationError$5[];
|
|
16084
16132
|
}
|
|
16085
16133
|
/** @oneof */
|
|
16086
16134
|
interface CalculationErrorsShippingCalculationErrorOneOf$1 {
|
|
16087
16135
|
/** General shipping calculation error. */
|
|
16088
|
-
generalShippingCalculationError?: Details$
|
|
16136
|
+
generalShippingCalculationError?: Details$1;
|
|
16089
16137
|
/** Carrier errors. */
|
|
16090
16138
|
carrierErrors?: CarrierErrors$1;
|
|
16091
16139
|
}
|
|
16092
|
-
interface Details$
|
|
16140
|
+
interface Details$1 extends DetailsKindOneOf$1 {
|
|
16093
16141
|
applicationError?: ApplicationError$5;
|
|
16094
|
-
validationError?: ValidationError$
|
|
16095
|
-
systemError?: SystemError$
|
|
16142
|
+
validationError?: ValidationError$1;
|
|
16143
|
+
systemError?: SystemError$1;
|
|
16096
16144
|
/**
|
|
16097
16145
|
* deprecated in API's - to enable migration from rendering arbitrary tracing to rest response
|
|
16098
16146
|
* @deprecated
|
|
@@ -16100,10 +16148,10 @@ interface Details$2 extends DetailsKindOneOf$2 {
|
|
|
16100
16148
|
tracing?: Record<string, string>;
|
|
16101
16149
|
}
|
|
16102
16150
|
/** @oneof */
|
|
16103
|
-
interface DetailsKindOneOf$
|
|
16151
|
+
interface DetailsKindOneOf$1 {
|
|
16104
16152
|
applicationError?: ApplicationError$5;
|
|
16105
|
-
validationError?: ValidationError$
|
|
16106
|
-
systemError?: SystemError$
|
|
16153
|
+
validationError?: ValidationError$1;
|
|
16154
|
+
systemError?: SystemError$1;
|
|
16107
16155
|
}
|
|
16108
16156
|
interface ApplicationError$5 {
|
|
16109
16157
|
/** Error code. */
|
|
@@ -16145,10 +16193,10 @@ interface ApplicationError$5 {
|
|
|
16145
16193
|
* ]
|
|
16146
16194
|
* }
|
|
16147
16195
|
*/
|
|
16148
|
-
interface ValidationError$
|
|
16149
|
-
fieldViolations?: FieldViolation$
|
|
16196
|
+
interface ValidationError$1 {
|
|
16197
|
+
fieldViolations?: FieldViolation$1[];
|
|
16150
16198
|
}
|
|
16151
|
-
declare enum RuleType$
|
|
16199
|
+
declare enum RuleType$1 {
|
|
16152
16200
|
VALIDATION = "VALIDATION",
|
|
16153
16201
|
OTHER = "OTHER",
|
|
16154
16202
|
MAX = "MAX",
|
|
@@ -16168,15 +16216,15 @@ declare enum RuleType$2 {
|
|
|
16168
16216
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
16169
16217
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
16170
16218
|
}
|
|
16171
|
-
interface FieldViolation$
|
|
16219
|
+
interface FieldViolation$1 {
|
|
16172
16220
|
field?: string;
|
|
16173
16221
|
description?: string;
|
|
16174
|
-
violatedRule?: RuleType$
|
|
16222
|
+
violatedRule?: RuleType$1;
|
|
16175
16223
|
/** applicable when violated_rule=OTHER */
|
|
16176
16224
|
ruleName?: string | null;
|
|
16177
16225
|
data?: Record<string, any> | null;
|
|
16178
16226
|
}
|
|
16179
|
-
interface SystemError$
|
|
16227
|
+
interface SystemError$1 {
|
|
16180
16228
|
/** Error code. */
|
|
16181
16229
|
errorCode?: string | null;
|
|
16182
16230
|
}
|
|
@@ -16188,7 +16236,7 @@ interface CarrierError$1 {
|
|
|
16188
16236
|
/** Carrier ID. */
|
|
16189
16237
|
carrierId?: string;
|
|
16190
16238
|
/** Error details. */
|
|
16191
|
-
error?: Details$
|
|
16239
|
+
error?: Details$1;
|
|
16192
16240
|
}
|
|
16193
16241
|
interface AddLineItemsToDraftOrderRequest {
|
|
16194
16242
|
/** The draft order id */
|
|
@@ -16550,7 +16598,7 @@ interface Order$2 {
|
|
|
16550
16598
|
/** Billing address and contact details. */
|
|
16551
16599
|
billingInfo?: AddressWithContact$1;
|
|
16552
16600
|
/** Shipping info and selected shipping option details. */
|
|
16553
|
-
shippingInfo?:
|
|
16601
|
+
shippingInfo?: V1ShippingInformation$1;
|
|
16554
16602
|
/** [Buyer note](https://support.wix.com/en/article/wix-stores-viewing-buyer-notes) left by the customer. */
|
|
16555
16603
|
buyerNote?: string | null;
|
|
16556
16604
|
/**
|
|
@@ -16740,6 +16788,7 @@ interface OrderChange$1 extends OrderChangeValueOneOf$1 {
|
|
|
16740
16788
|
additionalFeeAdded?: ManagedAdditionalFee$1;
|
|
16741
16789
|
additionalFeeRemoved?: ManagedAdditionalFee$1;
|
|
16742
16790
|
totalPriceChanged?: TotalPriceChange$1;
|
|
16791
|
+
shippingInformationChanged?: ShippingInformationChange$1;
|
|
16743
16792
|
}
|
|
16744
16793
|
/** @oneof */
|
|
16745
16794
|
interface OrderChangeValueOneOf$1 {
|
|
@@ -16751,6 +16800,7 @@ interface OrderChangeValueOneOf$1 {
|
|
|
16751
16800
|
additionalFeeAdded?: ManagedAdditionalFee$1;
|
|
16752
16801
|
additionalFeeRemoved?: ManagedAdditionalFee$1;
|
|
16753
16802
|
totalPriceChanged?: TotalPriceChange$1;
|
|
16803
|
+
shippingInformationChanged?: ShippingInformationChange$1;
|
|
16754
16804
|
}
|
|
16755
16805
|
interface LineItemChanges$1 {
|
|
16756
16806
|
/** Line item ID. */
|
|
@@ -16830,6 +16880,18 @@ interface TotalPriceChange$1 {
|
|
|
16830
16880
|
/** Order’s total price after discounts and tax. After update */
|
|
16831
16881
|
newTotal?: Price$3;
|
|
16832
16882
|
}
|
|
16883
|
+
interface ShippingInformationChange$1 {
|
|
16884
|
+
/** Order’s Shipping Information. Before update */
|
|
16885
|
+
originalShippingInfo?: ShippingInformation$2;
|
|
16886
|
+
/** Order’s Shipping Information. After update */
|
|
16887
|
+
newShippingInfo?: ShippingInformation$2;
|
|
16888
|
+
}
|
|
16889
|
+
interface ShippingInformation$2 {
|
|
16890
|
+
/** Order’s shipping price. */
|
|
16891
|
+
total?: Price$3;
|
|
16892
|
+
/** Order’s shipping title. */
|
|
16893
|
+
shippingTitle?: string;
|
|
16894
|
+
}
|
|
16833
16895
|
/** Payment method is saved for order */
|
|
16834
16896
|
interface SavedPaymentMethod$1 {
|
|
16835
16897
|
/** Payment method name */
|
|
@@ -17036,26 +17098,32 @@ interface QueryDraftOrdersRequest {
|
|
|
17036
17098
|
query?: CursorQuery$3;
|
|
17037
17099
|
}
|
|
17038
17100
|
interface CursorQuery$3 extends CursorQueryPagingMethodOneOf$3 {
|
|
17039
|
-
/**
|
|
17101
|
+
/**
|
|
17102
|
+
* Cursor paging options.
|
|
17103
|
+
*
|
|
17104
|
+
* Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
|
|
17105
|
+
*/
|
|
17040
17106
|
cursorPaging?: CursorPaging$6;
|
|
17041
17107
|
/**
|
|
17042
|
-
* Filter object
|
|
17043
|
-
*
|
|
17044
|
-
*
|
|
17045
|
-
* "fieldName2":{"$operator":"value2"}
|
|
17046
|
-
* }`
|
|
17047
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
17108
|
+
* Filter object.
|
|
17109
|
+
*
|
|
17110
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
17048
17111
|
*/
|
|
17049
17112
|
filter?: Record<string, any> | null;
|
|
17050
17113
|
/**
|
|
17051
|
-
* Sort object
|
|
17052
|
-
*
|
|
17114
|
+
* Sort object.
|
|
17115
|
+
*
|
|
17116
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
17053
17117
|
*/
|
|
17054
17118
|
sort?: Sorting$6[];
|
|
17055
17119
|
}
|
|
17056
17120
|
/** @oneof */
|
|
17057
17121
|
interface CursorQueryPagingMethodOneOf$3 {
|
|
17058
|
-
/**
|
|
17122
|
+
/**
|
|
17123
|
+
* Cursor paging options.
|
|
17124
|
+
*
|
|
17125
|
+
* Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
|
|
17126
|
+
*/
|
|
17059
17127
|
cursorPaging?: CursorPaging$6;
|
|
17060
17128
|
}
|
|
17061
17129
|
interface Sorting$6 {
|
|
@@ -17368,19 +17436,19 @@ interface V1ShippingPriceNonNullableFields {
|
|
|
17368
17436
|
taxDetails?: ItemTaxFullDetailsNonNullableFields$2;
|
|
17369
17437
|
discount?: PriceNonNullableFields$3;
|
|
17370
17438
|
}
|
|
17371
|
-
interface
|
|
17439
|
+
interface V1ShippingInformationNonNullableFields$1 {
|
|
17372
17440
|
title: string;
|
|
17373
17441
|
logistics?: V1DeliveryLogisticsNonNullableFields;
|
|
17374
17442
|
cost?: V1ShippingPriceNonNullableFields;
|
|
17375
17443
|
}
|
|
17376
17444
|
interface ShippingChangedDetailsNonNullableFields {
|
|
17377
|
-
shippingInfoBeforeChange?:
|
|
17445
|
+
shippingInfoBeforeChange?: V1ShippingInformationNonNullableFields$1;
|
|
17378
17446
|
}
|
|
17379
17447
|
interface ShippingDetailsNonNullableFields {
|
|
17380
17448
|
added: boolean;
|
|
17381
17449
|
changedDetails?: ShippingChangedDetailsNonNullableFields;
|
|
17382
17450
|
removed: boolean;
|
|
17383
|
-
shippingInfo?:
|
|
17451
|
+
shippingInfo?: V1ShippingInformationNonNullableFields$1;
|
|
17384
17452
|
}
|
|
17385
17453
|
interface BuyerInfoNonNullableFields$1 {
|
|
17386
17454
|
visitorId: string;
|
|
@@ -17555,7 +17623,7 @@ interface ApplicationErrorNonNullableFields$5 {
|
|
|
17555
17623
|
interface FieldViolationNonNullableFields$1 {
|
|
17556
17624
|
field: string;
|
|
17557
17625
|
description: string;
|
|
17558
|
-
violatedRule: RuleType$
|
|
17626
|
+
violatedRule: RuleType$1;
|
|
17559
17627
|
}
|
|
17560
17628
|
interface ValidationErrorNonNullableFields$1 {
|
|
17561
17629
|
fieldViolations: FieldViolationNonNullableFields$1[];
|
|
@@ -17685,6 +17753,14 @@ interface TotalPriceChangeNonNullableFields$1 {
|
|
|
17685
17753
|
originalTotal?: PriceNonNullableFields$3;
|
|
17686
17754
|
newTotal?: PriceNonNullableFields$3;
|
|
17687
17755
|
}
|
|
17756
|
+
interface ShippingInformationNonNullableFields$2 {
|
|
17757
|
+
total?: PriceNonNullableFields$3;
|
|
17758
|
+
shippingTitle: string;
|
|
17759
|
+
}
|
|
17760
|
+
interface ShippingInformationChangeNonNullableFields$1 {
|
|
17761
|
+
originalShippingInfo?: ShippingInformationNonNullableFields$2;
|
|
17762
|
+
newShippingInfo?: ShippingInformationNonNullableFields$2;
|
|
17763
|
+
}
|
|
17688
17764
|
interface OrderChangeNonNullableFields$1 {
|
|
17689
17765
|
lineItemChanged?: LineItemChangesNonNullableFields$1;
|
|
17690
17766
|
lineItemAdded?: ManagedLineItemNonNullableFields$1;
|
|
@@ -17694,6 +17770,7 @@ interface OrderChangeNonNullableFields$1 {
|
|
|
17694
17770
|
additionalFeeAdded?: ManagedAdditionalFeeNonNullableFields$1;
|
|
17695
17771
|
additionalFeeRemoved?: ManagedAdditionalFeeNonNullableFields$1;
|
|
17696
17772
|
totalPriceChanged?: TotalPriceChangeNonNullableFields$1;
|
|
17773
|
+
shippingInformationChanged?: ShippingInformationChangeNonNullableFields$1;
|
|
17697
17774
|
}
|
|
17698
17775
|
interface DraftOrderChangesAppliedNonNullableFields$1 {
|
|
17699
17776
|
draftOrderId: string;
|
|
@@ -17762,7 +17839,7 @@ interface OrderNonNullableFields$1 {
|
|
|
17762
17839
|
taxIncludedInPrices: boolean;
|
|
17763
17840
|
priceSummary?: PriceSummaryNonNullableFields$2;
|
|
17764
17841
|
billingInfo?: AddressWithContactNonNullableFields$1;
|
|
17765
|
-
shippingInfo?:
|
|
17842
|
+
shippingInfo?: V1ShippingInformationNonNullableFields$1;
|
|
17766
17843
|
status: OrderStatus$1;
|
|
17767
17844
|
taxSummary?: TaxSummaryNonNullableFields$2;
|
|
17768
17845
|
taxInfo?: OrderTaxInfoNonNullableFields$1;
|
|
@@ -18025,7 +18102,7 @@ declare const context$b_setAdditionalFees: typeof setAdditionalFees;
|
|
|
18025
18102
|
declare const context$b_setDiscounts: typeof setDiscounts;
|
|
18026
18103
|
declare const context$b_updateLineItems: typeof updateLineItems;
|
|
18027
18104
|
declare namespace context$b {
|
|
18028
|
-
export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type context$b_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type context$b_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type context$b_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type context$b_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type context$b_AdditionalFeeDetails as AdditionalFeeDetails, type context$b_AdditionalFeeOption as AdditionalFeeOption, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$5 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, context$b_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type context$b_BillingChangedDetails as BillingChangedDetails, type context$b_BillingDetails as BillingDetails, type context$b_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type context$b_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type context$b_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type context$b_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$2 as CatalogReference, type context$b_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type context$b_CommitDraftOrderOptions as CommitDraftOrderOptions, type context$b_CommitDraftOrderRequest as CommitDraftOrderRequest, type context$b_CommitDraftOrderResponse as CommitDraftOrderResponse, type context$b_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type context$b_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type context$b_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type context$b_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type context$b_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type context$b_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type context$b_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type context$b_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type context$b_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type context$b_CreateDraftOrderRequest as CreateDraftOrderRequest, type context$b_CreateDraftOrderResponse as CreateDraftOrderResponse, type context$b_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type context$b_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type context$b_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$3 as CursorQuery, type CursorQueryPagingMethodOneOf$3 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type context$b_CustomLineItem as CustomLineItem, type context$b_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type context$b_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type context$b_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type context$b_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type context$b_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type context$b_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type context$b_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type context$b_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, 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$2 as Details, type DetailsKindOneOf$2 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type context$b_DiscountDetails as DiscountDetails, type context$b_DiscountOption as DiscountOption, type context$b_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type context$b_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type context$b_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type context$b_DraftOrdersQueryResult as DraftOrdersQueryResult, context$b_EditingStatus as EditingStatus, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$2 as FieldViolation, context$b_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$b_GetDraftOrderRequest as GetDraftOrderRequest, type context$b_GetDraftOrderResponse as GetDraftOrderResponse, type context$b_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type context$b_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type context$b_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type context$b_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type context$b_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type context$b_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type context$b_ItemDetails as ItemDetails, type context$b_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type context$b_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, context$b_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type context$b_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, PaymentOptionType$2 as PaymentOptionType, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, context$b_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$2 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type context$b_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type context$b_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type context$b_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type context$b_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type context$b_RecipientInfoDetails as RecipientInfoDetails, type context$b_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RestoreInfo$9 as RestoreInfo, RuleType$2 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type context$b_SecuredMedia as SecuredMedia, type context$b_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type context$b_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type context$b_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type context$b_SetBillingInfoRequest as SetBillingInfoRequest, type context$b_SetBillingInfoResponse as SetBillingInfoResponse, type context$b_SetBuyerInfoRequest as SetBuyerInfoRequest, type context$b_SetBuyerInfoResponse as SetBuyerInfoResponse, type context$b_SetDiscountsRequest as SetDiscountsRequest, type context$b_SetDiscountsResponse as SetDiscountsResponse, type context$b_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type context$b_SetRecipientInfoRequest as SetRecipientInfoRequest, type context$b_SetRecipientInfoResponse as SetRecipientInfoResponse, type context$b_SetShippingInfoRequest as SetShippingInfoRequest, type context$b_SetShippingInfoResponse as SetShippingInfoResponse, type context$b_ShippingChangedDetails as ShippingChangedDetails, type context$b_ShippingDetails as ShippingDetails, type context$b_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$2 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type context$b_UpdateLineItemsOptions as UpdateLineItemsOptions, type context$b_UpdateLineItemsRequest as UpdateLineItemsRequest, type context$b_UpdateLineItemsResponse as UpdateLineItemsResponse, type context$b_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type context$b_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type context$b_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type context$b_V1BalanceSummary as V1BalanceSummary, type context$b_V1CreatedBy as V1CreatedBy, type context$b_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type context$b_V1DeliveryLogistics as V1DeliveryLogistics, type context$b_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type context$b_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type context$b_V1PickupDetails as V1PickupDetails, type context$b_V1ShippingPrice as V1ShippingPrice, type ValidationError$2 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$3 as WeightUnit, context$b_addLineItemsToDraftOrder as addLineItemsToDraftOrder, context$b_commitDraftOrder as commitDraftOrder, context$b_createCustomAdditionalFees as createCustomAdditionalFees, context$b_createCustomDiscounts as createCustomDiscounts, context$b_createDraftOrder as createDraftOrder, context$b_deleteCustomAdditionalFees as deleteCustomAdditionalFees, context$b_deleteCustomDiscounts as deleteCustomDiscounts, context$b_deleteDraftOrder as deleteDraftOrder, context$b_getDraftOrder as getDraftOrder, context$b_getOrderDraftabilityStatus as getOrderDraftabilityStatus, context$b_queryDraftOrders as queryDraftOrders, context$b_setAdditionalFees as setAdditionalFees, context$b_setDiscounts as setDiscounts, context$b_updateLineItems as updateLineItems };
|
|
18105
|
+
export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type context$b_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type context$b_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type context$b_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type context$b_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type context$b_AdditionalFeeDetails as AdditionalFeeDetails, type context$b_AdditionalFeeOption as AdditionalFeeOption, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$5 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, context$b_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type context$b_BillingChangedDetails as BillingChangedDetails, type context$b_BillingDetails as BillingDetails, type context$b_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type context$b_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type context$b_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type context$b_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$2 as CatalogReference, type context$b_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type context$b_CommitDraftOrderOptions as CommitDraftOrderOptions, type context$b_CommitDraftOrderRequest as CommitDraftOrderRequest, type context$b_CommitDraftOrderResponse as CommitDraftOrderResponse, type context$b_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type context$b_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type context$b_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type context$b_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type context$b_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type context$b_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type context$b_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type context$b_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type context$b_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type context$b_CreateDraftOrderRequest as CreateDraftOrderRequest, type context$b_CreateDraftOrderResponse as CreateDraftOrderResponse, type context$b_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type context$b_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type context$b_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$3 as CursorQuery, type CursorQueryPagingMethodOneOf$3 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type context$b_CustomLineItem as CustomLineItem, type context$b_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type context$b_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type context$b_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type context$b_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type context$b_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type context$b_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type context$b_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type context$b_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, 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 DigitalFile$2 as DigitalFile, type context$b_DiscountDetails as DiscountDetails, type context$b_DiscountOption as DiscountOption, type context$b_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type context$b_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type context$b_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type context$b_DraftOrdersQueryResult as DraftOrdersQueryResult, context$b_EditingStatus as EditingStatus, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$1 as FieldViolation, context$b_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$b_GetDraftOrderRequest as GetDraftOrderRequest, type context$b_GetDraftOrderResponse as GetDraftOrderResponse, type context$b_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type context$b_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type context$b_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type context$b_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type context$b_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type context$b_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type context$b_ItemDetails as ItemDetails, type context$b_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type context$b_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, context$b_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type context$b_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, PaymentOptionType$2 as PaymentOptionType, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, context$b_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$2 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type context$b_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type context$b_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type context$b_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type context$b_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type context$b_RecipientInfoDetails as RecipientInfoDetails, type context$b_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RestoreInfo$9 as RestoreInfo, RuleType$1 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type context$b_SecuredMedia as SecuredMedia, type context$b_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type context$b_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type context$b_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type context$b_SetBillingInfoRequest as SetBillingInfoRequest, type context$b_SetBillingInfoResponse as SetBillingInfoResponse, type context$b_SetBuyerInfoRequest as SetBuyerInfoRequest, type context$b_SetBuyerInfoResponse as SetBuyerInfoResponse, type context$b_SetDiscountsRequest as SetDiscountsRequest, type context$b_SetDiscountsResponse as SetDiscountsResponse, type context$b_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type context$b_SetRecipientInfoRequest as SetRecipientInfoRequest, type context$b_SetRecipientInfoResponse as SetRecipientInfoResponse, type context$b_SetShippingInfoRequest as SetShippingInfoRequest, type context$b_SetShippingInfoResponse as SetShippingInfoResponse, type context$b_ShippingChangedDetails as ShippingChangedDetails, type context$b_ShippingDetails as ShippingDetails, type context$b_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$1 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type context$b_UpdateLineItemsOptions as UpdateLineItemsOptions, type context$b_UpdateLineItemsRequest as UpdateLineItemsRequest, type context$b_UpdateLineItemsResponse as UpdateLineItemsResponse, type context$b_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type context$b_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type context$b_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type context$b_V1BalanceSummary as V1BalanceSummary, type context$b_V1CreatedBy as V1CreatedBy, type context$b_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type context$b_V1DeliveryLogistics as V1DeliveryLogistics, type context$b_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type context$b_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type context$b_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type context$b_V1ShippingPrice as V1ShippingPrice, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$3 as WeightUnit, context$b_addLineItemsToDraftOrder as addLineItemsToDraftOrder, context$b_commitDraftOrder as commitDraftOrder, context$b_createCustomAdditionalFees as createCustomAdditionalFees, context$b_createCustomDiscounts as createCustomDiscounts, context$b_createDraftOrder as createDraftOrder, context$b_deleteCustomAdditionalFees as deleteCustomAdditionalFees, context$b_deleteCustomDiscounts as deleteCustomDiscounts, context$b_deleteDraftOrder as deleteDraftOrder, context$b_getDraftOrder as getDraftOrder, context$b_getOrderDraftabilityStatus as getOrderDraftabilityStatus, context$b_queryDraftOrders as queryDraftOrders, context$b_setAdditionalFees as setAdditionalFees, context$b_setDiscounts as setDiscounts, context$b_updateLineItems as updateLineItems };
|
|
18029
18106
|
}
|
|
18030
18107
|
|
|
18031
18108
|
interface OrderWithFulfillments {
|
|
@@ -19263,7 +19340,7 @@ interface Order$1 {
|
|
|
19263
19340
|
/** Billing address and contact details. */
|
|
19264
19341
|
billingInfo?: AddressWithContact;
|
|
19265
19342
|
/** Shipping info and selected shipping option details. */
|
|
19266
|
-
shippingInfo?:
|
|
19343
|
+
shippingInfo?: V1ShippingInformation;
|
|
19267
19344
|
/** [Buyer note](https://support.wix.com/en/article/wix-stores-viewing-buyer-notes) left by the customer. */
|
|
19268
19345
|
buyerNote?: string | null;
|
|
19269
19346
|
/**
|
|
@@ -19826,7 +19903,7 @@ declare enum VatType$1 {
|
|
|
19826
19903
|
/** CNPJ - for corporations */
|
|
19827
19904
|
CNPJ = "CNPJ"
|
|
19828
19905
|
}
|
|
19829
|
-
interface
|
|
19906
|
+
interface V1ShippingInformation {
|
|
19830
19907
|
/** App Def Id of external provider which was a source of shipping info */
|
|
19831
19908
|
carrierId?: string | null;
|
|
19832
19909
|
/** Unique code (or ID) of selected shipping option. For example, `"usps_std_overnight"``. */
|
|
@@ -20146,6 +20223,7 @@ interface OrderChange extends OrderChangeValueOneOf {
|
|
|
20146
20223
|
additionalFeeAdded?: ManagedAdditionalFee;
|
|
20147
20224
|
additionalFeeRemoved?: ManagedAdditionalFee;
|
|
20148
20225
|
totalPriceChanged?: TotalPriceChange;
|
|
20226
|
+
shippingInformationChanged?: ShippingInformationChange;
|
|
20149
20227
|
}
|
|
20150
20228
|
/** @oneof */
|
|
20151
20229
|
interface OrderChangeValueOneOf {
|
|
@@ -20157,6 +20235,7 @@ interface OrderChangeValueOneOf {
|
|
|
20157
20235
|
additionalFeeAdded?: ManagedAdditionalFee;
|
|
20158
20236
|
additionalFeeRemoved?: ManagedAdditionalFee;
|
|
20159
20237
|
totalPriceChanged?: TotalPriceChange;
|
|
20238
|
+
shippingInformationChanged?: ShippingInformationChange;
|
|
20160
20239
|
}
|
|
20161
20240
|
interface LineItemChanges {
|
|
20162
20241
|
/** Line item ID. */
|
|
@@ -20236,6 +20315,18 @@ interface TotalPriceChange {
|
|
|
20236
20315
|
/** Order’s total price after discounts and tax. After update */
|
|
20237
20316
|
newTotal?: Price$2;
|
|
20238
20317
|
}
|
|
20318
|
+
interface ShippingInformationChange {
|
|
20319
|
+
/** Order’s Shipping Information. Before update */
|
|
20320
|
+
originalShippingInfo?: ShippingInformation$1;
|
|
20321
|
+
/** Order’s Shipping Information. After update */
|
|
20322
|
+
newShippingInfo?: ShippingInformation$1;
|
|
20323
|
+
}
|
|
20324
|
+
interface ShippingInformation$1 {
|
|
20325
|
+
/** Order’s shipping price. */
|
|
20326
|
+
total?: Price$2;
|
|
20327
|
+
/** Order’s shipping title. */
|
|
20328
|
+
shippingTitle?: string;
|
|
20329
|
+
}
|
|
20239
20330
|
/** Payment method is saved for order */
|
|
20240
20331
|
interface SavedPaymentMethod {
|
|
20241
20332
|
/** Payment method name */
|
|
@@ -20675,7 +20766,7 @@ interface Refund$1 {
|
|
|
20675
20766
|
/** List of transactions. */
|
|
20676
20767
|
transactions?: RefundTransaction$1[];
|
|
20677
20768
|
/** Refund business details. */
|
|
20678
|
-
details?:
|
|
20769
|
+
details?: RefundDetails$1;
|
|
20679
20770
|
/** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
|
|
20680
20771
|
_createdDate?: Date;
|
|
20681
20772
|
}
|
|
@@ -20702,7 +20793,7 @@ declare enum RefundStatus$1 {
|
|
|
20702
20793
|
FAILED = "FAILED"
|
|
20703
20794
|
}
|
|
20704
20795
|
/** Business model of a refund request */
|
|
20705
|
-
interface
|
|
20796
|
+
interface RefundDetails$1 {
|
|
20706
20797
|
/** Order line item IDs and quantities that were refunded. */
|
|
20707
20798
|
items?: RefundItem$1[];
|
|
20708
20799
|
/** Whether the shipping fee was also refunded. */
|
|
@@ -20716,11 +20807,11 @@ interface RefundItem$1 {
|
|
|
20716
20807
|
/** Line item quantity refunded. */
|
|
20717
20808
|
quantity?: number;
|
|
20718
20809
|
}
|
|
20719
|
-
interface
|
|
20810
|
+
interface LineItemRefund$1 {
|
|
20720
20811
|
}
|
|
20721
|
-
interface
|
|
20812
|
+
interface AdditionalFeeRefund$1 {
|
|
20722
20813
|
}
|
|
20723
|
-
interface
|
|
20814
|
+
interface ShippingRefund$1 {
|
|
20724
20815
|
}
|
|
20725
20816
|
interface AggregatedRefundSummary$1 {
|
|
20726
20817
|
}
|
|
@@ -21411,7 +21502,7 @@ interface PreviewRefundEmailRequest {
|
|
|
21411
21502
|
/** Refund amount */
|
|
21412
21503
|
refundAmount?: Price$2;
|
|
21413
21504
|
/** Refund business details */
|
|
21414
|
-
details?:
|
|
21505
|
+
details?: RefundDetails$1;
|
|
21415
21506
|
/** Personal note added to the email (optional) */
|
|
21416
21507
|
customMessage?: string | null;
|
|
21417
21508
|
}
|
|
@@ -21591,9 +21682,9 @@ interface GetRefundabilityStatusResponse$1 {
|
|
|
21591
21682
|
}
|
|
21592
21683
|
interface Refundability$1 extends RefundabilityAdditionalRefundabilityInfoOneOf$1 {
|
|
21593
21684
|
/** Reason why payment is not refundable. */
|
|
21594
|
-
nonRefundableReason?:
|
|
21685
|
+
nonRefundableReason?: NonRefundableReason$1;
|
|
21595
21686
|
/** Reason why payment is only refundable manually. */
|
|
21596
|
-
manuallyRefundableReason?:
|
|
21687
|
+
manuallyRefundableReason?: ManuallyRefundableReason$1;
|
|
21597
21688
|
/** Payment ID. */
|
|
21598
21689
|
paymentId?: string;
|
|
21599
21690
|
/** Payment refundability status. */
|
|
@@ -21604,16 +21695,16 @@ interface Refundability$1 extends RefundabilityAdditionalRefundabilityInfoOneOf$
|
|
|
21604
21695
|
/** @oneof */
|
|
21605
21696
|
interface RefundabilityAdditionalRefundabilityInfoOneOf$1 {
|
|
21606
21697
|
/** Reason why payment is not refundable. */
|
|
21607
|
-
nonRefundableReason?:
|
|
21698
|
+
nonRefundableReason?: NonRefundableReason$1;
|
|
21608
21699
|
/** Reason why payment is only refundable manually. */
|
|
21609
|
-
manuallyRefundableReason?:
|
|
21700
|
+
manuallyRefundableReason?: ManuallyRefundableReason$1;
|
|
21610
21701
|
}
|
|
21611
21702
|
declare enum RefundableStatus$1 {
|
|
21612
21703
|
NOT_REFUNDABLE = "NOT_REFUNDABLE",
|
|
21613
21704
|
MANUAL = "MANUAL",
|
|
21614
21705
|
REFUNDABLE = "REFUNDABLE"
|
|
21615
21706
|
}
|
|
21616
|
-
declare enum
|
|
21707
|
+
declare enum NonRefundableReason$1 {
|
|
21617
21708
|
NONE = "NONE",
|
|
21618
21709
|
ALREADY_REFUNDED = "ALREADY_REFUNDED",
|
|
21619
21710
|
PROVIDER_IS_DOWN = "PROVIDER_IS_DOWN",
|
|
@@ -21626,7 +21717,7 @@ declare enum RefundabilityNonRefundableReason {
|
|
|
21626
21717
|
FORBIDDEN = "FORBIDDEN",
|
|
21627
21718
|
TRANSACTION_NOT_FOUND = "TRANSACTION_NOT_FOUND"
|
|
21628
21719
|
}
|
|
21629
|
-
declare enum
|
|
21720
|
+
declare enum ManuallyRefundableReason$1 {
|
|
21630
21721
|
EXPIRED = "EXPIRED",
|
|
21631
21722
|
NOT_SUPPORTED = "NOT_SUPPORTED",
|
|
21632
21723
|
OFFLINE = "OFFLINE"
|
|
@@ -21695,13 +21786,13 @@ interface TriggerRefundRequest$1 {
|
|
|
21695
21786
|
/** The order this refund related to */
|
|
21696
21787
|
ecomOrderId?: string;
|
|
21697
21788
|
/** Refund operations information */
|
|
21698
|
-
payments?:
|
|
21789
|
+
payments?: PaymentRefund$1[];
|
|
21699
21790
|
/** Business model of a refund */
|
|
21700
|
-
details?:
|
|
21791
|
+
details?: RefundDetails$1;
|
|
21701
21792
|
/** Side effect details related to refund */
|
|
21702
|
-
sideEffects?:
|
|
21793
|
+
sideEffects?: RefundSideEffects$1;
|
|
21703
21794
|
}
|
|
21704
|
-
interface
|
|
21795
|
+
interface PaymentRefund$1 {
|
|
21705
21796
|
/** Specific payment within the order to refund */
|
|
21706
21797
|
paymentId?: string;
|
|
21707
21798
|
/** Refund amount. Not relevant for membership and gift card refunds. */
|
|
@@ -21713,7 +21804,7 @@ interface V1PaymentRefund {
|
|
|
21713
21804
|
*/
|
|
21714
21805
|
externalRefund?: boolean;
|
|
21715
21806
|
}
|
|
21716
|
-
interface
|
|
21807
|
+
interface RefundSideEffects$1 {
|
|
21717
21808
|
/** Inventory restock details as part of this refund. */
|
|
21718
21809
|
restockInfo?: RestockInfo$1;
|
|
21719
21810
|
/** Whether to send a refund confirmation email to the customer. */
|
|
@@ -21725,14 +21816,14 @@ interface RestockInfo$1 {
|
|
|
21725
21816
|
/** Restock type. */
|
|
21726
21817
|
type?: RestockType$1;
|
|
21727
21818
|
/** Restocked line items and quantities. Only relevant for `{"type": "SOME_ITEMS"}`. */
|
|
21728
|
-
items?:
|
|
21819
|
+
items?: RestockItem$1[];
|
|
21729
21820
|
}
|
|
21730
21821
|
declare enum RestockType$1 {
|
|
21731
21822
|
NO_ITEMS = "NO_ITEMS",
|
|
21732
21823
|
ALL_ITEMS = "ALL_ITEMS",
|
|
21733
21824
|
SOME_ITEMS = "SOME_ITEMS"
|
|
21734
21825
|
}
|
|
21735
|
-
interface
|
|
21826
|
+
interface RestockItem$1 {
|
|
21736
21827
|
/** ID of the line item being restocked. */
|
|
21737
21828
|
lineItemId?: string;
|
|
21738
21829
|
/** Line item quantity being restocked. */
|
|
@@ -21797,30 +21888,6 @@ interface CalculateRefundItemResponse$1 {
|
|
|
21797
21888
|
/** Refundable amount for requested quantity of items (price of requested quantity of items without tax and discount) */
|
|
21798
21889
|
price?: Price$2;
|
|
21799
21890
|
}
|
|
21800
|
-
interface CalculateRefundV1Request {
|
|
21801
|
-
/** Order ID */
|
|
21802
|
-
ecomOrderId?: string;
|
|
21803
|
-
/** Refunded line items and quantity */
|
|
21804
|
-
refundItems?: CalculateRefundItemRequest$1[];
|
|
21805
|
-
/** Should include shipping in refund calculation */
|
|
21806
|
-
refundShipping?: boolean;
|
|
21807
|
-
}
|
|
21808
|
-
interface CalculateRefundV1Response {
|
|
21809
|
-
/** Total refundable amount */
|
|
21810
|
-
total?: Price$2;
|
|
21811
|
-
/** Tax cost of the order */
|
|
21812
|
-
tax?: Price$2;
|
|
21813
|
-
/** Discount given for this order */
|
|
21814
|
-
discount?: Price$2;
|
|
21815
|
-
/** Total cost of the order (without tax) */
|
|
21816
|
-
subtotal?: Price$2;
|
|
21817
|
-
/** Total shipping cost for order */
|
|
21818
|
-
shipping?: Price$2;
|
|
21819
|
-
/** Previous refund given on that order */
|
|
21820
|
-
previouslyRefundedAmount?: Price$2;
|
|
21821
|
-
/** The refundable items of that order */
|
|
21822
|
-
items?: CalculateRefundItemResponse$1[];
|
|
21823
|
-
}
|
|
21824
21891
|
interface VoidAuthorizedPaymentsRequest {
|
|
21825
21892
|
/** Wix eCommerce order ID */
|
|
21826
21893
|
ecomOrderId?: string;
|
|
@@ -21850,185 +21917,6 @@ interface CaptureAuthorizedPaymentsResponse {
|
|
|
21850
21917
|
/** All order's transactions after the capture was triggered */
|
|
21851
21918
|
orderTransactions?: OrderTransactions$1;
|
|
21852
21919
|
}
|
|
21853
|
-
interface GetRefundOptionsRequest {
|
|
21854
|
-
}
|
|
21855
|
-
interface GetRefundOptionsResponse {
|
|
21856
|
-
}
|
|
21857
|
-
interface PaymentRefundOption extends PaymentRefundOptionStatusOneOf {
|
|
21858
|
-
}
|
|
21859
|
-
/** @oneof */
|
|
21860
|
-
interface PaymentRefundOptionStatusOneOf {
|
|
21861
|
-
}
|
|
21862
|
-
interface PaymentInfo extends PaymentInfoSummaryOneOf, PaymentInfoPaymentMethodDetailsOneOf {
|
|
21863
|
-
}
|
|
21864
|
-
/** @oneof */
|
|
21865
|
-
interface PaymentInfoSummaryOneOf {
|
|
21866
|
-
}
|
|
21867
|
-
/** @oneof */
|
|
21868
|
-
interface PaymentInfoPaymentMethodDetailsOneOf {
|
|
21869
|
-
}
|
|
21870
|
-
interface MonetaryPaymentSummary {
|
|
21871
|
-
}
|
|
21872
|
-
interface MembershipPaymentSummary {
|
|
21873
|
-
}
|
|
21874
|
-
interface ManuallyRefundablePaymentStatus {
|
|
21875
|
-
}
|
|
21876
|
-
declare enum ManuallyRefundableReason$1 {
|
|
21877
|
-
UNKNOWN_REASON = "UNKNOWN_REASON",
|
|
21878
|
-
EXPIRED = "EXPIRED",
|
|
21879
|
-
NOT_SUPPORTED = "NOT_SUPPORTED",
|
|
21880
|
-
OFFLINE = "OFFLINE"
|
|
21881
|
-
}
|
|
21882
|
-
interface NonRefundablePaymentStatus {
|
|
21883
|
-
}
|
|
21884
|
-
declare enum NonRefundableReason$1 {
|
|
21885
|
-
UNKNOWN_REASON = "UNKNOWN_REASON",
|
|
21886
|
-
ALREADY_REFUNDED = "ALREADY_REFUNDED",
|
|
21887
|
-
PROVIDER_IS_DOWN = "PROVIDER_IS_DOWN",
|
|
21888
|
-
NOT_PAID = "NOT_PAID",
|
|
21889
|
-
ZERO_PRICE = "ZERO_PRICE",
|
|
21890
|
-
DISABLED_BY_PROVIDER = "DISABLED_BY_PROVIDER",
|
|
21891
|
-
PENDING_REFUND = "PENDING_REFUND",
|
|
21892
|
-
FORBIDDEN = "FORBIDDEN",
|
|
21893
|
-
TRANSACTION_NOT_FOUND = "TRANSACTION_NOT_FOUND"
|
|
21894
|
-
}
|
|
21895
|
-
interface PaymentsSummary {
|
|
21896
|
-
}
|
|
21897
|
-
interface LineItemRefundOption {
|
|
21898
|
-
}
|
|
21899
|
-
interface ShippingRefundOption {
|
|
21900
|
-
}
|
|
21901
|
-
interface AdditionalFeeRefundOption {
|
|
21902
|
-
}
|
|
21903
|
-
interface CalculateRefundV2Request {
|
|
21904
|
-
}
|
|
21905
|
-
interface RefundDetails$1 {
|
|
21906
|
-
}
|
|
21907
|
-
interface LineItemRefund$1 {
|
|
21908
|
-
}
|
|
21909
|
-
interface AdditionalFeeRefund$1 {
|
|
21910
|
-
}
|
|
21911
|
-
interface ShippingRefund$1 {
|
|
21912
|
-
}
|
|
21913
|
-
interface CalculateRefundV2Response extends CalculateRefundV2ResponseStatusOneOf {
|
|
21914
|
-
}
|
|
21915
|
-
/** @oneof */
|
|
21916
|
-
interface CalculateRefundV2ResponseStatusOneOf {
|
|
21917
|
-
}
|
|
21918
|
-
interface CalculatedRefundSummary {
|
|
21919
|
-
}
|
|
21920
|
-
interface CalculatedRefundDetails {
|
|
21921
|
-
}
|
|
21922
|
-
interface CalculatedLineItemRefund {
|
|
21923
|
-
}
|
|
21924
|
-
interface CalculatedAdditionalFeeRefund {
|
|
21925
|
-
}
|
|
21926
|
-
interface CalculatedShippingRefund {
|
|
21927
|
-
}
|
|
21928
|
-
interface CalculatedRefundNotAvailableStatus {
|
|
21929
|
-
}
|
|
21930
|
-
interface CalculationError extends CalculationErrorItemOneOf {
|
|
21931
|
-
}
|
|
21932
|
-
/** @oneof */
|
|
21933
|
-
interface CalculationErrorItemOneOf {
|
|
21934
|
-
}
|
|
21935
|
-
interface Details$1 extends DetailsKindOneOf$1 {
|
|
21936
|
-
applicationError?: ApplicationError$3;
|
|
21937
|
-
validationError?: ValidationError$1;
|
|
21938
|
-
systemError?: SystemError$1;
|
|
21939
|
-
/**
|
|
21940
|
-
* deprecated in API's - to enable migration from rendering arbitrary tracing to rest response
|
|
21941
|
-
* @deprecated
|
|
21942
|
-
*/
|
|
21943
|
-
tracing?: Record<string, string>;
|
|
21944
|
-
}
|
|
21945
|
-
/** @oneof */
|
|
21946
|
-
interface DetailsKindOneOf$1 {
|
|
21947
|
-
applicationError?: ApplicationError$3;
|
|
21948
|
-
validationError?: ValidationError$1;
|
|
21949
|
-
systemError?: SystemError$1;
|
|
21950
|
-
}
|
|
21951
|
-
/**
|
|
21952
|
-
* example result:
|
|
21953
|
-
* {
|
|
21954
|
-
* "fieldViolations": [
|
|
21955
|
-
* {
|
|
21956
|
-
* "field": "fieldA",
|
|
21957
|
-
* "description": "invalid music note. supported notes: [do,re,mi,fa,sol,la,ti]",
|
|
21958
|
-
* "violatedRule": "OTHER",
|
|
21959
|
-
* "ruleName": "INVALID_NOTE",
|
|
21960
|
-
* "data": {
|
|
21961
|
-
* "value": "FI"
|
|
21962
|
-
* }
|
|
21963
|
-
* },
|
|
21964
|
-
* {
|
|
21965
|
-
* "field": "fieldB",
|
|
21966
|
-
* "description": "field value out of range. supported range: [0-20]",
|
|
21967
|
-
* "violatedRule": "MAX",
|
|
21968
|
-
* "data": {
|
|
21969
|
-
* "threshold": 20
|
|
21970
|
-
* }
|
|
21971
|
-
* },
|
|
21972
|
-
* {
|
|
21973
|
-
* "field": "fieldC",
|
|
21974
|
-
* "description": "invalid phone number. provide a valid phone number of size: [7-12], supported characters: [0-9, +, -, (, )]",
|
|
21975
|
-
* "violatedRule": "FORMAT",
|
|
21976
|
-
* "data": {
|
|
21977
|
-
* "type": "PHONE"
|
|
21978
|
-
* }
|
|
21979
|
-
* }
|
|
21980
|
-
* ]
|
|
21981
|
-
* }
|
|
21982
|
-
*/
|
|
21983
|
-
interface ValidationError$1 {
|
|
21984
|
-
fieldViolations?: FieldViolation$1[];
|
|
21985
|
-
}
|
|
21986
|
-
declare enum RuleType$1 {
|
|
21987
|
-
VALIDATION = "VALIDATION",
|
|
21988
|
-
OTHER = "OTHER",
|
|
21989
|
-
MAX = "MAX",
|
|
21990
|
-
MIN = "MIN",
|
|
21991
|
-
MAX_LENGTH = "MAX_LENGTH",
|
|
21992
|
-
MIN_LENGTH = "MIN_LENGTH",
|
|
21993
|
-
MAX_SIZE = "MAX_SIZE",
|
|
21994
|
-
MIN_SIZE = "MIN_SIZE",
|
|
21995
|
-
FORMAT = "FORMAT",
|
|
21996
|
-
DECIMAL_LTE = "DECIMAL_LTE",
|
|
21997
|
-
DECIMAL_GTE = "DECIMAL_GTE",
|
|
21998
|
-
DECIMAL_LT = "DECIMAL_LT",
|
|
21999
|
-
DECIMAL_GT = "DECIMAL_GT",
|
|
22000
|
-
DECIMAL_MAX_SCALE = "DECIMAL_MAX_SCALE",
|
|
22001
|
-
INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
|
|
22002
|
-
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
22003
|
-
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
22004
|
-
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
|
|
22005
|
-
}
|
|
22006
|
-
interface FieldViolation$1 {
|
|
22007
|
-
field?: string;
|
|
22008
|
-
description?: string;
|
|
22009
|
-
violatedRule?: RuleType$1;
|
|
22010
|
-
/** applicable when violated_rule=OTHER */
|
|
22011
|
-
ruleName?: string | null;
|
|
22012
|
-
data?: Record<string, any> | null;
|
|
22013
|
-
}
|
|
22014
|
-
interface SystemError$1 {
|
|
22015
|
-
/** Error code. */
|
|
22016
|
-
errorCode?: string | null;
|
|
22017
|
-
}
|
|
22018
|
-
interface RefundRequest {
|
|
22019
|
-
}
|
|
22020
|
-
interface PaymentRefund$1 {
|
|
22021
|
-
}
|
|
22022
|
-
interface RefundSideEffects$1 {
|
|
22023
|
-
}
|
|
22024
|
-
interface RestockItem$1 {
|
|
22025
|
-
}
|
|
22026
|
-
interface RestockSideEffects {
|
|
22027
|
-
}
|
|
22028
|
-
interface NotificationSideEffects {
|
|
22029
|
-
}
|
|
22030
|
-
interface RefundResponse {
|
|
22031
|
-
}
|
|
22032
21920
|
interface ChargeSavedPaymentMethodRequest {
|
|
22033
21921
|
/** Ecom Order ID. */
|
|
22034
21922
|
ecomOrderId?: string;
|
|
@@ -22211,7 +22099,7 @@ interface CommitDeltasRequest {
|
|
|
22211
22099
|
}
|
|
22212
22100
|
interface DraftOrderDiffs extends DraftOrderDiffsShippingUpdateInfoOneOf, DraftOrderDiffsBuyerUpdateInfoOneOf, DraftOrderDiffsBillingUpdateInfoOneOf, DraftOrderDiffsRecipientUpdateInfoOneOf {
|
|
22213
22101
|
/** Shipping info and selected shipping option details. */
|
|
22214
|
-
changedShippingInfo?:
|
|
22102
|
+
changedShippingInfo?: V1ShippingInformation;
|
|
22215
22103
|
/** Remove existing shipping info. */
|
|
22216
22104
|
shippingInfoRemoved?: boolean;
|
|
22217
22105
|
/** Added/updated/removed order line items. */
|
|
@@ -22243,7 +22131,7 @@ interface DraftOrderDiffs extends DraftOrderDiffsShippingUpdateInfoOneOf, DraftO
|
|
|
22243
22131
|
/** @oneof */
|
|
22244
22132
|
interface DraftOrderDiffsShippingUpdateInfoOneOf {
|
|
22245
22133
|
/** Shipping info and selected shipping option details. */
|
|
22246
|
-
changedShippingInfo?:
|
|
22134
|
+
changedShippingInfo?: V1ShippingInformation;
|
|
22247
22135
|
/** Remove existing shipping info. */
|
|
22248
22136
|
shippingInfoRemoved?: boolean;
|
|
22249
22137
|
}
|
|
@@ -22427,7 +22315,7 @@ interface OrderDeltasCommitted {
|
|
|
22427
22315
|
}
|
|
22428
22316
|
interface CommittedDiffs extends CommittedDiffsShippingUpdateInfoOneOf {
|
|
22429
22317
|
/** Shipping info and selected shipping option details. */
|
|
22430
|
-
changedShippingInfo?:
|
|
22318
|
+
changedShippingInfo?: V1ShippingInformation;
|
|
22431
22319
|
/** Remove existing shipping info. */
|
|
22432
22320
|
shippingInfoRemoved?: boolean;
|
|
22433
22321
|
/** Added/updated/removed order line items. */
|
|
@@ -22443,7 +22331,7 @@ interface CommittedDiffs extends CommittedDiffsShippingUpdateInfoOneOf {
|
|
|
22443
22331
|
/** @oneof */
|
|
22444
22332
|
interface CommittedDiffsShippingUpdateInfoOneOf {
|
|
22445
22333
|
/** Shipping info and selected shipping option details. */
|
|
22446
|
-
changedShippingInfo?:
|
|
22334
|
+
changedShippingInfo?: V1ShippingInformation;
|
|
22447
22335
|
/** Remove existing shipping info. */
|
|
22448
22336
|
shippingInfoRemoved?: boolean;
|
|
22449
22337
|
}
|
|
@@ -23030,9 +22918,9 @@ interface OrderItemsRestocked {
|
|
|
23030
22918
|
/** The order which items were restocked */
|
|
23031
22919
|
order?: Order$1;
|
|
23032
22920
|
/** Restocked items and quantities */
|
|
23033
|
-
restockItems?:
|
|
22921
|
+
restockItems?: V1RestockItem[];
|
|
23034
22922
|
}
|
|
23035
|
-
interface
|
|
22923
|
+
interface V1RestockItem {
|
|
23036
22924
|
/** ID of the line item being restocked. */
|
|
23037
22925
|
lineItemId?: string;
|
|
23038
22926
|
/** Line item quantity being restocked. */
|
|
@@ -23622,7 +23510,7 @@ interface ShippingPriceNonNullableFields$1 {
|
|
|
23622
23510
|
taxDetails?: ItemTaxFullDetailsNonNullableFields$1;
|
|
23623
23511
|
discount?: PriceNonNullableFields$2;
|
|
23624
23512
|
}
|
|
23625
|
-
interface
|
|
23513
|
+
interface V1ShippingInformationNonNullableFields {
|
|
23626
23514
|
title: string;
|
|
23627
23515
|
logistics?: DeliveryLogisticsNonNullableFields$1;
|
|
23628
23516
|
cost?: ShippingPriceNonNullableFields$1;
|
|
@@ -23741,6 +23629,14 @@ interface TotalPriceChangeNonNullableFields {
|
|
|
23741
23629
|
originalTotal?: PriceNonNullableFields$2;
|
|
23742
23630
|
newTotal?: PriceNonNullableFields$2;
|
|
23743
23631
|
}
|
|
23632
|
+
interface ShippingInformationNonNullableFields$1 {
|
|
23633
|
+
total?: PriceNonNullableFields$2;
|
|
23634
|
+
shippingTitle: string;
|
|
23635
|
+
}
|
|
23636
|
+
interface ShippingInformationChangeNonNullableFields {
|
|
23637
|
+
originalShippingInfo?: ShippingInformationNonNullableFields$1;
|
|
23638
|
+
newShippingInfo?: ShippingInformationNonNullableFields$1;
|
|
23639
|
+
}
|
|
23744
23640
|
interface OrderChangeNonNullableFields {
|
|
23745
23641
|
lineItemChanged?: LineItemChangesNonNullableFields;
|
|
23746
23642
|
lineItemAdded?: ManagedLineItemNonNullableFields;
|
|
@@ -23750,6 +23646,7 @@ interface OrderChangeNonNullableFields {
|
|
|
23750
23646
|
additionalFeeAdded?: ManagedAdditionalFeeNonNullableFields;
|
|
23751
23647
|
additionalFeeRemoved?: ManagedAdditionalFeeNonNullableFields;
|
|
23752
23648
|
totalPriceChanged?: TotalPriceChangeNonNullableFields;
|
|
23649
|
+
shippingInformationChanged?: ShippingInformationChangeNonNullableFields;
|
|
23753
23650
|
}
|
|
23754
23651
|
interface DraftOrderChangesAppliedNonNullableFields {
|
|
23755
23652
|
draftOrderId: string;
|
|
@@ -23830,7 +23727,7 @@ interface OrderNonNullableFields {
|
|
|
23830
23727
|
taxIncludedInPrices: boolean;
|
|
23831
23728
|
priceSummary?: PriceSummaryNonNullableFields$1;
|
|
23832
23729
|
billingInfo?: AddressWithContactNonNullableFields;
|
|
23833
|
-
shippingInfo?:
|
|
23730
|
+
shippingInfo?: V1ShippingInformationNonNullableFields;
|
|
23834
23731
|
status: OrderStatus;
|
|
23835
23732
|
taxSummary?: TaxSummaryNonNullableFields$1;
|
|
23836
23733
|
taxInfo?: OrderTaxInfoNonNullableFields;
|
|
@@ -24018,7 +23915,7 @@ interface UpdateOrder {
|
|
|
24018
23915
|
/** Billing address and contact details. */
|
|
24019
23916
|
billingInfo?: AddressWithContact;
|
|
24020
23917
|
/** Shipping info and selected shipping option details. */
|
|
24021
|
-
shippingInfo?:
|
|
23918
|
+
shippingInfo?: V1ShippingInformation;
|
|
24022
23919
|
/** [Buyer note](https://support.wix.com/en/article/wix-stores-viewing-buyer-notes) left by the customer. */
|
|
24023
23920
|
buyerNote?: string | null;
|
|
24024
23921
|
/**
|
|
@@ -24130,7 +24027,6 @@ type context$8_AddInternalActivityRequest = AddInternalActivityRequest;
|
|
|
24130
24027
|
type context$8_AddInternalActivityResponse = AddInternalActivityResponse;
|
|
24131
24028
|
type context$8_AdditionalFeeDelta = AdditionalFeeDelta;
|
|
24132
24029
|
type context$8_AdditionalFeeDeltaDeltaOneOf = AdditionalFeeDeltaDeltaOneOf;
|
|
24133
|
-
type context$8_AdditionalFeeRefundOption = AdditionalFeeRefundOption;
|
|
24134
24030
|
type context$8_AddressDescription = AddressDescription;
|
|
24135
24031
|
type context$8_AddressWithContact = AddressWithContact;
|
|
24136
24032
|
type context$8_AggregateOrdersRequest = AggregateOrdersRequest;
|
|
@@ -24181,21 +24077,8 @@ type context$8_BulkUpdateOrdersResponse = BulkUpdateOrdersResponse;
|
|
|
24181
24077
|
type context$8_BulkUpdateOrdersResponseNonNullableFields = BulkUpdateOrdersResponseNonNullableFields;
|
|
24182
24078
|
type context$8_BuyerInfoIdOneOf = BuyerInfoIdOneOf;
|
|
24183
24079
|
type context$8_BuyerInfoUpdate = BuyerInfoUpdate;
|
|
24184
|
-
type context$8_CalculateRefundV1Request = CalculateRefundV1Request;
|
|
24185
|
-
type context$8_CalculateRefundV1Response = CalculateRefundV1Response;
|
|
24186
|
-
type context$8_CalculateRefundV2Request = CalculateRefundV2Request;
|
|
24187
|
-
type context$8_CalculateRefundV2Response = CalculateRefundV2Response;
|
|
24188
|
-
type context$8_CalculateRefundV2ResponseStatusOneOf = CalculateRefundV2ResponseStatusOneOf;
|
|
24189
|
-
type context$8_CalculatedAdditionalFeeRefund = CalculatedAdditionalFeeRefund;
|
|
24190
|
-
type context$8_CalculatedLineItemRefund = CalculatedLineItemRefund;
|
|
24191
|
-
type context$8_CalculatedRefundDetails = CalculatedRefundDetails;
|
|
24192
|
-
type context$8_CalculatedRefundNotAvailableStatus = CalculatedRefundNotAvailableStatus;
|
|
24193
|
-
type context$8_CalculatedRefundSummary = CalculatedRefundSummary;
|
|
24194
|
-
type context$8_CalculatedShippingRefund = CalculatedShippingRefund;
|
|
24195
24080
|
type context$8_CalculatedTax = CalculatedTax;
|
|
24196
24081
|
type context$8_CalculatedTaxes = CalculatedTaxes;
|
|
24197
|
-
type context$8_CalculationError = CalculationError;
|
|
24198
|
-
type context$8_CalculationErrorItemOneOf = CalculationErrorItemOneOf;
|
|
24199
24082
|
type context$8_Cancel = Cancel;
|
|
24200
24083
|
type context$8_CancelOrderOptions = CancelOrderOptions;
|
|
24201
24084
|
type context$8_CancelOrderRequest = CancelOrderRequest;
|
|
@@ -24276,8 +24159,6 @@ type context$8_GetOrderResponse = GetOrderResponse;
|
|
|
24276
24159
|
type context$8_GetOrderResponseNonNullableFields = GetOrderResponseNonNullableFields;
|
|
24277
24160
|
type context$8_GetPaymentCollectabilityStatusRequest = GetPaymentCollectabilityStatusRequest;
|
|
24278
24161
|
type context$8_GetPaymentCollectabilityStatusResponse = GetPaymentCollectabilityStatusResponse;
|
|
24279
|
-
type context$8_GetRefundOptionsRequest = GetRefundOptionsRequest;
|
|
24280
|
-
type context$8_GetRefundOptionsResponse = GetRefundOptionsResponse;
|
|
24281
24162
|
type context$8_GetShipmentsRequest = GetShipmentsRequest;
|
|
24282
24163
|
type context$8_GetShipmentsResponse = GetShipmentsResponse;
|
|
24283
24164
|
type context$8_HtmlApplication = HtmlApplication;
|
|
@@ -24314,7 +24195,6 @@ type context$8_LineItemPriceChange = LineItemPriceChange;
|
|
|
24314
24195
|
type context$8_LineItemQuantityChange = LineItemQuantityChange;
|
|
24315
24196
|
type context$8_LineItemQuantityChangeType = LineItemQuantityChangeType;
|
|
24316
24197
|
declare const context$8_LineItemQuantityChangeType: typeof LineItemQuantityChangeType;
|
|
24317
|
-
type context$8_LineItemRefundOption = LineItemRefundOption;
|
|
24318
24198
|
type context$8_LineItemTax = LineItemTax;
|
|
24319
24199
|
type context$8_LineItemTaxBreakdown = LineItemTaxBreakdown;
|
|
24320
24200
|
type context$8_LineItemTaxInfo = LineItemTaxInfo;
|
|
@@ -24327,7 +24207,6 @@ type context$8_LocationAndQuantity = LocationAndQuantity;
|
|
|
24327
24207
|
type context$8_ManagedAdditionalFee = ManagedAdditionalFee;
|
|
24328
24208
|
type context$8_ManagedDiscount = ManagedDiscount;
|
|
24329
24209
|
type context$8_ManagedLineItem = ManagedLineItem;
|
|
24330
|
-
type context$8_ManuallyRefundablePaymentStatus = ManuallyRefundablePaymentStatus;
|
|
24331
24210
|
type context$8_MarkAsFulfilledRequest = MarkAsFulfilledRequest;
|
|
24332
24211
|
type context$8_MarkAsFulfilledResponse = MarkAsFulfilledResponse;
|
|
24333
24212
|
type context$8_MarkAsUnfulfilledRequest = MarkAsUnfulfilledRequest;
|
|
@@ -24339,18 +24218,14 @@ type context$8_MarkOrderAsSeenByHumanResponse = MarkOrderAsSeenByHumanResponse;
|
|
|
24339
24218
|
type context$8_MaskedOrder = MaskedOrder;
|
|
24340
24219
|
type context$8_MaskedOrderLineItem = MaskedOrderLineItem;
|
|
24341
24220
|
type context$8_MembershipChargeItem = MembershipChargeItem;
|
|
24342
|
-
type context$8_MembershipPaymentSummary = MembershipPaymentSummary;
|
|
24343
24221
|
type context$8_MerchantComment = MerchantComment;
|
|
24344
24222
|
type context$8_MerchantDiscountMerchantDiscountReasonOneOf = MerchantDiscountMerchantDiscountReasonOneOf;
|
|
24345
24223
|
type context$8_MetaData = MetaData;
|
|
24346
24224
|
type context$8_MetaSite = MetaSite;
|
|
24347
24225
|
type context$8_MetaTag = MetaTag;
|
|
24348
|
-
type context$8_MonetaryPaymentSummary = MonetaryPaymentSummary;
|
|
24349
24226
|
type context$8_Namespace = Namespace;
|
|
24350
24227
|
declare const context$8_Namespace: typeof Namespace;
|
|
24351
24228
|
type context$8_NewExchangeOrderCreated = NewExchangeOrderCreated;
|
|
24352
|
-
type context$8_NonRefundablePaymentStatus = NonRefundablePaymentStatus;
|
|
24353
|
-
type context$8_NotificationSideEffects = NotificationSideEffects;
|
|
24354
24229
|
type context$8_OrderApprovalStrategy = OrderApprovalStrategy;
|
|
24355
24230
|
declare const context$8_OrderApprovalStrategy: typeof OrderApprovalStrategy;
|
|
24356
24231
|
type context$8_OrderApproved = OrderApproved;
|
|
@@ -24380,18 +24255,11 @@ declare const context$8_OrderStatus: typeof OrderStatus;
|
|
|
24380
24255
|
type context$8_OrderTaxBreakdown = OrderTaxBreakdown;
|
|
24381
24256
|
type context$8_OrderTaxInfo = OrderTaxInfo;
|
|
24382
24257
|
type context$8_OrdersExperiments = OrdersExperiments;
|
|
24383
|
-
type context$8_OrdersV1RestockItem = OrdersV1RestockItem;
|
|
24384
24258
|
type context$8_PaymentCapture = PaymentCapture;
|
|
24385
24259
|
type context$8_PaymentCollectabilityStatus = PaymentCollectabilityStatus;
|
|
24386
24260
|
declare const context$8_PaymentCollectabilityStatus: typeof PaymentCollectabilityStatus;
|
|
24387
|
-
type context$8_PaymentInfo = PaymentInfo;
|
|
24388
|
-
type context$8_PaymentInfoPaymentMethodDetailsOneOf = PaymentInfoPaymentMethodDetailsOneOf;
|
|
24389
|
-
type context$8_PaymentInfoSummaryOneOf = PaymentInfoSummaryOneOf;
|
|
24390
|
-
type context$8_PaymentRefundOption = PaymentRefundOption;
|
|
24391
|
-
type context$8_PaymentRefundOptionStatusOneOf = PaymentRefundOptionStatusOneOf;
|
|
24392
24261
|
type context$8_PaymentStatusUpdated = PaymentStatusUpdated;
|
|
24393
24262
|
type context$8_Payments = Payments;
|
|
24394
|
-
type context$8_PaymentsSummary = PaymentsSummary;
|
|
24395
24263
|
type context$8_Phone = Phone;
|
|
24396
24264
|
type context$8_PickupReadyEmailSent = PickupReadyEmailSent;
|
|
24397
24265
|
type context$8_Placement = Placement;
|
|
@@ -24435,14 +24303,7 @@ type context$8_QuotesAddress = QuotesAddress;
|
|
|
24435
24303
|
type context$8_RecordManuallyCollectedPaymentRequest = RecordManuallyCollectedPaymentRequest;
|
|
24436
24304
|
type context$8_RecordManuallyCollectedPaymentResponse = RecordManuallyCollectedPaymentResponse;
|
|
24437
24305
|
type context$8_RedirectUrls = RedirectUrls;
|
|
24438
|
-
type context$8_RefundRequest = RefundRequest;
|
|
24439
|
-
type context$8_RefundResponse = RefundResponse;
|
|
24440
|
-
type context$8_RefundabilityManuallyRefundableReason = RefundabilityManuallyRefundableReason;
|
|
24441
|
-
declare const context$8_RefundabilityManuallyRefundableReason: typeof RefundabilityManuallyRefundableReason;
|
|
24442
|
-
type context$8_RefundabilityNonRefundableReason = RefundabilityNonRefundableReason;
|
|
24443
|
-
declare const context$8_RefundabilityNonRefundableReason: typeof RefundabilityNonRefundableReason;
|
|
24444
24306
|
type context$8_Reschedule = Reschedule;
|
|
24445
|
-
type context$8_RestockSideEffects = RestockSideEffects;
|
|
24446
24307
|
type context$8_SavedPaymentMethod = SavedPaymentMethod;
|
|
24447
24308
|
type context$8_SearchOrdersOptions = SearchOrdersOptions;
|
|
24448
24309
|
type context$8_SearchOrdersRequest = SearchOrdersRequest;
|
|
@@ -24465,7 +24326,7 @@ type context$8_SendMerchantOrderReceivedPushResponse = SendMerchantOrderReceived
|
|
|
24465
24326
|
type context$8_SeoData = SeoData;
|
|
24466
24327
|
type context$8_ShippingAddressEdited = ShippingAddressEdited;
|
|
24467
24328
|
type context$8_ShippingConfirmationEmailSent = ShippingConfirmationEmailSent;
|
|
24468
|
-
type context$
|
|
24329
|
+
type context$8_ShippingInformationChange = ShippingInformationChange;
|
|
24469
24330
|
type context$8_SourceType = SourceType;
|
|
24470
24331
|
declare const context$8_SourceType: typeof SourceType;
|
|
24471
24332
|
type context$8_StandardDetails = StandardDetails;
|
|
@@ -24517,21 +24378,16 @@ type context$8_UpdateOrderResponseNonNullableFields = UpdateOrderResponseNonNull
|
|
|
24517
24378
|
type context$8_UpdateOrderShippingAddressRequest = UpdateOrderShippingAddressRequest;
|
|
24518
24379
|
type context$8_UpdateOrderShippingAddressResponse = UpdateOrderShippingAddressResponse;
|
|
24519
24380
|
type context$8_UserDataResponse = UserDataResponse;
|
|
24520
|
-
type context$8_V1AdditionalFeeRefund = V1AdditionalFeeRefund;
|
|
24521
24381
|
type context$8_V1BulkMarkOrdersAsPaidRequest = V1BulkMarkOrdersAsPaidRequest;
|
|
24522
24382
|
type context$8_V1BulkMarkOrdersAsPaidResponse = V1BulkMarkOrdersAsPaidResponse;
|
|
24523
24383
|
type context$8_V1CreatePaymentGatewayOrderRequest = V1CreatePaymentGatewayOrderRequest;
|
|
24524
24384
|
type context$8_V1CreatePaymentGatewayOrderResponse = V1CreatePaymentGatewayOrderResponse;
|
|
24525
24385
|
type context$8_V1LineItemDelta = V1LineItemDelta;
|
|
24526
24386
|
type context$8_V1LineItemDeltaDeltaOneOf = V1LineItemDeltaDeltaOneOf;
|
|
24527
|
-
type context$8_V1LineItemRefund = V1LineItemRefund;
|
|
24528
24387
|
type context$8_V1MarkOrderAsPaidRequest = V1MarkOrderAsPaidRequest;
|
|
24529
24388
|
type context$8_V1MarkOrderAsPaidResponse = V1MarkOrderAsPaidResponse;
|
|
24530
|
-
type context$8_V1PaymentRefund = V1PaymentRefund;
|
|
24531
|
-
type context$8_V1RefundDetails = V1RefundDetails;
|
|
24532
|
-
type context$8_V1RefundSideEffects = V1RefundSideEffects;
|
|
24533
24389
|
type context$8_V1RestockItem = V1RestockItem;
|
|
24534
|
-
type context$
|
|
24390
|
+
type context$8_V1ShippingInformation = V1ShippingInformation;
|
|
24535
24391
|
type context$8_Value = Value;
|
|
24536
24392
|
type context$8_ValueType = ValueType;
|
|
24537
24393
|
declare const context$8_ValueType: typeof ValueType;
|
|
@@ -24553,7 +24409,7 @@ declare const context$8_onOrderPaymentStatusUpdated: typeof onOrderPaymentStatus
|
|
|
24553
24409
|
declare const context$8_searchOrders: typeof searchOrders;
|
|
24554
24410
|
declare const context$8_updateOrder: typeof updateOrder;
|
|
24555
24411
|
declare namespace context$8 {
|
|
24556
|
-
export { type ActionEvent$6 as ActionEvent, ActionType$1 as ActionType, type Activity$1 as Activity, type context$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type context$8_AddActivitiesRequest as AddActivitiesRequest, type context$8_AddActivitiesResponse as AddActivitiesResponse, type context$8_AddActivityRequest as AddActivityRequest, type context$8_AddActivityResponse as AddActivityResponse, type context$8_AddInternalActivityRequest as AddInternalActivityRequest, type context$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type context$8_AdditionalFeeDelta as AdditionalFeeDelta, type context$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$1 as AdditionalFeeRefund, type context$8_AdditionalFeeRefundOption as AdditionalFeeRefundOption, type Address$4 as Address, type context$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type context$8_AddressWithContact as AddressWithContact, type context$8_AggregateOrdersRequest as AggregateOrdersRequest, type context$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$1 as AggregatedRefundSummary, type context$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type context$8_AppliedDiscountDelta as AppliedDiscountDelta, type context$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type context$8_ArchiveOrderRequest as ArchiveOrderRequest, type context$8_ArchiveOrderResponse as ArchiveOrderResponse, context$8_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$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 context$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$8_Balance as Balance, type context$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type context$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type context$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type context$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type context$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type context$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type context$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type context$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type context$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type context$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type context$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type context$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type context$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type context$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type context$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type context$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type context$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type context$8_BulkOrderResult as BulkOrderResult, type context$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type context$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type context$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type context$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type context$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type context$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type context$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type context$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type context$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type context$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type context$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type context$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type context$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type context$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type context$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type context$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$8_BuyerInfoUpdate as BuyerInfoUpdate, type CalculateRefundItemRequest$1 as CalculateRefundItemRequest, type CalculateRefundItemResponse$1 as CalculateRefundItemResponse, type CalculateRefundRequest$1 as CalculateRefundRequest, type CalculateRefundResponse$1 as CalculateRefundResponse, type context$8_CalculateRefundV1Request as CalculateRefundV1Request, type context$8_CalculateRefundV1Response as CalculateRefundV1Response, type context$8_CalculateRefundV2Request as CalculateRefundV2Request, type context$8_CalculateRefundV2Response as CalculateRefundV2Response, type context$8_CalculateRefundV2ResponseStatusOneOf as CalculateRefundV2ResponseStatusOneOf, type context$8_CalculatedAdditionalFeeRefund as CalculatedAdditionalFeeRefund, type context$8_CalculatedLineItemRefund as CalculatedLineItemRefund, type context$8_CalculatedRefundDetails as CalculatedRefundDetails, type context$8_CalculatedRefundNotAvailableStatus as CalculatedRefundNotAvailableStatus, type context$8_CalculatedRefundSummary as CalculatedRefundSummary, type context$8_CalculatedShippingRefund as CalculatedShippingRefund, type context$8_CalculatedTax as CalculatedTax, type context$8_CalculatedTaxes as CalculatedTaxes, type context$8_CalculationError as CalculationError, type context$8_CalculationErrorItemOneOf as CalculationErrorItemOneOf, type context$8_Cancel as Cancel, type context$8_CancelOrderOptions as CancelOrderOptions, type context$8_CancelOrderRequest as CancelOrderRequest, type context$8_CancelOrderResponse as CancelOrderResponse, type context$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type context$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type context$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type context$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type context$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type context$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type context$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type context$8_ChargedBy as ChargedBy, type context$8_Color as Color, type context$8_CommitDeltasRequest as CommitDeltasRequest, type context$8_CommitDeltasResponse as CommitDeltasResponse, type context$8_CommittedDiffs as CommittedDiffs, type context$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type context$8_CommonAddress as CommonAddress, type context$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type context$8_Company as Company, type context$8_Complete as Complete, type context$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type context$8_CreateOrderRequest as CreateOrderRequest, type context$8_CreateOrderResponse as CreateOrderResponse, type context$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type context$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type context$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type context$8_CreatedBy as CreatedBy, type context$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$1 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type context$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, context$8_CustomFieldGroup as CustomFieldGroup, type context$8_CustomFieldValue as CustomFieldValue, type context$8_Customer as Customer, type context$8_DecrementData as DecrementData, type context$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type context$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type context$8_DeleteActivityRequest as DeleteActivityRequest, type context$8_DeleteActivityResponse as DeleteActivityResponse, type context$8_DeleteByFilterOperation as DeleteByFilterOperation, type context$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type context$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, context$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type context$8_Deposit as Deposit, context$8_DepositType as DepositType, type context$8_DescriptionLine as DescriptionLine, type context$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$8_DescriptionLineName as DescriptionLineName, context$8_DescriptionLineType as DescriptionLineType, type context$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type Details$1 as Details, type DetailsKindOneOf$1 as DetailsKindOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type context$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, context$8_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type context$8_DownloadLinkSent as DownloadLinkSent, type context$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type context$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type context$8_DraftOrderDiffs as DraftOrderDiffs, type context$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type context$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type context$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type context$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type context$8_Email as Email, type context$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type context$8_ExternalUriMapping as ExternalUriMapping, type FieldViolation$1 as FieldViolation, type context$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type context$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type context$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type context$8_FullAddressContactDetails as FullAddressContactDetails, type context$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type context$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type context$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type context$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type context$8_GetOrderRequest as GetOrderRequest, type context$8_GetOrderResponse as GetOrderResponse, type context$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type context$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type context$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type context$8_GetRefundOptionsRequest as GetRefundOptionsRequest, type context$8_GetRefundOptionsResponse as GetRefundOptionsResponse, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type context$8_GetShipmentsRequest as GetShipmentsRequest, type context$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$1 as GiftCardPaymentDetails, type context$8_HtmlApplication as HtmlApplication, type context$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type context$8_InternalActivity as InternalActivity, type context$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type context$8_InternalDocument as InternalDocument, type context$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type context$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type context$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type context$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type context$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, context$8_InventoryAction as InventoryAction, type context$8_InventoryUpdateDetails as InventoryUpdateDetails, type context$8_InvoiceAdded as InvoiceAdded, type context$8_InvoiceDates as InvoiceDates, type context$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type context$8_InvoiceFields as InvoiceFields, type context$8_InvoiceSent as InvoiceSent, type context$8_InvoiceSentEvent as InvoiceSentEvent, context$8_InvoiceStatus as InvoiceStatus, type context$8_InvoicesPayment as InvoicesPayment, type context$8_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, type context$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type context$8_LineItemAmount as LineItemAmount, type context$8_LineItemChanges as LineItemChanges, type context$8_LineItemDelta as LineItemDelta, type context$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type context$8_LineItemExchangeData as LineItemExchangeData, type context$8_LineItemMetaData as LineItemMetaData, type context$8_LineItemPriceChange as LineItemPriceChange, type context$8_LineItemQuantityChange as LineItemQuantityChange, context$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$1 as LineItemRefund, type context$8_LineItemRefundOption as LineItemRefundOption, type context$8_LineItemTax as LineItemTax, type context$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$8_LineItemTaxInfo as LineItemTaxInfo, type context$8_LineItemUpdate as LineItemUpdate, type context$8_LineItems as LineItems, type context$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type context$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type context$8_Locale as Locale, type context$8_LocationAndQuantity as LocationAndQuantity, type context$8_ManagedAdditionalFee as ManagedAdditionalFee, type context$8_ManagedDiscount as ManagedDiscount, type context$8_ManagedLineItem as ManagedLineItem, type context$8_ManuallyRefundablePaymentStatus as ManuallyRefundablePaymentStatus, ManuallyRefundableReason$1 as ManuallyRefundableReason, type context$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type context$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type context$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type context$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type context$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type context$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type context$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type context$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type context$8_MaskedOrder as MaskedOrder, type context$8_MaskedOrderLineItem as MaskedOrderLineItem, type context$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$2 as MembershipName, type MembershipPaymentDetails$1 as MembershipPaymentDetails, MembershipPaymentStatus$1 as MembershipPaymentStatus, type context$8_MembershipPaymentSummary as MembershipPaymentSummary, type context$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type context$8_MetaData as MetaData, type context$8_MetaSite as MetaSite, type context$8_MetaTag as MetaTag, type context$8_MonetaryPaymentSummary as MonetaryPaymentSummary, context$8_Namespace as Namespace, type context$8_NewExchangeOrderCreated as NewExchangeOrderCreated, type context$8_NonRefundablePaymentStatus as NonRefundablePaymentStatus, NonRefundableReason$1 as NonRefundableReason, type context$8_NotificationSideEffects as NotificationSideEffects, type Order$1 as Order, context$8_OrderApprovalStrategy as OrderApprovalStrategy, type context$8_OrderApproved as OrderApproved, type context$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type context$8_OrderCanceled as OrderCanceled, type context$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type context$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type context$8_OrderChange as OrderChange, type context$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$8_OrderCreateNotifications as OrderCreateNotifications, type context$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type context$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$8_OrderCreationSettings as OrderCreationSettings, type context$8_OrderDeltasCommitted as OrderDeltasCommitted, type context$8_OrderFulfilled as OrderFulfilled, type context$8_OrderItemsRestocked as OrderItemsRestocked, type context$8_OrderLineItem as OrderLineItem, type context$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type context$8_OrderNonNullableFields as OrderNonNullableFields, type context$8_OrderNotFulfilled as OrderNotFulfilled, type context$8_OrderPaid as OrderPaid, type context$8_OrderPartiallyPaid as OrderPartiallyPaid, type context$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type context$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, context$8_OrderStatus as OrderStatus, type context$8_OrderTaxBreakdown as OrderTaxBreakdown, type context$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$1 as OrderTransactions, type context$8_OrdersExperiments as OrdersExperiments, type context$8_OrdersV1RestockItem as OrdersV1RestockItem, type Payment$1 as Payment, type context$8_PaymentCapture as PaymentCapture, context$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, type context$8_PaymentInfo as PaymentInfo, type context$8_PaymentInfoPaymentMethodDetailsOneOf as PaymentInfoPaymentMethodDetailsOneOf, type context$8_PaymentInfoSummaryOneOf as PaymentInfoSummaryOneOf, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$1 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type context$8_PaymentRefundOption as PaymentRefundOption, type context$8_PaymentRefundOptionStatusOneOf as PaymentRefundOptionStatusOneOf, PaymentStatus$1 as PaymentStatus, type context$8_PaymentStatusUpdated as PaymentStatusUpdated, type context$8_Payments as Payments, type context$8_PaymentsSummary as PaymentsSummary, type PaymentsUpdated$1 as PaymentsUpdated, type context$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type context$8_PickupReadyEmailSent as PickupReadyEmailSent, context$8_Placement as Placement, type context$8_PlainTextValue as PlainTextValue, type context$8_PlatformPaging as PlatformPaging, type context$8_PlatformPagingMetadata as PlatformPagingMetadata, type context$8_PlatformQuery as PlatformQuery, type context$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type context$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type context$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type context$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type context$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type context$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type context$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type context$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type context$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type context$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type context$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type context$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type context$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type context$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type context$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, context$8_PreviewEmailType as PreviewEmailType, type context$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type context$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type context$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type context$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type context$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type context$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type context$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type context$8_ProductName as ProductName, type context$8_PublicActivity as PublicActivity, type context$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type context$8_QueryOrderRequest as QueryOrderRequest, type context$8_QueryOrderResponse as QueryOrderResponse, type context$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type context$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type context$8_QuotesAddress as QuotesAddress, Reason$1 as Reason, type context$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type context$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type context$8_RedirectUrls as RedirectUrls, type Refund$1 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$1 as RefundDetails, type RefundItem$1 as RefundItem, type context$8_RefundRequest as RefundRequest, type context$8_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, context$8_RefundabilityManuallyRefundableReason as RefundabilityManuallyRefundableReason, context$8_RefundabilityNonRefundableReason as RefundabilityNonRefundableReason, RefundableStatus$1 as RefundableStatus, type RegularPaymentDetails$1 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, type context$8_RestockSideEffects as RestockSideEffects, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, RuleType$1 as RuleType, type context$8_SavedPaymentMethod as SavedPaymentMethod, type ScheduledAction$1 as ScheduledAction, type context$8_SearchOrdersOptions as SearchOrdersOptions, type context$8_SearchOrdersRequest as SearchOrdersRequest, type context$8_SearchOrdersResponse as SearchOrdersResponse, type context$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type context$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type context$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type context$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type context$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type context$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type context$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type context$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type context$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type context$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type context$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type context$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type context$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type context$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type context$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type context$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type context$8_ShippingAddressEdited as ShippingAddressEdited, type context$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$1 as ShippingRefund, type context$8_ShippingRefundOption as ShippingRefundOption, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, context$8_SourceType as SourceType, type context$8_StandardDetails as StandardDetails, context$8_State as State, type StreetAddress$3 as StreetAddress, type context$8_Subdivision as Subdivision, context$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type SystemError$1 as SystemError, type context$8_TagList as TagList, type context$8_Tags as Tags, type context$8_Task as Task, type context$8_TaskAction as TaskAction, type context$8_TaskActionActionOneOf as TaskActionActionOneOf, type context$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type context$8_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type context$8_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type context$8_TotalPrice as TotalPrice, type context$8_TotalPriceChange as TotalPriceChange, type context$8_TrackingLinkAdded as TrackingLinkAdded, type context$8_TrackingNumberAdded as TrackingNumberAdded, type context$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$1 as TransactionStatus, type context$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type context$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type context$8_TriggerReindexRequest as TriggerReindexRequest, type context$8_TriggerReindexResponse as TriggerReindexResponse, type context$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type context$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type context$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type context$8_UpdateActivityRequest as UpdateActivityRequest, type context$8_UpdateActivityResponse as UpdateActivityResponse, type context$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type context$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type context$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type context$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type context$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type context$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type context$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type context$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type context$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type context$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type context$8_UpdateOrder as UpdateOrder, type context$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type context$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type context$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type context$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type context$8_UpdateOrderRequest as UpdateOrderRequest, type context$8_UpdateOrderResponse as UpdateOrderResponse, type context$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type context$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type context$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type context$8_UserDataResponse as UserDataResponse, type context$8_V1AdditionalFeeRefund as V1AdditionalFeeRefund, type context$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type context$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type context$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type context$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type context$8_V1LineItemDelta as V1LineItemDelta, type context$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type context$8_V1LineItemRefund as V1LineItemRefund, type context$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type context$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type context$8_V1PaymentRefund as V1PaymentRefund, type context$8_V1RefundDetails as V1RefundDetails, type context$8_V1RefundSideEffects as V1RefundSideEffects, type context$8_V1RestockItem as V1RestockItem, type context$8_V1ShippingRefund as V1ShippingRefund, type ValidationError$1 as ValidationError, type context$8_Value as Value, context$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type context$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type context$8_VersionedDocumentId as VersionedDocumentId, type context$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, context$8_VersioningMode as VersioningMode, type context$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type context$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, context$8_bulkUpdateOrders as bulkUpdateOrders, context$8_cancelOrder as cancelOrder, context$8_createOrder as createOrder, context$8_getOrder as getOrder, context$8_onOrderApproved as onOrderApproved, context$8_onOrderCanceled as onOrderCanceled, context$8_onOrderCreated as onOrderCreated, context$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, context$8_searchOrders as searchOrders, context$8_updateOrder as updateOrder };
|
|
24412
|
+
export { type ActionEvent$6 as ActionEvent, ActionType$1 as ActionType, type Activity$1 as Activity, type context$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type context$8_AddActivitiesRequest as AddActivitiesRequest, type context$8_AddActivitiesResponse as AddActivitiesResponse, type context$8_AddActivityRequest as AddActivityRequest, type context$8_AddActivityResponse as AddActivityResponse, type context$8_AddInternalActivityRequest as AddInternalActivityRequest, type context$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type context$8_AdditionalFeeDelta as AdditionalFeeDelta, type context$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$1 as AdditionalFeeRefund, type Address$4 as Address, type context$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type context$8_AddressWithContact as AddressWithContact, type context$8_AggregateOrdersRequest as AggregateOrdersRequest, type context$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$1 as AggregatedRefundSummary, type context$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type context$8_AppliedDiscountDelta as AppliedDiscountDelta, type context$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type context$8_ArchiveOrderRequest as ArchiveOrderRequest, type context$8_ArchiveOrderResponse as ArchiveOrderResponse, context$8_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$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 context$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$8_Balance as Balance, type context$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type context$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type context$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type context$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type context$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type context$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type context$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type context$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type context$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type context$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type context$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type context$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type context$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type context$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type context$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type context$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type context$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type context$8_BulkOrderResult as BulkOrderResult, type context$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type context$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type context$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type context$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type context$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type context$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type context$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type context$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type context$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type context$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type context$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type context$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type context$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type context$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type context$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type context$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$8_BuyerInfoUpdate as BuyerInfoUpdate, type CalculateRefundItemRequest$1 as CalculateRefundItemRequest, type CalculateRefundItemResponse$1 as CalculateRefundItemResponse, type CalculateRefundRequest$1 as CalculateRefundRequest, type CalculateRefundResponse$1 as CalculateRefundResponse, type context$8_CalculatedTax as CalculatedTax, type context$8_CalculatedTaxes as CalculatedTaxes, type context$8_Cancel as Cancel, type context$8_CancelOrderOptions as CancelOrderOptions, type context$8_CancelOrderRequest as CancelOrderRequest, type context$8_CancelOrderResponse as CancelOrderResponse, type context$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type context$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type context$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type context$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type context$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type context$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type context$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type context$8_ChargedBy as ChargedBy, type context$8_Color as Color, type context$8_CommitDeltasRequest as CommitDeltasRequest, type context$8_CommitDeltasResponse as CommitDeltasResponse, type context$8_CommittedDiffs as CommittedDiffs, type context$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type context$8_CommonAddress as CommonAddress, type context$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type context$8_Company as Company, type context$8_Complete as Complete, type context$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type context$8_CreateOrderRequest as CreateOrderRequest, type context$8_CreateOrderResponse as CreateOrderResponse, type context$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type context$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type context$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type context$8_CreatedBy as CreatedBy, type context$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$1 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type context$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, context$8_CustomFieldGroup as CustomFieldGroup, type context$8_CustomFieldValue as CustomFieldValue, type context$8_Customer as Customer, type context$8_DecrementData as DecrementData, type context$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type context$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type context$8_DeleteActivityRequest as DeleteActivityRequest, type context$8_DeleteActivityResponse as DeleteActivityResponse, type context$8_DeleteByFilterOperation as DeleteByFilterOperation, type context$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type context$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, context$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type context$8_Deposit as Deposit, context$8_DepositType as DepositType, type context$8_DescriptionLine as DescriptionLine, type context$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$8_DescriptionLineName as DescriptionLineName, context$8_DescriptionLineType as DescriptionLineType, type context$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type context$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, context$8_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type context$8_DownloadLinkSent as DownloadLinkSent, type context$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type context$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type context$8_DraftOrderDiffs as DraftOrderDiffs, type context$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type context$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type context$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type context$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type context$8_Email as Email, type context$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type context$8_ExternalUriMapping as ExternalUriMapping, type context$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type context$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type context$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type context$8_FullAddressContactDetails as FullAddressContactDetails, type context$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type context$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type context$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type context$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type context$8_GetOrderRequest as GetOrderRequest, type context$8_GetOrderResponse as GetOrderResponse, type context$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type context$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type context$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type context$8_GetShipmentsRequest as GetShipmentsRequest, type context$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$1 as GiftCardPaymentDetails, type context$8_HtmlApplication as HtmlApplication, type context$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type context$8_InternalActivity as InternalActivity, type context$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type context$8_InternalDocument as InternalDocument, type context$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type context$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type context$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type context$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type context$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, context$8_InventoryAction as InventoryAction, type context$8_InventoryUpdateDetails as InventoryUpdateDetails, type context$8_InvoiceAdded as InvoiceAdded, type context$8_InvoiceDates as InvoiceDates, type context$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type context$8_InvoiceFields as InvoiceFields, type context$8_InvoiceSent as InvoiceSent, type context$8_InvoiceSentEvent as InvoiceSentEvent, context$8_InvoiceStatus as InvoiceStatus, type context$8_InvoicesPayment as InvoicesPayment, type context$8_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, type context$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type context$8_LineItemAmount as LineItemAmount, type context$8_LineItemChanges as LineItemChanges, type context$8_LineItemDelta as LineItemDelta, type context$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type context$8_LineItemExchangeData as LineItemExchangeData, type context$8_LineItemMetaData as LineItemMetaData, type context$8_LineItemPriceChange as LineItemPriceChange, type context$8_LineItemQuantityChange as LineItemQuantityChange, context$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$1 as LineItemRefund, type context$8_LineItemTax as LineItemTax, type context$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$8_LineItemTaxInfo as LineItemTaxInfo, type context$8_LineItemUpdate as LineItemUpdate, type context$8_LineItems as LineItems, type context$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type context$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type context$8_Locale as Locale, type context$8_LocationAndQuantity as LocationAndQuantity, type context$8_ManagedAdditionalFee as ManagedAdditionalFee, type context$8_ManagedDiscount as ManagedDiscount, type context$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type context$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type context$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type context$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type context$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type context$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type context$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type context$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type context$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type context$8_MaskedOrder as MaskedOrder, type context$8_MaskedOrderLineItem as MaskedOrderLineItem, type context$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$2 as MembershipName, type MembershipPaymentDetails$1 as MembershipPaymentDetails, MembershipPaymentStatus$1 as MembershipPaymentStatus, type context$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type context$8_MetaData as MetaData, type context$8_MetaSite as MetaSite, type context$8_MetaTag as MetaTag, context$8_Namespace as Namespace, type context$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, context$8_OrderApprovalStrategy as OrderApprovalStrategy, type context$8_OrderApproved as OrderApproved, type context$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type context$8_OrderCanceled as OrderCanceled, type context$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type context$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type context$8_OrderChange as OrderChange, type context$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$8_OrderCreateNotifications as OrderCreateNotifications, type context$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type context$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$8_OrderCreationSettings as OrderCreationSettings, type context$8_OrderDeltasCommitted as OrderDeltasCommitted, type context$8_OrderFulfilled as OrderFulfilled, type context$8_OrderItemsRestocked as OrderItemsRestocked, type context$8_OrderLineItem as OrderLineItem, type context$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type context$8_OrderNonNullableFields as OrderNonNullableFields, type context$8_OrderNotFulfilled as OrderNotFulfilled, type context$8_OrderPaid as OrderPaid, type context$8_OrderPartiallyPaid as OrderPartiallyPaid, type context$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type context$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, context$8_OrderStatus as OrderStatus, type context$8_OrderTaxBreakdown as OrderTaxBreakdown, type context$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$1 as OrderTransactions, type context$8_OrdersExperiments as OrdersExperiments, type Payment$1 as Payment, type context$8_PaymentCapture as PaymentCapture, context$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$1 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, PaymentStatus$1 as PaymentStatus, type context$8_PaymentStatusUpdated as PaymentStatusUpdated, type context$8_Payments as Payments, type PaymentsUpdated$1 as PaymentsUpdated, type context$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type context$8_PickupReadyEmailSent as PickupReadyEmailSent, context$8_Placement as Placement, type context$8_PlainTextValue as PlainTextValue, type context$8_PlatformPaging as PlatformPaging, type context$8_PlatformPagingMetadata as PlatformPagingMetadata, type context$8_PlatformQuery as PlatformQuery, type context$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type context$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type context$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type context$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type context$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type context$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type context$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type context$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type context$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type context$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type context$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type context$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type context$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type context$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type context$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, context$8_PreviewEmailType as PreviewEmailType, type context$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type context$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type context$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type context$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type context$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type context$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type context$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type context$8_ProductName as ProductName, type context$8_PublicActivity as PublicActivity, type context$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type context$8_QueryOrderRequest as QueryOrderRequest, type context$8_QueryOrderResponse as QueryOrderResponse, type context$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type context$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type context$8_QuotesAddress as QuotesAddress, Reason$1 as Reason, type context$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type context$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type context$8_RedirectUrls as RedirectUrls, type Refund$1 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$1 as RefundDetails, type RefundItem$1 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$1 as RefundStatus, type RefundTransaction$1 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type RegularPaymentDetails$1 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type context$8_SavedPaymentMethod as SavedPaymentMethod, type ScheduledAction$1 as ScheduledAction, type context$8_SearchOrdersOptions as SearchOrdersOptions, type context$8_SearchOrdersRequest as SearchOrdersRequest, type context$8_SearchOrdersResponse as SearchOrdersResponse, type context$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type context$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type context$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type context$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type context$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type context$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type context$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type context$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type context$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type context$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type context$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type context$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type context$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type context$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type context$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type context$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type context$8_ShippingAddressEdited as ShippingAddressEdited, type context$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type context$8_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$1 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, context$8_SourceType as SourceType, type context$8_StandardDetails as StandardDetails, context$8_State as State, type StreetAddress$3 as StreetAddress, type context$8_Subdivision as Subdivision, context$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type context$8_TagList as TagList, type context$8_Tags as Tags, type context$8_Task as Task, type context$8_TaskAction as TaskAction, type context$8_TaskActionActionOneOf as TaskActionActionOneOf, type context$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type context$8_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type context$8_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type context$8_TotalPrice as TotalPrice, type context$8_TotalPriceChange as TotalPriceChange, type context$8_TrackingLinkAdded as TrackingLinkAdded, type context$8_TrackingNumberAdded as TrackingNumberAdded, type context$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$1 as TransactionStatus, type context$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type context$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type context$8_TriggerReindexRequest as TriggerReindexRequest, type context$8_TriggerReindexResponse as TriggerReindexResponse, type context$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type context$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type context$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type context$8_UpdateActivityRequest as UpdateActivityRequest, type context$8_UpdateActivityResponse as UpdateActivityResponse, type context$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type context$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type context$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type context$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type context$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type context$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type context$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type context$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type context$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type context$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type context$8_UpdateOrder as UpdateOrder, type context$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type context$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type context$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type context$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type context$8_UpdateOrderRequest as UpdateOrderRequest, type context$8_UpdateOrderResponse as UpdateOrderResponse, type context$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type context$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type context$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type context$8_UserDataResponse as UserDataResponse, type context$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type context$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type context$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type context$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type context$8_V1LineItemDelta as V1LineItemDelta, type context$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type context$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type context$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type context$8_V1RestockItem as V1RestockItem, type context$8_V1ShippingInformation as V1ShippingInformation, type context$8_Value as Value, context$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type context$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type context$8_VersionedDocumentId as VersionedDocumentId, type context$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, context$8_VersioningMode as VersioningMode, type context$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type context$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, context$8_bulkUpdateOrders as bulkUpdateOrders, context$8_cancelOrder as cancelOrder, context$8_createOrder as createOrder, context$8_getOrder as getOrder, context$8_onOrderApproved as onOrderApproved, context$8_onOrderCanceled as onOrderCanceled, context$8_onOrderCreated as onOrderCreated, context$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, context$8_searchOrders as searchOrders, context$8_updateOrder as updateOrder };
|
|
24557
24413
|
}
|
|
24558
24414
|
|
|
24559
24415
|
interface OrderPaymentRequest {
|