@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zodic/shared",
3
- "version": "0.0.274",
3
+ "version": "0.0.275",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -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
+ };