@zodic/shared 0.0.262 → 0.0.263
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 +15 -7
- package/types/scopes/legacy.ts +1 -0
package/package.json
CHANGED
package/types/scopes/generic.ts
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
AspectType,
|
|
3
|
+
PlacementSlug,
|
|
4
|
+
PointSlug,
|
|
5
|
+
ZodiacSign,
|
|
6
|
+
ZodiacSignSlug,
|
|
7
|
+
} from './legacy';
|
|
2
8
|
|
|
3
9
|
export type Provider = 'google' | 'facebook';
|
|
4
10
|
|
|
@@ -410,15 +416,17 @@ export type ControlNetConfig =
|
|
|
410
416
|
weight: number;
|
|
411
417
|
};
|
|
412
418
|
|
|
419
|
+
export type PlacementObject = {
|
|
420
|
+
type: PlacementType;
|
|
421
|
+
name: PlacementSlug;
|
|
422
|
+
sign: ZodiacSignSlug;
|
|
423
|
+
house: number | null;
|
|
424
|
+
};
|
|
425
|
+
|
|
413
426
|
export interface AstroKVData {
|
|
414
427
|
natalChart: {
|
|
415
428
|
wheelUrl: string;
|
|
416
|
-
placements: Array<
|
|
417
|
-
type: PlacementType;
|
|
418
|
-
name: string;
|
|
419
|
-
sign: string;
|
|
420
|
-
house: number | null;
|
|
421
|
-
}>;
|
|
429
|
+
placements: Array<PlacementObject>;
|
|
422
430
|
ascendant: {
|
|
423
431
|
sign: string;
|
|
424
432
|
};
|