@roxyapi/sdk 1.2.29 → 1.2.30
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 +679 -40
- 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 +680 -41
- package/src/version.ts +1 -1
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.2.
|
|
1
|
+
export declare const VERSION = "1.2.30";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
package/src/sdk.gen.ts
CHANGED
|
@@ -76,7 +76,7 @@ export class Astrology extends HeyApiClient {
|
|
|
76
76
|
/**
|
|
77
77
|
* Get all planet meanings - Complete astrology planet interpretations list
|
|
78
78
|
*
|
|
79
|
-
* 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/
|
|
79
|
+
* 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/exaltation/fall).
|
|
80
80
|
*/
|
|
81
81
|
public listPlanetMeanings<ThrowOnError extends boolean = false>(options?: Options<GetAstrologyPlanetMeaningsData, ThrowOnError>) {
|
|
82
82
|
return (options?.client ?? this.client).get<GetAstrologyPlanetMeaningsResponses, GetAstrologyPlanetMeaningsErrors, ThrowOnError>({
|
|
@@ -89,7 +89,7 @@ export class Astrology extends HeyApiClient {
|
|
|
89
89
|
/**
|
|
90
90
|
* Get planet meaning details - Complete astrology planet interpretation
|
|
91
91
|
*
|
|
92
|
-
* Retrieve comprehensive planet interpretation for any astrological planet using lowercase ID (e.g., "sun", "moon") or case-insensitive name (e.g., "Sun", "MOON"). Returns complete astrology meaning including: symbol, tagline, category (personal/social/generational), temperature, orbital period, retrograde status, dignities (rulership/detriment/
|
|
92
|
+
* Retrieve comprehensive planet interpretation for any astrological planet using lowercase ID (e.g., "sun", "moon") or case-insensitive name (e.g., "Sun", "MOON"). Returns complete astrology meaning including: symbol, tagline, category (personal/social/generational), temperature, orbital period, retrograde status, dignities (rulership/detriment/exaltation/fall), positive and negative keywords, and short/long descriptions. Perfect for birth chart readings, planet meaning lookups, astrology education, natal chart interpretation, transit meanings, planetary symbolism reference, and keyword-based interpretations.
|
|
93
93
|
*/
|
|
94
94
|
public getPlanetMeaning<ThrowOnError extends boolean = false>(options: Options<GetAstrologyPlanetMeaningsByIdData, ThrowOnError>) {
|
|
95
95
|
return (options.client ?? this.client).get<GetAstrologyPlanetMeaningsByIdResponses, GetAstrologyPlanetMeaningsByIdErrors, ThrowOnError>({
|
|
@@ -277,7 +277,7 @@ export class Astrology extends HeyApiClient {
|
|
|
277
277
|
/**
|
|
278
278
|
* Solar Return Chart - Annual birthday forecast with relocated chart
|
|
279
279
|
*
|
|
280
|
-
* Generate a solar return chart for any year
|
|
280
|
+
* Generate a solar return chart for any year, the foundational technique for annual astrological forecasting. The chart is cast for the exact moment the transiting Sun returns to its natal ecliptic longitude (your astrological birthday). Returns full tropical zodiac chart with planetary positions, house cusps, aspects, Ascendant, and Midheaven. Location-sensitive: relocating your solar return chart to a different city changes the houses and Ascendant. Solar return chart API, annual horoscope forecast, birthday chart calculator, yearly astrology prediction, relocated solar return.
|
|
281
281
|
*/
|
|
282
282
|
public generateSolarReturn<ThrowOnError extends boolean = false>(options?: Options<PostAstrologySolarReturnData, ThrowOnError>) {
|
|
283
283
|
return (options?.client ?? this.client).post<PostAstrologySolarReturnResponses, PostAstrologySolarReturnErrors, ThrowOnError>({
|
|
@@ -294,7 +294,7 @@ export class Astrology extends HeyApiClient {
|
|
|
294
294
|
/**
|
|
295
295
|
* Lunar Return Chart - Monthly emotional forecast with Moon cycle chart
|
|
296
296
|
*
|
|
297
|
-
* Generate a lunar return chart for any month
|
|
297
|
+
* Generate a lunar return chart for any month, cast for the exact moment the transiting Moon returns to its natal ecliptic longitude. The Moon completes one sidereal orbit every ~27.3 days, making this the primary technique for monthly astrological forecasting. Returns full tropical zodiac chart with planetary positions, house cusps, aspects, Ascendant, and Midheaven. Reveals emotional patterns, domestic focus, and intuitive themes for the coming month. Lunar return chart API, monthly horoscope forecast, Moon cycle chart, emotional astrology prediction.
|
|
298
298
|
*/
|
|
299
299
|
public generateLunarReturn<ThrowOnError extends boolean = false>(options?: Options<PostAstrologyLunarReturnData, ThrowOnError>) {
|
|
300
300
|
return (options?.client ?? this.client).post<PostAstrologyLunarReturnResponses, PostAstrologyLunarReturnErrors, ThrowOnError>({
|