@vgai/editor-sdk 0.5.3 → 0.5.4

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
@@ -2,7 +2,7 @@
2
2
  "name": "@vgai/editor-sdk",
3
3
  "author": "Volter AI, Inc.",
4
4
  "license": "Apache-2.0",
5
- "version": "0.5.3",
5
+ "version": "0.5.4",
6
6
  "type": "module",
7
7
  "repository": {
8
8
  "type": "git",
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "@types/three": "^0.180.0",
25
- "@vgai/sdk": "0.5.3"
25
+ "@vgai/sdk": "0.5.4"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "react": "^19.0.0",
@@ -32,7 +32,7 @@ const DIAGNOSTICS = new Set<EditorViewDiagnostic>([
32
32
  'bounds',
33
33
  'skeleton',
34
34
  ]);
35
- const UTILITIES = new Set<EditorViewUtility>(['profiler', 'console', 'animation', 'debugger']);
35
+ const UTILITIES = new Set<EditorViewUtility>(['profiler', 'console', 'animation']);
36
36
 
37
37
  function nonEmpty(value: string | null): string | null {
38
38
  const trimmed = value?.trim();
package/src/types.ts CHANGED
@@ -473,7 +473,7 @@ export interface EditorView {
473
473
  frame?: 'document' | 'selection';
474
474
  grid?: boolean;
475
475
  };
476
- utility?: 'profiler' | 'console' | 'animation' | 'debugger';
476
+ utility?: 'profiler' | 'console' | 'animation';
477
477
  }
478
478
 
479
479
  export interface PresentedEditorView {