@roxyapi/sdk 1.2.35 → 1.2.37
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 +1 -1
- package/dist/factory.js +1 -1
- package/dist/types.gen.d.ts +27 -12
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/types.gen.ts +27 -12
- 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.37";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
package/src/types.gen.ts
CHANGED
|
@@ -10127,7 +10127,12 @@ export type PostVedicAstrologyBirthChartResponse = PostVedicAstrologyBirthChartR
|
|
|
10127
10127
|
export type PostVedicAstrologyNavamsaData = {
|
|
10128
10128
|
body?: NavamsaRequest;
|
|
10129
10129
|
path?: never;
|
|
10130
|
-
query?:
|
|
10130
|
+
query?: {
|
|
10131
|
+
/**
|
|
10132
|
+
* Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
|
|
10133
|
+
*/
|
|
10134
|
+
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
10135
|
+
};
|
|
10131
10136
|
url: '/vedic-astrology/navamsa';
|
|
10132
10137
|
};
|
|
10133
10138
|
|
|
@@ -10247,7 +10252,12 @@ export type PostVedicAstrologyNavamsaResponse = PostVedicAstrologyNavamsaRespons
|
|
|
10247
10252
|
export type PostVedicAstrologyDivisionalChartData = {
|
|
10248
10253
|
body?: DivisionalChartRequest;
|
|
10249
10254
|
path?: never;
|
|
10250
|
-
query?:
|
|
10255
|
+
query?: {
|
|
10256
|
+
/**
|
|
10257
|
+
* Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
|
|
10258
|
+
*/
|
|
10259
|
+
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
10260
|
+
};
|
|
10251
10261
|
url: '/vedic-astrology/divisional-chart';
|
|
10252
10262
|
};
|
|
10253
10263
|
|
|
@@ -12333,40 +12343,40 @@ export type PostVedicAstrologyPanchangDetailedResponses = {
|
|
|
12333
12343
|
unfavorableNakshatras: Array<string>;
|
|
12334
12344
|
};
|
|
12335
12345
|
/**
|
|
12336
|
-
* Panchaka, inauspicious
|
|
12346
|
+
* Panchaka, the inauspicious ~5-day window while the Moon transits the last five nakshatras (Dhanishta 3rd pada through Revati, 300 to 360 degrees sidereal). The dosha type depends on the weekday it begins; startsAt and endsAt report the period in force at sunrise or beginning later this day. Avoid major activities during Panchaka.
|
|
12337
12347
|
*/
|
|
12338
12348
|
panchaka: {
|
|
12339
12349
|
/**
|
|
12340
|
-
* Whether Panchaka is
|
|
12350
|
+
* Whether Panchaka is in force at sunrise, the panchang day reference. Can be false while startsAt and endsAt are populated when Panchaka begins later in the day.
|
|
12341
12351
|
*/
|
|
12342
12352
|
active: boolean;
|
|
12343
12353
|
/**
|
|
12344
|
-
* Panchaka
|
|
12354
|
+
* Panchaka dosha, set by the weekday the period BEGINS (not the nakshatra): Roga (Sunday, disease), Raja (Monday, government), Agni (Tuesday, fire), Chora (Friday, theft), Mrityu (Saturday, death). Null when Panchaka begins on Wednesday or Thursday (no dosha) or when no Panchaka touches this date.
|
|
12345
12355
|
*/
|
|
12346
12356
|
type: string;
|
|
12347
12357
|
/**
|
|
12348
|
-
* When the
|
|
12358
|
+
* When the Panchaka period starts (Moon enters 300 degrees, Dhanishta 3rd pada). May predate this date when Panchaka is already running. Null when no Panchaka is in force or begins on this date. In requested timezone.
|
|
12349
12359
|
*/
|
|
12350
12360
|
startsAt: string;
|
|
12351
12361
|
/**
|
|
12352
|
-
* When the
|
|
12362
|
+
* When the Panchaka period ends (Moon exits Revati at 360 degrees), about five days after it starts. Null when no Panchaka. In requested timezone.
|
|
12353
12363
|
*/
|
|
12354
12364
|
endsAt: string;
|
|
12355
12365
|
};
|
|
12356
12366
|
/**
|
|
12357
|
-
* Bhadra,
|
|
12367
|
+
* Bhadra (Vishti Karana), the 7th movable karana, avoided for all auspicious activities. Bhadra recurs roughly every 3 to 5 days and lasts about half a tithi, so most occurrences begin after sunrise rather than at it. startsAt and endsAt report the Bhadra beginning on this date regardless of whether it is active at sunrise.
|
|
12358
12368
|
*/
|
|
12359
12369
|
bhadra: {
|
|
12360
12370
|
/**
|
|
12361
|
-
* Whether Bhadra (Vishti Karana) is
|
|
12371
|
+
* Whether Bhadra (Vishti Karana) is in force at sunrise, the panchang day reference moment. Can be false while startsAt and endsAt are populated when Bhadra begins later in the day.
|
|
12362
12372
|
*/
|
|
12363
12373
|
active: boolean;
|
|
12364
12374
|
/**
|
|
12365
|
-
* When the
|
|
12375
|
+
* When the Bhadra (Vishti) period that begins on this date starts. Null when no Bhadra begins on this date. In requested timezone.
|
|
12366
12376
|
*/
|
|
12367
12377
|
startsAt: string;
|
|
12368
12378
|
/**
|
|
12369
|
-
* When the
|
|
12379
|
+
* When the Bhadra (Vishti) period that begins on this date ends. May fall on the next calendar day. Null when no Bhadra begins on this date. In requested timezone.
|
|
12370
12380
|
*/
|
|
12371
12381
|
endsAt: string;
|
|
12372
12382
|
};
|
|
@@ -13986,7 +13996,12 @@ export type PostVedicAstrologyKpCuspsResponse = PostVedicAstrologyKpCuspsRespons
|
|
|
13986
13996
|
export type PostVedicAstrologyKpChartData = {
|
|
13987
13997
|
body?: KpChartRequest;
|
|
13988
13998
|
path?: never;
|
|
13989
|
-
query?:
|
|
13999
|
+
query?: {
|
|
14000
|
+
/**
|
|
14001
|
+
* Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
|
|
14002
|
+
*/
|
|
14003
|
+
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
14004
|
+
};
|
|
13990
14005
|
url: '/vedic-astrology/kp/chart';
|
|
13991
14006
|
};
|
|
13992
14007
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.2.
|
|
1
|
+
export const VERSION = '1.2.37';
|