@kevisual/query 0.0.43 → 0.0.44

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.
@@ -242,6 +242,10 @@ type Pos = {
242
242
  id?: string;
243
243
  metadata?: {
244
244
  args?: Record<string, any>;
245
+ viewItem?: Record<string, any>;
246
+ url?: string;
247
+ source?: string;
248
+ [key: string]: any;
245
249
  };
246
250
  };
247
251
  type InferFromJSONSchema<T> = T extends {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kevisual/query",
3
- "version": "0.0.43",
3
+ "version": "0.0.44",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "npm run clean && bun run bun.config.ts",
@@ -19,7 +19,7 @@
19
19
  "description": "",
20
20
  "devDependencies": {
21
21
  "@kevisual/code-builder": "^0.0.6",
22
- "@kevisual/router": "^0.0.72",
22
+ "@kevisual/router": "^0.0.74",
23
23
  "@types/node": "^25.2.3",
24
24
  "typescript": "^5.9.3",
25
25
  "es-toolkit": "^1.44.0",
package/src/query-api.ts CHANGED
@@ -8,6 +8,10 @@ type Pos = {
8
8
  id?: string;
9
9
  metadata?: {
10
10
  args?: Record<string, any>;
11
+ viewItem?: Record<string, any>;
12
+ url?: string;
13
+ source?: string;
14
+ [key: string]: any;
11
15
  };
12
16
  }
13
17