@wix/ecom 1.0.722 → 1.0.724
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.
|
@@ -2534,6 +2534,49 @@ interface AuthorizedPaymentVoided {
|
|
|
2534
2534
|
/** Card issuer's brand. */
|
|
2535
2535
|
brand?: string | null;
|
|
2536
2536
|
}
|
|
2537
|
+
interface RefundInitiated {
|
|
2538
|
+
/** Refund ID. */
|
|
2539
|
+
refundId?: string;
|
|
2540
|
+
/** Refund amount. */
|
|
2541
|
+
amount?: Price;
|
|
2542
|
+
/** Details about the payments being refunded. */
|
|
2543
|
+
payments?: RefundedPayment[];
|
|
2544
|
+
/** Reason for refund. */
|
|
2545
|
+
reason?: string | null;
|
|
2546
|
+
}
|
|
2547
|
+
interface RefundedPayment extends RefundedPaymentKindOneOf {
|
|
2548
|
+
/** Regular payment refund. */
|
|
2549
|
+
regular?: RegularPaymentRefund;
|
|
2550
|
+
/** Payment ID. */
|
|
2551
|
+
paymentId?: string;
|
|
2552
|
+
/** Whether refund was made externally and manually on the payment provider's side. */
|
|
2553
|
+
externalRefund?: boolean;
|
|
2554
|
+
}
|
|
2555
|
+
/** @oneof */
|
|
2556
|
+
interface RefundedPaymentKindOneOf {
|
|
2557
|
+
/** Regular payment refund. */
|
|
2558
|
+
regular?: RegularPaymentRefund;
|
|
2559
|
+
}
|
|
2560
|
+
interface RegularPaymentRefund {
|
|
2561
|
+
/** Refund amount */
|
|
2562
|
+
amount?: Price;
|
|
2563
|
+
/** The last 4 digits of the card number. */
|
|
2564
|
+
lastFourDigits?: string | null;
|
|
2565
|
+
/** Card issuer's brand. */
|
|
2566
|
+
brand?: string | null;
|
|
2567
|
+
}
|
|
2568
|
+
interface PaymentRefunded {
|
|
2569
|
+
/** Refund ID. */
|
|
2570
|
+
refundId?: string;
|
|
2571
|
+
/** Details about the refunded payment. */
|
|
2572
|
+
payment?: RefundedPayment;
|
|
2573
|
+
}
|
|
2574
|
+
interface PaymentRefundFailed {
|
|
2575
|
+
/** Refund ID. */
|
|
2576
|
+
refundId?: string;
|
|
2577
|
+
/** Details about the failed payment refund. */
|
|
2578
|
+
payment?: RefundedPayment;
|
|
2579
|
+
}
|
|
2537
2580
|
declare enum ActivityType {
|
|
2538
2581
|
ORDER_REFUNDED = "ORDER_REFUNDED",
|
|
2539
2582
|
ORDER_PLACED = "ORDER_PLACED",
|
|
@@ -2562,7 +2605,10 @@ declare enum ActivityType {
|
|
|
2562
2605
|
SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
|
|
2563
2606
|
AUTHORIZED_PAYMENT_CREATED = "AUTHORIZED_PAYMENT_CREATED",
|
|
2564
2607
|
AUTHORIZED_PAYMENT_CAPTURED = "AUTHORIZED_PAYMENT_CAPTURED",
|
|
2565
|
-
AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED"
|
|
2608
|
+
AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
|
|
2609
|
+
REFUND_INITIATED = "REFUND_INITIATED",
|
|
2610
|
+
PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
|
|
2611
|
+
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
|
|
2566
2612
|
}
|
|
2567
2613
|
declare enum AttributionSource {
|
|
2568
2614
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -2915,6 +2961,8 @@ type context$1_OrderTaxBreakdown = OrderTaxBreakdown;
|
|
|
2915
2961
|
type context$1_OrderTaxInfo = OrderTaxInfo;
|
|
2916
2962
|
type context$1_PaymentOptionType = PaymentOptionType;
|
|
2917
2963
|
declare const context$1_PaymentOptionType: typeof PaymentOptionType;
|
|
2964
|
+
type context$1_PaymentRefundFailed = PaymentRefundFailed;
|
|
2965
|
+
type context$1_PaymentRefunded = PaymentRefunded;
|
|
2918
2966
|
type context$1_PaymentSettings = PaymentSettings;
|
|
2919
2967
|
type context$1_PaymentSettingsSPIConfig = PaymentSettingsSPIConfig;
|
|
2920
2968
|
type context$1_PaymentStatus = PaymentStatus;
|
|
@@ -2926,6 +2974,10 @@ declare const context$1_PickupMethod: typeof PickupMethod;
|
|
|
2926
2974
|
type context$1_PlainTextValue = PlainTextValue;
|
|
2927
2975
|
type context$1_Price = Price;
|
|
2928
2976
|
type context$1_PriceDescription = PriceDescription;
|
|
2977
|
+
type context$1_RefundInitiated = RefundInitiated;
|
|
2978
|
+
type context$1_RefundedPayment = RefundedPayment;
|
|
2979
|
+
type context$1_RefundedPaymentKindOneOf = RefundedPaymentKindOneOf;
|
|
2980
|
+
type context$1_RegularPaymentRefund = RegularPaymentRefund;
|
|
2929
2981
|
type context$1_SavedPaymentMethod = SavedPaymentMethod;
|
|
2930
2982
|
type context$1_ShippingInformation = ShippingInformation;
|
|
2931
2983
|
type context$1_ShippingInformationChange = ShippingInformationChange;
|
|
@@ -2939,7 +2991,7 @@ type context$1_TotalPriceChange = TotalPriceChange;
|
|
|
2939
2991
|
type context$1_TranslatedValue = TranslatedValue;
|
|
2940
2992
|
type context$1_V1ShippingInformation = V1ShippingInformation;
|
|
2941
2993
|
declare namespace context$1 {
|
|
2942
|
-
export { type context$1_Activity as Activity, type context$1_ActivityContentOneOf as ActivityContentOneOf, context$1_ActivityType as ActivityType, type context$1_AdditionalFee as AdditionalFee, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, context$1_AttributionSource as AttributionSource, type context$1_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$1_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$1_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$1_Balance as Balance, type context$1_BalanceSummary as BalanceSummary, type context$1_BuyerInfo as BuyerInfo, type context$1_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type CatalogReference$1 as CatalogReference, type context$1_ChannelInfo as ChannelInfo, context$1_ChannelType as ChannelType, type context$1_Color as Color, type Context$1 as Context, type Coupon$1 as Coupon, type context$1_CreatedBy as CreatedBy, type context$1_CreatedByStringOneOf as CreatedByStringOneOf, type context$1_CustomActivity as CustomActivity, type CustomField$1 as CustomField, type context$1_DeliveryLogistics as DeliveryLogistics, type context$1_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type context$1_DeliveryTimeSlot as DeliveryTimeSlot, type context$1_DescriptionLine as DescriptionLine, type context$1_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$1_DescriptionLineName as DescriptionLineName, context$1_DescriptionLineType as DescriptionLineType, type context$1_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type context$1_DigitalFile as DigitalFile, context$1_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type context$1_DraftOrderChangesApplied as DraftOrderChangesApplied, type ExtendedFields$1 as ExtendedFields, context$1_FulfillmentStatus as FulfillmentStatus, type context$1_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$1_GetPaymentSettingsRequest as GetPaymentSettingsRequest, type context$1_GetPaymentSettingsResponse as GetPaymentSettingsResponse, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type context$1_LineItemAmount as LineItemAmount, type context$1_LineItemChanges as LineItemChanges, type context$1_LineItemDiscount as LineItemDiscount, type context$1_LineItemExchangeData as LineItemExchangeData, type context$1_LineItemPriceChange as LineItemPriceChange, type context$1_LineItemQuantityChange as LineItemQuantityChange, context$1_LineItemQuantityChangeType as LineItemQuantityChangeType, type context$1_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$1_LineItemTaxInfo as LineItemTaxInfo, type context$1_LocationAndQuantity as LocationAndQuantity, type context$1_ManagedAdditionalFee as ManagedAdditionalFee, type context$1_ManagedDiscount as ManagedDiscount, type context$1_ManagedLineItem as ManagedLineItem, type context$1_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$1_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type context$1_NewExchangeOrderCreated as NewExchangeOrderCreated, type context$1_Order as Order, type context$1_OrderChange as OrderChange, type context$1_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$1_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$1_OrderLineItem as OrderLineItem, type context$1_OrderRefunded as OrderRefunded, context$1_OrderStatus as OrderStatus, type context$1_OrderTaxBreakdown as OrderTaxBreakdown, type context$1_OrderTaxInfo as OrderTaxInfo, context$1_PaymentOptionType as PaymentOptionType, type context$1_PaymentSettings as PaymentSettings, type context$1_PaymentSettingsSPIConfig as PaymentSettingsSPIConfig, context$1_PaymentStatus as PaymentStatus, type PhysicalProperties$1 as PhysicalProperties, type context$1_PickupAddress as PickupAddress, type context$1_PickupDetails as PickupDetails, context$1_PickupMethod as PickupMethod, type context$1_PlainTextValue as PlainTextValue, type context$1_Price as Price, type context$1_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, type context$1_SavedPaymentMethod as SavedPaymentMethod, type context$1_ShippingInformation as ShippingInformation, type context$1_ShippingInformationChange as ShippingInformationChange, type context$1_ShippingPrice as ShippingPrice, type context$1_ShippingRegion as ShippingRegion, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$1 as SubscriptionFrequency, type context$1_SubscriptionInfo as SubscriptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type context$1_TagList as TagList, type context$1_Tags as Tags, type context$1_TaxSummary as TaxSummary, type context$1_TotalPriceChange as TotalPriceChange, type context$1_TranslatedValue as TranslatedValue, type context$1_V1ShippingInformation as V1ShippingInformation, type VatId$1 as VatId, VatType$1 as VatType, WeightUnit$1 as WeightUnit, type _publicProvideHandlersType$1 as _publicProvideHandlersType, provideHandlers$2 as provideHandlers, provideHandlers$3 as publicProvideHandlers };
|
|
2994
|
+
export { type context$1_Activity as Activity, type context$1_ActivityContentOneOf as ActivityContentOneOf, context$1_ActivityType as ActivityType, type context$1_AdditionalFee as AdditionalFee, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, context$1_AttributionSource as AttributionSource, type context$1_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$1_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$1_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$1_Balance as Balance, type context$1_BalanceSummary as BalanceSummary, type context$1_BuyerInfo as BuyerInfo, type context$1_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type CatalogReference$1 as CatalogReference, type context$1_ChannelInfo as ChannelInfo, context$1_ChannelType as ChannelType, type context$1_Color as Color, type Context$1 as Context, type Coupon$1 as Coupon, type context$1_CreatedBy as CreatedBy, type context$1_CreatedByStringOneOf as CreatedByStringOneOf, type context$1_CustomActivity as CustomActivity, type CustomField$1 as CustomField, type context$1_DeliveryLogistics as DeliveryLogistics, type context$1_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type context$1_DeliveryTimeSlot as DeliveryTimeSlot, type context$1_DescriptionLine as DescriptionLine, type context$1_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$1_DescriptionLineName as DescriptionLineName, context$1_DescriptionLineType as DescriptionLineType, type context$1_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type context$1_DigitalFile as DigitalFile, context$1_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type context$1_DraftOrderChangesApplied as DraftOrderChangesApplied, type ExtendedFields$1 as ExtendedFields, context$1_FulfillmentStatus as FulfillmentStatus, type context$1_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$1_GetPaymentSettingsRequest as GetPaymentSettingsRequest, type context$1_GetPaymentSettingsResponse as GetPaymentSettingsResponse, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type context$1_LineItemAmount as LineItemAmount, type context$1_LineItemChanges as LineItemChanges, type context$1_LineItemDiscount as LineItemDiscount, type context$1_LineItemExchangeData as LineItemExchangeData, type context$1_LineItemPriceChange as LineItemPriceChange, type context$1_LineItemQuantityChange as LineItemQuantityChange, context$1_LineItemQuantityChangeType as LineItemQuantityChangeType, type context$1_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$1_LineItemTaxInfo as LineItemTaxInfo, type context$1_LocationAndQuantity as LocationAndQuantity, type context$1_ManagedAdditionalFee as ManagedAdditionalFee, type context$1_ManagedDiscount as ManagedDiscount, type context$1_ManagedLineItem as ManagedLineItem, type context$1_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$1_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type context$1_NewExchangeOrderCreated as NewExchangeOrderCreated, type context$1_Order as Order, type context$1_OrderChange as OrderChange, type context$1_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$1_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$1_OrderLineItem as OrderLineItem, type context$1_OrderRefunded as OrderRefunded, context$1_OrderStatus as OrderStatus, type context$1_OrderTaxBreakdown as OrderTaxBreakdown, type context$1_OrderTaxInfo as OrderTaxInfo, context$1_PaymentOptionType as PaymentOptionType, type context$1_PaymentRefundFailed as PaymentRefundFailed, type context$1_PaymentRefunded as PaymentRefunded, type context$1_PaymentSettings as PaymentSettings, type context$1_PaymentSettingsSPIConfig as PaymentSettingsSPIConfig, context$1_PaymentStatus as PaymentStatus, type PhysicalProperties$1 as PhysicalProperties, type context$1_PickupAddress as PickupAddress, type context$1_PickupDetails as PickupDetails, context$1_PickupMethod as PickupMethod, type context$1_PlainTextValue as PlainTextValue, type context$1_Price as Price, type context$1_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, type context$1_RefundInitiated as RefundInitiated, type context$1_RefundedPayment as RefundedPayment, type context$1_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type context$1_RegularPaymentRefund as RegularPaymentRefund, type context$1_SavedPaymentMethod as SavedPaymentMethod, type context$1_ShippingInformation as ShippingInformation, type context$1_ShippingInformationChange as ShippingInformationChange, type context$1_ShippingPrice as ShippingPrice, type context$1_ShippingRegion as ShippingRegion, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$1 as SubscriptionFrequency, type context$1_SubscriptionInfo as SubscriptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type context$1_TagList as TagList, type context$1_Tags as Tags, type context$1_TaxSummary as TaxSummary, type context$1_TotalPriceChange as TotalPriceChange, type context$1_TranslatedValue as TranslatedValue, type context$1_V1ShippingInformation as V1ShippingInformation, type VatId$1 as VatId, VatType$1 as VatType, WeightUnit$1 as WeightUnit, type _publicProvideHandlersType$1 as _publicProvideHandlersType, provideHandlers$2 as provideHandlers, provideHandlers$3 as publicProvideHandlers };
|
|
2943
2995
|
}
|
|
2944
2996
|
|
|
2945
2997
|
interface GetValidationViolationsRequest {
|
|
@@ -2534,6 +2534,49 @@ interface AuthorizedPaymentVoided {
|
|
|
2534
2534
|
/** Card issuer's brand. */
|
|
2535
2535
|
brand?: string | null;
|
|
2536
2536
|
}
|
|
2537
|
+
interface RefundInitiated {
|
|
2538
|
+
/** Refund ID. */
|
|
2539
|
+
refundId?: string;
|
|
2540
|
+
/** Refund amount. */
|
|
2541
|
+
amount?: Price;
|
|
2542
|
+
/** Details about the payments being refunded. */
|
|
2543
|
+
payments?: RefundedPayment[];
|
|
2544
|
+
/** Reason for refund. */
|
|
2545
|
+
reason?: string | null;
|
|
2546
|
+
}
|
|
2547
|
+
interface RefundedPayment extends RefundedPaymentKindOneOf {
|
|
2548
|
+
/** Regular payment refund. */
|
|
2549
|
+
regular?: RegularPaymentRefund;
|
|
2550
|
+
/** Payment ID. */
|
|
2551
|
+
paymentId?: string;
|
|
2552
|
+
/** Whether refund was made externally and manually on the payment provider's side. */
|
|
2553
|
+
externalRefund?: boolean;
|
|
2554
|
+
}
|
|
2555
|
+
/** @oneof */
|
|
2556
|
+
interface RefundedPaymentKindOneOf {
|
|
2557
|
+
/** Regular payment refund. */
|
|
2558
|
+
regular?: RegularPaymentRefund;
|
|
2559
|
+
}
|
|
2560
|
+
interface RegularPaymentRefund {
|
|
2561
|
+
/** Refund amount */
|
|
2562
|
+
amount?: Price;
|
|
2563
|
+
/** The last 4 digits of the card number. */
|
|
2564
|
+
lastFourDigits?: string | null;
|
|
2565
|
+
/** Card issuer's brand. */
|
|
2566
|
+
brand?: string | null;
|
|
2567
|
+
}
|
|
2568
|
+
interface PaymentRefunded {
|
|
2569
|
+
/** Refund ID. */
|
|
2570
|
+
refundId?: string;
|
|
2571
|
+
/** Details about the refunded payment. */
|
|
2572
|
+
payment?: RefundedPayment;
|
|
2573
|
+
}
|
|
2574
|
+
interface PaymentRefundFailed {
|
|
2575
|
+
/** Refund ID. */
|
|
2576
|
+
refundId?: string;
|
|
2577
|
+
/** Details about the failed payment refund. */
|
|
2578
|
+
payment?: RefundedPayment;
|
|
2579
|
+
}
|
|
2537
2580
|
declare enum ActivityType {
|
|
2538
2581
|
ORDER_REFUNDED = "ORDER_REFUNDED",
|
|
2539
2582
|
ORDER_PLACED = "ORDER_PLACED",
|
|
@@ -2562,7 +2605,10 @@ declare enum ActivityType {
|
|
|
2562
2605
|
SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
|
|
2563
2606
|
AUTHORIZED_PAYMENT_CREATED = "AUTHORIZED_PAYMENT_CREATED",
|
|
2564
2607
|
AUTHORIZED_PAYMENT_CAPTURED = "AUTHORIZED_PAYMENT_CAPTURED",
|
|
2565
|
-
AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED"
|
|
2608
|
+
AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
|
|
2609
|
+
REFUND_INITIATED = "REFUND_INITIATED",
|
|
2610
|
+
PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
|
|
2611
|
+
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
|
|
2566
2612
|
}
|
|
2567
2613
|
declare enum AttributionSource {
|
|
2568
2614
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -2915,6 +2961,8 @@ type index_d$1_OrderTaxBreakdown = OrderTaxBreakdown;
|
|
|
2915
2961
|
type index_d$1_OrderTaxInfo = OrderTaxInfo;
|
|
2916
2962
|
type index_d$1_PaymentOptionType = PaymentOptionType;
|
|
2917
2963
|
declare const index_d$1_PaymentOptionType: typeof PaymentOptionType;
|
|
2964
|
+
type index_d$1_PaymentRefundFailed = PaymentRefundFailed;
|
|
2965
|
+
type index_d$1_PaymentRefunded = PaymentRefunded;
|
|
2918
2966
|
type index_d$1_PaymentSettings = PaymentSettings;
|
|
2919
2967
|
type index_d$1_PaymentSettingsSPIConfig = PaymentSettingsSPIConfig;
|
|
2920
2968
|
type index_d$1_PaymentStatus = PaymentStatus;
|
|
@@ -2926,6 +2974,10 @@ declare const index_d$1_PickupMethod: typeof PickupMethod;
|
|
|
2926
2974
|
type index_d$1_PlainTextValue = PlainTextValue;
|
|
2927
2975
|
type index_d$1_Price = Price;
|
|
2928
2976
|
type index_d$1_PriceDescription = PriceDescription;
|
|
2977
|
+
type index_d$1_RefundInitiated = RefundInitiated;
|
|
2978
|
+
type index_d$1_RefundedPayment = RefundedPayment;
|
|
2979
|
+
type index_d$1_RefundedPaymentKindOneOf = RefundedPaymentKindOneOf;
|
|
2980
|
+
type index_d$1_RegularPaymentRefund = RegularPaymentRefund;
|
|
2929
2981
|
type index_d$1_SavedPaymentMethod = SavedPaymentMethod;
|
|
2930
2982
|
type index_d$1_ShippingInformation = ShippingInformation;
|
|
2931
2983
|
type index_d$1_ShippingInformationChange = ShippingInformationChange;
|
|
@@ -2939,7 +2991,7 @@ type index_d$1_TotalPriceChange = TotalPriceChange;
|
|
|
2939
2991
|
type index_d$1_TranslatedValue = TranslatedValue;
|
|
2940
2992
|
type index_d$1_V1ShippingInformation = V1ShippingInformation;
|
|
2941
2993
|
declare namespace index_d$1 {
|
|
2942
|
-
export { type index_d$1_Activity as Activity, type index_d$1_ActivityContentOneOf as ActivityContentOneOf, index_d$1_ActivityType as ActivityType, type index_d$1_AdditionalFee as AdditionalFee, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, index_d$1_AttributionSource as AttributionSource, type index_d$1_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$1_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$1_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$1_Balance as Balance, type index_d$1_BalanceSummary as BalanceSummary, type index_d$1_BuyerInfo as BuyerInfo, type index_d$1_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type CatalogReference$1 as CatalogReference, type index_d$1_ChannelInfo as ChannelInfo, index_d$1_ChannelType as ChannelType, type index_d$1_Color as Color, type Context$1 as Context, type Coupon$1 as Coupon, type index_d$1_CreatedBy as CreatedBy, type index_d$1_CreatedByStringOneOf as CreatedByStringOneOf, type index_d$1_CustomActivity as CustomActivity, type CustomField$1 as CustomField, type index_d$1_DeliveryLogistics as DeliveryLogistics, type index_d$1_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type index_d$1_DeliveryTimeSlot as DeliveryTimeSlot, type index_d$1_DescriptionLine as DescriptionLine, type index_d$1_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$1_DescriptionLineName as DescriptionLineName, index_d$1_DescriptionLineType as DescriptionLineType, type index_d$1_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type index_d$1_DigitalFile as DigitalFile, index_d$1_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type index_d$1_DraftOrderChangesApplied as DraftOrderChangesApplied, type ExtendedFields$1 as ExtendedFields, index_d$1_FulfillmentStatus as FulfillmentStatus, type index_d$1_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$1_GetPaymentSettingsRequest as GetPaymentSettingsRequest, type index_d$1_GetPaymentSettingsResponse as GetPaymentSettingsResponse, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type index_d$1_LineItemAmount as LineItemAmount, type index_d$1_LineItemChanges as LineItemChanges, type index_d$1_LineItemDiscount as LineItemDiscount, type index_d$1_LineItemExchangeData as LineItemExchangeData, type index_d$1_LineItemPriceChange as LineItemPriceChange, type index_d$1_LineItemQuantityChange as LineItemQuantityChange, index_d$1_LineItemQuantityChangeType as LineItemQuantityChangeType, type index_d$1_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$1_LineItemTaxInfo as LineItemTaxInfo, type index_d$1_LocationAndQuantity as LocationAndQuantity, type index_d$1_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$1_ManagedDiscount as ManagedDiscount, type index_d$1_ManagedLineItem as ManagedLineItem, type index_d$1_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$1_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type index_d$1_NewExchangeOrderCreated as NewExchangeOrderCreated, type index_d$1_Order as Order, type index_d$1_OrderChange as OrderChange, type index_d$1_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$1_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$1_OrderLineItem as OrderLineItem, type index_d$1_OrderRefunded as OrderRefunded, index_d$1_OrderStatus as OrderStatus, type index_d$1_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$1_OrderTaxInfo as OrderTaxInfo, index_d$1_PaymentOptionType as PaymentOptionType, type index_d$1_PaymentSettings as PaymentSettings, type index_d$1_PaymentSettingsSPIConfig as PaymentSettingsSPIConfig, index_d$1_PaymentStatus as PaymentStatus, type PhysicalProperties$1 as PhysicalProperties, type index_d$1_PickupAddress as PickupAddress, type index_d$1_PickupDetails as PickupDetails, index_d$1_PickupMethod as PickupMethod, type index_d$1_PlainTextValue as PlainTextValue, type index_d$1_Price as Price, type index_d$1_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, type index_d$1_SavedPaymentMethod as SavedPaymentMethod, type index_d$1_ShippingInformation as ShippingInformation, type index_d$1_ShippingInformationChange as ShippingInformationChange, type index_d$1_ShippingPrice as ShippingPrice, type index_d$1_ShippingRegion as ShippingRegion, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$1_SubscriptionInfo as SubscriptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type index_d$1_TagList as TagList, type index_d$1_Tags as Tags, type index_d$1_TaxSummary as TaxSummary, type index_d$1_TotalPriceChange as TotalPriceChange, type index_d$1_TranslatedValue as TranslatedValue, type index_d$1_V1ShippingInformation as V1ShippingInformation, type VatId$1 as VatId, VatType$1 as VatType, WeightUnit$1 as WeightUnit, type _publicProvideHandlersType$1 as _publicProvideHandlersType, provideHandlers$2 as provideHandlers, provideHandlers$3 as publicProvideHandlers };
|
|
2994
|
+
export { type index_d$1_Activity as Activity, type index_d$1_ActivityContentOneOf as ActivityContentOneOf, index_d$1_ActivityType as ActivityType, type index_d$1_AdditionalFee as AdditionalFee, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, index_d$1_AttributionSource as AttributionSource, type index_d$1_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$1_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$1_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$1_Balance as Balance, type index_d$1_BalanceSummary as BalanceSummary, type index_d$1_BuyerInfo as BuyerInfo, type index_d$1_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type CatalogReference$1 as CatalogReference, type index_d$1_ChannelInfo as ChannelInfo, index_d$1_ChannelType as ChannelType, type index_d$1_Color as Color, type Context$1 as Context, type Coupon$1 as Coupon, type index_d$1_CreatedBy as CreatedBy, type index_d$1_CreatedByStringOneOf as CreatedByStringOneOf, type index_d$1_CustomActivity as CustomActivity, type CustomField$1 as CustomField, type index_d$1_DeliveryLogistics as DeliveryLogistics, type index_d$1_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type index_d$1_DeliveryTimeSlot as DeliveryTimeSlot, type index_d$1_DescriptionLine as DescriptionLine, type index_d$1_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$1_DescriptionLineName as DescriptionLineName, index_d$1_DescriptionLineType as DescriptionLineType, type index_d$1_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type index_d$1_DigitalFile as DigitalFile, index_d$1_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type index_d$1_DraftOrderChangesApplied as DraftOrderChangesApplied, type ExtendedFields$1 as ExtendedFields, index_d$1_FulfillmentStatus as FulfillmentStatus, type index_d$1_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$1_GetPaymentSettingsRequest as GetPaymentSettingsRequest, type index_d$1_GetPaymentSettingsResponse as GetPaymentSettingsResponse, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type index_d$1_LineItemAmount as LineItemAmount, type index_d$1_LineItemChanges as LineItemChanges, type index_d$1_LineItemDiscount as LineItemDiscount, type index_d$1_LineItemExchangeData as LineItemExchangeData, type index_d$1_LineItemPriceChange as LineItemPriceChange, type index_d$1_LineItemQuantityChange as LineItemQuantityChange, index_d$1_LineItemQuantityChangeType as LineItemQuantityChangeType, type index_d$1_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$1_LineItemTaxInfo as LineItemTaxInfo, type index_d$1_LocationAndQuantity as LocationAndQuantity, type index_d$1_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$1_ManagedDiscount as ManagedDiscount, type index_d$1_ManagedLineItem as ManagedLineItem, type index_d$1_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$1_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type index_d$1_NewExchangeOrderCreated as NewExchangeOrderCreated, type index_d$1_Order as Order, type index_d$1_OrderChange as OrderChange, type index_d$1_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$1_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$1_OrderLineItem as OrderLineItem, type index_d$1_OrderRefunded as OrderRefunded, index_d$1_OrderStatus as OrderStatus, type index_d$1_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$1_OrderTaxInfo as OrderTaxInfo, index_d$1_PaymentOptionType as PaymentOptionType, type index_d$1_PaymentRefundFailed as PaymentRefundFailed, type index_d$1_PaymentRefunded as PaymentRefunded, type index_d$1_PaymentSettings as PaymentSettings, type index_d$1_PaymentSettingsSPIConfig as PaymentSettingsSPIConfig, index_d$1_PaymentStatus as PaymentStatus, type PhysicalProperties$1 as PhysicalProperties, type index_d$1_PickupAddress as PickupAddress, type index_d$1_PickupDetails as PickupDetails, index_d$1_PickupMethod as PickupMethod, type index_d$1_PlainTextValue as PlainTextValue, type index_d$1_Price as Price, type index_d$1_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, type index_d$1_RefundInitiated as RefundInitiated, type index_d$1_RefundedPayment as RefundedPayment, type index_d$1_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type index_d$1_RegularPaymentRefund as RegularPaymentRefund, type index_d$1_SavedPaymentMethod as SavedPaymentMethod, type index_d$1_ShippingInformation as ShippingInformation, type index_d$1_ShippingInformationChange as ShippingInformationChange, type index_d$1_ShippingPrice as ShippingPrice, type index_d$1_ShippingRegion as ShippingRegion, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$1_SubscriptionInfo as SubscriptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type index_d$1_TagList as TagList, type index_d$1_Tags as Tags, type index_d$1_TaxSummary as TaxSummary, type index_d$1_TotalPriceChange as TotalPriceChange, type index_d$1_TranslatedValue as TranslatedValue, type index_d$1_V1ShippingInformation as V1ShippingInformation, type VatId$1 as VatId, VatType$1 as VatType, WeightUnit$1 as WeightUnit, type _publicProvideHandlersType$1 as _publicProvideHandlersType, provideHandlers$2 as provideHandlers, provideHandlers$3 as publicProvideHandlers };
|
|
2943
2995
|
}
|
|
2944
2996
|
|
|
2945
2997
|
interface GetValidationViolationsRequest {
|