@zodic/shared 0.0.398 → 0.0.399

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.
@@ -155,6 +155,13 @@
155
155
  "when": 1747600243276,
156
156
  "tag": "0021_flawless_wallflower",
157
157
  "breakpoints": true
158
+ },
159
+ {
160
+ "idx": 22,
161
+ "version": "6",
162
+ "when": 1747798482763,
163
+ "tag": "0022_pale_marvex",
164
+ "breakpoints": true
158
165
  }
159
166
  ]
160
167
  }
package/db/schema.ts CHANGED
@@ -148,6 +148,7 @@ export const conceptsData = sqliteTable(
148
148
  poem: text('poem').default('[]').notNull(), // JSON stringified array
149
149
  leonardoPrompt: text('leonardo_prompt'), // Leonardo AI prompt
150
150
  postImages: text('post_images').default('[]'), // JSON stringified array
151
+ framedImages: text('framed_images').default('[]'), // JSON stringified array
151
152
  reelImages: text('reel_images').default('[]'), // JSON stringified array
152
153
  status: text('status').default('idle'), // Processing status
153
154
  createdAt: integer('created_at').default(sql`CURRENT_TIMESTAMP`),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zodic/shared",
3
- "version": "0.0.398",
3
+ "version": "0.0.399",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {