@wix/auto_sdk_ecom_payment-settings 1.0.121 → 1.0.123

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.
@@ -176,7 +176,7 @@ interface Order {
176
176
  * @immutable
177
177
  */
178
178
  purchasedDate?: Date | null;
179
- /** Order Location */
179
+ /** Order location. */
180
180
  businessLocation?: Location;
181
181
  /**
182
182
  * Pay after free trial price summary. Price summary that should be paid for subscriptions after free trial period.
@@ -1546,7 +1546,7 @@ interface Activity extends ActivityContentOneOf {
1546
1546
  orderRefunded?: OrderRefunded;
1547
1547
  /** Details of changes made by the Draft Orders API. */
1548
1548
  draftOrderChangesApplied?: DraftOrderChangesApplied;
1549
- /** Details of the payment method saved for order */
1549
+ /** Details of the payment method saved for the order. */
1550
1550
  savedPaymentMethod?: SavedPaymentMethod;
1551
1551
  /** Details of an authorized payment created. */
1552
1552
  authorizedPaymentCreated?: AuthorizedPaymentCreated;
@@ -1587,7 +1587,7 @@ interface Activity extends ActivityContentOneOf {
1587
1587
  receiptCreated?: ReceiptCreated;
1588
1588
  /** Receipt sent to customer. */
1589
1589
  receiptSent?: ReceiptSent;
1590
- /** Order received a chargeback for one of its' payments. */
1590
+ /** Order received a chargeback for one of its payments. */
1591
1591
  chargebackCreated?: ChargebackCreated;
1592
1592
  /** Chargeback reversed for one of the order's payments. */
1593
1593
  chargebackReversed?: ChargebackReversed;
@@ -1626,7 +1626,7 @@ interface ActivityContentOneOf {
1626
1626
  orderRefunded?: OrderRefunded;
1627
1627
  /** Details of changes made by the Draft Orders API. */
1628
1628
  draftOrderChangesApplied?: DraftOrderChangesApplied;
1629
- /** Details of the payment method saved for order */
1629
+ /** Details of the payment method saved for the order. */
1630
1630
  savedPaymentMethod?: SavedPaymentMethod;
1631
1631
  /** Details of an authorized payment created. */
1632
1632
  authorizedPaymentCreated?: AuthorizedPaymentCreated;
@@ -1667,7 +1667,7 @@ interface ActivityContentOneOf {
1667
1667
  receiptCreated?: ReceiptCreated;
1668
1668
  /** Receipt sent to customer. */
1669
1669
  receiptSent?: ReceiptSent;
1670
- /** Order received a chargeback for one of its' payments. */
1670
+ /** Order received a chargeback for one of its payments. */
1671
1671
  chargebackCreated?: ChargebackCreated;
1672
1672
  /** Chargeback reversed for one of the order's payments. */
1673
1673
  chargebackReversed?: ChargebackReversed;
@@ -1686,7 +1686,7 @@ interface CustomActivity {
1686
1686
  /** Additional data in key-value form. For example, `{ "Ticket number": "123456" }`. */
1687
1687
  additionalData?: Record<string, string>;
1688
1688
  }
1689
- /** Store owner added a comment */
1689
+ /** Merchant added a comment. */
1690
1690
  interface MerchantComment {
1691
1691
  /**
1692
1692
  * Merchant comment message.
@@ -1936,13 +1936,13 @@ interface ShippingInformation {
1936
1936
  /** Payment method is saved for order */
1937
1937
  interface SavedPaymentMethod {
1938
1938
  /**
1939
- * Payment method name
1939
+ * Payment method name.
1940
1940
  * @minLength 1
1941
1941
  * @maxLength 100
1942
1942
  */
1943
1943
  name?: string;
1944
1944
  /**
1945
- * Payment method description
1945
+ * Payment method description.
1946
1946
  * @minLength 1
1947
1947
  * @maxLength 100
1948
1948
  */
@@ -1950,11 +1950,11 @@ interface SavedPaymentMethod {
1950
1950
  }
1951
1951
  interface AuthorizedPaymentCreated {
1952
1952
  /**
1953
- * Payment ID of payment associated with this activity
1953
+ * Payment ID of payment associated with this activity.
1954
1954
  * @format GUID
1955
1955
  */
1956
1956
  paymentId?: string;
1957
- /** Payment amount */
1957
+ /** Payment amount. */
1958
1958
  amount?: Price;
1959
1959
  /**
1960
1960
  * The last 4 digits of the card number.
@@ -1969,11 +1969,11 @@ interface AuthorizedPaymentCreated {
1969
1969
  }
1970
1970
  interface AuthorizedPaymentCaptured {
1971
1971
  /**
1972
- * Payment ID of payment associated with this activity
1972
+ * Payment ID of payment associated with this activity.
1973
1973
  * @format GUID
1974
1974
  */
1975
1975
  paymentId?: string;
1976
- /** Payment amount */
1976
+ /** Payment amount. */
1977
1977
  amount?: Price;
1978
1978
  /**
1979
1979
  * The last 4 digits of the card number.
@@ -1988,11 +1988,11 @@ interface AuthorizedPaymentCaptured {
1988
1988
  }
1989
1989
  interface AuthorizedPaymentVoided {
1990
1990
  /**
1991
- * Payment ID of payment associated with this activity
1991
+ * Payment ID of payment associated with this activity.
1992
1992
  * @format GUID
1993
1993
  */
1994
1994
  paymentId?: string;
1995
- /** Payment amount */
1995
+ /** Payment amount. */
1996
1996
  amount?: Price;
1997
1997
  /**
1998
1998
  * The last 4 digits of the card number.
@@ -2050,7 +2050,7 @@ interface RefundedPaymentKindOneOf {
2050
2050
  membership?: MembershipPaymentRefund;
2051
2051
  }
2052
2052
  interface RegularPaymentRefund {
2053
- /** Refund amount */
2053
+ /** Refund amount. */
2054
2054
  amount?: Price;
2055
2055
  /**
2056
2056
  * The last 4 digits of the card number.
@@ -2065,17 +2065,17 @@ interface RegularPaymentRefund {
2065
2065
  }
2066
2066
  interface GiftCardPaymentRefund {
2067
2067
  /**
2068
- * Gift card payment ID
2068
+ * Gift card payment ID.
2069
2069
  * @minLength 1
2070
2070
  * @maxLength 100
2071
2071
  */
2072
2072
  giftCardPaymentId?: string | null;
2073
- /** Refund amount */
2073
+ /** Refund amount. */
2074
2074
  amount?: Price;
2075
2075
  }
2076
2076
  interface MembershipPaymentRefund {
2077
2077
  /**
2078
- * Membership ID
2078
+ * Membership ID.
2079
2079
  * @minLength 1
2080
2080
  * @maxLength 100
2081
2081
  */
@@ -2100,10 +2100,10 @@ interface PaymentRefundFailed {
2100
2100
  payment?: RefundedPayment;
2101
2101
  }
2102
2102
  interface RefundedAsStoreCredit {
2103
- /** Refund amount */
2103
+ /** Refund amount. */
2104
2104
  amount?: Price;
2105
2105
  /**
2106
- * Reason for refund
2106
+ * Reason for refund.
2107
2107
  * @maxLength 100
2108
2108
  */
2109
2109
  reason?: string | null;
@@ -2112,7 +2112,7 @@ interface PaymentPending extends PaymentPendingPaymentDetailsOneOf {
2112
2112
  /** Regular payment. */
2113
2113
  regular?: RegularPayment;
2114
2114
  /**
2115
- * Payment ID of payment associated with this activity
2115
+ * Payment ID of payment associated with this activity.
2116
2116
  * @format GUID
2117
2117
  */
2118
2118
  paymentId?: string;
@@ -2123,14 +2123,14 @@ interface PaymentPendingPaymentDetailsOneOf {
2123
2123
  regular?: RegularPayment;
2124
2124
  }
2125
2125
  interface RegularPayment extends RegularPaymentPaymentMethodDetailsOneOf {
2126
- /** Whether regular card used */
2126
+ /** Credit card details. */
2127
2127
  creditCardDetails?: CreditCardDetails;
2128
- /** Payment amount */
2128
+ /** Payment amount. */
2129
2129
  amount?: Price;
2130
2130
  }
2131
2131
  /** @oneof */
2132
2132
  interface RegularPaymentPaymentMethodDetailsOneOf {
2133
- /** Whether regular card used */
2133
+ /** Credit card details. */
2134
2134
  creditCardDetails?: CreditCardDetails;
2135
2135
  }
2136
2136
  interface CreditCardDetails {
@@ -2149,7 +2149,7 @@ interface PaymentCanceled extends PaymentCanceledPaymentDetailsOneOf {
2149
2149
  /** Regular payment. */
2150
2150
  regular?: RegularPayment;
2151
2151
  /**
2152
- * Payment ID of payment associated with this activity
2152
+ * Payment ID of payment associated with this activity.
2153
2153
  * @format GUID
2154
2154
  */
2155
2155
  paymentId?: string;
@@ -2163,7 +2163,7 @@ interface PaymentDeclined extends PaymentDeclinedPaymentDetailsOneOf {
2163
2163
  /** Regular payment. */
2164
2164
  regular?: RegularPayment;
2165
2165
  /**
2166
- * Payment ID of payment associated with this activity
2166
+ * Payment ID of payment associated with this activity.
2167
2167
  * @format GUID
2168
2168
  */
2169
2169
  paymentId?: string;
@@ -2174,31 +2174,31 @@ interface PaymentDeclinedPaymentDetailsOneOf {
2174
2174
  regular?: RegularPayment;
2175
2175
  }
2176
2176
  interface ReceiptCreated extends ReceiptCreatedReceiptInfoOneOf {
2177
- /** Receipt created by Wix */
2177
+ /** Receipt created by Wix. */
2178
2178
  wixReceipt?: WixReceipt;
2179
2179
  /** Receipt created by an external system. */
2180
2180
  externalReceipt?: ExternalReceipt;
2181
2181
  /**
2182
- * Payment ID of payment associated with this activity
2182
+ * Payment ID of payment associated with this activity.
2183
2183
  * @format GUID
2184
2184
  */
2185
2185
  paymentId?: string;
2186
2186
  }
2187
2187
  /** @oneof */
2188
2188
  interface ReceiptCreatedReceiptInfoOneOf {
2189
- /** Receipt created by Wix */
2189
+ /** Receipt created by Wix. */
2190
2190
  wixReceipt?: WixReceipt;
2191
2191
  /** Receipt created by an external system. */
2192
2192
  externalReceipt?: ExternalReceipt;
2193
2193
  }
2194
2194
  interface WixReceipt {
2195
2195
  /**
2196
- * Receipt ID
2196
+ * Receipt ID.
2197
2197
  * @format GUID
2198
2198
  */
2199
2199
  receiptId?: string;
2200
2200
  /**
2201
- * Display number of receipt
2201
+ * Display number of receipt.
2202
2202
  * @minLength 1
2203
2203
  * @maxLength 40
2204
2204
  */
@@ -2206,31 +2206,31 @@ interface WixReceipt {
2206
2206
  }
2207
2207
  interface ExternalReceipt {
2208
2208
  /**
2209
- * Receipt ID
2209
+ * Receipt ID.
2210
2210
  * @maxLength 100
2211
2211
  */
2212
2212
  receiptId?: string | null;
2213
2213
  /**
2214
- * Display number of receipt
2214
+ * Display number of receipt.
2215
2215
  * @minLength 1
2216
2216
  * @maxLength 40
2217
2217
  */
2218
2218
  displayNumber?: string | null;
2219
2219
  }
2220
2220
  interface ReceiptSent extends ReceiptSentReceiptInfoOneOf {
2221
- /** Receipt created by Wix */
2221
+ /** Receipt created by Wix. */
2222
2222
  wixReceipt?: WixReceipt;
2223
2223
  /** Receipt created by an external system. */
2224
2224
  externalReceipt?: ExternalReceipt;
2225
2225
  /**
2226
- * Payment ID of payment associated with this activity
2226
+ * Payment ID of payment associated with this activity.
2227
2227
  * @format GUID
2228
2228
  */
2229
2229
  paymentId?: string;
2230
2230
  }
2231
2231
  /** @oneof */
2232
2232
  interface ReceiptSentReceiptInfoOneOf {
2233
- /** Receipt created by Wix */
2233
+ /** Receipt created by Wix. */
2234
2234
  wixReceipt?: WixReceipt;
2235
2235
  /** Receipt created by an external system. */
2236
2236
  externalReceipt?: ExternalReceipt;
@@ -1,5 +1,5 @@
1
- import { p as provideHandlers$1 } from './interfaces-ecommerce-v1-payment-settings-provider.public-DRCEVJRd.mjs';
2
- export { aw as Activity, ax as ActivityContentOneOf, bo as ActivityType, bz as AdditionalFee, dj as AdditionalFeeAdditionalFeeSource, bA as AdditionalFeeSource, a1 as Address, a3 as AddressLocation, cj as AddressWithContact, A as AdjustmentType, d7 as AggregatedTaxBreakdown, a0 as ApiAddressWithContact, cw as ApplicableLineItems, cJ as ApplicationError, ak as AppliedDiscount, al as AppliedDiscountDiscountSourceOneOf, cU as AppliedDiscountDiscountType, bq as AttributionSource, aY as AuthorizedPaymentCaptured, aX as AuthorizedPaymentCreated, aZ as AuthorizedPaymentVoided, d5 as AutoTaxFallbackCalculationDetails, bx as Balance, bw as BalanceSummary, de as BalanceType, x as BillingAdjustment, y as BillingAdjustmentPriceSummary, B as BillingSettings, cC as BuyerInfo, cD as BuyerInfoIdOneOf, cF as CalculationErrors, cG as CalculationErrorsShippingCalculationErrorOneOf, cu as Carrier, cP as CarrierError, cO as CarrierErrors, cy as CarrierServiceOption, by as CashRounding, cc as CatalogOverrideFields, C as CatalogReference, bt as ChannelInfo, bu as ChannelType, dz as Charge, bQ as ChargeType, bm as ChargebackCreated, bn as ChargebackReversed, bU as Checkout, g as Color, dD as Context, dk as ConversionInfo, an as Coupon, d8 as CreatedBy, d9 as CreatedByIdOneOf, bb as CreditCardDetails, _ as CurrencyConversionDetails, ay as CustomActivity, bI as CustomAllowedActions, dw as CustomContentReference, bv as CustomField, dv as CustomSettings, ct as DeliveryAllocation, a8 as DeliveryLogistics, a9 as DeliveryLogisticsAddressOneOf, ad as DeliveryTimeSlot, c8 as Description, D as DescriptionLine, d as DescriptionLineDescriptionLineValueOneOf, e as DescriptionLineName, h as DescriptionLineType, c as DescriptionLineValueOneOf, cH as Details, cI as DetailsKindOneOf, r as DigitalFile, j as Dimensions, k as DimensionsUnit, aq as DiscountReason, ar as DiscountRule, as as DiscountRuleName, am as DiscountType, aE as DraftOrderChangesApplied, M as ExtendedFields, bj as ExternalReceipt, dx as ExternalReference, d6 as FallbackReason, cM as FieldViolation, ca as FileType, F as FocalPoint, bN as FormIdentifier, bM as FormInfo, w as FreeTrialPeriod, Y as FulfillmentStatus, bB as FulfillmentStatusesAggregate, a4 as FullAddressContactDetails, bT as GetPaymentSettingsForCheckoutRequest, dA as GetPaymentSettingsForCheckoutResponse, G as GetPaymentSettingsRequest, bR as GetPaymentSettingsResponse, cR as GiftCard, cQ as GiftCardCalculationError, b2 as GiftCardPaymentRefund, c2 as Group, dF as IdentificationData, dG as IdentificationDataIdOneOf, dE as IdentityType, df as InvalidMembership, b$ as ItemAvailabilityInfo, c0 as ItemAvailabilityStatus, au as ItemCombination, av as ItemCombinationLineItem, cg as ItemModifier, o as ItemTaxFullDetails, I as ItemType, l as ItemTypeItemTypeDataOneOf, m as ItemTypePreset, J as JurisdictionType, bV as LineItem, aR as LineItemAmount, aH as LineItemChanges, aM as LineItemDescriptionLineChange, at as LineItemDiscount, aD as LineItemExchangeData, aN as LineItemModifiersChange, aK as LineItemPriceChange, aL as LineItemProductNameChange, aI as LineItemQuantityChange, aJ as LineItemQuantityChangeType, q as LineItemTaxBreakdown, L as LineItemTaxInfo, bE as Location, E as LocationAndQuantity, aS as ManagedAdditionalFee, aP as ManagedDiscount, aO as ManagedLineItem, d4 as ManualCalculationReason, db as Membership, dc as MembershipName, da as MembershipOptions, dd as MembershipPaymentCredits, b3 as MembershipPaymentRefund, az as MerchantComment, ao as MerchantDiscount, ap as MerchantDiscountMerchantDiscountReasonOneOf, cf as ModifierGroup, bW as MultiCurrencyPrice, dr as NameInLineItem, dq as NameInOther, aC as NewExchangeOrderCreated, O as Order, bJ as OrderActionType, bp as OrderActivityTypeEnumActivityType, aF as OrderChange, aG as OrderChangeValueOneOf, aB as OrderCreatedFromExchange, a as OrderLineItem, aA as OrderRefunded, bF as OrderSettings, bG as OrderSettingsAllowedActionsOneOf, bH as OrderSettingsEditableByOneOf, ag as OrderStatus, aj as OrderTaxBreakdown, ai as OrderTaxInfo, dt as Other, cB as OtherCharge, bK as OwnerApps, bc as PaymentCanceled, bd as PaymentCanceledPaymentDetailsOneOf, be as PaymentDeclined, bf as PaymentDeclinedPaymentDetailsOneOf, cd as PaymentOption, n as PaymentOptionType, b7 as PaymentPending, b8 as PaymentPendingPaymentDetailsOneOf, b5 as PaymentRefundFailed, b4 as PaymentRefunded, bS as PaymentSettings, dC as PaymentSettingsSPIConfig, X as PaymentStatus, i as PhysicalProperties, ab as PickupAddress, aa as PickupDetails, co as PickupDetailsPickupMethod, ac as PickupMethod, f as PlainTextValue, bP as PlatformFee, ci as PlatformFeeChargeType, bO as PlatformFeeSummary, ce as Policy, b as Price, z as PriceDescription, $ as PriceSummary, P as ProductName, d3 as RateType, bg as ReceiptCreated, bh as ReceiptCreatedReceiptInfoOneOf, bk as ReceiptSent, bl as ReceiptSentReceiptInfoOneOf, a_ as RefundInitiated, b6 as RefundedAsStoreCredit, a$ as RefundedPayment, b0 as RefundedPaymentKindOneOf, cv as Region, b9 as RegularPayment, ba as RegularPaymentPaymentMethodDetailsOneOf, b1 as RegularPaymentRefund, R as RestockLocation, cL as RuleType, aW as SavedPaymentMethod, c1 as Scope, c9 as SecuredMedia, cl as SelectedCarrierServiceOption, cr as SelectedCarrierServiceOptionOtherCharge, cq as SelectedCarrierServiceOptionPrices, dh as SelectedMembership, dg as SelectedMemberships, cb as ServiceProperties, dm as Severity, ck as ShippingInfo, aV as ShippingInformation, aU as ShippingInformationChange, cz as ShippingOption, ae as ShippingPrice, af as ShippingRegion, bL as SpecificItemsCouponBehavior, a2 as StreetAddress, dy as SubscriptionCharges, t as SubscriptionDescription, v as SubscriptionFrequency, S as SubscriptionInfo, c3 as SubscriptionOptionInfo, u as SubscriptionSettings, s as SubscriptionTitle, ds as SuggestedFix, cN as SystemError, bD as TagList, bC as Tags, dn as Target, du as TargetLineItem, dp as TargetTargetTypeOneOf, bZ as TaxBreakdown, d1 as TaxCalculationDetails, d2 as TaxCalculationDetailsCalculationDetailsOneOf, bY as TaxRateBreakdown, ah as TaxSummary, T as TaxableAddress, H as TaxableAddressTaxableAddressDataOneOf, K as TaxableAddressType, c7 as Title, aT as TotalPriceChange, N as TranslatableString, aQ as TranslatedValue, di as V1AdditionalFee, cS as V1AppliedDiscount, cT as V1AppliedDiscountDiscountSourceOneOf, c6 as V1BillingSettings, U as V1BuyerInfo, W as V1BuyerInfoIdOneOf, cs as V1ChargeType, cV as V1Coupon, br as V1CreatedBy, bs as V1CreatedByStringOneOf, cm as V1DeliveryLogistics, cp as V1DeliveryTimeSlot, cX as V1DiscountRule, cY as V1DiscountRuleName, c5 as V1FreeTrialPeriod, c_ as V1ItemCombination, c$ as V1ItemCombinationLineItem, Q as V1ItemModifier, bX as V1ItemTaxFullDetails, b_ as V1JurisdictionType, cZ as V1LineItemDiscount, cW as V1MerchantDiscount, V as V1ModifierGroup, dB as V1PaymentOption, cn as V1PickupDetails, ch as V1PlatformFee, cE as V1PriceSummary, a7 as V1ShippingInformation, cA as V1ShippingPrice, cx as V1ShippingRegion, c4 as V1SubscriptionSettings, d0 as V1TaxSummary, cK as ValidationError, a5 as VatId, a6 as VatType, dl as Violation, Z as WeightUnit, bi as WixReceipt } from './interfaces-ecommerce-v1-payment-settings-provider.public-DRCEVJRd.mjs';
1
+ import { p as provideHandlers$1 } from './interfaces-ecommerce-v1-payment-settings-provider.public-ESNnYK59.mjs';
2
+ export { aw as Activity, ax as ActivityContentOneOf, bo as ActivityType, bz as AdditionalFee, dj as AdditionalFeeAdditionalFeeSource, bA as AdditionalFeeSource, a1 as Address, a3 as AddressLocation, cj as AddressWithContact, A as AdjustmentType, d7 as AggregatedTaxBreakdown, a0 as ApiAddressWithContact, cw as ApplicableLineItems, cJ as ApplicationError, ak as AppliedDiscount, al as AppliedDiscountDiscountSourceOneOf, cU as AppliedDiscountDiscountType, bq as AttributionSource, aY as AuthorizedPaymentCaptured, aX as AuthorizedPaymentCreated, aZ as AuthorizedPaymentVoided, d5 as AutoTaxFallbackCalculationDetails, bx as Balance, bw as BalanceSummary, de as BalanceType, x as BillingAdjustment, y as BillingAdjustmentPriceSummary, B as BillingSettings, cC as BuyerInfo, cD as BuyerInfoIdOneOf, cF as CalculationErrors, cG as CalculationErrorsShippingCalculationErrorOneOf, cu as Carrier, cP as CarrierError, cO as CarrierErrors, cy as CarrierServiceOption, by as CashRounding, cc as CatalogOverrideFields, C as CatalogReference, bt as ChannelInfo, bu as ChannelType, dz as Charge, bQ as ChargeType, bm as ChargebackCreated, bn as ChargebackReversed, bU as Checkout, g as Color, dD as Context, dk as ConversionInfo, an as Coupon, d8 as CreatedBy, d9 as CreatedByIdOneOf, bb as CreditCardDetails, _ as CurrencyConversionDetails, ay as CustomActivity, bI as CustomAllowedActions, dw as CustomContentReference, bv as CustomField, dv as CustomSettings, ct as DeliveryAllocation, a8 as DeliveryLogistics, a9 as DeliveryLogisticsAddressOneOf, ad as DeliveryTimeSlot, c8 as Description, D as DescriptionLine, d as DescriptionLineDescriptionLineValueOneOf, e as DescriptionLineName, h as DescriptionLineType, c as DescriptionLineValueOneOf, cH as Details, cI as DetailsKindOneOf, r as DigitalFile, j as Dimensions, k as DimensionsUnit, aq as DiscountReason, ar as DiscountRule, as as DiscountRuleName, am as DiscountType, aE as DraftOrderChangesApplied, M as ExtendedFields, bj as ExternalReceipt, dx as ExternalReference, d6 as FallbackReason, cM as FieldViolation, ca as FileType, F as FocalPoint, bN as FormIdentifier, bM as FormInfo, w as FreeTrialPeriod, Y as FulfillmentStatus, bB as FulfillmentStatusesAggregate, a4 as FullAddressContactDetails, bT as GetPaymentSettingsForCheckoutRequest, dA as GetPaymentSettingsForCheckoutResponse, G as GetPaymentSettingsRequest, bR as GetPaymentSettingsResponse, cR as GiftCard, cQ as GiftCardCalculationError, b2 as GiftCardPaymentRefund, c2 as Group, dF as IdentificationData, dG as IdentificationDataIdOneOf, dE as IdentityType, df as InvalidMembership, b$ as ItemAvailabilityInfo, c0 as ItemAvailabilityStatus, au as ItemCombination, av as ItemCombinationLineItem, cg as ItemModifier, o as ItemTaxFullDetails, I as ItemType, l as ItemTypeItemTypeDataOneOf, m as ItemTypePreset, J as JurisdictionType, bV as LineItem, aR as LineItemAmount, aH as LineItemChanges, aM as LineItemDescriptionLineChange, at as LineItemDiscount, aD as LineItemExchangeData, aN as LineItemModifiersChange, aK as LineItemPriceChange, aL as LineItemProductNameChange, aI as LineItemQuantityChange, aJ as LineItemQuantityChangeType, q as LineItemTaxBreakdown, L as LineItemTaxInfo, bE as Location, E as LocationAndQuantity, aS as ManagedAdditionalFee, aP as ManagedDiscount, aO as ManagedLineItem, d4 as ManualCalculationReason, db as Membership, dc as MembershipName, da as MembershipOptions, dd as MembershipPaymentCredits, b3 as MembershipPaymentRefund, az as MerchantComment, ao as MerchantDiscount, ap as MerchantDiscountMerchantDiscountReasonOneOf, cf as ModifierGroup, bW as MultiCurrencyPrice, dr as NameInLineItem, dq as NameInOther, aC as NewExchangeOrderCreated, O as Order, bJ as OrderActionType, bp as OrderActivityTypeEnumActivityType, aF as OrderChange, aG as OrderChangeValueOneOf, aB as OrderCreatedFromExchange, a as OrderLineItem, aA as OrderRefunded, bF as OrderSettings, bG as OrderSettingsAllowedActionsOneOf, bH as OrderSettingsEditableByOneOf, ag as OrderStatus, aj as OrderTaxBreakdown, ai as OrderTaxInfo, dt as Other, cB as OtherCharge, bK as OwnerApps, bc as PaymentCanceled, bd as PaymentCanceledPaymentDetailsOneOf, be as PaymentDeclined, bf as PaymentDeclinedPaymentDetailsOneOf, cd as PaymentOption, n as PaymentOptionType, b7 as PaymentPending, b8 as PaymentPendingPaymentDetailsOneOf, b5 as PaymentRefundFailed, b4 as PaymentRefunded, bS as PaymentSettings, dC as PaymentSettingsSPIConfig, X as PaymentStatus, i as PhysicalProperties, ab as PickupAddress, aa as PickupDetails, co as PickupDetailsPickupMethod, ac as PickupMethod, f as PlainTextValue, bP as PlatformFee, ci as PlatformFeeChargeType, bO as PlatformFeeSummary, ce as Policy, b as Price, z as PriceDescription, $ as PriceSummary, P as ProductName, d3 as RateType, bg as ReceiptCreated, bh as ReceiptCreatedReceiptInfoOneOf, bk as ReceiptSent, bl as ReceiptSentReceiptInfoOneOf, a_ as RefundInitiated, b6 as RefundedAsStoreCredit, a$ as RefundedPayment, b0 as RefundedPaymentKindOneOf, cv as Region, b9 as RegularPayment, ba as RegularPaymentPaymentMethodDetailsOneOf, b1 as RegularPaymentRefund, R as RestockLocation, cL as RuleType, aW as SavedPaymentMethod, c1 as Scope, c9 as SecuredMedia, cl as SelectedCarrierServiceOption, cr as SelectedCarrierServiceOptionOtherCharge, cq as SelectedCarrierServiceOptionPrices, dh as SelectedMembership, dg as SelectedMemberships, cb as ServiceProperties, dm as Severity, ck as ShippingInfo, aV as ShippingInformation, aU as ShippingInformationChange, cz as ShippingOption, ae as ShippingPrice, af as ShippingRegion, bL as SpecificItemsCouponBehavior, a2 as StreetAddress, dy as SubscriptionCharges, t as SubscriptionDescription, v as SubscriptionFrequency, S as SubscriptionInfo, c3 as SubscriptionOptionInfo, u as SubscriptionSettings, s as SubscriptionTitle, ds as SuggestedFix, cN as SystemError, bD as TagList, bC as Tags, dn as Target, du as TargetLineItem, dp as TargetTargetTypeOneOf, bZ as TaxBreakdown, d1 as TaxCalculationDetails, d2 as TaxCalculationDetailsCalculationDetailsOneOf, bY as TaxRateBreakdown, ah as TaxSummary, T as TaxableAddress, H as TaxableAddressTaxableAddressDataOneOf, K as TaxableAddressType, c7 as Title, aT as TotalPriceChange, N as TranslatableString, aQ as TranslatedValue, di as V1AdditionalFee, cS as V1AppliedDiscount, cT as V1AppliedDiscountDiscountSourceOneOf, c6 as V1BillingSettings, U as V1BuyerInfo, W as V1BuyerInfoIdOneOf, cs as V1ChargeType, cV as V1Coupon, br as V1CreatedBy, bs as V1CreatedByStringOneOf, cm as V1DeliveryLogistics, cp as V1DeliveryTimeSlot, cX as V1DiscountRule, cY as V1DiscountRuleName, c5 as V1FreeTrialPeriod, c_ as V1ItemCombination, c$ as V1ItemCombinationLineItem, Q as V1ItemModifier, bX as V1ItemTaxFullDetails, b_ as V1JurisdictionType, cZ as V1LineItemDiscount, cW as V1MerchantDiscount, V as V1ModifierGroup, dB as V1PaymentOption, cn as V1PickupDetails, ch as V1PlatformFee, cE as V1PriceSummary, a7 as V1ShippingInformation, cA as V1ShippingPrice, cx as V1ShippingRegion, c4 as V1SubscriptionSettings, d0 as V1TaxSummary, cK as ValidationError, a5 as VatId, a6 as VatType, dl as Violation, Z as WeightUnit, bi as WixReceipt } from './interfaces-ecommerce-v1-payment-settings-provider.public-ESNnYK59.mjs';
3
3
  import { BuildServicePluginDefinition } from '@wix/sdk-types';
4
4
 
5
5
  declare const provideHandlers: BuildServicePluginDefinition<typeof provideHandlers$1> & typeof provideHandlers$1;