@roxyapi/sdk 1.2.25 → 1.2.27
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/dist/factory.cjs +5 -5
- package/dist/factory.js +5 -5
- package/dist/sdk.gen.d.ts +4 -4
- package/dist/types.gen.d.ts +343 -49
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/sdk.gen.ts +4 -4
- package/src/types.gen.ts +343 -49
- package/src/version.ts +1 -1
package/dist/factory.cjs
CHANGED
|
@@ -891,7 +891,7 @@ var Astrology = class extends HeyApiClient {
|
|
|
891
891
|
/**
|
|
892
892
|
* Get all planet meanings - Complete astrology planet interpretations list
|
|
893
893
|
*
|
|
894
|
-
* Returns all
|
|
894
|
+
* Returns all 14 astrological bodies (the 10 classical planets Sun through Pluto, the lunar nodes, Chiron, and Black Moon Lilith) with essential meanings: name, symbol, tagline, category (personal/social/generational), ruling sign, and short descriptions. Perfect for astrology reference apps, planet meaning widgets, birth chart interpretation tools, astrology learning platforms, planetary keywords reference, and zodiac planet guides. Use GET /planet-meanings/{id} for complete profiles with detailed interpretations, keywords, temperature, and dignities (rulership/detriment/exultation/fall).
|
|
895
895
|
*/
|
|
896
896
|
listPlanetMeanings(options) {
|
|
897
897
|
return (options?.client ?? this.client).get({
|
|
@@ -915,7 +915,7 @@ var Astrology = class extends HeyApiClient {
|
|
|
915
915
|
/**
|
|
916
916
|
* Generate natal chart - Birth chart calculator API with houses and aspects
|
|
917
917
|
*
|
|
918
|
-
* Calculate complete Western astrology natal chart (birth chart) with tropical zodiac. Returns all 10
|
|
918
|
+
* Calculate complete Western astrology natal chart (birth chart) with tropical zodiac. Returns all 14 celestial bodies (the 10 classical planets Sun through Pluto, the lunar nodes, Chiron, and Black Moon Lilith), 12 house cusps with customizable house systems (Placidus, Whole Sign, Equal, Koch), major and minor aspects, Ascendant, Midheaven, dominant elements and modalities. Perfect for astrology apps, birth chart generators, horoscope websites, and astrological consultation tools. Verified against NASA JPL Horizons.
|
|
919
919
|
*/
|
|
920
920
|
generateNatalChart(options) {
|
|
921
921
|
return (options?.client ?? this.client).post({
|
|
@@ -931,7 +931,7 @@ var Astrology = class extends HeyApiClient {
|
|
|
931
931
|
/**
|
|
932
932
|
* Get planetary positions - Ephemeris calculator for all planets
|
|
933
933
|
*
|
|
934
|
-
* Calculate accurate tropical zodiac positions for all 10 planets
|
|
934
|
+
* Calculate accurate tropical zodiac positions for all 14 celestial bodies (the 10 classical planets Sun through Pluto, the lunar nodes, Chiron, and Black Moon Lilith) for any date, time, and location. Returns longitude, latitude, zodiac sign, degree within sign, daily motion speed, and retrograde status. Perfect for transit tracking, ephemeris tables, astrology apps, and planetary position widgets. Verified against NASA JPL Horizons.
|
|
935
935
|
*/
|
|
936
936
|
getPlanetaryPositions(options) {
|
|
937
937
|
return (options?.client ?? this.client).post({
|
|
@@ -1031,7 +1031,7 @@ var Astrology = class extends HeyApiClient {
|
|
|
1031
1031
|
/**
|
|
1032
1032
|
* Calculate planetary transits - Current transits with natal chart comparison
|
|
1033
1033
|
*
|
|
1034
|
-
* Calculate current or future planetary transits (positions of all
|
|
1034
|
+
* Calculate current or future planetary transits (positions of all bodies now). Optionally compare transits to natal chart to find transit-to-natal aspects. Returns all 14 celestial bodies (the 10 classical planets, the lunar nodes, Chiron, and Black Moon Lilith) with signs, degrees, and speeds. When natal chart provided, includes transit aspects (transiting Sun conjunct natal Mars, etc.) with orbs and applying/separating status. Perfect for daily transit forecasts, aspect alerts, and personalized transit reports.
|
|
1035
1035
|
*/
|
|
1036
1036
|
calculateTransits(options) {
|
|
1037
1037
|
return (options?.client ?? this.client).post({
|
|
@@ -2840,7 +2840,7 @@ var Roxy = class _Roxy extends HeyApiClient {
|
|
|
2840
2840
|
};
|
|
2841
2841
|
|
|
2842
2842
|
// src/version.ts
|
|
2843
|
-
var VERSION = "1.2.
|
|
2843
|
+
var VERSION = "1.2.27";
|
|
2844
2844
|
|
|
2845
2845
|
// src/factory.ts
|
|
2846
2846
|
function createRoxy(auth) {
|
package/dist/factory.js
CHANGED
|
@@ -55,7 +55,7 @@ var Astrology = class extends HeyApiClient {
|
|
|
55
55
|
/**
|
|
56
56
|
* Get all planet meanings - Complete astrology planet interpretations list
|
|
57
57
|
*
|
|
58
|
-
* Returns all
|
|
58
|
+
* Returns all 14 astrological bodies (the 10 classical planets Sun through Pluto, the lunar nodes, Chiron, and Black Moon Lilith) with essential meanings: name, symbol, tagline, category (personal/social/generational), ruling sign, and short descriptions. Perfect for astrology reference apps, planet meaning widgets, birth chart interpretation tools, astrology learning platforms, planetary keywords reference, and zodiac planet guides. Use GET /planet-meanings/{id} for complete profiles with detailed interpretations, keywords, temperature, and dignities (rulership/detriment/exultation/fall).
|
|
59
59
|
*/
|
|
60
60
|
listPlanetMeanings(options) {
|
|
61
61
|
return (options?.client ?? this.client).get({
|
|
@@ -79,7 +79,7 @@ var Astrology = class extends HeyApiClient {
|
|
|
79
79
|
/**
|
|
80
80
|
* Generate natal chart - Birth chart calculator API with houses and aspects
|
|
81
81
|
*
|
|
82
|
-
* Calculate complete Western astrology natal chart (birth chart) with tropical zodiac. Returns all 10
|
|
82
|
+
* Calculate complete Western astrology natal chart (birth chart) with tropical zodiac. Returns all 14 celestial bodies (the 10 classical planets Sun through Pluto, the lunar nodes, Chiron, and Black Moon Lilith), 12 house cusps with customizable house systems (Placidus, Whole Sign, Equal, Koch), major and minor aspects, Ascendant, Midheaven, dominant elements and modalities. Perfect for astrology apps, birth chart generators, horoscope websites, and astrological consultation tools. Verified against NASA JPL Horizons.
|
|
83
83
|
*/
|
|
84
84
|
generateNatalChart(options) {
|
|
85
85
|
return (options?.client ?? this.client).post({
|
|
@@ -95,7 +95,7 @@ var Astrology = class extends HeyApiClient {
|
|
|
95
95
|
/**
|
|
96
96
|
* Get planetary positions - Ephemeris calculator for all planets
|
|
97
97
|
*
|
|
98
|
-
* Calculate accurate tropical zodiac positions for all 10 planets
|
|
98
|
+
* Calculate accurate tropical zodiac positions for all 14 celestial bodies (the 10 classical planets Sun through Pluto, the lunar nodes, Chiron, and Black Moon Lilith) for any date, time, and location. Returns longitude, latitude, zodiac sign, degree within sign, daily motion speed, and retrograde status. Perfect for transit tracking, ephemeris tables, astrology apps, and planetary position widgets. Verified against NASA JPL Horizons.
|
|
99
99
|
*/
|
|
100
100
|
getPlanetaryPositions(options) {
|
|
101
101
|
return (options?.client ?? this.client).post({
|
|
@@ -195,7 +195,7 @@ var Astrology = class extends HeyApiClient {
|
|
|
195
195
|
/**
|
|
196
196
|
* Calculate planetary transits - Current transits with natal chart comparison
|
|
197
197
|
*
|
|
198
|
-
* Calculate current or future planetary transits (positions of all
|
|
198
|
+
* Calculate current or future planetary transits (positions of all bodies now). Optionally compare transits to natal chart to find transit-to-natal aspects. Returns all 14 celestial bodies (the 10 classical planets, the lunar nodes, Chiron, and Black Moon Lilith) with signs, degrees, and speeds. When natal chart provided, includes transit aspects (transiting Sun conjunct natal Mars, etc.) with orbs and applying/separating status. Perfect for daily transit forecasts, aspect alerts, and personalized transit reports.
|
|
199
199
|
*/
|
|
200
200
|
calculateTransits(options) {
|
|
201
201
|
return (options?.client ?? this.client).post({
|
|
@@ -2004,7 +2004,7 @@ var Roxy = class _Roxy extends HeyApiClient {
|
|
|
2004
2004
|
};
|
|
2005
2005
|
|
|
2006
2006
|
// src/version.ts
|
|
2007
|
-
var VERSION = "1.2.
|
|
2007
|
+
var VERSION = "1.2.27";
|
|
2008
2008
|
|
|
2009
2009
|
// src/factory.ts
|
|
2010
2010
|
function createRoxy(auth) {
|
package/dist/sdk.gen.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ export declare class Astrology extends HeyApiClient {
|
|
|
41
41
|
/**
|
|
42
42
|
* Get all planet meanings - Complete astrology planet interpretations list
|
|
43
43
|
*
|
|
44
|
-
* Returns all
|
|
44
|
+
* Returns all 14 astrological bodies (the 10 classical planets Sun through Pluto, the lunar nodes, Chiron, and Black Moon Lilith) with essential meanings: name, symbol, tagline, category (personal/social/generational), ruling sign, and short descriptions. Perfect for astrology reference apps, planet meaning widgets, birth chart interpretation tools, astrology learning platforms, planetary keywords reference, and zodiac planet guides. Use GET /planet-meanings/{id} for complete profiles with detailed interpretations, keywords, temperature, and dignities (rulership/detriment/exultation/fall).
|
|
45
45
|
*/
|
|
46
46
|
listPlanetMeanings<ThrowOnError extends boolean = false>(options?: Options<GetAstrologyPlanetMeaningsData, ThrowOnError>): import("./client").RequestResult<GetAstrologyPlanetMeaningsResponses, GetAstrologyPlanetMeaningsErrors, ThrowOnError, "fields">;
|
|
47
47
|
/**
|
|
@@ -53,13 +53,13 @@ export declare class Astrology extends HeyApiClient {
|
|
|
53
53
|
/**
|
|
54
54
|
* Generate natal chart - Birth chart calculator API with houses and aspects
|
|
55
55
|
*
|
|
56
|
-
* Calculate complete Western astrology natal chart (birth chart) with tropical zodiac. Returns all 10
|
|
56
|
+
* Calculate complete Western astrology natal chart (birth chart) with tropical zodiac. Returns all 14 celestial bodies (the 10 classical planets Sun through Pluto, the lunar nodes, Chiron, and Black Moon Lilith), 12 house cusps with customizable house systems (Placidus, Whole Sign, Equal, Koch), major and minor aspects, Ascendant, Midheaven, dominant elements and modalities. Perfect for astrology apps, birth chart generators, horoscope websites, and astrological consultation tools. Verified against NASA JPL Horizons.
|
|
57
57
|
*/
|
|
58
58
|
generateNatalChart<ThrowOnError extends boolean = false>(options?: Options<PostAstrologyNatalChartData, ThrowOnError>): import("./client").RequestResult<PostAstrologyNatalChartResponses, PostAstrologyNatalChartErrors, ThrowOnError, "fields">;
|
|
59
59
|
/**
|
|
60
60
|
* Get planetary positions - Ephemeris calculator for all planets
|
|
61
61
|
*
|
|
62
|
-
* Calculate accurate tropical zodiac positions for all 10 planets
|
|
62
|
+
* Calculate accurate tropical zodiac positions for all 14 celestial bodies (the 10 classical planets Sun through Pluto, the lunar nodes, Chiron, and Black Moon Lilith) for any date, time, and location. Returns longitude, latitude, zodiac sign, degree within sign, daily motion speed, and retrograde status. Perfect for transit tracking, ephemeris tables, astrology apps, and planetary position widgets. Verified against NASA JPL Horizons.
|
|
63
63
|
*/
|
|
64
64
|
getPlanetaryPositions<ThrowOnError extends boolean = false>(options?: Options<PostAstrologyPlanetsData, ThrowOnError>): import("./client").RequestResult<PostAstrologyPlanetsResponses, PostAstrologyPlanetsErrors, ThrowOnError, "fields">;
|
|
65
65
|
/**
|
|
@@ -101,7 +101,7 @@ export declare class Astrology extends HeyApiClient {
|
|
|
101
101
|
/**
|
|
102
102
|
* Calculate planetary transits - Current transits with natal chart comparison
|
|
103
103
|
*
|
|
104
|
-
* Calculate current or future planetary transits (positions of all
|
|
104
|
+
* Calculate current or future planetary transits (positions of all bodies now). Optionally compare transits to natal chart to find transit-to-natal aspects. Returns all 14 celestial bodies (the 10 classical planets, the lunar nodes, Chiron, and Black Moon Lilith) with signs, degrees, and speeds. When natal chart provided, includes transit aspects (transiting Sun conjunct natal Mars, etc.) with orbs and applying/separating status. Perfect for daily transit forecasts, aspect alerts, and personalized transit reports.
|
|
105
105
|
*/
|
|
106
106
|
calculateTransits<ThrowOnError extends boolean = false>(options?: Options<PostAstrologyTransitsData, ThrowOnError>): import("./client").RequestResult<PostAstrologyTransitsResponses, PostAstrologyTransitsErrors, ThrowOnError, "fields">;
|
|
107
107
|
/**
|