@roxyapi/sdk 1.2.33 → 1.2.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +4 -2
- package/README.md +48 -6
- package/dist/{chunk-2UA7D7RW.js → chunk-HCC4GID6.js} +101 -118
- package/dist/client/client.gen.d.ts.map +1 -1
- package/dist/client/index.cjs +101 -118
- package/dist/client/index.js +1 -1
- package/dist/client/types.gen.d.ts +6 -3
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +7 -3
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/core/serverSentEvents.gen.d.ts +1 -1
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
- package/dist/factory.cjs +101 -118
- package/dist/factory.js +5 -5
- package/dist/sdk.gen.d.ts +4 -4
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/types.gen.d.ts +38 -21
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/docs/llms-full.txt +2 -2
- package/package.json +2 -2
- package/src/client/client.gen.ts +124 -137
- package/src/client/types.gen.ts +9 -5
- package/src/client/utils.gen.ts +10 -10
- package/src/core/params.gen.ts +4 -4
- package/src/core/serverSentEvents.gen.ts +4 -5
- package/src/sdk.gen.ts +4 -4
- package/src/types.gen.ts +38 -21
- package/src/version.ts +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -24976,19 +24976,19 @@ export type PostForecastTimelineResponses = {
|
|
|
24976
24976
|
*/
|
|
24977
24977
|
datetime: string;
|
|
24978
24978
|
/**
|
|
24979
|
-
* Forecast domain. western covers transit aspects, sign ingresses, and
|
|
24979
|
+
* Forecast domain. western covers transit aspects, sign ingresses, retrograde stations, eclipses, and new and full moons. vedic covers Vimshottari mahadasha, antardasha, and pratyantardasha boundaries. biorhythm covers critical days. A stable machine value, never localized, so consumers can branch on it under any language.
|
|
24980
24980
|
*/
|
|
24981
24981
|
domain: 'western' | 'vedic' | 'biorhythm';
|
|
24982
24982
|
/**
|
|
24983
|
-
* Event kind. transit-aspect, sign-ingress, retrograde-station, and
|
|
24983
|
+
* Event kind. transit-aspect, sign-ingress, retrograde-station, eclipse, and lunar-phase are western, dasha-change is vedic Vimshottari, critical-day is biorhythm. A stable machine value, never localized, so consumers can branch on it under any language.
|
|
24984
24984
|
*/
|
|
24985
|
-
type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'dasha-change' | 'critical-day';
|
|
24985
|
+
type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'lunar-phase' | 'dasha-change' | 'critical-day';
|
|
24986
24986
|
/**
|
|
24987
|
-
* Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse
|
|
24987
|
+
* Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse, Moon for a lunar eclipse or a new or full moon, a mahadasha, antardasha, or pratyantardasha label for dasha changes, or the critical cycle for biorhythm days.
|
|
24988
24988
|
*/
|
|
24989
24989
|
body: string;
|
|
24990
24990
|
/**
|
|
24991
|
-
* For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered. Absent for other event types.
|
|
24991
|
+
* For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered, and for a lunar-phase, the zodiac sign of the New or Full Moon. Absent for other event types.
|
|
24992
24992
|
*/
|
|
24993
24993
|
target?: string;
|
|
24994
24994
|
/**
|
|
@@ -25011,6 +25011,10 @@ export type PostForecastTimelineResponses = {
|
|
|
25011
25011
|
* For a lunar eclipse, the peak fraction from 0 to 1 of the Moon disc covered by Earth umbra. 1 for a total lunar eclipse, between 0 and 1 for a partial, 0 for a penumbral. Absent for solar eclipses and other event types.
|
|
25012
25012
|
*/
|
|
25013
25013
|
obscuration?: number;
|
|
25014
|
+
/**
|
|
25015
|
+
* For a lunar-phase event, which syzygy it is: new-moon (Sun-Moon conjunction) or full-moon (Sun-Moon opposition). The intermediate quarters are not emitted. A stable machine value, never localized. Absent for other event types.
|
|
25016
|
+
*/
|
|
25017
|
+
phase?: 'new-moon' | 'full-moon';
|
|
25014
25018
|
/**
|
|
25015
25019
|
* Plain-language summary of the event, suitable for direct display. The only localized field: when lang is set this sentence, and the body, target, and aspect names within it, render in the requested language while the structured fields stay English.
|
|
25016
25020
|
*/
|
|
@@ -25176,7 +25180,7 @@ export type PostForecastTransitsErrors = {
|
|
|
25176
25180
|
export type PostForecastTransitsError = PostForecastTransitsErrors[keyof PostForecastTransitsErrors];
|
|
25177
25181
|
export type PostForecastTransitsResponses = {
|
|
25178
25182
|
/**
|
|
25179
|
-
* Time-ordered western
|
|
25183
|
+
* Time-ordered western forecast events: aspects, ingresses, stations, eclipses, and moon phases
|
|
25180
25184
|
*/
|
|
25181
25185
|
200: {
|
|
25182
25186
|
/**
|
|
@@ -25229,19 +25233,19 @@ export type PostForecastTransitsResponses = {
|
|
|
25229
25233
|
*/
|
|
25230
25234
|
datetime: string;
|
|
25231
25235
|
/**
|
|
25232
|
-
* Forecast domain. western covers transit aspects, sign ingresses, and
|
|
25236
|
+
* Forecast domain. western covers transit aspects, sign ingresses, retrograde stations, eclipses, and new and full moons. vedic covers Vimshottari mahadasha, antardasha, and pratyantardasha boundaries. biorhythm covers critical days. A stable machine value, never localized, so consumers can branch on it under any language.
|
|
25233
25237
|
*/
|
|
25234
25238
|
domain: 'western' | 'vedic' | 'biorhythm';
|
|
25235
25239
|
/**
|
|
25236
|
-
* Event kind. transit-aspect, sign-ingress, retrograde-station, and
|
|
25240
|
+
* Event kind. transit-aspect, sign-ingress, retrograde-station, eclipse, and lunar-phase are western, dasha-change is vedic Vimshottari, critical-day is biorhythm. A stable machine value, never localized, so consumers can branch on it under any language.
|
|
25237
25241
|
*/
|
|
25238
|
-
type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'dasha-change' | 'critical-day';
|
|
25242
|
+
type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'lunar-phase' | 'dasha-change' | 'critical-day';
|
|
25239
25243
|
/**
|
|
25240
|
-
* Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse
|
|
25244
|
+
* Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse, Moon for a lunar eclipse or a new or full moon, a mahadasha, antardasha, or pratyantardasha label for dasha changes, or the critical cycle for biorhythm days.
|
|
25241
25245
|
*/
|
|
25242
25246
|
body: string;
|
|
25243
25247
|
/**
|
|
25244
|
-
* For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered. Absent for other event types.
|
|
25248
|
+
* For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered, and for a lunar-phase, the zodiac sign of the New or Full Moon. Absent for other event types.
|
|
25245
25249
|
*/
|
|
25246
25250
|
target?: string;
|
|
25247
25251
|
/**
|
|
@@ -25264,6 +25268,10 @@ export type PostForecastTransitsResponses = {
|
|
|
25264
25268
|
* For a lunar eclipse, the peak fraction from 0 to 1 of the Moon disc covered by Earth umbra. 1 for a total lunar eclipse, between 0 and 1 for a partial, 0 for a penumbral. Absent for solar eclipses and other event types.
|
|
25265
25269
|
*/
|
|
25266
25270
|
obscuration?: number;
|
|
25271
|
+
/**
|
|
25272
|
+
* For a lunar-phase event, which syzygy it is: new-moon (Sun-Moon conjunction) or full-moon (Sun-Moon opposition). The intermediate quarters are not emitted. A stable machine value, never localized. Absent for other event types.
|
|
25273
|
+
*/
|
|
25274
|
+
phase?: 'new-moon' | 'full-moon';
|
|
25267
25275
|
/**
|
|
25268
25276
|
* Plain-language summary of the event, suitable for direct display. The only localized field: when lang is set this sentence, and the body, target, and aspect names within it, render in the requested language while the structured fields stay English.
|
|
25269
25277
|
*/
|
|
@@ -25503,19 +25511,19 @@ export type PostForecastSignificantDatesResponses = {
|
|
|
25503
25511
|
*/
|
|
25504
25512
|
datetime: string;
|
|
25505
25513
|
/**
|
|
25506
|
-
* Forecast domain. western covers transit aspects, sign ingresses, and
|
|
25514
|
+
* Forecast domain. western covers transit aspects, sign ingresses, retrograde stations, eclipses, and new and full moons. vedic covers Vimshottari mahadasha, antardasha, and pratyantardasha boundaries. biorhythm covers critical days. A stable machine value, never localized, so consumers can branch on it under any language.
|
|
25507
25515
|
*/
|
|
25508
25516
|
domain: 'western' | 'vedic' | 'biorhythm';
|
|
25509
25517
|
/**
|
|
25510
|
-
* Event kind. transit-aspect, sign-ingress, retrograde-station, and
|
|
25518
|
+
* Event kind. transit-aspect, sign-ingress, retrograde-station, eclipse, and lunar-phase are western, dasha-change is vedic Vimshottari, critical-day is biorhythm. A stable machine value, never localized, so consumers can branch on it under any language.
|
|
25511
25519
|
*/
|
|
25512
|
-
type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'dasha-change' | 'critical-day';
|
|
25520
|
+
type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'lunar-phase' | 'dasha-change' | 'critical-day';
|
|
25513
25521
|
/**
|
|
25514
|
-
* Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse
|
|
25522
|
+
* Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse, Moon for a lunar eclipse or a new or full moon, a mahadasha, antardasha, or pratyantardasha label for dasha changes, or the critical cycle for biorhythm days.
|
|
25515
25523
|
*/
|
|
25516
25524
|
body: string;
|
|
25517
25525
|
/**
|
|
25518
|
-
* For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered. Absent for other event types.
|
|
25526
|
+
* For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered, and for a lunar-phase, the zodiac sign of the New or Full Moon. Absent for other event types.
|
|
25519
25527
|
*/
|
|
25520
25528
|
target?: string;
|
|
25521
25529
|
/**
|
|
@@ -25538,6 +25546,10 @@ export type PostForecastSignificantDatesResponses = {
|
|
|
25538
25546
|
* For a lunar eclipse, the peak fraction from 0 to 1 of the Moon disc covered by Earth umbra. 1 for a total lunar eclipse, between 0 and 1 for a partial, 0 for a penumbral. Absent for solar eclipses and other event types.
|
|
25539
25547
|
*/
|
|
25540
25548
|
obscuration?: number;
|
|
25549
|
+
/**
|
|
25550
|
+
* For a lunar-phase event, which syzygy it is: new-moon (Sun-Moon conjunction) or full-moon (Sun-Moon opposition). The intermediate quarters are not emitted. A stable machine value, never localized. Absent for other event types.
|
|
25551
|
+
*/
|
|
25552
|
+
phase?: 'new-moon' | 'full-moon';
|
|
25541
25553
|
/**
|
|
25542
25554
|
* Plain-language summary of the event, suitable for direct display. The only localized field: when lang is set this sentence, and the body, target, and aspect names within it, render in the requested language while the structured fields stay English.
|
|
25543
25555
|
*/
|
|
@@ -25796,6 +25808,7 @@ export type PostForecastDigestResponses = {
|
|
|
25796
25808
|
'sign-ingress'?: number;
|
|
25797
25809
|
'retrograde-station'?: number;
|
|
25798
25810
|
eclipse?: number;
|
|
25811
|
+
'lunar-phase'?: number;
|
|
25799
25812
|
'dasha-change'?: number;
|
|
25800
25813
|
'critical-day'?: number;
|
|
25801
25814
|
};
|
|
@@ -25812,19 +25825,19 @@ export type PostForecastDigestResponses = {
|
|
|
25812
25825
|
*/
|
|
25813
25826
|
datetime: string;
|
|
25814
25827
|
/**
|
|
25815
|
-
* Forecast domain. western covers transit aspects, sign ingresses, and
|
|
25828
|
+
* Forecast domain. western covers transit aspects, sign ingresses, retrograde stations, eclipses, and new and full moons. vedic covers Vimshottari mahadasha, antardasha, and pratyantardasha boundaries. biorhythm covers critical days. A stable machine value, never localized, so consumers can branch on it under any language.
|
|
25816
25829
|
*/
|
|
25817
25830
|
domain: 'western' | 'vedic' | 'biorhythm';
|
|
25818
25831
|
/**
|
|
25819
|
-
* Event kind. transit-aspect, sign-ingress, retrograde-station, and
|
|
25832
|
+
* Event kind. transit-aspect, sign-ingress, retrograde-station, eclipse, and lunar-phase are western, dasha-change is vedic Vimshottari, critical-day is biorhythm. A stable machine value, never localized, so consumers can branch on it under any language.
|
|
25820
25833
|
*/
|
|
25821
|
-
type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'dasha-change' | 'critical-day';
|
|
25834
|
+
type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'lunar-phase' | 'dasha-change' | 'critical-day';
|
|
25822
25835
|
/**
|
|
25823
|
-
* Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse
|
|
25836
|
+
* Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse, Moon for a lunar eclipse or a new or full moon, a mahadasha, antardasha, or pratyantardasha label for dasha changes, or the critical cycle for biorhythm days.
|
|
25824
25837
|
*/
|
|
25825
25838
|
body: string;
|
|
25826
25839
|
/**
|
|
25827
|
-
* For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered. Absent for other event types.
|
|
25840
|
+
* For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered, and for a lunar-phase, the zodiac sign of the New or Full Moon. Absent for other event types.
|
|
25828
25841
|
*/
|
|
25829
25842
|
target?: string;
|
|
25830
25843
|
/**
|
|
@@ -25847,6 +25860,10 @@ export type PostForecastDigestResponses = {
|
|
|
25847
25860
|
* For a lunar eclipse, the peak fraction from 0 to 1 of the Moon disc covered by Earth umbra. 1 for a total lunar eclipse, between 0 and 1 for a partial, 0 for a penumbral. Absent for solar eclipses and other event types.
|
|
25848
25861
|
*/
|
|
25849
25862
|
obscuration?: number;
|
|
25863
|
+
/**
|
|
25864
|
+
* For a lunar-phase event, which syzygy it is: new-moon (Sun-Moon conjunction) or full-moon (Sun-Moon opposition). The intermediate quarters are not emitted. A stable machine value, never localized. Absent for other event types.
|
|
25865
|
+
*/
|
|
25866
|
+
phase?: 'new-moon' | 'full-moon';
|
|
25850
25867
|
/**
|
|
25851
25868
|
* Plain-language summary of the event, suitable for direct display. The only localized field: when lang is set this sentence, and the body, target, and aspect names within it, render in the requested language while the structured fields stay English.
|
|
25852
25869
|
*/
|