@zodic/shared 0.0.256 → 0.0.258
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 -5
package/package.json
CHANGED
package/types/scopes/generic.ts
CHANGED
|
@@ -209,8 +209,8 @@ export type Mode = {
|
|
|
209
209
|
};
|
|
210
210
|
|
|
211
211
|
export type DominantSign = {
|
|
212
|
-
|
|
213
|
-
|
|
212
|
+
signId: number;
|
|
213
|
+
signName: string;
|
|
214
214
|
percentage: number;
|
|
215
215
|
};
|
|
216
216
|
|
|
@@ -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;
|
|
@@ -431,8 +432,10 @@ export interface AstroKVData {
|
|
|
431
432
|
};
|
|
432
433
|
};
|
|
433
434
|
elements: Elements & {
|
|
435
|
+
elements: Element[];
|
|
434
436
|
description: string | null;
|
|
435
437
|
report: string | null;
|
|
438
|
+
dominantElementId: number;
|
|
436
439
|
};
|
|
437
440
|
modes: Modes & {
|
|
438
441
|
description: string | null;
|
|
@@ -440,7 +443,7 @@ export interface AstroKVData {
|
|
|
440
443
|
};
|
|
441
444
|
};
|
|
442
445
|
};
|
|
443
|
-
|
|
446
|
+
corePlanets: Array<{
|
|
444
447
|
type: string;
|
|
445
448
|
name: string;
|
|
446
449
|
sign: string;
|
|
@@ -453,7 +456,7 @@ export interface AstroKVData {
|
|
|
453
456
|
signReport: string | null;
|
|
454
457
|
houseReport: string | null;
|
|
455
458
|
}>;
|
|
456
|
-
|
|
459
|
+
advancedPlacements: Array<{
|
|
457
460
|
type: string;
|
|
458
461
|
name: string;
|
|
459
462
|
sign: string;
|