@roxyapi/sdk 1.2.32 → 1.2.33

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 CHANGED
@@ -2521,7 +2521,7 @@ var Forecast = class extends HeyApiClient {
2521
2521
  *
2522
2522
  * Cast the solar return chart for one subject and year: the chart erected for the exact moment the transiting Sun returns to its natal ecliptic longitude, the foundational technique for annual astrological forecasting. Returns the full tropical chart with planetary positions, house cusps, aspects, Ascendant, and Midheaven. Location-sensitive: pass the birthplace to anchor the chart to natal geography, or the current city for a relocated solar return where the houses and Ascendant shift to where you are on your birthday. Built for year-ahead forecast tools, birthday charts, and annual horoscope features.
2523
2523
  */
2524
- generateSolarReturn(options) {
2524
+ forecastSolarReturn(options) {
2525
2525
  return (options?.client ?? this.client).post({
2526
2526
  security: [{ name: "X-API-Key", type: "apiKey" }],
2527
2527
  url: "/forecast/solar-return",
@@ -3150,7 +3150,7 @@ var Roxy = class _Roxy extends HeyApiClient {
3150
3150
  };
3151
3151
 
3152
3152
  // src/version.ts
3153
- var VERSION = "1.2.32";
3153
+ var VERSION = "1.2.33";
3154
3154
 
3155
3155
  // src/factory.ts
3156
3156
  function createRoxy(auth) {
package/dist/factory.js CHANGED
@@ -1683,7 +1683,7 @@ var Forecast = class extends HeyApiClient {
1683
1683
  *
1684
1684
  * Cast the solar return chart for one subject and year: the chart erected for the exact moment the transiting Sun returns to its natal ecliptic longitude, the foundational technique for annual astrological forecasting. Returns the full tropical chart with planetary positions, house cusps, aspects, Ascendant, and Midheaven. Location-sensitive: pass the birthplace to anchor the chart to natal geography, or the current city for a relocated solar return where the houses and Ascendant shift to where you are on your birthday. Built for year-ahead forecast tools, birthday charts, and annual horoscope features.
1685
1685
  */
1686
- generateSolarReturn(options) {
1686
+ forecastSolarReturn(options) {
1687
1687
  return (options?.client ?? this.client).post({
1688
1688
  security: [{ name: "X-API-Key", type: "apiKey" }],
1689
1689
  url: "/forecast/solar-return",
@@ -2312,7 +2312,7 @@ var Roxy = class _Roxy extends HeyApiClient {
2312
2312
  };
2313
2313
 
2314
2314
  // src/version.ts
2315
- var VERSION = "1.2.32";
2315
+ var VERSION = "1.2.33";
2316
2316
 
2317
2317
  // src/factory.ts
2318
2318
  function createRoxy(auth) {
package/dist/sdk.gen.d.ts CHANGED
@@ -689,7 +689,7 @@ export declare class Forecast extends HeyApiClient {
689
689
  *
690
690
  * Cast the solar return chart for one subject and year: the chart erected for the exact moment the transiting Sun returns to its natal ecliptic longitude, the foundational technique for annual astrological forecasting. Returns the full tropical chart with planetary positions, house cusps, aspects, Ascendant, and Midheaven. Location-sensitive: pass the birthplace to anchor the chart to natal geography, or the current city for a relocated solar return where the houses and Ascendant shift to where you are on your birthday. Built for year-ahead forecast tools, birthday charts, and annual horoscope features.
691
691
  */
692
- generateSolarReturn<ThrowOnError extends boolean = false>(options?: Options<PostForecastSolarReturnData, ThrowOnError>): import("./client").RequestResult<PostForecastSolarReturnResponses, PostForecastSolarReturnErrors, ThrowOnError, "fields">;
692
+ forecastSolarReturn<ThrowOnError extends boolean = false>(options?: Options<PostForecastSolarReturnData, ThrowOnError>): import("./client").RequestResult<PostForecastSolarReturnResponses, PostForecastSolarReturnErrors, ThrowOnError, "fields">;
693
693
  }
694
694
  export declare class Biorhythm extends HeyApiClient {
695
695
  /**
package/dist/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "1.2.32";
1
+ export declare const VERSION = "1.2.33";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1101,7 +1101,7 @@ const { data } = await roxy.forecast.generateDigest({
1101
1101
  });
1102
1102
 
1103
1103
  // Solar return chart - Annual birthday forecast chart for a single subject
1104
- const { data } = await roxy.forecast.generateSolarReturn({
1104
+ const { data } = await roxy.forecast.forecastSolarReturn({
1105
1105
  body: {
1106
1106
  date: '1990-07-15',
1107
1107
  time: '14:30:00',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roxyapi/sdk",
3
- "version": "1.2.32",
3
+ "version": "1.2.33",
4
4
  "description": "TypeScript SDK for Roxy — the multi-domain spiritual intelligence API",
5
5
  "type": "module",
6
6
  "exports": {
package/src/sdk.gen.ts CHANGED
@@ -1810,7 +1810,7 @@ export class Forecast extends HeyApiClient {
1810
1810
  *
1811
1811
  * Cast the solar return chart for one subject and year: the chart erected for the exact moment the transiting Sun returns to its natal ecliptic longitude, the foundational technique for annual astrological forecasting. Returns the full tropical chart with planetary positions, house cusps, aspects, Ascendant, and Midheaven. Location-sensitive: pass the birthplace to anchor the chart to natal geography, or the current city for a relocated solar return where the houses and Ascendant shift to where you are on your birthday. Built for year-ahead forecast tools, birthday charts, and annual horoscope features.
1812
1812
  */
1813
- public generateSolarReturn<ThrowOnError extends boolean = false>(options?: Options<PostForecastSolarReturnData, ThrowOnError>) {
1813
+ public forecastSolarReturn<ThrowOnError extends boolean = false>(options?: Options<PostForecastSolarReturnData, ThrowOnError>) {
1814
1814
  return (options?.client ?? this.client).post<PostForecastSolarReturnResponses, PostForecastSolarReturnErrors, ThrowOnError>({
1815
1815
  security: [{ name: 'X-API-Key', type: 'apiKey' }],
1816
1816
  url: '/forecast/solar-return',
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '1.2.32';
1
+ export const VERSION = '1.2.33';