@zodic/shared 0.0.396 → 0.0.398
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/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
|
-
|
|
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
|
@@ -18,6 +18,7 @@ export type SECRETS_STORE_SECRET = {
|
|
|
18
18
|
|
|
19
19
|
export type CentralBindings = {
|
|
20
20
|
TEST_IMAGES_BUCKET: R2Bucket;
|
|
21
|
+
COSMIC_MIRROR_BUCKET: R2Bucket;
|
|
21
22
|
PHOTOS_BUCKET: R2Bucket;
|
|
22
23
|
WHEEL_BUCKET: R2Bucket;
|
|
23
24
|
OPENAI_API_KEY: string;
|
|
@@ -104,6 +105,7 @@ export type BackendBindings = Env &
|
|
|
104
105
|
Pick<
|
|
105
106
|
CentralBindings,
|
|
106
107
|
| 'TEST_IMAGES_BUCKET'
|
|
108
|
+
| 'COSMIC_MIRROR_BUCKET'
|
|
107
109
|
| 'PHOTOS_BUCKET'
|
|
108
110
|
| 'WHEEL_BUCKET'
|
|
109
111
|
| 'OPENAI_API_KEY'
|