@roxyapi/sdk 1.2.26 → 1.2.28

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.
@@ -143,6 +143,57 @@ export type NatalChartResponse = {
143
143
  */
144
144
  interpretation: string;
145
145
  }>;
146
+ /**
147
+ * Detected multi-planet aspect configurations (Grand Trine, Kite, T-Square, Grand Cross, Yod, Mystic Rectangle, Stellium). Grand Cross suppresses contained T-Squares, Kite suppresses underlying Grand Trine.
148
+ */
149
+ patterns?: Array<{
150
+ /**
151
+ * Pattern kind identifier. GRAND_TRINE (3 trines, harmonious flow), KITE (Grand Trine with a focal outlet planet), T_SQUARE (opposition with squared apex, growth engine), GRAND_CROSS (4 planets in 2 oppositions and 4 squares, peak tension), YOD (Finger of Fate, fated adjustment), MYSTIC_RECTANGLE (oppositions softened by trines and sextiles), STELLIUM (3+ planets clustered in a sign or 10-degree arc).
152
+ */
153
+ kind: 'GRAND_TRINE' | 'KITE' | 'T_SQUARE' | 'GRAND_CROSS' | 'YOD' | 'MYSTIC_RECTANGLE' | 'STELLIUM';
154
+ /**
155
+ * Human-readable name of the configuration as used in astrological literature.
156
+ */
157
+ name: string;
158
+ /**
159
+ * Participating bodies in canonical order. For Kite, T-Square, and Yod the apex planet appears first.
160
+ */
161
+ planets: Array<string>;
162
+ /**
163
+ * Focal planet for Kite, T-Square, and Yod patterns. Receives the released energy of the configuration and is the recommended integration point.
164
+ */
165
+ apex?: string;
166
+ /**
167
+ * Dominant element when the pattern is element-coherent (Grand Trine, Kite). Reported lowercase. Absent for patterns whose meaning does not pivot on element.
168
+ */
169
+ element?: 'fire' | 'earth' | 'air' | 'water';
170
+ /**
171
+ * Dominant modality for tension-based patterns (T-Square, Grand Cross). Cardinal initiates, Fixed sustains, Mutable adapts.
172
+ */
173
+ modality?: 'cardinal' | 'fixed' | 'mutable';
174
+ /**
175
+ * True if the pattern is out-of-sign (one or more planets in a neighboring element or modality). Dissociate patterns are still valid but operate with weakened thematic coherence.
176
+ */
177
+ dissociate?: boolean;
178
+ /**
179
+ * Tightness score (0-100) derived from the average orb tightness across all defining aspects. Higher means closer to exact and stronger thematic expression.
180
+ */
181
+ tightness: number;
182
+ /**
183
+ * Concise one-line interpretation naming the participating planets and theme. Localized to the requested language via the lang query parameter (defaults to English).
184
+ */
185
+ interpretation: string;
186
+ /**
187
+ * Stable template identifier used to render the interpretation. Useful for clients that wish to swap in a custom narrative template while preserving the structured variables.
188
+ */
189
+ interpretationKey: string;
190
+ /**
191
+ * Variables that were interpolated into the interpretation template. Names already resolved to the requested language where appropriate.
192
+ */
193
+ interpretationVars: {
194
+ [key: string]: string;
195
+ };
196
+ }>;
146
197
  /**
147
198
  * Aspect pattern analysis showing the balance of harmonious vs challenging energies in the chart.
148
199
  */
@@ -202,6 +253,44 @@ export type NatalChartResponse = {
202
253
  */
203
254
  longitude: number;
204
255
  };
256
+ /**
257
+ * Part of Fortune (Lot of Fortune). A point derived from the Ascendant and the two luminaries that marks an area of ease, vitality, and material wellbeing in the chart.
258
+ */
259
+ partOfFortune: {
260
+ /**
261
+ * Zodiac sign holding the Part of Fortune.
262
+ */
263
+ sign: string;
264
+ /**
265
+ * Degree within the Part of Fortune sign (0-29.999).
266
+ */
267
+ degree: number;
268
+ /**
269
+ * Absolute ecliptic longitude of the Part of Fortune (0-360).
270
+ */
271
+ longitude: number;
272
+ /**
273
+ * Chart sect used for the calculation. Day (diurnal) when the Sun is above the horizon, night (nocturnal) when below. Day charts use Ascendant plus Moon minus Sun, night charts use Ascendant plus Sun minus Moon.
274
+ */
275
+ sect: 'day' | 'night';
276
+ };
277
+ /**
278
+ * Vertex. The western intersection of the prime vertical with the ecliptic, often read as a point of fated encounters and turning-point relationships. The opposite point is the Anti-Vertex.
279
+ */
280
+ vertex: {
281
+ /**
282
+ * Zodiac sign holding the Vertex.
283
+ */
284
+ sign: string;
285
+ /**
286
+ * Degree within the Vertex sign (0-29.999).
287
+ */
288
+ degree: number;
289
+ /**
290
+ * Absolute ecliptic longitude of the Vertex (0-360).
291
+ */
292
+ longitude: number;
293
+ };
205
294
  /**
206
295
  * Chart summary with dominant element, modality, retrograde planets, and distribution analysis.
207
296
  */
@@ -436,6 +525,57 @@ export type AspectsResponse = {
436
525
  nature: string;
437
526
  };
438
527
  }>;
528
+ /**
529
+ * Detected multi-planet aspect configurations (Grand Trine, Kite, T-Square, Grand Cross, Yod, Mystic Rectangle, Stellium).
530
+ */
531
+ patterns?: Array<{
532
+ /**
533
+ * Pattern kind identifier. GRAND_TRINE (3 trines, harmonious flow), KITE (Grand Trine with a focal outlet planet), T_SQUARE (opposition with squared apex, growth engine), GRAND_CROSS (4 planets in 2 oppositions and 4 squares, peak tension), YOD (Finger of Fate, fated adjustment), MYSTIC_RECTANGLE (oppositions softened by trines and sextiles), STELLIUM (3+ planets clustered in a sign or 10-degree arc).
534
+ */
535
+ kind: 'GRAND_TRINE' | 'KITE' | 'T_SQUARE' | 'GRAND_CROSS' | 'YOD' | 'MYSTIC_RECTANGLE' | 'STELLIUM';
536
+ /**
537
+ * Human-readable name of the configuration as used in astrological literature.
538
+ */
539
+ name: string;
540
+ /**
541
+ * Participating bodies in canonical order. For Kite, T-Square, and Yod the apex planet appears first.
542
+ */
543
+ planets: Array<string>;
544
+ /**
545
+ * Focal planet for Kite, T-Square, and Yod patterns. Receives the released energy of the configuration and is the recommended integration point.
546
+ */
547
+ apex?: string;
548
+ /**
549
+ * Dominant element when the pattern is element-coherent (Grand Trine, Kite). Reported lowercase. Absent for patterns whose meaning does not pivot on element.
550
+ */
551
+ element?: 'fire' | 'earth' | 'air' | 'water';
552
+ /**
553
+ * Dominant modality for tension-based patterns (T-Square, Grand Cross). Cardinal initiates, Fixed sustains, Mutable adapts.
554
+ */
555
+ modality?: 'cardinal' | 'fixed' | 'mutable';
556
+ /**
557
+ * True if the pattern is out-of-sign (one or more planets in a neighboring element or modality). Dissociate patterns are still valid but operate with weakened thematic coherence.
558
+ */
559
+ dissociate?: boolean;
560
+ /**
561
+ * Tightness score (0-100) derived from the average orb tightness across all defining aspects. Higher means closer to exact and stronger thematic expression.
562
+ */
563
+ tightness: number;
564
+ /**
565
+ * Concise one-line interpretation naming the participating planets and theme. Localized to the requested language via the lang query parameter (defaults to English).
566
+ */
567
+ interpretation: string;
568
+ /**
569
+ * Stable template identifier used to render the interpretation. Useful for clients that wish to swap in a custom narrative template while preserving the structured variables.
570
+ */
571
+ interpretationKey: string;
572
+ /**
573
+ * Variables that were interpolated into the interpretation template. Names already resolved to the requested language where appropriate.
574
+ */
575
+ interpretationVars: {
576
+ [key: string]: string;
577
+ };
578
+ }>;
439
579
  /**
440
580
  * Aspect summary with counts by nature and type.
441
581
  */
@@ -486,6 +626,98 @@ export type AspectsRequest = {
486
626
  */
487
627
  aspectTypes?: Array<string>;
488
628
  };
629
+ export type AspectPatternsResponse = {
630
+ /**
631
+ * All aspect patterns detected in the chart, in detection order: Grand Cross first, then Kite, Grand Trine, T-Square, Yod, Mystic Rectangle, Stellium. Patterns absorbed by a higher-priority detection (T-Squares inside a Grand Cross, Grand Trines absorbed by a Kite) are not reported separately.
632
+ */
633
+ patterns: Array<{
634
+ /**
635
+ * Pattern kind identifier. GRAND_TRINE (3 trines, harmonious flow), KITE (Grand Trine with a focal outlet planet), T_SQUARE (opposition with squared apex, growth engine), GRAND_CROSS (4 planets in 2 oppositions and 4 squares, peak tension), YOD (Finger of Fate, fated adjustment), MYSTIC_RECTANGLE (oppositions softened by trines and sextiles), STELLIUM (3+ planets clustered in a sign or 10-degree arc).
636
+ */
637
+ kind: 'GRAND_TRINE' | 'KITE' | 'T_SQUARE' | 'GRAND_CROSS' | 'YOD' | 'MYSTIC_RECTANGLE' | 'STELLIUM';
638
+ /**
639
+ * Human-readable name of the configuration as used in astrological literature.
640
+ */
641
+ name: string;
642
+ /**
643
+ * Participating bodies in canonical order. For Kite, T-Square, and Yod the apex planet appears first.
644
+ */
645
+ planets: Array<string>;
646
+ /**
647
+ * Focal planet for Kite, T-Square, and Yod patterns. Receives the released energy of the configuration and is the recommended integration point.
648
+ */
649
+ apex?: string;
650
+ /**
651
+ * Dominant element when the pattern is element-coherent (Grand Trine, Kite). Reported lowercase. Absent for patterns whose meaning does not pivot on element.
652
+ */
653
+ element?: 'fire' | 'earth' | 'air' | 'water';
654
+ /**
655
+ * Dominant modality for tension-based patterns (T-Square, Grand Cross). Cardinal initiates, Fixed sustains, Mutable adapts.
656
+ */
657
+ modality?: 'cardinal' | 'fixed' | 'mutable';
658
+ /**
659
+ * True if the pattern is out-of-sign (one or more planets in a neighboring element or modality). Dissociate patterns are still valid but operate with weakened thematic coherence.
660
+ */
661
+ dissociate?: boolean;
662
+ /**
663
+ * Tightness score (0-100) derived from the average orb tightness across all defining aspects. Higher means closer to exact and stronger thematic expression.
664
+ */
665
+ tightness: number;
666
+ /**
667
+ * Concise one-line interpretation naming the participating planets and theme. Localized to the requested language via the lang query parameter (defaults to English).
668
+ */
669
+ interpretation: string;
670
+ /**
671
+ * Stable template identifier used to render the interpretation. Useful for clients that wish to swap in a custom narrative template while preserving the structured variables.
672
+ */
673
+ interpretationKey: string;
674
+ /**
675
+ * Variables that were interpolated into the interpretation template. Names already resolved to the requested language where appropriate.
676
+ */
677
+ interpretationVars: {
678
+ [key: string]: string;
679
+ };
680
+ }>;
681
+ /**
682
+ * Total number of detected aspect patterns in this chart.
683
+ */
684
+ total: number;
685
+ /**
686
+ * Echo of the options used for this detection run. Useful for reproducibility and for downstream UI display.
687
+ */
688
+ options: {
689
+ /**
690
+ * Whether the strict (Pontopia-style) orb budget was used. False uses industry-standard orbs (8 for major aspects, 9 for square, 6 for sextile, 3 for quincunx).
691
+ */
692
+ strictOrbs: boolean;
693
+ /**
694
+ * Optional bodies included beyond the default Sun-Pluto set. Empty means classical 10-planet detection only.
695
+ */
696
+ include: Array<'chiron' | 'northNode'>;
697
+ };
698
+ };
699
+ export type AspectPatternsRequest = {
700
+ /**
701
+ * Birth date in YYYY-MM-DD format. Determines planetary positions for the specific calendar day.
702
+ */
703
+ date: string;
704
+ /**
705
+ * Birth time in 24-hour HH:MM:SS format. Determines the Ascendant (rising sign) and house cusps. Use 12:00:00 if unknown.
706
+ */
707
+ time: string;
708
+ /**
709
+ * Birth location latitude in decimal degrees (-90 to 90). Positive = North, negative = South.
710
+ */
711
+ latitude: number;
712
+ /**
713
+ * Birth location longitude in decimal degrees (-180 to 180). Positive = East, negative = West.
714
+ */
715
+ longitude: number;
716
+ /**
717
+ * Timezone: decimal hours from UTC (e.g. -5 for EST, 5.5 for IST) OR IANA name (e.g. "America/New_York", "Asia/Kolkata"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly.
718
+ */
719
+ timezone: number | string;
720
+ };
489
721
  export type TransitsResponse = {
490
722
  /**
491
723
  * Date of the transit calculation (YYYY-MM-DD).
@@ -674,13 +906,58 @@ export type BirthChartResponse = {
674
906
  * Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
675
907
  */
676
908
  key: number;
909
+ /**
910
+ * Vimshottari ruling planet of this nakshatra. One of the nine grahas (Ketu, Venus, Sun, Moon, Mars, Rahu, Jupiter, Saturn, Mercury). Drives the dasha sequence and the nakshatra qualities.
911
+ */
912
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
677
913
  };
678
914
  /**
679
915
  * True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
680
916
  */
681
917
  isRetrograde: boolean;
918
+ /**
919
+ * Bhava (house) number 1-12, counted whole-sign from the Lagna (house 1 is the Lagna rashi). Present on the D1 birth chart; divisional charts (navamsa, varga) omit it.
920
+ */
921
+ house?: number;
922
+ /**
923
+ * Baladi avastha, the planetary age-state set by the graha degree within its sign: Bala (infant), Kumara (child), Yuva (adult, strongest results), Vriddha (old), Mrita (dead, weakest). Bands run forward in odd signs and reversed in even signs. D1 birth chart only.
924
+ */
925
+ awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
682
926
  }>;
683
927
  };
928
+ /**
929
+ * Twelve classical yogas detected against this chart: Gajakesari (three-rule parashara definition), Sunapha, Anapha, Dhurdhura, Kemadruma, Chandra Mangala, Budha-Aditya, and the five Pancha Mahapurusha (Ruchaka, Bhadra, Hamsa, Malavya, Sasa). Each entry carries an `id` (matches `GET /yoga/{id}` for full glossary lookup), a `present` boolean, and classical-text `evidence` for the rule that triggered or failed.
930
+ */
931
+ yogas?: Array<{
932
+ /**
933
+ * Glossary id (lowercase, kebab-case) matching an entry in the 300-entry planetary-yoga catalog. Use with GET /yoga/{id} to retrieve the full glossary text.
934
+ */
935
+ id: string;
936
+ /**
937
+ * Classical Sanskrit name of the yoga as referenced in BPHS (Brihat Parashara Hora Shastra), Phaladeepika, and B.V. Raman *Three Hundred Important Combinations*.
938
+ */
939
+ name: string;
940
+ /**
941
+ * Brief classical formation rule. Identifies the planetary placement, lordship, dignity, or aspect pattern required for the yoga to form.
942
+ */
943
+ description: string;
944
+ /**
945
+ * Classical phala (life-effect) description of the yoga when present, sourced from the parashari and phaladeepika tradition.
946
+ */
947
+ result: string;
948
+ /**
949
+ * Overall nature. Auspicious yogas (Pancha Mahapurusha, Gajakesari) bestow benefits; inauspicious yogas (Kemadruma) indicate challenges; Both denotes context-dependent effects.
950
+ */
951
+ quality: 'Positive' | 'Negative' | 'Both';
952
+ /**
953
+ * True if every classical condition for the yoga is satisfied by the given chart. False if any rule fails, including "almost-present" cases where dignity is met but kendra/aspect is not.
954
+ */
955
+ present: boolean;
956
+ /**
957
+ * Human-readable rationale naming the specific rule that triggered or failed the detection, including planetary positions, dignity, kendrādhipati status, lordship, or malefic drishti.
958
+ */
959
+ evidence?: string;
960
+ }>;
684
961
  /**
685
962
  * Quick lookup of all planet positions keyed by planet name. Contains Sun, Moon, Mars, Mercury, Jupiter, Venus, Saturn, Rahu, Ketu, and Lagna (Ascendant).
686
963
  */
@@ -714,11 +991,23 @@ export type BirthChartResponse = {
714
991
  * Nakshatra sequence number (1-27) in zodiac order starting from Ashwini. Used for Tara Bala compatibility and dasha calculations.
715
992
  */
716
993
  key: number;
994
+ /**
995
+ * Vimshottari ruling planet of this nakshatra. One of the nine grahas (Ketu, Venus, Sun, Moon, Mars, Rahu, Jupiter, Saturn, Mercury). Drives the dasha sequence and the nakshatra qualities.
996
+ */
997
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
717
998
  };
718
999
  /**
719
1000
  * True if the planet is in retrograde motion (appears to move backward through the zodiac). Retrograde planets carry intensified or internalized significations in Vedic interpretation.
720
1001
  */
721
1002
  isRetrograde: boolean;
1003
+ /**
1004
+ * Bhava (house) number 1-12, counted whole-sign from the Lagna (house 1 is the Lagna rashi; Lagna itself is house 1). Present on the D1 birth chart; divisional charts omit it.
1005
+ */
1006
+ house?: number;
1007
+ /**
1008
+ * Baladi avastha, the planetary age-state set by the graha degree within its sign: Bala (infant), Kumara (child), Yuva (adult, strongest results), Vriddha (old), Mrita (dead, weakest). Bands run forward in odd signs and reversed in even signs. D1 birth chart only.
1009
+ */
1010
+ awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
722
1011
  };
723
1012
  };
724
1013
  };
@@ -782,13 +1071,72 @@ export type NavamsaResponse = {
782
1071
  * Nakshatra sequence number (1-27) in zodiac order starting from Ashwini. Used for Tara Bala compatibility and dasha calculations.
783
1072
  */
784
1073
  key: number;
1074
+ /**
1075
+ * Vimshottari ruling planet of this nakshatra. One of the nine grahas (Ketu, Venus, Sun, Moon, Mars, Rahu, Jupiter, Saturn, Mercury). Carried over from the D1 nakshatra.
1076
+ */
1077
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
785
1078
  };
786
1079
  /**
787
1080
  * True if the planet is in retrograde motion (appears to move backward through the zodiac). Retrograde planets carry intensified or internalized significations in Vedic interpretation.
788
1081
  */
789
1082
  isRetrograde: boolean;
1083
+ /**
1084
+ * Bhava (house) number 1-12 in the Navamsa chart, counted whole-sign from the D9 Lagna. This is the Navamsa-specific house and differs from the D1 birth-chart house.
1085
+ */
1086
+ house?: number;
790
1087
  };
791
1088
  };
1089
+ /**
1090
+ * One of the 12 navamsa rashi-house buckets (aries shown; taurus through pisces follow the identical shape). Each lists the planets placed in that sign.
1091
+ */
1092
+ aries: {
1093
+ /**
1094
+ * Zodiac sign name in lowercase.
1095
+ */
1096
+ rashi: string;
1097
+ /**
1098
+ * Planets placed in this navamsa sign.
1099
+ */
1100
+ signs: Array<{
1101
+ /**
1102
+ * Planet (graha) placed in this navamsa sign.
1103
+ */
1104
+ graha: string;
1105
+ /**
1106
+ * Original sidereal longitude in degrees (0-360), same as the D1 birth chart. Preserved for cross-chart reference.
1107
+ */
1108
+ longitude: number;
1109
+ /**
1110
+ * Nakshatra (lunar mansion) data for this planet, carried over from the D1 chart.
1111
+ */
1112
+ nakshatra: {
1113
+ /**
1114
+ * Nakshatra (lunar mansion) the planet occupies.
1115
+ */
1116
+ name: string;
1117
+ /**
1118
+ * Nakshatra pada (quarter, 1-4).
1119
+ */
1120
+ pada: number;
1121
+ /**
1122
+ * Nakshatra index in the zodiac sequence starting from Ashwini.
1123
+ */
1124
+ key: number;
1125
+ /**
1126
+ * Vimshottari ruling planet of this nakshatra.
1127
+ */
1128
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
1129
+ };
1130
+ /**
1131
+ * True if the planet is in retrograde motion.
1132
+ */
1133
+ isRetrograde: boolean;
1134
+ /**
1135
+ * Bhava (house) number 1-12 in the Navamsa chart, counted whole-sign from the D9 Lagna.
1136
+ */
1137
+ house?: number;
1138
+ }>;
1139
+ };
792
1140
  [key: string]: unknown;
793
1141
  };
794
1142
  /**
@@ -885,13 +1233,72 @@ export type DivisionalChartResponse = {
885
1233
  * Nakshatra sequence number (1-27) in zodiac order starting from Ashwini. Used for Tara Bala compatibility and dasha calculations.
886
1234
  */
887
1235
  key: number;
1236
+ /**
1237
+ * Vimshottari ruling planet of this nakshatra. One of the nine grahas (Ketu, Venus, Sun, Moon, Mars, Rahu, Jupiter, Saturn, Mercury). Carried over from the D1 nakshatra.
1238
+ */
1239
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
888
1240
  };
889
1241
  /**
890
1242
  * True if the planet is in retrograde motion (appears to move backward through the zodiac). Retrograde planets carry intensified or internalized significations in Vedic interpretation.
891
1243
  */
892
1244
  isRetrograde: boolean;
1245
+ /**
1246
+ * Bhava (house) number 1-12 in this divisional chart, counted whole-sign from the divisional Lagna. Specific to this varga and differs from the D1 birth-chart house.
1247
+ */
1248
+ house?: number;
893
1249
  };
894
1250
  };
1251
+ /**
1252
+ * One of the 12 divisional rashi-house buckets (aries shown; taurus through pisces follow the identical shape). Each lists the planets placed in that sign.
1253
+ */
1254
+ aries: {
1255
+ /**
1256
+ * Zodiac sign name in lowercase.
1257
+ */
1258
+ rashi: string;
1259
+ /**
1260
+ * Planets placed in this divisional sign.
1261
+ */
1262
+ signs: Array<{
1263
+ /**
1264
+ * Planet (graha) placed in this divisional sign.
1265
+ */
1266
+ graha: string;
1267
+ /**
1268
+ * Original sidereal longitude in degrees (0-360), same as the D1 birth chart. Preserved for cross-chart reference.
1269
+ */
1270
+ longitude: number;
1271
+ /**
1272
+ * Nakshatra (lunar mansion) data for this planet, carried over from the D1 chart.
1273
+ */
1274
+ nakshatra: {
1275
+ /**
1276
+ * Nakshatra (lunar mansion) the planet occupies.
1277
+ */
1278
+ name: string;
1279
+ /**
1280
+ * Nakshatra pada (quarter, 1-4).
1281
+ */
1282
+ pada: number;
1283
+ /**
1284
+ * Nakshatra index in the zodiac sequence starting from Ashwini.
1285
+ */
1286
+ key: number;
1287
+ /**
1288
+ * Vimshottari ruling planet of this nakshatra.
1289
+ */
1290
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
1291
+ };
1292
+ /**
1293
+ * True if the planet is in retrograde motion.
1294
+ */
1295
+ isRetrograde: boolean;
1296
+ /**
1297
+ * Bhava (house) number 1-12 in this divisional chart, counted whole-sign from the divisional Lagna.
1298
+ */
1299
+ house?: number;
1300
+ }>;
1301
+ };
895
1302
  [key: string]: unknown;
896
1303
  };
897
1304
  /**
@@ -1346,6 +1753,77 @@ export type SadhesatiRequest = {
1346
1753
  */
1347
1754
  timezone?: number | string;
1348
1755
  };
1756
+ export type YogaDetectResponse = {
1757
+ /**
1758
+ * Array of 12 detected yogas. Every entry carries a present boolean; filter on present === true for active yogas. Evidence text names the rule that triggered or failed.
1759
+ */
1760
+ yogas: Array<{
1761
+ /**
1762
+ * Glossary id (lowercase, kebab-case) matching an entry in the 300-entry planetary-yoga catalog. Use with GET /yoga/{id} to retrieve the full glossary text.
1763
+ */
1764
+ id: string;
1765
+ /**
1766
+ * Classical Sanskrit name of the yoga as referenced in BPHS (Brihat Parashara Hora Shastra), Phaladeepika, and B.V. Raman *Three Hundred Important Combinations*.
1767
+ */
1768
+ name: string;
1769
+ /**
1770
+ * Brief classical formation rule. Identifies the planetary placement, lordship, dignity, or aspect pattern required for the yoga to form.
1771
+ */
1772
+ description: string;
1773
+ /**
1774
+ * Classical phala (life-effect) description of the yoga when present, sourced from the parashari and phaladeepika tradition.
1775
+ */
1776
+ result: string;
1777
+ /**
1778
+ * Overall nature. Auspicious yogas (Pancha Mahapurusha, Gajakesari) bestow benefits; inauspicious yogas (Kemadruma) indicate challenges; Both denotes context-dependent effects.
1779
+ */
1780
+ quality: 'Positive' | 'Negative' | 'Both';
1781
+ /**
1782
+ * True if every classical condition for the yoga is satisfied by the given chart. False if any rule fails, including "almost-present" cases where dignity is met but kendra/aspect is not.
1783
+ */
1784
+ present: boolean;
1785
+ /**
1786
+ * Human-readable rationale naming the specific rule that triggered or failed the detection, including planetary positions, dignity, kendrādhipati status, lordship, or malefic drishti.
1787
+ */
1788
+ evidence?: string;
1789
+ }>;
1790
+ /**
1791
+ * Count of yogas where present === true in this chart. Range 0-12.
1792
+ */
1793
+ total: number;
1794
+ /**
1795
+ * Echo of the resolved birth data used for detection. Timezone is the numeric offset that the chart engine consumed (IANA names are resolved upstream).
1796
+ */
1797
+ birthDetails: {
1798
+ date: string;
1799
+ time: string;
1800
+ latitude: number;
1801
+ longitude: number;
1802
+ timezone: number;
1803
+ };
1804
+ };
1805
+ export type YogaDetectRequest = {
1806
+ /**
1807
+ * Birth date in YYYY-MM-DD format. Date determines planetary positions and nakshatra calculations for Vedic kundli (janam patri). Accurate birth date is essential for dashas, yoga calculations, and divisional charts (vargas).
1808
+ */
1809
+ date: string;
1810
+ /**
1811
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions - changes every ~2 hours. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
1812
+ */
1813
+ time: string;
1814
+ /**
1815
+ * Birth location latitude in decimal degrees. Location determines local sidereal time for Lagna calculation and affects bhava (house) cusps. Example: Delhi 28.6139, Mumbai 19.0760, Kathmandu 27.7172.
1816
+ */
1817
+ latitude: number;
1818
+ /**
1819
+ * Birth location longitude in decimal degrees. Affects local time calculations and ayanamsha adjustments. Example: Delhi 77.2090, Mumbai 72.8777, Kathmandu 85.3240.
1820
+ */
1821
+ longitude: number;
1822
+ /**
1823
+ * Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
1824
+ */
1825
+ timezone?: number | string;
1826
+ };
1349
1827
  export type KpAyanamsaResponse = {
1350
1828
  /**
1351
1829
  * Date for which ayanamsa was calculated
@@ -5209,24 +5687,144 @@ export type PostAstrologyHousesData = {
5209
5687
  /**
5210
5688
  * Birth time in 24-hour HH:MM:SS format. Time is ESSENTIAL for accurate house cusps - even minutes matter. The Ascendant (1st house cusp) changes roughly every 4 minutes. Without accurate time, house placements will be incorrect.
5211
5689
  */
5212
- time: string;
5690
+ time: string;
5691
+ /**
5692
+ * Birth location latitude in decimal degrees. Location determines the local horizon and meridian, which are fundamental to house division. Higher latitudes cause more distortion in time-based systems like Placidus.
5693
+ */
5694
+ latitude: number;
5695
+ /**
5696
+ * Birth location longitude in decimal degrees. Affects local time and horizon calculations for house cusps.
5697
+ */
5698
+ longitude: number;
5699
+ /**
5700
+ * Decimal hours from UTC (e.g. -5 for EST, 5.5 for IST, 9 for JST) OR IANA name (e.g. "America/New_York"). IANA resolved to the DST-correct offset for the chart date.
5701
+ */
5702
+ timezone: number | string;
5703
+ /**
5704
+ * House system for dividing ecliptic into 12 houses. Placidus (most popular) uses time, Whole Sign (ancient) uses signs, Equal divides from Ascendant. Use "all" to compare all 4 systems side-by-side for educational purposes.
5705
+ */
5706
+ houseSystem?: 'placidus' | 'whole-sign' | 'equal' | 'koch' | 'all';
5707
+ };
5708
+ path?: never;
5709
+ query?: {
5710
+ /**
5711
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
5712
+ */
5713
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
5714
+ };
5715
+ url: '/astrology/houses';
5716
+ };
5717
+ export type PostAstrologyHousesErrors = {
5718
+ /**
5719
+ * Validation error. `issues[]` lists every failed field.
5720
+ */
5721
+ 400: {
5722
+ /**
5723
+ * First issue summary.
5724
+ */
5725
+ error: string;
5726
+ code: 'validation_error';
5727
+ /**
5728
+ * Every validation failure. Use this to rebuild a valid request.
5729
+ */
5730
+ issues: Array<{
5731
+ /**
5732
+ * Dot-separated field path, or "(root)" for top-level.
5733
+ */
5734
+ path: string;
5735
+ message: string;
5736
+ /**
5737
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
5738
+ */
5739
+ code?: string;
5740
+ /**
5741
+ * Expected type for invalid_type.
5742
+ */
5743
+ expected?: string;
5744
+ /**
5745
+ * Minimum bound for too_small issues.
5746
+ */
5747
+ minimum?: number | string;
5748
+ /**
5749
+ * Maximum bound for too_big issues.
5750
+ */
5751
+ maximum?: number | string;
5752
+ inclusive?: boolean;
5753
+ /**
5754
+ * Format name for string issues (regex, email, url, uuid).
5755
+ */
5756
+ format?: string;
5757
+ /**
5758
+ * Regex pattern when format is regex.
5759
+ */
5760
+ pattern?: string;
5761
+ }>;
5762
+ };
5763
+ /**
5764
+ * Invalid or missing API key
5765
+ */
5766
+ 401: {
5767
+ /**
5768
+ * Human-readable error message. May change wording.
5769
+ */
5770
+ error: string;
5771
+ /**
5772
+ * Machine-readable error code. Stable identifier.
5773
+ */
5774
+ code: string;
5775
+ };
5776
+ /**
5777
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
5778
+ */
5779
+ 405: {
5780
+ error: string;
5781
+ code: 'method_not_allowed';
5782
+ /**
5783
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
5784
+ */
5785
+ allow: Array<string>;
5786
+ /**
5787
+ * Link to the product page for this domain.
5788
+ */
5789
+ docs?: string;
5790
+ };
5791
+ /**
5792
+ * Monthly rate limit exceeded
5793
+ */
5794
+ 429: {
5213
5795
  /**
5214
- * Birth location latitude in decimal degrees. Location determines the local horizon and meridian, which are fundamental to house division. Higher latitudes cause more distortion in time-based systems like Placidus.
5796
+ * Human-readable error message. May change wording.
5215
5797
  */
5216
- latitude: number;
5798
+ error: string;
5217
5799
  /**
5218
- * Birth location longitude in decimal degrees. Affects local time and horizon calculations for house cusps.
5800
+ * Machine-readable error code. Stable identifier.
5219
5801
  */
5220
- longitude: number;
5802
+ code: string;
5803
+ };
5804
+ /**
5805
+ * Internal server error
5806
+ */
5807
+ 500: {
5221
5808
  /**
5222
- * Decimal hours from UTC (e.g. -5 for EST, 5.5 for IST, 9 for JST) OR IANA name (e.g. "America/New_York"). IANA resolved to the DST-correct offset for the chart date.
5809
+ * Human-readable error message. May change wording.
5223
5810
  */
5224
- timezone: number | string;
5811
+ error: string;
5225
5812
  /**
5226
- * House system for dividing ecliptic into 12 houses. Placidus (most popular) uses time, Whole Sign (ancient) uses signs, Equal divides from Ascendant. Use "all" to compare all 4 systems side-by-side for educational purposes.
5813
+ * Machine-readable error code. Stable identifier.
5227
5814
  */
5228
- houseSystem?: 'placidus' | 'whole-sign' | 'equal' | 'koch' | 'all';
5815
+ code: string;
5229
5816
  };
5817
+ };
5818
+ export type PostAstrologyHousesError = PostAstrologyHousesErrors[keyof PostAstrologyHousesErrors];
5819
+ export type PostAstrologyHousesResponses = {
5820
+ /**
5821
+ * House cusps calculated successfully
5822
+ */
5823
+ 200: HousesResponse;
5824
+ };
5825
+ export type PostAstrologyHousesResponse = PostAstrologyHousesResponses[keyof PostAstrologyHousesResponses];
5826
+ export type PostAstrologyAspectsData = {
5827
+ body?: AspectsRequest;
5230
5828
  path?: never;
5231
5829
  query?: {
5232
5830
  /**
@@ -5234,9 +5832,9 @@ export type PostAstrologyHousesData = {
5234
5832
  */
5235
5833
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
5236
5834
  };
5237
- url: '/astrology/houses';
5835
+ url: '/astrology/aspects';
5238
5836
  };
5239
- export type PostAstrologyHousesErrors = {
5837
+ export type PostAstrologyAspectsErrors = {
5240
5838
  /**
5241
5839
  * Validation error. `issues[]` lists every failed field.
5242
5840
  */
@@ -5337,26 +5935,34 @@ export type PostAstrologyHousesErrors = {
5337
5935
  code: string;
5338
5936
  };
5339
5937
  };
5340
- export type PostAstrologyHousesError = PostAstrologyHousesErrors[keyof PostAstrologyHousesErrors];
5341
- export type PostAstrologyHousesResponses = {
5938
+ export type PostAstrologyAspectsError = PostAstrologyAspectsErrors[keyof PostAstrologyAspectsErrors];
5939
+ export type PostAstrologyAspectsResponses = {
5342
5940
  /**
5343
- * House cusps calculated successfully
5941
+ * Aspects calculated successfully
5344
5942
  */
5345
- 200: HousesResponse;
5943
+ 200: AspectsResponse;
5346
5944
  };
5347
- export type PostAstrologyHousesResponse = PostAstrologyHousesResponses[keyof PostAstrologyHousesResponses];
5348
- export type PostAstrologyAspectsData = {
5349
- body?: AspectsRequest;
5945
+ export type PostAstrologyAspectsResponse = PostAstrologyAspectsResponses[keyof PostAstrologyAspectsResponses];
5946
+ export type PostAstrologyAspectPatternsData = {
5947
+ body?: AspectPatternsRequest;
5350
5948
  path?: never;
5351
5949
  query?: {
5352
5950
  /**
5353
5951
  * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
5354
5952
  */
5355
5953
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
5954
+ /**
5955
+ * Use tighter orbs (Pontopia "optimal" recommendations). Truthy values (true, 1, yes, on; case-insensitive) narrow trine to 5, square to 5, sextile to 4, quincunx to 2. Defaults to false (industry-standard orbs).
5956
+ */
5957
+ strictOrbs?: string;
5958
+ /**
5959
+ * Comma-separated list of optional bodies to include beyond the classical 10 planets. Valid tokens (case-insensitive): chiron, northNode (also accepts north_node, north-node, northnode). Empty by default.
5960
+ */
5961
+ include?: string;
5356
5962
  };
5357
- url: '/astrology/aspects';
5963
+ url: '/astrology/aspect-patterns';
5358
5964
  };
5359
- export type PostAstrologyAspectsErrors = {
5965
+ export type PostAstrologyAspectPatternsErrors = {
5360
5966
  /**
5361
5967
  * Validation error. `issues[]` lists every failed field.
5362
5968
  */
@@ -5457,14 +6063,14 @@ export type PostAstrologyAspectsErrors = {
5457
6063
  code: string;
5458
6064
  };
5459
6065
  };
5460
- export type PostAstrologyAspectsError = PostAstrologyAspectsErrors[keyof PostAstrologyAspectsErrors];
5461
- export type PostAstrologyAspectsResponses = {
6066
+ export type PostAstrologyAspectPatternsError = PostAstrologyAspectPatternsErrors[keyof PostAstrologyAspectPatternsErrors];
6067
+ export type PostAstrologyAspectPatternsResponses = {
5462
6068
  /**
5463
- * Aspects calculated successfully
6069
+ * Aspect patterns detected successfully
5464
6070
  */
5465
- 200: AspectsResponse;
6071
+ 200: AspectPatternsResponse;
5466
6072
  };
5467
- export type PostAstrologyAspectsResponse = PostAstrologyAspectsResponses[keyof PostAstrologyAspectsResponses];
6073
+ export type PostAstrologyAspectPatternsResponse = PostAstrologyAspectPatternsResponses[keyof PostAstrologyAspectPatternsResponses];
5468
6074
  export type PostAstrologyTransitsData = {
5469
6075
  body?: TransitsRequest;
5470
6076
  path?: never;
@@ -6257,6 +6863,44 @@ export type PostAstrologySolarReturnResponses = {
6257
6863
  */
6258
6864
  interpretation: 'harmonious' | 'challenging' | 'neutral';
6259
6865
  }>;
6866
+ /**
6867
+ * Part of Fortune (Lot of Fortune). A point derived from the Ascendant and the two luminaries that marks an area of ease, vitality, and material wellbeing in the chart.
6868
+ */
6869
+ partOfFortune: {
6870
+ /**
6871
+ * Zodiac sign holding the Part of Fortune.
6872
+ */
6873
+ sign: string;
6874
+ /**
6875
+ * Degree within the Part of Fortune sign (0-29.999).
6876
+ */
6877
+ degree: number;
6878
+ /**
6879
+ * Absolute ecliptic longitude of the Part of Fortune (0-360).
6880
+ */
6881
+ longitude: number;
6882
+ /**
6883
+ * Chart sect used for the calculation. Day (diurnal) when the Sun is above the horizon, night (nocturnal) when below. Day charts use Ascendant plus Moon minus Sun, night charts use Ascendant plus Sun minus Moon.
6884
+ */
6885
+ sect: 'day' | 'night';
6886
+ };
6887
+ /**
6888
+ * Vertex. The western intersection of the prime vertical with the ecliptic, often read as a point of fated encounters and turning-point relationships. The opposite point is the Anti-Vertex.
6889
+ */
6890
+ vertex: {
6891
+ /**
6892
+ * Zodiac sign holding the Vertex.
6893
+ */
6894
+ sign: string;
6895
+ /**
6896
+ * Degree within the Vertex sign (0-29.999).
6897
+ */
6898
+ degree: number;
6899
+ /**
6900
+ * Absolute ecliptic longitude of the Vertex (0-360).
6901
+ */
6902
+ longitude: number;
6903
+ };
6260
6904
  };
6261
6905
  /**
6262
6906
  * Original natal Sun position that the transiting Sun returns to. This conjunction defines the solar return moment.
@@ -6595,6 +7239,44 @@ export type PostAstrologyLunarReturnResponses = {
6595
7239
  */
6596
7240
  interpretation: 'harmonious' | 'challenging' | 'neutral';
6597
7241
  }>;
7242
+ /**
7243
+ * Part of Fortune (Lot of Fortune). A point derived from the Ascendant and the two luminaries that marks an area of ease, vitality, and material wellbeing in the chart.
7244
+ */
7245
+ partOfFortune: {
7246
+ /**
7247
+ * Zodiac sign holding the Part of Fortune.
7248
+ */
7249
+ sign: string;
7250
+ /**
7251
+ * Degree within the Part of Fortune sign (0-29.999).
7252
+ */
7253
+ degree: number;
7254
+ /**
7255
+ * Absolute ecliptic longitude of the Part of Fortune (0-360).
7256
+ */
7257
+ longitude: number;
7258
+ /**
7259
+ * Chart sect used for the calculation. Day (diurnal) when the Sun is above the horizon, night (nocturnal) when below. Day charts use Ascendant plus Moon minus Sun, night charts use Ascendant plus Sun minus Moon.
7260
+ */
7261
+ sect: 'day' | 'night';
7262
+ };
7263
+ /**
7264
+ * Vertex. The western intersection of the prime vertical with the ecliptic, often read as a point of fated encounters and turning-point relationships. The opposite point is the Anti-Vertex.
7265
+ */
7266
+ vertex: {
7267
+ /**
7268
+ * Zodiac sign holding the Vertex.
7269
+ */
7270
+ sign: string;
7271
+ /**
7272
+ * Degree within the Vertex sign (0-29.999).
7273
+ */
7274
+ degree: number;
7275
+ /**
7276
+ * Absolute ecliptic longitude of the Vertex (0-360).
7277
+ */
7278
+ longitude: number;
7279
+ };
6598
7280
  };
6599
7281
  /**
6600
7282
  * Original natal Moon position that the transiting Moon returns to. This conjunction defines the lunar return moment.
@@ -8417,6 +9099,44 @@ export type PostAstrologyPlanetaryReturnsResponses = {
8417
9099
  */
8418
9100
  interpretation: 'harmonious' | 'challenging' | 'neutral';
8419
9101
  }>;
9102
+ /**
9103
+ * Part of Fortune (Lot of Fortune). A point derived from the Ascendant and the two luminaries that marks an area of ease, vitality, and material wellbeing in the chart.
9104
+ */
9105
+ partOfFortune: {
9106
+ /**
9107
+ * Zodiac sign holding the Part of Fortune.
9108
+ */
9109
+ sign: string;
9110
+ /**
9111
+ * Degree within the Part of Fortune sign (0-29.999).
9112
+ */
9113
+ degree: number;
9114
+ /**
9115
+ * Absolute ecliptic longitude of the Part of Fortune (0-360).
9116
+ */
9117
+ longitude: number;
9118
+ /**
9119
+ * Chart sect used for the calculation. Day (diurnal) when the Sun is above the horizon, night (nocturnal) when below. Day charts use Ascendant plus Moon minus Sun, night charts use Ascendant plus Sun minus Moon.
9120
+ */
9121
+ sect: 'day' | 'night';
9122
+ };
9123
+ /**
9124
+ * Vertex. The western intersection of the prime vertical with the ecliptic, often read as a point of fated encounters and turning-point relationships. The opposite point is the Anti-Vertex.
9125
+ */
9126
+ vertex: {
9127
+ /**
9128
+ * Zodiac sign holding the Vertex.
9129
+ */
9130
+ sign: string;
9131
+ /**
9132
+ * Degree within the Vertex sign (0-29.999).
9133
+ */
9134
+ degree: number;
9135
+ /**
9136
+ * Absolute ecliptic longitude of the Vertex (0-360).
9137
+ */
9138
+ longitude: number;
9139
+ };
8420
9140
  };
8421
9141
  /**
8422
9142
  * Original natal planet position that defines the return. The transiting planet conjuncts this longitude to trigger the return.
@@ -11855,6 +12575,126 @@ export type GetVedicAstrologyYogaByIdResponses = {
11855
12575
  };
11856
12576
  };
11857
12577
  export type GetVedicAstrologyYogaByIdResponse = GetVedicAstrologyYogaByIdResponses[keyof GetVedicAstrologyYogaByIdResponses];
12578
+ export type PostVedicAstrologyYogaDetectData = {
12579
+ body?: YogaDetectRequest;
12580
+ path?: never;
12581
+ query?: {
12582
+ /**
12583
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
12584
+ */
12585
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
12586
+ };
12587
+ url: '/vedic-astrology/yoga/detect';
12588
+ };
12589
+ export type PostVedicAstrologyYogaDetectErrors = {
12590
+ /**
12591
+ * Validation error. `issues[]` lists every failed field.
12592
+ */
12593
+ 400: {
12594
+ /**
12595
+ * First issue summary.
12596
+ */
12597
+ error: string;
12598
+ code: 'validation_error';
12599
+ /**
12600
+ * Every validation failure. Use this to rebuild a valid request.
12601
+ */
12602
+ issues: Array<{
12603
+ /**
12604
+ * Dot-separated field path, or "(root)" for top-level.
12605
+ */
12606
+ path: string;
12607
+ message: string;
12608
+ /**
12609
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
12610
+ */
12611
+ code?: string;
12612
+ /**
12613
+ * Expected type for invalid_type.
12614
+ */
12615
+ expected?: string;
12616
+ /**
12617
+ * Minimum bound for too_small issues.
12618
+ */
12619
+ minimum?: number | string;
12620
+ /**
12621
+ * Maximum bound for too_big issues.
12622
+ */
12623
+ maximum?: number | string;
12624
+ inclusive?: boolean;
12625
+ /**
12626
+ * Format name for string issues (regex, email, url, uuid).
12627
+ */
12628
+ format?: string;
12629
+ /**
12630
+ * Regex pattern when format is regex.
12631
+ */
12632
+ pattern?: string;
12633
+ }>;
12634
+ };
12635
+ /**
12636
+ * Invalid or missing API key
12637
+ */
12638
+ 401: {
12639
+ /**
12640
+ * Human-readable error message. May change wording.
12641
+ */
12642
+ error: string;
12643
+ /**
12644
+ * Machine-readable error code. Stable identifier.
12645
+ */
12646
+ code: string;
12647
+ };
12648
+ /**
12649
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
12650
+ */
12651
+ 405: {
12652
+ error: string;
12653
+ code: 'method_not_allowed';
12654
+ /**
12655
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
12656
+ */
12657
+ allow: Array<string>;
12658
+ /**
12659
+ * Link to the product page for this domain.
12660
+ */
12661
+ docs?: string;
12662
+ };
12663
+ /**
12664
+ * Monthly rate limit exceeded
12665
+ */
12666
+ 429: {
12667
+ /**
12668
+ * Human-readable error message. May change wording.
12669
+ */
12670
+ error: string;
12671
+ /**
12672
+ * Machine-readable error code. Stable identifier.
12673
+ */
12674
+ code: string;
12675
+ };
12676
+ /**
12677
+ * Internal server error
12678
+ */
12679
+ 500: {
12680
+ /**
12681
+ * Human-readable error message. May change wording.
12682
+ */
12683
+ error: string;
12684
+ /**
12685
+ * Machine-readable error code. Stable identifier.
12686
+ */
12687
+ code: string;
12688
+ };
12689
+ };
12690
+ export type PostVedicAstrologyYogaDetectError = PostVedicAstrologyYogaDetectErrors[keyof PostVedicAstrologyYogaDetectErrors];
12691
+ export type PostVedicAstrologyYogaDetectResponses = {
12692
+ /**
12693
+ * List of 12 classical yogas with present/absent verdicts and classical-text evidence.
12694
+ */
12695
+ 200: YogaDetectResponse;
12696
+ };
12697
+ export type PostVedicAstrologyYogaDetectResponse = PostVedicAstrologyYogaDetectResponses[keyof PostVedicAstrologyYogaDetectResponses];
11858
12698
  export type GetVedicAstrologyKpAyanamsaData = {
11859
12699
  body?: never;
11860
12700
  path?: never;