@zodic/shared 0.0.88 → 0.0.89

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.
@@ -198,16 +198,14 @@ export class ConceptService {
198
198
  const [planet1Sign, planet2Sign, planet3Sign] =
199
199
  combinationString.split('-');
200
200
 
201
- if (!planet1Sign || !planet2Sign || (planet3 && !planet3Sign)) {
201
+ if (!planet1Sign || !planet2Sign || !planet3Sign) {
202
202
  throw new Error(
203
203
  `❌ Invalid combinationString: ${combinationString} (Expected format: sign1-sign2-[sign3])`
204
204
  );
205
205
  }
206
206
 
207
207
  console.log(
208
- `🌌 Extracted planet signs: ${planet1} -> ${planet1Sign}, ${planet2} -> ${planet2Sign}, ${
209
- planet3 || 'N/A'
210
- } -> ${planet3Sign || 'N/A'}`
208
+ `🌌 Extracted planet signs: ${planet1} -> ${planet1Sign}, ${planet2} -> ${planet2Sign}, ${planet3} -> ${planet3Sign}`
211
209
  );
212
210
 
213
211
  // 🔍 Ensure Concept Combination exists
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zodic/shared",
3
- "version": "0.0.88",
3
+ "version": "0.0.89",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -0,0 +1,9 @@
1
+ export const leonardoInitImages = {
2
+ concetps: {
3
+ crown: {
4
+ imageId: '450076a1-c6bb-4877-8a0b-c0d3ba72fca7',
5
+ imageUrl:
6
+ 'https://cdn.leonardo.ai/users/b117a933-e5c9-45b2-96aa-4b619c2d74ba/initImages/450076a1-c6bb-4877-8a0b-c0d3ba72fca7.jpg',
7
+ },
8
+ },
9
+ };