@supernova-studio/client 0.52.6 → 0.52.8

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.52.6",
3
+ "version": "0.52.8",
4
4
  "description": "Supernova Data Models",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.js",
@@ -21,6 +21,7 @@ import {
21
21
  PageBlockItemMultiRichTextValue,
22
22
  PageBlockItemMultiSelectValue,
23
23
  PageBlockItemNumberValue,
24
+ PageBlockItemRichTextEditorValue,
24
25
  PageBlockItemRichTextValue,
25
26
  PageBlockItemSandboxValue,
26
27
  PageBlockItemSingleSelectValue,
@@ -862,6 +863,8 @@ function valueSchemaForPropertyType(type: PageBlockDefinitionPropertyType) {
862
863
  return PageBlockItemColorValue;
863
864
  case "FigmaComponent":
864
865
  return PageBlockItemFigmaComponentValue;
866
+ case "RichTextEditor":
867
+ return PageBlockItemRichTextEditorValue;
865
868
  }
866
869
  }
867
870