@supernova-studio/client 0.47.41 → 0.47.42

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": "@supernova-studio/client",
3
- "version": "0.47.41",
3
+ "version": "0.47.42",
4
4
  "description": "Supernova Data Models",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.js",
@@ -497,6 +497,7 @@ function serializeTableNode(node: PageBlockItemTableNode): ProsemirrorNode {
497
497
  id: node.id,
498
498
  props: {
499
499
  image: {
500
+ caption: node.caption,
500
501
  value: node.value,
501
502
  } satisfies PageBlockItemImageValue,
502
503
  },
@@ -585,6 +585,7 @@ function parseAsTableNode(prosemirrorNode: ProsemirrorNode): PageBlockItemTableN
585
585
  type: "Image",
586
586
  id: id,
587
587
  value: imagePropertyValueParseResult.data.value,
588
+ caption: imagePropertyValueParseResult.data.caption,
588
589
  };
589
590
 
590
591
  default: