@zodic/shared 0.0.66 → 0.0.68

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.
@@ -43,6 +43,13 @@
43
43
  "when": 1737683444742,
44
44
  "tag": "0005_powerful_meltdown",
45
45
  "breakpoints": true
46
+ },
47
+ {
48
+ "idx": 6,
49
+ "version": "6",
50
+ "when": 1738195592204,
51
+ "tag": "0006_thankful_chimera",
52
+ "breakpoints": true
46
53
  }
47
54
  ]
48
55
  }
package/db/schema.ts CHANGED
@@ -92,7 +92,7 @@ export const astroPlanets = sqliteTable(
92
92
  type: text('type').notNull(), // e.g., "planet", "advanced_planet"
93
93
  name: text('name').notNull(), // Planet or point name (e.g., "Sun", "Vertex")
94
94
  sign: text('sign').notNull(), // Zodiac sign (e.g., "Sagittarius")
95
- house: integer('house').notNull(), // House number (1-12)
95
+ house: integer('house'), // House number (1-12)
96
96
  fullDegree: real('full_degree'), // Full degree in 360° system
97
97
  normDegree: real('norm_degree'), // Degree within the sign (0-29°)
98
98
  speed: real('speed'), // Speed of the planet
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zodic/shared",
3
- "version": "0.0.66",
3
+ "version": "0.0.68",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {