@wix/auto_sdk_comments_comments 1.0.24 → 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.
@@ -1362,6 +1362,10 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
1362
1362
  ribbonStyles?: RibbonStyles;
1363
1363
  /** Card styling options. */
1364
1364
  cardStyles?: CardStyles;
1365
+ /** Styling for the app embed's container. */
1366
+ containerData?: PluginContainerData;
1367
+ /** Pricing data for embedded Wix App content. */
1368
+ pricingData?: PricingData;
1365
1369
  }
1366
1370
  /** @oneof */
1367
1371
  interface AppEmbedDataAppDataOneOf {
@@ -1563,6 +1567,33 @@ interface CardStyles {
1563
1567
  */
1564
1568
  textColor?: string | null;
1565
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
+ }
1566
1597
  interface VideoData {
1567
1598
  /** Styling for the video's container. */
1568
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.24",
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": "712d6e50078932ed2feacd70b73d704716ac4f58bce3cffca62d16e1"
53
+ "falconPackageHash": "c051f93b4129ec761d85ed54afab8b0ee553879246c9ef311b29e8d8"
54
54
  }