@wix/auto_sdk_events_wix-events-v-2 1.0.43 → 1.0.45
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 +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +101 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +29 -0
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +101 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +29 -0
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +101 -1
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +29 -0
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +101 -1
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +29 -0
- package/package.json +2 -2
|
@@ -2294,6 +2294,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
2294
2294
|
cardStyles?: CardStyles;
|
|
2295
2295
|
/** Styling for the app embed's container. */
|
|
2296
2296
|
containerData?: PluginContainerData;
|
|
2297
|
+
/** Pricing data for embedded Wix App content. */
|
|
2298
|
+
pricingData?: PricingData;
|
|
2297
2299
|
}
|
|
2298
2300
|
/** @oneof */
|
|
2299
2301
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -2495,6 +2497,33 @@ interface CardStyles {
|
|
|
2495
2497
|
*/
|
|
2496
2498
|
textColor?: string | null;
|
|
2497
2499
|
}
|
|
2500
|
+
interface PricingData {
|
|
2501
|
+
/**
|
|
2502
|
+
* Minimum numeric price value as string (e.g., "10.99").
|
|
2503
|
+
* @decimalValue options { maxScale:2 }
|
|
2504
|
+
*/
|
|
2505
|
+
valueFrom?: string | null;
|
|
2506
|
+
/**
|
|
2507
|
+
* Maximum numeric price value as string (e.g., "19.99").
|
|
2508
|
+
* @decimalValue options { maxScale:2 }
|
|
2509
|
+
*/
|
|
2510
|
+
valueTo?: string | null;
|
|
2511
|
+
/**
|
|
2512
|
+
* Numeric price value as string after discount application (e.g., "15.99").
|
|
2513
|
+
* @decimalValue options { maxScale:2 }
|
|
2514
|
+
*/
|
|
2515
|
+
discountedValue?: string | null;
|
|
2516
|
+
/**
|
|
2517
|
+
* Currency of the value in ISO 4217 format (e.g., "USD", "EUR").
|
|
2518
|
+
* @format CURRENCY
|
|
2519
|
+
*/
|
|
2520
|
+
currency?: string | null;
|
|
2521
|
+
/**
|
|
2522
|
+
* Pricing plan ID.
|
|
2523
|
+
* @format GUID
|
|
2524
|
+
*/
|
|
2525
|
+
pricingPlanId?: string | null;
|
|
2526
|
+
}
|
|
2498
2527
|
interface VideoData {
|
|
2499
2528
|
/** Styling for the video's container. */
|
|
2500
2529
|
containerData?: PluginContainerData;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_events_wix-events-v-2",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.45",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": "wix.events.v3.event"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "f52926eb8495addcdbbaee9920082e03d0c998193363bb43e055e11a"
|
|
54
54
|
}
|