@wix/auto_sdk_blog_draft-posts 1.0.36 → 1.0.37
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 +30 -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 +30 -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 +30 -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 +30 -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
|
@@ -1391,6 +1391,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
1391
1391
|
cardStyles?: CardStyles;
|
|
1392
1392
|
/** Styling for the app embed's container. */
|
|
1393
1393
|
containerData?: PluginContainerData;
|
|
1394
|
+
/** Pricing data for embedded Wix App content. */
|
|
1395
|
+
pricingData?: PricingData;
|
|
1394
1396
|
}
|
|
1395
1397
|
/** @oneof */
|
|
1396
1398
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -1592,6 +1594,33 @@ interface CardStyles {
|
|
|
1592
1594
|
*/
|
|
1593
1595
|
textColor?: string | null;
|
|
1594
1596
|
}
|
|
1597
|
+
interface PricingData {
|
|
1598
|
+
/**
|
|
1599
|
+
* Minimum numeric price value as string (e.g., "10.99").
|
|
1600
|
+
* @decimalValue options { maxScale:2 }
|
|
1601
|
+
*/
|
|
1602
|
+
valueFrom?: string | null;
|
|
1603
|
+
/**
|
|
1604
|
+
* Maximum numeric price value as string (e.g., "19.99").
|
|
1605
|
+
* @decimalValue options { maxScale:2 }
|
|
1606
|
+
*/
|
|
1607
|
+
valueTo?: string | null;
|
|
1608
|
+
/**
|
|
1609
|
+
* Numeric price value as string after discount application (e.g., "15.99").
|
|
1610
|
+
* @decimalValue options { maxScale:2 }
|
|
1611
|
+
*/
|
|
1612
|
+
discountedValue?: string | null;
|
|
1613
|
+
/**
|
|
1614
|
+
* Currency of the value in ISO 4217 format (e.g., "USD", "EUR").
|
|
1615
|
+
* @format CURRENCY
|
|
1616
|
+
*/
|
|
1617
|
+
currency?: string | null;
|
|
1618
|
+
/**
|
|
1619
|
+
* Pricing plan ID.
|
|
1620
|
+
* @format GUID
|
|
1621
|
+
*/
|
|
1622
|
+
pricingPlanId?: string | null;
|
|
1623
|
+
}
|
|
1595
1624
|
interface VideoData {
|
|
1596
1625
|
/** Styling for the video's container. */
|
|
1597
1626
|
containerData?: PluginContainerData;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_blog_draft-posts",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.37",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": "wix.blog.v3.draft"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "1b4e415b3c97835777190e2dcb734f313e2027b1c85e903de7ef05c8"
|
|
54
54
|
}
|