@wix/ecom 1.0.727 → 1.0.729

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.
@@ -1,3 +1,352 @@
1
+ interface GiftCardProviderEntity {
2
+ /** Dummy id for docs generation. */
3
+ _id?: string | null;
4
+ }
5
+ interface GetBalanceRequest {
6
+ /** Gift card code. */
7
+ code?: string;
8
+ /**
9
+ * App instance ID of the Gift Card provider.
10
+ * @deprecated App instance ID of the Gift Card provider.
11
+ * @targetRemovalDate 2025-07-01
12
+ */
13
+ appInstanceId?: string;
14
+ /** The physical location ID. */
15
+ locationId?: string | null;
16
+ }
17
+ interface GetBalanceResponse {
18
+ /** Current balance. */
19
+ balance?: number;
20
+ /** Currency code. */
21
+ currencyCode?: string;
22
+ /** Used for integration and tracking across different platforms. */
23
+ externalId?: string | null;
24
+ }
25
+ interface RedeemRequest {
26
+ /** Gift card code. */
27
+ code?: string;
28
+ /**
29
+ * App instance ID of the Gift Card provider.
30
+ * @deprecated App instance ID of the Gift Card provider.
31
+ * @targetRemovalDate 2025-07-01
32
+ */
33
+ appInstanceId?: string;
34
+ /** Amount to redeem from the gift card. */
35
+ amount?: number;
36
+ /** Order ID the gift card transaction is applied to. */
37
+ orderId?: string;
38
+ /** Currency code. */
39
+ currencyCode?: string;
40
+ /** Physical location ID. */
41
+ locationId?: string | null;
42
+ }
43
+ interface RedeemResponse {
44
+ /** Remaining balance on the Gift Card after the redemption. */
45
+ remainingBalance?: number;
46
+ /** Currency code. */
47
+ currencyCode?: string;
48
+ /** Transaction ID. */
49
+ transactionId?: string;
50
+ }
51
+ interface VoidRequest {
52
+ /**
53
+ * App instance ID of the Gift Card provider.
54
+ * @deprecated App instance ID of the Gift Card provider.
55
+ * @targetRemovalDate 2025-07-01
56
+ */
57
+ appInstanceId?: string;
58
+ /** Transaction ID to void. */
59
+ transactionId?: string;
60
+ /** Physical location ID. */
61
+ locationId?: string | null;
62
+ }
63
+ interface VoidResponse {
64
+ /** Remaining balance on the Gift Card after voiding the transaction. */
65
+ remainingBalance?: number;
66
+ /** Currency code. */
67
+ currencyCode?: string;
68
+ }
69
+ interface GiftCardProviderConfig {
70
+ /** Base URI of the SPI implementation. */
71
+ deploymentUri?: string;
72
+ }
73
+ /**
74
+ * this message is not directly used by any service,
75
+ * it exists to describe the expected parameters that SHOULD be provided to invoked Velo methods as part of open-platform.
76
+ * e.g. SPIs, event-handlers, etc..
77
+ * NOTE: this context object MUST be provided as the last argument in each Velo method signature.
78
+ *
79
+ * Example:
80
+ * ```typescript
81
+ * export function wixStores_onOrderCanceled({ event, metadata }: OrderCanceledEvent) {
82
+ * ...
83
+ * }
84
+ * ```
85
+ */
86
+ interface Context$6 {
87
+ /** A unique identifier of the request. You may print this ID to your logs to help with future debugging and easier correlation with Wix's logs. */
88
+ requestId?: string | null;
89
+ /** [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) 3-letter currency code. */
90
+ currency?: string | null;
91
+ /** An object that describes the identity that triggered this request. */
92
+ identity?: IdentificationData$6;
93
+ /** A string representing a language and region in the format of `"xx-XX"`. First 2 letters represent the language code according to ISO 639-1. This is followed by a dash "-", and then a by 2 capital letters representing the region according to ISO 3166-2. For example, `"en-US"`. */
94
+ languages?: string[];
95
+ /** The service provider app's instance ID. */
96
+ instanceId?: string | null;
97
+ }
98
+ declare enum IdentityType$6 {
99
+ UNKNOWN = "UNKNOWN",
100
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
101
+ MEMBER = "MEMBER",
102
+ WIX_USER = "WIX_USER",
103
+ APP = "APP"
104
+ }
105
+ interface IdentificationData$6 extends IdentificationDataIdOneOf$6 {
106
+ /** ID of a site visitor that has not logged in to the site. */
107
+ anonymousVisitorId?: string;
108
+ /** ID of a site visitor that has logged in to the site. */
109
+ memberId?: string;
110
+ /** ID of a Wix user (site owner, contributor, etc.). */
111
+ wixUserId?: string;
112
+ /** ID of an app. */
113
+ appId?: string;
114
+ /** @readonly */
115
+ identityType?: IdentityType$6;
116
+ }
117
+ /** @oneof */
118
+ interface IdentificationDataIdOneOf$6 {
119
+ /** ID of a site visitor that has not logged in to the site. */
120
+ anonymousVisitorId?: string;
121
+ /** ID of a site visitor that has logged in to the site. */
122
+ memberId?: string;
123
+ /** ID of a Wix user (site owner, contributor, etc.). */
124
+ wixUserId?: string;
125
+ /** ID of an app. */
126
+ appId?: string;
127
+ }
128
+
129
+ /**
130
+ * Gift card not found
131
+ */
132
+ declare class GiftCardNotFoundWixError extends Error {
133
+ /** @hidden */
134
+ httpCode: number;
135
+ /** @hidden */
136
+ statusCode: string;
137
+ /** @hidden */
138
+ applicationCode: string;
139
+ /** @hidden */
140
+ name: string;
141
+ constructor();
142
+ /** @hidden */
143
+ static readonly __type = "wix_spi_error";
144
+ }
145
+ /**
146
+ * Gift card is disabled
147
+ */
148
+ declare class GiftCardDisabledWixError extends Error {
149
+ /** @hidden */
150
+ httpCode: number;
151
+ /** @hidden */
152
+ statusCode: string;
153
+ /** @hidden */
154
+ applicationCode: string;
155
+ /** @hidden */
156
+ name: string;
157
+ constructor();
158
+ /** @hidden */
159
+ static readonly __type = "wix_spi_error";
160
+ }
161
+ /**
162
+ * Gift card was expired
163
+ */
164
+ declare class GiftCardExpiredWixError extends Error {
165
+ /** @hidden */
166
+ httpCode: number;
167
+ /** @hidden */
168
+ statusCode: string;
169
+ /** @hidden */
170
+ applicationCode: string;
171
+ /** @hidden */
172
+ name: string;
173
+ constructor();
174
+ /** @hidden */
175
+ static readonly __type = "wix_spi_error";
176
+ }
177
+ /**
178
+ * Insufficient funds for redeem
179
+ */
180
+ declare class InsufficientFundsWixError extends Error {
181
+ /** @hidden */
182
+ httpCode: number;
183
+ /** @hidden */
184
+ statusCode: string;
185
+ /** @hidden */
186
+ applicationCode: string;
187
+ /** @hidden */
188
+ name: string;
189
+ constructor();
190
+ /** @hidden */
191
+ static readonly __type = "wix_spi_error";
192
+ }
193
+ /**
194
+ * Gift card already redeemed for the given order
195
+ */
196
+ declare class AlreadyRedeemedWixError extends Error {
197
+ /** @hidden */
198
+ httpCode: number;
199
+ /** @hidden */
200
+ statusCode: string;
201
+ /** @hidden */
202
+ applicationCode: string;
203
+ /** @hidden */
204
+ name: string;
205
+ constructor();
206
+ /** @hidden */
207
+ static readonly __type = "wix_spi_error";
208
+ }
209
+ /**
210
+ * Currency code not supported
211
+ */
212
+ declare class CurrencyNotSupportedWixError extends Error {
213
+ /** @hidden */
214
+ httpCode: number;
215
+ /** @hidden */
216
+ statusCode: string;
217
+ /** @hidden */
218
+ applicationCode: string;
219
+ /** @hidden */
220
+ name: string;
221
+ constructor();
222
+ /** @hidden */
223
+ static readonly __type = "wix_spi_error";
224
+ }
225
+ /**
226
+ * Transaction not found.
227
+ */
228
+ declare class TransactionNotFoundWixError extends Error {
229
+ /** @hidden */
230
+ httpCode: number;
231
+ /** @hidden */
232
+ statusCode: string;
233
+ /** @hidden */
234
+ applicationCode: string;
235
+ /** @hidden */
236
+ name: string;
237
+ constructor();
238
+ /** @hidden */
239
+ static readonly __type = "wix_spi_error";
240
+ }
241
+ /**
242
+ * Transaction already voided
243
+ */
244
+ declare class AlreadyVoidedWixError extends Error {
245
+ /** @hidden */
246
+ httpCode: number;
247
+ /** @hidden */
248
+ statusCode: string;
249
+ /** @hidden */
250
+ applicationCode: string;
251
+ /** @hidden */
252
+ name: string;
253
+ constructor();
254
+ /** @hidden */
255
+ static readonly __type = "wix_spi_error";
256
+ }
257
+
258
+ type ServicePluginMethodInput = {
259
+ request: any;
260
+ metadata: any;
261
+ };
262
+ type ServicePluginContract = Record<string, (payload: ServicePluginMethodInput) => unknown | Promise<unknown>>;
263
+ type ServicePluginMethodMetadata = {
264
+ name: string;
265
+ primaryHttpMappingPath: string;
266
+ transformations: {
267
+ fromREST: (...args: unknown[]) => ServicePluginMethodInput;
268
+ toREST: (...args: unknown[]) => unknown;
269
+ };
270
+ };
271
+ type ServicePluginDefinition<Contract extends ServicePluginContract> = {
272
+ __type: 'service-plugin-definition';
273
+ componentType: string;
274
+ methods: ServicePluginMethodMetadata[];
275
+ __contract: Contract;
276
+ };
277
+ declare function ServicePluginDefinition<Contract extends ServicePluginContract>(componentType: string, methods: ServicePluginMethodMetadata[]): ServicePluginDefinition<Contract>;
278
+ type BuildServicePluginDefinition<T extends ServicePluginDefinition<any>> = (implementation: T['__contract']) => void;
279
+
280
+ declare global {
281
+ // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
282
+ interface SymbolConstructor {
283
+ readonly observable: symbol;
284
+ }
285
+ }
286
+
287
+ interface GetBalanceEnvelope {
288
+ request: GetBalanceRequest;
289
+ metadata: Context$6;
290
+ }
291
+ interface RedeemEnvelope {
292
+ request: RedeemRequest;
293
+ metadata: Context$6;
294
+ }
295
+ interface _voidEnvelope {
296
+ request: VoidRequest;
297
+ metadata: Context$6;
298
+ }
299
+ declare const provideHandlers$d: ServicePluginDefinition<{
300
+ /**
301
+ *
302
+ * This method retrieves gift card data from your app.
303
+ * Wix calls this method when a customer applies a gift card as a payment method at checkout. */
304
+ getBalance(payload: GetBalanceEnvelope): GetBalanceResponse | Promise<GetBalanceResponse>;
305
+ /**
306
+ *
307
+ * This method requests that a transaction be created by your app.
308
+ * Wix calls this method when a customer completes a purchase that includes a gift card as a payment method at checkout. */
309
+ redeem(payload: RedeemEnvelope): RedeemResponse | Promise<RedeemResponse>;
310
+ /**
311
+ *
312
+ * This method requests that a gift card transaction be voided by your app.
313
+ * Wix calls this method when a purchase fails after gift card redemption. */
314
+ _void(payload: _voidEnvelope): VoidResponse | Promise<VoidResponse>;
315
+ }>;
316
+
317
+ declare function createServicePluginModule$6<T extends ServicePluginDefinition<any>>(servicePluginDefinition: T): BuildServicePluginDefinition<T> & T;
318
+
319
+ type _publicProvideHandlersType$6 = typeof provideHandlers$d;
320
+ declare const provideHandlers$c: ReturnType<typeof createServicePluginModule$6<_publicProvideHandlersType>>;
321
+
322
+ type context$6_AlreadyRedeemedWixError = AlreadyRedeemedWixError;
323
+ declare const context$6_AlreadyRedeemedWixError: typeof AlreadyRedeemedWixError;
324
+ type context$6_AlreadyVoidedWixError = AlreadyVoidedWixError;
325
+ declare const context$6_AlreadyVoidedWixError: typeof AlreadyVoidedWixError;
326
+ type context$6_CurrencyNotSupportedWixError = CurrencyNotSupportedWixError;
327
+ declare const context$6_CurrencyNotSupportedWixError: typeof CurrencyNotSupportedWixError;
328
+ type context$6_GetBalanceRequest = GetBalanceRequest;
329
+ type context$6_GetBalanceResponse = GetBalanceResponse;
330
+ type context$6_GiftCardDisabledWixError = GiftCardDisabledWixError;
331
+ declare const context$6_GiftCardDisabledWixError: typeof GiftCardDisabledWixError;
332
+ type context$6_GiftCardExpiredWixError = GiftCardExpiredWixError;
333
+ declare const context$6_GiftCardExpiredWixError: typeof GiftCardExpiredWixError;
334
+ type context$6_GiftCardNotFoundWixError = GiftCardNotFoundWixError;
335
+ declare const context$6_GiftCardNotFoundWixError: typeof GiftCardNotFoundWixError;
336
+ type context$6_GiftCardProviderConfig = GiftCardProviderConfig;
337
+ type context$6_GiftCardProviderEntity = GiftCardProviderEntity;
338
+ type context$6_InsufficientFundsWixError = InsufficientFundsWixError;
339
+ declare const context$6_InsufficientFundsWixError: typeof InsufficientFundsWixError;
340
+ type context$6_RedeemRequest = RedeemRequest;
341
+ type context$6_RedeemResponse = RedeemResponse;
342
+ type context$6_TransactionNotFoundWixError = TransactionNotFoundWixError;
343
+ declare const context$6_TransactionNotFoundWixError: typeof TransactionNotFoundWixError;
344
+ type context$6_VoidRequest = VoidRequest;
345
+ type context$6_VoidResponse = VoidResponse;
346
+ declare namespace context$6 {
347
+ export { context$6_AlreadyRedeemedWixError as AlreadyRedeemedWixError, context$6_AlreadyVoidedWixError as AlreadyVoidedWixError, type Context$6 as Context, context$6_CurrencyNotSupportedWixError as CurrencyNotSupportedWixError, type context$6_GetBalanceRequest as GetBalanceRequest, type context$6_GetBalanceResponse as GetBalanceResponse, context$6_GiftCardDisabledWixError as GiftCardDisabledWixError, context$6_GiftCardExpiredWixError as GiftCardExpiredWixError, context$6_GiftCardNotFoundWixError as GiftCardNotFoundWixError, type context$6_GiftCardProviderConfig as GiftCardProviderConfig, type context$6_GiftCardProviderEntity as GiftCardProviderEntity, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, IdentityType$6 as IdentityType, context$6_InsufficientFundsWixError as InsufficientFundsWixError, type context$6_RedeemRequest as RedeemRequest, type context$6_RedeemResponse as RedeemResponse, context$6_TransactionNotFoundWixError as TransactionNotFoundWixError, type context$6_VoidRequest as VoidRequest, type context$6_VoidResponse as VoidResponse, type _publicProvideHandlersType$6 as _publicProvideHandlersType, provideHandlers$c as provideHandlers, provideHandlers$d as publicProvideHandlers };
348
+ }
349
+
1
350
  interface GetShippingRatesRequest {
2
351
  /** The line items to be shipped. */
3
352
  lineItems?: ProductItem[];
@@ -522,35 +871,6 @@ declare class GenericShippingRatesWixError extends Error {
522
871
  static readonly __type = "wix_spi_error";
523
872
  }
524
873
 
525
- type ServicePluginMethodInput = {
526
- request: any;
527
- metadata: any;
528
- };
529
- type ServicePluginContract = Record<string, (payload: ServicePluginMethodInput) => unknown | Promise<unknown>>;
530
- type ServicePluginMethodMetadata = {
531
- name: string;
532
- primaryHttpMappingPath: string;
533
- transformations: {
534
- fromREST: (...args: unknown[]) => ServicePluginMethodInput;
535
- toREST: (...args: unknown[]) => unknown;
536
- };
537
- };
538
- type ServicePluginDefinition<Contract extends ServicePluginContract> = {
539
- __type: 'service-plugin-definition';
540
- componentType: string;
541
- methods: ServicePluginMethodMetadata[];
542
- __contract: Contract;
543
- };
544
- declare function ServicePluginDefinition<Contract extends ServicePluginContract>(componentType: string, methods: ServicePluginMethodMetadata[]): ServicePluginDefinition<Contract>;
545
- type BuildServicePluginDefinition<T extends ServicePluginDefinition<any>> = (implementation: T['__contract']) => void;
546
-
547
- declare global {
548
- // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
549
- interface SymbolConstructor {
550
- readonly observable: symbol;
551
- }
552
- }
553
-
554
874
  interface GetShippingRatesEnvelope {
555
875
  request: GetShippingRatesRequest;
556
876
  metadata: Context$5;
@@ -636,7 +956,7 @@ interface LineItem$3 {
636
956
  * Max: `100000`
637
957
  */
638
958
  quantity?: number | null;
639
- /** Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info. */
959
+ /** Catalog and item reference. Includes IDs for the item and the catalog it came from, as well as further optional info. Optional for custom line items, which don't trigger the Catalog service plugin. */
640
960
  catalogReference?: CatalogReference$4;
641
961
  /** Item name. */
642
962
  productName?: string | null;
@@ -1049,7 +1369,7 @@ interface LineItem$2 {
1049
1369
  quantity?: number | null;
1050
1370
  /**
1051
1371
  * Catalog and item reference. Holds IDs for the item and the catalog it came from, as well as further optional info.
1052
- * This field is empty in the case of a custom line item.
1372
+ * This field may be empty in the case of a custom line item.
1053
1373
  */
1054
1374
  catalogReference?: CatalogReference$3;
1055
1375
  /** Price of a single item. */
@@ -1205,6 +1525,8 @@ interface GetEligibleDiscountsRequest {
1205
1525
  purchaseFlowId?: string | null;
1206
1526
  /** Number of coupons is limited to 1 due to limitations in Checkout. */
1207
1527
  couponCodes?: string[];
1528
+ /** Buyer email */
1529
+ buyerEmail?: string | null;
1208
1530
  }
1209
1531
  interface LineItem$1 {
1210
1532
  /** Line item ID. */
@@ -1593,7 +1915,7 @@ interface OrderLineItem {
1593
1915
  productName?: ProductName$1;
1594
1916
  /**
1595
1917
  * References to the line item's origin catalog.
1596
- * This field is empty in the case of a custom line item.
1918
+ * This field may be empty in the case of a custom line item.
1597
1919
  */
1598
1920
  catalogReference?: CatalogReference$1;
1599
1921
  /** Line item quantity. */
@@ -3070,11 +3392,6 @@ interface ValidationInfo {
3070
3392
  customFields?: CustomFields;
3071
3393
  /** Applied discounts. */
3072
3394
  appliedDiscounts?: AppliedDiscount[];
3073
- /**
3074
- * Used for integration and tracking across different platforms.
3075
- * Contains external system IDs (e.g., app ID, external ID) to link the purchase flow with other systems.
3076
- */
3077
- externalReference?: ExternalReference;
3078
3395
  }
3079
3396
  interface BuyerDetails {
3080
3397
  /** Buyer's email address. */
@@ -3497,9 +3814,15 @@ interface DiscountRuleName {
3497
3814
  translated?: string | null;
3498
3815
  }
3499
3816
  interface ExternalReference {
3500
- /** ID of the app that associated with the purchase flow. */
3817
+ /**
3818
+ * ID of the app associated with the purchase flow.
3819
+ * For example, the Wix Pay Links app ID.
3820
+ */
3501
3821
  appId?: string;
3502
- /** Reference to an external system ID, used to link the purchase flow to a specific ID in another system */
3822
+ /**
3823
+ * Reference to an external resource ID. Used to link the purchase flow to a specific entity in an external system.
3824
+ * For example, a Wix Pay Link ID.
3825
+ */
3503
3826
  resourceId?: string | null;
3504
3827
  }
3505
3828
  interface ExtendedFields {
@@ -3574,7 +3897,7 @@ interface ValidationsSPIConfig {
3574
3897
  validateInCart?: boolean;
3575
3898
  /**
3576
3899
  * Required. Base URI where the endpoints are called. Wix appends the endpoint path to the base URI.
3577
- * For example, to call the Get Eligible Triggers endpoint at `https://my-validations.com/v1/get-violations`, the base URI you provide here is `https://my-validations.com`.
3900
+ * For example, to call the Get Validation Violations endpoint at `https://my-validations.com/v1/get-violations`, the base URI you provide here is `https://my-validations.com`.
3578
3901
  */
3579
3902
  deploymentUri?: string;
3580
3903
  }
@@ -3736,4 +4059,4 @@ declare namespace context {
3736
4059
  export { type context_Address as Address, type context_AddressLocation as AddressLocation, type context_AddressWithContact as AddressWithContact, type context_AppliedDiscount as AppliedDiscount, type context_AppliedDiscountDiscountSourceOneOf as AppliedDiscountDiscountSourceOneOf, type context_BuyerDetails as BuyerDetails, type context_CatalogReference as CatalogReference, context_CheckoutStage as CheckoutStage, type context_Context as Context, type context_Coupon as Coupon, type context_CustomField as CustomField, type context_CustomFields as CustomFields, type context_Description as Description, type context_DiscountRule as DiscountRule, type context_DiscountRuleName as DiscountRuleName, context_DiscountType as DiscountType, type context_ExtendedFields as ExtendedFields, type context_ExternalReference as ExternalReference, type context_FullAddressContactDetails as FullAddressContactDetails, type context_GetValidationViolationsRequest as GetValidationViolationsRequest, type context_GetValidationViolationsResponse as GetValidationViolationsResponse, type context_GiftCard as GiftCard, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_ItemTaxFullDetails as ItemTaxFullDetails, type context_ItemType as ItemType, context_ItemTypeItemType as ItemTypeItemType, type context_ItemTypeItemTypeDataOneOf as ItemTypeItemTypeDataOneOf, context_JurisdictionType as JurisdictionType, type context_LineItem as LineItem, type context_LineItemPricesData as LineItemPricesData, type context_MerchantDiscount as MerchantDiscount, type context_MultiCurrencyPrice as MultiCurrencyPrice, context_NameInLineItem as NameInLineItem, context_NameInOther as NameInOther, type context_Other as Other, type context_PhysicalProperties as PhysicalProperties, type context_PriceSummary as PriceSummary, type context_ProductName as ProductName, type context_SelectedCarrierServiceOption as SelectedCarrierServiceOption, type context_SelectedCarrierServiceOptionPrices as SelectedCarrierServiceOptionPrices, context_Severity as Severity, type context_ShippingInfo as ShippingInfo, context_Source as Source, type context_SourceInfo as SourceInfo, type context_Stage as Stage, type context_StageStagesOneOf as StageStagesOneOf, type context_StreetAddress as StreetAddress, context_SubscriptionFrequency as SubscriptionFrequency, type context_SubscriptionOptionInfo as SubscriptionOptionInfo, type context_SubscriptionSettings as SubscriptionSettings, type context_Target as Target, type context_TargetLineItem as TargetLineItem, type context_TargetTargetTypeOneOf as TargetTargetTypeOneOf, type context_TaxBreakdown as TaxBreakdown, type context_Title as Title, type context_ValidationInfo as ValidationInfo, type context_ValidationsSPIConfig as ValidationsSPIConfig, type context_VatId as VatId, context_VatType as VatType, type context_Violation as Violation, context_WeightUnit as WeightUnit, type context__publicProvideHandlersType as _publicProvideHandlersType, context_provideHandlers as provideHandlers, provideHandlers$1 as publicProvideHandlers };
3737
4060
  }
3738
4061
 
3739
- export { context$4 as additionalFees, context$3 as customTriggers, context$2 as discounts, context$1 as paymentSettings, context$5 as shippingRates, context as validations };
4062
+ export { context$4 as additionalFees, context$3 as customTriggers, context$2 as discounts, context$6 as giftVouchersProvider, context$1 as paymentSettings, context$5 as shippingRates, context as validations };