lucid-extension-sdk 0.0.35 → 0.0.36

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucid-extension-sdk",
3
- "version": "0.0.35",
3
+ "version": "0.0.36",
4
4
  "description": "Utility classes for writing Lucid Software editor extensions",
5
5
  "main": "sdk/index.js",
6
6
  "types": "sdk/index.d.ts",
@@ -39,7 +39,7 @@ class ExperimentalLinkUnfurlBlockProxy extends blockproxy_1.BlockProxy {
39
39
  * @ignore
40
40
  */
41
41
  setPreviewThumbnailUrl(thumbnailUrl) {
42
- throw new Error('Not yet implemented');
42
+ this.properties.set('LinkUnfurlThumbnailUrl', thumbnailUrl);
43
43
  }
44
44
  /**
45
45
  * Sets additional thumbnails on the block
@@ -47,7 +47,7 @@ class ExperimentalLinkUnfurlBlockProxy extends blockproxy_1.BlockProxy {
47
47
  * @ignore
48
48
  */
49
49
  setThumbnailUrls(thumbnails) {
50
- throw new Error('Not yet implemented');
50
+ this.properties.set('LinkUnfurlThumbnailUrls', thumbnails);
51
51
  }
52
52
  }
53
53
  exports.ExperimentalLinkUnfurlBlockProxy = ExperimentalLinkUnfurlBlockProxy;