@@ -67,7 +67,11 @@ const { data } = await roxy.astrology.getPlanetaryPositions({
6767
6868// Get current moon phase - Lunar phase calculator with zodiac sign
6969const { data } = await roxy.astrology.getCurrentMoonPhase({
70- query: { date: '2025-12-18', time: '12:00:00', timezone: 0 },
70+ query: {
71+ date: '2025-12-18',
72+ time: '12:00:00',
73+ timezone: 'America/New_York',
74+ },
7175});
7276
7377// Get upcoming moon phases - Next new moon, full moon, quarters
@@ -394,6 +398,7 @@ const { data } = await roxy.vedicAstrology.generateBirthChart({
394398 latitude: 28.6139,
395399 longitude: 77.209,
396400 timezone: 5.5,
401+ avasthaInfo: true,
397402 },
398403});
399404
@@ -640,7 +645,7 @@ const { data } = await roxy.vedicAstrology.checkSadhesati({
640645});
641646
642647// List all planetary yogas - 300+ Vedic Yoga Glossary
643- const { data } = await roxy.vedicAstrology.listYogas();
648+ const { data } = await roxy.vedicAstrology.listYogas({ query: { family: 'akriti' } } );
644649
645650// Get yoga details by ID - Vedic Yoga Glossary Entry
646651const { data } = await roxy.vedicAstrology.getYoga({ path: { id: 'gajakesari' } });
@@ -658,7 +663,11 @@ const { data } = await roxy.vedicAstrology.detectYogas({
658663
659664// Get KP-Newcomb ayanamsa - Dynamic daily calculation
660665const { data } = await roxy.vedicAstrology.getKpAyanamsa({
661- query: { date: '2025-12-26', time: '09:00:00', timezone: 5.5 },
666+ query: {
667+ date: '2025-12-26',
668+ time: '09:00:00',
669+ timezone: 'Asia/Kolkata',
670+ },
662671});
663672
664673// Get KP planetary positions with sub-lords
0 commit comments