@zodic/shared 0.0.257 → 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 +7 -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
|
|
|
@@ -417,23 +417,25 @@ export interface AstroKVData {
|
|
|
417
417
|
sign: string;
|
|
418
418
|
};
|
|
419
419
|
features: {
|
|
420
|
-
|
|
420
|
+
moon_phase: MoonPhase & {
|
|
421
421
|
description: string | null;
|
|
422
422
|
report: string | null;
|
|
423
423
|
};
|
|
424
424
|
hemisphere: Hemisphere & {
|
|
425
|
-
|
|
425
|
+
east_west: HemisphereDetail & {
|
|
426
426
|
description: string | null;
|
|
427
427
|
report: string | null;
|
|
428
428
|
};
|
|
429
|
-
|
|
429
|
+
north_south: HemisphereDetail & {
|
|
430
430
|
description: string | null;
|
|
431
431
|
report: string | null;
|
|
432
432
|
};
|
|
433
433
|
};
|
|
434
434
|
elements: Elements & {
|
|
435
|
+
elements: Element[];
|
|
435
436
|
description: string | null;
|
|
436
437
|
report: string | null;
|
|
438
|
+
dominantElementId: number;
|
|
437
439
|
};
|
|
438
440
|
modes: Modes & {
|
|
439
441
|
description: string | null;
|