Skip to content

Commit 98675ce

Browse files
release: v1.2.55
1 parent 6f70aaf commit 98675ce

5 files changed

Lines changed: 438 additions & 95 deletions

File tree

docs/llms-full.txt

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,11 @@ const { data } = await roxy.astrology.getPlanetaryPositions({
6767

6868
// Get current moon phase - Lunar phase calculator with zodiac sign
6969
const { 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
646651
const { 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
660665
const { 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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@roxyapi/sdk",
3-
"version": "1.2.54",
3+
"version": "1.2.55",
44
"description": "TypeScript SDK for Roxy — the multi-domain spiritual intelligence API",
55
"type": "module",
66
"exports": {

0 commit comments

Comments
 (0)