@roxyapi/sdk 1.2.26 → 1.2.27
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 +1 -1
- package/dist/factory.js +1 -1
- package/dist/types.gen.d.ts +294 -0
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/types.gen.ts +294 -0
- package/src/version.ts +1 -1
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.2.
|
|
1
|
+
export declare const VERSION = "1.2.27";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
package/src/types.gen.ts
CHANGED
|
@@ -205,6 +205,44 @@ export type NatalChartResponse = {
|
|
|
205
205
|
*/
|
|
206
206
|
longitude: number;
|
|
207
207
|
};
|
|
208
|
+
/**
|
|
209
|
+
* Part of Fortune (Lot of Fortune). A point derived from the Ascendant and the two luminaries that marks an area of ease, vitality, and material wellbeing in the chart.
|
|
210
|
+
*/
|
|
211
|
+
partOfFortune: {
|
|
212
|
+
/**
|
|
213
|
+
* Zodiac sign holding the Part of Fortune.
|
|
214
|
+
*/
|
|
215
|
+
sign: string;
|
|
216
|
+
/**
|
|
217
|
+
* Degree within the Part of Fortune sign (0-29.999).
|
|
218
|
+
*/
|
|
219
|
+
degree: number;
|
|
220
|
+
/**
|
|
221
|
+
* Absolute ecliptic longitude of the Part of Fortune (0-360).
|
|
222
|
+
*/
|
|
223
|
+
longitude: number;
|
|
224
|
+
/**
|
|
225
|
+
* Chart sect used for the calculation. Day (diurnal) when the Sun is above the horizon, night (nocturnal) when below. Day charts use Ascendant plus Moon minus Sun, night charts use Ascendant plus Sun minus Moon.
|
|
226
|
+
*/
|
|
227
|
+
sect: 'day' | 'night';
|
|
228
|
+
};
|
|
229
|
+
/**
|
|
230
|
+
* Vertex. The western intersection of the prime vertical with the ecliptic, often read as a point of fated encounters and turning-point relationships. The opposite point is the Anti-Vertex.
|
|
231
|
+
*/
|
|
232
|
+
vertex: {
|
|
233
|
+
/**
|
|
234
|
+
* Zodiac sign holding the Vertex.
|
|
235
|
+
*/
|
|
236
|
+
sign: string;
|
|
237
|
+
/**
|
|
238
|
+
* Degree within the Vertex sign (0-29.999).
|
|
239
|
+
*/
|
|
240
|
+
degree: number;
|
|
241
|
+
/**
|
|
242
|
+
* Absolute ecliptic longitude of the Vertex (0-360).
|
|
243
|
+
*/
|
|
244
|
+
longitude: number;
|
|
245
|
+
};
|
|
208
246
|
/**
|
|
209
247
|
* Chart summary with dominant element, modality, retrograde planets, and distribution analysis.
|
|
210
248
|
*/
|
|
@@ -684,11 +722,23 @@ export type BirthChartResponse = {
|
|
|
684
722
|
* Nakshatra index (1-27) in the zodiac sequence starting from Ashwini.
|
|
685
723
|
*/
|
|
686
724
|
key: number;
|
|
725
|
+
/**
|
|
726
|
+
* 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.
|
|
727
|
+
*/
|
|
728
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
687
729
|
};
|
|
688
730
|
/**
|
|
689
731
|
* True if planet is in retrograde motion (appears to move backward). Retrograde planets have altered significations.
|
|
690
732
|
*/
|
|
691
733
|
isRetrograde: boolean;
|
|
734
|
+
/**
|
|
735
|
+
* 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.
|
|
736
|
+
*/
|
|
737
|
+
house?: number;
|
|
738
|
+
/**
|
|
739
|
+
* 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.
|
|
740
|
+
*/
|
|
741
|
+
awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
|
|
692
742
|
}>;
|
|
693
743
|
};
|
|
694
744
|
/**
|
|
@@ -724,11 +774,23 @@ export type BirthChartResponse = {
|
|
|
724
774
|
* Nakshatra sequence number (1-27) in zodiac order starting from Ashwini. Used for Tara Bala compatibility and dasha calculations.
|
|
725
775
|
*/
|
|
726
776
|
key: number;
|
|
777
|
+
/**
|
|
778
|
+
* 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.
|
|
779
|
+
*/
|
|
780
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
727
781
|
};
|
|
728
782
|
/**
|
|
729
783
|
* True if the planet is in retrograde motion (appears to move backward through the zodiac). Retrograde planets carry intensified or internalized significations in Vedic interpretation.
|
|
730
784
|
*/
|
|
731
785
|
isRetrograde: boolean;
|
|
786
|
+
/**
|
|
787
|
+
* Bhava (house) number 1-12, counted whole-sign from the Lagna (house 1 is the Lagna rashi; Lagna itself is house 1). Present on the D1 birth chart; divisional charts omit it.
|
|
788
|
+
*/
|
|
789
|
+
house?: number;
|
|
790
|
+
/**
|
|
791
|
+
* 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.
|
|
792
|
+
*/
|
|
793
|
+
awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
|
|
732
794
|
};
|
|
733
795
|
};
|
|
734
796
|
};
|
|
@@ -794,13 +856,72 @@ export type NavamsaResponse = {
|
|
|
794
856
|
* Nakshatra sequence number (1-27) in zodiac order starting from Ashwini. Used for Tara Bala compatibility and dasha calculations.
|
|
795
857
|
*/
|
|
796
858
|
key: number;
|
|
859
|
+
/**
|
|
860
|
+
* Vimshottari ruling planet of this nakshatra. One of the nine grahas (Ketu, Venus, Sun, Moon, Mars, Rahu, Jupiter, Saturn, Mercury). Carried over from the D1 nakshatra.
|
|
861
|
+
*/
|
|
862
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
797
863
|
};
|
|
798
864
|
/**
|
|
799
865
|
* True if the planet is in retrograde motion (appears to move backward through the zodiac). Retrograde planets carry intensified or internalized significations in Vedic interpretation.
|
|
800
866
|
*/
|
|
801
867
|
isRetrograde: boolean;
|
|
868
|
+
/**
|
|
869
|
+
* Bhava (house) number 1-12 in the Navamsa chart, counted whole-sign from the D9 Lagna. This is the Navamsa-specific house and differs from the D1 birth-chart house.
|
|
870
|
+
*/
|
|
871
|
+
house?: number;
|
|
802
872
|
};
|
|
803
873
|
};
|
|
874
|
+
/**
|
|
875
|
+
* One of the 12 navamsa rashi-house buckets (aries shown; taurus through pisces follow the identical shape). Each lists the planets placed in that sign.
|
|
876
|
+
*/
|
|
877
|
+
aries: {
|
|
878
|
+
/**
|
|
879
|
+
* Zodiac sign name in lowercase.
|
|
880
|
+
*/
|
|
881
|
+
rashi: string;
|
|
882
|
+
/**
|
|
883
|
+
* Planets placed in this navamsa sign.
|
|
884
|
+
*/
|
|
885
|
+
signs: Array<{
|
|
886
|
+
/**
|
|
887
|
+
* Planet (graha) placed in this navamsa sign.
|
|
888
|
+
*/
|
|
889
|
+
graha: string;
|
|
890
|
+
/**
|
|
891
|
+
* Original sidereal longitude in degrees (0-360), same as the D1 birth chart. Preserved for cross-chart reference.
|
|
892
|
+
*/
|
|
893
|
+
longitude: number;
|
|
894
|
+
/**
|
|
895
|
+
* Nakshatra (lunar mansion) data for this planet, carried over from the D1 chart.
|
|
896
|
+
*/
|
|
897
|
+
nakshatra: {
|
|
898
|
+
/**
|
|
899
|
+
* Nakshatra (lunar mansion) the planet occupies.
|
|
900
|
+
*/
|
|
901
|
+
name: string;
|
|
902
|
+
/**
|
|
903
|
+
* Nakshatra pada (quarter, 1-4).
|
|
904
|
+
*/
|
|
905
|
+
pada: number;
|
|
906
|
+
/**
|
|
907
|
+
* Nakshatra index in the zodiac sequence starting from Ashwini.
|
|
908
|
+
*/
|
|
909
|
+
key: number;
|
|
910
|
+
/**
|
|
911
|
+
* Vimshottari ruling planet of this nakshatra.
|
|
912
|
+
*/
|
|
913
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
914
|
+
};
|
|
915
|
+
/**
|
|
916
|
+
* True if the planet is in retrograde motion.
|
|
917
|
+
*/
|
|
918
|
+
isRetrograde: boolean;
|
|
919
|
+
/**
|
|
920
|
+
* Bhava (house) number 1-12 in the Navamsa chart, counted whole-sign from the D9 Lagna.
|
|
921
|
+
*/
|
|
922
|
+
house?: number;
|
|
923
|
+
}>;
|
|
924
|
+
};
|
|
804
925
|
[key: string]: unknown;
|
|
805
926
|
};
|
|
806
927
|
/**
|
|
@@ -899,13 +1020,72 @@ export type DivisionalChartResponse = {
|
|
|
899
1020
|
* Nakshatra sequence number (1-27) in zodiac order starting from Ashwini. Used for Tara Bala compatibility and dasha calculations.
|
|
900
1021
|
*/
|
|
901
1022
|
key: number;
|
|
1023
|
+
/**
|
|
1024
|
+
* Vimshottari ruling planet of this nakshatra. One of the nine grahas (Ketu, Venus, Sun, Moon, Mars, Rahu, Jupiter, Saturn, Mercury). Carried over from the D1 nakshatra.
|
|
1025
|
+
*/
|
|
1026
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
902
1027
|
};
|
|
903
1028
|
/**
|
|
904
1029
|
* True if the planet is in retrograde motion (appears to move backward through the zodiac). Retrograde planets carry intensified or internalized significations in Vedic interpretation.
|
|
905
1030
|
*/
|
|
906
1031
|
isRetrograde: boolean;
|
|
1032
|
+
/**
|
|
1033
|
+
* Bhava (house) number 1-12 in this divisional chart, counted whole-sign from the divisional Lagna. Specific to this varga and differs from the D1 birth-chart house.
|
|
1034
|
+
*/
|
|
1035
|
+
house?: number;
|
|
907
1036
|
};
|
|
908
1037
|
};
|
|
1038
|
+
/**
|
|
1039
|
+
* One of the 12 divisional rashi-house buckets (aries shown; taurus through pisces follow the identical shape). Each lists the planets placed in that sign.
|
|
1040
|
+
*/
|
|
1041
|
+
aries: {
|
|
1042
|
+
/**
|
|
1043
|
+
* Zodiac sign name in lowercase.
|
|
1044
|
+
*/
|
|
1045
|
+
rashi: string;
|
|
1046
|
+
/**
|
|
1047
|
+
* Planets placed in this divisional sign.
|
|
1048
|
+
*/
|
|
1049
|
+
signs: Array<{
|
|
1050
|
+
/**
|
|
1051
|
+
* Planet (graha) placed in this divisional sign.
|
|
1052
|
+
*/
|
|
1053
|
+
graha: string;
|
|
1054
|
+
/**
|
|
1055
|
+
* Original sidereal longitude in degrees (0-360), same as the D1 birth chart. Preserved for cross-chart reference.
|
|
1056
|
+
*/
|
|
1057
|
+
longitude: number;
|
|
1058
|
+
/**
|
|
1059
|
+
* Nakshatra (lunar mansion) data for this planet, carried over from the D1 chart.
|
|
1060
|
+
*/
|
|
1061
|
+
nakshatra: {
|
|
1062
|
+
/**
|
|
1063
|
+
* Nakshatra (lunar mansion) the planet occupies.
|
|
1064
|
+
*/
|
|
1065
|
+
name: string;
|
|
1066
|
+
/**
|
|
1067
|
+
* Nakshatra pada (quarter, 1-4).
|
|
1068
|
+
*/
|
|
1069
|
+
pada: number;
|
|
1070
|
+
/**
|
|
1071
|
+
* Nakshatra index in the zodiac sequence starting from Ashwini.
|
|
1072
|
+
*/
|
|
1073
|
+
key: number;
|
|
1074
|
+
/**
|
|
1075
|
+
* Vimshottari ruling planet of this nakshatra.
|
|
1076
|
+
*/
|
|
1077
|
+
lord: 'Ketu' | 'Venus' | 'Sun' | 'Moon' | 'Mars' | 'Rahu' | 'Jupiter' | 'Saturn' | 'Mercury';
|
|
1078
|
+
};
|
|
1079
|
+
/**
|
|
1080
|
+
* True if the planet is in retrograde motion.
|
|
1081
|
+
*/
|
|
1082
|
+
isRetrograde: boolean;
|
|
1083
|
+
/**
|
|
1084
|
+
* Bhava (house) number 1-12 in this divisional chart, counted whole-sign from the divisional Lagna.
|
|
1085
|
+
*/
|
|
1086
|
+
house?: number;
|
|
1087
|
+
}>;
|
|
1088
|
+
};
|
|
909
1089
|
[key: string]: unknown;
|
|
910
1090
|
};
|
|
911
1091
|
/**
|
|
@@ -6392,6 +6572,44 @@ export type PostAstrologySolarReturnResponses = {
|
|
|
6392
6572
|
*/
|
|
6393
6573
|
interpretation: 'harmonious' | 'challenging' | 'neutral';
|
|
6394
6574
|
}>;
|
|
6575
|
+
/**
|
|
6576
|
+
* Part of Fortune (Lot of Fortune). A point derived from the Ascendant and the two luminaries that marks an area of ease, vitality, and material wellbeing in the chart.
|
|
6577
|
+
*/
|
|
6578
|
+
partOfFortune: {
|
|
6579
|
+
/**
|
|
6580
|
+
* Zodiac sign holding the Part of Fortune.
|
|
6581
|
+
*/
|
|
6582
|
+
sign: string;
|
|
6583
|
+
/**
|
|
6584
|
+
* Degree within the Part of Fortune sign (0-29.999).
|
|
6585
|
+
*/
|
|
6586
|
+
degree: number;
|
|
6587
|
+
/**
|
|
6588
|
+
* Absolute ecliptic longitude of the Part of Fortune (0-360).
|
|
6589
|
+
*/
|
|
6590
|
+
longitude: number;
|
|
6591
|
+
/**
|
|
6592
|
+
* Chart sect used for the calculation. Day (diurnal) when the Sun is above the horizon, night (nocturnal) when below. Day charts use Ascendant plus Moon minus Sun, night charts use Ascendant plus Sun minus Moon.
|
|
6593
|
+
*/
|
|
6594
|
+
sect: 'day' | 'night';
|
|
6595
|
+
};
|
|
6596
|
+
/**
|
|
6597
|
+
* Vertex. The western intersection of the prime vertical with the ecliptic, often read as a point of fated encounters and turning-point relationships. The opposite point is the Anti-Vertex.
|
|
6598
|
+
*/
|
|
6599
|
+
vertex: {
|
|
6600
|
+
/**
|
|
6601
|
+
* Zodiac sign holding the Vertex.
|
|
6602
|
+
*/
|
|
6603
|
+
sign: string;
|
|
6604
|
+
/**
|
|
6605
|
+
* Degree within the Vertex sign (0-29.999).
|
|
6606
|
+
*/
|
|
6607
|
+
degree: number;
|
|
6608
|
+
/**
|
|
6609
|
+
* Absolute ecliptic longitude of the Vertex (0-360).
|
|
6610
|
+
*/
|
|
6611
|
+
longitude: number;
|
|
6612
|
+
};
|
|
6395
6613
|
};
|
|
6396
6614
|
/**
|
|
6397
6615
|
* Original natal Sun position that the transiting Sun returns to. This conjunction defines the solar return moment.
|
|
@@ -6735,6 +6953,44 @@ export type PostAstrologyLunarReturnResponses = {
|
|
|
6735
6953
|
*/
|
|
6736
6954
|
interpretation: 'harmonious' | 'challenging' | 'neutral';
|
|
6737
6955
|
}>;
|
|
6956
|
+
/**
|
|
6957
|
+
* Part of Fortune (Lot of Fortune). A point derived from the Ascendant and the two luminaries that marks an area of ease, vitality, and material wellbeing in the chart.
|
|
6958
|
+
*/
|
|
6959
|
+
partOfFortune: {
|
|
6960
|
+
/**
|
|
6961
|
+
* Zodiac sign holding the Part of Fortune.
|
|
6962
|
+
*/
|
|
6963
|
+
sign: string;
|
|
6964
|
+
/**
|
|
6965
|
+
* Degree within the Part of Fortune sign (0-29.999).
|
|
6966
|
+
*/
|
|
6967
|
+
degree: number;
|
|
6968
|
+
/**
|
|
6969
|
+
* Absolute ecliptic longitude of the Part of Fortune (0-360).
|
|
6970
|
+
*/
|
|
6971
|
+
longitude: number;
|
|
6972
|
+
/**
|
|
6973
|
+
* Chart sect used for the calculation. Day (diurnal) when the Sun is above the horizon, night (nocturnal) when below. Day charts use Ascendant plus Moon minus Sun, night charts use Ascendant plus Sun minus Moon.
|
|
6974
|
+
*/
|
|
6975
|
+
sect: 'day' | 'night';
|
|
6976
|
+
};
|
|
6977
|
+
/**
|
|
6978
|
+
* Vertex. The western intersection of the prime vertical with the ecliptic, often read as a point of fated encounters and turning-point relationships. The opposite point is the Anti-Vertex.
|
|
6979
|
+
*/
|
|
6980
|
+
vertex: {
|
|
6981
|
+
/**
|
|
6982
|
+
* Zodiac sign holding the Vertex.
|
|
6983
|
+
*/
|
|
6984
|
+
sign: string;
|
|
6985
|
+
/**
|
|
6986
|
+
* Degree within the Vertex sign (0-29.999).
|
|
6987
|
+
*/
|
|
6988
|
+
degree: number;
|
|
6989
|
+
/**
|
|
6990
|
+
* Absolute ecliptic longitude of the Vertex (0-360).
|
|
6991
|
+
*/
|
|
6992
|
+
longitude: number;
|
|
6993
|
+
};
|
|
6738
6994
|
};
|
|
6739
6995
|
/**
|
|
6740
6996
|
* Original natal Moon position that the transiting Moon returns to. This conjunction defines the lunar return moment.
|
|
@@ -8587,6 +8843,44 @@ export type PostAstrologyPlanetaryReturnsResponses = {
|
|
|
8587
8843
|
*/
|
|
8588
8844
|
interpretation: 'harmonious' | 'challenging' | 'neutral';
|
|
8589
8845
|
}>;
|
|
8846
|
+
/**
|
|
8847
|
+
* Part of Fortune (Lot of Fortune). A point derived from the Ascendant and the two luminaries that marks an area of ease, vitality, and material wellbeing in the chart.
|
|
8848
|
+
*/
|
|
8849
|
+
partOfFortune: {
|
|
8850
|
+
/**
|
|
8851
|
+
* Zodiac sign holding the Part of Fortune.
|
|
8852
|
+
*/
|
|
8853
|
+
sign: string;
|
|
8854
|
+
/**
|
|
8855
|
+
* Degree within the Part of Fortune sign (0-29.999).
|
|
8856
|
+
*/
|
|
8857
|
+
degree: number;
|
|
8858
|
+
/**
|
|
8859
|
+
* Absolute ecliptic longitude of the Part of Fortune (0-360).
|
|
8860
|
+
*/
|
|
8861
|
+
longitude: number;
|
|
8862
|
+
/**
|
|
8863
|
+
* Chart sect used for the calculation. Day (diurnal) when the Sun is above the horizon, night (nocturnal) when below. Day charts use Ascendant plus Moon minus Sun, night charts use Ascendant plus Sun minus Moon.
|
|
8864
|
+
*/
|
|
8865
|
+
sect: 'day' | 'night';
|
|
8866
|
+
};
|
|
8867
|
+
/**
|
|
8868
|
+
* Vertex. The western intersection of the prime vertical with the ecliptic, often read as a point of fated encounters and turning-point relationships. The opposite point is the Anti-Vertex.
|
|
8869
|
+
*/
|
|
8870
|
+
vertex: {
|
|
8871
|
+
/**
|
|
8872
|
+
* Zodiac sign holding the Vertex.
|
|
8873
|
+
*/
|
|
8874
|
+
sign: string;
|
|
8875
|
+
/**
|
|
8876
|
+
* Degree within the Vertex sign (0-29.999).
|
|
8877
|
+
*/
|
|
8878
|
+
degree: number;
|
|
8879
|
+
/**
|
|
8880
|
+
* Absolute ecliptic longitude of the Vertex (0-360).
|
|
8881
|
+
*/
|
|
8882
|
+
longitude: number;
|
|
8883
|
+
};
|
|
8590
8884
|
};
|
|
8591
8885
|
/**
|
|
8592
8886
|
* Original natal planet position that defines the return. The transiting planet conjuncts this longitude to trigger the return.
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.2.
|
|
1
|
+
export const VERSION = '1.2.27';
|