@roxyapi/sdk 1.2.32 → 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 +102 -119
- package/dist/factory.js +6 -6
- package/dist/sdk.gen.d.ts +5 -5
- 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 +3 -3
- 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 +5 -5
- package/src/types.gen.ts +38 -21
- package/src/version.ts +1 -1
package/src/types.gen.ts
CHANGED
|
@@ -25565,19 +25565,19 @@ export type PostForecastTimelineResponses = {
|
|
|
25565
25565
|
*/
|
|
25566
25566
|
datetime: string;
|
|
25567
25567
|
/**
|
|
25568
|
-
* Forecast domain. western covers transit aspects, sign ingresses, and
|
|
25568
|
+
* 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.
|
|
25569
25569
|
*/
|
|
25570
25570
|
domain: 'western' | 'vedic' | 'biorhythm';
|
|
25571
25571
|
/**
|
|
25572
|
-
* Event kind. transit-aspect, sign-ingress, retrograde-station, and
|
|
25572
|
+
* 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.
|
|
25573
25573
|
*/
|
|
25574
|
-
type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'dasha-change' | 'critical-day';
|
|
25574
|
+
type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'lunar-phase' | 'dasha-change' | 'critical-day';
|
|
25575
25575
|
/**
|
|
25576
|
-
* Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse
|
|
25576
|
+
* 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.
|
|
25577
25577
|
*/
|
|
25578
25578
|
body: string;
|
|
25579
25579
|
/**
|
|
25580
|
-
* For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered. Absent for other event types.
|
|
25580
|
+
* 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.
|
|
25581
25581
|
*/
|
|
25582
25582
|
target?: string;
|
|
25583
25583
|
/**
|
|
@@ -25600,6 +25600,10 @@ export type PostForecastTimelineResponses = {
|
|
|
25600
25600
|
* 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.
|
|
25601
25601
|
*/
|
|
25602
25602
|
obscuration?: number;
|
|
25603
|
+
/**
|
|
25604
|
+
* 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.
|
|
25605
|
+
*/
|
|
25606
|
+
phase?: 'new-moon' | 'full-moon';
|
|
25603
25607
|
/**
|
|
25604
25608
|
* 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.
|
|
25605
25609
|
*/
|
|
@@ -25770,7 +25774,7 @@ export type PostForecastTransitsError = PostForecastTransitsErrors[keyof PostFor
|
|
|
25770
25774
|
|
|
25771
25775
|
export type PostForecastTransitsResponses = {
|
|
25772
25776
|
/**
|
|
25773
|
-
* Time-ordered western
|
|
25777
|
+
* Time-ordered western forecast events: aspects, ingresses, stations, eclipses, and moon phases
|
|
25774
25778
|
*/
|
|
25775
25779
|
200: {
|
|
25776
25780
|
/**
|
|
@@ -25823,19 +25827,19 @@ export type PostForecastTransitsResponses = {
|
|
|
25823
25827
|
*/
|
|
25824
25828
|
datetime: string;
|
|
25825
25829
|
/**
|
|
25826
|
-
* Forecast domain. western covers transit aspects, sign ingresses, and
|
|
25830
|
+
* 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.
|
|
25827
25831
|
*/
|
|
25828
25832
|
domain: 'western' | 'vedic' | 'biorhythm';
|
|
25829
25833
|
/**
|
|
25830
|
-
* Event kind. transit-aspect, sign-ingress, retrograde-station, and
|
|
25834
|
+
* 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.
|
|
25831
25835
|
*/
|
|
25832
|
-
type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'dasha-change' | 'critical-day';
|
|
25836
|
+
type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'lunar-phase' | 'dasha-change' | 'critical-day';
|
|
25833
25837
|
/**
|
|
25834
|
-
* Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse
|
|
25838
|
+
* 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.
|
|
25835
25839
|
*/
|
|
25836
25840
|
body: string;
|
|
25837
25841
|
/**
|
|
25838
|
-
* For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered. Absent for other event types.
|
|
25842
|
+
* 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.
|
|
25839
25843
|
*/
|
|
25840
25844
|
target?: string;
|
|
25841
25845
|
/**
|
|
@@ -25858,6 +25862,10 @@ export type PostForecastTransitsResponses = {
|
|
|
25858
25862
|
* 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.
|
|
25859
25863
|
*/
|
|
25860
25864
|
obscuration?: number;
|
|
25865
|
+
/**
|
|
25866
|
+
* 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.
|
|
25867
|
+
*/
|
|
25868
|
+
phase?: 'new-moon' | 'full-moon';
|
|
25861
25869
|
/**
|
|
25862
25870
|
* 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.
|
|
25863
25871
|
*/
|
|
@@ -26102,19 +26110,19 @@ export type PostForecastSignificantDatesResponses = {
|
|
|
26102
26110
|
*/
|
|
26103
26111
|
datetime: string;
|
|
26104
26112
|
/**
|
|
26105
|
-
* Forecast domain. western covers transit aspects, sign ingresses, and
|
|
26113
|
+
* 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.
|
|
26106
26114
|
*/
|
|
26107
26115
|
domain: 'western' | 'vedic' | 'biorhythm';
|
|
26108
26116
|
/**
|
|
26109
|
-
* Event kind. transit-aspect, sign-ingress, retrograde-station, and
|
|
26117
|
+
* 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.
|
|
26110
26118
|
*/
|
|
26111
|
-
type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'dasha-change' | 'critical-day';
|
|
26119
|
+
type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'lunar-phase' | 'dasha-change' | 'critical-day';
|
|
26112
26120
|
/**
|
|
26113
|
-
* Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse
|
|
26121
|
+
* 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.
|
|
26114
26122
|
*/
|
|
26115
26123
|
body: string;
|
|
26116
26124
|
/**
|
|
26117
|
-
* For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered. Absent for other event types.
|
|
26125
|
+
* 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.
|
|
26118
26126
|
*/
|
|
26119
26127
|
target?: string;
|
|
26120
26128
|
/**
|
|
@@ -26137,6 +26145,10 @@ export type PostForecastSignificantDatesResponses = {
|
|
|
26137
26145
|
* 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.
|
|
26138
26146
|
*/
|
|
26139
26147
|
obscuration?: number;
|
|
26148
|
+
/**
|
|
26149
|
+
* 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.
|
|
26150
|
+
*/
|
|
26151
|
+
phase?: 'new-moon' | 'full-moon';
|
|
26140
26152
|
/**
|
|
26141
26153
|
* 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.
|
|
26142
26154
|
*/
|
|
@@ -26400,6 +26412,7 @@ export type PostForecastDigestResponses = {
|
|
|
26400
26412
|
'sign-ingress'?: number;
|
|
26401
26413
|
'retrograde-station'?: number;
|
|
26402
26414
|
eclipse?: number;
|
|
26415
|
+
'lunar-phase'?: number;
|
|
26403
26416
|
'dasha-change'?: number;
|
|
26404
26417
|
'critical-day'?: number;
|
|
26405
26418
|
};
|
|
@@ -26416,19 +26429,19 @@ export type PostForecastDigestResponses = {
|
|
|
26416
26429
|
*/
|
|
26417
26430
|
datetime: string;
|
|
26418
26431
|
/**
|
|
26419
|
-
* Forecast domain. western covers transit aspects, sign ingresses, and
|
|
26432
|
+
* 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.
|
|
26420
26433
|
*/
|
|
26421
26434
|
domain: 'western' | 'vedic' | 'biorhythm';
|
|
26422
26435
|
/**
|
|
26423
|
-
* Event kind. transit-aspect, sign-ingress, retrograde-station, and
|
|
26436
|
+
* 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.
|
|
26424
26437
|
*/
|
|
26425
|
-
type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'dasha-change' | 'critical-day';
|
|
26438
|
+
type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'lunar-phase' | 'dasha-change' | 'critical-day';
|
|
26426
26439
|
/**
|
|
26427
|
-
* Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse
|
|
26440
|
+
* 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.
|
|
26428
26441
|
*/
|
|
26429
26442
|
body: string;
|
|
26430
26443
|
/**
|
|
26431
|
-
* For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered. Absent for other event types.
|
|
26444
|
+
* 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.
|
|
26432
26445
|
*/
|
|
26433
26446
|
target?: string;
|
|
26434
26447
|
/**
|
|
@@ -26451,6 +26464,10 @@ export type PostForecastDigestResponses = {
|
|
|
26451
26464
|
* 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.
|
|
26452
26465
|
*/
|
|
26453
26466
|
obscuration?: number;
|
|
26467
|
+
/**
|
|
26468
|
+
* 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.
|
|
26469
|
+
*/
|
|
26470
|
+
phase?: 'new-moon' | 'full-moon';
|
|
26454
26471
|
/**
|
|
26455
26472
|
* 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.
|
|
26456
26473
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.2.
|
|
1
|
+
export const VERSION = '1.2.34';
|