@zodic/shared 0.0.292 → 0.0.293

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.
@@ -78,6 +78,13 @@
78
78
  "when": 1743532594156,
79
79
  "tag": "0010_tricky_lord_hawal",
80
80
  "breakpoints": true
81
+ },
82
+ {
83
+ "idx": 11,
84
+ "version": "6",
85
+ "when": 1743535219441,
86
+ "tag": "0011_hard_king_bedlam",
87
+ "breakpoints": true
81
88
  }
82
89
  ]
83
90
  }
package/db/schema.ts CHANGED
@@ -425,6 +425,8 @@ export const archetypesData = sqliteTable(
425
425
  leonardoPrompt: text('leonardo_prompt'), // Leonardo prompt
426
426
  status: text('status').default('idle'), // Generation status
427
427
  createdAt: integer('created_at').default(sql`CURRENT_TIMESTAMP`),
428
+ // JSON array of objects: { leonardoId: string; url: string; height: number; width: number; }
429
+ images: text('images').default('[]').notNull(),
428
430
  updatedAt: integer('updated_at').default(sql`CURRENT_TIMESTAMP`),
429
431
  },
430
432
  (table) => [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zodic/shared",
3
- "version": "0.0.292",
3
+ "version": "0.0.293",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {