@zodic/shared 0.0.274 → 0.0.275
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 +1 -1
- package/types/scopes/generic.ts +13 -0
package/package.json
CHANGED
package/types/scopes/generic.ts
CHANGED
|
@@ -541,3 +541,16 @@ export type ConceptProgress = {
|
|
|
541
541
|
ratePerMinute: number;
|
|
542
542
|
estimatedTimeMinutes: number | 'N/A';
|
|
543
543
|
};
|
|
544
|
+
|
|
545
|
+
export type UserConceptData = {
|
|
546
|
+
name: string; // From conceptsData.name (text, notNull)
|
|
547
|
+
description: string; // From conceptsData.description (text, notNull)
|
|
548
|
+
poem: string; // From conceptsData.poem (text, defaults to '[]', but assuming parsed as string)
|
|
549
|
+
content: any[]; // From conceptsData.content (text, JSON-stringified array, parsed)
|
|
550
|
+
images: {
|
|
551
|
+
post: any[]; // From conceptsData.postImages (text, JSON-stringified array, parsed)
|
|
552
|
+
reel: any[]; // From conceptsData.reelImages (text, JSON-stringified array, parsed)
|
|
553
|
+
};
|
|
554
|
+
combinationString: string; // e.g., "sagittarius-aquarius-libra"
|
|
555
|
+
conceptSlug: Concept;
|
|
556
|
+
};
|