@widget-js/core 24.1.1-beta.42 → 24.1.1-beta.43

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/dist/index.cjs CHANGED
@@ -1660,6 +1660,16 @@ var DeployedPage = class {
1660
1660
  id;
1661
1661
  };
1662
1662
 
1663
+ // src/model/SocialInfo.ts
1664
+ var SocialInfo = class {
1665
+ content;
1666
+ name;
1667
+ constructor(name, content) {
1668
+ this.name = name;
1669
+ this.content = content;
1670
+ }
1671
+ };
1672
+
1663
1673
  // src/model/DeployedWidget.ts
1664
1674
  var DeployedWidget = class extends DeployedPage {
1665
1675
  shortcut;
@@ -3313,6 +3323,7 @@ exports.Page = Page;
3313
3323
  exports.ProcessApi = ProcessApi;
3314
3324
  exports.ShortcutApi = ShortcutApi;
3315
3325
  exports.ShortcutApiEvent = ShortcutApiEvent;
3326
+ exports.SocialInfo = SocialInfo;
3316
3327
  exports.StorageApi = StorageApi;
3317
3328
  exports.StoreApi = StoreApi;
3318
3329
  exports.SystemApi = SystemApi;