@zodic/shared 0.0.255 → 0.0.257
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 +25 -10
package/package.json
CHANGED
package/types/scopes/generic.ts
CHANGED
|
@@ -405,7 +405,8 @@ export type ControlNetConfig =
|
|
|
405
405
|
};
|
|
406
406
|
|
|
407
407
|
export interface AstroKVData {
|
|
408
|
-
|
|
408
|
+
natalChart: {
|
|
409
|
+
wheelUrl: string;
|
|
409
410
|
planets: Array<{
|
|
410
411
|
type: string;
|
|
411
412
|
name: string;
|
|
@@ -416,16 +417,16 @@ export interface AstroKVData {
|
|
|
416
417
|
sign: string;
|
|
417
418
|
};
|
|
418
419
|
features: {
|
|
419
|
-
|
|
420
|
+
moonPhase: MoonPhase & {
|
|
420
421
|
description: string | null;
|
|
421
422
|
report: string | null;
|
|
422
423
|
};
|
|
423
424
|
hemisphere: Hemisphere & {
|
|
424
|
-
|
|
425
|
+
eastWest: HemisphereDetail & {
|
|
425
426
|
description: string | null;
|
|
426
427
|
report: string | null;
|
|
427
428
|
};
|
|
428
|
-
|
|
429
|
+
northSouth: HemisphereDetail & {
|
|
429
430
|
description: string | null;
|
|
430
431
|
report: string | null;
|
|
431
432
|
};
|
|
@@ -440,26 +441,26 @@ export interface AstroKVData {
|
|
|
440
441
|
};
|
|
441
442
|
};
|
|
442
443
|
};
|
|
443
|
-
|
|
444
|
+
corePlanets: Array<{
|
|
444
445
|
type: string;
|
|
445
446
|
name: string;
|
|
446
447
|
sign: string;
|
|
447
448
|
house: number | null;
|
|
448
|
-
fullDegree: number;
|
|
449
|
-
normDegree: number;
|
|
449
|
+
fullDegree: number; // Non-nullable, ensure data exists
|
|
450
|
+
normDegree: number; // Non-nullable, ensure data exists
|
|
450
451
|
speed: number | null;
|
|
451
452
|
isRetro: boolean;
|
|
452
453
|
description: string | null;
|
|
453
454
|
signReport: string | null;
|
|
454
455
|
houseReport: string | null;
|
|
455
456
|
}>;
|
|
456
|
-
|
|
457
|
+
advancedPlacements: Array<{
|
|
457
458
|
type: string;
|
|
458
459
|
name: string;
|
|
459
460
|
sign: string;
|
|
460
461
|
house: number | null;
|
|
461
|
-
fullDegree: number;
|
|
462
|
-
normDegree: number;
|
|
462
|
+
fullDegree: number; // Non-nullable, ensure data exists
|
|
463
|
+
normDegree: number; // Non-nullable, ensure data exists
|
|
463
464
|
description: string | null;
|
|
464
465
|
signReport: string | null;
|
|
465
466
|
houseReport: string | null;
|
|
@@ -481,6 +482,20 @@ export interface AstroKVData {
|
|
|
481
482
|
report: string | null;
|
|
482
483
|
}>;
|
|
483
484
|
}
|
|
485
|
+
|
|
486
|
+
// Helper type for transforming astro_features to API types
|
|
487
|
+
// In your-types.ts or where types are defined
|
|
488
|
+
export interface AstroFeature {
|
|
489
|
+
name: string;
|
|
490
|
+
description: string | null;
|
|
491
|
+
id: string;
|
|
492
|
+
userId: string;
|
|
493
|
+
featureType: string;
|
|
494
|
+
percentage: number | null;
|
|
495
|
+
order: number | null;
|
|
496
|
+
prominentId: number | null;
|
|
497
|
+
}
|
|
498
|
+
|
|
484
499
|
export type ConceptProgress = {
|
|
485
500
|
count: number;
|
|
486
501
|
total: number;
|