@alook/cli 0.0.42 → 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.
- package/dist/index.js +1 -0
- package/dist/session-runner.js +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16622,6 +16622,7 @@ var message = sqliteTable("message", {
|
|
|
16622
16622
|
content: text("content").notNull().default(""),
|
|
16623
16623
|
taskId: text("task_id"),
|
|
16624
16624
|
attachmentIds: text("attachment_ids"),
|
|
16625
|
+
metadata: text("metadata"),
|
|
16625
16626
|
status: text("status").notNull().default("active"),
|
|
16626
16627
|
createdAt: text("created_at").notNull().$defaultFn(() => new Date().toISOString())
|
|
16627
16628
|
}, (t) => [
|
package/dist/session-runner.js
CHANGED
|
@@ -16339,6 +16339,7 @@ var message = sqliteTable("message", {
|
|
|
16339
16339
|
content: text("content").notNull().default(""),
|
|
16340
16340
|
taskId: text("task_id"),
|
|
16341
16341
|
attachmentIds: text("attachment_ids"),
|
|
16342
|
+
metadata: text("metadata"),
|
|
16342
16343
|
status: text("status").notNull().default("active"),
|
|
16343
16344
|
createdAt: text("created_at").notNull().$defaultFn(() => new Date().toISOString())
|
|
16344
16345
|
}, (t) => [
|