Skip to content

Commit fb9511a

Browse files
release: v1.2.41
1 parent 2717d3e commit fb9511a

9 files changed

Lines changed: 19689 additions & 15985 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Type `roxy.` to see all available namespaces. Type `roxy.{domain}.` to see every
4141
<!-- BEGIN:DOMAINS -->
4242
| Namespace | Endpoints | What it covers |
4343
|-----------|-----------|----------------|
44-
| `roxy.astrology` | 28 | Western astrology API for natal birth charts, daily, weekly, and monthly horoscopes with unique content per sign, syn... |
44+
| `roxy.astrology` | 33 | Western astrology API for natal birth charts, daily, weekly, and monthly horoscopes with unique content per sign, syn... |
4545
| `roxy.vedicAstrology` | 43 | Vedic astrology (Jyotish) and KP API for kundli generation with 15 divisional charts (D1-D60), Ashtakoot Gun Milan ku... |
4646
| `roxy.numerology` | 20 | Numerology API to calculate life path, expression, soul urge, personality, and maturity numbers, with Pinnacle and Ch... |
4747
| `roxy.tarot` | 10 | Tarot reading API with the complete 78-card Rider-Waite-Smith deck and card meanings for love, career, health, and sp... |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const { latitude, longitude, timezone } = data.cities[0];
8585
<!-- BEGIN:DOMAINS -->
8686
| Namespace | Endpoints | What it covers |
8787
|-----------|-----------|----------------|
88-
| `roxy.astrology` | 28 | Western astrology API for natal birth charts, daily, weekly, and monthly horoscopes with unique content per sign, syn... |
88+
| `roxy.astrology` | 33 | Western astrology API for natal birth charts, daily, weekly, and monthly horoscopes with unique content per sign, syn... |
8989
| `roxy.vedicAstrology` | 43 | Vedic astrology (Jyotish) and KP API for kundli generation with 15 divisional charts (D1-D60), Ashtakoot Gun Milan ku... |
9090
| `roxy.numerology` | 20 | Numerology API to calculate life path, expression, soul urge, personality, and maturity numbers, with Pinnacle and Ch... |
9191
| `roxy.tarot` | 10 | Tarot reading API with the complete 78-card Rider-Waite-Smith deck and card meanings for love, career, health, and sp... |

docs/llms-full.txt

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,67 @@ const { data } = await roxy.astrology.calculateArabicLots({
306306
houseSystem: 'placidus',
307307
},
308308
});
309+
310+
// Asteroid goddesses calculator - Ceres, Pallas, Juno, and Vesta natal positions
311+
const { data } = await roxy.astrology.generateAsteroids({
312+
body: {
313+
date: '1990-07-15',
314+
time: '14:30:00',
315+
latitude: 40.7128,
316+
longitude: -74.006,
317+
timezone: -5,
318+
houseSystem: 'placidus',
319+
},
320+
});
321+
322+
// Black Moon Lilith calculator - mean and true lunar apogee in the natal chart
323+
const { data } = await roxy.astrology.generateLilith({
324+
body: {
325+
date: '1990-07-15',
326+
time: '14:30:00',
327+
latitude: 40.7128,
328+
longitude: -74.006,
329+
timezone: -5,
330+
houseSystem: 'placidus',
331+
},
332+
});
333+
334+
// Secondary progressions calculator - progressed chart, progressed Sun and Moon
335+
const { data } = await roxy.astrology.generateProgressions({
336+
body: {
337+
date: '1990-07-15',
338+
time: '14:30:00',
339+
latitude: 40.7128,
340+
longitude: -74.006,
341+
timezone: -5,
342+
targetDate: '2025-07-15',
343+
},
344+
});
345+
346+
// Solar arc directions calculator - directed chart at one degree per year
347+
const { data } = await roxy.astrology.generateSolarArc({
348+
body: {
349+
date: '1990-07-15',
350+
time: '14:30:00',
351+
latitude: 40.7128,
352+
longitude: -74.006,
353+
timezone: -5,
354+
targetDate: '2025-07-15',
355+
},
356+
});
357+
358+
// Annual profections calculator - lord of the year and yearly time lord by age
359+
const { data } = await roxy.astrology.generateProfections({
360+
body: {
361+
date: '1990-07-15',
362+
time: '14:30:00',
363+
latitude: 40.7128,
364+
longitude: -74.006,
365+
timezone: -5,
366+
targetDate: '2025-08-04',
367+
houseSystem: 'placidus',
368+
},
369+
});
309370
```
310371

311372
---

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

specs/openapi.json

Lines changed: 13230 additions & 10847 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: 86 additions & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)