@wix/auto_sdk_ecom_cart 1.0.48 → 1.0.49
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.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +7 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +7 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2349,6 +2349,13 @@ interface AdditionalFee {
|
|
|
2349
2349
|
subscriptionCycles?: number | null;
|
|
2350
2350
|
/** the source the additional fee was added from */
|
|
2351
2351
|
source?: AdditionalFeeSourceWithLiterals;
|
|
2352
|
+
/**
|
|
2353
|
+
* 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).
|
|
2354
|
+
* @internal
|
|
2355
|
+
* @minLength 1
|
|
2356
|
+
* @maxLength 50
|
|
2357
|
+
*/
|
|
2358
|
+
translatedName?: string | null;
|
|
2352
2359
|
}
|
|
2353
2360
|
declare enum AdditionalFeeSource {
|
|
2354
2361
|
UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
|