@roxyapi/sdk 1.2.3 → 1.2.4
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 +6 -18
- package/dist/factory.js +6 -18
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/sdk.gen.d.ts +6 -12
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/types.gen.d.ts +21 -128
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
- package/src/sdk.gen.ts +6 -19
- package/src/types.gen.ts +21 -133
- package/src/version.ts +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -6993,6 +6993,10 @@ export type GetAstrologyHoroscopeBySignDailyData = {
|
|
|
6993
6993
|
* Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
|
|
6994
6994
|
*/
|
|
6995
6995
|
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
6996
|
+
/**
|
|
6997
|
+
* Forecast date in YYYY-MM-DD format. Defaults to today. Supports future and past dates for editorial scheduling.
|
|
6998
|
+
*/
|
|
6999
|
+
date?: string;
|
|
6996
7000
|
};
|
|
6997
7001
|
url: '/astrology/horoscope/{sign}/daily';
|
|
6998
7002
|
};
|
|
@@ -7065,15 +7069,15 @@ export type GetAstrologyHoroscopeBySignDailyResponses = {
|
|
|
7065
7069
|
*/
|
|
7066
7070
|
date: string;
|
|
7067
7071
|
/**
|
|
7068
|
-
* General daily overview based on
|
|
7072
|
+
* General daily overview based on Moon house activation and planetary transits. Unique per sign based on whole-sign house positions.
|
|
7069
7073
|
*/
|
|
7070
7074
|
overview: string;
|
|
7071
7075
|
/**
|
|
7072
|
-
* Love and relationship forecast.
|
|
7076
|
+
* Love and relationship forecast. Based on Venus house position relative to this sign, providing unique guidance per sign.
|
|
7073
7077
|
*/
|
|
7074
7078
|
love: string;
|
|
7075
7079
|
/**
|
|
7076
|
-
* Career and professional outlook.
|
|
7080
|
+
* Career and professional outlook. Based on Mars house position relative to this sign, with Saturn and Jupiter influences.
|
|
7077
7081
|
*/
|
|
7078
7082
|
career: string;
|
|
7079
7083
|
/**
|
|
@@ -7097,139 +7101,28 @@ export type GetAstrologyHoroscopeBySignDailyResponses = {
|
|
|
7097
7101
|
*/
|
|
7098
7102
|
luckyColor: string;
|
|
7099
7103
|
/**
|
|
7100
|
-
* Most compatible zodiac signs today,
|
|
7104
|
+
* Most compatible zodiac signs today. First sign is where Venus transits, second is the Moon sign, remainder from elemental harmony.
|
|
7101
7105
|
*/
|
|
7102
7106
|
compatibleSigns: Array<string>;
|
|
7103
|
-
};
|
|
7104
|
-
};
|
|
7105
|
-
export type GetAstrologyHoroscopeBySignDailyResponse = GetAstrologyHoroscopeBySignDailyResponses[keyof GetAstrologyHoroscopeBySignDailyResponses];
|
|
7106
|
-
export type GetAstrologyHoroscopeDailyData = {
|
|
7107
|
-
body?: never;
|
|
7108
|
-
path?: never;
|
|
7109
|
-
query?: {
|
|
7110
7107
|
/**
|
|
7111
|
-
*
|
|
7108
|
+
* Active planetary transits affecting this sign today, with house activations. Each transit shows the planet, its current sign, and which house it activates for the queried sign.
|
|
7112
7109
|
*/
|
|
7113
|
-
|
|
7114
|
-
};
|
|
7115
|
-
url: '/astrology/horoscope/daily';
|
|
7116
|
-
};
|
|
7117
|
-
export type GetAstrologyHoroscopeDailyErrors = {
|
|
7118
|
-
/**
|
|
7119
|
-
* Validation error (missing or invalid parameters)
|
|
7120
|
-
*/
|
|
7121
|
-
400: {
|
|
7110
|
+
activeTransits: Array<string>;
|
|
7122
7111
|
/**
|
|
7123
|
-
*
|
|
7112
|
+
* Current Moon sign. Changes every 2-3 days, sets the emotional tone for all signs.
|
|
7124
7113
|
*/
|
|
7125
|
-
|
|
7114
|
+
moonSign: string;
|
|
7126
7115
|
/**
|
|
7127
|
-
*
|
|
7116
|
+
* Current lunar phase (New Moon, Waxing Crescent, First Quarter, Waxing Gibbous, Full Moon, Waning Gibbous, Last Quarter, Waning Crescent).
|
|
7128
7117
|
*/
|
|
7129
|
-
|
|
7130
|
-
};
|
|
7131
|
-
/**
|
|
7132
|
-
* Invalid or missing API key
|
|
7133
|
-
*/
|
|
7134
|
-
401: {
|
|
7135
|
-
/**
|
|
7136
|
-
* Human-readable error message. May change wording.
|
|
7137
|
-
*/
|
|
7138
|
-
error: string;
|
|
7139
|
-
/**
|
|
7140
|
-
* Machine-readable error code. Stable identifier.
|
|
7141
|
-
*/
|
|
7142
|
-
code: string;
|
|
7143
|
-
};
|
|
7144
|
-
/**
|
|
7145
|
-
* Monthly rate limit exceeded
|
|
7146
|
-
*/
|
|
7147
|
-
429: {
|
|
7148
|
-
/**
|
|
7149
|
-
* Human-readable error message. May change wording.
|
|
7150
|
-
*/
|
|
7151
|
-
error: string;
|
|
7118
|
+
moonPhase: string;
|
|
7152
7119
|
/**
|
|
7153
|
-
*
|
|
7120
|
+
* Overall energy intensity for this sign today (1-10). Higher when more transits activate this sign directly. Useful for content widgets and visual indicators.
|
|
7154
7121
|
*/
|
|
7155
|
-
|
|
7156
|
-
};
|
|
7157
|
-
/**
|
|
7158
|
-
* Internal server error
|
|
7159
|
-
*/
|
|
7160
|
-
500: {
|
|
7161
|
-
/**
|
|
7162
|
-
* Human-readable error message. May change wording.
|
|
7163
|
-
*/
|
|
7164
|
-
error: string;
|
|
7165
|
-
/**
|
|
7166
|
-
* Machine-readable error code. Stable identifier.
|
|
7167
|
-
*/
|
|
7168
|
-
code: string;
|
|
7169
|
-
};
|
|
7170
|
-
};
|
|
7171
|
-
export type GetAstrologyHoroscopeDailyError = GetAstrologyHoroscopeDailyErrors[keyof GetAstrologyHoroscopeDailyErrors];
|
|
7172
|
-
export type GetAstrologyHoroscopeDailyResponses = {
|
|
7173
|
-
/**
|
|
7174
|
-
* Daily horoscopes retrieved successfully
|
|
7175
|
-
*/
|
|
7176
|
-
200: {
|
|
7177
|
-
/**
|
|
7178
|
-
* Date of these horoscope forecasts (YYYY-MM-DD).
|
|
7179
|
-
*/
|
|
7180
|
-
date: string;
|
|
7181
|
-
/**
|
|
7182
|
-
* Daily horoscope forecasts for all 12 zodiac signs (Aries through Pisces).
|
|
7183
|
-
*/
|
|
7184
|
-
horoscopes: Array<{
|
|
7185
|
-
/**
|
|
7186
|
-
* Zodiac sign for this horoscope.
|
|
7187
|
-
*/
|
|
7188
|
-
sign: string;
|
|
7189
|
-
/**
|
|
7190
|
-
* Date of this daily horoscope (YYYY-MM-DD).
|
|
7191
|
-
*/
|
|
7192
|
-
date: string;
|
|
7193
|
-
/**
|
|
7194
|
-
* General daily overview based on current planetary transits through the sign.
|
|
7195
|
-
*/
|
|
7196
|
-
overview: string;
|
|
7197
|
-
/**
|
|
7198
|
-
* Love and relationship forecast. Influenced by Venus and Moon transits.
|
|
7199
|
-
*/
|
|
7200
|
-
love: string;
|
|
7201
|
-
/**
|
|
7202
|
-
* Career and professional outlook. Influenced by Saturn, Jupiter, and Mars transits.
|
|
7203
|
-
*/
|
|
7204
|
-
career: string;
|
|
7205
|
-
/**
|
|
7206
|
-
* Health, energy, and wellness guidance for the day.
|
|
7207
|
-
*/
|
|
7208
|
-
health: string;
|
|
7209
|
-
/**
|
|
7210
|
-
* Financial outlook and money-related guidance.
|
|
7211
|
-
*/
|
|
7212
|
-
finance: string;
|
|
7213
|
-
/**
|
|
7214
|
-
* Actionable daily advice based on the dominant transit energy.
|
|
7215
|
-
*/
|
|
7216
|
-
advice: string;
|
|
7217
|
-
/**
|
|
7218
|
-
* Lucky number for the day.
|
|
7219
|
-
*/
|
|
7220
|
-
luckyNumber: number;
|
|
7221
|
-
/**
|
|
7222
|
-
* Lucky color for the day, derived from the sign element.
|
|
7223
|
-
*/
|
|
7224
|
-
luckyColor: string;
|
|
7225
|
-
/**
|
|
7226
|
-
* Most compatible zodiac signs today, based on elemental harmony.
|
|
7227
|
-
*/
|
|
7228
|
-
compatibleSigns: Array<string>;
|
|
7229
|
-
}>;
|
|
7122
|
+
energyRating: number;
|
|
7230
7123
|
};
|
|
7231
7124
|
};
|
|
7232
|
-
export type
|
|
7125
|
+
export type GetAstrologyHoroscopeBySignDailyResponse = GetAstrologyHoroscopeBySignDailyResponses[keyof GetAstrologyHoroscopeBySignDailyResponses];
|
|
7233
7126
|
export type GetAstrologyHoroscopeBySignWeeklyData = {
|
|
7234
7127
|
body?: never;
|
|
7235
7128
|
path: {
|
|
@@ -7458,7 +7351,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
|
|
|
7458
7351
|
*/
|
|
7459
7352
|
finance: string;
|
|
7460
7353
|
/**
|
|
7461
|
-
* Week-by-week breakdown
|
|
7354
|
+
* Week-by-week breakdown with sign-specific focus areas based on transit house positions.
|
|
7462
7355
|
*/
|
|
7463
7356
|
weekByWeek: Array<{
|
|
7464
7357
|
/**
|
|
@@ -7466,7 +7359,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
|
|
|
7466
7359
|
*/
|
|
7467
7360
|
week: number;
|
|
7468
7361
|
/**
|
|
7469
|
-
* Primary focus area for this week.
|
|
7362
|
+
* Primary focus area for this week, derived from planetary house activations for this sign.
|
|
7470
7363
|
*/
|
|
7471
7364
|
focus: string;
|
|
7472
7365
|
/**
|
|
@@ -7475,7 +7368,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
|
|
|
7475
7368
|
advice: string;
|
|
7476
7369
|
}>;
|
|
7477
7370
|
/**
|
|
7478
|
-
* Key astrological dates this month
|
|
7371
|
+
* Key astrological dates this month with actual New Moon, Full Moon, and retrograde dates calculated from ephemeris data.
|
|
7479
7372
|
*/
|
|
7480
7373
|
keyDates: Array<{
|
|
7481
7374
|
/**
|
|
@@ -7483,7 +7376,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
|
|
|
7483
7376
|
*/
|
|
7484
7377
|
date: string;
|
|
7485
7378
|
/**
|
|
7486
|
-
* Astrological event
|
|
7379
|
+
* Astrological event active on this date (lunar phases, retrogrades, sign ingresses).
|
|
7487
7380
|
*/
|
|
7488
7381
|
event: string;
|
|
7489
7382
|
}>;
|