Skip to content

Commit 43db824

Browse files
release: v1.2.67
1 parent ae7c839 commit 43db824

7 files changed

Lines changed: 1263 additions & 21 deletions

File tree

docs/llms-full.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,20 @@ const { data } = await roxy.astrology.calculateTransitAspects({
185185
},
186186
});
187187

188+
// Monthly Parallels - Declination contacts for an entire month
189+
const { data } = await roxy.astrology.getMonthlyDeclinationParallels({
190+
body: {
191+
year: 2026,
192+
month: 3,
193+
timezone: -5,
194+
orb: 1.5,
195+
nodeType: 'true',
196+
},
197+
});
198+
199+
// Ecliptic Crossings - Node passages for a whole year
200+
const { data } = await roxy.astrology.getPlanetaryNodePassages({ body: { year: 2026, timezone: -5 } });
201+
188202
// Solar Return Chart - Annual birthday forecast with relocated chart
189203
const { data } = await roxy.astrology.generateSolarReturn({
190204
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.66",
3+
"version": "1.2.67",
44
"description": "TypeScript SDK for Roxy — the multi-domain spiritual intelligence API",
55
"type": "module",
66
"exports": {

specs/openapi.json

Lines changed: 808 additions & 10 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: 36 additions & 2 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)