@zodic/shared 0.0.396 → 0.0.397

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.
@@ -148,6 +148,13 @@
148
148
  "when": 1747599943965,
149
149
  "tag": "0020_smiling_blob",
150
150
  "breakpoints": true
151
+ },
152
+ {
153
+ "idx": 21,
154
+ "version": "6",
155
+ "when": 1747600243276,
156
+ "tag": "0021_flawless_wallflower",
157
+ "breakpoints": true
151
158
  }
152
159
  ]
153
160
  }
package/db/schema.ts CHANGED
@@ -480,7 +480,7 @@ export const userArtifacts = sqliteTable(
480
480
  reelImages: text('reel_images'), // Stringified JSON array of { id: string, url: string } for up to 6 reel images (if used)
481
481
  chosenImageUrl: text('chosen_image_url'), // URL of the single image chosen by the user
482
482
  upscaledImage: text('upscaled_image'), // { id: string, url: string }
483
- framedImage: text('framed_image'), // { id: string, url: string }
483
+ framedImageUrl: text('framed_image_url'),
484
484
  status: text('status')
485
485
  .default('pending') // Possible statuses: 'pending', 'post_ready', 'reel_ready', 'completed', 'revealed'
486
486
  .notNull(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zodic/shared",
3
- "version": "0.0.396",
3
+ "version": "0.0.397",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {