@alook/cli 0.0.64 → 0.0.66
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/dist/index.js +3 -1
- package/dist/session-runner.js +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16436,7 +16436,8 @@ var agentRuntime = sqliteTable("agent_runtime", {
|
|
|
16436
16436
|
createdAt: text("created_at").notNull().$defaultFn(() => new Date().toISOString()),
|
|
16437
16437
|
updatedAt: text("updated_at").notNull().$defaultFn(() => new Date().toISOString())
|
|
16438
16438
|
}, (t) => [
|
|
16439
|
-
unique("agent_runtime_workspace_daemon_provider").on(t.workspaceId, t.daemonId, t.provider)
|
|
16439
|
+
unique("agent_runtime_workspace_daemon_provider").on(t.workspaceId, t.daemonId, t.provider),
|
|
16440
|
+
index("idx_agent_runtime_workspace_daemon").on(t.workspaceId, t.daemonId)
|
|
16440
16441
|
]);
|
|
16441
16442
|
var agent = sqliteTable("agent", {
|
|
16442
16443
|
id: text("id").notNull().$defaultFn(() => "ag_" + nanoid3(8)),
|
|
@@ -16537,6 +16538,7 @@ var agentTaskQueue = sqliteTable("agent_task_queue", {
|
|
|
16537
16538
|
index("idx_task_queue_conversation_status").on(t.conversationId, t.status),
|
|
16538
16539
|
index("idx_task_queue_trace").on(t.traceId),
|
|
16539
16540
|
index("idx_task_queue_parent").on(t.parentTaskId),
|
|
16541
|
+
index("idx_task_queue_workspace_type_status").on(t.workspaceId, t.type, t.status),
|
|
16540
16542
|
foreignKey({
|
|
16541
16543
|
columns: [t.agentId, t.workspaceId],
|
|
16542
16544
|
foreignColumns: [agent.id, agent.workspaceId]
|
package/dist/session-runner.js
CHANGED
|
@@ -16302,7 +16302,8 @@ var agentRuntime = sqliteTable("agent_runtime", {
|
|
|
16302
16302
|
createdAt: text("created_at").notNull().$defaultFn(() => new Date().toISOString()),
|
|
16303
16303
|
updatedAt: text("updated_at").notNull().$defaultFn(() => new Date().toISOString())
|
|
16304
16304
|
}, (t) => [
|
|
16305
|
-
unique("agent_runtime_workspace_daemon_provider").on(t.workspaceId, t.daemonId, t.provider)
|
|
16305
|
+
unique("agent_runtime_workspace_daemon_provider").on(t.workspaceId, t.daemonId, t.provider),
|
|
16306
|
+
index("idx_agent_runtime_workspace_daemon").on(t.workspaceId, t.daemonId)
|
|
16306
16307
|
]);
|
|
16307
16308
|
var agent = sqliteTable("agent", {
|
|
16308
16309
|
id: text("id").notNull().$defaultFn(() => "ag_" + nanoid3(8)),
|
|
@@ -16403,6 +16404,7 @@ var agentTaskQueue = sqliteTable("agent_task_queue", {
|
|
|
16403
16404
|
index("idx_task_queue_conversation_status").on(t.conversationId, t.status),
|
|
16404
16405
|
index("idx_task_queue_trace").on(t.traceId),
|
|
16405
16406
|
index("idx_task_queue_parent").on(t.parentTaskId),
|
|
16407
|
+
index("idx_task_queue_workspace_type_status").on(t.workspaceId, t.type, t.status),
|
|
16406
16408
|
foreignKey({
|
|
16407
16409
|
columns: [t.agentId, t.workspaceId],
|
|
16408
16410
|
foreignColumns: [agent.id, agent.workspaceId]
|