@zodic/shared 0.0.328 → 0.0.331
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.
|
@@ -113,6 +113,13 @@
|
|
|
113
113
|
"when": 1745556069821,
|
|
114
114
|
"tag": "0015_zippy_sersi",
|
|
115
115
|
"breakpoints": true
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"idx": 16,
|
|
119
|
+
"version": "6",
|
|
120
|
+
"when": 1745725919445,
|
|
121
|
+
"tag": "0016_awesome_squadron_sinister",
|
|
122
|
+
"breakpoints": true
|
|
116
123
|
}
|
|
117
124
|
]
|
|
118
125
|
}
|
package/db/schema.ts
CHANGED
|
@@ -395,8 +395,9 @@ export const userArtifacts = sqliteTable(
|
|
|
395
395
|
), // References archetypesData.id, nullable
|
|
396
396
|
postImages: text('post_images'), // Stringified JSON array of { id: string, url: string } for up to 6 post images
|
|
397
397
|
reelImages: text('reel_images'), // Stringified JSON array of { id: string, url: string } for up to 6 reel images (if used)
|
|
398
|
+
chosenImageUrl: text('chosen_image_url'), // URL of the single image chosen by the user
|
|
398
399
|
status: text('status')
|
|
399
|
-
.default('pending') // Possible statuses: 'pending', 'post_ready', 'reel_ready', 'completed'
|
|
400
|
+
.default('pending') // Possible statuses: 'pending', 'post_ready', 'reel_ready', 'completed', 'revealed'
|
|
400
401
|
.notNull(),
|
|
401
402
|
...timestampFields,
|
|
402
403
|
},
|