@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 +1 -1
- package/types/scopes/generic.ts +8 -9
package/package.json
CHANGED
package/types/scopes/generic.ts
CHANGED
|
@@ -460,7 +460,7 @@ export interface FeaturesKVData {
|
|
|
460
460
|
modes: ModesKVData;
|
|
461
461
|
}
|
|
462
462
|
|
|
463
|
-
export interface
|
|
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:
|
|
474
|
-
name:
|
|
475
|
-
sign:
|
|
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:
|
|
488
|
-
name:
|
|
489
|
-
sign:
|
|
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:
|
|
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 {
|