@agent-native/core 0.134.0 → 0.134.1
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/core/CHANGELOG.md +6 -0
- package/corpus/core/docs/content/template-content-developers.mdx +1 -1
- package/corpus/core/package.json +1 -1
- package/corpus/templates/clips/changelog/2026-07-29-meeting-notes-no-longer-transcribe-the-other-side-twice-when.md +6 -0
- package/corpus/templates/clips/desktop/src/hooks/useMeetingTranscription.ts +37 -48
- package/corpus/templates/clips/desktop/src/lib/transcription-capture.ts +7 -5
- package/corpus/templates/clips/desktop/src/lib/transcription-engine.ts +182 -106
- package/corpus/templates/clips/desktop/src/overlays/live-transcript.tsx +43 -14
- package/corpus/templates/clips/desktop/src/overlays/recording-pill.tsx +3 -3
- package/corpus/templates/clips/desktop/src-tauri/src/echo_guard.rs +443 -0
- package/corpus/templates/clips/desktop/src-tauri/src/lib.rs +1 -0
- package/corpus/templates/clips/desktop/src-tauri/src/whisper_speech.rs +125 -16
- package/corpus/templates/content/.agents/skills/document-editing/references/databases.md +6 -4
- package/corpus/templates/content/actions/_database-membership-lock.ts +25 -0
- package/corpus/templates/content/actions/_database-row-batch.ts +6 -2
- package/corpus/templates/content/actions/_database-source-utils.ts +289 -129
- package/corpus/templates/content/actions/_database-utils.ts +12 -3
- package/corpus/templates/content/actions/add-content-database-source-field-property.ts +39 -21
- package/corpus/templates/content/actions/attach-content-database-source.ts +4 -1
- package/corpus/templates/content/actions/change-content-database-source-role.ts +3 -5
- package/corpus/templates/content/actions/duplicate-document-property.ts +59 -46
- package/corpus/templates/content/actions/execute-builder-source-execution.ts +77 -71
- package/corpus/templates/content/actions/materialize-builder-required-fields.ts +7 -0
- package/corpus/templates/content/actions/remove-database-items.ts +183 -0
- package/corpus/templates/content/actions/set-document-property.ts +57 -39
- package/corpus/templates/content/actions/sync-local-folder-source.ts +7 -0
- package/corpus/templates/content/app/components/editor/database/DatabaseView.tsx +471 -329
- package/corpus/templates/content/app/components/editor/database/row-access.ts +45 -0
- package/corpus/templates/content/app/components/editor/database/shared.tsx +141 -38
- package/corpus/templates/content/app/hooks/use-content-database.ts +2 -2
- package/corpus/templates/content/app/i18n-data.ts +130 -0
- package/corpus/templates/content/changelog/2026-07-30-database-rows-can-now-be-removed-without-deleting-their-page.md +6 -0
- package/corpus/templates/content/parity/eval-scenarios.ts +2 -2
- package/corpus/templates/content/parity/matrix.md +1 -1
- package/corpus/templates/content/parity/matrix.ts +4 -5
- package/corpus/templates/content/shared/api.ts +4 -0
- package/corpus/templates/design/.generated/bridge/editor-chrome.generated.ts +26 -11
- package/corpus/templates/design/actions/take-design-screenshot.ts +7 -0
- package/corpus/templates/design/app/components/design/DesignCanvas.tsx +11 -3
- package/corpus/templates/design/app/components/design/MultiScreenCanvas.tsx +4 -1
- package/corpus/templates/design/app/components/design/bridge/editor-chrome.bridge.ts +54 -17
- package/corpus/templates/design/app/components/design/design-canvas/local-runtime.ts +126 -0
- package/corpus/templates/design/app/components/templates/TemplatePreview.tsx +2 -0
- package/corpus/templates/design/app/pages/Index.tsx +3 -1
- package/corpus/templates/design/app/pages/Present.tsx +2 -1
- package/corpus/templates/design/changelog/2026-07-30-a-broken-inline-script-in-a-generated-screen-is-now-caught-o.md +6 -0
- package/corpus/templates/design/changelog/2026-07-30-design-html-is-now-validated-with-a-spec-grade-html-parser-i.md +6 -0
- package/corpus/templates/design/changelog/2026-07-30-designs-now-load-their-tailwind-and-alpine-runtimes-from-the.md +6 -0
- package/corpus/templates/design/changelog/2026-07-30-designs-with-a-broken-alpine-expression-are-now-caught-on-sa.md +6 -0
- package/corpus/templates/design/changelog/2026-07-30-editing-a-design-no-longer-strips-its-styling-the-canvas-kep.md +6 -0
- package/corpus/templates/design/package.json +4 -0
- package/corpus/templates/design/shared/html-integrity.ts +802 -556
- package/dist/notifications/routes.d.ts +3 -3
- package/docs/content/template-content-developers.mdx +1 -1
- package/package.json +1 -1
- package/corpus/templates/content/actions/delete-database-items.ts +0 -89
|
@@ -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
|
-
ok?: undefined;
|
|
17
16
|
error?: undefined;
|
|
17
|
+
ok?: undefined;
|
|
18
18
|
} | {
|
|
19
19
|
count?: undefined;
|
|
20
20
|
updated: number;
|
|
21
|
-
ok?: undefined;
|
|
22
21
|
error?: undefined;
|
|
22
|
+
ok?: undefined;
|
|
23
23
|
} | {
|
|
24
24
|
count?: undefined;
|
|
25
25
|
updated?: undefined;
|
|
@@ -28,7 +28,7 @@ export declare function createNotificationsHandler(): import("h3").EventHandlerW
|
|
|
28
28
|
} | {
|
|
29
29
|
count?: undefined;
|
|
30
30
|
updated?: undefined;
|
|
31
|
-
ok: boolean;
|
|
32
31
|
error?: undefined;
|
|
32
|
+
ok: boolean;
|
|
33
33
|
}>>;
|
|
34
34
|
//# sourceMappingURL=routes.d.ts.map
|
|
@@ -278,7 +278,7 @@ Every operation is a TypeScript file in `templates/content/actions/`, auto-mount
|
|
|
278
278
|
|
|
279
279
|
**Comments** — `list-comments`, `add-comment`, `update-comment`, `delete-comment`.
|
|
280
280
|
|
|
281
|
-
**Databases, properties & views** — `create-content-database`, `create-inline-content-database`, `get-content-database`, `list-content-databases`, `delete-content-database`, `restore-content-database`, `list-trashed-content-databases`, `add-database-item`, `duplicate-database-item`, `duplicate-database-items`, `
|
|
281
|
+
**Databases, properties & views** — `create-content-database`, `create-inline-content-database`, `get-content-database`, `list-content-databases`, `delete-content-database`, `restore-content-database`, `list-trashed-content-databases`, `add-database-item`, `duplicate-database-item`, `duplicate-database-items`, `remove-database-items`, `move-database-item`, `update-content-database-view`, `get-content-database-personal-view`, `update-content-database-personal-view`, `list-document-properties`, `configure-document-property`, `set-document-property`, `duplicate-document-property`, `delete-document-property`, `reorder-document-property`, `submit-content-database-form`.
|
|
282
282
|
|
|
283
283
|
**External database sources** — `attach-content-database-source`, `disconnect-content-database-source`, `get-content-database-source`, `refresh-content-database-source`, `review-content-database-source-change-set`, `bind-content-database-source-field`, `add-content-database-source-field-property`, `suggest-source-join-key`, `list-notion-database-sources`, `list-builder-cms-models`. Builder's write-back path adds `prepare-builder-source-review`, `preview-builder-source-review`, `prepare-builder-source-execution`, `validate-builder-source-execution`, `execute-builder-source-execution`, `execute-builder-source-batch`, `cancel-prepared-builder-source-update`, `stage-builder-revision`, `stage-builder-source-bulk-update`, `materialize-builder-required-fields`, and `process-builder-body-hydration`.
|
|
284
284
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-native/core",
|
|
3
|
-
"version": "0.134.
|
|
3
|
+
"version": "0.134.1",
|
|
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": {
|
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
import { defineAction } from "@agent-native/core";
|
|
2
|
-
import { writeAppState } from "@agent-native/core/application-state";
|
|
3
|
-
import { assertAccess } from "@agent-native/core/sharing";
|
|
4
|
-
import { inArray } from "drizzle-orm";
|
|
5
|
-
|
|
6
|
-
import { getDb, schema } from "../server/db/index.js";
|
|
7
|
-
import { assertNotWorkspaceCatalogDocuments } from "./_content-space-catalog-guards.js";
|
|
8
|
-
import {
|
|
9
|
-
databaseRowBatchSchema,
|
|
10
|
-
renumberDatabaseRows,
|
|
11
|
-
resolveDatabaseRowsForBatch,
|
|
12
|
-
} from "./_database-row-batch.js";
|
|
13
|
-
import { getContentDatabaseResponse } from "./_database-utils.js";
|
|
14
|
-
import { trashDocumentSubtree } from "./delete-document.js";
|
|
15
|
-
|
|
16
|
-
export default defineAction({
|
|
17
|
-
description:
|
|
18
|
-
"Delete multiple page rows from a content database in one atomic batch. Use this for two or more selected/named rows instead of looping delete-document.",
|
|
19
|
-
schema: databaseRowBatchSchema,
|
|
20
|
-
run: async (args) => {
|
|
21
|
-
const db = getDb();
|
|
22
|
-
const { database, rows } = await resolveDatabaseRowsForBatch(args);
|
|
23
|
-
|
|
24
|
-
await assertAccess("document", database.documentId, "editor");
|
|
25
|
-
if (database.systemRole === "favorites") {
|
|
26
|
-
const removedItemIds = rows.map((row) => row.item.id);
|
|
27
|
-
const removedDocumentIds = rows.map((row) => row.document.id);
|
|
28
|
-
const now = new Date().toISOString();
|
|
29
|
-
await db.transaction(async (tx) => {
|
|
30
|
-
await tx
|
|
31
|
-
.delete(schema.contentDatabaseItems)
|
|
32
|
-
.where(inArray(schema.contentDatabaseItems.id, removedItemIds));
|
|
33
|
-
await renumberDatabaseRows(
|
|
34
|
-
tx as unknown as ReturnType<typeof getDb>,
|
|
35
|
-
database,
|
|
36
|
-
now,
|
|
37
|
-
);
|
|
38
|
-
});
|
|
39
|
-
await writeAppState("refresh-signal", { ts: Date.now() });
|
|
40
|
-
return {
|
|
41
|
-
...(await getContentDatabaseResponse(database.id, {
|
|
42
|
-
limit: 100,
|
|
43
|
-
offset: 0,
|
|
44
|
-
})),
|
|
45
|
-
deletedItemIds: removedItemIds,
|
|
46
|
-
deletedDocumentIds: [],
|
|
47
|
-
deletedCount: 0,
|
|
48
|
-
removedDocumentIds,
|
|
49
|
-
removedCount: removedItemIds.length,
|
|
50
|
-
};
|
|
51
|
-
}
|
|
52
|
-
for (const row of rows) {
|
|
53
|
-
await assertAccess("document", row.document.id, "admin");
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
const deletedItemIds = rows.map((row) => row.item.id);
|
|
57
|
-
const deletedDocumentIds = rows.map((row) => row.document.id);
|
|
58
|
-
await assertNotWorkspaceCatalogDocuments(db, deletedDocumentIds, "deleted");
|
|
59
|
-
const now = new Date().toISOString();
|
|
60
|
-
|
|
61
|
-
await db.transaction(async (tx) => {
|
|
62
|
-
for (const row of rows) {
|
|
63
|
-
await trashDocumentSubtree(
|
|
64
|
-
tx as unknown as ReturnType<typeof getDb>,
|
|
65
|
-
row.document.id,
|
|
66
|
-
row.document.ownerEmail,
|
|
67
|
-
now,
|
|
68
|
-
);
|
|
69
|
-
}
|
|
70
|
-
await renumberDatabaseRows(
|
|
71
|
-
tx as unknown as ReturnType<typeof getDb>,
|
|
72
|
-
database,
|
|
73
|
-
now,
|
|
74
|
-
);
|
|
75
|
-
});
|
|
76
|
-
|
|
77
|
-
await writeAppState("refresh-signal", { ts: Date.now() });
|
|
78
|
-
|
|
79
|
-
return {
|
|
80
|
-
...(await getContentDatabaseResponse(database.id, {
|
|
81
|
-
limit: 100,
|
|
82
|
-
offset: 0,
|
|
83
|
-
})),
|
|
84
|
-
deletedItemIds,
|
|
85
|
-
deletedDocumentIds,
|
|
86
|
-
deletedCount: deletedItemIds.length,
|
|
87
|
-
};
|
|
88
|
-
},
|
|
89
|
-
});
|