@alook/cli 0.0.140 → 0.0.141

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
@@ -16433,7 +16433,8 @@ var machine = sqliteTable("machine", {
16433
16433
  createdAt: text("created_at").notNull().$defaultFn(() => new Date().toISOString()),
16434
16434
  pendingUpdateVersion: text("pending_update_version"),
16435
16435
  pendingRescan: integer2("pending_rescan", { mode: "boolean" }).default(false),
16436
- updatedAt: text("updated_at").notNull().$defaultFn(() => new Date().toISOString())
16436
+ updatedAt: text("updated_at").notNull().$defaultFn(() => new Date().toISOString()),
16437
+ ownerId: text("owner_id").references(() => user.id, { onDelete: "set null" })
16437
16438
  }, (t) => [primaryKey({ columns: [t.workspaceId, t.daemonId] })]);
16438
16439
  var agentRuntime = sqliteTable("agent_runtime", {
16439
16440
  id: text("id").primaryKey().$defaultFn(() => nanoid3()),
@@ -16342,7 +16342,8 @@ var machine = sqliteTable("machine", {
16342
16342
  createdAt: text("created_at").notNull().$defaultFn(() => new Date().toISOString()),
16343
16343
  pendingUpdateVersion: text("pending_update_version"),
16344
16344
  pendingRescan: integer2("pending_rescan", { mode: "boolean" }).default(false),
16345
- updatedAt: text("updated_at").notNull().$defaultFn(() => new Date().toISOString())
16345
+ updatedAt: text("updated_at").notNull().$defaultFn(() => new Date().toISOString()),
16346
+ ownerId: text("owner_id").references(() => user.id, { onDelete: "set null" })
16346
16347
  }, (t) => [primaryKey({ columns: [t.workspaceId, t.daemonId] })]);
16347
16348
  var agentRuntime = sqliteTable("agent_runtime", {
16348
16349
  id: text("id").primaryKey().$defaultFn(() => nanoid3()),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alook/cli",
3
- "version": "0.0.140",
3
+ "version": "0.0.141",
4
4
  "description": "Alook CLI — Enable Your Person Colleague",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/alookai/alook#readme",