@zodic/shared 0.0.268 → 0.0.270

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.268",
3
+ "version": "0.0.270",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -460,7 +460,7 @@ export interface FeaturesKVData {
460
460
  modes: ModesKVData;
461
461
  }
462
462
 
463
- export interface NatalChartData {
463
+ export interface NatalChartKVData {
464
464
  wheelUrl: string;
465
465
  placements: Array<PlacementObject>;
466
466
  ascendant: {
@@ -470,9 +470,9 @@ export interface NatalChartData {
470
470
  }
471
471
 
472
472
  export interface CorePlanetKVData {
473
- type: string;
474
- name: string;
475
- sign: string;
473
+ type: PlacementType;
474
+ name: PlacementSlug;
475
+ sign: ZodiacSignSlug;
476
476
  house: number | null;
477
477
  fullDegree: number;
478
478
  normDegree: number;
@@ -484,9 +484,9 @@ export interface CorePlanetKVData {
484
484
  }
485
485
 
486
486
  export interface AdvancedPlacementKVData {
487
- type: string;
488
- name: string;
489
- sign: string;
487
+ type: PlacementType;
488
+ name: PlacementSlug;
489
+ sign: ZodiacSignSlug;
490
490
  house: number | null;
491
491
  fullDegree: number;
492
492
  normDegree: number;
@@ -513,14 +513,13 @@ export interface AspectKVData {
513
513
  }
514
514
 
515
515
  export interface AstroKVData {
516
- natalChart: NatalChartData;
516
+ natalChart: NatalChartKVData;
517
517
  corePlanets: Array<CorePlanetKVData>;
518
518
  advancedPlacements: Array<AdvancedPlacementKVData>;
519
519
  houses: Array<HouseKVData>;
520
520
  aspects: Array<AspectKVData>;
521
521
  }
522
522
 
523
-
524
523
  // Helper type for transforming astro_features to API types
525
524
  // In your-types.ts or where types are defined
526
525
  export interface AstroFeature {