Skip to content

Commit 2ad7d3b

Browse files
release: v1.2.56
1 parent 7cdc1d7 commit 2ad7d3b

7 files changed

Lines changed: 3643 additions & 770 deletions

File tree

docs/llms-full.txt

Lines changed: 33 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,8 @@ const { data } = await roxy.astrology.calculateTransitAspects({
155155
},
156156
transitDate: '2026-02-03',
157157
transitTime: '12:00:00',
158+
planets: ['Jupiter', 'Saturn', 'Pluto'],
159+
aspectTypes: ['CONJUNCTION', 'OPPOSITION', 'TRINE', 'SQUARE'],
158160
minStrength: 50,
159161
},
160162
});
@@ -929,6 +931,30 @@ const { data } = await roxy.vedicAstrology.calculateCharaKarakas({
929931
scheme: 'eight',
930932
},
931933
});
934+
935+
// Get Bhava Bala (house strength) for all twelve houses - Bhava Bala Calculator API
936+
const { data } = await roxy.vedicAstrology.calculateBhavaBala({
937+
query: { focus: 'general' },
938+
body: {
939+
date: '1990-07-04',
940+
time: '10:12:00',
941+
latitude: 28.6139,
942+
longitude: 77.209,
943+
timezone: 5.5,
944+
},
945+
});
946+
947+
// Get the Bhav Chalit (Chalit Kundli) cusp-based house chart - Bhav Chalit API
948+
const { data } = await roxy.vedicAstrology.calculateBhavChalit({
949+
query: { focus: 'general' },
950+
body: {
951+
date: '1990-07-04',
952+
time: '10:12:00',
953+
latitude: 28.6139,
954+
longitude: 77.209,
955+
timezone: 5.5,
956+
},
957+
});
932958
```
933959

934960
---
@@ -1332,39 +1358,39 @@ const { data } = await roxy.tarot.getDailyCard({ body: { seed: 'user123', date:
13321358
const { data } = await roxy.tarot.castYesNo({
13331359
body: {
13341360
question: 'Should I accept the job offer?',
1335-
seed: 'optional-seed',
1361+
seed: 'reading-2f9c1a',
13361362
},
13371363
});
13381364

13391365
// Three-Card Spread: Past, Present, Future
13401366
const { data } = await roxy.tarot.castThreeCard({
13411367
body: {
13421368
question: 'What do I need to know about my career?',
1343-
seed: 'optional-seed',
1369+
seed: 'reading-2f9c1a',
13441370
},
13451371
});
13461372

13471373
// Celtic Cross Spread (10 cards)
13481374
const { data } = await roxy.tarot.castCelticCross({
13491375
body: {
13501376
question: 'What should I know about this situation?',
1351-
seed: 'optional-seed',
1377+
seed: 'reading-2f9c1a',
13521378
},
13531379
});
13541380

13551381
// Love Spread (5 cards)
13561382
const { data } = await roxy.tarot.castLoveSpread({
13571383
body: {
13581384
question: 'What do I need to know about my relationship?',
1359-
seed: 'optional-seed',
1385+
seed: 'reading-2f9c1a',
13601386
},
13611387
});
13621388

13631389
// Career Spread (7 cards)
13641390
const { data } = await roxy.tarot.castCareerSpread({
13651391
body: {
13661392
question: 'What do I need to know about my career path?',
1367-
seed: 'optional-seed',
1393+
seed: 'reading-2f9c1a',
13681394
},
13691395
});
13701396

@@ -1383,8 +1409,8 @@ const { data } = await roxy.tarot.castCustomSpread({
13831409
},
13841410
{ name: 'Best Action', interpretation: 'What to do next' },
13851411
],
1386-
question: 'Optional question',
1387-
seed: 'optional-seed',
1412+
question: 'How do I move forward with this project?',
1413+
seed: 'reading-2f9c1a',
13881414
},
13891415
});
13901416
```

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.55",
3+
"version": "1.2.56",
44
"description": "TypeScript SDK for Roxy — the multi-domain spiritual intelligence API",
55
"type": "module",
66
"exports": {

specs/openapi.json

Lines changed: 2903 additions & 691 deletions
Large diffs are not rendered by default.

src/index.ts

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/sdk.gen.ts

Lines changed: 35 additions & 1 deletion
Large diffs are not rendered by default.

src/types.gen.ts

Lines changed: 669 additions & 68 deletions
Large diffs are not rendered by default.

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '1.2.55';
1+
export const VERSION = '1.2.56';

0 commit comments

Comments
 (0)