@omniviewdev/runtime 0.0.0-nightly.20260310 → 0.0.0-nightly.20260312

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.
@@ -501,6 +501,11 @@ export declare namespace registry {
501
501
  }
502
502
  }
503
503
  export declare namespace resource {
504
+ enum SyncPolicy {
505
+ ON_CONNECT = 0,
506
+ ON_FIRST_QUERY = 1,
507
+ NEVER = 2
508
+ }
504
509
  enum WatchState {
505
510
  IDLE = 0,
506
511
  SYNCING = 1,
@@ -511,11 +516,6 @@ export declare namespace resource {
511
516
  FORBIDDEN = 6,
512
517
  SKIPPED = 7
513
518
  }
514
- enum SyncPolicy {
515
- ON_CONNECT = 0,
516
- ON_FIRST_QUERY = 1,
517
- NEVER = 2
518
- }
519
519
  class SchemaProperty {
520
520
  type: string;
521
521
  description?: string;
@@ -924,7 +924,7 @@ export declare namespace trivy {
924
924
  filePatterns: string[];
925
925
  skipDirs: string[];
926
926
  skipFiles: string[];
927
- scanners: Scanner[];
927
+ scanners: string[];
928
928
  static createFrom(source?: any): ScanOptions;
929
929
  constructor(source?: any);
930
930
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "author": "Omniview",
3
3
  "license": "AGPL-3.0-only",
4
4
  "name": "@omniviewdev/runtime",
5
- "version": "0.0.0-nightly.20260310",
5
+ "version": "0.0.0-nightly.20260312",
6
6
  "description": "Runtime shared library for Omniview",
7
7
  "sideEffects": false,
8
8
  "type": "module",
@@ -62,7 +62,11 @@
62
62
  },
63
63
  "scripts": {
64
64
  "build": "tsc && vite build",
65
+ "test": "vitest run",
66
+ "test:watch": "vitest",
67
+ "test:verbose": "vitest run --reporter=verbose",
68
+ "typecheck": "tsc -p tsconfig.app.json --noEmit",
65
69
  "lint": "eslint --cache --ext .js,.jsx,.ts,.tsx ./src",
66
- "lint:fix": "npm run lint -- --fix"
70
+ "lint:fix": "pnpm lint -- --fix"
67
71
  }
68
72
  }