@agent-native/core 0.137.5 → 0.137.6
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/README.md +1 -1
- package/corpus/templates/clips/app/components/library/library-layout.tsx +95 -17
- package/corpus/templates/clips/app/components/library/space-card.tsx +136 -66
- package/corpus/templates/clips/app/components/library/space-dialogs.tsx +144 -0
- package/corpus/templates/clips/app/hooks/use-library.ts +2 -2
- package/corpus/templates/clips/app/i18n/en-US.ts +13 -0
- package/corpus/templates/clips/app/routes/_app.spaces._index.tsx +6 -2
- package/corpus/templates/clips/desktop/src/components/MediaDeviceRow.tsx +106 -87
- package/corpus/templates/clips/desktop/src/styles.css +19 -1
- package/corpus/templates/design/app/components/design/DesignCanvas.tsx +7 -0
- package/corpus/templates/design/app/components/design/MultiScreenCanvas.tsx +103 -49
- package/corpus/templates/design/app/components/design/multi-screen/overview-layout.ts +4 -0
- package/corpus/templates/design/app/components/design/multi-screen/paint-suppression.ts +85 -0
- package/corpus/templates/design/changelog/2026-08-03-zoom-screen-blink.md +6 -0
- package/dist/agent/run-store.js +18 -0
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/routes.d.ts +1 -1
- package/dist/notifications/routes.d.ts +2 -2
- package/dist/resources/handlers.d.ts +1 -1
- package/dist/secrets/routes.d.ts +3 -3
- package/dist/server/realtime-token.d.ts +1 -1
- package/package.json +1 -1
package/dist/agent/run-store.js
CHANGED
|
@@ -1168,6 +1168,24 @@ export async function reconcileTerminalRunFromEvents(runId) {
|
|
|
1168
1168
|
const client = getDbExec();
|
|
1169
1169
|
const errorCode = errorCodeForTerminalEvent(latest.event);
|
|
1170
1170
|
const errorDetail = errorDetailForTerminalEvent(latest.event);
|
|
1171
|
+
// A row already holding the reconciled values is converged, and saying
|
|
1172
|
+
// otherwise is not cosmetic: the UPDATE below still matches such a row and
|
|
1173
|
+
// SQL counts an unchanged rewrite as affected, so `rowsAffected` reports
|
|
1174
|
+
// "repaired" on every call. `getRunByThread` re-reads and re-reconciles on
|
|
1175
|
+
// that answer, so a settled errored/stale_run row recurses forever and pins
|
|
1176
|
+
// the event loop instead of returning. Converged must read as no work done.
|
|
1177
|
+
const { rows: currentRows } = await client.execute({
|
|
1178
|
+
sql: `SELECT status, error_code, terminal_reason, completed_at FROM agent_runs WHERE id = ?`,
|
|
1179
|
+
args: [runId],
|
|
1180
|
+
});
|
|
1181
|
+
const current = currentRows[0];
|
|
1182
|
+
if (current &&
|
|
1183
|
+
current.status === status &&
|
|
1184
|
+
(current.error_code ?? null) === (errorCode ?? null) &&
|
|
1185
|
+
(current.terminal_reason ?? null) === terminalReason &&
|
|
1186
|
+
current.completed_at != null) {
|
|
1187
|
+
return false;
|
|
1188
|
+
}
|
|
1171
1189
|
const { rowsAffected } = await client.execute({
|
|
1172
1190
|
sql: `UPDATE agent_runs
|
|
1173
1191
|
SET status = ?,
|
|
@@ -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;
|
|
66
65
|
states: {
|
|
67
66
|
clientId: number;
|
|
68
67
|
state: string;
|
|
69
68
|
}[];
|
|
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;
|
|
81
80
|
users: {
|
|
82
81
|
clientId: number;
|
|
83
82
|
lastSeen: number;
|
|
84
83
|
}[];
|
|
84
|
+
error?: undefined;
|
|
85
85
|
}>>;
|
|
86
86
|
//# sourceMappingURL=awareness.d.ts.map
|
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;
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
export declare function createNotificationsHandler(): import("h3").EventHandlerWithFetch<import("h3").EventHandlerRequest, Promise<"" | import("./types.js").Notification[] | {
|
|
14
14
|
count: number;
|
|
15
15
|
updated?: undefined;
|
|
16
|
-
error?: undefined;
|
|
17
16
|
ok?: undefined;
|
|
17
|
+
error?: undefined;
|
|
18
18
|
} | {
|
|
19
19
|
count?: undefined;
|
|
20
20
|
updated: number;
|
|
21
|
-
error?: undefined;
|
|
22
21
|
ok?: undefined;
|
|
22
|
+
error?: undefined;
|
|
23
23
|
} | {
|
|
24
24
|
count?: undefined;
|
|
25
25
|
updated?: undefined;
|
|
@@ -48,8 +48,8 @@ export declare function handleUpdateResource(event: any): Promise<import("./stor
|
|
|
48
48
|
}>;
|
|
49
49
|
/** DELETE /_agent-native/resources/:id — delete a resource */
|
|
50
50
|
export declare function handleDeleteResource(event: any): Promise<{
|
|
51
|
-
error: string;
|
|
52
51
|
ok?: undefined;
|
|
52
|
+
error: string;
|
|
53
53
|
} | {
|
|
54
54
|
error?: undefined;
|
|
55
55
|
ok: boolean;
|
package/dist/secrets/routes.d.ts
CHANGED
|
@@ -34,16 +34,16 @@ export declare function createListSecretsHandler(): import("h3").EventHandlerWit
|
|
|
34
34
|
/** POST /_agent-native/secrets/:key — write a secret. */
|
|
35
35
|
export declare function createWriteSecretHandler(): import("h3").EventHandlerWithFetch<import("h3").EventHandlerRequest, Promise<{
|
|
36
36
|
error: string;
|
|
37
|
-
status?: undefined;
|
|
38
37
|
ok?: undefined;
|
|
38
|
+
status?: undefined;
|
|
39
39
|
} | {
|
|
40
40
|
error?: undefined;
|
|
41
41
|
ok: boolean;
|
|
42
42
|
status: string;
|
|
43
43
|
} | {
|
|
44
|
+
ok?: undefined;
|
|
44
45
|
error: string;
|
|
45
46
|
removed?: undefined;
|
|
46
|
-
ok?: undefined;
|
|
47
47
|
} | {
|
|
48
48
|
error?: undefined;
|
|
49
49
|
ok: boolean;
|
|
@@ -54,9 +54,9 @@ export declare function createWriteSecretHandler(): import("h3").EventHandlerWit
|
|
|
54
54
|
* or the current stored value without changing anything.
|
|
55
55
|
*/
|
|
56
56
|
export declare function createTestSecretHandler(): import("h3").EventHandlerWithFetch<import("h3").EventHandlerRequest, Promise<{
|
|
57
|
+
ok?: undefined;
|
|
57
58
|
error: string;
|
|
58
59
|
note?: undefined;
|
|
59
|
-
ok?: undefined;
|
|
60
60
|
} | {
|
|
61
61
|
error?: undefined;
|
|
62
62
|
ok: boolean;
|
|
@@ -26,9 +26,9 @@ export declare function createRealtimeTokenHandler(): import("h3").EventHandlerW
|
|
|
26
26
|
expiresAt?: undefined;
|
|
27
27
|
ttlSeconds?: undefined;
|
|
28
28
|
} | {
|
|
29
|
-
error?: undefined;
|
|
30
29
|
token: string;
|
|
31
30
|
expiresAt: string;
|
|
32
31
|
ttlSeconds: number;
|
|
32
|
+
error?: undefined;
|
|
33
33
|
}>>;
|
|
34
34
|
//# sourceMappingURL=realtime-token.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-native/core",
|
|
3
|
-
"version": "0.137.
|
|
3
|
+
"version": "0.137.6",
|
|
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": {
|