caelus-mcp 0.14.0 → 0.15.0
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/dist/src/server.d.ts +136 -16
- package/dist/src/server.js +36 -21
- package/package.json +2 -2
package/dist/src/server.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export declare const chartOut: z.ZodObject<{
|
|
|
25
25
|
house: z.ZodNumber;
|
|
26
26
|
speed: z.ZodNumber;
|
|
27
27
|
rx: z.ZodOptional<z.ZodBoolean>;
|
|
28
|
+
dignity: z.ZodOptional<z.ZodArray<z.ZodEnum<["domicile", "exaltation", "detriment", "fall"]>, "many">>;
|
|
28
29
|
solar: z.ZodOptional<z.ZodEnum<["cazimi", "combust", "under_beams"]>>;
|
|
29
30
|
}, "strip", z.ZodTypeAny, {
|
|
30
31
|
lon: number;
|
|
@@ -32,6 +33,7 @@ export declare const chartOut: z.ZodObject<{
|
|
|
32
33
|
house: number;
|
|
33
34
|
speed: number;
|
|
34
35
|
rx?: boolean | undefined;
|
|
36
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
35
37
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
36
38
|
}, {
|
|
37
39
|
lon: number;
|
|
@@ -39,6 +41,7 @@ export declare const chartOut: z.ZodObject<{
|
|
|
39
41
|
house: number;
|
|
40
42
|
speed: number;
|
|
41
43
|
rx?: boolean | undefined;
|
|
44
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
42
45
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
43
46
|
}>>;
|
|
44
47
|
angles: z.ZodObject<{
|
|
@@ -77,6 +80,7 @@ export declare const chartOut: z.ZodObject<{
|
|
|
77
80
|
orb: number;
|
|
78
81
|
phase?: "applying" | "separating" | "exact" | undefined;
|
|
79
82
|
}>, "many">;
|
|
83
|
+
unavailable: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
80
84
|
}, "strip", z.ZodTypeAny, {
|
|
81
85
|
utc: string;
|
|
82
86
|
houses: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow";
|
|
@@ -86,6 +90,7 @@ export declare const chartOut: z.ZodObject<{
|
|
|
86
90
|
house: number;
|
|
87
91
|
speed: number;
|
|
88
92
|
rx?: boolean | undefined;
|
|
93
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
89
94
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
90
95
|
}>;
|
|
91
96
|
angles: {
|
|
@@ -104,6 +109,7 @@ export declare const chartOut: z.ZodObject<{
|
|
|
104
109
|
}[];
|
|
105
110
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
106
111
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
112
|
+
unavailable?: string[] | undefined;
|
|
107
113
|
houses_fallback_reason?: string | undefined;
|
|
108
114
|
}, {
|
|
109
115
|
utc: string;
|
|
@@ -114,6 +120,7 @@ export declare const chartOut: z.ZodObject<{
|
|
|
114
120
|
house: number;
|
|
115
121
|
speed: number;
|
|
116
122
|
rx?: boolean | undefined;
|
|
123
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
117
124
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
118
125
|
}>;
|
|
119
126
|
angles: {
|
|
@@ -132,6 +139,7 @@ export declare const chartOut: z.ZodObject<{
|
|
|
132
139
|
}[];
|
|
133
140
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
134
141
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
142
|
+
unavailable?: string[] | undefined;
|
|
135
143
|
houses_fallback_reason?: string | undefined;
|
|
136
144
|
}>;
|
|
137
145
|
export declare const transitsOut: z.ZodObject<{
|
|
@@ -210,6 +218,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
210
218
|
house: z.ZodNumber;
|
|
211
219
|
speed: z.ZodNumber;
|
|
212
220
|
rx: z.ZodOptional<z.ZodBoolean>;
|
|
221
|
+
dignity: z.ZodOptional<z.ZodArray<z.ZodEnum<["domicile", "exaltation", "detriment", "fall"]>, "many">>;
|
|
213
222
|
solar: z.ZodOptional<z.ZodEnum<["cazimi", "combust", "under_beams"]>>;
|
|
214
223
|
}, "strip", z.ZodTypeAny, {
|
|
215
224
|
lon: number;
|
|
@@ -217,6 +226,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
217
226
|
house: number;
|
|
218
227
|
speed: number;
|
|
219
228
|
rx?: boolean | undefined;
|
|
229
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
220
230
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
221
231
|
}, {
|
|
222
232
|
lon: number;
|
|
@@ -224,6 +234,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
224
234
|
house: number;
|
|
225
235
|
speed: number;
|
|
226
236
|
rx?: boolean | undefined;
|
|
237
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
227
238
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
228
239
|
}>>;
|
|
229
240
|
angles: z.ZodObject<{
|
|
@@ -262,6 +273,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
262
273
|
orb: number;
|
|
263
274
|
phase?: "applying" | "separating" | "exact" | undefined;
|
|
264
275
|
}>, "many">;
|
|
276
|
+
unavailable: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
265
277
|
}, "strip", z.ZodTypeAny, {
|
|
266
278
|
utc: string;
|
|
267
279
|
houses: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow";
|
|
@@ -271,6 +283,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
271
283
|
house: number;
|
|
272
284
|
speed: number;
|
|
273
285
|
rx?: boolean | undefined;
|
|
286
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
274
287
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
275
288
|
}>;
|
|
276
289
|
angles: {
|
|
@@ -289,6 +302,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
289
302
|
}[];
|
|
290
303
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
291
304
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
305
|
+
unavailable?: string[] | undefined;
|
|
292
306
|
houses_fallback_reason?: string | undefined;
|
|
293
307
|
}, {
|
|
294
308
|
utc: string;
|
|
@@ -299,6 +313,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
299
313
|
house: number;
|
|
300
314
|
speed: number;
|
|
301
315
|
rx?: boolean | undefined;
|
|
316
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
302
317
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
303
318
|
}>;
|
|
304
319
|
angles: {
|
|
@@ -317,6 +332,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
317
332
|
}[];
|
|
318
333
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
319
334
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
335
|
+
unavailable?: string[] | undefined;
|
|
320
336
|
houses_fallback_reason?: string | undefined;
|
|
321
337
|
}>;
|
|
322
338
|
b: z.ZodObject<{
|
|
@@ -331,6 +347,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
331
347
|
house: z.ZodNumber;
|
|
332
348
|
speed: z.ZodNumber;
|
|
333
349
|
rx: z.ZodOptional<z.ZodBoolean>;
|
|
350
|
+
dignity: z.ZodOptional<z.ZodArray<z.ZodEnum<["domicile", "exaltation", "detriment", "fall"]>, "many">>;
|
|
334
351
|
solar: z.ZodOptional<z.ZodEnum<["cazimi", "combust", "under_beams"]>>;
|
|
335
352
|
}, "strip", z.ZodTypeAny, {
|
|
336
353
|
lon: number;
|
|
@@ -338,6 +355,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
338
355
|
house: number;
|
|
339
356
|
speed: number;
|
|
340
357
|
rx?: boolean | undefined;
|
|
358
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
341
359
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
342
360
|
}, {
|
|
343
361
|
lon: number;
|
|
@@ -345,6 +363,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
345
363
|
house: number;
|
|
346
364
|
speed: number;
|
|
347
365
|
rx?: boolean | undefined;
|
|
366
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
348
367
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
349
368
|
}>>;
|
|
350
369
|
angles: z.ZodObject<{
|
|
@@ -383,6 +402,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
383
402
|
orb: number;
|
|
384
403
|
phase?: "applying" | "separating" | "exact" | undefined;
|
|
385
404
|
}>, "many">;
|
|
405
|
+
unavailable: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
386
406
|
}, "strip", z.ZodTypeAny, {
|
|
387
407
|
utc: string;
|
|
388
408
|
houses: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow";
|
|
@@ -392,6 +412,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
392
412
|
house: number;
|
|
393
413
|
speed: number;
|
|
394
414
|
rx?: boolean | undefined;
|
|
415
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
395
416
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
396
417
|
}>;
|
|
397
418
|
angles: {
|
|
@@ -410,6 +431,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
410
431
|
}[];
|
|
411
432
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
412
433
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
434
|
+
unavailable?: string[] | undefined;
|
|
413
435
|
houses_fallback_reason?: string | undefined;
|
|
414
436
|
}, {
|
|
415
437
|
utc: string;
|
|
@@ -420,6 +442,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
420
442
|
house: number;
|
|
421
443
|
speed: number;
|
|
422
444
|
rx?: boolean | undefined;
|
|
445
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
423
446
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
424
447
|
}>;
|
|
425
448
|
angles: {
|
|
@@ -438,6 +461,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
438
461
|
}[];
|
|
439
462
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
440
463
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
464
|
+
unavailable?: string[] | undefined;
|
|
441
465
|
houses_fallback_reason?: string | undefined;
|
|
442
466
|
}>;
|
|
443
467
|
inter_aspects: z.ZodArray<z.ZodObject<{
|
|
@@ -471,6 +495,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
471
495
|
house: number;
|
|
472
496
|
speed: number;
|
|
473
497
|
rx?: boolean | undefined;
|
|
498
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
474
499
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
475
500
|
}>;
|
|
476
501
|
angles: {
|
|
@@ -489,6 +514,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
489
514
|
}[];
|
|
490
515
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
491
516
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
517
|
+
unavailable?: string[] | undefined;
|
|
492
518
|
houses_fallback_reason?: string | undefined;
|
|
493
519
|
};
|
|
494
520
|
b: {
|
|
@@ -500,6 +526,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
500
526
|
house: number;
|
|
501
527
|
speed: number;
|
|
502
528
|
rx?: boolean | undefined;
|
|
529
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
503
530
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
504
531
|
}>;
|
|
505
532
|
angles: {
|
|
@@ -518,6 +545,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
518
545
|
}[];
|
|
519
546
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
520
547
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
548
|
+
unavailable?: string[] | undefined;
|
|
521
549
|
houses_fallback_reason?: string | undefined;
|
|
522
550
|
};
|
|
523
551
|
inter_aspects: {
|
|
@@ -539,6 +567,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
539
567
|
house: number;
|
|
540
568
|
speed: number;
|
|
541
569
|
rx?: boolean | undefined;
|
|
570
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
542
571
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
543
572
|
}>;
|
|
544
573
|
angles: {
|
|
@@ -557,6 +586,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
557
586
|
}[];
|
|
558
587
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
559
588
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
589
|
+
unavailable?: string[] | undefined;
|
|
560
590
|
houses_fallback_reason?: string | undefined;
|
|
561
591
|
};
|
|
562
592
|
b: {
|
|
@@ -568,6 +598,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
568
598
|
house: number;
|
|
569
599
|
speed: number;
|
|
570
600
|
rx?: boolean | undefined;
|
|
601
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
571
602
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
572
603
|
}>;
|
|
573
604
|
angles: {
|
|
@@ -586,6 +617,7 @@ export declare const synastryOut: z.ZodObject<{
|
|
|
586
617
|
}[];
|
|
587
618
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
588
619
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
620
|
+
unavailable?: string[] | undefined;
|
|
589
621
|
houses_fallback_reason?: string | undefined;
|
|
590
622
|
};
|
|
591
623
|
inter_aspects: {
|
|
@@ -656,11 +688,11 @@ export declare const skyEventsOut: z.ZodObject<{
|
|
|
656
688
|
detail: z.ZodOptional<z.ZodString>;
|
|
657
689
|
}, "strip", z.ZodTypeAny, {
|
|
658
690
|
t: string;
|
|
659
|
-
kind: "
|
|
691
|
+
kind: "set" | "phase" | "rise" | "mtransit" | "itransit" | "station" | "crossing" | "solar_eclipse" | "lunar_eclipse";
|
|
660
692
|
detail?: string | undefined;
|
|
661
693
|
}, {
|
|
662
694
|
t: string;
|
|
663
|
-
kind: "
|
|
695
|
+
kind: "set" | "phase" | "rise" | "mtransit" | "itransit" | "station" | "crossing" | "solar_eclipse" | "lunar_eclipse";
|
|
664
696
|
detail?: string | undefined;
|
|
665
697
|
}>, "many">;
|
|
666
698
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -668,7 +700,7 @@ export declare const skyEventsOut: z.ZodObject<{
|
|
|
668
700
|
end: string;
|
|
669
701
|
events: {
|
|
670
702
|
t: string;
|
|
671
|
-
kind: "
|
|
703
|
+
kind: "set" | "phase" | "rise" | "mtransit" | "itransit" | "station" | "crossing" | "solar_eclipse" | "lunar_eclipse";
|
|
672
704
|
detail?: string | undefined;
|
|
673
705
|
}[];
|
|
674
706
|
}, {
|
|
@@ -676,7 +708,7 @@ export declare const skyEventsOut: z.ZodObject<{
|
|
|
676
708
|
end: string;
|
|
677
709
|
events: {
|
|
678
710
|
t: string;
|
|
679
|
-
kind: "
|
|
711
|
+
kind: "set" | "phase" | "rise" | "mtransit" | "itransit" | "station" | "crossing" | "solar_eclipse" | "lunar_eclipse";
|
|
680
712
|
detail?: string | undefined;
|
|
681
713
|
}[];
|
|
682
714
|
}>;
|
|
@@ -769,6 +801,7 @@ export declare const returnsOut: z.ZodObject<{
|
|
|
769
801
|
house: z.ZodNumber;
|
|
770
802
|
speed: z.ZodNumber;
|
|
771
803
|
rx: z.ZodOptional<z.ZodBoolean>;
|
|
804
|
+
dignity: z.ZodOptional<z.ZodArray<z.ZodEnum<["domicile", "exaltation", "detriment", "fall"]>, "many">>;
|
|
772
805
|
solar: z.ZodOptional<z.ZodEnum<["cazimi", "combust", "under_beams"]>>;
|
|
773
806
|
}, "strip", z.ZodTypeAny, {
|
|
774
807
|
lon: number;
|
|
@@ -776,6 +809,7 @@ export declare const returnsOut: z.ZodObject<{
|
|
|
776
809
|
house: number;
|
|
777
810
|
speed: number;
|
|
778
811
|
rx?: boolean | undefined;
|
|
812
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
779
813
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
780
814
|
}, {
|
|
781
815
|
lon: number;
|
|
@@ -783,6 +817,7 @@ export declare const returnsOut: z.ZodObject<{
|
|
|
783
817
|
house: number;
|
|
784
818
|
speed: number;
|
|
785
819
|
rx?: boolean | undefined;
|
|
820
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
786
821
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
787
822
|
}>>;
|
|
788
823
|
angles: z.ZodObject<{
|
|
@@ -821,6 +856,7 @@ export declare const returnsOut: z.ZodObject<{
|
|
|
821
856
|
orb: number;
|
|
822
857
|
phase?: "applying" | "separating" | "exact" | undefined;
|
|
823
858
|
}>, "many">;
|
|
859
|
+
unavailable: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
824
860
|
}, "strip", z.ZodTypeAny, {
|
|
825
861
|
utc: string;
|
|
826
862
|
houses: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow";
|
|
@@ -830,6 +866,7 @@ export declare const returnsOut: z.ZodObject<{
|
|
|
830
866
|
house: number;
|
|
831
867
|
speed: number;
|
|
832
868
|
rx?: boolean | undefined;
|
|
869
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
833
870
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
834
871
|
}>;
|
|
835
872
|
angles: {
|
|
@@ -848,6 +885,7 @@ export declare const returnsOut: z.ZodObject<{
|
|
|
848
885
|
}[];
|
|
849
886
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
850
887
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
888
|
+
unavailable?: string[] | undefined;
|
|
851
889
|
houses_fallback_reason?: string | undefined;
|
|
852
890
|
}, {
|
|
853
891
|
utc: string;
|
|
@@ -858,6 +896,7 @@ export declare const returnsOut: z.ZodObject<{
|
|
|
858
896
|
house: number;
|
|
859
897
|
speed: number;
|
|
860
898
|
rx?: boolean | undefined;
|
|
899
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
861
900
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
862
901
|
}>;
|
|
863
902
|
angles: {
|
|
@@ -876,6 +915,7 @@ export declare const returnsOut: z.ZodObject<{
|
|
|
876
915
|
}[];
|
|
877
916
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
878
917
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
918
|
+
unavailable?: string[] | undefined;
|
|
879
919
|
houses_fallback_reason?: string | undefined;
|
|
880
920
|
}>>;
|
|
881
921
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -893,6 +933,7 @@ export declare const returnsOut: z.ZodObject<{
|
|
|
893
933
|
house: number;
|
|
894
934
|
speed: number;
|
|
895
935
|
rx?: boolean | undefined;
|
|
936
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
896
937
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
897
938
|
}>;
|
|
898
939
|
angles: {
|
|
@@ -911,6 +952,7 @@ export declare const returnsOut: z.ZodObject<{
|
|
|
911
952
|
}[];
|
|
912
953
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
913
954
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
955
|
+
unavailable?: string[] | undefined;
|
|
914
956
|
houses_fallback_reason?: string | undefined;
|
|
915
957
|
} | null;
|
|
916
958
|
}, {
|
|
@@ -928,6 +970,7 @@ export declare const returnsOut: z.ZodObject<{
|
|
|
928
970
|
house: number;
|
|
929
971
|
speed: number;
|
|
930
972
|
rx?: boolean | undefined;
|
|
973
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
931
974
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
932
975
|
}>;
|
|
933
976
|
angles: {
|
|
@@ -946,6 +989,7 @@ export declare const returnsOut: z.ZodObject<{
|
|
|
946
989
|
}[];
|
|
947
990
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
948
991
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
992
|
+
unavailable?: string[] | undefined;
|
|
949
993
|
houses_fallback_reason?: string | undefined;
|
|
950
994
|
} | null;
|
|
951
995
|
}>;
|
|
@@ -1056,6 +1100,7 @@ export declare const compositeOut: z.ZodObject<{
|
|
|
1056
1100
|
house: z.ZodNumber;
|
|
1057
1101
|
speed: z.ZodNumber;
|
|
1058
1102
|
rx: z.ZodOptional<z.ZodBoolean>;
|
|
1103
|
+
dignity: z.ZodOptional<z.ZodArray<z.ZodEnum<["domicile", "exaltation", "detriment", "fall"]>, "many">>;
|
|
1059
1104
|
solar: z.ZodOptional<z.ZodEnum<["cazimi", "combust", "under_beams"]>>;
|
|
1060
1105
|
}, "strip", z.ZodTypeAny, {
|
|
1061
1106
|
lon: number;
|
|
@@ -1063,6 +1108,7 @@ export declare const compositeOut: z.ZodObject<{
|
|
|
1063
1108
|
house: number;
|
|
1064
1109
|
speed: number;
|
|
1065
1110
|
rx?: boolean | undefined;
|
|
1111
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
1066
1112
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
1067
1113
|
}, {
|
|
1068
1114
|
lon: number;
|
|
@@ -1070,6 +1116,7 @@ export declare const compositeOut: z.ZodObject<{
|
|
|
1070
1116
|
house: number;
|
|
1071
1117
|
speed: number;
|
|
1072
1118
|
rx?: boolean | undefined;
|
|
1119
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
1073
1120
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
1074
1121
|
}>>;
|
|
1075
1122
|
angles: z.ZodObject<{
|
|
@@ -1108,6 +1155,7 @@ export declare const compositeOut: z.ZodObject<{
|
|
|
1108
1155
|
orb: number;
|
|
1109
1156
|
phase?: "applying" | "separating" | "exact" | undefined;
|
|
1110
1157
|
}>, "many">;
|
|
1158
|
+
unavailable: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1111
1159
|
}, "strip", z.ZodTypeAny, {
|
|
1112
1160
|
utc: string;
|
|
1113
1161
|
houses: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow";
|
|
@@ -1117,6 +1165,7 @@ export declare const compositeOut: z.ZodObject<{
|
|
|
1117
1165
|
house: number;
|
|
1118
1166
|
speed: number;
|
|
1119
1167
|
rx?: boolean | undefined;
|
|
1168
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
1120
1169
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
1121
1170
|
}>;
|
|
1122
1171
|
angles: {
|
|
@@ -1135,6 +1184,7 @@ export declare const compositeOut: z.ZodObject<{
|
|
|
1135
1184
|
}[];
|
|
1136
1185
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
1137
1186
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
1187
|
+
unavailable?: string[] | undefined;
|
|
1138
1188
|
houses_fallback_reason?: string | undefined;
|
|
1139
1189
|
}, {
|
|
1140
1190
|
utc: string;
|
|
@@ -1145,6 +1195,7 @@ export declare const compositeOut: z.ZodObject<{
|
|
|
1145
1195
|
house: number;
|
|
1146
1196
|
speed: number;
|
|
1147
1197
|
rx?: boolean | undefined;
|
|
1198
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
1148
1199
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
1149
1200
|
}>;
|
|
1150
1201
|
angles: {
|
|
@@ -1163,6 +1214,7 @@ export declare const compositeOut: z.ZodObject<{
|
|
|
1163
1214
|
}[];
|
|
1164
1215
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
1165
1216
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
1217
|
+
unavailable?: string[] | undefined;
|
|
1166
1218
|
houses_fallback_reason?: string | undefined;
|
|
1167
1219
|
}>;
|
|
1168
1220
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1187,6 +1239,7 @@ export declare const compositeOut: z.ZodObject<{
|
|
|
1187
1239
|
house: number;
|
|
1188
1240
|
speed: number;
|
|
1189
1241
|
rx?: boolean | undefined;
|
|
1242
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
1190
1243
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
1191
1244
|
}>;
|
|
1192
1245
|
angles: {
|
|
@@ -1205,6 +1258,7 @@ export declare const compositeOut: z.ZodObject<{
|
|
|
1205
1258
|
}[];
|
|
1206
1259
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
1207
1260
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
1261
|
+
unavailable?: string[] | undefined;
|
|
1208
1262
|
houses_fallback_reason?: string | undefined;
|
|
1209
1263
|
};
|
|
1210
1264
|
}, {
|
|
@@ -1229,6 +1283,7 @@ export declare const compositeOut: z.ZodObject<{
|
|
|
1229
1283
|
house: number;
|
|
1230
1284
|
speed: number;
|
|
1231
1285
|
rx?: boolean | undefined;
|
|
1286
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
1232
1287
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
1233
1288
|
}>;
|
|
1234
1289
|
angles: {
|
|
@@ -1247,6 +1302,7 @@ export declare const compositeOut: z.ZodObject<{
|
|
|
1247
1302
|
}[];
|
|
1248
1303
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
1249
1304
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
1305
|
+
unavailable?: string[] | undefined;
|
|
1250
1306
|
houses_fallback_reason?: string | undefined;
|
|
1251
1307
|
};
|
|
1252
1308
|
}>;
|
|
@@ -1259,21 +1315,21 @@ export declare const dignitiesOut: z.ZodObject<{
|
|
|
1259
1315
|
planetary_sect: z.ZodNullable<z.ZodEnum<["diurnal", "nocturnal"]>>;
|
|
1260
1316
|
in_sect: z.ZodNullable<z.ZodBoolean>;
|
|
1261
1317
|
}, "strip", z.ZodTypeAny, {
|
|
1262
|
-
sign: string;
|
|
1263
1318
|
dignity: ("domicile" | "exaltation" | "detriment" | "fall")[];
|
|
1319
|
+
sign: string;
|
|
1264
1320
|
planetary_sect: "diurnal" | "nocturnal" | null;
|
|
1265
1321
|
in_sect: boolean | null;
|
|
1266
1322
|
}, {
|
|
1267
|
-
sign: string;
|
|
1268
1323
|
dignity: ("domicile" | "exaltation" | "detriment" | "fall")[];
|
|
1324
|
+
sign: string;
|
|
1269
1325
|
planetary_sect: "diurnal" | "nocturnal" | null;
|
|
1270
1326
|
in_sect: boolean | null;
|
|
1271
1327
|
}>>;
|
|
1272
1328
|
}, "strip", z.ZodTypeAny, {
|
|
1273
1329
|
utc: string;
|
|
1274
1330
|
bodies: Record<string, {
|
|
1275
|
-
sign: string;
|
|
1276
1331
|
dignity: ("domicile" | "exaltation" | "detriment" | "fall")[];
|
|
1332
|
+
sign: string;
|
|
1277
1333
|
planetary_sect: "diurnal" | "nocturnal" | null;
|
|
1278
1334
|
in_sect: boolean | null;
|
|
1279
1335
|
}>;
|
|
@@ -1281,8 +1337,8 @@ export declare const dignitiesOut: z.ZodObject<{
|
|
|
1281
1337
|
}, {
|
|
1282
1338
|
utc: string;
|
|
1283
1339
|
bodies: Record<string, {
|
|
1284
|
-
sign: string;
|
|
1285
1340
|
dignity: ("domicile" | "exaltation" | "detriment" | "fall")[];
|
|
1341
|
+
sign: string;
|
|
1286
1342
|
planetary_sect: "diurnal" | "nocturnal" | null;
|
|
1287
1343
|
in_sect: boolean | null;
|
|
1288
1344
|
}>;
|
|
@@ -1917,6 +1973,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
1917
1973
|
house: z.ZodNumber;
|
|
1918
1974
|
speed: z.ZodNumber;
|
|
1919
1975
|
rx: z.ZodOptional<z.ZodBoolean>;
|
|
1976
|
+
dignity: z.ZodOptional<z.ZodArray<z.ZodEnum<["domicile", "exaltation", "detriment", "fall"]>, "many">>;
|
|
1920
1977
|
solar: z.ZodOptional<z.ZodEnum<["cazimi", "combust", "under_beams"]>>;
|
|
1921
1978
|
}, "strip", z.ZodTypeAny, {
|
|
1922
1979
|
lon: number;
|
|
@@ -1924,6 +1981,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
1924
1981
|
house: number;
|
|
1925
1982
|
speed: number;
|
|
1926
1983
|
rx?: boolean | undefined;
|
|
1984
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
1927
1985
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
1928
1986
|
}, {
|
|
1929
1987
|
lon: number;
|
|
@@ -1931,6 +1989,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
1931
1989
|
house: number;
|
|
1932
1990
|
speed: number;
|
|
1933
1991
|
rx?: boolean | undefined;
|
|
1992
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
1934
1993
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
1935
1994
|
}>>;
|
|
1936
1995
|
angles: z.ZodObject<{
|
|
@@ -1969,6 +2028,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
1969
2028
|
orb: number;
|
|
1970
2029
|
phase?: "applying" | "separating" | "exact" | undefined;
|
|
1971
2030
|
}>, "many">;
|
|
2031
|
+
unavailable: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1972
2032
|
}, "strip", z.ZodTypeAny, {
|
|
1973
2033
|
utc: string;
|
|
1974
2034
|
houses: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow";
|
|
@@ -1978,6 +2038,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
1978
2038
|
house: number;
|
|
1979
2039
|
speed: number;
|
|
1980
2040
|
rx?: boolean | undefined;
|
|
2041
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
1981
2042
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
1982
2043
|
}>;
|
|
1983
2044
|
angles: {
|
|
@@ -1996,6 +2057,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
1996
2057
|
}[];
|
|
1997
2058
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
1998
2059
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
2060
|
+
unavailable?: string[] | undefined;
|
|
1999
2061
|
houses_fallback_reason?: string | undefined;
|
|
2000
2062
|
}, {
|
|
2001
2063
|
utc: string;
|
|
@@ -2006,6 +2068,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2006
2068
|
house: number;
|
|
2007
2069
|
speed: number;
|
|
2008
2070
|
rx?: boolean | undefined;
|
|
2071
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2009
2072
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2010
2073
|
}>;
|
|
2011
2074
|
angles: {
|
|
@@ -2024,6 +2087,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2024
2087
|
}[];
|
|
2025
2088
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
2026
2089
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
2090
|
+
unavailable?: string[] | undefined;
|
|
2027
2091
|
houses_fallback_reason?: string | undefined;
|
|
2028
2092
|
}>;
|
|
2029
2093
|
readonly current_sky: z.ZodObject<{
|
|
@@ -2038,6 +2102,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2038
2102
|
house: z.ZodNumber;
|
|
2039
2103
|
speed: z.ZodNumber;
|
|
2040
2104
|
rx: z.ZodOptional<z.ZodBoolean>;
|
|
2105
|
+
dignity: z.ZodOptional<z.ZodArray<z.ZodEnum<["domicile", "exaltation", "detriment", "fall"]>, "many">>;
|
|
2041
2106
|
solar: z.ZodOptional<z.ZodEnum<["cazimi", "combust", "under_beams"]>>;
|
|
2042
2107
|
}, "strip", z.ZodTypeAny, {
|
|
2043
2108
|
lon: number;
|
|
@@ -2045,6 +2110,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2045
2110
|
house: number;
|
|
2046
2111
|
speed: number;
|
|
2047
2112
|
rx?: boolean | undefined;
|
|
2113
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2048
2114
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2049
2115
|
}, {
|
|
2050
2116
|
lon: number;
|
|
@@ -2052,6 +2118,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2052
2118
|
house: number;
|
|
2053
2119
|
speed: number;
|
|
2054
2120
|
rx?: boolean | undefined;
|
|
2121
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2055
2122
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2056
2123
|
}>>;
|
|
2057
2124
|
angles: z.ZodObject<{
|
|
@@ -2090,6 +2157,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2090
2157
|
orb: number;
|
|
2091
2158
|
phase?: "applying" | "separating" | "exact" | undefined;
|
|
2092
2159
|
}>, "many">;
|
|
2160
|
+
unavailable: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2093
2161
|
}, "strip", z.ZodTypeAny, {
|
|
2094
2162
|
utc: string;
|
|
2095
2163
|
houses: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow";
|
|
@@ -2099,6 +2167,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2099
2167
|
house: number;
|
|
2100
2168
|
speed: number;
|
|
2101
2169
|
rx?: boolean | undefined;
|
|
2170
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2102
2171
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2103
2172
|
}>;
|
|
2104
2173
|
angles: {
|
|
@@ -2117,6 +2186,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2117
2186
|
}[];
|
|
2118
2187
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
2119
2188
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
2189
|
+
unavailable?: string[] | undefined;
|
|
2120
2190
|
houses_fallback_reason?: string | undefined;
|
|
2121
2191
|
}, {
|
|
2122
2192
|
utc: string;
|
|
@@ -2127,6 +2197,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2127
2197
|
house: number;
|
|
2128
2198
|
speed: number;
|
|
2129
2199
|
rx?: boolean | undefined;
|
|
2200
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2130
2201
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2131
2202
|
}>;
|
|
2132
2203
|
angles: {
|
|
@@ -2145,6 +2216,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2145
2216
|
}[];
|
|
2146
2217
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
2147
2218
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
2219
|
+
unavailable?: string[] | undefined;
|
|
2148
2220
|
houses_fallback_reason?: string | undefined;
|
|
2149
2221
|
}>;
|
|
2150
2222
|
readonly transits: z.ZodObject<{
|
|
@@ -2223,6 +2295,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2223
2295
|
house: z.ZodNumber;
|
|
2224
2296
|
speed: z.ZodNumber;
|
|
2225
2297
|
rx: z.ZodOptional<z.ZodBoolean>;
|
|
2298
|
+
dignity: z.ZodOptional<z.ZodArray<z.ZodEnum<["domicile", "exaltation", "detriment", "fall"]>, "many">>;
|
|
2226
2299
|
solar: z.ZodOptional<z.ZodEnum<["cazimi", "combust", "under_beams"]>>;
|
|
2227
2300
|
}, "strip", z.ZodTypeAny, {
|
|
2228
2301
|
lon: number;
|
|
@@ -2230,6 +2303,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2230
2303
|
house: number;
|
|
2231
2304
|
speed: number;
|
|
2232
2305
|
rx?: boolean | undefined;
|
|
2306
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2233
2307
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2234
2308
|
}, {
|
|
2235
2309
|
lon: number;
|
|
@@ -2237,6 +2311,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2237
2311
|
house: number;
|
|
2238
2312
|
speed: number;
|
|
2239
2313
|
rx?: boolean | undefined;
|
|
2314
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2240
2315
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2241
2316
|
}>>;
|
|
2242
2317
|
angles: z.ZodObject<{
|
|
@@ -2275,6 +2350,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2275
2350
|
orb: number;
|
|
2276
2351
|
phase?: "applying" | "separating" | "exact" | undefined;
|
|
2277
2352
|
}>, "many">;
|
|
2353
|
+
unavailable: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2278
2354
|
}, "strip", z.ZodTypeAny, {
|
|
2279
2355
|
utc: string;
|
|
2280
2356
|
houses: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow";
|
|
@@ -2284,6 +2360,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2284
2360
|
house: number;
|
|
2285
2361
|
speed: number;
|
|
2286
2362
|
rx?: boolean | undefined;
|
|
2363
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2287
2364
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2288
2365
|
}>;
|
|
2289
2366
|
angles: {
|
|
@@ -2302,6 +2379,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2302
2379
|
}[];
|
|
2303
2380
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
2304
2381
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
2382
|
+
unavailable?: string[] | undefined;
|
|
2305
2383
|
houses_fallback_reason?: string | undefined;
|
|
2306
2384
|
}, {
|
|
2307
2385
|
utc: string;
|
|
@@ -2312,6 +2390,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2312
2390
|
house: number;
|
|
2313
2391
|
speed: number;
|
|
2314
2392
|
rx?: boolean | undefined;
|
|
2393
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2315
2394
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2316
2395
|
}>;
|
|
2317
2396
|
angles: {
|
|
@@ -2330,6 +2409,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2330
2409
|
}[];
|
|
2331
2410
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
2332
2411
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
2412
|
+
unavailable?: string[] | undefined;
|
|
2333
2413
|
houses_fallback_reason?: string | undefined;
|
|
2334
2414
|
}>;
|
|
2335
2415
|
b: z.ZodObject<{
|
|
@@ -2344,6 +2424,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2344
2424
|
house: z.ZodNumber;
|
|
2345
2425
|
speed: z.ZodNumber;
|
|
2346
2426
|
rx: z.ZodOptional<z.ZodBoolean>;
|
|
2427
|
+
dignity: z.ZodOptional<z.ZodArray<z.ZodEnum<["domicile", "exaltation", "detriment", "fall"]>, "many">>;
|
|
2347
2428
|
solar: z.ZodOptional<z.ZodEnum<["cazimi", "combust", "under_beams"]>>;
|
|
2348
2429
|
}, "strip", z.ZodTypeAny, {
|
|
2349
2430
|
lon: number;
|
|
@@ -2351,6 +2432,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2351
2432
|
house: number;
|
|
2352
2433
|
speed: number;
|
|
2353
2434
|
rx?: boolean | undefined;
|
|
2435
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2354
2436
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2355
2437
|
}, {
|
|
2356
2438
|
lon: number;
|
|
@@ -2358,6 +2440,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2358
2440
|
house: number;
|
|
2359
2441
|
speed: number;
|
|
2360
2442
|
rx?: boolean | undefined;
|
|
2443
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2361
2444
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2362
2445
|
}>>;
|
|
2363
2446
|
angles: z.ZodObject<{
|
|
@@ -2396,6 +2479,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2396
2479
|
orb: number;
|
|
2397
2480
|
phase?: "applying" | "separating" | "exact" | undefined;
|
|
2398
2481
|
}>, "many">;
|
|
2482
|
+
unavailable: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2399
2483
|
}, "strip", z.ZodTypeAny, {
|
|
2400
2484
|
utc: string;
|
|
2401
2485
|
houses: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow";
|
|
@@ -2405,6 +2489,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2405
2489
|
house: number;
|
|
2406
2490
|
speed: number;
|
|
2407
2491
|
rx?: boolean | undefined;
|
|
2492
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2408
2493
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2409
2494
|
}>;
|
|
2410
2495
|
angles: {
|
|
@@ -2423,6 +2508,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2423
2508
|
}[];
|
|
2424
2509
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
2425
2510
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
2511
|
+
unavailable?: string[] | undefined;
|
|
2426
2512
|
houses_fallback_reason?: string | undefined;
|
|
2427
2513
|
}, {
|
|
2428
2514
|
utc: string;
|
|
@@ -2433,6 +2519,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2433
2519
|
house: number;
|
|
2434
2520
|
speed: number;
|
|
2435
2521
|
rx?: boolean | undefined;
|
|
2522
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2436
2523
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2437
2524
|
}>;
|
|
2438
2525
|
angles: {
|
|
@@ -2451,6 +2538,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2451
2538
|
}[];
|
|
2452
2539
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
2453
2540
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
2541
|
+
unavailable?: string[] | undefined;
|
|
2454
2542
|
houses_fallback_reason?: string | undefined;
|
|
2455
2543
|
}>;
|
|
2456
2544
|
inter_aspects: z.ZodArray<z.ZodObject<{
|
|
@@ -2484,6 +2572,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2484
2572
|
house: number;
|
|
2485
2573
|
speed: number;
|
|
2486
2574
|
rx?: boolean | undefined;
|
|
2575
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2487
2576
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2488
2577
|
}>;
|
|
2489
2578
|
angles: {
|
|
@@ -2502,6 +2591,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2502
2591
|
}[];
|
|
2503
2592
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
2504
2593
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
2594
|
+
unavailable?: string[] | undefined;
|
|
2505
2595
|
houses_fallback_reason?: string | undefined;
|
|
2506
2596
|
};
|
|
2507
2597
|
b: {
|
|
@@ -2513,6 +2603,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2513
2603
|
house: number;
|
|
2514
2604
|
speed: number;
|
|
2515
2605
|
rx?: boolean | undefined;
|
|
2606
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2516
2607
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2517
2608
|
}>;
|
|
2518
2609
|
angles: {
|
|
@@ -2531,6 +2622,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2531
2622
|
}[];
|
|
2532
2623
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
2533
2624
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
2625
|
+
unavailable?: string[] | undefined;
|
|
2534
2626
|
houses_fallback_reason?: string | undefined;
|
|
2535
2627
|
};
|
|
2536
2628
|
inter_aspects: {
|
|
@@ -2552,6 +2644,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2552
2644
|
house: number;
|
|
2553
2645
|
speed: number;
|
|
2554
2646
|
rx?: boolean | undefined;
|
|
2647
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2555
2648
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2556
2649
|
}>;
|
|
2557
2650
|
angles: {
|
|
@@ -2570,6 +2663,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2570
2663
|
}[];
|
|
2571
2664
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
2572
2665
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
2666
|
+
unavailable?: string[] | undefined;
|
|
2573
2667
|
houses_fallback_reason?: string | undefined;
|
|
2574
2668
|
};
|
|
2575
2669
|
b: {
|
|
@@ -2581,6 +2675,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2581
2675
|
house: number;
|
|
2582
2676
|
speed: number;
|
|
2583
2677
|
rx?: boolean | undefined;
|
|
2678
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2584
2679
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2585
2680
|
}>;
|
|
2586
2681
|
angles: {
|
|
@@ -2599,6 +2694,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2599
2694
|
}[];
|
|
2600
2695
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
2601
2696
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
2697
|
+
unavailable?: string[] | undefined;
|
|
2602
2698
|
houses_fallback_reason?: string | undefined;
|
|
2603
2699
|
};
|
|
2604
2700
|
inter_aspects: {
|
|
@@ -2669,11 +2765,11 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2669
2765
|
detail: z.ZodOptional<z.ZodString>;
|
|
2670
2766
|
}, "strip", z.ZodTypeAny, {
|
|
2671
2767
|
t: string;
|
|
2672
|
-
kind: "
|
|
2768
|
+
kind: "set" | "phase" | "rise" | "mtransit" | "itransit" | "station" | "crossing" | "solar_eclipse" | "lunar_eclipse";
|
|
2673
2769
|
detail?: string | undefined;
|
|
2674
2770
|
}, {
|
|
2675
2771
|
t: string;
|
|
2676
|
-
kind: "
|
|
2772
|
+
kind: "set" | "phase" | "rise" | "mtransit" | "itransit" | "station" | "crossing" | "solar_eclipse" | "lunar_eclipse";
|
|
2677
2773
|
detail?: string | undefined;
|
|
2678
2774
|
}>, "many">;
|
|
2679
2775
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2681,7 +2777,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2681
2777
|
end: string;
|
|
2682
2778
|
events: {
|
|
2683
2779
|
t: string;
|
|
2684
|
-
kind: "
|
|
2780
|
+
kind: "set" | "phase" | "rise" | "mtransit" | "itransit" | "station" | "crossing" | "solar_eclipse" | "lunar_eclipse";
|
|
2685
2781
|
detail?: string | undefined;
|
|
2686
2782
|
}[];
|
|
2687
2783
|
}, {
|
|
@@ -2689,7 +2785,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2689
2785
|
end: string;
|
|
2690
2786
|
events: {
|
|
2691
2787
|
t: string;
|
|
2692
|
-
kind: "
|
|
2788
|
+
kind: "set" | "phase" | "rise" | "mtransit" | "itransit" | "station" | "crossing" | "solar_eclipse" | "lunar_eclipse";
|
|
2693
2789
|
detail?: string | undefined;
|
|
2694
2790
|
}[];
|
|
2695
2791
|
}>;
|
|
@@ -2782,6 +2878,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2782
2878
|
house: z.ZodNumber;
|
|
2783
2879
|
speed: z.ZodNumber;
|
|
2784
2880
|
rx: z.ZodOptional<z.ZodBoolean>;
|
|
2881
|
+
dignity: z.ZodOptional<z.ZodArray<z.ZodEnum<["domicile", "exaltation", "detriment", "fall"]>, "many">>;
|
|
2785
2882
|
solar: z.ZodOptional<z.ZodEnum<["cazimi", "combust", "under_beams"]>>;
|
|
2786
2883
|
}, "strip", z.ZodTypeAny, {
|
|
2787
2884
|
lon: number;
|
|
@@ -2789,6 +2886,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2789
2886
|
house: number;
|
|
2790
2887
|
speed: number;
|
|
2791
2888
|
rx?: boolean | undefined;
|
|
2889
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2792
2890
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2793
2891
|
}, {
|
|
2794
2892
|
lon: number;
|
|
@@ -2796,6 +2894,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2796
2894
|
house: number;
|
|
2797
2895
|
speed: number;
|
|
2798
2896
|
rx?: boolean | undefined;
|
|
2897
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2799
2898
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2800
2899
|
}>>;
|
|
2801
2900
|
angles: z.ZodObject<{
|
|
@@ -2834,6 +2933,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2834
2933
|
orb: number;
|
|
2835
2934
|
phase?: "applying" | "separating" | "exact" | undefined;
|
|
2836
2935
|
}>, "many">;
|
|
2936
|
+
unavailable: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2837
2937
|
}, "strip", z.ZodTypeAny, {
|
|
2838
2938
|
utc: string;
|
|
2839
2939
|
houses: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow";
|
|
@@ -2843,6 +2943,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2843
2943
|
house: number;
|
|
2844
2944
|
speed: number;
|
|
2845
2945
|
rx?: boolean | undefined;
|
|
2946
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2846
2947
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2847
2948
|
}>;
|
|
2848
2949
|
angles: {
|
|
@@ -2861,6 +2962,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2861
2962
|
}[];
|
|
2862
2963
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
2863
2964
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
2965
|
+
unavailable?: string[] | undefined;
|
|
2864
2966
|
houses_fallback_reason?: string | undefined;
|
|
2865
2967
|
}, {
|
|
2866
2968
|
utc: string;
|
|
@@ -2871,6 +2973,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2871
2973
|
house: number;
|
|
2872
2974
|
speed: number;
|
|
2873
2975
|
rx?: boolean | undefined;
|
|
2976
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2874
2977
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2875
2978
|
}>;
|
|
2876
2979
|
angles: {
|
|
@@ -2889,6 +2992,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2889
2992
|
}[];
|
|
2890
2993
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
2891
2994
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
2995
|
+
unavailable?: string[] | undefined;
|
|
2892
2996
|
houses_fallback_reason?: string | undefined;
|
|
2893
2997
|
}>>;
|
|
2894
2998
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2906,6 +3010,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2906
3010
|
house: number;
|
|
2907
3011
|
speed: number;
|
|
2908
3012
|
rx?: boolean | undefined;
|
|
3013
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2909
3014
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2910
3015
|
}>;
|
|
2911
3016
|
angles: {
|
|
@@ -2924,6 +3029,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2924
3029
|
}[];
|
|
2925
3030
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
2926
3031
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
3032
|
+
unavailable?: string[] | undefined;
|
|
2927
3033
|
houses_fallback_reason?: string | undefined;
|
|
2928
3034
|
} | null;
|
|
2929
3035
|
}, {
|
|
@@ -2941,6 +3047,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2941
3047
|
house: number;
|
|
2942
3048
|
speed: number;
|
|
2943
3049
|
rx?: boolean | undefined;
|
|
3050
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
2944
3051
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
2945
3052
|
}>;
|
|
2946
3053
|
angles: {
|
|
@@ -2959,6 +3066,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
2959
3066
|
}[];
|
|
2960
3067
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
2961
3068
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
3069
|
+
unavailable?: string[] | undefined;
|
|
2962
3070
|
houses_fallback_reason?: string | undefined;
|
|
2963
3071
|
} | null;
|
|
2964
3072
|
}>;
|
|
@@ -3069,6 +3177,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
3069
3177
|
house: z.ZodNumber;
|
|
3070
3178
|
speed: z.ZodNumber;
|
|
3071
3179
|
rx: z.ZodOptional<z.ZodBoolean>;
|
|
3180
|
+
dignity: z.ZodOptional<z.ZodArray<z.ZodEnum<["domicile", "exaltation", "detriment", "fall"]>, "many">>;
|
|
3072
3181
|
solar: z.ZodOptional<z.ZodEnum<["cazimi", "combust", "under_beams"]>>;
|
|
3073
3182
|
}, "strip", z.ZodTypeAny, {
|
|
3074
3183
|
lon: number;
|
|
@@ -3076,6 +3185,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
3076
3185
|
house: number;
|
|
3077
3186
|
speed: number;
|
|
3078
3187
|
rx?: boolean | undefined;
|
|
3188
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
3079
3189
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
3080
3190
|
}, {
|
|
3081
3191
|
lon: number;
|
|
@@ -3083,6 +3193,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
3083
3193
|
house: number;
|
|
3084
3194
|
speed: number;
|
|
3085
3195
|
rx?: boolean | undefined;
|
|
3196
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
3086
3197
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
3087
3198
|
}>>;
|
|
3088
3199
|
angles: z.ZodObject<{
|
|
@@ -3121,6 +3232,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
3121
3232
|
orb: number;
|
|
3122
3233
|
phase?: "applying" | "separating" | "exact" | undefined;
|
|
3123
3234
|
}>, "many">;
|
|
3235
|
+
unavailable: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3124
3236
|
}, "strip", z.ZodTypeAny, {
|
|
3125
3237
|
utc: string;
|
|
3126
3238
|
houses: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow";
|
|
@@ -3130,6 +3242,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
3130
3242
|
house: number;
|
|
3131
3243
|
speed: number;
|
|
3132
3244
|
rx?: boolean | undefined;
|
|
3245
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
3133
3246
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
3134
3247
|
}>;
|
|
3135
3248
|
angles: {
|
|
@@ -3148,6 +3261,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
3148
3261
|
}[];
|
|
3149
3262
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
3150
3263
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
3264
|
+
unavailable?: string[] | undefined;
|
|
3151
3265
|
houses_fallback_reason?: string | undefined;
|
|
3152
3266
|
}, {
|
|
3153
3267
|
utc: string;
|
|
@@ -3158,6 +3272,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
3158
3272
|
house: number;
|
|
3159
3273
|
speed: number;
|
|
3160
3274
|
rx?: boolean | undefined;
|
|
3275
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
3161
3276
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
3162
3277
|
}>;
|
|
3163
3278
|
angles: {
|
|
@@ -3176,6 +3291,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
3176
3291
|
}[];
|
|
3177
3292
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
3178
3293
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
3294
|
+
unavailable?: string[] | undefined;
|
|
3179
3295
|
houses_fallback_reason?: string | undefined;
|
|
3180
3296
|
}>;
|
|
3181
3297
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3200,6 +3316,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
3200
3316
|
house: number;
|
|
3201
3317
|
speed: number;
|
|
3202
3318
|
rx?: boolean | undefined;
|
|
3319
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
3203
3320
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
3204
3321
|
}>;
|
|
3205
3322
|
angles: {
|
|
@@ -3218,6 +3335,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
3218
3335
|
}[];
|
|
3219
3336
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
3220
3337
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
3338
|
+
unavailable?: string[] | undefined;
|
|
3221
3339
|
houses_fallback_reason?: string | undefined;
|
|
3222
3340
|
};
|
|
3223
3341
|
}, {
|
|
@@ -3242,6 +3360,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
3242
3360
|
house: number;
|
|
3243
3361
|
speed: number;
|
|
3244
3362
|
rx?: boolean | undefined;
|
|
3363
|
+
dignity?: ("domicile" | "exaltation" | "detriment" | "fall")[] | undefined;
|
|
3245
3364
|
solar?: "cazimi" | "combust" | "under_beams" | undefined;
|
|
3246
3365
|
}>;
|
|
3247
3366
|
angles: {
|
|
@@ -3260,6 +3379,7 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
3260
3379
|
}[];
|
|
3261
3380
|
zodiac?: "tropical" | "sidereal:lahiri" | "sidereal:fagan_bradley" | "sidereal:krishnamurti" | "sidereal:raman" | "sidereal:yukteshwar" | "sidereal:galcent_0sag" | "sidereal:true_citra" | undefined;
|
|
3262
3381
|
houses_requested?: "placidus" | "whole_sign" | "equal" | "porphyry" | "koch" | "regiomontanus" | "campanus" | "alcabitius" | "morinus" | "meridian" | "polich_page" | "vehlow" | undefined;
|
|
3382
|
+
unavailable?: string[] | undefined;
|
|
3263
3383
|
houses_fallback_reason?: string | undefined;
|
|
3264
3384
|
};
|
|
3265
3385
|
}>;
|
|
@@ -3272,21 +3392,21 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
3272
3392
|
planetary_sect: z.ZodNullable<z.ZodEnum<["diurnal", "nocturnal"]>>;
|
|
3273
3393
|
in_sect: z.ZodNullable<z.ZodBoolean>;
|
|
3274
3394
|
}, "strip", z.ZodTypeAny, {
|
|
3275
|
-
sign: string;
|
|
3276
3395
|
dignity: ("domicile" | "exaltation" | "detriment" | "fall")[];
|
|
3396
|
+
sign: string;
|
|
3277
3397
|
planetary_sect: "diurnal" | "nocturnal" | null;
|
|
3278
3398
|
in_sect: boolean | null;
|
|
3279
3399
|
}, {
|
|
3280
|
-
sign: string;
|
|
3281
3400
|
dignity: ("domicile" | "exaltation" | "detriment" | "fall")[];
|
|
3401
|
+
sign: string;
|
|
3282
3402
|
planetary_sect: "diurnal" | "nocturnal" | null;
|
|
3283
3403
|
in_sect: boolean | null;
|
|
3284
3404
|
}>>;
|
|
3285
3405
|
}, "strip", z.ZodTypeAny, {
|
|
3286
3406
|
utc: string;
|
|
3287
3407
|
bodies: Record<string, {
|
|
3288
|
-
sign: string;
|
|
3289
3408
|
dignity: ("domicile" | "exaltation" | "detriment" | "fall")[];
|
|
3409
|
+
sign: string;
|
|
3290
3410
|
planetary_sect: "diurnal" | "nocturnal" | null;
|
|
3291
3411
|
in_sect: boolean | null;
|
|
3292
3412
|
}>;
|
|
@@ -3294,8 +3414,8 @@ export declare const OUTPUT_SCHEMAS: {
|
|
|
3294
3414
|
}, {
|
|
3295
3415
|
utc: string;
|
|
3296
3416
|
bodies: Record<string, {
|
|
3297
|
-
sign: string;
|
|
3298
3417
|
dignity: ("domicile" | "exaltation" | "detriment" | "fall")[];
|
|
3418
|
+
sign: string;
|
|
3299
3419
|
planetary_sect: "diurnal" | "nocturnal" | null;
|
|
3300
3420
|
in_sect: boolean | null;
|
|
3301
3421
|
}>;
|
package/dist/src/server.js
CHANGED
|
@@ -17,7 +17,7 @@ import { dirname, join } from "node:path";
|
|
|
17
17
|
import { fileURLToPath } from "node:url";
|
|
18
18
|
import { createRequire } from "node:module";
|
|
19
19
|
import { realpathSync } from "node:fs";
|
|
20
|
-
import { Engine, BODIES, julianDay, mod, riseSet, crossings, lunarPhases, stations, lunarEclipses, solarEclipses, ASPECTS, DEFAULT_ORBS, SIGNS as SIGN_NAMES, dignities, solarPhase, aspectPhase, planetaryHour, voidOfCourse, CAZIMI_DEG, COMBUST_DEG, UNDER_BEAMS_DEG, solarReturn, lunarReturn, progressedLongitude, directedLongitude, solarArc, progressedJd, compositeLongitudes, davisonParams, midpointLon, dignityOf, isDayChart, planetarySect, inSect, lots, HERMETIC_LOTS, profectionAt, firdaria, firdariaActive, zrRelease, zrActive, lotSpirit, lotFortune, primaryDirections, mundaneDirections, nakshatra, vimshottariDashas, vimshottariAt, yoginiDashas, yoginiAt, ashtottariDashas, ashtottariAt, varga, VARGA_DIVISIONS, yogasAt, kemadrumaAt, rajaYogasAt, dhanaYogasAt, } from "caelus";
|
|
20
|
+
import { Engine, BODIES, julianDay, mod, riseSet, crossings, lunarPhases, stations, lunarEclipses, solarEclipses, ASPECTS, DEFAULT_ORBS, SIGNS as SIGN_NAMES, dignities, normalizeHouseSystem, solarPhase, aspectPhase, planetaryHour, voidOfCourse, CAZIMI_DEG, COMBUST_DEG, UNDER_BEAMS_DEG, solarReturn, lunarReturn, progressedLongitude, directedLongitude, solarArc, progressedJd, compositeLongitudes, davisonParams, midpointLon, dignityOf, isDayChart, planetarySect, inSect, lots, HERMETIC_LOTS, profectionAt, firdaria, firdariaActive, zrRelease, zrActive, lotSpirit, lotFortune, primaryDirections, mundaneDirections, nakshatra, vimshottariDashas, vimshottariAt, yoginiDashas, yoginiAt, ashtottariDashas, ashtottariAt, varga, VARGA_DIVISIONS, yogasAt, kemadrumaAt, rajaYogasAt, dhanaYogasAt, } from "caelus";
|
|
21
21
|
import { loadNodeData } from "caelus/node";
|
|
22
22
|
const require = createRequire(import.meta.url);
|
|
23
23
|
// Read our own version relative to this file (dist/src/server.js -> the package
|
|
@@ -58,8 +58,9 @@ const SIGNS = ["Ari", "Tau", "Gem", "Cnc", "Leo", "Vir", "Lib", "Sco", "Sgr", "C
|
|
|
58
58
|
// engine returns. Not a computed quantity, so no golden pins it.
|
|
59
59
|
const CHALDEAN_ORDER = ["saturn", "jupiter", "mars", "sun", "venus", "mercury", "moon"];
|
|
60
60
|
const fmt = (lon) => {
|
|
61
|
-
const
|
|
62
|
-
|
|
61
|
+
const norm = mod(lon, 360);
|
|
62
|
+
const d = mod(norm, 30);
|
|
63
|
+
return `${Math.floor(d)}°${String(Math.floor(mod(d, 1) * 60)).padStart(2, "0")}'${SIGNS[Math.floor(norm / 30)]}`;
|
|
63
64
|
};
|
|
64
65
|
const latSchema = z.number().min(-90).max(90).describe("Latitude, north positive");
|
|
65
66
|
const lonSchema = z.number().min(-180).max(180).describe("Longitude, EAST positive (Americas are negative)");
|
|
@@ -72,7 +73,10 @@ const HOUSE_SYSTEMS = [
|
|
|
72
73
|
"placidus", "whole_sign", "equal", "porphyry", "koch", "regiomontanus",
|
|
73
74
|
"campanus", "alcabitius", "morinus", "meridian", "polich_page", "vehlow",
|
|
74
75
|
];
|
|
75
|
-
|
|
76
|
+
// Lenient on input: the engine's normalizeHouseSystem() accepts any case,
|
|
77
|
+
// spaces/hyphens, and aliases ("whole sign", "Placidus", "whole" -> whole_sign),
|
|
78
|
+
// so agents don't trip the strict enum. The output `houses` stays canonical.
|
|
79
|
+
const houseSys = z.string().default("placidus").describe(`House system (default placidus). Case- and spacing-insensitive; valid: ${HOUSE_SYSTEMS.join(", ")} (aliases like "whole sign" also work).`);
|
|
76
80
|
const ZODIACS = [
|
|
77
81
|
"tropical", "sidereal:lahiri", "sidereal:fagan_bradley",
|
|
78
82
|
"sidereal:krishnamurti", "sidereal:raman", "sidereal:yukteshwar",
|
|
@@ -105,6 +109,7 @@ function accuracyPayload() {
|
|
|
105
109
|
catch { /* optional, ships with the repo but maybe not the tarball */ }
|
|
106
110
|
return (_accuracy = { swiss, jpl });
|
|
107
111
|
}
|
|
112
|
+
// The seven classical planets: all analytic, so always present in a chart.
|
|
108
113
|
const TRADITIONAL = ["sun", "moon", "mercury", "venus", "mars", "jupiter", "saturn"];
|
|
109
114
|
const GLOSSARY = {
|
|
110
115
|
aspects: Object.fromEntries(Object.entries(ASPECTS).map(([k, deg]) => [k, { degrees: deg, default_orb: DEFAULT_ORBS[k] ?? null }])),
|
|
@@ -138,46 +143,54 @@ function isoFromJd(jd) {
|
|
|
138
143
|
return new Date((jd - 2440587.5) * 86400000).toISOString().slice(0, 19) + "Z";
|
|
139
144
|
}
|
|
140
145
|
function chartPayload(engine, iso, lat, lon, hs, zodiac = "tropical") {
|
|
146
|
+
const reqHs = normalizeHouseSystem(hs);
|
|
141
147
|
const d = new Date(iso);
|
|
142
148
|
const jd = jdFromIso(iso);
|
|
143
|
-
const c = engine.chart(d.getUTCFullYear(), d.getUTCMonth() + 1, d.getUTCDate(), d.getUTCHours(), d.getUTCMinutes(), d.getUTCSeconds(), lat, lon, { houseSystem:
|
|
149
|
+
const c = engine.chart(d.getUTCFullYear(), d.getUTCMonth() + 1, d.getUTCDate(), d.getUTCHours(), d.getUTCMinutes(), d.getUTCSeconds(), lat, lon, { houseSystem: reqHs, zodiac });
|
|
144
150
|
const cusps = c.cusps;
|
|
145
|
-
const houseOf = (bl) => {
|
|
146
|
-
for (let i = 0; i < 12; i++) {
|
|
147
|
-
const a = cusps[i];
|
|
148
|
-
const b = cusps[(i + 1) % 12];
|
|
149
|
-
if (mod(bl - a, 360) < mod(b - a, 360))
|
|
150
|
-
return i + 1;
|
|
151
|
-
}
|
|
152
|
-
return 12;
|
|
153
|
-
};
|
|
154
151
|
const bodies = {};
|
|
155
152
|
for (const b of BODIES) {
|
|
156
153
|
const p = c.bodies[b];
|
|
154
|
+
// Outside its fitted range at this date (reported in c.unavailable); skip it
|
|
155
|
+
// rather than dereferencing an absent position.
|
|
156
|
+
if (!p)
|
|
157
|
+
continue;
|
|
157
158
|
// solar phase: nearness to the Sun by ecliptic longitude (cazimi within
|
|
158
159
|
// 17', combust within 8.5deg, under the beams within 15deg). Omitted when
|
|
159
160
|
// the body is far from the Sun (and always for the Sun itself).
|
|
160
161
|
const sp = solarPhase(engine, b, jd, zodiac);
|
|
162
|
+
// house + essential dignities come straight from the engine's ChartBody;
|
|
163
|
+
// dignity is omitted when peregrine (and for bodies without rulerships) to
|
|
164
|
+
// stay token-frugal, like rx/solar.
|
|
161
165
|
bodies[b] = {
|
|
162
|
-
lon: r2(p.lon), pos: fmt(p.lon), house:
|
|
163
|
-
...(p.retrograde ? { rx: true } : {}),
|
|
166
|
+
lon: r2(p.lon), pos: fmt(p.lon), house: p.house,
|
|
167
|
+
...(p.retrograde ? { rx: true } : {}),
|
|
168
|
+
...(p.dignities.length ? { dignity: p.dignities } : {}),
|
|
169
|
+
speed: r2(p.speed),
|
|
164
170
|
...(sp ? { solar: sp } : {}),
|
|
165
171
|
};
|
|
166
172
|
}
|
|
167
173
|
return {
|
|
168
174
|
utc: iso, houses: c.houseSystem,
|
|
169
175
|
...(zodiac !== "tropical" ? { zodiac } : {}),
|
|
170
|
-
...(c.houseSystem !==
|
|
176
|
+
...(c.houseSystem !== reqHs ? { houses_requested: reqHs, houses_fallback_reason: `${reqHs} undefined above polar circles` } : {}),
|
|
171
177
|
bodies,
|
|
172
178
|
angles: { asc: r2(c.angles.asc), ascPos: fmt(c.angles.asc), mc: r2(c.angles.mc), mcPos: fmt(c.angles.mc) },
|
|
173
179
|
cusps: cusps.map(r2),
|
|
180
|
+
...(c.unavailable.length ? { unavailable: c.unavailable } : {}),
|
|
174
181
|
// Engine Aspect objects ({a, b, aspect, orb}) plus an applying/separating
|
|
175
182
|
// phase from the two bodies' longitude speeds. The extra key is additive, so
|
|
176
183
|
// the payload still feeds caelus-wheel's <ChartWheel> without adaptation.
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
184
|
+
// Aspects only ever reference bodies present in the chart (the engine omits
|
|
185
|
+
// out-of-range ones before pairing), so these lookups are non-null.
|
|
186
|
+
aspects: c.aspects.map((a) => {
|
|
187
|
+
const ba = c.bodies[a.a];
|
|
188
|
+
const bb = c.bodies[a.b];
|
|
189
|
+
return {
|
|
190
|
+
...a,
|
|
191
|
+
phase: aspectPhase(ba.lon, ba.speed, bb.lon, bb.speed, ASPECTS[a.aspect]),
|
|
192
|
+
};
|
|
193
|
+
}),
|
|
181
194
|
};
|
|
182
195
|
}
|
|
183
196
|
const text = (obj) => ({ content: [{ type: "text", text: JSON.stringify(obj) }] });
|
|
@@ -221,6 +234,7 @@ const chartResult = (payload) => ({
|
|
|
221
234
|
const bodyOut = z.object({
|
|
222
235
|
lon: z.number(), pos: z.string(), house: z.number().int().min(1).max(12),
|
|
223
236
|
speed: z.number(), rx: z.boolean().optional(),
|
|
237
|
+
dignity: z.array(z.enum(["domicile", "exaltation", "detriment", "fall"])).optional(),
|
|
224
238
|
solar: z.enum(["cazimi", "combust", "under_beams"]).optional(),
|
|
225
239
|
});
|
|
226
240
|
const aspectName = z.enum(["conjunction", "sextile", "square", "trine", "opposition"]);
|
|
@@ -239,6 +253,7 @@ export const chartOut = z.object({
|
|
|
239
253
|
angles: z.object({ asc: z.number(), ascPos: z.string(), mc: z.number(), mcPos: z.string() }),
|
|
240
254
|
cusps: z.array(z.number()).length(12),
|
|
241
255
|
aspects: z.array(aspectOut),
|
|
256
|
+
unavailable: z.array(z.string()).optional(),
|
|
242
257
|
});
|
|
243
258
|
export const transitsOut = z.object({
|
|
244
259
|
transit_utc: z.string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "caelus-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"mcpName": "io.github.heavyblotto/caelus-mcp",
|
|
5
5
|
"description": "MCP server for caelus chart computation.",
|
|
6
6
|
"type": "module",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
17
17
|
"zod": "^3.24.0",
|
|
18
|
-
"caelus": "^0.
|
|
18
|
+
"caelus": "^0.15.0"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"ajv": "^8.17.1"
|