@wix/auto_sdk_ecom_checkout-templates 1.0.52 → 1.0.54
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.js.map +1 -1
- package/build/cjs/index.typings.d.ts +7 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +7 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +1 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +1 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +1 -1
- package/package.json +2 -2
|
@@ -292,7 +292,7 @@ declare enum PaymentOptionType {
|
|
|
292
292
|
FULL_PAYMENT_ONLINE = "FULL_PAYMENT_ONLINE",
|
|
293
293
|
/** The entire payment for this item happens after checkout. For example, when using cash, check, or other offline payment methods. */
|
|
294
294
|
FULL_PAYMENT_OFFLINE = "FULL_PAYMENT_OFFLINE",
|
|
295
|
-
/** Payment for this item is done by charging a membership.
|
|
295
|
+
/** Payment for this item is done by charging a membership. Any remaining amount not covered by the membership, such as item modifiers, is paid online. */
|
|
296
296
|
MEMBERSHIP = "MEMBERSHIP",
|
|
297
297
|
/** Partial payment to be paid upfront during checkout. The initial amount to be paid for each line item is specified in `depositAmount`. */
|
|
298
298
|
DEPOSIT_ONLINE = "DEPOSIT_ONLINE",
|
|
@@ -2306,6 +2306,12 @@ interface AdditionalFee {
|
|
|
2306
2306
|
lineItemIds?: string[];
|
|
2307
2307
|
/** the source the additional fee was added from */
|
|
2308
2308
|
source?: AdditionalFeeSourceWithLiterals;
|
|
2309
|
+
/**
|
|
2310
|
+
* The translated name of the additional fee. The translation language is determined by the `languages` field in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
|
|
2311
|
+
* @minLength 1
|
|
2312
|
+
* @maxLength 50
|
|
2313
|
+
*/
|
|
2314
|
+
translatedName?: string | null;
|
|
2309
2315
|
}
|
|
2310
2316
|
declare enum AdditionalFeeSource {
|
|
2311
2317
|
UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
|