@zodic/shared 0.0.399 → 0.0.401
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/package.json
CHANGED
|
@@ -19,6 +19,7 @@ export type SECRETS_STORE_SECRET = {
|
|
|
19
19
|
export type CentralBindings = {
|
|
20
20
|
TEST_IMAGES_BUCKET: R2Bucket;
|
|
21
21
|
COSMIC_MIRROR_BUCKET: R2Bucket;
|
|
22
|
+
CONCEPTS_BUCKET: R2Bucket;
|
|
22
23
|
PHOTOS_BUCKET: R2Bucket;
|
|
23
24
|
WHEEL_BUCKET: R2Bucket;
|
|
24
25
|
OPENAI_API_KEY: string;
|
|
@@ -106,6 +107,7 @@ export type BackendBindings = Env &
|
|
|
106
107
|
CentralBindings,
|
|
107
108
|
| 'TEST_IMAGES_BUCKET'
|
|
108
109
|
| 'COSMIC_MIRROR_BUCKET'
|
|
110
|
+
| 'CONCEPTS_BUCKET'
|
|
109
111
|
| 'PHOTOS_BUCKET'
|
|
110
112
|
| 'WHEEL_BUCKET'
|
|
111
113
|
| 'OPENAI_API_KEY'
|
package/types/scopes/generic.ts
CHANGED
|
@@ -569,6 +569,7 @@ export type UserConceptData = {
|
|
|
569
569
|
content: any[]; // From conceptsData.content (text, JSON-stringified array, parsed)
|
|
570
570
|
images: {
|
|
571
571
|
post: any[]; // From conceptsData.postImages (text, JSON-stringified array, parsed)
|
|
572
|
+
framed: string[]; // From conceptsData.framedImages (url text)
|
|
572
573
|
reel: any[]; // From conceptsData.reelImages (text, JSON-stringified array, parsed)
|
|
573
574
|
};
|
|
574
575
|
combinationString: string; // e.g., "sagittarius-aquarius-libra"
|