@roxyapi/sdk 1.2.28 → 1.2.30

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.
@@ -865,18 +865,563 @@ export type TransitsRequest = {
865
865
  * Optional natal chart data to compare transits against
866
866
  */
867
867
  natalChart?: {
868
+ /**
869
+ * Date in YYYY-MM-DD format.
870
+ */
868
871
  date: string;
872
+ /**
873
+ * Time in 24-hour HH:MM:SS format.
874
+ */
869
875
  time: string;
870
876
  latitude: number;
871
877
  longitude: number;
872
878
  /**
873
- * Natal timezone: decimal hours OR IANA name (e.g. "America/New_York"). IANA resolved to the DST-correct offset for the natal date.
879
+ * Natal timezone: decimal hours OR IANA name (e.g. "America/New_York"). IANA resolved to the DST-correct offset for the natal date.
880
+ */
881
+ timezone: number | string;
882
+ };
883
+ };
884
+ export type BirthChartResponse = {
885
+ aries: {
886
+ /**
887
+ * Zodiac sign name in lowercase.
888
+ */
889
+ rashi: string;
890
+ /**
891
+ * Planets placed in this zodiac sign.
892
+ */
893
+ signs: Array<{
894
+ /**
895
+ * Planet (graha) placed in this sign.
896
+ */
897
+ graha: string;
898
+ /**
899
+ * Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
900
+ */
901
+ longitude: number;
902
+ nakshatra: {
903
+ /**
904
+ * Nakshatra (lunar mansion, 1 of 27) the planet occupies.
905
+ */
906
+ name: string;
907
+ /**
908
+ * Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
909
+ */
910
+ pada: number;
911
+ /**
912
+ * Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
913
+ */
914
+ key: number;
915
+ /**
916
+ * 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.
917
+ */
918
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
919
+ };
920
+ /**
921
+ * True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
922
+ */
923
+ isRetrograde: boolean;
924
+ /**
925
+ * 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.
926
+ */
927
+ house?: number;
928
+ /**
929
+ * 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.
930
+ */
931
+ awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
932
+ }>;
933
+ };
934
+ taurus: {
935
+ /**
936
+ * Zodiac sign name in lowercase.
937
+ */
938
+ rashi: string;
939
+ /**
940
+ * Planets placed in this zodiac sign.
941
+ */
942
+ signs: Array<{
943
+ /**
944
+ * Planet (graha) placed in this sign.
945
+ */
946
+ graha: string;
947
+ /**
948
+ * Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
949
+ */
950
+ longitude: number;
951
+ nakshatra: {
952
+ /**
953
+ * Nakshatra (lunar mansion, 1 of 27) the planet occupies.
954
+ */
955
+ name: string;
956
+ /**
957
+ * Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
958
+ */
959
+ pada: number;
960
+ /**
961
+ * Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
962
+ */
963
+ key: number;
964
+ /**
965
+ * 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.
966
+ */
967
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
968
+ };
969
+ /**
970
+ * True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
971
+ */
972
+ isRetrograde: boolean;
973
+ /**
974
+ * 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.
975
+ */
976
+ house?: number;
977
+ /**
978
+ * 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.
979
+ */
980
+ awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
981
+ }>;
982
+ };
983
+ gemini: {
984
+ /**
985
+ * Zodiac sign name in lowercase.
986
+ */
987
+ rashi: string;
988
+ /**
989
+ * Planets placed in this zodiac sign.
990
+ */
991
+ signs: Array<{
992
+ /**
993
+ * Planet (graha) placed in this sign.
994
+ */
995
+ graha: string;
996
+ /**
997
+ * Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
998
+ */
999
+ longitude: number;
1000
+ nakshatra: {
1001
+ /**
1002
+ * Nakshatra (lunar mansion, 1 of 27) the planet occupies.
1003
+ */
1004
+ name: string;
1005
+ /**
1006
+ * Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
1007
+ */
1008
+ pada: number;
1009
+ /**
1010
+ * Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
1011
+ */
1012
+ key: number;
1013
+ /**
1014
+ * 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.
1015
+ */
1016
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
1017
+ };
1018
+ /**
1019
+ * True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
1020
+ */
1021
+ isRetrograde: boolean;
1022
+ /**
1023
+ * 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.
1024
+ */
1025
+ house?: number;
1026
+ /**
1027
+ * 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.
1028
+ */
1029
+ awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
1030
+ }>;
1031
+ };
1032
+ cancer: {
1033
+ /**
1034
+ * Zodiac sign name in lowercase.
1035
+ */
1036
+ rashi: string;
1037
+ /**
1038
+ * Planets placed in this zodiac sign.
1039
+ */
1040
+ signs: Array<{
1041
+ /**
1042
+ * Planet (graha) placed in this sign.
1043
+ */
1044
+ graha: string;
1045
+ /**
1046
+ * Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
1047
+ */
1048
+ longitude: number;
1049
+ nakshatra: {
1050
+ /**
1051
+ * Nakshatra (lunar mansion, 1 of 27) the planet occupies.
1052
+ */
1053
+ name: string;
1054
+ /**
1055
+ * Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
1056
+ */
1057
+ pada: number;
1058
+ /**
1059
+ * Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
1060
+ */
1061
+ key: number;
1062
+ /**
1063
+ * 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.
1064
+ */
1065
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
1066
+ };
1067
+ /**
1068
+ * True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
1069
+ */
1070
+ isRetrograde: boolean;
1071
+ /**
1072
+ * 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.
1073
+ */
1074
+ house?: number;
1075
+ /**
1076
+ * 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.
1077
+ */
1078
+ awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
1079
+ }>;
1080
+ };
1081
+ leo: {
1082
+ /**
1083
+ * Zodiac sign name in lowercase.
1084
+ */
1085
+ rashi: string;
1086
+ /**
1087
+ * Planets placed in this zodiac sign.
1088
+ */
1089
+ signs: Array<{
1090
+ /**
1091
+ * Planet (graha) placed in this sign.
1092
+ */
1093
+ graha: string;
1094
+ /**
1095
+ * Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
1096
+ */
1097
+ longitude: number;
1098
+ nakshatra: {
1099
+ /**
1100
+ * Nakshatra (lunar mansion, 1 of 27) the planet occupies.
1101
+ */
1102
+ name: string;
1103
+ /**
1104
+ * Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
1105
+ */
1106
+ pada: number;
1107
+ /**
1108
+ * Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
1109
+ */
1110
+ key: number;
1111
+ /**
1112
+ * 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.
1113
+ */
1114
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
1115
+ };
1116
+ /**
1117
+ * True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
1118
+ */
1119
+ isRetrograde: boolean;
1120
+ /**
1121
+ * 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.
1122
+ */
1123
+ house?: number;
1124
+ /**
1125
+ * 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.
1126
+ */
1127
+ awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
1128
+ }>;
1129
+ };
1130
+ virgo: {
1131
+ /**
1132
+ * Zodiac sign name in lowercase.
1133
+ */
1134
+ rashi: string;
1135
+ /**
1136
+ * Planets placed in this zodiac sign.
1137
+ */
1138
+ signs: Array<{
1139
+ /**
1140
+ * Planet (graha) placed in this sign.
1141
+ */
1142
+ graha: string;
1143
+ /**
1144
+ * Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
1145
+ */
1146
+ longitude: number;
1147
+ nakshatra: {
1148
+ /**
1149
+ * Nakshatra (lunar mansion, 1 of 27) the planet occupies.
1150
+ */
1151
+ name: string;
1152
+ /**
1153
+ * Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
1154
+ */
1155
+ pada: number;
1156
+ /**
1157
+ * Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
1158
+ */
1159
+ key: number;
1160
+ /**
1161
+ * 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.
1162
+ */
1163
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
1164
+ };
1165
+ /**
1166
+ * True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
1167
+ */
1168
+ isRetrograde: boolean;
1169
+ /**
1170
+ * 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.
1171
+ */
1172
+ house?: number;
1173
+ /**
1174
+ * 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.
1175
+ */
1176
+ awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
1177
+ }>;
1178
+ };
1179
+ libra: {
1180
+ /**
1181
+ * Zodiac sign name in lowercase.
1182
+ */
1183
+ rashi: string;
1184
+ /**
1185
+ * Planets placed in this zodiac sign.
1186
+ */
1187
+ signs: Array<{
1188
+ /**
1189
+ * Planet (graha) placed in this sign.
1190
+ */
1191
+ graha: string;
1192
+ /**
1193
+ * Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
1194
+ */
1195
+ longitude: number;
1196
+ nakshatra: {
1197
+ /**
1198
+ * Nakshatra (lunar mansion, 1 of 27) the planet occupies.
1199
+ */
1200
+ name: string;
1201
+ /**
1202
+ * Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
1203
+ */
1204
+ pada: number;
1205
+ /**
1206
+ * Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
1207
+ */
1208
+ key: number;
1209
+ /**
1210
+ * 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.
1211
+ */
1212
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
1213
+ };
1214
+ /**
1215
+ * True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
1216
+ */
1217
+ isRetrograde: boolean;
1218
+ /**
1219
+ * 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.
1220
+ */
1221
+ house?: number;
1222
+ /**
1223
+ * 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.
1224
+ */
1225
+ awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
1226
+ }>;
1227
+ };
1228
+ scorpio: {
1229
+ /**
1230
+ * Zodiac sign name in lowercase.
1231
+ */
1232
+ rashi: string;
1233
+ /**
1234
+ * Planets placed in this zodiac sign.
1235
+ */
1236
+ signs: Array<{
1237
+ /**
1238
+ * Planet (graha) placed in this sign.
1239
+ */
1240
+ graha: string;
1241
+ /**
1242
+ * Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
1243
+ */
1244
+ longitude: number;
1245
+ nakshatra: {
1246
+ /**
1247
+ * Nakshatra (lunar mansion, 1 of 27) the planet occupies.
1248
+ */
1249
+ name: string;
1250
+ /**
1251
+ * Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
1252
+ */
1253
+ pada: number;
1254
+ /**
1255
+ * Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
1256
+ */
1257
+ key: number;
1258
+ /**
1259
+ * 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.
1260
+ */
1261
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
1262
+ };
1263
+ /**
1264
+ * True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
1265
+ */
1266
+ isRetrograde: boolean;
1267
+ /**
1268
+ * 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.
1269
+ */
1270
+ house?: number;
1271
+ /**
1272
+ * 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.
1273
+ */
1274
+ awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
1275
+ }>;
1276
+ };
1277
+ sagittarius: {
1278
+ /**
1279
+ * Zodiac sign name in lowercase.
1280
+ */
1281
+ rashi: string;
1282
+ /**
1283
+ * Planets placed in this zodiac sign.
1284
+ */
1285
+ signs: Array<{
1286
+ /**
1287
+ * Planet (graha) placed in this sign.
1288
+ */
1289
+ graha: string;
1290
+ /**
1291
+ * Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
1292
+ */
1293
+ longitude: number;
1294
+ nakshatra: {
1295
+ /**
1296
+ * Nakshatra (lunar mansion, 1 of 27) the planet occupies.
1297
+ */
1298
+ name: string;
1299
+ /**
1300
+ * Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
1301
+ */
1302
+ pada: number;
1303
+ /**
1304
+ * Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
1305
+ */
1306
+ key: number;
1307
+ /**
1308
+ * 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.
1309
+ */
1310
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
1311
+ };
1312
+ /**
1313
+ * True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
1314
+ */
1315
+ isRetrograde: boolean;
1316
+ /**
1317
+ * 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.
1318
+ */
1319
+ house?: number;
1320
+ /**
1321
+ * 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.
1322
+ */
1323
+ awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
1324
+ }>;
1325
+ };
1326
+ capricorn: {
1327
+ /**
1328
+ * Zodiac sign name in lowercase.
1329
+ */
1330
+ rashi: string;
1331
+ /**
1332
+ * Planets placed in this zodiac sign.
1333
+ */
1334
+ signs: Array<{
1335
+ /**
1336
+ * Planet (graha) placed in this sign.
1337
+ */
1338
+ graha: string;
1339
+ /**
1340
+ * Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
1341
+ */
1342
+ longitude: number;
1343
+ nakshatra: {
1344
+ /**
1345
+ * Nakshatra (lunar mansion, 1 of 27) the planet occupies.
1346
+ */
1347
+ name: string;
1348
+ /**
1349
+ * Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
1350
+ */
1351
+ pada: number;
1352
+ /**
1353
+ * Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
1354
+ */
1355
+ key: number;
1356
+ /**
1357
+ * 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.
1358
+ */
1359
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
1360
+ };
1361
+ /**
1362
+ * True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
1363
+ */
1364
+ isRetrograde: boolean;
1365
+ /**
1366
+ * 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.
1367
+ */
1368
+ house?: number;
1369
+ /**
1370
+ * 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.
1371
+ */
1372
+ awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
1373
+ }>;
1374
+ };
1375
+ aquarius: {
1376
+ /**
1377
+ * Zodiac sign name in lowercase.
874
1378
  */
875
- timezone: number | string;
1379
+ rashi: string;
1380
+ /**
1381
+ * Planets placed in this zodiac sign.
1382
+ */
1383
+ signs: Array<{
1384
+ /**
1385
+ * Planet (graha) placed in this sign.
1386
+ */
1387
+ graha: string;
1388
+ /**
1389
+ * Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
1390
+ */
1391
+ longitude: number;
1392
+ nakshatra: {
1393
+ /**
1394
+ * Nakshatra (lunar mansion, 1 of 27) the planet occupies.
1395
+ */
1396
+ name: string;
1397
+ /**
1398
+ * Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
1399
+ */
1400
+ pada: number;
1401
+ /**
1402
+ * Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
1403
+ */
1404
+ key: number;
1405
+ /**
1406
+ * 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.
1407
+ */
1408
+ lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
1409
+ };
1410
+ /**
1411
+ * True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
1412
+ */
1413
+ isRetrograde: boolean;
1414
+ /**
1415
+ * 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.
1416
+ */
1417
+ house?: number;
1418
+ /**
1419
+ * 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.
1420
+ */
1421
+ awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
1422
+ }>;
876
1423
  };
877
- };
878
- export type BirthChartResponse = {
879
- aries: {
1424
+ pisces: {
880
1425
  /**
881
1426
  * Zodiac sign name in lowercase.
882
1427
  */
@@ -899,7 +1444,7 @@ export type BirthChartResponse = {
899
1444
  */
900
1445
  name: string;
901
1446
  /**
902
- * Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3°20 each.
1447
+ * Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
903
1448
  */
904
1449
  pada: number;
905
1450
  /**
@@ -925,6 +1470,76 @@ export type BirthChartResponse = {
925
1470
  awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
926
1471
  }>;
927
1472
  };
1473
+ /**
1474
+ * The twelve bhavas (houses) in order, each with its classical name and significations. Houses are counted whole-sign from the Lagna.
1475
+ */
1476
+ houses: Array<{
1477
+ /**
1478
+ * Bhava (house) number 1-12. House 1 is the Lagna (Ascendant), house 7 the partnership axis, house 10 the career axis.
1479
+ */
1480
+ number: number;
1481
+ /**
1482
+ * Classical name of the bhava (house). Present when an interpretation entry exists for this house.
1483
+ */
1484
+ name?: string;
1485
+ /**
1486
+ * Significations of the bhava (house). Present when an interpretation entry exists for this house.
1487
+ */
1488
+ description?: string;
1489
+ }>;
1490
+ /**
1491
+ * Combust planets (astangata graha): grahas within their combustion orb of the Sun. Combustion weakens a planet significations. Empty when no planet is combust.
1492
+ */
1493
+ combustion: Array<{
1494
+ /**
1495
+ * Graha that is combust (too close to the Sun, astangata).
1496
+ */
1497
+ planet: string;
1498
+ /**
1499
+ * Angular separation from the Sun in degrees.
1500
+ */
1501
+ distanceFromSun: number;
1502
+ /**
1503
+ * Combustion orb in degrees applied for this graha. A planet within this orb of the Sun is treated as combust, weakening its results.
1504
+ */
1505
+ orb: number;
1506
+ }>;
1507
+ /**
1508
+ * Planetary wars (graha yuddha): pairs of visible planets within 1 degree of each other. Empty when no two planets are in war.
1509
+ */
1510
+ planetaryWar: Array<{
1511
+ /**
1512
+ * First graha in the planetary war (graha yuddha) pair.
1513
+ */
1514
+ planet1: string;
1515
+ /**
1516
+ * Second graha in the planetary war (graha yuddha) pair.
1517
+ */
1518
+ planet2: string;
1519
+ /**
1520
+ * Angular separation between the two grahas in degrees.
1521
+ */
1522
+ distance: number;
1523
+ /**
1524
+ * Graha that wins the planetary war, the one with the more northerly ecliptic latitude. The winner keeps its strength, the loser is weakened.
1525
+ */
1526
+ winner: string;
1527
+ }>;
1528
+ /**
1529
+ * Planet-in-rashi and planet-in-nakshatra interpretation summaries, keyed by planet name. Translated when a supported lang is requested.
1530
+ */
1531
+ interpretations: {
1532
+ [key: string]: {
1533
+ /**
1534
+ * Interpretation of the planet placement in its rashi (sign).
1535
+ */
1536
+ rashi: string;
1537
+ /**
1538
+ * Interpretation of the planet placement in its nakshatra.
1539
+ */
1540
+ nakshatra: string;
1541
+ };
1542
+ };
928
1543
  /**
929
1544
  * 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
1545
  */
@@ -1017,7 +1632,7 @@ export type BirthChartRequest = {
1017
1632
  */
1018
1633
  date: string;
1019
1634
  /**
1020
- * 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.
1635
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions. It changes every two hours roughly. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
1021
1636
  */
1022
1637
  time: string;
1023
1638
  /**
@@ -1154,7 +1769,7 @@ export type NavamsaRequest = {
1154
1769
  */
1155
1770
  date: string;
1156
1771
  /**
1157
- * 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.
1772
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions. It changes every two hours roughly. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
1158
1773
  */
1159
1774
  time: string;
1160
1775
  /**
@@ -1312,7 +1927,7 @@ export type DivisionalChartRequest = {
1312
1927
  */
1313
1928
  date: string;
1314
1929
  /**
1315
- * 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.
1930
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions. It changes every two hours roughly. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
1316
1931
  */
1317
1932
  time: string;
1318
1933
  /**
@@ -1410,7 +2025,7 @@ export type CompatibilityRequest = {
1410
2025
  */
1411
2026
  date: string;
1412
2027
  /**
1413
- * 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.
2028
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions. It changes every two hours roughly. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
1414
2029
  */
1415
2030
  time: string;
1416
2031
  /**
@@ -1435,7 +2050,7 @@ export type CompatibilityRequest = {
1435
2050
  */
1436
2051
  date: string;
1437
2052
  /**
1438
- * 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.
2053
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions. It changes every two hours roughly. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
1439
2054
  */
1440
2055
  time: string;
1441
2056
  /**
@@ -1466,6 +2081,10 @@ export type PlanetaryPositionsResponse = {
1466
2081
  * Sidereal longitude in degrees (0-360) using Lahiri ayanamsa. Precise planetary position for chart calculations.
1467
2082
  */
1468
2083
  longitude: number;
2084
+ /**
2085
+ * Ecliptic latitude in degrees, the angular distance north (positive) or south (negative) of the ecliptic. Used in planetary war (graha yuddha) winner resolution and latitude-sensitive analysis. Omitted for the Lagna (Ascendant).
2086
+ */
2087
+ latitude?: number;
1469
2088
  /**
1470
2089
  * House number (1-12) the planet occupies using Whole Sign house system. House 1 is the Lagna (Ascendant) sign. Essential for bhava analysis and house-level predictions.
1471
2090
  */
@@ -1532,6 +2151,10 @@ export type PlanetaryPositionsResponse = {
1532
2151
  * Angular distance from the Sun in degrees (0-180). Smaller values indicate closer proximity. Null for Sun, Rahu, Ketu, and Lagna. Useful for gauging combustion severity and planetary strength analysis.
1533
2152
  */
1534
2153
  combustionDistance?: number;
2154
+ /**
2155
+ * 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.
2156
+ */
2157
+ awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
1535
2158
  };
1536
2159
  };
1537
2160
  export type PlanetaryPositionsRequest = {
@@ -1540,7 +2163,7 @@ export type PlanetaryPositionsRequest = {
1540
2163
  */
1541
2164
  date: string;
1542
2165
  /**
1543
- * 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.
2166
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions. It changes every two hours roughly. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
1544
2167
  */
1545
2168
  time: string;
1546
2169
  /**
@@ -1605,7 +2228,7 @@ export type ManglikRequest = {
1605
2228
  */
1606
2229
  date: string;
1607
2230
  /**
1608
- * 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.
2231
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions. It changes every two hours roughly. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
1609
2232
  */
1610
2233
  time: string;
1611
2234
  /**
@@ -1678,7 +2301,7 @@ export type KalsarpaRequest = {
1678
2301
  */
1679
2302
  date: string;
1680
2303
  /**
1681
- * 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.
2304
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions. It changes every two hours roughly. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
1682
2305
  */
1683
2306
  time: string;
1684
2307
  /**
@@ -1737,7 +2360,7 @@ export type SadhesatiRequest = {
1737
2360
  */
1738
2361
  date: string;
1739
2362
  /**
1740
- * 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.
2363
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions. It changes every two hours roughly. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
1741
2364
  */
1742
2365
  time: string;
1743
2366
  /**
@@ -1808,7 +2431,7 @@ export type YogaDetectRequest = {
1808
2431
  */
1809
2432
  date: string;
1810
2433
  /**
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.
2434
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions. It changes every two hours roughly. 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
2435
  */
1813
2436
  time: string;
1814
2437
  /**
@@ -3143,7 +3766,7 @@ export type UpagrahaRequest = {
3143
3766
  */
3144
3767
  date: string;
3145
3768
  /**
3146
- * 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.
3769
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions. It changes every two hours roughly. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
3147
3770
  */
3148
3771
  time: string;
3149
3772
  /**
@@ -3255,7 +3878,7 @@ export type AshtakavargaRequest = {
3255
3878
  */
3256
3879
  date: string;
3257
3880
  /**
3258
- * 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.
3881
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions. It changes every two hours roughly. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
3259
3882
  */
3260
3883
  time: string;
3261
3884
  /**
@@ -3343,7 +3966,7 @@ export type ShadbalaRequest = {
3343
3966
  */
3344
3967
  date: string;
3345
3968
  /**
3346
- * 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.
3969
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions. It changes every two hours roughly. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
3347
3970
  */
3348
3971
  time: string;
3349
3972
  /**
@@ -3492,11 +4115,11 @@ export type Card = {
3492
4115
  };
3493
4116
  export type DrawnCard = {
3494
4117
  /**
3495
- * Unique card identifier in kebab-case (e.g. the-fool, ace-of-cups, queen-of-swords).
4118
+ * Unique card identifier in kebab-case (e.g. the-fool, ace-of-cups).
3496
4119
  */
3497
4120
  id: string;
3498
4121
  /**
3499
- * Display name of the tarot card as it appears in the Rider-Waite-Smith tradition.
4122
+ * Display name of the tarot card.
3500
4123
  */
3501
4124
  name: string;
3502
4125
  /**
@@ -3527,6 +4150,26 @@ export type DrawnCard = {
3527
4150
  * Full interpretation of this card in its current orientation, providing detailed divination guidance.
3528
4151
  */
3529
4152
  meaning: string;
4153
+ /**
4154
+ * Love and relationship interpretation for the drawn orientation. Covers romantic partnerships, dating, emotional connections, and matters of the heart.
4155
+ */
4156
+ love?: string;
4157
+ /**
4158
+ * Career and professional interpretation for the drawn orientation. Covers workplace dynamics, job transitions, ambition, and vocational purpose.
4159
+ */
4160
+ career?: string;
4161
+ /**
4162
+ * Financial interpretation for the drawn orientation. Covers money management, investments, material prosperity, and abundance mindset.
4163
+ */
4164
+ finances?: string;
4165
+ /**
4166
+ * Health and wellbeing interpretation for the drawn orientation. Covers physical vitality, mental health, energy levels, and self-care guidance.
4167
+ */
4168
+ health?: string;
4169
+ /**
4170
+ * Spiritual interpretation for the drawn orientation. Covers personal growth, inner wisdom, soul purpose, and metaphysical development.
4171
+ */
4172
+ spirituality?: string;
3530
4173
  /**
3531
4174
  * URL to the tarot card artwork image.
3532
4175
  */
@@ -4472,6 +5115,10 @@ export type GetAstrologyPlanetMeaningsByIdResponses = {
4472
5115
  /**
4473
5116
  * Sign of exaltation. Where the planet is honored and amplified. Absent for the lunar nodes, Chiron, and Black Moon Lilith.
4474
5117
  */
5118
+ exaltation?: string;
5119
+ /**
5120
+ * Deprecated: use exaltation. Retained for backward compatibility, scheduled for removal in v3. Sign of exaltation, carrying the same value as the exaltation field.
5121
+ */
4475
5122
  exultation?: string;
4476
5123
  /**
4477
5124
  * Sign of fall. Opposite the exaltation sign, where the planet is weakened. Absent for the lunar nodes, Chiron, and Black Moon Lilith.
@@ -5689,11 +6336,11 @@ export type PostAstrologyHousesData = {
5689
6336
  */
5690
6337
  time: string;
5691
6338
  /**
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.
6339
+ * Birth location latitude in decimal degrees (-90 to 90). 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
6340
  */
5694
6341
  latitude: number;
5695
6342
  /**
5696
- * Birth location longitude in decimal degrees. Affects local time and horizon calculations for house cusps.
6343
+ * Birth location longitude in decimal degrees (-180 to 180). Affects local time and horizon calculations for house cusps.
5697
6344
  */
5698
6345
  longitude: number;
5699
6346
  /**
@@ -6574,11 +7221,11 @@ export type PostAstrologySolarReturnData = {
6574
7221
  */
6575
7222
  returnYear: number;
6576
7223
  /**
6577
- * Latitude of the solar return location in decimal degrees. Use current residence or travel location at time of birthday solar return charts are location-sensitive.
7224
+ * Latitude of the solar return location in decimal degrees (-90 to 90). Use current residence or travel location at time of birthday. Solar return charts are location-sensitive.
6578
7225
  */
6579
7226
  latitude: number;
6580
7227
  /**
6581
- * Longitude of the solar return location in decimal degrees. Affects house cusps and Ascendant of the return chart.
7228
+ * Longitude of the solar return location in decimal degrees (-180 to 180). Affects house cusps and Ascendant of the return chart.
6582
7229
  */
6583
7230
  longitude: number;
6584
7231
  /**
@@ -6711,7 +7358,7 @@ export type PostAstrologySolarReturnResponses = {
6711
7358
  */
6712
7359
  birthDate: string;
6713
7360
  /**
6714
- * Exact solar return moment when the transiting Sun conjuncts the natal Sun longitude. Adjusted to requested timezone. This is your astrological birthday for the year.
7361
+ * Exact solar return moment, when the transiting Sun conjuncts the natal Sun longitude. Adjusted to requested timezone. This is your astrological birthday for the year.
6715
7362
  */
6716
7363
  solarReturnDate: string;
6717
7364
  /**
@@ -6719,7 +7366,7 @@ export type PostAstrologySolarReturnResponses = {
6719
7366
  */
6720
7367
  solarReturnYear: number;
6721
7368
  /**
6722
- * Location used for the solar return chart. The Ascendant and house cusps change based on where you are at your birthday a key technique in relocated solar returns.
7369
+ * Location used for the solar return chart. The Ascendant and house cusps change based on where you are at your birthday, a key technique in relocated solar returns.
6723
7370
  */
6724
7371
  location: {
6725
7372
  /**
@@ -6954,11 +7601,11 @@ export type PostAstrologyLunarReturnData = {
6954
7601
  */
6955
7602
  returnDate: string;
6956
7603
  /**
6957
- * Latitude of the lunar return location in decimal degrees. Affects the Ascendant and house cusps of the return chart.
7604
+ * Latitude of the lunar return location in decimal degrees (-90 to 90). Affects the Ascendant and house cusps of the return chart.
6958
7605
  */
6959
7606
  latitude: number;
6960
7607
  /**
6961
- * Longitude of the lunar return location in decimal degrees. Determines local sidereal time for house calculations.
7608
+ * Longitude of the lunar return location in decimal degrees (-180 to 180). Determines local sidereal time for house calculations.
6962
7609
  */
6963
7610
  longitude: number;
6964
7611
  /**
@@ -7091,7 +7738,7 @@ export type PostAstrologyLunarReturnResponses = {
7091
7738
  */
7092
7739
  birthDate: string;
7093
7740
  /**
7094
- * Exact lunar return moment when the transiting Moon conjuncts the natal Moon longitude. Adjusted to requested timezone. Occurs approximately every 27.3 days (one sidereal month).
7741
+ * Exact lunar return moment, when the transiting Moon conjuncts the natal Moon longitude. Adjusted to requested timezone. Occurs approximately every 27.3 days (one sidereal month).
7095
7742
  */
7096
7743
  lunarReturnDate: string;
7097
7744
  /**
@@ -8802,15 +9449,15 @@ export type PostAstrologyPlanetaryReturnsData = {
8802
9449
  */
8803
9450
  planet: 'Mercury' | 'Venus' | 'Mars' | 'Jupiter' | 'Saturn';
8804
9451
  /**
8805
- * Approximate date near the expected planetary return (YYYY-MM-DD). Provide a date within the expected return window the algorithm searches from this starting point.
9452
+ * Approximate date near the expected planetary return (YYYY-MM-DD). Provide a date within the expected return window. The algorithm searches from this starting point.
8806
9453
  */
8807
9454
  approximateDate: string;
8808
9455
  /**
8809
- * Latitude of the return location in decimal degrees. Affects house cusps and Ascendant of the return chart.
9456
+ * Latitude of the return location in decimal degrees (-90 to 90). Affects house cusps and Ascendant of the return chart.
8810
9457
  */
8811
9458
  latitude: number;
8812
9459
  /**
8813
- * Longitude of the return location in decimal degrees.
9460
+ * Longitude of the return location in decimal degrees (-180 to 180).
8814
9461
  */
8815
9462
  longitude: number;
8816
9463
  /**
@@ -8947,7 +9594,7 @@ export type PostAstrologyPlanetaryReturnsResponses = {
8947
9594
  */
8948
9595
  planet: string;
8949
9596
  /**
8950
- * Exact planetary return moment when the transiting planet conjuncts its natal longitude. Adjusted to requested timezone. Marks the beginning of a new cycle for that planet in your life.
9597
+ * Exact planetary return moment, when the transiting planet conjuncts its natal longitude. Adjusted to requested timezone. Marks the beginning of a new cycle for that planet in your life.
8951
9598
  */
8952
9599
  returnDate: string;
8953
9600
  /**
@@ -9939,7 +10586,7 @@ export type PostVedicAstrologyDashaCurrentData = {
9939
10586
  */
9940
10587
  date: string;
9941
10588
  /**
9942
- * 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.
10589
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions. It changes every two hours roughly. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
9943
10590
  */
9944
10591
  time: string;
9945
10592
  /**
@@ -10243,7 +10890,7 @@ export type PostVedicAstrologyDashaMajorData = {
10243
10890
  */
10244
10891
  date: string;
10245
10892
  /**
10246
- * 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.
10893
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions. It changes every two hours roughly. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
10247
10894
  */
10248
10895
  time: string;
10249
10896
  /**
@@ -10447,7 +11094,7 @@ export type PostVedicAstrologyDashaSubByMahadashaData = {
10447
11094
  */
10448
11095
  date: string;
10449
11096
  /**
10450
- * 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.
11097
+ * Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions. It changes every two hours roughly. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
10451
11098
  */
10452
11099
  time: string;
10453
11100
  /**
@@ -12422,7 +13069,7 @@ export type GetVedicAstrologyYogaByIdData = {
12422
13069
  /**
12423
13070
  * Yoga identifier (lowercase, hyphenated)
12424
13071
  */
12425
- id: string;
13072
+ id: 'gajakesari' | 'sunapha' | 'anapha' | 'dhurdhura' | 'kemadruma' | 'chandramangala' | 'adhi' | 'chatussagara' | 'vasumathi' | 'rajalakshana' | 'vanchanachorabheethi' | 'sakata' | 'amala' | 'parvata' | 'kahala' | 'vesi' | 'vasi' | 'obhayachari' | 'hamsa' | 'malavya' | 'sasa' | 'ruchaka' | 'bhadra' | 'budhaaditya' | 'mahabhagya' | 'pushkala' | 'lakshmi' | 'gauri' | 'bharathi' | 'chapa' | 'sreenatha' | 'lagnamalika' | 'dhanamalika' | 'vikramamalika' | 'sukhamalika' | 'putramalika' | 'satrumalika' | 'kalatramalika' | 'randhramalika' | 'bhagyamalika' | 'karmamalika' | 'labhamalika' | 'vrayamalika' | 'sankha' | 'bheri' | 'mridanga' | 'parijatha' | 'gaja' | 'kalanidhi' | 'amsavatara' | 'hariharabrahma' | 'kusuma' | 'matsya' | 'kurma' | 'devendra' | 'makuta' | 'chandika' | 'jaya' | 'vidyut' | 'gandharva' | 'siva' | 'vishnu' | 'brahma' | 'indra' | 'ravi' | 'garuda' | 'go' | 'gola' | 'thrilochana' | 'kulavardhana' | 'yupa' | 'ishu' | 'sakti' | 'danda' | 'nav' | 'kuta' | 'chhatra' | 'chapa-2' | 'ardhachandra' | 'chandra' | 'gada' | 'sakata-2' | 'vihaga' | 'vajra' | 'yava' | 'sringhataka' | 'hala' | 'kamala' | 'vapee' | 'samudra' | 'vallaki' | 'damni' | 'pasa' | 'kedara' | 'sula' | 'yuga' | 'gola-2' | 'rajju' | 'musala' | 'nala' | 'srik' | 'sarpa' | 'duryoga' | 'daridra' | 'harsha' | 'sarala' | 'vimala' | 'sareerasoukhya' | 'dehapushti' | 'dehakashta' | 'rogagrastha' | 'krisanga' | 'krisanga-2' | 'dehasthoulya' | 'dehasthoulya-2' | 'dehasthoulya-3' | 'sadasanchara' | 'dhana' | 'dhana-2' | 'dhana-3' | 'dhana-4' | 'dhana-5' | 'dhana-6' | 'dhana-7' | 'dhana-8' | 'dhana-9' | 'dhana-10' | 'dhana-11' | 'bahudravyarjana' | 'swaveeryaddhana' | 'swaveeryaddhana-2' | 'swaveeryaddhana-3' | 'madhyavayasidhana' | 'anthyavayasidhana' | 'balyadhana' | 'bhratrumooladdhanaprapti' | 'bhratrumooladdhanaprapti-2' | 'matrumooladdhana' | 'putramooladdhana' | 'satrumooladdhana' | 'kalatramooladdhana' | 'amarananthadhana' | 'ayatnadhanalabha' | 'daridra-2' | 'daridra-3' | 'daridra-4' | 'daridra-5' | 'daridra-6' | 'daridra-7' | 'daridra-8' | 'daridra-9' | 'daridra-10' | 'daridra-11' | 'yukthisamanwithavagmi' | 'yukthisamanwithavagmi-2' | 'parihasaka' | 'asatyavadi' | 'jada' | 'bhaskara' | 'marud' | 'saraswathi' | 'budha' | 'mooka' | 'netranasa' | 'andha' | 'sumukha' | 'sumukha-2' | 'durmukha' | 'durmukha-2' | 'bhojanasoukhya' | 'annadana' | 'parannabhojana' | 'sraddhannabhuktha' | 'sarpaganda' | 'vakchalana' | 'vishaprayoga' | 'bhratruvriddhi' | 'sodaranasa' | 'ekabhagini' | 'dwadasasahodara' | 'sapthasankhyasahodara' | 'parakrama' | 'yuddhapraveena' | 'yuddhatpoorvadridhachitta' | 'yuddhatpaschaddrudha' | 'satkathadisravana' | 'uttamagriha' | 'vichitrasaudhaprakara' | 'ayatnagrihaprapta' | 'ayatnagrihaprapta-2' | 'grihanasa' | 'grihanasa-2' | 'bandhupujya' | 'bandhupujya-2' | 'bandhubhisthyaktha' | 'matrudeerghayur' | 'matrudeerghayur-2' | 'matrunasa' | 'matrunasa-2' | 'matrugami' | 'sahodareesangama' | 'kapata' | 'kapata-2' | 'kapata-3' | 'nishkapata' | 'nishkapata-2' | 'matrusatrutwa' | 'matrusneha' | 'vahana' | 'vahana-2' | 'anapathya' | 'sarpasapa' | 'sarpasapa-2' | 'sarpasapa-3' | 'sarpasapa-4' | 'pitrusapasutakshaya' | 'matrusapasutakshaya' | 'bhratrusapasutakshaya' | 'pretasapa' | 'bahuputra' | 'bahuputra-2' | 'dattaputra' | 'dattaputra-2' | 'aputra' | 'ekaputra' | 'suputra' | 'kalanirdesatputra' | 'kalanirdesatputra-2' | 'kalanirdesatputranasa' | 'kalanirdesatputranasa-2' | 'buddhimaturya' | 'theevrabuddhi' | 'buddhijada' | 'thrikalagnana' | 'putrasukha' | 'jara' | 'jarajaputra' | 'bahustree' | 'satkalatra' | 'bhagachumbana' | 'bhagya' | 'jananatpurvampitrumarana' | 'dhatrutwa' | 'apakeerti' | 'raja' | 'raja-2' | 'raja-3' | 'raja-4' | 'raja-5' | 'raja-6' | 'raja-7' | 'raja-8' | 'raja-9' | 'raja-10' | 'raja-11' | 'raja-12' | 'raja-13' | 'raja-14' | 'raja-15' | 'raja-16' | 'raja-17' | 'raja-18' | 'raja-19' | 'galakarna' | 'vrana' | 'sisnavyadhi' | 'kalatrashanda' | 'kushtaroga' | 'kushtaroga-2' | 'kshayaroga' | 'bandhana' | 'karascheda' | 'sirachcheda' | 'durmarana' | 'yuddhemarana' | 'sanghatakamarana' | 'sanghatakamarana-2' | 'peenasaroga' | 'pittaroga' | 'vikalangapatni' | 'putrakalatraheena' | 'bharyasahavyabhichara' | 'vamsacheda' | 'guhyaroga' | 'angaheena' | 'swetakushta' | 'pisachagrastha' | 'andha-2' | 'andha-3' | 'vatharoga' | 'matibhramana' | 'matibhramana-2' | 'matibhramana-3' | 'matibhramana-4' | 'khalwata' | 'nishturabhashi' | 'rajabhrashta' | 'raja-20' | 'raja-21' | 'gohanta';
12426
13073
  };
12427
13074
  query?: {
12428
13075
  /**
@@ -12700,7 +13347,7 @@ export type GetVedicAstrologyKpAyanamsaData = {
12700
13347
  path?: never;
12701
13348
  query?: {
12702
13349
  /**
12703
- * Date for ayanamsa calculation in YYYY-MM-DD format. Defaults to today if not provided. Ayanamsa changes by ~0.01° per month due to Earth's precession.
13350
+ * Date for ayanamsa calculation in YYYY-MM-DD format. Defaults to today if not provided. Ayanamsa changes by ~0.01 degrees per month due to the precession of Earth.
12704
13351
  */
12705
13352
  date?: string;
12706
13353
  };
@@ -14165,6 +14812,10 @@ export type PostVedicAstrologyAspectsMonthlyResponses = {
14165
14812
  * Month of the aspect analysis.
14166
14813
  */
14167
14814
  month: number;
14815
+ /**
14816
+ * Timezone offset from UTC in hours that the event dates and times are reported in. Echoes the requested timezone.
14817
+ */
14818
+ timezone: number;
14168
14819
  /**
14169
14820
  * All planetary aspect events detected during the month, sorted chronologically by closest approach date.
14170
14821
  */
@@ -14351,6 +15002,10 @@ export type PostVedicAstrologyAspectsLunarResponses = {
14351
15002
  * Month of the lunar aspect analysis.
14352
15003
  */
14353
15004
  month: number;
15005
+ /**
15006
+ * Timezone offset from UTC in hours that the event dates and times are reported in. Echoes the requested timezone.
15007
+ */
15008
+ timezone: number;
14354
15009
  /**
14355
15010
  * All Moon aspect events during the month, sorted chronologically. Moon completes one full cycle in approximately 27 days.
14356
15011
  */
@@ -15322,6 +15977,10 @@ export type PostVedicAstrologyEclipticCrossingsResponses = {
15322
15977
  * Year scanned for ecliptic crossings.
15323
15978
  */
15324
15979
  year: number;
15980
+ /**
15981
+ * Timezone offset from UTC in hours that the event dates and times are reported in. Echoes the requested timezone.
15982
+ */
15983
+ timezone: number;
15325
15984
  /**
15326
15985
  * All ecliptic crossing events for visible planets during the year, sorted chronologically.
15327
15986
  */
@@ -15484,7 +16143,7 @@ export type GetVedicAstrologyRashisByIdData = {
15484
16143
  /**
15485
16144
  * Rashi ID slug. One of: mesha, vrishabha, mithun, karka, simha, kanya, tula, vrischika, dhanu, makar, kumbha, meen.
15486
16145
  */
15487
- id: string;
16146
+ id: 'mesha' | 'vrishabha' | 'mithun' | 'karka' | 'simha' | 'kanya' | 'tula' | 'vrischika' | 'dhanu' | 'makar' | 'kumbha' | 'meen';
15488
16147
  };
15489
16148
  query?: {
15490
16149
  /**
@@ -15742,7 +16401,7 @@ export type GetVedicAstrologyNakshatrasByIdData = {
15742
16401
  /**
15743
16402
  * Nakshatra ID slug. Examples: ashwini, bharani, krittika, rohini, mrigashira, ardra, punarvasu, pushya, ashlesha, magha, etc.
15744
16403
  */
15745
- id: string;
16404
+ id: 'ashwini' | 'bharani' | 'krittika' | 'rohini' | 'mrigashira' | 'ardra' | 'punarvasu' | 'pushya' | 'ashlesha' | 'magha' | 'purva-phalguni' | 'uttara-phalguni' | 'hasta' | 'chitra' | 'swati' | 'vishakha' | 'anuradha' | 'jyeshtha' | 'moola' | 'purva-ashadha' | 'uttara-ashadha' | 'shravana' | 'dhanishta' | 'shatabhisha' | 'purva-bhadrapada' | 'uttara-bhadrapada' | 'revati';
15746
16405
  };
15747
16406
  query?: {
15748
16407
  /**
@@ -20577,40 +21236,7 @@ export type PostTarotDailyResponses = {
20577
21236
  * Seed used for this daily reading. Same seed on the same date always produces the identical card for reproducible daily divination.
20578
21237
  */
20579
21238
  seed: string;
20580
- card: {
20581
- /**
20582
- * Unique card identifier in kebab-case (e.g. the-fool, ace-of-cups).
20583
- */
20584
- id: string;
20585
- /**
20586
- * Display name of the tarot card.
20587
- */
20588
- name: string;
20589
- /**
20590
- * Whether this card belongs to the Major Arcana (22 trump cards, major life themes) or Minor Arcana (56 suit cards, daily situations).
20591
- */
20592
- arcana: 'major' | 'minor';
20593
- /**
20594
- * Position index of the card in the draw sequence (1-based).
20595
- */
20596
- position: number;
20597
- /**
20598
- * True if the card was drawn reversed (upside down). Reversed cards carry modified or blocked energy compared to upright position.
20599
- */
20600
- reversed: boolean;
20601
- /**
20602
- * Key themes and concepts associated with this card in its current orientation (upright or reversed).
20603
- */
20604
- keywords: Array<string>;
20605
- /**
20606
- * Full interpretation of this card in its current orientation, providing daily guidance and reflection.
20607
- */
20608
- meaning: string;
20609
- /**
20610
- * URL to the tarot card artwork image.
20611
- */
20612
- imageUrl: string;
20613
- };
21239
+ card: DrawnCard;
20614
21240
  /**
20615
21241
  * Concise daily tarot message summarizing the card, its orientation, key themes, and brief guidance for the day.
20616
21242
  */
@@ -20945,36 +21571,7 @@ export type PostTarotSpreadsThreeCardResponses = {
20945
21571
  * Position-specific interpretation of the drawn card, explaining how this card meaning applies to this particular spread position.
20946
21572
  */
20947
21573
  interpretation: string;
20948
- card: {
20949
- /**
20950
- * Unique card identifier in kebab-case (e.g. the-fool, ace-of-cups).
20951
- */
20952
- id: string;
20953
- /**
20954
- * Display name of the tarot card.
20955
- */
20956
- name: string;
20957
- /**
20958
- * Whether this card belongs to the Major Arcana (22 trump cards, major life themes) or Minor Arcana (56 suit cards, daily situations).
20959
- */
20960
- arcana: 'major' | 'minor';
20961
- /**
20962
- * True if the card was drawn reversed (upside down). Reversed cards carry modified or blocked energy compared to upright position.
20963
- */
20964
- reversed: boolean;
20965
- /**
20966
- * Key themes and concepts associated with this card in its current orientation (upright or reversed).
20967
- */
20968
- keywords: Array<string>;
20969
- /**
20970
- * Full interpretation of this card in its current orientation.
20971
- */
20972
- meaning: string;
20973
- /**
20974
- * URL to the tarot card artwork image.
20975
- */
20976
- imageUrl: string;
20977
- };
21574
+ card: DrawnCard;
20978
21575
  }>;
20979
21576
  /**
20980
21577
  * AI-generated narrative connecting all cards in the spread into a cohesive reading.
@@ -21132,36 +21729,7 @@ export type PostTarotSpreadsCelticCrossResponses = {
21132
21729
  * Position-specific interpretation of the drawn card, explaining how this card meaning applies to this particular spread position.
21133
21730
  */
21134
21731
  interpretation: string;
21135
- card: {
21136
- /**
21137
- * Unique card identifier in kebab-case (e.g. the-fool, ace-of-cups).
21138
- */
21139
- id: string;
21140
- /**
21141
- * Display name of the tarot card.
21142
- */
21143
- name: string;
21144
- /**
21145
- * Whether this card belongs to the Major Arcana (22 trump cards, major life themes) or Minor Arcana (56 suit cards, daily situations).
21146
- */
21147
- arcana: 'major' | 'minor';
21148
- /**
21149
- * True if the card was drawn reversed (upside down). Reversed cards carry modified or blocked energy compared to upright position.
21150
- */
21151
- reversed: boolean;
21152
- /**
21153
- * Key themes and concepts associated with this card in its current orientation (upright or reversed).
21154
- */
21155
- keywords: Array<string>;
21156
- /**
21157
- * Full interpretation of this card in its current orientation.
21158
- */
21159
- meaning: string;
21160
- /**
21161
- * URL to the tarot card artwork image.
21162
- */
21163
- imageUrl: string;
21164
- };
21732
+ card: DrawnCard;
21165
21733
  }>;
21166
21734
  /**
21167
21735
  * AI-generated narrative connecting all cards in the spread into a cohesive reading.
@@ -21319,36 +21887,7 @@ export type PostTarotSpreadsLoveResponses = {
21319
21887
  * Position-specific interpretation of the drawn card, explaining how this card meaning applies to this particular spread position.
21320
21888
  */
21321
21889
  interpretation: string;
21322
- card: {
21323
- /**
21324
- * Unique card identifier in kebab-case (e.g. the-fool, ace-of-cups).
21325
- */
21326
- id: string;
21327
- /**
21328
- * Display name of the tarot card.
21329
- */
21330
- name: string;
21331
- /**
21332
- * Whether this card belongs to the Major Arcana (22 trump cards, major life themes) or Minor Arcana (56 suit cards, daily situations).
21333
- */
21334
- arcana: 'major' | 'minor';
21335
- /**
21336
- * True if the card was drawn reversed (upside down). Reversed cards carry modified or blocked energy compared to upright position.
21337
- */
21338
- reversed: boolean;
21339
- /**
21340
- * Key themes and concepts associated with this card in its current orientation (upright or reversed).
21341
- */
21342
- keywords: Array<string>;
21343
- /**
21344
- * Full interpretation of this card in its current orientation.
21345
- */
21346
- meaning: string;
21347
- /**
21348
- * URL to the tarot card artwork image.
21349
- */
21350
- imageUrl: string;
21351
- };
21890
+ card: DrawnCard;
21352
21891
  }>;
21353
21892
  /**
21354
21893
  * AI-generated narrative connecting all cards in the spread into a cohesive reading.
@@ -21506,36 +22045,7 @@ export type PostTarotSpreadsCareerResponses = {
21506
22045
  * Position-specific interpretation of the drawn card, explaining how this card meaning applies to this particular spread position.
21507
22046
  */
21508
22047
  interpretation: string;
21509
- card: {
21510
- /**
21511
- * Unique card identifier in kebab-case (e.g. the-fool, ace-of-cups).
21512
- */
21513
- id: string;
21514
- /**
21515
- * Display name of the tarot card.
21516
- */
21517
- name: string;
21518
- /**
21519
- * Whether this card belongs to the Major Arcana (22 trump cards, major life themes) or Minor Arcana (56 suit cards, daily situations).
21520
- */
21521
- arcana: 'major' | 'minor';
21522
- /**
21523
- * True if the card was drawn reversed (upside down). Reversed cards carry modified or blocked energy compared to upright position.
21524
- */
21525
- reversed: boolean;
21526
- /**
21527
- * Key themes and concepts associated with this card in its current orientation (upright or reversed).
21528
- */
21529
- keywords: Array<string>;
21530
- /**
21531
- * Full interpretation of this card in its current orientation.
21532
- */
21533
- meaning: string;
21534
- /**
21535
- * URL to the tarot card artwork image.
21536
- */
21537
- imageUrl: string;
21538
- };
22048
+ card: DrawnCard;
21539
22049
  }>;
21540
22050
  /**
21541
22051
  * AI-generated narrative connecting all cards in the spread into a cohesive reading.
@@ -21716,36 +22226,7 @@ export type PostTarotSpreadsCustomResponses = {
21716
22226
  * Position-specific interpretation of the drawn card, explaining how this card meaning applies to this particular spread position.
21717
22227
  */
21718
22228
  interpretation: string;
21719
- card: {
21720
- /**
21721
- * Unique card identifier in kebab-case (e.g. the-fool, ace-of-cups).
21722
- */
21723
- id: string;
21724
- /**
21725
- * Display name of the tarot card.
21726
- */
21727
- name: string;
21728
- /**
21729
- * Whether this card belongs to the Major Arcana (22 trump cards, major life themes) or Minor Arcana (56 suit cards, daily situations).
21730
- */
21731
- arcana: 'major' | 'minor';
21732
- /**
21733
- * True if the card was drawn reversed (upside down). Reversed cards carry modified or blocked energy compared to upright position.
21734
- */
21735
- reversed: boolean;
21736
- /**
21737
- * Key themes and concepts associated with this card in its current orientation (upright or reversed).
21738
- */
21739
- keywords: Array<string>;
21740
- /**
21741
- * Full interpretation of this card in its current orientation.
21742
- */
21743
- meaning: string;
21744
- /**
21745
- * URL to the tarot card artwork image.
21746
- */
21747
- imageUrl: string;
21748
- };
22229
+ card: DrawnCard;
21749
22230
  }>;
21750
22231
  /**
21751
22232
  * AI-generated narrative connecting all cards in the spread into a cohesive reading.
@@ -23455,7 +23936,7 @@ export type GetIchingHexagramsData = {
23455
23936
  */
23456
23937
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
23457
23938
  /**
23458
- * Maximum items to return per page. Range: 1-20, default 20.
23939
+ * Maximum items to return per page. Range: 1-64, default 20.
23459
23940
  */
23460
23941
  limit?: number;
23461
23942
  /**