@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/dist/types.gen.d.ts
CHANGED
|
@@ -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.
|
|
874
1231
|
*/
|
|
875
|
-
|
|
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
|
+
}>;
|
|
876
1276
|
};
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
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.
|
|
1378
|
+
*/
|
|
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
|
+
}>;
|
|
1423
|
+
};
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
/**
|
|
@@ -4492,6 +5115,10 @@ export type GetAstrologyPlanetMeaningsByIdResponses = {
|
|
|
4492
5115
|
/**
|
|
4493
5116
|
* Sign of exaltation. Where the planet is honored and amplified. Absent for the lunar nodes, Chiron, and Black Moon Lilith.
|
|
4494
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
|
+
*/
|
|
4495
5122
|
exultation?: string;
|
|
4496
5123
|
/**
|
|
4497
5124
|
* Sign of fall. Opposite the exaltation sign, where the planet is weakened. Absent for the lunar nodes, Chiron, and Black Moon Lilith.
|
|
@@ -5709,11 +6336,11 @@ export type PostAstrologyHousesData = {
|
|
|
5709
6336
|
*/
|
|
5710
6337
|
time: string;
|
|
5711
6338
|
/**
|
|
5712
|
-
* 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.
|
|
5713
6340
|
*/
|
|
5714
6341
|
latitude: number;
|
|
5715
6342
|
/**
|
|
5716
|
-
* 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.
|
|
5717
6344
|
*/
|
|
5718
6345
|
longitude: number;
|
|
5719
6346
|
/**
|
|
@@ -6594,11 +7221,11 @@ export type PostAstrologySolarReturnData = {
|
|
|
6594
7221
|
*/
|
|
6595
7222
|
returnYear: number;
|
|
6596
7223
|
/**
|
|
6597
|
-
* Latitude of the solar return location in decimal degrees. Use current residence or travel location at time of birthday
|
|
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.
|
|
6598
7225
|
*/
|
|
6599
7226
|
latitude: number;
|
|
6600
7227
|
/**
|
|
6601
|
-
* 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.
|
|
6602
7229
|
*/
|
|
6603
7230
|
longitude: number;
|
|
6604
7231
|
/**
|
|
@@ -6731,7 +7358,7 @@ export type PostAstrologySolarReturnResponses = {
|
|
|
6731
7358
|
*/
|
|
6732
7359
|
birthDate: string;
|
|
6733
7360
|
/**
|
|
6734
|
-
* Exact solar return moment
|
|
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.
|
|
6735
7362
|
*/
|
|
6736
7363
|
solarReturnDate: string;
|
|
6737
7364
|
/**
|
|
@@ -6739,7 +7366,7 @@ export type PostAstrologySolarReturnResponses = {
|
|
|
6739
7366
|
*/
|
|
6740
7367
|
solarReturnYear: number;
|
|
6741
7368
|
/**
|
|
6742
|
-
* Location used for the solar return chart. The Ascendant and house cusps change based on where you are at your birthday
|
|
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.
|
|
6743
7370
|
*/
|
|
6744
7371
|
location: {
|
|
6745
7372
|
/**
|
|
@@ -6974,11 +7601,11 @@ export type PostAstrologyLunarReturnData = {
|
|
|
6974
7601
|
*/
|
|
6975
7602
|
returnDate: string;
|
|
6976
7603
|
/**
|
|
6977
|
-
* 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.
|
|
6978
7605
|
*/
|
|
6979
7606
|
latitude: number;
|
|
6980
7607
|
/**
|
|
6981
|
-
* 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.
|
|
6982
7609
|
*/
|
|
6983
7610
|
longitude: number;
|
|
6984
7611
|
/**
|
|
@@ -7111,7 +7738,7 @@ export type PostAstrologyLunarReturnResponses = {
|
|
|
7111
7738
|
*/
|
|
7112
7739
|
birthDate: string;
|
|
7113
7740
|
/**
|
|
7114
|
-
* Exact lunar return moment
|
|
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).
|
|
7115
7742
|
*/
|
|
7116
7743
|
lunarReturnDate: string;
|
|
7117
7744
|
/**
|
|
@@ -8822,15 +9449,15 @@ export type PostAstrologyPlanetaryReturnsData = {
|
|
|
8822
9449
|
*/
|
|
8823
9450
|
planet: 'Mercury' | 'Venus' | 'Mars' | 'Jupiter' | 'Saturn';
|
|
8824
9451
|
/**
|
|
8825
|
-
* Approximate date near the expected planetary return (YYYY-MM-DD). Provide a date within the expected return window
|
|
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.
|
|
8826
9453
|
*/
|
|
8827
9454
|
approximateDate: string;
|
|
8828
9455
|
/**
|
|
8829
|
-
* 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.
|
|
8830
9457
|
*/
|
|
8831
9458
|
latitude: number;
|
|
8832
9459
|
/**
|
|
8833
|
-
* Longitude of the return location in decimal degrees.
|
|
9460
|
+
* Longitude of the return location in decimal degrees (-180 to 180).
|
|
8834
9461
|
*/
|
|
8835
9462
|
longitude: number;
|
|
8836
9463
|
/**
|
|
@@ -8967,7 +9594,7 @@ export type PostAstrologyPlanetaryReturnsResponses = {
|
|
|
8967
9594
|
*/
|
|
8968
9595
|
planet: string;
|
|
8969
9596
|
/**
|
|
8970
|
-
* Exact planetary return moment
|
|
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.
|
|
8971
9598
|
*/
|
|
8972
9599
|
returnDate: string;
|
|
8973
9600
|
/**
|
|
@@ -9959,7 +10586,7 @@ export type PostVedicAstrologyDashaCurrentData = {
|
|
|
9959
10586
|
*/
|
|
9960
10587
|
date: string;
|
|
9961
10588
|
/**
|
|
9962
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
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.
|
|
9963
10590
|
*/
|
|
9964
10591
|
time: string;
|
|
9965
10592
|
/**
|
|
@@ -10263,7 +10890,7 @@ export type PostVedicAstrologyDashaMajorData = {
|
|
|
10263
10890
|
*/
|
|
10264
10891
|
date: string;
|
|
10265
10892
|
/**
|
|
10266
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
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.
|
|
10267
10894
|
*/
|
|
10268
10895
|
time: string;
|
|
10269
10896
|
/**
|
|
@@ -10467,7 +11094,7 @@ export type PostVedicAstrologyDashaSubByMahadashaData = {
|
|
|
10467
11094
|
*/
|
|
10468
11095
|
date: string;
|
|
10469
11096
|
/**
|
|
10470
|
-
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions
|
|
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.
|
|
10471
11098
|
*/
|
|
10472
11099
|
time: string;
|
|
10473
11100
|
/**
|
|
@@ -12442,7 +13069,7 @@ export type GetVedicAstrologyYogaByIdData = {
|
|
|
12442
13069
|
/**
|
|
12443
13070
|
* Yoga identifier (lowercase, hyphenated)
|
|
12444
13071
|
*/
|
|
12445
|
-
id:
|
|
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';
|
|
12446
13073
|
};
|
|
12447
13074
|
query?: {
|
|
12448
13075
|
/**
|
|
@@ -12720,7 +13347,7 @@ export type GetVedicAstrologyKpAyanamsaData = {
|
|
|
12720
13347
|
path?: never;
|
|
12721
13348
|
query?: {
|
|
12722
13349
|
/**
|
|
12723
|
-
* Date for ayanamsa calculation in YYYY-MM-DD format. Defaults to today if not provided. Ayanamsa changes by ~0.01
|
|
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.
|
|
12724
13351
|
*/
|
|
12725
13352
|
date?: string;
|
|
12726
13353
|
};
|
|
@@ -14185,6 +14812,10 @@ export type PostVedicAstrologyAspectsMonthlyResponses = {
|
|
|
14185
14812
|
* Month of the aspect analysis.
|
|
14186
14813
|
*/
|
|
14187
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;
|
|
14188
14819
|
/**
|
|
14189
14820
|
* All planetary aspect events detected during the month, sorted chronologically by closest approach date.
|
|
14190
14821
|
*/
|
|
@@ -14371,6 +15002,10 @@ export type PostVedicAstrologyAspectsLunarResponses = {
|
|
|
14371
15002
|
* Month of the lunar aspect analysis.
|
|
14372
15003
|
*/
|
|
14373
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;
|
|
14374
15009
|
/**
|
|
14375
15010
|
* All Moon aspect events during the month, sorted chronologically. Moon completes one full cycle in approximately 27 days.
|
|
14376
15011
|
*/
|
|
@@ -15342,6 +15977,10 @@ export type PostVedicAstrologyEclipticCrossingsResponses = {
|
|
|
15342
15977
|
* Year scanned for ecliptic crossings.
|
|
15343
15978
|
*/
|
|
15344
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;
|
|
15345
15984
|
/**
|
|
15346
15985
|
* All ecliptic crossing events for visible planets during the year, sorted chronologically.
|
|
15347
15986
|
*/
|
|
@@ -15504,7 +16143,7 @@ export type GetVedicAstrologyRashisByIdData = {
|
|
|
15504
16143
|
/**
|
|
15505
16144
|
* Rashi ID slug. One of: mesha, vrishabha, mithun, karka, simha, kanya, tula, vrischika, dhanu, makar, kumbha, meen.
|
|
15506
16145
|
*/
|
|
15507
|
-
id:
|
|
16146
|
+
id: 'mesha' | 'vrishabha' | 'mithun' | 'karka' | 'simha' | 'kanya' | 'tula' | 'vrischika' | 'dhanu' | 'makar' | 'kumbha' | 'meen';
|
|
15508
16147
|
};
|
|
15509
16148
|
query?: {
|
|
15510
16149
|
/**
|
|
@@ -15762,7 +16401,7 @@ export type GetVedicAstrologyNakshatrasByIdData = {
|
|
|
15762
16401
|
/**
|
|
15763
16402
|
* Nakshatra ID slug. Examples: ashwini, bharani, krittika, rohini, mrigashira, ardra, punarvasu, pushya, ashlesha, magha, etc.
|
|
15764
16403
|
*/
|
|
15765
|
-
id:
|
|
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';
|
|
15766
16405
|
};
|
|
15767
16406
|
query?: {
|
|
15768
16407
|
/**
|
|
@@ -23297,7 +23936,7 @@ export type GetIchingHexagramsData = {
|
|
|
23297
23936
|
*/
|
|
23298
23937
|
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
23299
23938
|
/**
|
|
23300
|
-
* Maximum items to return per page. Range: 1-
|
|
23939
|
+
* Maximum items to return per page. Range: 1-64, default 20.
|
|
23301
23940
|
*/
|
|
23302
23941
|
limit?: number;
|
|
23303
23942
|
/**
|