@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.
package/src/types.gen.ts CHANGED
@@ -146,6 +146,57 @@ export type NatalChartResponse = {
146
146
  */
147
147
  interpretation: string;
148
148
  }>;
149
+ /**
150
+ * 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.
151
+ */
152
+ patterns?: Array<{
153
+ /**
154
+ * 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).
155
+ */
156
+ kind: 'GRAND_TRINE' | 'KITE' | 'T_SQUARE' | 'GRAND_CROSS' | 'YOD' | 'MYSTIC_RECTANGLE' | 'STELLIUM';
157
+ /**
158
+ * Human-readable name of the configuration as used in astrological literature.
159
+ */
160
+ name: string;
161
+ /**
162
+ * Participating bodies in canonical order. For Kite, T-Square, and Yod the apex planet appears first.
163
+ */
164
+ planets: Array<string>;
165
+ /**
166
+ * Focal planet for Kite, T-Square, and Yod patterns. Receives the released energy of the configuration and is the recommended integration point.
167
+ */
168
+ apex?: string;
169
+ /**
170
+ * Dominant element when the pattern is element-coherent (Grand Trine, Kite). Reported lowercase. Absent for patterns whose meaning does not pivot on element.
171
+ */
172
+ element?: 'fire' | 'earth' | 'air' | 'water';
173
+ /**
174
+ * Dominant modality for tension-based patterns (T-Square, Grand Cross). Cardinal initiates, Fixed sustains, Mutable adapts.
175
+ */
176
+ modality?: 'cardinal' | 'fixed' | 'mutable';
177
+ /**
178
+ * 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.
179
+ */
180
+ dissociate?: boolean;
181
+ /**
182
+ * Tightness score (0-100) derived from the average orb tightness across all defining aspects. Higher means closer to exact and stronger thematic expression.
183
+ */
184
+ tightness: number;
185
+ /**
186
+ * Concise one-line interpretation naming the participating planets and theme. Localized to the requested language via the lang query parameter (defaults to English).
187
+ */
188
+ interpretation: string;
189
+ /**
190
+ * 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.
191
+ */
192
+ interpretationKey: string;
193
+ /**
194
+ * Variables that were interpolated into the interpretation template. Names already resolved to the requested language where appropriate.
195
+ */
196
+ interpretationVars: {
197
+ [key: string]: string;
198
+ };
199
+ }>;
149
200
  /**
150
201
  * Aspect pattern analysis showing the balance of harmonious vs challenging energies in the chart.
151
202
  */
@@ -205,6 +256,44 @@ export type NatalChartResponse = {
205
256
  */
206
257
  longitude: number;
207
258
  };
259
+ /**
260
+ * 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.
261
+ */
262
+ partOfFortune: {
263
+ /**
264
+ * Zodiac sign holding the Part of Fortune.
265
+ */
266
+ sign: string;
267
+ /**
268
+ * Degree within the Part of Fortune sign (0-29.999).
269
+ */
270
+ degree: number;
271
+ /**
272
+ * Absolute ecliptic longitude of the Part of Fortune (0-360).
273
+ */
274
+ longitude: number;
275
+ /**
276
+ * 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.
277
+ */
278
+ sect: 'day' | 'night';
279
+ };
280
+ /**
281
+ * 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.
282
+ */
283
+ vertex: {
284
+ /**
285
+ * Zodiac sign holding the Vertex.
286
+ */
287
+ sign: string;
288
+ /**
289
+ * Degree within the Vertex sign (0-29.999).
290
+ */
291
+ degree: number;
292
+ /**
293
+ * Absolute ecliptic longitude of the Vertex (0-360).
294
+ */
295
+ longitude: number;
296
+ };
208
297
  /**
209
298
  * Chart summary with dominant element, modality, retrograde planets, and distribution analysis.
210
299
  */
@@ -442,6 +531,57 @@ export type AspectsResponse = {
442
531
  nature: string;
443
532
  };
444
533
  }>;
534
+ /**
535
+ * Detected multi-planet aspect configurations (Grand Trine, Kite, T-Square, Grand Cross, Yod, Mystic Rectangle, Stellium).
536
+ */
537
+ patterns?: Array<{
538
+ /**
539
+ * 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).
540
+ */
541
+ kind: 'GRAND_TRINE' | 'KITE' | 'T_SQUARE' | 'GRAND_CROSS' | 'YOD' | 'MYSTIC_RECTANGLE' | 'STELLIUM';
542
+ /**
543
+ * Human-readable name of the configuration as used in astrological literature.
544
+ */
545
+ name: string;
546
+ /**
547
+ * Participating bodies in canonical order. For Kite, T-Square, and Yod the apex planet appears first.
548
+ */
549
+ planets: Array<string>;
550
+ /**
551
+ * Focal planet for Kite, T-Square, and Yod patterns. Receives the released energy of the configuration and is the recommended integration point.
552
+ */
553
+ apex?: string;
554
+ /**
555
+ * Dominant element when the pattern is element-coherent (Grand Trine, Kite). Reported lowercase. Absent for patterns whose meaning does not pivot on element.
556
+ */
557
+ element?: 'fire' | 'earth' | 'air' | 'water';
558
+ /**
559
+ * Dominant modality for tension-based patterns (T-Square, Grand Cross). Cardinal initiates, Fixed sustains, Mutable adapts.
560
+ */
561
+ modality?: 'cardinal' | 'fixed' | 'mutable';
562
+ /**
563
+ * 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.
564
+ */
565
+ dissociate?: boolean;
566
+ /**
567
+ * Tightness score (0-100) derived from the average orb tightness across all defining aspects. Higher means closer to exact and stronger thematic expression.
568
+ */
569
+ tightness: number;
570
+ /**
571
+ * Concise one-line interpretation naming the participating planets and theme. Localized to the requested language via the lang query parameter (defaults to English).
572
+ */
573
+ interpretation: string;
574
+ /**
575
+ * 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.
576
+ */
577
+ interpretationKey: string;
578
+ /**
579
+ * Variables that were interpolated into the interpretation template. Names already resolved to the requested language where appropriate.
580
+ */
581
+ interpretationVars: {
582
+ [key: string]: string;
583
+ };
584
+ }>;
445
585
  /**
446
586
  * Aspect summary with counts by nature and type.
447
587
  */
@@ -494,6 +634,100 @@ export type AspectsRequest = {
494
634
  aspectTypes?: Array<string>;
495
635
  };
496
636
 
637
+ export type AspectPatternsResponse = {
638
+ /**
639
+ * 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.
640
+ */
641
+ patterns: Array<{
642
+ /**
643
+ * 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).
644
+ */
645
+ kind: 'GRAND_TRINE' | 'KITE' | 'T_SQUARE' | 'GRAND_CROSS' | 'YOD' | 'MYSTIC_RECTANGLE' | 'STELLIUM';
646
+ /**
647
+ * Human-readable name of the configuration as used in astrological literature.
648
+ */
649
+ name: string;
650
+ /**
651
+ * Participating bodies in canonical order. For Kite, T-Square, and Yod the apex planet appears first.
652
+ */
653
+ planets: Array<string>;
654
+ /**
655
+ * Focal planet for Kite, T-Square, and Yod patterns. Receives the released energy of the configuration and is the recommended integration point.
656
+ */
657
+ apex?: string;
658
+ /**
659
+ * Dominant element when the pattern is element-coherent (Grand Trine, Kite). Reported lowercase. Absent for patterns whose meaning does not pivot on element.
660
+ */
661
+ element?: 'fire' | 'earth' | 'air' | 'water';
662
+ /**
663
+ * Dominant modality for tension-based patterns (T-Square, Grand Cross). Cardinal initiates, Fixed sustains, Mutable adapts.
664
+ */
665
+ modality?: 'cardinal' | 'fixed' | 'mutable';
666
+ /**
667
+ * 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.
668
+ */
669
+ dissociate?: boolean;
670
+ /**
671
+ * Tightness score (0-100) derived from the average orb tightness across all defining aspects. Higher means closer to exact and stronger thematic expression.
672
+ */
673
+ tightness: number;
674
+ /**
675
+ * Concise one-line interpretation naming the participating planets and theme. Localized to the requested language via the lang query parameter (defaults to English).
676
+ */
677
+ interpretation: string;
678
+ /**
679
+ * 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.
680
+ */
681
+ interpretationKey: string;
682
+ /**
683
+ * Variables that were interpolated into the interpretation template. Names already resolved to the requested language where appropriate.
684
+ */
685
+ interpretationVars: {
686
+ [key: string]: string;
687
+ };
688
+ }>;
689
+ /**
690
+ * Total number of detected aspect patterns in this chart.
691
+ */
692
+ total: number;
693
+ /**
694
+ * Echo of the options used for this detection run. Useful for reproducibility and for downstream UI display.
695
+ */
696
+ options: {
697
+ /**
698
+ * 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).
699
+ */
700
+ strictOrbs: boolean;
701
+ /**
702
+ * Optional bodies included beyond the default Sun-Pluto set. Empty means classical 10-planet detection only.
703
+ */
704
+ include: Array<'chiron' | 'northNode'>;
705
+ };
706
+ };
707
+
708
+ export type AspectPatternsRequest = {
709
+ /**
710
+ * Birth date in YYYY-MM-DD format. Determines planetary positions for the specific calendar day.
711
+ */
712
+ date: string;
713
+ /**
714
+ * Birth time in 24-hour HH:MM:SS format. Determines the Ascendant (rising sign) and house cusps. Use 12:00:00 if unknown.
715
+ */
716
+ time: string;
717
+ /**
718
+ * Birth location latitude in decimal degrees (-90 to 90). Positive = North, negative = South.
719
+ */
720
+ latitude: number;
721
+ /**
722
+ * Birth location longitude in decimal degrees (-180 to 180). Positive = East, negative = West.
723
+ */
724
+ longitude: number;
725
+ /**
726
+ * 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.
727
+ */
728
+ timezone: number | string;
729
+ };
730
+
497
731
  export type TransitsResponse = {
498
732
  /**
499
733
  * Date of the transit calculation (YYYY-MM-DD).
@@ -684,13 +918,58 @@ export type BirthChartResponse = {
684
918
  * Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
685
919
  */
686
920
  key: number;
921
+ /**
922
+ * 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.
923
+ */
924
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
687
925
  };
688
926
  /**
689
927
  * True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
690
928
  */
691
929
  isRetrograde: boolean;
930
+ /**
931
+ * 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.
932
+ */
933
+ house?: number;
934
+ /**
935
+ * 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.
936
+ */
937
+ awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
692
938
  }>;
693
939
  };
940
+ /**
941
+ * 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.
942
+ */
943
+ yogas?: Array<{
944
+ /**
945
+ * 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.
946
+ */
947
+ id: string;
948
+ /**
949
+ * Classical Sanskrit name of the yoga as referenced in BPHS (Brihat Parashara Hora Shastra), Phaladeepika, and B.V. Raman *Three Hundred Important Combinations*.
950
+ */
951
+ name: string;
952
+ /**
953
+ * Brief classical formation rule. Identifies the planetary placement, lordship, dignity, or aspect pattern required for the yoga to form.
954
+ */
955
+ description: string;
956
+ /**
957
+ * Classical phala (life-effect) description of the yoga when present, sourced from the parashari and phaladeepika tradition.
958
+ */
959
+ result: string;
960
+ /**
961
+ * Overall nature. Auspicious yogas (Pancha Mahapurusha, Gajakesari) bestow benefits; inauspicious yogas (Kemadruma) indicate challenges; Both denotes context-dependent effects.
962
+ */
963
+ quality: 'Positive' | 'Negative' | 'Both';
964
+ /**
965
+ * 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.
966
+ */
967
+ present: boolean;
968
+ /**
969
+ * Human-readable rationale naming the specific rule that triggered or failed the detection, including planetary positions, dignity, kendrādhipati status, lordship, or malefic drishti.
970
+ */
971
+ evidence?: string;
972
+ }>;
694
973
  /**
695
974
  * Quick lookup of all planet positions keyed by planet name. Contains Sun, Moon, Mars, Mercury, Jupiter, Venus, Saturn, Rahu, Ketu, and Lagna (Ascendant).
696
975
  */
@@ -724,11 +1003,23 @@ export type BirthChartResponse = {
724
1003
  * Nakshatra sequence number (1-27) in zodiac order starting from Ashwini. Used for Tara Bala compatibility and dasha calculations.
725
1004
  */
726
1005
  key: number;
1006
+ /**
1007
+ * 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.
1008
+ */
1009
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
727
1010
  };
728
1011
  /**
729
1012
  * 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.
730
1013
  */
731
1014
  isRetrograde: boolean;
1015
+ /**
1016
+ * 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.
1017
+ */
1018
+ house?: number;
1019
+ /**
1020
+ * 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.
1021
+ */
1022
+ awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
732
1023
  };
733
1024
  };
734
1025
  };
@@ -794,13 +1085,72 @@ export type NavamsaResponse = {
794
1085
  * Nakshatra sequence number (1-27) in zodiac order starting from Ashwini. Used for Tara Bala compatibility and dasha calculations.
795
1086
  */
796
1087
  key: number;
1088
+ /**
1089
+ * 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.
1090
+ */
1091
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
797
1092
  };
798
1093
  /**
799
1094
  * 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.
800
1095
  */
801
1096
  isRetrograde: boolean;
1097
+ /**
1098
+ * 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.
1099
+ */
1100
+ house?: number;
802
1101
  };
803
1102
  };
1103
+ /**
1104
+ * 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.
1105
+ */
1106
+ aries: {
1107
+ /**
1108
+ * Zodiac sign name in lowercase.
1109
+ */
1110
+ rashi: string;
1111
+ /**
1112
+ * Planets placed in this navamsa sign.
1113
+ */
1114
+ signs: Array<{
1115
+ /**
1116
+ * Planet (graha) placed in this navamsa sign.
1117
+ */
1118
+ graha: string;
1119
+ /**
1120
+ * Original sidereal longitude in degrees (0-360), same as the D1 birth chart. Preserved for cross-chart reference.
1121
+ */
1122
+ longitude: number;
1123
+ /**
1124
+ * Nakshatra (lunar mansion) data for this planet, carried over from the D1 chart.
1125
+ */
1126
+ nakshatra: {
1127
+ /**
1128
+ * Nakshatra (lunar mansion) the planet occupies.
1129
+ */
1130
+ name: string;
1131
+ /**
1132
+ * Nakshatra pada (quarter, 1-4).
1133
+ */
1134
+ pada: number;
1135
+ /**
1136
+ * Nakshatra index in the zodiac sequence starting from Ashwini.
1137
+ */
1138
+ key: number;
1139
+ /**
1140
+ * Vimshottari ruling planet of this nakshatra.
1141
+ */
1142
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
1143
+ };
1144
+ /**
1145
+ * True if the planet is in retrograde motion.
1146
+ */
1147
+ isRetrograde: boolean;
1148
+ /**
1149
+ * Bhava (house) number 1-12 in the Navamsa chart, counted whole-sign from the D9 Lagna.
1150
+ */
1151
+ house?: number;
1152
+ }>;
1153
+ };
804
1154
  [key: string]: unknown;
805
1155
  };
806
1156
  /**
@@ -899,13 +1249,72 @@ export type DivisionalChartResponse = {
899
1249
  * Nakshatra sequence number (1-27) in zodiac order starting from Ashwini. Used for Tara Bala compatibility and dasha calculations.
900
1250
  */
901
1251
  key: number;
1252
+ /**
1253
+ * 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.
1254
+ */
1255
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
902
1256
  };
903
1257
  /**
904
1258
  * 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.
905
1259
  */
906
1260
  isRetrograde: boolean;
1261
+ /**
1262
+ * 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.
1263
+ */
1264
+ house?: number;
907
1265
  };
908
1266
  };
1267
+ /**
1268
+ * 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.
1269
+ */
1270
+ aries: {
1271
+ /**
1272
+ * Zodiac sign name in lowercase.
1273
+ */
1274
+ rashi: string;
1275
+ /**
1276
+ * Planets placed in this divisional sign.
1277
+ */
1278
+ signs: Array<{
1279
+ /**
1280
+ * Planet (graha) placed in this divisional sign.
1281
+ */
1282
+ graha: string;
1283
+ /**
1284
+ * Original sidereal longitude in degrees (0-360), same as the D1 birth chart. Preserved for cross-chart reference.
1285
+ */
1286
+ longitude: number;
1287
+ /**
1288
+ * Nakshatra (lunar mansion) data for this planet, carried over from the D1 chart.
1289
+ */
1290
+ nakshatra: {
1291
+ /**
1292
+ * Nakshatra (lunar mansion) the planet occupies.
1293
+ */
1294
+ name: string;
1295
+ /**
1296
+ * Nakshatra pada (quarter, 1-4).
1297
+ */
1298
+ pada: number;
1299
+ /**
1300
+ * Nakshatra index in the zodiac sequence starting from Ashwini.
1301
+ */
1302
+ key: number;
1303
+ /**
1304
+ * Vimshottari ruling planet of this nakshatra.
1305
+ */
1306
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
1307
+ };
1308
+ /**
1309
+ * True if the planet is in retrograde motion.
1310
+ */
1311
+ isRetrograde: boolean;
1312
+ /**
1313
+ * Bhava (house) number 1-12 in this divisional chart, counted whole-sign from the divisional Lagna.
1314
+ */
1315
+ house?: number;
1316
+ }>;
1317
+ };
909
1318
  [key: string]: unknown;
910
1319
  };
911
1320
  /**
@@ -1372,6 +1781,79 @@ export type SadhesatiRequest = {
1372
1781
  timezone?: number | string;
1373
1782
  };
1374
1783
 
1784
+ export type YogaDetectResponse = {
1785
+ /**
1786
+ * 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.
1787
+ */
1788
+ yogas: Array<{
1789
+ /**
1790
+ * 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.
1791
+ */
1792
+ id: string;
1793
+ /**
1794
+ * Classical Sanskrit name of the yoga as referenced in BPHS (Brihat Parashara Hora Shastra), Phaladeepika, and B.V. Raman *Three Hundred Important Combinations*.
1795
+ */
1796
+ name: string;
1797
+ /**
1798
+ * Brief classical formation rule. Identifies the planetary placement, lordship, dignity, or aspect pattern required for the yoga to form.
1799
+ */
1800
+ description: string;
1801
+ /**
1802
+ * Classical phala (life-effect) description of the yoga when present, sourced from the parashari and phaladeepika tradition.
1803
+ */
1804
+ result: string;
1805
+ /**
1806
+ * Overall nature. Auspicious yogas (Pancha Mahapurusha, Gajakesari) bestow benefits; inauspicious yogas (Kemadruma) indicate challenges; Both denotes context-dependent effects.
1807
+ */
1808
+ quality: 'Positive' | 'Negative' | 'Both';
1809
+ /**
1810
+ * 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.
1811
+ */
1812
+ present: boolean;
1813
+ /**
1814
+ * Human-readable rationale naming the specific rule that triggered or failed the detection, including planetary positions, dignity, kendrādhipati status, lordship, or malefic drishti.
1815
+ */
1816
+ evidence?: string;
1817
+ }>;
1818
+ /**
1819
+ * Count of yogas where present === true in this chart. Range 0-12.
1820
+ */
1821
+ total: number;
1822
+ /**
1823
+ * Echo of the resolved birth data used for detection. Timezone is the numeric offset that the chart engine consumed (IANA names are resolved upstream).
1824
+ */
1825
+ birthDetails: {
1826
+ date: string;
1827
+ time: string;
1828
+ latitude: number;
1829
+ longitude: number;
1830
+ timezone: number;
1831
+ };
1832
+ };
1833
+
1834
+ export type YogaDetectRequest = {
1835
+ /**
1836
+ * 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).
1837
+ */
1838
+ date: string;
1839
+ /**
1840
+ * 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.
1841
+ */
1842
+ time: string;
1843
+ /**
1844
+ * 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.
1845
+ */
1846
+ latitude: number;
1847
+ /**
1848
+ * Birth location longitude in decimal degrees. Affects local time calculations and ayanamsha adjustments. Example: Delhi 77.2090, Mumbai 72.8777, Kathmandu 85.3240.
1849
+ */
1850
+ longitude: number;
1851
+ /**
1852
+ * 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).
1853
+ */
1854
+ timezone?: number | string;
1855
+ };
1856
+
1375
1857
  export type KpAyanamsaResponse = {
1376
1858
  /**
1377
1859
  * Date for which ayanamsa was calculated
@@ -5325,20 +5807,145 @@ export type PostAstrologyHousesData = {
5325
5807
  /**
5326
5808
  * 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.
5327
5809
  */
5328
- latitude: number;
5810
+ latitude: number;
5811
+ /**
5812
+ * Birth location longitude in decimal degrees. Affects local time and horizon calculations for house cusps.
5813
+ */
5814
+ longitude: number;
5815
+ /**
5816
+ * 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.
5817
+ */
5818
+ timezone: number | string;
5819
+ /**
5820
+ * 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.
5821
+ */
5822
+ houseSystem?: 'placidus' | 'whole-sign' | 'equal' | 'koch' | 'all';
5823
+ };
5824
+ path?: never;
5825
+ query?: {
5826
+ /**
5827
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
5828
+ */
5829
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
5830
+ };
5831
+ url: '/astrology/houses';
5832
+ };
5833
+
5834
+ export type PostAstrologyHousesErrors = {
5835
+ /**
5836
+ * Validation error. `issues[]` lists every failed field.
5837
+ */
5838
+ 400: {
5839
+ /**
5840
+ * First issue summary.
5841
+ */
5842
+ error: string;
5843
+ code: 'validation_error';
5844
+ /**
5845
+ * Every validation failure. Use this to rebuild a valid request.
5846
+ */
5847
+ issues: Array<{
5848
+ /**
5849
+ * Dot-separated field path, or "(root)" for top-level.
5850
+ */
5851
+ path: string;
5852
+ message: string;
5853
+ /**
5854
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
5855
+ */
5856
+ code?: string;
5857
+ /**
5858
+ * Expected type for invalid_type.
5859
+ */
5860
+ expected?: string;
5861
+ /**
5862
+ * Minimum bound for too_small issues.
5863
+ */
5864
+ minimum?: number | string;
5865
+ /**
5866
+ * Maximum bound for too_big issues.
5867
+ */
5868
+ maximum?: number | string;
5869
+ inclusive?: boolean;
5870
+ /**
5871
+ * Format name for string issues (regex, email, url, uuid).
5872
+ */
5873
+ format?: string;
5874
+ /**
5875
+ * Regex pattern when format is regex.
5876
+ */
5877
+ pattern?: string;
5878
+ }>;
5879
+ };
5880
+ /**
5881
+ * Invalid or missing API key
5882
+ */
5883
+ 401: {
5884
+ /**
5885
+ * Human-readable error message. May change wording.
5886
+ */
5887
+ error: string;
5888
+ /**
5889
+ * Machine-readable error code. Stable identifier.
5890
+ */
5891
+ code: string;
5892
+ };
5893
+ /**
5894
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
5895
+ */
5896
+ 405: {
5897
+ error: string;
5898
+ code: 'method_not_allowed';
5899
+ /**
5900
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
5901
+ */
5902
+ allow: Array<string>;
5903
+ /**
5904
+ * Link to the product page for this domain.
5905
+ */
5906
+ docs?: string;
5907
+ };
5908
+ /**
5909
+ * Monthly rate limit exceeded
5910
+ */
5911
+ 429: {
5912
+ /**
5913
+ * Human-readable error message. May change wording.
5914
+ */
5915
+ error: string;
5329
5916
  /**
5330
- * Birth location longitude in decimal degrees. Affects local time and horizon calculations for house cusps.
5917
+ * Machine-readable error code. Stable identifier.
5331
5918
  */
5332
- longitude: number;
5919
+ code: string;
5920
+ };
5921
+ /**
5922
+ * Internal server error
5923
+ */
5924
+ 500: {
5333
5925
  /**
5334
- * 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.
5926
+ * Human-readable error message. May change wording.
5335
5927
  */
5336
- timezone: number | string;
5928
+ error: string;
5337
5929
  /**
5338
- * 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.
5930
+ * Machine-readable error code. Stable identifier.
5339
5931
  */
5340
- houseSystem?: 'placidus' | 'whole-sign' | 'equal' | 'koch' | 'all';
5932
+ code: string;
5341
5933
  };
5934
+ };
5935
+
5936
+ export type PostAstrologyHousesError = PostAstrologyHousesErrors[keyof PostAstrologyHousesErrors];
5937
+
5938
+ export type PostAstrologyHousesResponses = {
5939
+ /**
5940
+ * House cusps calculated successfully
5941
+ */
5942
+ 200: HousesResponse;
5943
+ };
5944
+
5945
+ export type PostAstrologyHousesResponse = PostAstrologyHousesResponses[keyof PostAstrologyHousesResponses];
5946
+
5947
+ export type PostAstrologyAspectsData = {
5948
+ body?: AspectsRequest;
5342
5949
  path?: never;
5343
5950
  query?: {
5344
5951
  /**
@@ -5346,10 +5953,10 @@ export type PostAstrologyHousesData = {
5346
5953
  */
5347
5954
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
5348
5955
  };
5349
- url: '/astrology/houses';
5956
+ url: '/astrology/aspects';
5350
5957
  };
5351
5958
 
5352
- export type PostAstrologyHousesErrors = {
5959
+ export type PostAstrologyAspectsErrors = {
5353
5960
  /**
5354
5961
  * Validation error. `issues[]` lists every failed field.
5355
5962
  */
@@ -5451,30 +6058,38 @@ export type PostAstrologyHousesErrors = {
5451
6058
  };
5452
6059
  };
5453
6060
 
5454
- export type PostAstrologyHousesError = PostAstrologyHousesErrors[keyof PostAstrologyHousesErrors];
6061
+ export type PostAstrologyAspectsError = PostAstrologyAspectsErrors[keyof PostAstrologyAspectsErrors];
5455
6062
 
5456
- export type PostAstrologyHousesResponses = {
6063
+ export type PostAstrologyAspectsResponses = {
5457
6064
  /**
5458
- * House cusps calculated successfully
6065
+ * Aspects calculated successfully
5459
6066
  */
5460
- 200: HousesResponse;
6067
+ 200: AspectsResponse;
5461
6068
  };
5462
6069
 
5463
- export type PostAstrologyHousesResponse = PostAstrologyHousesResponses[keyof PostAstrologyHousesResponses];
6070
+ export type PostAstrologyAspectsResponse = PostAstrologyAspectsResponses[keyof PostAstrologyAspectsResponses];
5464
6071
 
5465
- export type PostAstrologyAspectsData = {
5466
- body?: AspectsRequest;
6072
+ export type PostAstrologyAspectPatternsData = {
6073
+ body?: AspectPatternsRequest;
5467
6074
  path?: never;
5468
6075
  query?: {
5469
6076
  /**
5470
6077
  * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
5471
6078
  */
5472
6079
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
6080
+ /**
6081
+ * 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).
6082
+ */
6083
+ strictOrbs?: string;
6084
+ /**
6085
+ * 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.
6086
+ */
6087
+ include?: string;
5473
6088
  };
5474
- url: '/astrology/aspects';
6089
+ url: '/astrology/aspect-patterns';
5475
6090
  };
5476
6091
 
5477
- export type PostAstrologyAspectsErrors = {
6092
+ export type PostAstrologyAspectPatternsErrors = {
5478
6093
  /**
5479
6094
  * Validation error. `issues[]` lists every failed field.
5480
6095
  */
@@ -5576,16 +6191,16 @@ export type PostAstrologyAspectsErrors = {
5576
6191
  };
5577
6192
  };
5578
6193
 
5579
- export type PostAstrologyAspectsError = PostAstrologyAspectsErrors[keyof PostAstrologyAspectsErrors];
6194
+ export type PostAstrologyAspectPatternsError = PostAstrologyAspectPatternsErrors[keyof PostAstrologyAspectPatternsErrors];
5580
6195
 
5581
- export type PostAstrologyAspectsResponses = {
6196
+ export type PostAstrologyAspectPatternsResponses = {
5582
6197
  /**
5583
- * Aspects calculated successfully
6198
+ * Aspect patterns detected successfully
5584
6199
  */
5585
- 200: AspectsResponse;
6200
+ 200: AspectPatternsResponse;
5586
6201
  };
5587
6202
 
5588
- export type PostAstrologyAspectsResponse = PostAstrologyAspectsResponses[keyof PostAstrologyAspectsResponses];
6203
+ export type PostAstrologyAspectPatternsResponse = PostAstrologyAspectPatternsResponses[keyof PostAstrologyAspectPatternsResponses];
5589
6204
 
5590
6205
  export type PostAstrologyTransitsData = {
5591
6206
  body?: TransitsRequest;
@@ -6392,6 +7007,44 @@ export type PostAstrologySolarReturnResponses = {
6392
7007
  */
6393
7008
  interpretation: 'harmonious' | 'challenging' | 'neutral';
6394
7009
  }>;
7010
+ /**
7011
+ * 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.
7012
+ */
7013
+ partOfFortune: {
7014
+ /**
7015
+ * Zodiac sign holding the Part of Fortune.
7016
+ */
7017
+ sign: string;
7018
+ /**
7019
+ * Degree within the Part of Fortune sign (0-29.999).
7020
+ */
7021
+ degree: number;
7022
+ /**
7023
+ * Absolute ecliptic longitude of the Part of Fortune (0-360).
7024
+ */
7025
+ longitude: number;
7026
+ /**
7027
+ * 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.
7028
+ */
7029
+ sect: 'day' | 'night';
7030
+ };
7031
+ /**
7032
+ * 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.
7033
+ */
7034
+ vertex: {
7035
+ /**
7036
+ * Zodiac sign holding the Vertex.
7037
+ */
7038
+ sign: string;
7039
+ /**
7040
+ * Degree within the Vertex sign (0-29.999).
7041
+ */
7042
+ degree: number;
7043
+ /**
7044
+ * Absolute ecliptic longitude of the Vertex (0-360).
7045
+ */
7046
+ longitude: number;
7047
+ };
6395
7048
  };
6396
7049
  /**
6397
7050
  * Original natal Sun position that the transiting Sun returns to. This conjunction defines the solar return moment.
@@ -6735,6 +7388,44 @@ export type PostAstrologyLunarReturnResponses = {
6735
7388
  */
6736
7389
  interpretation: 'harmonious' | 'challenging' | 'neutral';
6737
7390
  }>;
7391
+ /**
7392
+ * 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.
7393
+ */
7394
+ partOfFortune: {
7395
+ /**
7396
+ * Zodiac sign holding the Part of Fortune.
7397
+ */
7398
+ sign: string;
7399
+ /**
7400
+ * Degree within the Part of Fortune sign (0-29.999).
7401
+ */
7402
+ degree: number;
7403
+ /**
7404
+ * Absolute ecliptic longitude of the Part of Fortune (0-360).
7405
+ */
7406
+ longitude: number;
7407
+ /**
7408
+ * 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.
7409
+ */
7410
+ sect: 'day' | 'night';
7411
+ };
7412
+ /**
7413
+ * 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.
7414
+ */
7415
+ vertex: {
7416
+ /**
7417
+ * Zodiac sign holding the Vertex.
7418
+ */
7419
+ sign: string;
7420
+ /**
7421
+ * Degree within the Vertex sign (0-29.999).
7422
+ */
7423
+ degree: number;
7424
+ /**
7425
+ * Absolute ecliptic longitude of the Vertex (0-360).
7426
+ */
7427
+ longitude: number;
7428
+ };
6738
7429
  };
6739
7430
  /**
6740
7431
  * Original natal Moon position that the transiting Moon returns to. This conjunction defines the lunar return moment.
@@ -8587,6 +9278,44 @@ export type PostAstrologyPlanetaryReturnsResponses = {
8587
9278
  */
8588
9279
  interpretation: 'harmonious' | 'challenging' | 'neutral';
8589
9280
  }>;
9281
+ /**
9282
+ * 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.
9283
+ */
9284
+ partOfFortune: {
9285
+ /**
9286
+ * Zodiac sign holding the Part of Fortune.
9287
+ */
9288
+ sign: string;
9289
+ /**
9290
+ * Degree within the Part of Fortune sign (0-29.999).
9291
+ */
9292
+ degree: number;
9293
+ /**
9294
+ * Absolute ecliptic longitude of the Part of Fortune (0-360).
9295
+ */
9296
+ longitude: number;
9297
+ /**
9298
+ * 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.
9299
+ */
9300
+ sect: 'day' | 'night';
9301
+ };
9302
+ /**
9303
+ * 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.
9304
+ */
9305
+ vertex: {
9306
+ /**
9307
+ * Zodiac sign holding the Vertex.
9308
+ */
9309
+ sign: string;
9310
+ /**
9311
+ * Degree within the Vertex sign (0-29.999).
9312
+ */
9313
+ degree: number;
9314
+ /**
9315
+ * Absolute ecliptic longitude of the Vertex (0-360).
9316
+ */
9317
+ longitude: number;
9318
+ };
8590
9319
  };
8591
9320
  /**
8592
9321
  * Original natal planet position that defines the return. The transiting planet conjuncts this longitude to trigger the return.
@@ -12117,6 +12846,131 @@ export type GetVedicAstrologyYogaByIdResponses = {
12117
12846
 
12118
12847
  export type GetVedicAstrologyYogaByIdResponse = GetVedicAstrologyYogaByIdResponses[keyof GetVedicAstrologyYogaByIdResponses];
12119
12848
 
12849
+ export type PostVedicAstrologyYogaDetectData = {
12850
+ body?: YogaDetectRequest;
12851
+ path?: never;
12852
+ query?: {
12853
+ /**
12854
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
12855
+ */
12856
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
12857
+ };
12858
+ url: '/vedic-astrology/yoga/detect';
12859
+ };
12860
+
12861
+ export type PostVedicAstrologyYogaDetectErrors = {
12862
+ /**
12863
+ * Validation error. `issues[]` lists every failed field.
12864
+ */
12865
+ 400: {
12866
+ /**
12867
+ * First issue summary.
12868
+ */
12869
+ error: string;
12870
+ code: 'validation_error';
12871
+ /**
12872
+ * Every validation failure. Use this to rebuild a valid request.
12873
+ */
12874
+ issues: Array<{
12875
+ /**
12876
+ * Dot-separated field path, or "(root)" for top-level.
12877
+ */
12878
+ path: string;
12879
+ message: string;
12880
+ /**
12881
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
12882
+ */
12883
+ code?: string;
12884
+ /**
12885
+ * Expected type for invalid_type.
12886
+ */
12887
+ expected?: string;
12888
+ /**
12889
+ * Minimum bound for too_small issues.
12890
+ */
12891
+ minimum?: number | string;
12892
+ /**
12893
+ * Maximum bound for too_big issues.
12894
+ */
12895
+ maximum?: number | string;
12896
+ inclusive?: boolean;
12897
+ /**
12898
+ * Format name for string issues (regex, email, url, uuid).
12899
+ */
12900
+ format?: string;
12901
+ /**
12902
+ * Regex pattern when format is regex.
12903
+ */
12904
+ pattern?: string;
12905
+ }>;
12906
+ };
12907
+ /**
12908
+ * Invalid or missing API key
12909
+ */
12910
+ 401: {
12911
+ /**
12912
+ * Human-readable error message. May change wording.
12913
+ */
12914
+ error: string;
12915
+ /**
12916
+ * Machine-readable error code. Stable identifier.
12917
+ */
12918
+ code: string;
12919
+ };
12920
+ /**
12921
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
12922
+ */
12923
+ 405: {
12924
+ error: string;
12925
+ code: 'method_not_allowed';
12926
+ /**
12927
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
12928
+ */
12929
+ allow: Array<string>;
12930
+ /**
12931
+ * Link to the product page for this domain.
12932
+ */
12933
+ docs?: string;
12934
+ };
12935
+ /**
12936
+ * Monthly rate limit exceeded
12937
+ */
12938
+ 429: {
12939
+ /**
12940
+ * Human-readable error message. May change wording.
12941
+ */
12942
+ error: string;
12943
+ /**
12944
+ * Machine-readable error code. Stable identifier.
12945
+ */
12946
+ code: string;
12947
+ };
12948
+ /**
12949
+ * Internal server error
12950
+ */
12951
+ 500: {
12952
+ /**
12953
+ * Human-readable error message. May change wording.
12954
+ */
12955
+ error: string;
12956
+ /**
12957
+ * Machine-readable error code. Stable identifier.
12958
+ */
12959
+ code: string;
12960
+ };
12961
+ };
12962
+
12963
+ export type PostVedicAstrologyYogaDetectError = PostVedicAstrologyYogaDetectErrors[keyof PostVedicAstrologyYogaDetectErrors];
12964
+
12965
+ export type PostVedicAstrologyYogaDetectResponses = {
12966
+ /**
12967
+ * List of 12 classical yogas with present/absent verdicts and classical-text evidence.
12968
+ */
12969
+ 200: YogaDetectResponse;
12970
+ };
12971
+
12972
+ export type PostVedicAstrologyYogaDetectResponse = PostVedicAstrologyYogaDetectResponses[keyof PostVedicAstrologyYogaDetectResponses];
12973
+
12120
12974
  export type GetVedicAstrologyKpAyanamsaData = {
12121
12975
  body?: never;
12122
12976
  path?: never;