@wix/auto_sdk_comments_comments 1.0.25 → 1.0.26

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.
@@ -1364,6 +1364,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
1364
1364
  cardStyles?: CardStyles;
1365
1365
  /** Styling for the app embed's container. */
1366
1366
  containerData?: PluginContainerData;
1367
+ /** Pricing data for embedded Wix App content. */
1368
+ pricingData?: PricingData;
1367
1369
  }
1368
1370
  /** @oneof */
1369
1371
  interface AppEmbedDataAppDataOneOf {
@@ -1565,6 +1567,33 @@ interface CardStyles {
1565
1567
  */
1566
1568
  textColor?: string | null;
1567
1569
  }
1570
+ interface PricingData {
1571
+ /**
1572
+ * Minimum numeric price value as string (e.g., "10.99").
1573
+ * @decimalValue options { maxScale:2 }
1574
+ */
1575
+ valueFrom?: string | null;
1576
+ /**
1577
+ * Maximum numeric price value as string (e.g., "19.99").
1578
+ * @decimalValue options { maxScale:2 }
1579
+ */
1580
+ valueTo?: string | null;
1581
+ /**
1582
+ * Numeric price value as string after discount application (e.g., "15.99").
1583
+ * @decimalValue options { maxScale:2 }
1584
+ */
1585
+ discountedValue?: string | null;
1586
+ /**
1587
+ * Currency of the value in ISO 4217 format (e.g., "USD", "EUR").
1588
+ * @format CURRENCY
1589
+ */
1590
+ currency?: string | null;
1591
+ /**
1592
+ * Pricing plan ID.
1593
+ * @format GUID
1594
+ */
1595
+ pricingPlanId?: string | null;
1596
+ }
1568
1597
  interface VideoData {
1569
1598
  /** Styling for the video's container. */
1570
1599
  containerData?: PluginContainerData;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/auto_sdk_comments_comments",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -30,7 +30,7 @@
30
30
  ],
31
31
  "dependencies": {
32
32
  "@wix/sdk-runtime": "^0.3.55",
33
- "@wix/sdk-types": "^1.13.28"
33
+ "@wix/sdk-types": "^1.13.35"
34
34
  },
35
35
  "devDependencies": {
36
36
  "tsup": "^8.4.0",
@@ -50,5 +50,5 @@
50
50
  "fqdn": "wix.comments.v2.comment"
51
51
  }
52
52
  },
53
- "falconPackageHash": "19f37e75211c0b6a2af7e9a8c01817293f427f54696da105c07127f9"
53
+ "falconPackageHash": "c051f93b4129ec761d85ed54afab8b0ee553879246c9ef311b29e8d8"
54
54
  }