@agent-native/core 0.110.1 → 0.110.3
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/corpus/core/CHANGELOG.md +12 -0
- package/corpus/core/migration-manifest.json +9 -6
- package/corpus/core/package.json +1 -1
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/awareness.d.ts.map +1 -1
- package/dist/collab/routes.d.ts +1 -1
- package/dist/notifications/routes.d.ts +3 -3
- package/dist/observability/routes.d.ts +1 -1
- package/dist/progress/routes.d.ts +1 -1
- package/dist/resources/handlers.d.ts +1 -1
- package/dist/server/agent-engine-api-key-route.d.ts +1 -1
- package/dist/server/transcribe-voice.d.ts +1 -1
- package/migration-manifest.json +9 -6
- package/package.json +3 -3
package/corpus/core/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @agent-native/core
|
|
2
2
|
|
|
3
|
+
## 0.110.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 168ce2f: Keep the framework-wired Context X-Ray panel on its existing Core entrypoint instead of suggesting an incompatible Toolkit view migration.
|
|
8
|
+
|
|
9
|
+
## 0.110.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- b3f04e7: Correct the prepublished registry editor migration so the framework-wired data provider remains on Core's blocks entry.
|
|
14
|
+
|
|
3
15
|
## 0.110.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -374,7 +374,7 @@
|
|
|
374
374
|
"status": "planned"
|
|
375
375
|
},
|
|
376
376
|
"RegistryBlockDataProvider": {
|
|
377
|
-
"to": "@agent-native/
|
|
377
|
+
"to": "@agent-native/core/blocks",
|
|
378
378
|
"status": "planned"
|
|
379
379
|
},
|
|
380
380
|
"RegistryBlockDataValue": {
|
|
@@ -1311,7 +1311,10 @@
|
|
|
1311
1311
|
"UseCollabReconcileResult": "UseCollabReconcileResult",
|
|
1312
1312
|
"createRegistryBlockNode": "createRegistryBlockNode",
|
|
1313
1313
|
"RegistryBlockNodeView": "RegistryBlockNodeView",
|
|
1314
|
-
"RegistryBlockDataProvider":
|
|
1314
|
+
"RegistryBlockDataProvider": {
|
|
1315
|
+
"to": "@agent-native/core/blocks",
|
|
1316
|
+
"status": "planned"
|
|
1317
|
+
},
|
|
1315
1318
|
"useRegistryBlockData": "useRegistryBlockData",
|
|
1316
1319
|
"CreateRegistryBlockNodeOptions": "CreateRegistryBlockNodeOptions",
|
|
1317
1320
|
"RegistryBlockDataValue": "RegistryBlockDataValue",
|
|
@@ -1382,7 +1385,10 @@
|
|
|
1382
1385
|
"UseCollabReconcileResult": "UseCollabReconcileResult",
|
|
1383
1386
|
"createRegistryBlockNode": "createRegistryBlockNode",
|
|
1384
1387
|
"RegistryBlockNodeView": "RegistryBlockNodeView",
|
|
1385
|
-
"RegistryBlockDataProvider":
|
|
1388
|
+
"RegistryBlockDataProvider": {
|
|
1389
|
+
"to": "@agent-native/core/blocks",
|
|
1390
|
+
"status": "planned"
|
|
1391
|
+
},
|
|
1386
1392
|
"useRegistryBlockData": "useRegistryBlockData",
|
|
1387
1393
|
"CreateRegistryBlockNodeOptions": "CreateRegistryBlockNodeOptions",
|
|
1388
1394
|
"RegistryBlockDataValue": "RegistryBlockDataValue",
|
|
@@ -1484,9 +1490,6 @@
|
|
|
1484
1490
|
},
|
|
1485
1491
|
"@agent-native/core/client/visual-style-controls": {
|
|
1486
1492
|
"to": "@agent-native/toolkit/design-tweaks"
|
|
1487
|
-
},
|
|
1488
|
-
"@agent-native/core/client/context-xray/ContextXRayPanel": {
|
|
1489
|
-
"to": "@agent-native/toolkit/context-ui"
|
|
1490
1493
|
}
|
|
1491
1494
|
}
|
|
1492
1495
|
}
|
package/corpus/core/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-native/core",
|
|
3
|
-
"version": "0.110.
|
|
3
|
+
"version": "0.110.3",
|
|
4
4
|
"description": "Framework for agent-native application development — where AI agents and UI share SQL state, actions, and context",
|
|
5
5
|
"homepage": "https://github.com/BuilderIO/agent-native#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -62,11 +62,11 @@ export declare const postAwareness: import("h3").EventHandlerWithFetch<import("h
|
|
|
62
62
|
error: string;
|
|
63
63
|
states?: undefined;
|
|
64
64
|
} | {
|
|
65
|
+
error?: undefined;
|
|
65
66
|
states: {
|
|
66
67
|
clientId: number;
|
|
67
68
|
state: string;
|
|
68
69
|
}[];
|
|
69
|
-
error?: undefined;
|
|
70
70
|
}>>;
|
|
71
71
|
/**
|
|
72
72
|
* GET /_agent-native/collab/:docId/users
|
|
@@ -77,10 +77,10 @@ export declare const getActiveUsers: import("h3").EventHandlerWithFetch<import("
|
|
|
77
77
|
error: string;
|
|
78
78
|
users?: undefined;
|
|
79
79
|
} | {
|
|
80
|
+
error?: undefined;
|
|
80
81
|
users: {
|
|
81
82
|
clientId: number;
|
|
82
83
|
lastSeen: number;
|
|
83
84
|
}[];
|
|
84
|
-
error?: undefined;
|
|
85
85
|
}>>;
|
|
86
86
|
//# sourceMappingURL=awareness.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"awareness.d.ts","sourceRoot":"","sources":["../../src/collab/awareness.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAgB3C,MAAM,WAAW,cAAc;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;CAClB;AAOD,eAAO,MAAM,sBAAsB,EAAG,kBAA2B,CAAC;AAElE,MAAM,WAAW,oBAAoB;IACnC,MAAM,EAAE,WAAW,CAAC;IACpB,IAAI,EAAE,kBAAkB,CAAC;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,2EAA2E;IAC3E,MAAM,EAAE,KAAK,CAAC;QAAE,QAAQ,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACnD,gFAAgF;IAChF,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,sCAAsC;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,2EAA2E;IAC3E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,yEAAyE;IACzE,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,cAAc;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAOD,wBAAgB,mBAAmB,IAAI,YAAY,CAElD;AAED,wBAAgB,sBAAsB,CACpC,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,cAAc,GAAG,SAAS,GAChC,IAAI,CAON;AAED,wBAAgB,mBAAmB,CACjC,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,KAAK,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC,EAClD,KAAK,CAAC,EAAE,cAAc,GACrB,IAAI,CAgBN;AAoBD,wBAAgB,sBAAsB,CACpC,KAAK,EAAE,MAAM,EACb,QAAQ,EAAE,MAAM,EAChB,SAAS,GAAE,MAAmB,GAC7B,IAAI,CAON;AAED,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAE1E;AAiBD,wBAAgB,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,GAAG,CAAC,MAAM,EAAE,cAAc,CAAC,CAO1E;AAED,wBAAgB,YAAY,CAAC,GAAG,EAAE,GAAG,CAAC,MAAM,EAAE,cAAc,CAAC,GAAG,IAAI,CAOnE;AAkCD;;;;;;;GAOG;AACH,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"awareness.d.ts","sourceRoot":"","sources":["../../src/collab/awareness.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAgB3C,MAAM,WAAW,cAAc;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;CAClB;AAOD,eAAO,MAAM,sBAAsB,EAAG,kBAA2B,CAAC;AAElE,MAAM,WAAW,oBAAoB;IACnC,MAAM,EAAE,WAAW,CAAC;IACpB,IAAI,EAAE,kBAAkB,CAAC;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,2EAA2E;IAC3E,MAAM,EAAE,KAAK,CAAC;QAAE,QAAQ,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACnD,gFAAgF;IAChF,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,sCAAsC;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,2EAA2E;IAC3E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,yEAAyE;IACzE,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,cAAc;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAOD,wBAAgB,mBAAmB,IAAI,YAAY,CAElD;AAED,wBAAgB,sBAAsB,CACpC,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,cAAc,GAAG,SAAS,GAChC,IAAI,CAON;AAED,wBAAgB,mBAAmB,CACjC,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,KAAK,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC,EAClD,KAAK,CAAC,EAAE,cAAc,GACrB,IAAI,CAgBN;AAoBD,wBAAgB,sBAAsB,CACpC,KAAK,EAAE,MAAM,EACb,QAAQ,EAAE,MAAM,EAChB,SAAS,GAAE,MAAmB,GAC7B,IAAI,CAON;AAED,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAE1E;AAiBD,wBAAgB,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,GAAG,CAAC,MAAM,EAAE,cAAc,CAAC,CAO1E;AAED,wBAAgB,YAAY,CAAC,GAAG,EAAE,GAAG,CAAC,MAAM,EAAE,cAAc,CAAC,GAAG,IAAI,CAOnE;AAkCD;;;;;;;GAOG;AACH,eAAO,MAAM,aAAa;;;;;;kBAwDa,MAAM;eAAS,MAAM;;GAoB1D,CAAC;AAEH;;;;GAIG;AACH,eAAO,MAAM,cAAc;;;;;;kBAYM,MAAM;kBAAY,MAAM;;GAMvD,CAAC"}
|
package/dist/collab/routes.d.ts
CHANGED
|
@@ -26,8 +26,8 @@ export declare const getCollabState: import("h3").EventHandlerWithFetch<import("
|
|
|
26
26
|
* Body: { update: string (base64), requestSource?: string }
|
|
27
27
|
*/
|
|
28
28
|
export declare const postCollabUpdate: import("h3").EventHandlerWithFetch<import("h3").EventHandlerRequest, Promise<{
|
|
29
|
-
error: string;
|
|
30
29
|
ok?: undefined;
|
|
30
|
+
error: string;
|
|
31
31
|
} | {
|
|
32
32
|
error?: undefined;
|
|
33
33
|
ok: boolean;
|
|
@@ -11,24 +11,24 @@
|
|
|
11
11
|
* DELETE /_agent-native/notifications/:id — delete
|
|
12
12
|
*/
|
|
13
13
|
export declare function createNotificationsHandler(): import("h3").EventHandlerWithFetch<import("h3").EventHandlerRequest, Promise<"" | import("./types.js").Notification[] | {
|
|
14
|
+
error?: undefined;
|
|
14
15
|
count: number;
|
|
15
16
|
updated?: undefined;
|
|
16
17
|
ok?: undefined;
|
|
17
|
-
error?: undefined;
|
|
18
18
|
} | {
|
|
19
|
+
error?: undefined;
|
|
19
20
|
count?: undefined;
|
|
20
21
|
updated: number;
|
|
21
22
|
ok?: undefined;
|
|
22
|
-
error?: undefined;
|
|
23
23
|
} | {
|
|
24
24
|
count?: undefined;
|
|
25
25
|
updated?: undefined;
|
|
26
26
|
error: string;
|
|
27
27
|
ok?: undefined;
|
|
28
28
|
} | {
|
|
29
|
+
error?: undefined;
|
|
29
30
|
count?: undefined;
|
|
30
31
|
updated?: undefined;
|
|
31
32
|
ok: boolean;
|
|
32
|
-
error?: undefined;
|
|
33
33
|
}>>;
|
|
34
34
|
//# sourceMappingURL=routes.d.ts.map
|
|
@@ -49,8 +49,8 @@ export declare function handleUpdateResource(event: any): Promise<import("./stor
|
|
|
49
49
|
}>;
|
|
50
50
|
/** DELETE /_agent-native/resources/:id — delete a resource */
|
|
51
51
|
export declare function handleDeleteResource(event: any): Promise<{
|
|
52
|
-
error: string;
|
|
53
52
|
ok?: undefined;
|
|
53
|
+
error: string;
|
|
54
54
|
} | {
|
|
55
55
|
error?: undefined;
|
|
56
56
|
ok: boolean;
|
|
@@ -27,11 +27,11 @@ export declare function resolveAgentEngineApiKeyWriteTarget(event: H3Event, scop
|
|
|
27
27
|
export declare function createAgentEngineApiKeyHandler(): import("h3").EventHandlerWithFetch<import("h3").EventHandlerRequest, Promise<{
|
|
28
28
|
error: any;
|
|
29
29
|
} | {
|
|
30
|
+
error?: undefined;
|
|
30
31
|
ok: boolean;
|
|
31
32
|
key: string;
|
|
32
33
|
baseUrlKey?: string;
|
|
33
34
|
scope: AgentEngineApiKeyScope;
|
|
34
|
-
error?: undefined;
|
|
35
35
|
}>>;
|
|
36
36
|
export {};
|
|
37
37
|
//# sourceMappingURL=agent-engine-api-key-route.d.ts.map
|
package/migration-manifest.json
CHANGED
|
@@ -374,7 +374,7 @@
|
|
|
374
374
|
"status": "planned"
|
|
375
375
|
},
|
|
376
376
|
"RegistryBlockDataProvider": {
|
|
377
|
-
"to": "@agent-native/
|
|
377
|
+
"to": "@agent-native/core/blocks",
|
|
378
378
|
"status": "planned"
|
|
379
379
|
},
|
|
380
380
|
"RegistryBlockDataValue": {
|
|
@@ -1311,7 +1311,10 @@
|
|
|
1311
1311
|
"UseCollabReconcileResult": "UseCollabReconcileResult",
|
|
1312
1312
|
"createRegistryBlockNode": "createRegistryBlockNode",
|
|
1313
1313
|
"RegistryBlockNodeView": "RegistryBlockNodeView",
|
|
1314
|
-
"RegistryBlockDataProvider":
|
|
1314
|
+
"RegistryBlockDataProvider": {
|
|
1315
|
+
"to": "@agent-native/core/blocks",
|
|
1316
|
+
"status": "planned"
|
|
1317
|
+
},
|
|
1315
1318
|
"useRegistryBlockData": "useRegistryBlockData",
|
|
1316
1319
|
"CreateRegistryBlockNodeOptions": "CreateRegistryBlockNodeOptions",
|
|
1317
1320
|
"RegistryBlockDataValue": "RegistryBlockDataValue",
|
|
@@ -1382,7 +1385,10 @@
|
|
|
1382
1385
|
"UseCollabReconcileResult": "UseCollabReconcileResult",
|
|
1383
1386
|
"createRegistryBlockNode": "createRegistryBlockNode",
|
|
1384
1387
|
"RegistryBlockNodeView": "RegistryBlockNodeView",
|
|
1385
|
-
"RegistryBlockDataProvider":
|
|
1388
|
+
"RegistryBlockDataProvider": {
|
|
1389
|
+
"to": "@agent-native/core/blocks",
|
|
1390
|
+
"status": "planned"
|
|
1391
|
+
},
|
|
1386
1392
|
"useRegistryBlockData": "useRegistryBlockData",
|
|
1387
1393
|
"CreateRegistryBlockNodeOptions": "CreateRegistryBlockNodeOptions",
|
|
1388
1394
|
"RegistryBlockDataValue": "RegistryBlockDataValue",
|
|
@@ -1484,9 +1490,6 @@
|
|
|
1484
1490
|
},
|
|
1485
1491
|
"@agent-native/core/client/visual-style-controls": {
|
|
1486
1492
|
"to": "@agent-native/toolkit/design-tweaks"
|
|
1487
|
-
},
|
|
1488
|
-
"@agent-native/core/client/context-xray/ContextXRayPanel": {
|
|
1489
|
-
"to": "@agent-native/toolkit/context-ui"
|
|
1490
1493
|
}
|
|
1491
1494
|
}
|
|
1492
1495
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-native/core",
|
|
3
|
-
"version": "0.110.
|
|
3
|
+
"version": "0.110.3",
|
|
4
4
|
"description": "Framework for agent-native application development — where AI agents and UI share SQL state, actions, and context",
|
|
5
5
|
"homepage": "https://github.com/BuilderIO/agent-native#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -360,8 +360,8 @@
|
|
|
360
360
|
"y-protocols": "^1.0.7",
|
|
361
361
|
"yjs": "^13.6.31",
|
|
362
362
|
"zod": "^4.3.6",
|
|
363
|
-
"@agent-native/
|
|
364
|
-
"@agent-native/
|
|
363
|
+
"@agent-native/recap-cli": "0.4.4",
|
|
364
|
+
"@agent-native/toolkit": "^0.5.1"
|
|
365
365
|
},
|
|
366
366
|
"devDependencies": {
|
|
367
367
|
"@ai-sdk/anthropic": "^3.0.71",
|