@wix/ecom 1.0.723 → 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.
@@ -18533,6 +18533,11 @@ interface BalanceSummary$3 {
18533
18533
  * @readonly
18534
18534
  */
18535
18535
  balance?: Balance$3;
18536
+ /**
18537
+ * Sum of all authorized payments.
18538
+ * @readonly
18539
+ */
18540
+ authorized?: Price$7;
18536
18541
  }
18537
18542
  /**
18538
18543
  * Order balance. Reflects amount left to be paid on order and is calculated dynamically. Can be negative per balance definition.
@@ -19350,7 +19355,10 @@ declare enum ActivityType$3 {
19350
19355
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
19351
19356
  AUTHORIZED_PAYMENT_CREATED = "AUTHORIZED_PAYMENT_CREATED",
19352
19357
  AUTHORIZED_PAYMENT_CAPTURED = "AUTHORIZED_PAYMENT_CAPTURED",
19353
- AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED"
19358
+ AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
19359
+ REFUND_INITIATED = "REFUND_INITIATED",
19360
+ PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
19361
+ PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
19354
19362
  }
19355
19363
  declare enum AttributionSource$3 {
19356
19364
  UNSPECIFIED = "UNSPECIFIED",
@@ -20030,6 +20038,27 @@ interface AuthorizedPaymentVoidedNonNullableFields$3 {
20030
20038
  paymentId: string;
20031
20039
  amount?: PriceNonNullableFields$7;
20032
20040
  }
20041
+ interface RegularPaymentRefundNonNullableFields$3 {
20042
+ amount?: PriceNonNullableFields$7;
20043
+ }
20044
+ interface RefundedPaymentNonNullableFields$3 {
20045
+ regular?: RegularPaymentRefundNonNullableFields$3;
20046
+ paymentId: string;
20047
+ externalRefund: boolean;
20048
+ }
20049
+ interface RefundInitiatedNonNullableFields$3 {
20050
+ refundId: string;
20051
+ amount?: PriceNonNullableFields$7;
20052
+ payments: RefundedPaymentNonNullableFields$3[];
20053
+ }
20054
+ interface PaymentRefundedNonNullableFields$3 {
20055
+ refundId: string;
20056
+ payment?: RefundedPaymentNonNullableFields$3;
20057
+ }
20058
+ interface PaymentRefundFailedNonNullableFields$3 {
20059
+ refundId: string;
20060
+ payment?: RefundedPaymentNonNullableFields$3;
20061
+ }
20033
20062
  interface ActivityNonNullableFields$3 {
20034
20063
  customActivity?: CustomActivityNonNullableFields$3;
20035
20064
  merchantComment?: MerchantCommentNonNullableFields$3;
@@ -20041,6 +20070,9 @@ interface ActivityNonNullableFields$3 {
20041
20070
  authorizedPaymentCreated?: AuthorizedPaymentCreatedNonNullableFields$3;
20042
20071
  authorizedPaymentCaptured?: AuthorizedPaymentCapturedNonNullableFields$3;
20043
20072
  authorizedPaymentVoided?: AuthorizedPaymentVoidedNonNullableFields$3;
20073
+ refundInitiated?: RefundInitiatedNonNullableFields$3;
20074
+ paymentRefunded?: PaymentRefundedNonNullableFields$3;
20075
+ paymentRefundFailed?: PaymentRefundFailedNonNullableFields$3;
20044
20076
  type: ActivityType$3;
20045
20077
  }
20046
20078
  interface V1CreatedByNonNullableFields$1 {
@@ -20996,6 +21028,11 @@ interface BalanceSummary$2 {
20996
21028
  * @readonly
20997
21029
  */
20998
21030
  balance?: Balance$2;
21031
+ /**
21032
+ * Sum of all authorized payments.
21033
+ * @readonly
21034
+ */
21035
+ authorized?: Price$6;
20999
21036
  }
21000
21037
  /**
21001
21038
  * Order balance. Reflects amount left to be paid on order and is calculated dynamically. Can be negative per balance definition.
@@ -21807,7 +21844,10 @@ declare enum ActivityType$2 {
21807
21844
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
21808
21845
  AUTHORIZED_PAYMENT_CREATED = "AUTHORIZED_PAYMENT_CREATED",
21809
21846
  AUTHORIZED_PAYMENT_CAPTURED = "AUTHORIZED_PAYMENT_CAPTURED",
21810
- AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED"
21847
+ AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
21848
+ REFUND_INITIATED = "REFUND_INITIATED",
21849
+ PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
21850
+ PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
21811
21851
  }
21812
21852
  declare enum AttributionSource$2 {
21813
21853
  UNSPECIFIED = "UNSPECIFIED",
@@ -22481,6 +22521,27 @@ interface AuthorizedPaymentVoidedNonNullableFields$2 {
22481
22521
  paymentId: string;
22482
22522
  amount?: PriceNonNullableFields$6;
22483
22523
  }
22524
+ interface RegularPaymentRefundNonNullableFields$2 {
22525
+ amount?: PriceNonNullableFields$6;
22526
+ }
22527
+ interface RefundedPaymentNonNullableFields$2 {
22528
+ regular?: RegularPaymentRefundNonNullableFields$2;
22529
+ paymentId: string;
22530
+ externalRefund: boolean;
22531
+ }
22532
+ interface RefundInitiatedNonNullableFields$2 {
22533
+ refundId: string;
22534
+ amount?: PriceNonNullableFields$6;
22535
+ payments: RefundedPaymentNonNullableFields$2[];
22536
+ }
22537
+ interface PaymentRefundedNonNullableFields$2 {
22538
+ refundId: string;
22539
+ payment?: RefundedPaymentNonNullableFields$2;
22540
+ }
22541
+ interface PaymentRefundFailedNonNullableFields$2 {
22542
+ refundId: string;
22543
+ payment?: RefundedPaymentNonNullableFields$2;
22544
+ }
22484
22545
  interface ActivityNonNullableFields$2 {
22485
22546
  customActivity?: CustomActivityNonNullableFields$2;
22486
22547
  merchantComment?: MerchantCommentNonNullableFields$2;
@@ -22492,6 +22553,9 @@ interface ActivityNonNullableFields$2 {
22492
22553
  authorizedPaymentCreated?: AuthorizedPaymentCreatedNonNullableFields$2;
22493
22554
  authorizedPaymentCaptured?: AuthorizedPaymentCapturedNonNullableFields$2;
22494
22555
  authorizedPaymentVoided?: AuthorizedPaymentVoidedNonNullableFields$2;
22556
+ refundInitiated?: RefundInitiatedNonNullableFields$2;
22557
+ paymentRefunded?: PaymentRefundedNonNullableFields$2;
22558
+ paymentRefundFailed?: PaymentRefundFailedNonNullableFields$2;
22495
22559
  type: ActivityType$2;
22496
22560
  }
22497
22561
  interface V1CreatedByNonNullableFields {
@@ -24721,7 +24785,10 @@ declare enum ActivityType$1 {
24721
24785
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
24722
24786
  AUTHORIZED_PAYMENT_CREATED = "AUTHORIZED_PAYMENT_CREATED",
24723
24787
  AUTHORIZED_PAYMENT_CAPTURED = "AUTHORIZED_PAYMENT_CAPTURED",
24724
- AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED"
24788
+ AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
24789
+ REFUND_INITIATED = "REFUND_INITIATED",
24790
+ PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
24791
+ PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
24725
24792
  }
24726
24793
  declare enum AttributionSource$1 {
24727
24794
  UNSPECIFIED = "UNSPECIFIED",
@@ -25764,6 +25831,27 @@ interface AuthorizedPaymentVoidedNonNullableFields$1 {
25764
25831
  paymentId: string;
25765
25832
  amount?: PriceNonNullableFields$5;
25766
25833
  }
25834
+ interface RegularPaymentRefundNonNullableFields$1 {
25835
+ amount?: PriceNonNullableFields$5;
25836
+ }
25837
+ interface RefundedPaymentNonNullableFields$1 {
25838
+ regular?: RegularPaymentRefundNonNullableFields$1;
25839
+ paymentId: string;
25840
+ externalRefund: boolean;
25841
+ }
25842
+ interface RefundInitiatedNonNullableFields$1 {
25843
+ refundId: string;
25844
+ amount?: PriceNonNullableFields$5;
25845
+ payments: RefundedPaymentNonNullableFields$1[];
25846
+ }
25847
+ interface PaymentRefundedNonNullableFields$1 {
25848
+ refundId: string;
25849
+ payment?: RefundedPaymentNonNullableFields$1;
25850
+ }
25851
+ interface PaymentRefundFailedNonNullableFields$1 {
25852
+ refundId: string;
25853
+ payment?: RefundedPaymentNonNullableFields$1;
25854
+ }
25767
25855
  interface ActivityNonNullableFields$1 {
25768
25856
  customActivity?: CustomActivityNonNullableFields$1;
25769
25857
  merchantComment?: MerchantCommentNonNullableFields$1;
@@ -25775,6 +25863,9 @@ interface ActivityNonNullableFields$1 {
25775
25863
  authorizedPaymentCreated?: AuthorizedPaymentCreatedNonNullableFields$1;
25776
25864
  authorizedPaymentCaptured?: AuthorizedPaymentCapturedNonNullableFields$1;
25777
25865
  authorizedPaymentVoided?: AuthorizedPaymentVoidedNonNullableFields$1;
25866
+ refundInitiated?: RefundInitiatedNonNullableFields$1;
25867
+ paymentRefunded?: PaymentRefundedNonNullableFields$1;
25868
+ paymentRefundFailed?: PaymentRefundFailedNonNullableFields$1;
25778
25869
  type: ActivityType$1;
25779
25870
  }
25780
25871
  interface CreatedByNonNullableFields$1 {
@@ -26810,7 +26901,10 @@ declare enum ActivityType {
26810
26901
  SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
26811
26902
  AUTHORIZED_PAYMENT_CREATED = "AUTHORIZED_PAYMENT_CREATED",
26812
26903
  AUTHORIZED_PAYMENT_CAPTURED = "AUTHORIZED_PAYMENT_CAPTURED",
26813
- AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED"
26904
+ AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
26905
+ REFUND_INITIATED = "REFUND_INITIATED",
26906
+ PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
26907
+ PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
26814
26908
  }
26815
26909
  declare enum AttributionSource {
26816
26910
  UNSPECIFIED = "UNSPECIFIED",
@@ -27847,6 +27941,27 @@ interface AuthorizedPaymentVoidedNonNullableFields {
27847
27941
  paymentId: string;
27848
27942
  amount?: PriceNonNullableFields$4;
27849
27943
  }
27944
+ interface RegularPaymentRefundNonNullableFields {
27945
+ amount?: PriceNonNullableFields$4;
27946
+ }
27947
+ interface RefundedPaymentNonNullableFields {
27948
+ regular?: RegularPaymentRefundNonNullableFields;
27949
+ paymentId: string;
27950
+ externalRefund: boolean;
27951
+ }
27952
+ interface RefundInitiatedNonNullableFields {
27953
+ refundId: string;
27954
+ amount?: PriceNonNullableFields$4;
27955
+ payments: RefundedPaymentNonNullableFields[];
27956
+ }
27957
+ interface PaymentRefundedNonNullableFields {
27958
+ refundId: string;
27959
+ payment?: RefundedPaymentNonNullableFields;
27960
+ }
27961
+ interface PaymentRefundFailedNonNullableFields {
27962
+ refundId: string;
27963
+ payment?: RefundedPaymentNonNullableFields;
27964
+ }
27850
27965
  interface ActivityNonNullableFields {
27851
27966
  customActivity?: CustomActivityNonNullableFields;
27852
27967
  merchantComment?: MerchantCommentNonNullableFields;
@@ -27858,6 +27973,9 @@ interface ActivityNonNullableFields {
27858
27973
  authorizedPaymentCreated?: AuthorizedPaymentCreatedNonNullableFields;
27859
27974
  authorizedPaymentCaptured?: AuthorizedPaymentCapturedNonNullableFields;
27860
27975
  authorizedPaymentVoided?: AuthorizedPaymentVoidedNonNullableFields;
27976
+ refundInitiated?: RefundInitiatedNonNullableFields;
27977
+ paymentRefunded?: PaymentRefundedNonNullableFields;
27978
+ paymentRefundFailed?: PaymentRefundFailedNonNullableFields;
27861
27979
  type: ActivityType;
27862
27980
  }
27863
27981
  interface CreatedByNonNullableFields {
@@ -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 {