Skip to content

Commit 9ba01a3

Browse files
release: v1.2.34
1 parent 21745be commit 9ba01a3

8 files changed

Lines changed: 114 additions & 54 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Type `roxy.` to see all available namespaces. Type `roxy.{domain}.` to see every
4646
| `roxy.numerology` | 16 | Production-ready Pythagorean numerology API + hosted MCP for AI agents and developers |
4747
| `roxy.tarot` | 10 | Production-ready tarot card reading API + hosted MCP for AI agents and developers |
4848
| `roxy.humanDesign` | 12 | Generate the full Human Design bodygraph from a birth moment: type, strategy, inner authority, profile, definition, i... |
49-
| `roxy.forecast` | 5 | Merge upcoming transit aspects, sign ingresses, retrograde stations, Vimshottari dasha changes, and biorhythm critica... |
49+
| `roxy.forecast` | 5 | Merge upcoming transit aspects, sign ingresses, retrograde stations, new and full moons, biorhythm critical days, and... |
5050
| `roxy.biorhythm` | 6 | The most complete biorhythm API + remote MCP for AI agents and developers |
5151
| `roxy.iching` | 9 | I-Ching oracle API + hosted MCP for AI agents and developers |
5252
| `roxy.crystals` | 12 | Production-ready crystal healing API + hosted MCP for AI agents and developers |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ const { latitude, longitude, timezone } = data.cities[0];
9090
| `roxy.numerology` | 16 | Production-ready Pythagorean numerology API + hosted MCP for AI agents and developers |
9191
| `roxy.tarot` | 10 | Production-ready tarot card reading API + hosted MCP for AI agents and developers |
9292
| `roxy.humanDesign` | 12 | Generate the full Human Design bodygraph from a birth moment: type, strategy, inner authority, profile, definition, i... |
93-
| `roxy.forecast` | 5 | Merge upcoming transit aspects, sign ingresses, retrograde stations, Vimshottari dasha changes, and biorhythm critica... |
93+
| `roxy.forecast` | 5 | Merge upcoming transit aspects, sign ingresses, retrograde stations, new and full moons, biorhythm critical days, and... |
9494
| `roxy.biorhythm` | 6 | The most complete biorhythm API + remote MCP for AI agents and developers |
9595
| `roxy.iching` | 9 | I-Ching oracle API + hosted MCP for AI agents and developers |
9696
| `roxy.crystals` | 12 | Production-ready crystal healing API + hosted MCP for AI agents and developers |

docs/llms-full.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1027,7 +1027,7 @@ const { data } = await roxy.humanDesign.calculateVariables({
10271027

10281028
## Forecast — `roxy.forecast`
10291029

1030-
Merge upcoming transit aspects, sign ingresses, retrograde stations, Vimshottari dasha changes, and biorhythm critica...
1030+
Merge upcoming transit aspects, sign ingresses, retrograde stations, new and full moons, biorhythm critical days, and...
10311031

10321032
```typescript
10331033
// Cross-domain forecast timeline - Transits, ingresses, stations, dasha changes, critical days
@@ -1048,7 +1048,7 @@ const { data } = await roxy.forecast.generateTimeline({
10481048
},
10491049
});
10501050

1051-
// Western transit forecast - Transit aspects, sign ingresses, retrograde stations
1051+
// Western astrology forecast - aspects, ingresses, stations, eclipses, moon phases
10521052
const { data } = await roxy.forecast.forecastTransits({
10531053
body: {
10541054
birthData: {

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

specs/openapi.json

Lines changed: 67 additions & 24 deletions
Large diffs are not rendered by default.

src/sdk.gen.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1740,7 +1740,7 @@ export class Forecast extends HeyApiClient {
17401740
/**
17411741
* Cross-domain forecast timeline - Transits, ingresses, stations, dasha changes, critical days
17421742
*
1743-
* Build one time-ordered forecast for a single birth subject by merging upcoming events across three domains: western transit-to-natal aspects, sign ingresses, and retrograde stations; vedic Vimshottari mahadasha and antardasha boundaries; and biorhythm critical days. The window is clamped to 90 days and events are capped and scored by significance. Built for what-is-coming dashboards, daily and weekly forecast feeds, and timing tools.
1743+
* Build one time-ordered forecast for a single birth subject by merging upcoming events across three domains: western transit-to-natal aspects, sign ingresses, retrograde stations, eclipses, and new and full moons; biorhythm critical days; and vedic Vimshottari mahadasha, antardasha, and pratyantardasha boundaries. The window is clamped to 90 days and events are capped and scored by significance. Built for what-is-coming dashboards, daily and weekly forecast feeds, and timing tools.
17441744
*/
17451745
public generateTimeline<ThrowOnError extends boolean = false>(options?: Options<PostForecastTimelineData, ThrowOnError>) {
17461746
return (options?.client ?? this.client).post<PostForecastTimelineResponses, PostForecastTimelineErrors, ThrowOnError>({
@@ -1755,9 +1755,9 @@ export class Forecast extends HeyApiClient {
17551755
}
17561756

17571757
/**
1758-
* Western transit forecast - Transit aspects, sign ingresses, retrograde stations
1758+
* Western astrology forecast - aspects, ingresses, stations, eclipses, moon phases
17591759
*
1760-
* Forecast the western astrology events for a single birth chart over a window up to 90 days: every transit-to-natal major aspect refined to its exact instant, every transiting planet sign ingress, and every retrograde or direct station. Returns a time-ordered, significance-scored timeline. Built for astrology forecast feeds, transit alerts, and timing tools.
1760+
* Forecast the western astrology events for a single birth chart over a window up to 90 days: every transit-to-natal major aspect refined to its exact instant, every transiting planet sign ingress, every retrograde or direct station, every solar and lunar eclipse, and every New and Full Moon. Returns a time-ordered, significance-scored timeline. Built for astrology forecast feeds, transit alerts, and timing tools.
17611761
*/
17621762
public forecastTransits<ThrowOnError extends boolean = false>(options?: Options<PostForecastTransitsData, ThrowOnError>) {
17631763
return (options?.client ?? this.client).post<PostForecastTransitsResponses, PostForecastTransitsErrors, ThrowOnError>({

0 commit comments

Comments
 (0)