@supernova-studio/client 0.36.1 → 0.36.2

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.36.1",
3
+ "version": "0.36.2",
4
4
  "description": "Supernova Data Models",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.js",
@@ -752,7 +752,7 @@ function parseItem(rawItem: unknown, definition: PageBlockDefinition): PageBlock
752
752
  if (validationResult.success) {
753
753
  sanitizedProps[property.id] = validationResult.data;
754
754
  } else {
755
- console.log(new String(validationResult.error.flatten()));
755
+ console.log(validationResult.error.toString());
756
756
  }
757
757
  }
758
758