@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 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) => [
@@ -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) => [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alook/cli",
3
- "version": "0.0.42",
3
+ "version": "0.0.44",
4
4
  "description": "Alook CLI — Enable Your Person Colleague",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/alookai/alook#readme",