@roxyapi/sdk 1.2.29 → 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.
- package/dist/factory.cjs +5 -5
- package/dist/factory.js +5 -5
- package/dist/sdk.gen.d.ts +4 -4
- package/dist/types.gen.d.ts +679 -40
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/sdk.gen.ts +4 -4
- package/src/types.gen.ts +680 -41
- package/src/version.ts +1 -1
package/src/types.gen.ts
CHANGED
|
@@ -876,19 +876,564 @@ export type TransitsRequest = {
|
|
|
876
876
|
* Optional natal chart data to compare transits against
|
|
877
877
|
*/
|
|
878
878
|
natalChart?: {
|
|
879
|
+
/**
|
|
880
|
+
* Date in YYYY-MM-DD format.
|
|
881
|
+
*/
|
|
879
882
|
date: string;
|
|
883
|
+
/**
|
|
884
|
+
* Time in 24-hour HH:MM:SS format.
|
|
885
|
+
*/
|
|
880
886
|
time: string;
|
|
881
887
|
latitude: number;
|
|
882
888
|
longitude: number;
|
|
883
889
|
/**
|
|
884
|
-
* Natal timezone: decimal hours OR IANA name (e.g. "America/New_York"). IANA resolved to the DST-correct offset for the natal date.
|
|
890
|
+
* Natal timezone: decimal hours OR IANA name (e.g. "America/New_York"). IANA resolved to the DST-correct offset for the natal date.
|
|
891
|
+
*/
|
|
892
|
+
timezone: number | string;
|
|
893
|
+
};
|
|
894
|
+
};
|
|
895
|
+
|
|
896
|
+
export type BirthChartResponse = {
|
|
897
|
+
aries: {
|
|
898
|
+
/**
|
|
899
|
+
* Zodiac sign name in lowercase.
|
|
900
|
+
*/
|
|
901
|
+
rashi: string;
|
|
902
|
+
/**
|
|
903
|
+
* Planets placed in this zodiac sign.
|
|
904
|
+
*/
|
|
905
|
+
signs: Array<{
|
|
906
|
+
/**
|
|
907
|
+
* Planet (graha) placed in this sign.
|
|
908
|
+
*/
|
|
909
|
+
graha: string;
|
|
910
|
+
/**
|
|
911
|
+
* Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
|
|
912
|
+
*/
|
|
913
|
+
longitude: number;
|
|
914
|
+
nakshatra: {
|
|
915
|
+
/**
|
|
916
|
+
* Nakshatra (lunar mansion, 1 of 27) the planet occupies.
|
|
917
|
+
*/
|
|
918
|
+
name: string;
|
|
919
|
+
/**
|
|
920
|
+
* Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
|
|
921
|
+
*/
|
|
922
|
+
pada: number;
|
|
923
|
+
/**
|
|
924
|
+
* Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
|
|
925
|
+
*/
|
|
926
|
+
key: number;
|
|
927
|
+
/**
|
|
928
|
+
* 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.
|
|
929
|
+
*/
|
|
930
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
931
|
+
};
|
|
932
|
+
/**
|
|
933
|
+
* True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
|
|
934
|
+
*/
|
|
935
|
+
isRetrograde: boolean;
|
|
936
|
+
/**
|
|
937
|
+
* 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.
|
|
938
|
+
*/
|
|
939
|
+
house?: number;
|
|
940
|
+
/**
|
|
941
|
+
* 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.
|
|
942
|
+
*/
|
|
943
|
+
awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
|
|
944
|
+
}>;
|
|
945
|
+
};
|
|
946
|
+
taurus: {
|
|
947
|
+
/**
|
|
948
|
+
* Zodiac sign name in lowercase.
|
|
949
|
+
*/
|
|
950
|
+
rashi: string;
|
|
951
|
+
/**
|
|
952
|
+
* Planets placed in this zodiac sign.
|
|
953
|
+
*/
|
|
954
|
+
signs: Array<{
|
|
955
|
+
/**
|
|
956
|
+
* Planet (graha) placed in this sign.
|
|
957
|
+
*/
|
|
958
|
+
graha: string;
|
|
959
|
+
/**
|
|
960
|
+
* Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
|
|
961
|
+
*/
|
|
962
|
+
longitude: number;
|
|
963
|
+
nakshatra: {
|
|
964
|
+
/**
|
|
965
|
+
* Nakshatra (lunar mansion, 1 of 27) the planet occupies.
|
|
966
|
+
*/
|
|
967
|
+
name: string;
|
|
968
|
+
/**
|
|
969
|
+
* Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
|
|
970
|
+
*/
|
|
971
|
+
pada: number;
|
|
972
|
+
/**
|
|
973
|
+
* Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
|
|
974
|
+
*/
|
|
975
|
+
key: number;
|
|
976
|
+
/**
|
|
977
|
+
* 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.
|
|
978
|
+
*/
|
|
979
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
980
|
+
};
|
|
981
|
+
/**
|
|
982
|
+
* True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
|
|
983
|
+
*/
|
|
984
|
+
isRetrograde: boolean;
|
|
985
|
+
/**
|
|
986
|
+
* 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.
|
|
987
|
+
*/
|
|
988
|
+
house?: number;
|
|
989
|
+
/**
|
|
990
|
+
* 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.
|
|
991
|
+
*/
|
|
992
|
+
awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
|
|
993
|
+
}>;
|
|
994
|
+
};
|
|
995
|
+
gemini: {
|
|
996
|
+
/**
|
|
997
|
+
* Zodiac sign name in lowercase.
|
|
998
|
+
*/
|
|
999
|
+
rashi: string;
|
|
1000
|
+
/**
|
|
1001
|
+
* Planets placed in this zodiac sign.
|
|
1002
|
+
*/
|
|
1003
|
+
signs: Array<{
|
|
1004
|
+
/**
|
|
1005
|
+
* Planet (graha) placed in this sign.
|
|
1006
|
+
*/
|
|
1007
|
+
graha: string;
|
|
1008
|
+
/**
|
|
1009
|
+
* Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
|
|
1010
|
+
*/
|
|
1011
|
+
longitude: number;
|
|
1012
|
+
nakshatra: {
|
|
1013
|
+
/**
|
|
1014
|
+
* Nakshatra (lunar mansion, 1 of 27) the planet occupies.
|
|
1015
|
+
*/
|
|
1016
|
+
name: string;
|
|
1017
|
+
/**
|
|
1018
|
+
* Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
|
|
1019
|
+
*/
|
|
1020
|
+
pada: number;
|
|
1021
|
+
/**
|
|
1022
|
+
* Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
|
|
1023
|
+
*/
|
|
1024
|
+
key: number;
|
|
1025
|
+
/**
|
|
1026
|
+
* 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.
|
|
1027
|
+
*/
|
|
1028
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
1029
|
+
};
|
|
1030
|
+
/**
|
|
1031
|
+
* True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
|
|
1032
|
+
*/
|
|
1033
|
+
isRetrograde: boolean;
|
|
1034
|
+
/**
|
|
1035
|
+
* 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.
|
|
1036
|
+
*/
|
|
1037
|
+
house?: number;
|
|
1038
|
+
/**
|
|
1039
|
+
* 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.
|
|
1040
|
+
*/
|
|
1041
|
+
awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
|
|
1042
|
+
}>;
|
|
1043
|
+
};
|
|
1044
|
+
cancer: {
|
|
1045
|
+
/**
|
|
1046
|
+
* Zodiac sign name in lowercase.
|
|
1047
|
+
*/
|
|
1048
|
+
rashi: string;
|
|
1049
|
+
/**
|
|
1050
|
+
* Planets placed in this zodiac sign.
|
|
1051
|
+
*/
|
|
1052
|
+
signs: Array<{
|
|
1053
|
+
/**
|
|
1054
|
+
* Planet (graha) placed in this sign.
|
|
1055
|
+
*/
|
|
1056
|
+
graha: string;
|
|
1057
|
+
/**
|
|
1058
|
+
* Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
|
|
1059
|
+
*/
|
|
1060
|
+
longitude: number;
|
|
1061
|
+
nakshatra: {
|
|
1062
|
+
/**
|
|
1063
|
+
* Nakshatra (lunar mansion, 1 of 27) the planet occupies.
|
|
1064
|
+
*/
|
|
1065
|
+
name: string;
|
|
1066
|
+
/**
|
|
1067
|
+
* Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
|
|
1068
|
+
*/
|
|
1069
|
+
pada: number;
|
|
1070
|
+
/**
|
|
1071
|
+
* Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
|
|
1072
|
+
*/
|
|
1073
|
+
key: number;
|
|
1074
|
+
/**
|
|
1075
|
+
* Vimshottari ruling planet of this nakshatra. One of the nine grahas (Ketu, Venus, Sun, Moon, Mars, Rahu, Jupiter, Saturn, Mercury). Drives the dasha sequence and the nakshatra qualities.
|
|
1076
|
+
*/
|
|
1077
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
1078
|
+
};
|
|
1079
|
+
/**
|
|
1080
|
+
* True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
|
|
1081
|
+
*/
|
|
1082
|
+
isRetrograde: boolean;
|
|
1083
|
+
/**
|
|
1084
|
+
* 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.
|
|
1085
|
+
*/
|
|
1086
|
+
house?: number;
|
|
1087
|
+
/**
|
|
1088
|
+
* 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.
|
|
1089
|
+
*/
|
|
1090
|
+
awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
|
|
1091
|
+
}>;
|
|
1092
|
+
};
|
|
1093
|
+
leo: {
|
|
1094
|
+
/**
|
|
1095
|
+
* Zodiac sign name in lowercase.
|
|
1096
|
+
*/
|
|
1097
|
+
rashi: string;
|
|
1098
|
+
/**
|
|
1099
|
+
* Planets placed in this zodiac sign.
|
|
1100
|
+
*/
|
|
1101
|
+
signs: Array<{
|
|
1102
|
+
/**
|
|
1103
|
+
* Planet (graha) placed in this sign.
|
|
1104
|
+
*/
|
|
1105
|
+
graha: string;
|
|
1106
|
+
/**
|
|
1107
|
+
* Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
|
|
1108
|
+
*/
|
|
1109
|
+
longitude: number;
|
|
1110
|
+
nakshatra: {
|
|
1111
|
+
/**
|
|
1112
|
+
* Nakshatra (lunar mansion, 1 of 27) the planet occupies.
|
|
1113
|
+
*/
|
|
1114
|
+
name: string;
|
|
1115
|
+
/**
|
|
1116
|
+
* Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
|
|
1117
|
+
*/
|
|
1118
|
+
pada: number;
|
|
1119
|
+
/**
|
|
1120
|
+
* Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
|
|
1121
|
+
*/
|
|
1122
|
+
key: number;
|
|
1123
|
+
/**
|
|
1124
|
+
* 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.
|
|
1125
|
+
*/
|
|
1126
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
1127
|
+
};
|
|
1128
|
+
/**
|
|
1129
|
+
* True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
|
|
1130
|
+
*/
|
|
1131
|
+
isRetrograde: boolean;
|
|
1132
|
+
/**
|
|
1133
|
+
* 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.
|
|
1134
|
+
*/
|
|
1135
|
+
house?: number;
|
|
1136
|
+
/**
|
|
1137
|
+
* 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.
|
|
1138
|
+
*/
|
|
1139
|
+
awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
|
|
1140
|
+
}>;
|
|
1141
|
+
};
|
|
1142
|
+
virgo: {
|
|
1143
|
+
/**
|
|
1144
|
+
* Zodiac sign name in lowercase.
|
|
1145
|
+
*/
|
|
1146
|
+
rashi: string;
|
|
1147
|
+
/**
|
|
1148
|
+
* Planets placed in this zodiac sign.
|
|
1149
|
+
*/
|
|
1150
|
+
signs: Array<{
|
|
1151
|
+
/**
|
|
1152
|
+
* Planet (graha) placed in this sign.
|
|
1153
|
+
*/
|
|
1154
|
+
graha: string;
|
|
1155
|
+
/**
|
|
1156
|
+
* Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
|
|
1157
|
+
*/
|
|
1158
|
+
longitude: number;
|
|
1159
|
+
nakshatra: {
|
|
1160
|
+
/**
|
|
1161
|
+
* Nakshatra (lunar mansion, 1 of 27) the planet occupies.
|
|
1162
|
+
*/
|
|
1163
|
+
name: string;
|
|
1164
|
+
/**
|
|
1165
|
+
* Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
|
|
1166
|
+
*/
|
|
1167
|
+
pada: number;
|
|
1168
|
+
/**
|
|
1169
|
+
* Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
|
|
1170
|
+
*/
|
|
1171
|
+
key: number;
|
|
1172
|
+
/**
|
|
1173
|
+
* 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.
|
|
1174
|
+
*/
|
|
1175
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
1176
|
+
};
|
|
1177
|
+
/**
|
|
1178
|
+
* True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
|
|
1179
|
+
*/
|
|
1180
|
+
isRetrograde: boolean;
|
|
1181
|
+
/**
|
|
1182
|
+
* 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.
|
|
1183
|
+
*/
|
|
1184
|
+
house?: number;
|
|
1185
|
+
/**
|
|
1186
|
+
* 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.
|
|
1187
|
+
*/
|
|
1188
|
+
awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
|
|
1189
|
+
}>;
|
|
1190
|
+
};
|
|
1191
|
+
libra: {
|
|
1192
|
+
/**
|
|
1193
|
+
* Zodiac sign name in lowercase.
|
|
1194
|
+
*/
|
|
1195
|
+
rashi: string;
|
|
1196
|
+
/**
|
|
1197
|
+
* Planets placed in this zodiac sign.
|
|
1198
|
+
*/
|
|
1199
|
+
signs: Array<{
|
|
1200
|
+
/**
|
|
1201
|
+
* Planet (graha) placed in this sign.
|
|
1202
|
+
*/
|
|
1203
|
+
graha: string;
|
|
1204
|
+
/**
|
|
1205
|
+
* Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
|
|
1206
|
+
*/
|
|
1207
|
+
longitude: number;
|
|
1208
|
+
nakshatra: {
|
|
1209
|
+
/**
|
|
1210
|
+
* Nakshatra (lunar mansion, 1 of 27) the planet occupies.
|
|
1211
|
+
*/
|
|
1212
|
+
name: string;
|
|
1213
|
+
/**
|
|
1214
|
+
* Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
|
|
1215
|
+
*/
|
|
1216
|
+
pada: number;
|
|
1217
|
+
/**
|
|
1218
|
+
* Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
|
|
1219
|
+
*/
|
|
1220
|
+
key: number;
|
|
1221
|
+
/**
|
|
1222
|
+
* 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.
|
|
1223
|
+
*/
|
|
1224
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
1225
|
+
};
|
|
1226
|
+
/**
|
|
1227
|
+
* True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
|
|
1228
|
+
*/
|
|
1229
|
+
isRetrograde: boolean;
|
|
1230
|
+
/**
|
|
1231
|
+
* 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.
|
|
1232
|
+
*/
|
|
1233
|
+
house?: number;
|
|
1234
|
+
/**
|
|
1235
|
+
* 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.
|
|
1236
|
+
*/
|
|
1237
|
+
awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
|
|
1238
|
+
}>;
|
|
1239
|
+
};
|
|
1240
|
+
scorpio: {
|
|
1241
|
+
/**
|
|
1242
|
+
* Zodiac sign name in lowercase.
|
|
885
1243
|
*/
|
|
886
|
-
|
|
1244
|
+
rashi: string;
|
|
1245
|
+
/**
|
|
1246
|
+
* Planets placed in this zodiac sign.
|
|
1247
|
+
*/
|
|
1248
|
+
signs: Array<{
|
|
1249
|
+
/**
|
|
1250
|
+
* Planet (graha) placed in this sign.
|
|
1251
|
+
*/
|
|
1252
|
+
graha: string;
|
|
1253
|
+
/**
|
|
1254
|
+
* Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
|
|
1255
|
+
*/
|
|
1256
|
+
longitude: number;
|
|
1257
|
+
nakshatra: {
|
|
1258
|
+
/**
|
|
1259
|
+
* Nakshatra (lunar mansion, 1 of 27) the planet occupies.
|
|
1260
|
+
*/
|
|
1261
|
+
name: string;
|
|
1262
|
+
/**
|
|
1263
|
+
* Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
|
|
1264
|
+
*/
|
|
1265
|
+
pada: number;
|
|
1266
|
+
/**
|
|
1267
|
+
* Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
|
|
1268
|
+
*/
|
|
1269
|
+
key: number;
|
|
1270
|
+
/**
|
|
1271
|
+
* 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.
|
|
1272
|
+
*/
|
|
1273
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
1274
|
+
};
|
|
1275
|
+
/**
|
|
1276
|
+
* True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
|
|
1277
|
+
*/
|
|
1278
|
+
isRetrograde: boolean;
|
|
1279
|
+
/**
|
|
1280
|
+
* 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.
|
|
1281
|
+
*/
|
|
1282
|
+
house?: number;
|
|
1283
|
+
/**
|
|
1284
|
+
* 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.
|
|
1285
|
+
*/
|
|
1286
|
+
awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
|
|
1287
|
+
}>;
|
|
887
1288
|
};
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
1289
|
+
sagittarius: {
|
|
1290
|
+
/**
|
|
1291
|
+
* Zodiac sign name in lowercase.
|
|
1292
|
+
*/
|
|
1293
|
+
rashi: string;
|
|
1294
|
+
/**
|
|
1295
|
+
* Planets placed in this zodiac sign.
|
|
1296
|
+
*/
|
|
1297
|
+
signs: Array<{
|
|
1298
|
+
/**
|
|
1299
|
+
* Planet (graha) placed in this sign.
|
|
1300
|
+
*/
|
|
1301
|
+
graha: string;
|
|
1302
|
+
/**
|
|
1303
|
+
* Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
|
|
1304
|
+
*/
|
|
1305
|
+
longitude: number;
|
|
1306
|
+
nakshatra: {
|
|
1307
|
+
/**
|
|
1308
|
+
* Nakshatra (lunar mansion, 1 of 27) the planet occupies.
|
|
1309
|
+
*/
|
|
1310
|
+
name: string;
|
|
1311
|
+
/**
|
|
1312
|
+
* Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
|
|
1313
|
+
*/
|
|
1314
|
+
pada: number;
|
|
1315
|
+
/**
|
|
1316
|
+
* Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
|
|
1317
|
+
*/
|
|
1318
|
+
key: number;
|
|
1319
|
+
/**
|
|
1320
|
+
* 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.
|
|
1321
|
+
*/
|
|
1322
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
1323
|
+
};
|
|
1324
|
+
/**
|
|
1325
|
+
* True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
|
|
1326
|
+
*/
|
|
1327
|
+
isRetrograde: boolean;
|
|
1328
|
+
/**
|
|
1329
|
+
* 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.
|
|
1330
|
+
*/
|
|
1331
|
+
house?: number;
|
|
1332
|
+
/**
|
|
1333
|
+
* 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.
|
|
1334
|
+
*/
|
|
1335
|
+
awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
|
|
1336
|
+
}>;
|
|
1337
|
+
};
|
|
1338
|
+
capricorn: {
|
|
1339
|
+
/**
|
|
1340
|
+
* Zodiac sign name in lowercase.
|
|
1341
|
+
*/
|
|
1342
|
+
rashi: string;
|
|
1343
|
+
/**
|
|
1344
|
+
* Planets placed in this zodiac sign.
|
|
1345
|
+
*/
|
|
1346
|
+
signs: Array<{
|
|
1347
|
+
/**
|
|
1348
|
+
* Planet (graha) placed in this sign.
|
|
1349
|
+
*/
|
|
1350
|
+
graha: string;
|
|
1351
|
+
/**
|
|
1352
|
+
* Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
|
|
1353
|
+
*/
|
|
1354
|
+
longitude: number;
|
|
1355
|
+
nakshatra: {
|
|
1356
|
+
/**
|
|
1357
|
+
* Nakshatra (lunar mansion, 1 of 27) the planet occupies.
|
|
1358
|
+
*/
|
|
1359
|
+
name: string;
|
|
1360
|
+
/**
|
|
1361
|
+
* Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
|
|
1362
|
+
*/
|
|
1363
|
+
pada: number;
|
|
1364
|
+
/**
|
|
1365
|
+
* Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
|
|
1366
|
+
*/
|
|
1367
|
+
key: number;
|
|
1368
|
+
/**
|
|
1369
|
+
* 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.
|
|
1370
|
+
*/
|
|
1371
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
1372
|
+
};
|
|
1373
|
+
/**
|
|
1374
|
+
* True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
|
|
1375
|
+
*/
|
|
1376
|
+
isRetrograde: boolean;
|
|
1377
|
+
/**
|
|
1378
|
+
* 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.
|
|
1379
|
+
*/
|
|
1380
|
+
house?: number;
|
|
1381
|
+
/**
|
|
1382
|
+
* 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.
|
|
1383
|
+
*/
|
|
1384
|
+
awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
|
|
1385
|
+
}>;
|
|
1386
|
+
};
|
|
1387
|
+
aquarius: {
|
|
1388
|
+
/**
|
|
1389
|
+
* Zodiac sign name in lowercase.
|
|
1390
|
+
*/
|
|
1391
|
+
rashi: string;
|
|
1392
|
+
/**
|
|
1393
|
+
* Planets placed in this zodiac sign.
|
|
1394
|
+
*/
|
|
1395
|
+
signs: Array<{
|
|
1396
|
+
/**
|
|
1397
|
+
* Planet (graha) placed in this sign.
|
|
1398
|
+
*/
|
|
1399
|
+
graha: string;
|
|
1400
|
+
/**
|
|
1401
|
+
* Sidereal longitude in degrees (0-360) using Lahiri ayanamsa.
|
|
1402
|
+
*/
|
|
1403
|
+
longitude: number;
|
|
1404
|
+
nakshatra: {
|
|
1405
|
+
/**
|
|
1406
|
+
* Nakshatra (lunar mansion, 1 of 27) the planet occupies.
|
|
1407
|
+
*/
|
|
1408
|
+
name: string;
|
|
1409
|
+
/**
|
|
1410
|
+
* Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
|
|
1411
|
+
*/
|
|
1412
|
+
pada: number;
|
|
1413
|
+
/**
|
|
1414
|
+
* Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
|
|
1415
|
+
*/
|
|
1416
|
+
key: number;
|
|
1417
|
+
/**
|
|
1418
|
+
* 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.
|
|
1419
|
+
*/
|
|
1420
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
1421
|
+
};
|
|
1422
|
+
/**
|
|
1423
|
+
* True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
|
|
1424
|
+
*/
|
|
1425
|
+
isRetrograde: boolean;
|
|
1426
|
+
/**
|
|
1427
|
+
* 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.
|
|
1428
|
+
*/
|
|
1429
|
+
house?: number;
|
|
1430
|
+
/**
|
|
1431
|
+
* 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.
|
|
1432
|
+
*/
|
|
1433
|
+
awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
|
|
1434
|
+
}>;
|
|
1435
|
+
};
|
|
1436
|
+
pisces: {
|
|
892
1437
|
/**
|
|
893
1438
|
* Zodiac sign name in lowercase.
|
|
894
1439
|
*/
|
|
@@ -911,7 +1456,7 @@ export type BirthChartResponse = {
|
|
|
911
1456
|
*/
|
|
912
1457
|
name: string;
|
|
913
1458
|
/**
|
|
914
|
-
* Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3
|
|
1459
|
+
* Nakshatra pada (quarter, 1-4). Each nakshatra has 4 padas of 3 degrees 20 each.
|
|
915
1460
|
*/
|
|
916
1461
|
pada: number;
|
|
917
1462
|
/**
|
|
@@ -937,6 +1482,76 @@ export type BirthChartResponse = {
|
|
|
937
1482
|
awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
|
|
938
1483
|
}>;
|
|
939
1484
|
};
|
|
1485
|
+
/**
|
|
1486
|
+
* The twelve bhavas (houses) in order, each with its classical name and significations. Houses are counted whole-sign from the Lagna.
|
|
1487
|
+
*/
|
|
1488
|
+
houses: Array<{
|
|
1489
|
+
/**
|
|
1490
|
+
* Bhava (house) number 1-12. House 1 is the Lagna (Ascendant), house 7 the partnership axis, house 10 the career axis.
|
|
1491
|
+
*/
|
|
1492
|
+
number: number;
|
|
1493
|
+
/**
|
|
1494
|
+
* Classical name of the bhava (house). Present when an interpretation entry exists for this house.
|
|
1495
|
+
*/
|
|
1496
|
+
name?: string;
|
|
1497
|
+
/**
|
|
1498
|
+
* Significations of the bhava (house). Present when an interpretation entry exists for this house.
|
|
1499
|
+
*/
|
|
1500
|
+
description?: string;
|
|
1501
|
+
}>;
|
|
1502
|
+
/**
|
|
1503
|
+
* Combust planets (astangata graha): grahas within their combustion orb of the Sun. Combustion weakens a planet significations. Empty when no planet is combust.
|
|
1504
|
+
*/
|
|
1505
|
+
combustion: Array<{
|
|
1506
|
+
/**
|
|
1507
|
+
* Graha that is combust (too close to the Sun, astangata).
|
|
1508
|
+
*/
|
|
1509
|
+
planet: string;
|
|
1510
|
+
/**
|
|
1511
|
+
* Angular separation from the Sun in degrees.
|
|
1512
|
+
*/
|
|
1513
|
+
distanceFromSun: number;
|
|
1514
|
+
/**
|
|
1515
|
+
* Combustion orb in degrees applied for this graha. A planet within this orb of the Sun is treated as combust, weakening its results.
|
|
1516
|
+
*/
|
|
1517
|
+
orb: number;
|
|
1518
|
+
}>;
|
|
1519
|
+
/**
|
|
1520
|
+
* Planetary wars (graha yuddha): pairs of visible planets within 1 degree of each other. Empty when no two planets are in war.
|
|
1521
|
+
*/
|
|
1522
|
+
planetaryWar: Array<{
|
|
1523
|
+
/**
|
|
1524
|
+
* First graha in the planetary war (graha yuddha) pair.
|
|
1525
|
+
*/
|
|
1526
|
+
planet1: string;
|
|
1527
|
+
/**
|
|
1528
|
+
* Second graha in the planetary war (graha yuddha) pair.
|
|
1529
|
+
*/
|
|
1530
|
+
planet2: string;
|
|
1531
|
+
/**
|
|
1532
|
+
* Angular separation between the two grahas in degrees.
|
|
1533
|
+
*/
|
|
1534
|
+
distance: number;
|
|
1535
|
+
/**
|
|
1536
|
+
* Graha that wins the planetary war, the one with the more northerly ecliptic latitude. The winner keeps its strength, the loser is weakened.
|
|
1537
|
+
*/
|
|
1538
|
+
winner: string;
|
|
1539
|
+
}>;
|
|
1540
|
+
/**
|
|
1541
|
+
* Planet-in-rashi and planet-in-nakshatra interpretation summaries, keyed by planet name. Translated when a supported lang is requested.
|
|
1542
|
+
*/
|
|
1543
|
+
interpretations: {
|
|
1544
|
+
[key: string]: {
|
|
1545
|
+
/**
|
|
1546
|
+
* Interpretation of the planet placement in its rashi (sign).
|
|
1547
|
+
*/
|
|
1548
|
+
rashi: string;
|
|
1549
|
+
/**
|
|
1550
|
+
* Interpretation of the planet placement in its nakshatra.
|
|
1551
|
+
*/
|
|
1552
|
+
nakshatra: string;
|
|
1553
|
+
};
|
|
1554
|
+
};
|
|
940
1555
|
/**
|
|
941
1556
|
* 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
1557
|
*/
|
|
@@ -1030,7 +1645,7 @@ export type BirthChartRequest = {
|
|
|
1030
1645
|
*/
|
|
1031
1646
|
date: string;
|
|
1032
1647
|
/**
|
|
1033
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
1648
|
+
* 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.
|
|
1034
1649
|
*/
|
|
1035
1650
|
time: string;
|
|
1036
1651
|
/**
|
|
@@ -1169,7 +1784,7 @@ export type NavamsaRequest = {
|
|
|
1169
1784
|
*/
|
|
1170
1785
|
date: string;
|
|
1171
1786
|
/**
|
|
1172
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
1787
|
+
* 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.
|
|
1173
1788
|
*/
|
|
1174
1789
|
time: string;
|
|
1175
1790
|
/**
|
|
@@ -1329,7 +1944,7 @@ export type DivisionalChartRequest = {
|
|
|
1329
1944
|
*/
|
|
1330
1945
|
date: string;
|
|
1331
1946
|
/**
|
|
1332
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
1947
|
+
* 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.
|
|
1333
1948
|
*/
|
|
1334
1949
|
time: string;
|
|
1335
1950
|
/**
|
|
@@ -1429,7 +2044,7 @@ export type CompatibilityRequest = {
|
|
|
1429
2044
|
*/
|
|
1430
2045
|
date: string;
|
|
1431
2046
|
/**
|
|
1432
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
2047
|
+
* 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.
|
|
1433
2048
|
*/
|
|
1434
2049
|
time: string;
|
|
1435
2050
|
/**
|
|
@@ -1454,7 +2069,7 @@ export type CompatibilityRequest = {
|
|
|
1454
2069
|
*/
|
|
1455
2070
|
date: string;
|
|
1456
2071
|
/**
|
|
1457
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
2072
|
+
* 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.
|
|
1458
2073
|
*/
|
|
1459
2074
|
time: string;
|
|
1460
2075
|
/**
|
|
@@ -1486,6 +2101,10 @@ export type PlanetaryPositionsResponse = {
|
|
|
1486
2101
|
* Sidereal longitude in degrees (0-360) using Lahiri ayanamsa. Precise planetary position for chart calculations.
|
|
1487
2102
|
*/
|
|
1488
2103
|
longitude: number;
|
|
2104
|
+
/**
|
|
2105
|
+
* 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).
|
|
2106
|
+
*/
|
|
2107
|
+
latitude?: number;
|
|
1489
2108
|
/**
|
|
1490
2109
|
* 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.
|
|
1491
2110
|
*/
|
|
@@ -1552,6 +2171,10 @@ export type PlanetaryPositionsResponse = {
|
|
|
1552
2171
|
* 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.
|
|
1553
2172
|
*/
|
|
1554
2173
|
combustionDistance?: number;
|
|
2174
|
+
/**
|
|
2175
|
+
* 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.
|
|
2176
|
+
*/
|
|
2177
|
+
awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
|
|
1555
2178
|
};
|
|
1556
2179
|
};
|
|
1557
2180
|
|
|
@@ -1561,7 +2184,7 @@ export type PlanetaryPositionsRequest = {
|
|
|
1561
2184
|
*/
|
|
1562
2185
|
date: string;
|
|
1563
2186
|
/**
|
|
1564
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
2187
|
+
* 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.
|
|
1565
2188
|
*/
|
|
1566
2189
|
time: string;
|
|
1567
2190
|
/**
|
|
@@ -1628,7 +2251,7 @@ export type ManglikRequest = {
|
|
|
1628
2251
|
*/
|
|
1629
2252
|
date: string;
|
|
1630
2253
|
/**
|
|
1631
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
2254
|
+
* 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.
|
|
1632
2255
|
*/
|
|
1633
2256
|
time: string;
|
|
1634
2257
|
/**
|
|
@@ -1703,7 +2326,7 @@ export type KalsarpaRequest = {
|
|
|
1703
2326
|
*/
|
|
1704
2327
|
date: string;
|
|
1705
2328
|
/**
|
|
1706
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
2329
|
+
* 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.
|
|
1707
2330
|
*/
|
|
1708
2331
|
time: string;
|
|
1709
2332
|
/**
|
|
@@ -1764,7 +2387,7 @@ export type SadhesatiRequest = {
|
|
|
1764
2387
|
*/
|
|
1765
2388
|
date: string;
|
|
1766
2389
|
/**
|
|
1767
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
2390
|
+
* 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.
|
|
1768
2391
|
*/
|
|
1769
2392
|
time: string;
|
|
1770
2393
|
/**
|
|
@@ -1837,7 +2460,7 @@ export type YogaDetectRequest = {
|
|
|
1837
2460
|
*/
|
|
1838
2461
|
date: string;
|
|
1839
2462
|
/**
|
|
1840
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
2463
|
+
* 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.
|
|
1841
2464
|
*/
|
|
1842
2465
|
time: string;
|
|
1843
2466
|
/**
|
|
@@ -3193,7 +3816,7 @@ export type UpagrahaRequest = {
|
|
|
3193
3816
|
*/
|
|
3194
3817
|
date: string;
|
|
3195
3818
|
/**
|
|
3196
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
3819
|
+
* 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.
|
|
3197
3820
|
*/
|
|
3198
3821
|
time: string;
|
|
3199
3822
|
/**
|
|
@@ -3307,7 +3930,7 @@ export type AshtakavargaRequest = {
|
|
|
3307
3930
|
*/
|
|
3308
3931
|
date: string;
|
|
3309
3932
|
/**
|
|
3310
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
3933
|
+
* 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.
|
|
3311
3934
|
*/
|
|
3312
3935
|
time: string;
|
|
3313
3936
|
/**
|
|
@@ -3397,7 +4020,7 @@ export type ShadbalaRequest = {
|
|
|
3397
4020
|
*/
|
|
3398
4021
|
date: string;
|
|
3399
4022
|
/**
|
|
3400
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
4023
|
+
* 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.
|
|
3401
4024
|
*/
|
|
3402
4025
|
time: string;
|
|
3403
4026
|
/**
|
|
@@ -4576,6 +5199,10 @@ export type GetAstrologyPlanetMeaningsByIdResponses = {
|
|
|
4576
5199
|
/**
|
|
4577
5200
|
* Sign of exaltation. Where the planet is honored and amplified. Absent for the lunar nodes, Chiron, and Black Moon Lilith.
|
|
4578
5201
|
*/
|
|
5202
|
+
exaltation?: string;
|
|
5203
|
+
/**
|
|
5204
|
+
* Deprecated: use exaltation. Retained for backward compatibility, scheduled for removal in v3. Sign of exaltation, carrying the same value as the exaltation field.
|
|
5205
|
+
*/
|
|
4579
5206
|
exultation?: string;
|
|
4580
5207
|
/**
|
|
4581
5208
|
* Sign of fall. Opposite the exaltation sign, where the planet is weakened. Absent for the lunar nodes, Chiron, and Black Moon Lilith.
|
|
@@ -5825,11 +6452,11 @@ export type PostAstrologyHousesData = {
|
|
|
5825
6452
|
*/
|
|
5826
6453
|
time: string;
|
|
5827
6454
|
/**
|
|
5828
|
-
* 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.
|
|
6455
|
+
* 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.
|
|
5829
6456
|
*/
|
|
5830
6457
|
latitude: number;
|
|
5831
6458
|
/**
|
|
5832
|
-
* Birth location longitude in decimal degrees. Affects local time and horizon calculations for house cusps.
|
|
6459
|
+
* Birth location longitude in decimal degrees (-180 to 180). Affects local time and horizon calculations for house cusps.
|
|
5833
6460
|
*/
|
|
5834
6461
|
longitude: number;
|
|
5835
6462
|
/**
|
|
@@ -6735,11 +7362,11 @@ export type PostAstrologySolarReturnData = {
|
|
|
6735
7362
|
*/
|
|
6736
7363
|
returnYear: number;
|
|
6737
7364
|
/**
|
|
6738
|
-
* Latitude of the solar return location in decimal degrees. Use current residence or travel location at time of birthday
|
|
7365
|
+
* 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.
|
|
6739
7366
|
*/
|
|
6740
7367
|
latitude: number;
|
|
6741
7368
|
/**
|
|
6742
|
-
* Longitude of the solar return location in decimal degrees. Affects house cusps and Ascendant of the return chart.
|
|
7369
|
+
* Longitude of the solar return location in decimal degrees (-180 to 180). Affects house cusps and Ascendant of the return chart.
|
|
6743
7370
|
*/
|
|
6744
7371
|
longitude: number;
|
|
6745
7372
|
/**
|
|
@@ -6875,7 +7502,7 @@ export type PostAstrologySolarReturnResponses = {
|
|
|
6875
7502
|
*/
|
|
6876
7503
|
birthDate: string;
|
|
6877
7504
|
/**
|
|
6878
|
-
* Exact solar return moment
|
|
7505
|
+
* 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.
|
|
6879
7506
|
*/
|
|
6880
7507
|
solarReturnDate: string;
|
|
6881
7508
|
/**
|
|
@@ -6883,7 +7510,7 @@ export type PostAstrologySolarReturnResponses = {
|
|
|
6883
7510
|
*/
|
|
6884
7511
|
solarReturnYear: number;
|
|
6885
7512
|
/**
|
|
6886
|
-
* Location used for the solar return chart. The Ascendant and house cusps change based on where you are at your birthday
|
|
7513
|
+
* 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.
|
|
6887
7514
|
*/
|
|
6888
7515
|
location: {
|
|
6889
7516
|
/**
|
|
@@ -7120,11 +7747,11 @@ export type PostAstrologyLunarReturnData = {
|
|
|
7120
7747
|
*/
|
|
7121
7748
|
returnDate: string;
|
|
7122
7749
|
/**
|
|
7123
|
-
* Latitude of the lunar return location in decimal degrees. Affects the Ascendant and house cusps of the return chart.
|
|
7750
|
+
* Latitude of the lunar return location in decimal degrees (-90 to 90). Affects the Ascendant and house cusps of the return chart.
|
|
7124
7751
|
*/
|
|
7125
7752
|
latitude: number;
|
|
7126
7753
|
/**
|
|
7127
|
-
* Longitude of the lunar return location in decimal degrees. Determines local sidereal time for house calculations.
|
|
7754
|
+
* Longitude of the lunar return location in decimal degrees (-180 to 180). Determines local sidereal time for house calculations.
|
|
7128
7755
|
*/
|
|
7129
7756
|
longitude: number;
|
|
7130
7757
|
/**
|
|
@@ -7260,7 +7887,7 @@ export type PostAstrologyLunarReturnResponses = {
|
|
|
7260
7887
|
*/
|
|
7261
7888
|
birthDate: string;
|
|
7262
7889
|
/**
|
|
7263
|
-
* Exact lunar return moment
|
|
7890
|
+
* 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).
|
|
7264
7891
|
*/
|
|
7265
7892
|
lunarReturnDate: string;
|
|
7266
7893
|
/**
|
|
@@ -8998,15 +9625,15 @@ export type PostAstrologyPlanetaryReturnsData = {
|
|
|
8998
9625
|
*/
|
|
8999
9626
|
planet: 'Mercury' | 'Venus' | 'Mars' | 'Jupiter' | 'Saturn';
|
|
9000
9627
|
/**
|
|
9001
|
-
* Approximate date near the expected planetary return (YYYY-MM-DD). Provide a date within the expected return window
|
|
9628
|
+
* 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.
|
|
9002
9629
|
*/
|
|
9003
9630
|
approximateDate: string;
|
|
9004
9631
|
/**
|
|
9005
|
-
* Latitude of the return location in decimal degrees. Affects house cusps and Ascendant of the return chart.
|
|
9632
|
+
* Latitude of the return location in decimal degrees (-90 to 90). Affects house cusps and Ascendant of the return chart.
|
|
9006
9633
|
*/
|
|
9007
9634
|
latitude: number;
|
|
9008
9635
|
/**
|
|
9009
|
-
* Longitude of the return location in decimal degrees.
|
|
9636
|
+
* Longitude of the return location in decimal degrees (-180 to 180).
|
|
9010
9637
|
*/
|
|
9011
9638
|
longitude: number;
|
|
9012
9639
|
/**
|
|
@@ -9146,7 +9773,7 @@ export type PostAstrologyPlanetaryReturnsResponses = {
|
|
|
9146
9773
|
*/
|
|
9147
9774
|
planet: string;
|
|
9148
9775
|
/**
|
|
9149
|
-
* Exact planetary return moment
|
|
9776
|
+
* 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.
|
|
9150
9777
|
*/
|
|
9151
9778
|
returnDate: string;
|
|
9152
9779
|
/**
|
|
@@ -10170,7 +10797,7 @@ export type PostVedicAstrologyDashaCurrentData = {
|
|
|
10170
10797
|
*/
|
|
10171
10798
|
date: string;
|
|
10172
10799
|
/**
|
|
10173
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
10800
|
+
* 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.
|
|
10174
10801
|
*/
|
|
10175
10802
|
time: string;
|
|
10176
10803
|
/**
|
|
@@ -10479,7 +11106,7 @@ export type PostVedicAstrologyDashaMajorData = {
|
|
|
10479
11106
|
*/
|
|
10480
11107
|
date: string;
|
|
10481
11108
|
/**
|
|
10482
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
11109
|
+
* 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.
|
|
10483
11110
|
*/
|
|
10484
11111
|
time: string;
|
|
10485
11112
|
/**
|
|
@@ -10688,7 +11315,7 @@ export type PostVedicAstrologyDashaSubByMahadashaData = {
|
|
|
10688
11315
|
*/
|
|
10689
11316
|
date: string;
|
|
10690
11317
|
/**
|
|
10691
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
11318
|
+
* 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.
|
|
10692
11319
|
*/
|
|
10693
11320
|
time: string;
|
|
10694
11321
|
/**
|
|
@@ -12708,7 +13335,7 @@ export type GetVedicAstrologyYogaByIdData = {
|
|
|
12708
13335
|
/**
|
|
12709
13336
|
* Yoga identifier (lowercase, hyphenated)
|
|
12710
13337
|
*/
|
|
12711
|
-
id:
|
|
13338
|
+
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';
|
|
12712
13339
|
};
|
|
12713
13340
|
query?: {
|
|
12714
13341
|
/**
|
|
@@ -12996,7 +13623,7 @@ export type GetVedicAstrologyKpAyanamsaData = {
|
|
|
12996
13623
|
path?: never;
|
|
12997
13624
|
query?: {
|
|
12998
13625
|
/**
|
|
12999
|
-
* Date for ayanamsa calculation in YYYY-MM-DD format. Defaults to today if not provided. Ayanamsa changes by ~0.01
|
|
13626
|
+
* 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.
|
|
13000
13627
|
*/
|
|
13001
13628
|
date?: string;
|
|
13002
13629
|
};
|
|
@@ -14514,6 +15141,10 @@ export type PostVedicAstrologyAspectsMonthlyResponses = {
|
|
|
14514
15141
|
* Month of the aspect analysis.
|
|
14515
15142
|
*/
|
|
14516
15143
|
month: number;
|
|
15144
|
+
/**
|
|
15145
|
+
* Timezone offset from UTC in hours that the event dates and times are reported in. Echoes the requested timezone.
|
|
15146
|
+
*/
|
|
15147
|
+
timezone: number;
|
|
14517
15148
|
/**
|
|
14518
15149
|
* All planetary aspect events detected during the month, sorted chronologically by closest approach date.
|
|
14519
15150
|
*/
|
|
@@ -14705,6 +15336,10 @@ export type PostVedicAstrologyAspectsLunarResponses = {
|
|
|
14705
15336
|
* Month of the lunar aspect analysis.
|
|
14706
15337
|
*/
|
|
14707
15338
|
month: number;
|
|
15339
|
+
/**
|
|
15340
|
+
* Timezone offset from UTC in hours that the event dates and times are reported in. Echoes the requested timezone.
|
|
15341
|
+
*/
|
|
15342
|
+
timezone: number;
|
|
14708
15343
|
/**
|
|
14709
15344
|
* All Moon aspect events during the month, sorted chronologically. Moon completes one full cycle in approximately 27 days.
|
|
14710
15345
|
*/
|
|
@@ -15701,6 +16336,10 @@ export type PostVedicAstrologyEclipticCrossingsResponses = {
|
|
|
15701
16336
|
* Year scanned for ecliptic crossings.
|
|
15702
16337
|
*/
|
|
15703
16338
|
year: number;
|
|
16339
|
+
/**
|
|
16340
|
+
* Timezone offset from UTC in hours that the event dates and times are reported in. Echoes the requested timezone.
|
|
16341
|
+
*/
|
|
16342
|
+
timezone: number;
|
|
15704
16343
|
/**
|
|
15705
16344
|
* All ecliptic crossing events for visible planets during the year, sorted chronologically.
|
|
15706
16345
|
*/
|
|
@@ -15870,7 +16509,7 @@ export type GetVedicAstrologyRashisByIdData = {
|
|
|
15870
16509
|
/**
|
|
15871
16510
|
* Rashi ID slug. One of: mesha, vrishabha, mithun, karka, simha, kanya, tula, vrischika, dhanu, makar, kumbha, meen.
|
|
15872
16511
|
*/
|
|
15873
|
-
id:
|
|
16512
|
+
id: 'mesha' | 'vrishabha' | 'mithun' | 'karka' | 'simha' | 'kanya' | 'tula' | 'vrischika' | 'dhanu' | 'makar' | 'kumbha' | 'meen';
|
|
15874
16513
|
};
|
|
15875
16514
|
query?: {
|
|
15876
16515
|
/**
|
|
@@ -16138,7 +16777,7 @@ export type GetVedicAstrologyNakshatrasByIdData = {
|
|
|
16138
16777
|
/**
|
|
16139
16778
|
* Nakshatra ID slug. Examples: ashwini, bharani, krittika, rohini, mrigashira, ardra, punarvasu, pushya, ashlesha, magha, etc.
|
|
16140
16779
|
*/
|
|
16141
|
-
id:
|
|
16780
|
+
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';
|
|
16142
16781
|
};
|
|
16143
16782
|
query?: {
|
|
16144
16783
|
/**
|
|
@@ -23863,7 +24502,7 @@ export type GetIchingHexagramsData = {
|
|
|
23863
24502
|
*/
|
|
23864
24503
|
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
23865
24504
|
/**
|
|
23866
|
-
* Maximum items to return per page. Range: 1-
|
|
24505
|
+
* Maximum items to return per page. Range: 1-64, default 20.
|
|
23867
24506
|
*/
|
|
23868
24507
|
limit?: number;
|
|
23869
24508
|
/**
|