@wix/auto_sdk_ecom_payment-settings 1.0.95 → 1.0.97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/{interfaces-ecommerce-v1-payment-settings-provider.public-CXHtHGe3.d.ts → interfaces-ecommerce-v1-payment-settings-provider.public-Dw0J2wDV.d.ts} +45 -37
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/{interfaces-ecommerce-v1-payment-settings-provider.public-CXHtHGe3.d.mts → interfaces-ecommerce-v1-payment-settings-provider.public-Dw0J2wDV.d.mts} +45 -37
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/{interfaces-ecommerce-v1-payment-settings-provider.public-CXHtHGe3.d.ts → interfaces-ecommerce-v1-payment-settings-provider.public-Dw0J2wDV.d.ts} +45 -37
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/{interfaces-ecommerce-v1-payment-settings-provider.public-CXHtHGe3.d.mts → interfaces-ecommerce-v1-payment-settings-provider.public-Dw0J2wDV.d.mts} +45 -37
- package/package.json +2 -2
|
@@ -4,6 +4,11 @@ interface GetPaymentSettingsRequest {
|
|
|
4
4
|
/** Order. */
|
|
5
5
|
order?: Order;
|
|
6
6
|
}
|
|
7
|
+
/**
|
|
8
|
+
* An order represents a completed purchase from a buyer. Orders are created through the checkout flow or manually via the Create Order endpoint.
|
|
9
|
+
*
|
|
10
|
+
* The order contains details about purchased items, buyer and recipient information, pricing, tax, shipping, fulfillment status, and payment status.
|
|
11
|
+
*/
|
|
7
12
|
interface Order {
|
|
8
13
|
/**
|
|
9
14
|
* Order ID.
|
|
@@ -150,10 +155,10 @@ interface Order {
|
|
|
150
155
|
*/
|
|
151
156
|
purchaseFlowId?: string | null;
|
|
152
157
|
/**
|
|
153
|
-
*
|
|
158
|
+
* Final recipient's address and contact details.
|
|
154
159
|
*
|
|
155
|
-
* This field
|
|
156
|
-
* + The chosen shipping option is pickup point or store pickup.
|
|
160
|
+
* This field represents who will ultimately receive the order. It may differ from `shippingInfo.logistics.shippingDestination` when:
|
|
161
|
+
* + The chosen shipping option is a pickup point or store pickup, where `shippingDestination` contains the pickup location.
|
|
157
162
|
* + No shipping option is selected.
|
|
158
163
|
*/
|
|
159
164
|
recipientInfo?: ApiAddressWithContact;
|
|
@@ -185,15 +190,13 @@ interface OrderLineItem {
|
|
|
185
190
|
_id?: string;
|
|
186
191
|
/**
|
|
187
192
|
* Item name.
|
|
193
|
+
*
|
|
188
194
|
* + Stores - `product.name`
|
|
189
195
|
* + Bookings - `service.info.name`
|
|
190
196
|
* + Events - `ticket.name`
|
|
191
197
|
*/
|
|
192
198
|
productName?: ProductName;
|
|
193
|
-
/**
|
|
194
|
-
* References to the line item's origin catalog.
|
|
195
|
-
* This field may be empty in the case of a custom line item.
|
|
196
|
-
*/
|
|
199
|
+
/** References to the line item's origin catalog. Empty for custom line items. */
|
|
197
200
|
catalogReference?: CatalogReference;
|
|
198
201
|
/**
|
|
199
202
|
* Line item quantity.
|
|
@@ -850,25 +853,25 @@ interface V1ItemModifier {
|
|
|
850
853
|
/** The price of the modifier. */
|
|
851
854
|
price?: Price;
|
|
852
855
|
}
|
|
853
|
-
/** Buyer
|
|
856
|
+
/** Buyer information. */
|
|
854
857
|
interface V1BuyerInfo extends V1BuyerInfoIdOneOf {
|
|
855
858
|
/**
|
|
856
|
-
* Visitor ID
|
|
859
|
+
* Visitor ID. Returned when the buyer isn't a logged-in site member.
|
|
857
860
|
* @format GUID
|
|
858
861
|
*/
|
|
859
862
|
visitorId?: string;
|
|
860
863
|
/**
|
|
861
|
-
* Member ID
|
|
864
|
+
* Member ID. Returned when the buyer is a logged-in site member.
|
|
862
865
|
* @format GUID
|
|
863
866
|
*/
|
|
864
867
|
memberId?: string;
|
|
865
868
|
/**
|
|
866
|
-
* Contact ID.
|
|
869
|
+
* Contact ID. Automatically created if one doesn't exist. For more information, see [Contacts API](https://dev.wix.com/docs/api-reference/crm/members-contacts/contacts/contacts/contact-v4/introduction).
|
|
867
870
|
* @format GUID
|
|
868
871
|
*/
|
|
869
872
|
contactId?: string | null;
|
|
870
873
|
/**
|
|
871
|
-
* Buyer email address.
|
|
874
|
+
* Buyer's email address.
|
|
872
875
|
* @format EMAIL
|
|
873
876
|
*/
|
|
874
877
|
email?: string | null;
|
|
@@ -876,12 +879,12 @@ interface V1BuyerInfo extends V1BuyerInfoIdOneOf {
|
|
|
876
879
|
/** @oneof */
|
|
877
880
|
interface V1BuyerInfoIdOneOf {
|
|
878
881
|
/**
|
|
879
|
-
* Visitor ID
|
|
882
|
+
* Visitor ID. Returned when the buyer isn't a logged-in site member.
|
|
880
883
|
* @format GUID
|
|
881
884
|
*/
|
|
882
885
|
visitorId?: string;
|
|
883
886
|
/**
|
|
884
|
-
* Member ID
|
|
887
|
+
* Member ID. Returned when the buyer is a logged-in site member.
|
|
885
888
|
* @format GUID
|
|
886
889
|
*/
|
|
887
890
|
memberId?: string;
|
|
@@ -965,17 +968,17 @@ interface CurrencyConversionDetails {
|
|
|
965
968
|
conversionRate?: string | null;
|
|
966
969
|
}
|
|
967
970
|
interface PriceSummary {
|
|
968
|
-
/** Subtotal of all
|
|
971
|
+
/** Subtotal of all line items, before discounts and before tax. */
|
|
969
972
|
subtotal?: Price;
|
|
970
973
|
/** Total shipping price, before discounts and before tax. */
|
|
971
974
|
shipping?: Price;
|
|
972
|
-
/** Total tax
|
|
975
|
+
/** Total tax applied to the order. */
|
|
973
976
|
tax?: Price;
|
|
974
|
-
/** Total
|
|
977
|
+
/** Total discount amount applied to the order. */
|
|
975
978
|
discount?: Price;
|
|
976
|
-
/** Order
|
|
979
|
+
/** Order's total price after discounts and tax. */
|
|
977
980
|
total?: Price;
|
|
978
|
-
/** Total
|
|
981
|
+
/** Total additional fees before tax. */
|
|
979
982
|
totalAdditionalFees?: Price;
|
|
980
983
|
}
|
|
981
984
|
/** Billing Info and shipping details */
|
|
@@ -1116,9 +1119,9 @@ interface V1ShippingInformation {
|
|
|
1116
1119
|
region?: ShippingRegion;
|
|
1117
1120
|
}
|
|
1118
1121
|
interface DeliveryLogistics extends DeliveryLogisticsAddressOneOf {
|
|
1119
|
-
/** Shipping address and contact details. */
|
|
1122
|
+
/** Shipping destination address and contact details. For pickup orders, this contains the pickup location address, not the recipient's address. */
|
|
1120
1123
|
shippingDestination?: ApiAddressWithContact;
|
|
1121
|
-
/** Pickup details. */
|
|
1124
|
+
/** Pickup details for store pickup or pickup point orders. */
|
|
1122
1125
|
pickupDetails?: PickupDetails;
|
|
1123
1126
|
/**
|
|
1124
1127
|
* Expected delivery time in free text. For example, `"3-5 business days"`.
|
|
@@ -1126,7 +1129,7 @@ interface DeliveryLogistics extends DeliveryLogisticsAddressOneOf {
|
|
|
1126
1129
|
*/
|
|
1127
1130
|
deliveryTime?: string | null;
|
|
1128
1131
|
/**
|
|
1129
|
-
* Instructions for carrier. For example, `"Please knock on the door. If unanswered, please call contact number.
|
|
1132
|
+
* Instructions for the carrier. For example, `"Please knock on the door. If unanswered, please call contact number."`.
|
|
1130
1133
|
* @maxLength 1000
|
|
1131
1134
|
*/
|
|
1132
1135
|
instructions?: string | null;
|
|
@@ -1135,14 +1138,14 @@ interface DeliveryLogistics extends DeliveryLogisticsAddressOneOf {
|
|
|
1135
1138
|
* @deprecated
|
|
1136
1139
|
*/
|
|
1137
1140
|
deliverByDate?: Date | null;
|
|
1138
|
-
/** Expected delivery time. */
|
|
1141
|
+
/** Expected delivery time slot with start and end times. */
|
|
1139
1142
|
deliveryTimeSlot?: DeliveryTimeSlot;
|
|
1140
1143
|
}
|
|
1141
1144
|
/** @oneof */
|
|
1142
1145
|
interface DeliveryLogisticsAddressOneOf {
|
|
1143
|
-
/** Shipping address and contact details. */
|
|
1146
|
+
/** Shipping destination address and contact details. For pickup orders, this contains the pickup location address, not the recipient's address. */
|
|
1144
1147
|
shippingDestination?: ApiAddressWithContact;
|
|
1145
|
-
/** Pickup details. */
|
|
1148
|
+
/** Pickup details for store pickup or pickup point orders. */
|
|
1146
1149
|
pickupDetails?: PickupDetails;
|
|
1147
1150
|
}
|
|
1148
1151
|
interface PickupDetails {
|
|
@@ -1248,14 +1251,14 @@ declare enum OrderStatus {
|
|
|
1248
1251
|
/**
|
|
1249
1252
|
* Order approved.
|
|
1250
1253
|
*
|
|
1251
|
-
* This happens when either an online payment is received **or** when `
|
|
1254
|
+
* This happens when either an online payment is received **or** when `priceSummary.total` is `0` (a zero-total order).
|
|
1252
1255
|
* Offline orders (cash payment) are automatically approved.
|
|
1253
1256
|
*/
|
|
1254
1257
|
APPROVED = "APPROVED",
|
|
1255
|
-
/** Order canceled by the
|
|
1258
|
+
/** Order canceled by the merchant or buyer. */
|
|
1256
1259
|
CANCELED = "CANCELED",
|
|
1257
1260
|
/**
|
|
1258
|
-
* Order
|
|
1261
|
+
* Order is waiting for the buyer to complete checkout.
|
|
1259
1262
|
* @documentationMaturity preview
|
|
1260
1263
|
*/
|
|
1261
1264
|
PENDING = "PENDING",
|
|
@@ -1474,8 +1477,6 @@ interface ItemCombinationLineItem {
|
|
|
1474
1477
|
quantity?: number;
|
|
1475
1478
|
}
|
|
1476
1479
|
interface Activity extends ActivityContentOneOf {
|
|
1477
|
-
/** Custom activity details (optional). `activity.type` must be `CUSTOM_ACTIVITY`. */
|
|
1478
|
-
customActivity?: CustomActivity;
|
|
1479
1480
|
/** Merchant comment details (optional). `activity.type` must be `MERCHANT_COMMENT`. */
|
|
1480
1481
|
merchantComment?: MerchantComment;
|
|
1481
1482
|
/** Additional info about order refunded activity (optional). `activity.type` must be `ORDER_REFUNDED`. */
|
|
@@ -1556,8 +1557,6 @@ interface Activity extends ActivityContentOneOf {
|
|
|
1556
1557
|
}
|
|
1557
1558
|
/** @oneof */
|
|
1558
1559
|
interface ActivityContentOneOf {
|
|
1559
|
-
/** Custom activity details (optional). `activity.type` must be `CUSTOM_ACTIVITY`. */
|
|
1560
|
-
customActivity?: CustomActivity;
|
|
1561
1560
|
/** Merchant comment details (optional). `activity.type` must be `MERCHANT_COMMENT`. */
|
|
1562
1561
|
merchantComment?: MerchantComment;
|
|
1563
1562
|
/** Additional info about order refunded activity (optional). `activity.type` must be `ORDER_REFUNDED`. */
|
|
@@ -2525,15 +2524,19 @@ interface V1CreatedByStringOneOf {
|
|
|
2525
2524
|
appId?: string;
|
|
2526
2525
|
}
|
|
2527
2526
|
interface ChannelInfo {
|
|
2528
|
-
/**
|
|
2527
|
+
/**
|
|
2528
|
+
* Sales channel that submitted the order.
|
|
2529
|
+
*
|
|
2530
|
+
* When creating an order via the API to record an external order, use the channel type that matches the original source. If no matching type exists, use `OTHER_PLATFORM`.
|
|
2531
|
+
*/
|
|
2529
2532
|
type?: ChannelType;
|
|
2530
2533
|
/**
|
|
2531
|
-
* Reference to an order ID from an external system.
|
|
2534
|
+
* Reference to an order ID from an external system. Relevant when recording orders from external platforms.
|
|
2532
2535
|
* @maxLength 100
|
|
2533
2536
|
*/
|
|
2534
2537
|
externalOrderId?: string | null;
|
|
2535
2538
|
/**
|
|
2536
|
-
* URL to the order in the external system.
|
|
2539
|
+
* URL to the order in the external system. Relevant when recording orders from external platforms.
|
|
2537
2540
|
* @maxLength 300
|
|
2538
2541
|
*/
|
|
2539
2542
|
externalOrderUrl?: string | null;
|
|
@@ -2961,6 +2964,7 @@ interface GetPaymentSettingsForCheckoutRequest {
|
|
|
2961
2964
|
/** Checkout. */
|
|
2962
2965
|
checkout?: Checkout;
|
|
2963
2966
|
}
|
|
2967
|
+
/** A checkout represents a cart that is in the process of being purchased. It holds calculated prices, tax, shipping, and buyer information needed to complete the purchase. */
|
|
2964
2968
|
interface Checkout {
|
|
2965
2969
|
/**
|
|
2966
2970
|
* Checkout ID.
|
|
@@ -4199,11 +4203,15 @@ interface V1AppliedDiscount extends V1AppliedDiscountDiscountSourceOneOf {
|
|
|
4199
4203
|
/** Discount type. */
|
|
4200
4204
|
discountType?: AppliedDiscountDiscountType;
|
|
4201
4205
|
/**
|
|
4206
|
+
* Deprecated. Use `lineItemDiscounts` instead.
|
|
4207
|
+
*
|
|
4202
4208
|
* IDs of line items the discount applies to.
|
|
4203
4209
|
* @format GUID
|
|
4204
|
-
* @deprecated
|
|
4210
|
+
* @deprecated Deprecated. Use `lineItemDiscounts` instead.
|
|
4211
|
+
*
|
|
4212
|
+
* IDs of line items the discount applies to.
|
|
4205
4213
|
* @replacedBy line_items_discounts
|
|
4206
|
-
* @targetRemovalDate
|
|
4214
|
+
* @targetRemovalDate 2026-03-31
|
|
4207
4215
|
*/
|
|
4208
4216
|
lineItemIds?: string[];
|
|
4209
4217
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { p as provideHandlers$1 } from './interfaces-ecommerce-v1-payment-settings-provider.public-
|
|
2
|
-
export { as as Activity, at as ActivityContentOneOf, bk as ActivityType, bu as AdditionalFee, db as AdditionalFeeAdditionalFeeSource, bv as AdditionalFeeSource, Z as Address, $ as AddressLocation, cc as AddressWithContact, A as AdjustmentType, c$ as AggregatedTaxBreakdown, Y as ApiAddressWithContact, cp as ApplicableLineItems, cC as ApplicationError, ag as AppliedDiscount, ah as AppliedDiscountDiscountSourceOneOf, cM as AppliedDiscountDiscountType, bm as AttributionSource, aU as AuthorizedPaymentCaptured, aT as AuthorizedPaymentCreated, aV as AuthorizedPaymentVoided, cZ as AutoTaxFallbackCalculationDetails, bt as Balance, bs as BalanceSummary, d6 as BalanceType, B as BillingAdjustment, v as BillingAdjustmentPriceSummary, cv as BuyerInfo, cw as BuyerInfoIdOneOf, cy as CalculationErrors, cz as CalculationErrorsShippingCalculationErrorOneOf, cn as Carrier, cI as CarrierError, cH as CarrierErrors, cr as CarrierServiceOption, c5 as CatalogOverrideFields, C as CatalogReference, bp as ChannelInfo, bq as ChannelType, dr as Charge, bK as ChargeType, bi as ChargebackCreated, bj as ChargebackReversed, bO as Checkout, g as Color, dv as Context, dc as ConversionInfo, aj as Coupon, d0 as CreatedBy, d1 as CreatedByIdOneOf, b7 as CreditCardDetails, U as CurrencyConversionDetails, au as CustomActivity, bD as CustomAllowedActions, dn as CustomContentReference, br as CustomField, dm as CustomSettings, cm as DeliveryAllocation, a4 as DeliveryLogistics, a5 as DeliveryLogisticsAddressOneOf, a9 as DeliveryTimeSlot, c1 as Description, D as DescriptionLine, d as DescriptionLineDescriptionLineValueOneOf, e as DescriptionLineName, h as DescriptionLineType, c as DescriptionLineValueOneOf, cA as Details, cB as DetailsKindOneOf, o as DigitalFile, am as DiscountReason, an as DiscountRule, ao as DiscountRuleName, ai as DiscountType, aA as DraftOrderChangesApplied, E as ExtendedFields, bf as ExternalReceipt, dp as ExternalReference, c_ as FallbackReason, cF as FieldViolation, c3 as FileType, F as FocalPoint, bH as FormIdentifier, bG as FormInfo, u as FreeTrialPeriod, R as FulfillmentStatus, bw as FulfillmentStatusesAggregate, a0 as FullAddressContactDetails, bN as GetPaymentSettingsForCheckoutRequest, ds as GetPaymentSettingsForCheckoutResponse, G as GetPaymentSettingsRequest, bL as GetPaymentSettingsResponse, cJ as GiftCard, a_ as GiftCardPaymentRefund, bY as Group, dx as IdentificationData, dy as IdentificationDataIdOneOf, dw as IdentityType, d7 as InvalidMembership, bV as ItemAvailabilityInfo, bW as ItemAvailabilityStatus, aq as ItemCombination, ar as ItemCombinationLineItem, c9 as ItemModifier, m as ItemTaxFullDetails, I as ItemType, j as ItemTypeItemTypeDataOneOf, k as ItemTypePreset, J as JurisdictionType, bP as LineItem, aN as LineItemAmount, aD as LineItemChanges, aI as LineItemDescriptionLineChange, ap as LineItemDiscount, az as LineItemExchangeData, aJ as LineItemModifiersChange, aG as LineItemPriceChange, aH as LineItemProductNameChange, aE as LineItemQuantityChange, aF as LineItemQuantityChangeType, n as LineItemTaxBreakdown, L as LineItemTaxInfo, bz as Location, x as LocationAndQuantity, aO as ManagedAdditionalFee, aL as ManagedDiscount, aK as ManagedLineItem, cY as ManualCalculationReason, d3 as Membership, d4 as MembershipName, d2 as MembershipOptions, d5 as MembershipPaymentCredits, a$ as MembershipPaymentRefund, av as MerchantComment, ak as MerchantDiscount, al as MerchantDiscountMerchantDiscountReasonOneOf, c8 as ModifierGroup, bQ as MultiCurrencyPrice, di as NameInLineItem, dh as NameInOther, ay as NewExchangeOrderCreated, O as Order, bE as OrderActionType, bl as OrderActivityTypeEnumActivityType, aB as OrderChange, aC as OrderChangeValueOneOf, ax as OrderCreatedFromExchange, a as OrderLineItem, aw as OrderRefunded, bA as OrderSettings, bB as OrderSettingsAllowedActionsOneOf, bC as OrderSettingsEditableByOneOf, ac as OrderStatus, af as OrderTaxBreakdown, ae as OrderTaxInfo, dk as Other, cu as OtherCharge, bF as OwnerApps, b8 as PaymentCanceled, b9 as PaymentCanceledPaymentDetailsOneOf, ba as PaymentDeclined, bb as PaymentDeclinedPaymentDetailsOneOf, c6 as PaymentOption, l as PaymentOptionType, b3 as PaymentPending, b4 as PaymentPendingPaymentDetailsOneOf, b1 as PaymentRefundFailed, b0 as PaymentRefunded, bM as PaymentSettings, du as PaymentSettingsSPIConfig, Q as PaymentStatus, i as PhysicalProperties, a7 as PickupAddress, a6 as PickupDetails, ch as PickupDetailsPickupMethod, a8 as PickupMethod, f as PlainTextValue, bJ as PlatformFee, cb as PlatformFeeChargeType, bI as PlatformFeeSummary, c7 as Policy, b as Price, w as PriceDescription, X as PriceSummary, P as ProductName, cX as RateType, bc as ReceiptCreated, bd as ReceiptCreatedReceiptInfoOneOf, bg as ReceiptSent, bh as ReceiptSentReceiptInfoOneOf, aW as RefundInitiated, b2 as RefundedAsStoreCredit, aX as RefundedPayment, aY as RefundedPaymentKindOneOf, co as Region, b5 as RegularPayment, b6 as RegularPaymentPaymentMethodDetailsOneOf, aZ as RegularPaymentRefund, cE as RuleType, aS as SavedPaymentMethod, bX as Scope, c2 as SecuredMedia, ce as SelectedCarrierServiceOption, ck as SelectedCarrierServiceOptionOtherCharge, cj as SelectedCarrierServiceOptionPrices, d9 as SelectedMembership, d8 as SelectedMemberships, c4 as ServiceProperties, de as Severity, cd as ShippingInfo, aR as ShippingInformation, aQ as ShippingInformationChange, cs as ShippingOption, aa as ShippingPrice, ab as ShippingRegion, _ as StreetAddress, dq as SubscriptionCharges, r as SubscriptionDescription, t as SubscriptionFrequency, S as SubscriptionInfo, bZ as SubscriptionOptionInfo, s as SubscriptionSettings, q as SubscriptionTitle, dj as SuggestedFix, cG as SystemError, by as TagList, bx as Tags, df as Target, dl as TargetLineItem, dg as TargetTargetTypeOneOf, bT as TaxBreakdown, cV as TaxCalculationDetails, cW as TaxCalculationDetailsCalculationDetailsOneOf, bS as TaxRateBreakdown, ad as TaxSummary, T as TaxableAddress, y as TaxableAddressTaxableAddressDataOneOf, z as TaxableAddressType, c0 as Title, aP as TotalPriceChange, H as TranslatableString, aM as TranslatedValue, da as V1AdditionalFee, cK as V1AppliedDiscount, cL as V1AppliedDiscountDiscountSourceOneOf, M as V1BuyerInfo, N as V1BuyerInfoIdOneOf, cl as V1ChargeType, cN as V1Coupon, bn as V1CreatedBy, bo as V1CreatedByStringOneOf, cf as V1DeliveryLogistics, ci as V1DeliveryTimeSlot, cP as V1DiscountRule, cQ as V1DiscountRuleName, b$ as V1FreeTrialPeriod, cS as V1ItemCombination, cT as V1ItemCombinationLineItem, K as V1ItemModifier, bR as V1ItemTaxFullDetails, bU as V1JurisdictionType, cR as V1LineItemDiscount, cO as V1MerchantDiscount, V as V1ModifierGroup, dt as V1PaymentOption, cg as V1PickupDetails, ca as V1PlatformFee, cx as V1PriceSummary, a3 as V1ShippingInformation, ct as V1ShippingPrice, cq as V1ShippingRegion, b_ as V1SubscriptionSettings, cU as V1TaxSummary, cD as ValidationError, a1 as VatId, a2 as VatType, dd as Violation, W as WeightUnit, be as WixReceipt } from './interfaces-ecommerce-v1-payment-settings-provider.public-
|
|
1
|
+
import { p as provideHandlers$1 } from './interfaces-ecommerce-v1-payment-settings-provider.public-Dw0J2wDV.js';
|
|
2
|
+
export { as as Activity, at as ActivityContentOneOf, bk as ActivityType, bu as AdditionalFee, db as AdditionalFeeAdditionalFeeSource, bv as AdditionalFeeSource, Z as Address, $ as AddressLocation, cc as AddressWithContact, A as AdjustmentType, c$ as AggregatedTaxBreakdown, Y as ApiAddressWithContact, cp as ApplicableLineItems, cC as ApplicationError, ag as AppliedDiscount, ah as AppliedDiscountDiscountSourceOneOf, cM as AppliedDiscountDiscountType, bm as AttributionSource, aU as AuthorizedPaymentCaptured, aT as AuthorizedPaymentCreated, aV as AuthorizedPaymentVoided, cZ as AutoTaxFallbackCalculationDetails, bt as Balance, bs as BalanceSummary, d6 as BalanceType, B as BillingAdjustment, v as BillingAdjustmentPriceSummary, cv as BuyerInfo, cw as BuyerInfoIdOneOf, cy as CalculationErrors, cz as CalculationErrorsShippingCalculationErrorOneOf, cn as Carrier, cI as CarrierError, cH as CarrierErrors, cr as CarrierServiceOption, c5 as CatalogOverrideFields, C as CatalogReference, bp as ChannelInfo, bq as ChannelType, dr as Charge, bK as ChargeType, bi as ChargebackCreated, bj as ChargebackReversed, bO as Checkout, g as Color, dv as Context, dc as ConversionInfo, aj as Coupon, d0 as CreatedBy, d1 as CreatedByIdOneOf, b7 as CreditCardDetails, U as CurrencyConversionDetails, au as CustomActivity, bD as CustomAllowedActions, dn as CustomContentReference, br as CustomField, dm as CustomSettings, cm as DeliveryAllocation, a4 as DeliveryLogistics, a5 as DeliveryLogisticsAddressOneOf, a9 as DeliveryTimeSlot, c1 as Description, D as DescriptionLine, d as DescriptionLineDescriptionLineValueOneOf, e as DescriptionLineName, h as DescriptionLineType, c as DescriptionLineValueOneOf, cA as Details, cB as DetailsKindOneOf, o as DigitalFile, am as DiscountReason, an as DiscountRule, ao as DiscountRuleName, ai as DiscountType, aA as DraftOrderChangesApplied, E as ExtendedFields, bf as ExternalReceipt, dp as ExternalReference, c_ as FallbackReason, cF as FieldViolation, c3 as FileType, F as FocalPoint, bH as FormIdentifier, bG as FormInfo, u as FreeTrialPeriod, R as FulfillmentStatus, bw as FulfillmentStatusesAggregate, a0 as FullAddressContactDetails, bN as GetPaymentSettingsForCheckoutRequest, ds as GetPaymentSettingsForCheckoutResponse, G as GetPaymentSettingsRequest, bL as GetPaymentSettingsResponse, cJ as GiftCard, a_ as GiftCardPaymentRefund, bY as Group, dx as IdentificationData, dy as IdentificationDataIdOneOf, dw as IdentityType, d7 as InvalidMembership, bV as ItemAvailabilityInfo, bW as ItemAvailabilityStatus, aq as ItemCombination, ar as ItemCombinationLineItem, c9 as ItemModifier, m as ItemTaxFullDetails, I as ItemType, j as ItemTypeItemTypeDataOneOf, k as ItemTypePreset, J as JurisdictionType, bP as LineItem, aN as LineItemAmount, aD as LineItemChanges, aI as LineItemDescriptionLineChange, ap as LineItemDiscount, az as LineItemExchangeData, aJ as LineItemModifiersChange, aG as LineItemPriceChange, aH as LineItemProductNameChange, aE as LineItemQuantityChange, aF as LineItemQuantityChangeType, n as LineItemTaxBreakdown, L as LineItemTaxInfo, bz as Location, x as LocationAndQuantity, aO as ManagedAdditionalFee, aL as ManagedDiscount, aK as ManagedLineItem, cY as ManualCalculationReason, d3 as Membership, d4 as MembershipName, d2 as MembershipOptions, d5 as MembershipPaymentCredits, a$ as MembershipPaymentRefund, av as MerchantComment, ak as MerchantDiscount, al as MerchantDiscountMerchantDiscountReasonOneOf, c8 as ModifierGroup, bQ as MultiCurrencyPrice, di as NameInLineItem, dh as NameInOther, ay as NewExchangeOrderCreated, O as Order, bE as OrderActionType, bl as OrderActivityTypeEnumActivityType, aB as OrderChange, aC as OrderChangeValueOneOf, ax as OrderCreatedFromExchange, a as OrderLineItem, aw as OrderRefunded, bA as OrderSettings, bB as OrderSettingsAllowedActionsOneOf, bC as OrderSettingsEditableByOneOf, ac as OrderStatus, af as OrderTaxBreakdown, ae as OrderTaxInfo, dk as Other, cu as OtherCharge, bF as OwnerApps, b8 as PaymentCanceled, b9 as PaymentCanceledPaymentDetailsOneOf, ba as PaymentDeclined, bb as PaymentDeclinedPaymentDetailsOneOf, c6 as PaymentOption, l as PaymentOptionType, b3 as PaymentPending, b4 as PaymentPendingPaymentDetailsOneOf, b1 as PaymentRefundFailed, b0 as PaymentRefunded, bM as PaymentSettings, du as PaymentSettingsSPIConfig, Q as PaymentStatus, i as PhysicalProperties, a7 as PickupAddress, a6 as PickupDetails, ch as PickupDetailsPickupMethod, a8 as PickupMethod, f as PlainTextValue, bJ as PlatformFee, cb as PlatformFeeChargeType, bI as PlatformFeeSummary, c7 as Policy, b as Price, w as PriceDescription, X as PriceSummary, P as ProductName, cX as RateType, bc as ReceiptCreated, bd as ReceiptCreatedReceiptInfoOneOf, bg as ReceiptSent, bh as ReceiptSentReceiptInfoOneOf, aW as RefundInitiated, b2 as RefundedAsStoreCredit, aX as RefundedPayment, aY as RefundedPaymentKindOneOf, co as Region, b5 as RegularPayment, b6 as RegularPaymentPaymentMethodDetailsOneOf, aZ as RegularPaymentRefund, cE as RuleType, aS as SavedPaymentMethod, bX as Scope, c2 as SecuredMedia, ce as SelectedCarrierServiceOption, ck as SelectedCarrierServiceOptionOtherCharge, cj as SelectedCarrierServiceOptionPrices, d9 as SelectedMembership, d8 as SelectedMemberships, c4 as ServiceProperties, de as Severity, cd as ShippingInfo, aR as ShippingInformation, aQ as ShippingInformationChange, cs as ShippingOption, aa as ShippingPrice, ab as ShippingRegion, _ as StreetAddress, dq as SubscriptionCharges, r as SubscriptionDescription, t as SubscriptionFrequency, S as SubscriptionInfo, bZ as SubscriptionOptionInfo, s as SubscriptionSettings, q as SubscriptionTitle, dj as SuggestedFix, cG as SystemError, by as TagList, bx as Tags, df as Target, dl as TargetLineItem, dg as TargetTargetTypeOneOf, bT as TaxBreakdown, cV as TaxCalculationDetails, cW as TaxCalculationDetailsCalculationDetailsOneOf, bS as TaxRateBreakdown, ad as TaxSummary, T as TaxableAddress, y as TaxableAddressTaxableAddressDataOneOf, z as TaxableAddressType, c0 as Title, aP as TotalPriceChange, H as TranslatableString, aM as TranslatedValue, da as V1AdditionalFee, cK as V1AppliedDiscount, cL as V1AppliedDiscountDiscountSourceOneOf, M as V1BuyerInfo, N as V1BuyerInfoIdOneOf, cl as V1ChargeType, cN as V1Coupon, bn as V1CreatedBy, bo as V1CreatedByStringOneOf, cf as V1DeliveryLogistics, ci as V1DeliveryTimeSlot, cP as V1DiscountRule, cQ as V1DiscountRuleName, b$ as V1FreeTrialPeriod, cS as V1ItemCombination, cT as V1ItemCombinationLineItem, K as V1ItemModifier, bR as V1ItemTaxFullDetails, bU as V1JurisdictionType, cR as V1LineItemDiscount, cO as V1MerchantDiscount, V as V1ModifierGroup, dt as V1PaymentOption, cg as V1PickupDetails, ca as V1PlatformFee, cx as V1PriceSummary, a3 as V1ShippingInformation, ct as V1ShippingPrice, cq as V1ShippingRegion, b_ as V1SubscriptionSettings, cU as V1TaxSummary, cD as ValidationError, a1 as VatId, a2 as VatType, dd as Violation, W as WeightUnit, be as WixReceipt } from './interfaces-ecommerce-v1-payment-settings-provider.public-Dw0J2wDV.js';
|
|
3
3
|
import { BuildServicePluginDefinition } from '@wix/sdk-types';
|
|
4
4
|
|
|
5
5
|
declare const provideHandlers: BuildServicePluginDefinition<typeof provideHandlers$1> & typeof provideHandlers$1;
|