Skip to content

Commit ff1c01b

Browse files
release: v1.2.72
1 parent 090f3c4 commit ff1c01b

9 files changed

Lines changed: 1765 additions & 91 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 | What it covers |
4343
|-----------|----------------|
44-
| `roxy.astrology` | Western astrology API for natal birth charts, daily, weekly, and monthly horoscopes with unique content per sign, syn... |
44+
| `roxy.astrology` | Western astrology API for natal birth charts, daily, weekly, monthly, and yearly horoscopes with unique content per s... |
4545
| `roxy.vedicAstrology` | Vedic astrology (Jyotish) and KP API for kundli generation with 15 divisional charts (D1-D60), Ashtakoot Gun Milan ku... |
4646
| `roxy.forecast` | Forecast API that merges upcoming transit aspects, sign ingresses, retrograde stations, new and full moons, biorhythm... |
4747
| `roxy.humanDesign` | Generate the full Human Design bodygraph from a birth moment: type, strategy, inner authority, profile, definition, i... |

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 | What it covers |
8787
|-----------|----------------|
88-
| `roxy.astrology` | Western astrology API for natal birth charts, daily, weekly, and monthly horoscopes with unique content per sign, syn... |
88+
| `roxy.astrology` | Western astrology API for natal birth charts, daily, weekly, monthly, and yearly horoscopes with unique content per s... |
8989
| `roxy.vedicAstrology` | Vedic astrology (Jyotish) and KP API for kundli generation with 15 divisional charts (D1-D60), Ashtakoot Gun Milan ku... |
9090
| `roxy.forecast` | Forecast API that merges upcoming transit aspects, sign ingresses, retrograde stations, new and full moons, biorhythm... |
9191
| `roxy.humanDesign` | Generate the full Human Design bodygraph from a birth moment: type, strategy, inner authority, profile, definition, i... |

docs/llms-full.txt

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const { data } = await roxy.astrology.getDailyHoroscope({
2727

2828
## Western Astrology — `roxy.astrology`
2929

30-
Western astrology API for natal birth charts, daily, weekly, and monthly horoscopes with unique content per sign, syn...
30+
Western astrology API for natal birth charts, daily, weekly, monthly, and yearly horoscopes with unique content per s...
3131

3232
```typescript
3333
// Get all zodiac signs - Complete zodiac signs list with dates and elements
@@ -270,24 +270,30 @@ const { data } = await roxy.astrology.calculateCompatibility({
270270
},
271271
});
272272

273-
// Daily horoscope by zodiac sign - Transit-based forecast with house activations
273+
// Daily horoscope by zodiac sign - Transit-based editorial columns
274274
const { data } = await roxy.astrology.getDailyHoroscope({
275275
path: { sign: 'aries' },
276276
query: { date: '2026-04-03', timezone: 'America/New_York' },
277277
});
278278

279-
// Weekly horoscope by zodiac sign - 7-day transit forecast
279+
// Weekly horoscope by zodiac sign - Seven-day editorial column
280280
const { data } = await roxy.astrology.getWeeklyHoroscope({
281281
path: { sign: 'aries' },
282282
query: { date: '2026-04-03', timezone: 'America/New_York' },
283283
});
284284

285-
// Monthly horoscope by zodiac sign - 30-day transit forecast with key dates
285+
// Monthly horoscope by zodiac sign - Editorial column with key dates
286286
const { data } = await roxy.astrology.getMonthlyHoroscope({
287287
path: { sign: 'aries' },
288288
query: { date: '2026-04-03', timezone: 'America/New_York' },
289289
});
290290

291+
// Yearly horoscope by zodiac sign - Year ahead forecast with themes, key periods, eclipses and retrogrades
292+
const { data } = await roxy.astrology.getYearlyHoroscope({
293+
path: { sign: 'aries' },
294+
query: { year: 2026, timezone: 'America/New_York' },
295+
});
296+
291297
// Planetary Return Chart - Saturn return, Jupiter return, and inner planet cycles
292298
const { data } = await roxy.astrology.generatePlanetaryReturn({
293299
body: {

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

specs/openapi.json

Lines changed: 1199 additions & 48 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: 20 additions & 7 deletions
Large diffs are not rendered by default.

src/types.gen.ts

Lines changed: 531 additions & 27 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.71';
1+
export const VERSION = '1.2.72';

0 commit comments

Comments
 (0)