-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.ts
More file actions
22938 lines (22937 loc) · 829 KB
/
api.ts
File metadata and controls
22938 lines (22937 loc) · 829 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* This file was auto-generated by openapi-typescript.
* Do not make direct changes to the file.
*/
export type paths = {
"/api/v3/data/now": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
/**
* Current Time Data
* @description Gets astrological data for the current UTC time.
*/
get: operations["get_now_api_v3_data_now_get"];
put?: never;
post?: never;
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/data/positions": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Planetary Positions
* @description 📊 **Planetary Positions Calculator** - Get precise celestial body positions
*
* **Perfect for:**
* - 🎯 Quick planetary position lookups
* - 📱 Mobile app backends requiring fast data
* - 🔄 Real-time astrological applications
* - 📊 Data analysis and research
*
* **What you get:**
* - **Precise positions** for all requested celestial bodies
* - **Zodiac signs** (3-letter codes: Ari, Tau, Gem, etc.)
* - **Degrees within signs** (0.0 to 29.99)
* - **Absolute longitude** (0-360° full zodiac position)
* - **Retrograde status** for all planets
* - **Planetary speed** (degrees per day)
*
* **Supported celestial bodies:**
* - **Planets**: Sun, Moon, Mercury, Venus, Mars, Jupiter, Saturn, Uranus, Neptune, Pluto
* - **Lunar Nodes**: Mean_Node, True_Node, Mean_South_Node, True_South_Node
* - **Angles**: Ascendant, Medium_Coeli, Descendant, Imum_Coeli
* - **Points**: Mean_Lilith, True_Lilith, Pars_Fortunae, Vertex
* - **Asteroids**: Chiron, Ceres, Pallas, Juno, Vesta
*
* **Location handling:**
* - Provide city + country_code for automatic geocoding
* - Or use exact latitude/longitude coordinates
* - Timezone automatically detected or specify manually
*
* **Response time:** ~100ms | **Accuracy:** Swiss Ephemeris precision
* - ✅ **City geocoding** - just provide city name, we handle coordinates & timezone
*
* Perfect for applications needing precise astronomical data without interpretations.
*/
post: operations["planetary_positions"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/data/house-cusps": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* House Cusps
* @description 🏠 **House Cusps Calculator** - Precise astrological house boundaries
*
* **Perfect for:**
* - 🎯 House system comparisons and analysis
* - 📱 Chart calculation backends
* - 🔄 Real-time house position tracking
* - 📊 Astrological research and education
*
* **What you get:**
* - **All 12 house cusps** with precise degree positions
* - **Zodiac signs** for each house cusp (3-letter codes: Ari, Tau, Gem, etc.)
* - **Degrees within signs** (0.0 to 29.99)
* - **Absolute longitude** (0-360° full zodiac position)
* - **House system flexibility** - 23+ systems supported
*
* **Supported house systems:**
* - **P** (Placidus) - Most popular modern system
* - **W** (Whole Sign) - Traditional/Hellenistic system
* - **K** (Koch), **E** (Equal), **C** (Campanus)
* - Plus 18 additional systems - see `/api/v3/glossary/house-systems`
*
* **Location handling:**
* - Provide city + country_code for automatic geocoding
* - Or use exact latitude/longitude coordinates
* - Timezone automatically detected or specify manually
*
* **Note:** House cusps are location-dependent and require precise birth coordinates.
* This endpoint provides the foundation for accurate house-based interpretations.
*
* **Response time:** ~120ms | **Accuracy:** Swiss Ephemeris precision
*/
post: operations["get_house_cusps_api_v3_data_house_cusps_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/data/aspects": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Aspects
* @description 🔗 **Planetary Aspects Calculator** - Precise angular relationships between celestial bodies
*
* **Perfect for:**
* - 🎯 Chart interpretation and analysis
* - 📱 Astrology app aspect displays
* - 🔄 Real-time aspect tracking
* - 📊 Astrological research and education
*
* **What you get:**
* - **Major aspects** between all selected celestial bodies
* - **Precise orb measurements** (exact angular distance from perfect aspect)
* - **Aspect types** (conjunction, opposition, trine, square, sextile, etc.)
* - **Applying/separating status** for dynamic interpretation
* - **Configurable precision** for orb values (0-6 decimal places)
*
* **Supported aspects:**
* - **Conjunction** (0°) - Unity and blending of energies
* - **Opposition** (180°) - Tension and awareness
* - **Trine** (120°) - Harmony and flow
* - **Square** (90°) - Challenge and action
* - **Sextile** (60°) - Opportunity and cooperation
* - **Plus minor aspects** - quincunx, semi-square, sesquiquadrate
*
* **Celestial bodies included:**
* - **All planets** including South Nodes (Mean_South_Node, True_South_Node)
* - **Lunar Nodes** and special points
* - **Flexible point selection** - choose which bodies to include
*
* **Response time:** ~150ms | **Accuracy:** Swiss Ephemeris precision
*/
post: operations["get_aspects_api_v3_data_aspects_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/data/lunar-metrics": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Lunar Metrics
* @description 🌙 **Comprehensive Lunar Analysis** - Detailed Moon phase and cycle information
*
* **Perfect for:**
* - 🌙 Lunar timing and planning
* - 📱 Moon phase apps and calendars
* - 🎯 Electional astrology (choosing optimal timing)
* - 📊 Agricultural and natural cycle tracking
*
* **What you get:**
* - **Current Moon phase** (New, Waxing Crescent, First Quarter, etc.)
* - **Phase percentage** (0-100% illumination)
* - **Days since New Moon** (lunar day count)
* - **Next phase dates** (upcoming New Moon, Full Moon, etc.)
* - **Lunar mansion/nakshatra** (traditional lunar divisions)
* - **Void of Course periods** (when Moon makes no major aspects)
*
* **Lunar cycle information:**
* - **Synodic month** progress (29.5 day cycle)
* - **Sidereal month** progress (27.3 day cycle)
* - **Anomalistic month** (perigee to perigee)
* - **Tropical month** (return to same zodiac degree)
*
* **Response time:** ~150ms | **Accuracy:** Swiss Ephemeris precision
*/
post: operations["get_lunar_metrics_api_v3_data_lunar_metrics_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/data/global-positions": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Global Positions
* @description 🌍 **Global Planetary Positions** - Location-independent ephemeris data
*
* **Perfect for:**
* - 📊 Daily ephemeris table generation
* - 🗄️ Caching planetary positions for multiple locations
* - 📱 Astrology apps requiring global reference data
* - 🔄 Background data synchronization
*
* **What you get:**
* - **Precise positions** for all requested celestial bodies
* - **Zodiac signs** (3-letter codes: Ari, Tau, Gem, etc.)
* - **Degrees within signs** (0.0 to 29.99)
* - **Absolute longitude** (0-360° full zodiac position)
* - **Retrograde status** for all planets
* - **Planetary speed** (degrees per day)
*
* **Key features:**
* - **No location required** - uses universal reference (0°N, 0°W)
* - **Both zodiac types** - Tropical and Sidereal calculations
* - **Flexible precision** - 0-8 decimal places
* - **Extensive body support** - planets, asteroids, nodes, special points
*
* **Excluded points:** Location-dependent angles (Ascendant, MC, Vertex) are not included
* since no birth location is provided.
*
* **Use case:** Cache these positions once per day, then calculate house placements
* locally for different birth locations to optimize API usage.
*
* **Response time:** ~80ms | **Accuracy:** Swiss Ephemeris precision
*/
post: operations["get_global_positions_api_v3_data_global_positions_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/data/positions/enhanced": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Enhanced Positions
* @description 🏛️ **Enhanced Planetary Positions with Traditional Astrology (v3.0.0)**
*
* Returns planetary positions enriched with traditional Hellenistic astrology data:
*
* **Traditional Enhancements:**
* - ✅ **Essential Dignities**: Domicile, exaltation, triplicity, term, decan
* - ✅ **Essential Debilities**: Exile (detriment), fall
* - ✅ **Sect Analysis**: Day/night chart with planetary sect preferences
* - ✅ **Planetary Conditions**: Combustion, cazimi, under the beams
* - ✅ **Houses of Joy**: Traditional planetary jubilation
* - ✅ **Dispositor Chains**: Complete dispositor analysis
* - ✅ **Mutual Receptions**: Planets in mutual reception
* - ✅ **Traditional Points**: Part of Fortune, Part of Spirit, etc.
* - ✅ **About to Change Sign**: 24-hour sign change predictions
*
* **Perfect for:**
* - Traditional astrology applications
* - Dignity-based chart analysis
* - Educational astrology tools
* - Professional astrology software
*
* **Backward Compatible:** All original position data included plus traditional enhancements.
*/
post: operations["get_enhanced_positions_api_v3_data_positions_enhanced_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/data/aspects/enhanced": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Enhanced Aspects
* @description 🏛️ **Enhanced Aspects with Reception Analysis (v3.0.0)**
*
* Returns aspects enriched with traditional reception analysis:
*
* **Traditional Enhancements:**
* - ✅ **Reception Quality**: Mutual and single receptions between planets
* - ✅ **Dignity Context**: Both planets' dignity status in aspects
* - ✅ **Aspect Strength**: Weighted by planetary dignities and orbs
* - ✅ **Traditional Interpretation**: Reception-based aspect meanings
*
* **Reception Types:**
* - **Mutual Reception**: Planets rule each other's signs
* - **Single Reception**: One planet receives the other
* - **Reception by Dignity**: Domicile, exaltation, triplicity, term
*
* **Aspect Strength Calculation:**
* - Orb tightness (closer = stronger)
* - Planetary dignity status
* - Reception quality bonus
* - Traditional aspect hierarchy
*
* **Perfect for:**
* - Traditional aspect interpretation
* - Reception-based counseling
* - Advanced astrological analysis
* - Educational applications
*/
post: operations["get_enhanced_aspects_api_v3_data_aspects_enhanced_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/data/lunar-metrics/enhanced": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Enhanced Lunar Metrics
* @description 🏛️ **Enhanced Lunar Metrics with Traditional Analysis (v3.0.0)**
*
* Returns lunar data enriched with traditional techniques:
*
* **Traditional Enhancements:**
* - ✅ **Void of Course**: Moon makes no more aspects in current sign
* - ✅ **Elongation**: Angular distance from Sun (traditional phase calculation)
* - ✅ **Traditional Phase Meanings**: Hellenistic lunar phase interpretations
* - ✅ **Lunar Dignities**: Moon's current essential dignities
* - ✅ **Next Sign Change**: When Moon changes sign with dignity implications
* - ✅ **Next Lunar Aspect**: Upcoming lunar aspects with timing
*
* **Void of Course Analysis:**
* - Determines if Moon is void of course
* - Calculates duration until next sign
* - Traditional timing implications
*
* **Enhanced Phase Data:**
* - Elongation degrees (0-180°)
* - Increasing/decreasing light
* - Traditional phase meanings
* - Optimal timing guidance
*
* **Perfect for:**
* - Electional astrology (timing)
* - Traditional lunar planning
* - Void of course tracking
* - Lunar gardening/timing apps
*/
post: operations["get_enhanced_lunar_metrics_api_v3_data_lunar_metrics_enhanced_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/charts/natal": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Chart Natal
* @description 🗺️ **Complete Natal Chart Generator** - Full birth chart analysis
*
* **Perfect for:**
* - 🎯 Professional astrological consultations
* - 📱 Comprehensive astrology apps
* - 📊 Complete personality analysis
* - 🎓 Educational astrology tools
*
* **What you get:**
* - **All planetary positions** with houses and signs
* - **House cusps** in your chosen house system (23 systems supported)
* - **Major aspects** between all planets (conjunction, opposition, trine, square, sextile)
* - **Angle calculations** (Ascendant, Midheaven, Descendant, IC)
* - **Lunar nodes** and special points
* - **Retrograde indicators** for all planets
*
* **House systems supported:**
* - **P** (Placidus) - Most popular modern system
* - **W** (Whole Sign) - Traditional/Hellenistic system
* - **K** (Koch), **E** (Equal), **C** (Campanus)
* - Plus 18 additional systems - see `/api/v3/glossary/house-systems`
*
* **Precision options:**
* - Configurable decimal precision (0-6 places)
* - Swiss Ephemeris accuracy
* - Automatic timezone handling
*
* **Response time:** ~200ms | **Accuracy:** Professional grade
*/
post: operations["chart_natal"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/charts/synastry": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Chart Synastry
* @description 💕 **Relationship Synastry Analysis** - Compatibility between two people
*
* **Perfect for:**
* - 💑 Relationship compatibility analysis
* - 👥 Business partnership evaluation
* - 👨👩👧👦 Family dynamics understanding
* - 🤝 Friendship compatibility
*
* **What you get:**
* - **Cross-aspects** between both people's planets
* - **Compatibility scores** for different life areas
* - **Planetary overlays** showing how each person's planets fall in the other's houses
* - **Composite midpoints** for relationship dynamics
* - **Strength ratings** for each aspect connection
*
* **Analysis includes:**
* - **Romantic compatibility** (Venus-Mars connections)
* - **Communication style** (Mercury aspects)
* - **Emotional connection** (Moon aspects)
* - **Life goals alignment** (Sun aspects)
* - **Karmic connections** (Node aspects)
*
* **Response time:** ~300ms | **Accuracy:** Professional relationship analysis
*/
post: operations["get_synastry_chart_api_v3_charts_synastry_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/charts/composite": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Composite Chart
* @description 🌟 **Composite Chart Calculator** - Creates a unified chart representing the relationship itself
*
* **Perfect for:**
* - 💑 **Relationship analysis** - Understanding the dynamics of partnerships
* - 🎯 **Couples counseling** - Professional relationship guidance
* - 📚 **Astrological education** - Learning composite chart techniques
* - 📱 **Dating apps** - Compatibility analysis features
*
* **What you get:**
* - **Composite planetary positions** - Midpoint calculations between both charts
* - **Composite house cusps** - Relationship-focused house system
* - **Composite aspects** - Internal aspects within the composite chart
* - **Unified chart data** - Single chart representing the relationship energy
*
* **How it works:**
* The composite chart is calculated by finding the mathematical midpoints between corresponding
* planets in both natal charts. This creates a "third chart" that represents the relationship
* itself as a separate entity, showing the combined energies and themes of the partnership.
*
* **Available options:**
* - **House systems** - Placidus (P), Whole Sign (W), Koch (K), Equal (A), and more
* - **Zodiac types** - Tropical (Western) or Sidereal (Vedic)
* - **Active points** - Choose which planets and points to include
* - **Precision** - Decimal places for degree calculations (1-6)
*
* **Response time:** ~400ms | **Content:** Complete composite chart with planetary positions and aspects
*/
post: operations["get_composite_chart_api_v3_charts_composite_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/charts/transit": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Chart Transit
* @description 🔄 **Current Planetary Transits** - How current planets affect your natal chart
*
* **Perfect for:**
* - 🎯 Daily astrological guidance
* - 📅 Timing important decisions
* - 🔮 Understanding current influences
* - 📱 Transit tracking apps
*
* **What you get:**
* - **Transit positions** overlaid on your natal chart
* - **Active aspects** between transiting and natal planets
* - **House overlays** showing where transits are occurring
* - **Aspect strengths** and orb measurements
* - **Timing information** for exact aspects
*
* **Analysis includes:**
* - **Major transits** (Jupiter, Saturn, Uranus, Neptune, Pluto)
* - **Personal transits** (Sun, Moon, Mercury, Venus, Mars)
* - **Nodal transits** for karmic timing
* - **Angular transits** (to Ascendant, Midheaven)
*
* **Response time:** ~250ms | **Accuracy:** Current astronomical positions
*/
post: operations["get_transit_chart_api_v3_charts_transit_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/charts/solar-return": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Chart Solar Return
* @description ☀️ **Solar Return Chart** - Annual birthday chart for yearly forecasting
*
* **Perfect for:**
* - 🎂 Annual birthday readings
* - 📅 Year-ahead planning and forecasting
* - 🎯 Understanding yearly themes and focus
* - 📊 Professional annual consultations
*
* **What you get:**
* - **Solar return chart** calculated for exact Sun return moment
* - **Relocated chart** for current residence (if different from birth)
* - **House emphasis** showing life areas of focus for the year
* - **Planetary aspects** indicating yearly themes
* - **Angular planets** for major yearly influences
*
* **Forecasting insights:**
* - **Career and reputation** (10th house emphasis)
* - **Relationships and partnerships** (7th house focus)
* - **Health and daily routine** (6th house themes)
* - **Home and family** (4th house matters)
* - **Creativity and romance** (5th house activities)
*
* **Technical details:**
* - Calculated for exact moment Sun returns to natal degree
* - Uses current location (relocation astrology)
* - Valid for one solar year (birthday to birthday)
*
* **Response time:** ~300ms | **Accuracy:** Precise solar return timing
*/
post: operations["get_solar_return_chart_api_v3_charts_solar_return_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/charts/lunar-return": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Chart Lunar Return
* @description 🌙 **Lunar Return Chart** - Monthly Moon return for short-term forecasting
*
* **Perfect for:**
* - 🌙 Monthly planning and timing
* - 📅 Short-term emotional cycles
* - 🎯 Understanding monthly themes
* - 📊 Complementing solar return analysis
*
* **What you get:**
* - **Lunar return chart** for exact Moon return to natal position
* - **Monthly emotional themes** and focus areas
* - **Relationship dynamics** for the lunar month
* - **Daily life patterns** and routine changes
* - **Intuitive and psychic cycles**
*
* **Monthly insights:**
* - **Emotional focus** (Moon's house position)
* - **Communication patterns** (Mercury aspects)
* - **Social interactions** (Venus influences)
* - **Energy levels** (Mars placement)
* - **Subconscious patterns** (12th house themes)
*
* **Technical details:**
* - Calculated for exact moment Moon returns to natal degree
* - Occurs approximately every 27.3 days
* - Valid for one sidereal month
* - Uses current location for relocated chart
*
* **Response time:** ~250ms | **Accuracy:** Precise lunar return timing
*/
post: operations["get_lunar_return_chart_api_v3_charts_lunar_return_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/charts/solar-return-transits": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Solar Return Transits
* @description ☀️🔄 **Solar Return Transit Analysis** - Current planetary influences on your yearly chart
*
* **Perfect for:**
* - 🎂 Annual birthday chart transit tracking
* - 📅 Timing major yearly events and decisions
* - 🎯 Understanding current influences within your solar year
* - 📊 Professional annual consultation materials
*
* **What you get:**
* - **Transits to solar return chart** - how current planets affect your yearly forecast
* - **Aspect direction analysis** - applying (forming), separating (dissolving), or exact
* - **Precise timing calculations** - exact moment when aspects become perfect (0° orb)
* - **Transit speed data** - planetary velocity for dynamic interpretation
* - **Orb measurements** - exact angular distance from perfect aspects
*
* **Analysis includes:**
* - **Major yearly transits** (Jupiter, Saturn, Uranus, Neptune, Pluto)
* - **Personal transits** (Sun, Moon, Mercury, Venus, Mars) to solar return positions
* - **Timing precision** for peak influence periods
* - **Dynamic interpretation** based on planetary speeds and directions
*
* **Technical features:**
* - **Aspect direction**: Whether aspect is forming or dissolving
* - **Exact timing**: Precise moment for aspect culmination (when calculable)
* - **Transit speed**: Planet velocity in degrees/day (negative = retrograde)
*
* **Note:** Analyzes transits to your solar return chart (yearly forecast chart).
* Perfect for timing events and understanding influences within your solar year cycle.
*
* **Response time:** ~350ms | **Accuracy:** Swiss Ephemeris precision
*/
post: operations["get_solar_return_transits_api_v3_charts_solar_return_transits_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/charts/lunar-return-transits": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Chart Lunar Return Transits
* @description Calculates exact transits to a lunar return chart over a given period.
*
* Analyzes transits to your lunar return chart (monthly forecast chart).
* Perfect for timing events within your lunar month cycle.
*/
post: operations["get_lunar_return_transits_api_v3_charts_lunar_return_transits_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/charts/progressions": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Chart Progressions
* @description Calculates a progression chart based on the specified type.
*
* Supported progression types:
* - **secondary**: Day-for-a-year progressions (most common)
* - **primary**: Degree-for-a-year (not yet implemented)
* - **tertiary**: Day-for-a-month (not yet implemented)
* - **minor**: Month-for-a-year (not yet implemented)
*/
post: operations["get_progression_chart_api_v3_charts_progressions_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/charts/directions": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Chart Directions
* @description Calculates a direction chart based on the specified type.
*
* Supported direction types:
* - **solar_arc**: All planets move by the progressed Sun's arc
* - **symbolic**: Fixed rate (default 1° = 1 year, customizable)
* - **profection**: 30° = 1 year (not yet implemented)
* - **naibod**: 0.9856° = 1 year (not yet implemented)
*/
post: operations["get_direction_chart_api_v3_charts_directions_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/charts/natal-transits": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Natal Transits
* @description 🔄 **Natal Transit Analysis** - Current planetary influences on your birth chart
*
* **Perfect for:**
* - 🎯 Daily astrological guidance and timing
* - 📅 Planning important decisions and events
* - 🔮 Understanding current life influences
* - 📱 Transit tracking and notification apps
*
* **What you get:**
* - **Current transits to natal chart** - how today's planets affect your birth positions
* - **Aspect direction analysis** - applying (forming), separating (dissolving), or exact
* - **Precise timing calculations** - exact moment when aspects become perfect (0° orb)
* - **Transit speed data** - planetary velocity for dynamic interpretation
* - **Orb measurements** - exact angular distance from perfect aspects
*
* **Analysis includes:**
* - **Major life transits** (Jupiter, Saturn, Uranus, Neptune, Pluto)
* - **Personal daily transits** (Sun, Moon, Mercury, Venus, Mars)
* - **Nodal transits** for karmic timing and life direction
* - **Angular transits** to Ascendant, Midheaven for major life themes
*
* **Technical features:**
* - **Aspect direction**: "applying" (forming), "separating" (dissolving), or "exact"
* - **Exact timing**: ISO datetime when aspect perfects (for close applying aspects)
* - **Transit speed**: Planet speed in degrees/day (negative = retrograde)
*
* **Example response data:**
* ```json
* {
* "date": "2024-01-15",
* "exact_time": "2024-01-15T14:32:00",
* "transiting_planet": "Mars",
* "aspect_type": "trine",
* "stationed_planet": "Sun",
* "orb": 0.75,
* "aspect_direction": "applying",
* "transiting_speed": 0.524
* }
* ```
*
* **Response time:** ~300ms | **Accuracy:** Swiss Ephemeris precision
*/
post: operations["get_natal_transits_api_v3_charts_natal_transits_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/svg/natal": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Get Natal Chart Svg
* @description 🎨 **Natal Chart SVG Generator** - Beautiful visual birth chart
*
* **Perfect for:**
* - 🖼️ Website chart displays
* - 📱 Mobile app visualizations
* - 🖨️ High-quality printable charts
* - 📊 Professional consultation materials
*
* **What you get:**
* - **Scalable vector graphics** (SVG format)
* - **Professional chart wheel** with houses and signs
* - **Planetary symbols** positioned accurately
* - **Aspect lines** connecting related planets
* - **Customizable themes** (light, dark, classic)
*
* **Visual features:**
* - **Clean, readable design** optimized for all sizes
* - **Color-coded elements** for easy interpretation
* - **Traditional symbols** for planets and signs
* - **Precise positioning** based on calculations
* - **Print-ready quality** at any resolution
*
* **Customization options:**
* - Multiple visual themes available
* - Configurable chart elements
* - Adjustable aspect line display
* - Custom color schemes
*
* **Response time:** ~400ms | **Format:** SVG (scalable vector graphics)
*/
post: operations["get_natal_chart_svg_api_v3_svg_natal_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/svg/synastry": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Get Synastry Chart Svg
* @description 💕 **Synastry Chart SVG Generator** - Beautiful relationship compatibility visualization
*
* **Perfect for:**
* - 💑 Relationship counseling materials
* - 📱 Dating app compatibility displays
* - 🖨️ Professional consultation printouts
* - 📊 Relationship analysis presentations
*
* **What you get:**
* - **Dual-ring chart wheel** showing both partners' planets
* - **Cross-aspect lines** connecting compatible/challenging planetary connections
* - **Color-coded aspects** for easy interpretation (harmonious vs. challenging)
* - **Professional symbols** for all planets and zodiac signs
* - **Scalable vector format** - perfect quality at any size
*
* **Visual features:**
* - **Inner ring**: First person's natal chart
* - **Outer ring**: Second person's planetary positions
* - **Aspect lines**: Visual connections between partners' planets
* - **House overlays**: How each person's planets fall in partner's houses
* - **Customizable themes**: Light, dark, or classic color schemes
*
* **Input parameters:**
* - **subject1** - First person's birth data (name + DateTimeLocation)
* - **subject2** - Second person's birth data (name + DateTimeLocation)
* - **options** - Chart customization (house system, theme, aspect display)
*
* **Response time:** ~500ms | **Format:** SVG (scalable vector graphics)
*/
post: operations["get_synastry_chart_svg_api_v3_svg_synastry_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/svg/composite": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Get Composite Chart Svg
* @description 🌟 **Composite Chart SVG Generator** - Visual representation of relationship dynamics
*
* **Perfect for:**
* - 💑 **Relationship visualization** - Beautiful charts for couples
* - 🎯 **Professional presentations** - High-quality graphics for consultations
* - 📚 **Educational materials** - Teaching composite chart techniques
* - 📱 **App integration** - Scalable graphics for any screen size
*
* **What you get:**
* - **Professional chart wheel** - Clean, accurate composite chart visualization
* - **Customizable themes** - Light, dark, and high-contrast options
* - **Multi-language support** - Chart labels in 9 languages
* - **Scalable vector format** - Perfect quality at any size
*
* **Visual features:**
* - **Composite planetary positions** - Midpoint calculations displayed clearly
* - **House divisions** - Relationship-focused house system visualization
* - **Aspect lines** - Internal aspects within the composite chart
* - **Professional styling** - Publication-ready quality
*
* **Input parameters:**
* - **subjects** - Array of two subjects' birth data (name + BirthData)
* - **options** - Chart and output customization options
*
* **Response time:** ~600ms | **Format:** SVG (scalable vector graphics)
*/
post: operations["get_composite_chart_svg_api_v3_svg_composite_post"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/api/v3/svg/transit": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**