@zodic/shared 0.0.50 → 0.0.51
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
CHANGED
package/types/scopes/generic.ts
CHANGED
|
@@ -7,6 +7,29 @@ export type ProviderInfo = {
|
|
|
7
7
|
resourceUrl: string;
|
|
8
8
|
};
|
|
9
9
|
|
|
10
|
+
export type CelestialBody =
|
|
11
|
+
| 'Sun'
|
|
12
|
+
| 'Moon'
|
|
13
|
+
| 'Mercury'
|
|
14
|
+
| 'Venus'
|
|
15
|
+
| 'Mars'
|
|
16
|
+
| 'Jupiter'
|
|
17
|
+
| 'Saturn'
|
|
18
|
+
| 'Neptune'
|
|
19
|
+
| 'Uranus'
|
|
20
|
+
| 'Pluto'
|
|
21
|
+
| 'Ascendant'
|
|
22
|
+
| 'Descendant'
|
|
23
|
+
| 'Midheaven'
|
|
24
|
+
| 'Imum Coeli'
|
|
25
|
+
| 'North Node'
|
|
26
|
+
| 'South Node'
|
|
27
|
+
| 'Chiron'
|
|
28
|
+
| 'Pars Fortuna'
|
|
29
|
+
| 'Lilith'
|
|
30
|
+
| 'Vertex'
|
|
31
|
+
| 'Antivertex';
|
|
32
|
+
|
|
10
33
|
export const VALID_GENDERS_ARRAY = ['male', 'female', 'non-binary'] as const;
|
|
11
34
|
|
|
12
35
|
export type Gender = (typeof VALID_GENDERS_ARRAY)[number];
|