@roxyapi/sdk 1.2.15 → 1.2.17
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 +94 -91
- 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 +94 -91
- 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.17";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
package/src/types.gen.ts
CHANGED
|
@@ -238,27 +238,27 @@ export type NatalChartResponse = {
|
|
|
238
238
|
|
|
239
239
|
export type NatalChartRequest = {
|
|
240
240
|
/**
|
|
241
|
-
* Birth date in YYYY-MM-DD format.
|
|
241
|
+
* Birth date in YYYY-MM-DD format. Determines planetary positions for the specific calendar day.
|
|
242
242
|
*/
|
|
243
243
|
date: string;
|
|
244
244
|
/**
|
|
245
|
-
* Birth time in 24-hour HH:MM:SS format.
|
|
245
|
+
* Birth time in 24-hour HH:MM:SS format. Determines the Ascendant (rising sign) and house cusps. Use 12:00:00 if unknown.
|
|
246
246
|
*/
|
|
247
247
|
time: string;
|
|
248
248
|
/**
|
|
249
|
-
* Birth location latitude in decimal degrees (-90 to 90). Positive
|
|
249
|
+
* Birth location latitude in decimal degrees (-90 to 90). Positive = North, negative = South.
|
|
250
250
|
*/
|
|
251
251
|
latitude: number;
|
|
252
252
|
/**
|
|
253
|
-
* Birth location longitude in decimal degrees (-180 to 180). Positive
|
|
253
|
+
* Birth location longitude in decimal degrees (-180 to 180). Positive = East, negative = West.
|
|
254
254
|
*/
|
|
255
255
|
longitude: number;
|
|
256
256
|
/**
|
|
257
|
-
* Timezone
|
|
257
|
+
* Timezone: decimal hours from UTC (e.g. -5 for EST, 5.5 for IST) OR IANA name (e.g. "America/New_York", "Asia/Kolkata"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly.
|
|
258
258
|
*/
|
|
259
|
-
timezone: number;
|
|
259
|
+
timezone: number | string;
|
|
260
260
|
/**
|
|
261
|
-
* House system for dividing the chart into 12 houses. Placidus (default) is most popular in Western astrology and time-sensitive. Whole Sign assigns one sign per house (simpler, ancient). Equal houses divide chart into 30° segments from Ascendant. Koch emphasizes houses in high latitudes.
|
|
261
|
+
* House system for dividing the chart into 12 houses. Placidus (default) is most popular in Western astrology and time-sensitive. Whole Sign assigns one sign per house (simpler, ancient). Equal houses divide chart into 30° segments from Ascendant. Koch emphasizes houses in high latitudes.
|
|
262
262
|
*/
|
|
263
263
|
houseSystem?: 'placidus' | 'whole-sign' | 'equal' | 'koch';
|
|
264
264
|
};
|
|
@@ -483,7 +483,7 @@ export type AspectsRequest = {
|
|
|
483
483
|
/**
|
|
484
484
|
* Timezone offset from UTC in decimal hours (NOT minutes format). Examples: New York EST = -5, India IST = 5.5 (NOT 5:30), Tokyo JST = 9. IMPORTANT: Use decimal format (5.5, not 5:30).
|
|
485
485
|
*/
|
|
486
|
-
timezone: number;
|
|
486
|
+
timezone: number | string;
|
|
487
487
|
/**
|
|
488
488
|
* Optional: specific planets to calculate aspects for (defaults to all 10)
|
|
489
489
|
*/
|
|
@@ -635,9 +635,9 @@ export type TransitsRequest = {
|
|
|
635
635
|
*/
|
|
636
636
|
time?: string;
|
|
637
637
|
/**
|
|
638
|
-
*
|
|
638
|
+
* Transit timezone: decimal hours from UTC OR IANA name (e.g. "America/New_York"). IANA resolved to the DST-correct offset for the transit date. Defaults to 0 (UTC).
|
|
639
639
|
*/
|
|
640
|
-
timezone?: number;
|
|
640
|
+
timezone?: number | string;
|
|
641
641
|
/**
|
|
642
642
|
* Optional natal chart data to compare transits against
|
|
643
643
|
*/
|
|
@@ -646,7 +646,10 @@ export type TransitsRequest = {
|
|
|
646
646
|
time: string;
|
|
647
647
|
latitude: number;
|
|
648
648
|
longitude: number;
|
|
649
|
-
|
|
649
|
+
/**
|
|
650
|
+
* Natal timezone: decimal hours OR IANA name (e.g. "America/New_York"). IANA resolved to the DST-correct offset for the natal date.
|
|
651
|
+
*/
|
|
652
|
+
timezone: number | string;
|
|
650
653
|
};
|
|
651
654
|
};
|
|
652
655
|
|
|
@@ -748,9 +751,9 @@ export type BirthChartRequest = {
|
|
|
748
751
|
*/
|
|
749
752
|
longitude: number;
|
|
750
753
|
/**
|
|
751
|
-
* Timezone
|
|
754
|
+
* Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
|
|
752
755
|
*/
|
|
753
|
-
timezone?: number;
|
|
756
|
+
timezone?: number | string;
|
|
754
757
|
};
|
|
755
758
|
|
|
756
759
|
export type NavamsaResponse = {
|
|
@@ -828,9 +831,9 @@ export type NavamsaRequest = {
|
|
|
828
831
|
*/
|
|
829
832
|
longitude: number;
|
|
830
833
|
/**
|
|
831
|
-
* Timezone
|
|
834
|
+
* Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
|
|
832
835
|
*/
|
|
833
|
-
timezone?: number;
|
|
836
|
+
timezone?: number | string;
|
|
834
837
|
};
|
|
835
838
|
|
|
836
839
|
export type DivisionalChartResponse = {
|
|
@@ -929,9 +932,9 @@ export type DivisionalChartRequest = {
|
|
|
929
932
|
*/
|
|
930
933
|
longitude: number;
|
|
931
934
|
/**
|
|
932
|
-
* Timezone
|
|
935
|
+
* Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
|
|
933
936
|
*/
|
|
934
|
-
timezone?: number;
|
|
937
|
+
timezone?: number | string;
|
|
935
938
|
/**
|
|
936
939
|
* Divisional chart number. Each division reveals a specific life area. Supported: 2 (Hora, wealth), 3 (Drekkana, siblings), 4 (Chaturthamsa, property), 7 (Saptamsa, children), 9 (Navamsa, marriage), 10 (Dasamsa, career), 12 (Dwadasamsa, parents), 16 (Shodasamsa, vehicles), 20 (Vimsamsa, spirituality), 24 (Chaturvimsamsa, education), 27 (Bhamsa, strength), 30 (Trimsamsa, misfortunes), 40 (Khavedamsa, merit), 45 (Akshavedamsa, character), 60 (Shashtiamsa, past life karma).
|
|
937
940
|
*/
|
|
@@ -1029,9 +1032,9 @@ export type CompatibilityRequest = {
|
|
|
1029
1032
|
*/
|
|
1030
1033
|
longitude: number;
|
|
1031
1034
|
/**
|
|
1032
|
-
* Timezone
|
|
1035
|
+
* Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
|
|
1033
1036
|
*/
|
|
1034
|
-
timezone?: number;
|
|
1037
|
+
timezone?: number | string;
|
|
1035
1038
|
};
|
|
1036
1039
|
/**
|
|
1037
1040
|
* Birth data of the second person (typically the girl/bride in traditional Ashtakoot matching). Moon nakshatra compared against person 1 across all 8 kootas.
|
|
@@ -1054,9 +1057,9 @@ export type CompatibilityRequest = {
|
|
|
1054
1057
|
*/
|
|
1055
1058
|
longitude: number;
|
|
1056
1059
|
/**
|
|
1057
|
-
* Timezone
|
|
1060
|
+
* Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
|
|
1058
1061
|
*/
|
|
1059
|
-
timezone?: number;
|
|
1062
|
+
timezone?: number | string;
|
|
1060
1063
|
};
|
|
1061
1064
|
};
|
|
1062
1065
|
|
|
@@ -1161,9 +1164,9 @@ export type PlanetaryPositionsRequest = {
|
|
|
1161
1164
|
*/
|
|
1162
1165
|
longitude: number;
|
|
1163
1166
|
/**
|
|
1164
|
-
* Timezone
|
|
1167
|
+
* Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
|
|
1165
1168
|
*/
|
|
1166
|
-
timezone?: number;
|
|
1169
|
+
timezone?: number | string;
|
|
1167
1170
|
};
|
|
1168
1171
|
|
|
1169
1172
|
export type ManglikResponse = {
|
|
@@ -1228,9 +1231,9 @@ export type ManglikRequest = {
|
|
|
1228
1231
|
*/
|
|
1229
1232
|
longitude: number;
|
|
1230
1233
|
/**
|
|
1231
|
-
* Timezone
|
|
1234
|
+
* Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
|
|
1232
1235
|
*/
|
|
1233
|
-
timezone?: number;
|
|
1236
|
+
timezone?: number | string;
|
|
1234
1237
|
};
|
|
1235
1238
|
|
|
1236
1239
|
export type KalsarpaResponse = {
|
|
@@ -1303,9 +1306,9 @@ export type KalsarpaRequest = {
|
|
|
1303
1306
|
*/
|
|
1304
1307
|
longitude: number;
|
|
1305
1308
|
/**
|
|
1306
|
-
* Timezone
|
|
1309
|
+
* Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
|
|
1307
1310
|
*/
|
|
1308
|
-
timezone?: number;
|
|
1311
|
+
timezone?: number | string;
|
|
1309
1312
|
};
|
|
1310
1313
|
|
|
1311
1314
|
export type SadhesatiResponse = {
|
|
@@ -1364,9 +1367,9 @@ export type SadhesatiRequest = {
|
|
|
1364
1367
|
*/
|
|
1365
1368
|
longitude: number;
|
|
1366
1369
|
/**
|
|
1367
|
-
* Timezone
|
|
1370
|
+
* Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
|
|
1368
1371
|
*/
|
|
1369
|
-
timezone?: number;
|
|
1372
|
+
timezone?: number | string;
|
|
1370
1373
|
};
|
|
1371
1374
|
|
|
1372
1375
|
export type KpAyanamsaResponse = {
|
|
@@ -1473,7 +1476,7 @@ export type KpPlanetsRequest = {
|
|
|
1473
1476
|
/**
|
|
1474
1477
|
* Timezone offset from UTC in hours. Defaults to 5.5 (IST) for Vedic astrology.
|
|
1475
1478
|
*/
|
|
1476
|
-
timezone?: number;
|
|
1479
|
+
timezone?: number | string;
|
|
1477
1480
|
/**
|
|
1478
1481
|
* Ayanamsa system for sidereal conversion. "kp-newcomb" uses the KP-Newcomb dynamic formula (most common for KP). "kp-old" uses the Krishnamurti original table. "lahiri" uses Lahiri/Chitrapaksha ayanamsa matching most traditional Vedic software. "custom" allows providing your own value via ayanamsaValue. Defaults to "kp-newcomb".
|
|
1479
1482
|
*/
|
|
@@ -1565,7 +1568,7 @@ export type KpCuspsRequest = {
|
|
|
1565
1568
|
/**
|
|
1566
1569
|
* Timezone offset from UTC in hours. Defaults to 5.5 (IST) for Vedic astrology.
|
|
1567
1570
|
*/
|
|
1568
|
-
timezone?: number;
|
|
1571
|
+
timezone?: number | string;
|
|
1569
1572
|
/**
|
|
1570
1573
|
* Ayanamsa system for sidereal conversion. "kp-newcomb" uses the KP-Newcomb dynamic formula (most common for KP). "kp-old" uses the Krishnamurti original table. "lahiri" uses Lahiri/Chitrapaksha ayanamsa matching most traditional Vedic software. "custom" allows providing your own value via ayanamsaValue. Defaults to "kp-newcomb".
|
|
1571
1574
|
*/
|
|
@@ -1899,7 +1902,7 @@ export type KpChartRequest = {
|
|
|
1899
1902
|
/**
|
|
1900
1903
|
* Timezone offset from UTC in hours. Defaults to 5.5 (IST) for Vedic astrology.
|
|
1901
1904
|
*/
|
|
1902
|
-
timezone?: number;
|
|
1905
|
+
timezone?: number | string;
|
|
1903
1906
|
/**
|
|
1904
1907
|
* Ayanamsa system for sidereal conversion. "kp-newcomb" uses the KP-Newcomb dynamic formula (most common for KP). "kp-old" uses the Krishnamurti original table. "lahiri" uses Lahiri/Chitrapaksha ayanamsa matching most traditional Vedic software. "custom" allows providing your own value via ayanamsaValue. Defaults to "kp-newcomb".
|
|
1905
1908
|
*/
|
|
@@ -2246,9 +2249,9 @@ export type KpSublordChangesRequest = {
|
|
|
2246
2249
|
*/
|
|
2247
2250
|
endDate: string;
|
|
2248
2251
|
/**
|
|
2249
|
-
*
|
|
2252
|
+
* Decimal hours from UTC OR IANA name (e.g. "Asia/Kolkata"). IANA resolved to the DST-correct offset for startDate. Output times are converted to this timezone. Defaults to 0 (UTC).
|
|
2250
2253
|
*/
|
|
2251
|
-
timezone?: number;
|
|
2254
|
+
timezone?: number | string;
|
|
2252
2255
|
/**
|
|
2253
2256
|
* Ayanamsa system for sidereal conversion. "kp-newcomb" uses the KP-Newcomb dynamic formula, the most common choice for KP astrology. "kp-old" uses the Krishnamurti original table from KP Reader-1 with constant precession rate. "lahiri" uses Lahiri/Chitrapaksha ayanamsa, matching most traditional Vedic software. Defaults to "kp-newcomb".
|
|
2254
2257
|
*/
|
|
@@ -2325,9 +2328,9 @@ export type KpRasiChangesRequest = {
|
|
|
2325
2328
|
*/
|
|
2326
2329
|
endDate: string;
|
|
2327
2330
|
/**
|
|
2328
|
-
*
|
|
2331
|
+
* Decimal hours from UTC OR IANA name (e.g. "Asia/Kolkata"). IANA resolved to the DST-correct offset for startDate. Output times are converted to this timezone. Defaults to 0 (UTC).
|
|
2329
2332
|
*/
|
|
2330
|
-
timezone?: number;
|
|
2333
|
+
timezone?: number | string;
|
|
2331
2334
|
/**
|
|
2332
2335
|
* Ayanamsa system for sidereal conversion. "kp-newcomb" uses the KP-Newcomb dynamic formula, the most common choice for KP astrology. "kp-old" uses the Krishnamurti original table from KP Reader-1 with constant precession rate. "lahiri" uses Lahiri/Chitrapaksha ayanamsa, matching most traditional Vedic software. Defaults to "kp-newcomb".
|
|
2333
2336
|
*/
|
|
@@ -2451,9 +2454,9 @@ export type KpPlanetsIntervalRequest = {
|
|
|
2451
2454
|
*/
|
|
2452
2455
|
longitude: number;
|
|
2453
2456
|
/**
|
|
2454
|
-
*
|
|
2457
|
+
* Decimal hours from UTC OR IANA name (e.g. "Asia/Kolkata"). IANA resolved to the DST-correct offset for the startDatetime date. When non-zero, all datetimes are treated as local time in this timezone (Z suffix is ignored). Defaults to 0 (UTC).
|
|
2455
2458
|
*/
|
|
2456
|
-
timezone?: number;
|
|
2459
|
+
timezone?: number | string;
|
|
2457
2460
|
/**
|
|
2458
2461
|
* Ayanamsa system for sidereal conversion. "kp-newcomb" uses the KP-Newcomb dynamic formula, the most common choice for KP astrology. "kp-old" uses the Krishnamurti original table from KP Reader-1 with constant precession rate. "lahiri" uses Lahiri/Chitrapaksha ayanamsa, matching most traditional Vedic software. Defaults to "kp-newcomb".
|
|
2459
2462
|
*/
|
|
@@ -2720,9 +2723,9 @@ export type UpagrahaRequest = {
|
|
|
2720
2723
|
*/
|
|
2721
2724
|
longitude: number;
|
|
2722
2725
|
/**
|
|
2723
|
-
* Timezone
|
|
2726
|
+
* Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
|
|
2724
2727
|
*/
|
|
2725
|
-
timezone?: number;
|
|
2728
|
+
timezone?: number | string;
|
|
2726
2729
|
};
|
|
2727
2730
|
|
|
2728
2731
|
/**
|
|
@@ -2834,9 +2837,9 @@ export type AshtakavargaRequest = {
|
|
|
2834
2837
|
*/
|
|
2835
2838
|
longitude: number;
|
|
2836
2839
|
/**
|
|
2837
|
-
* Timezone
|
|
2840
|
+
* Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
|
|
2838
2841
|
*/
|
|
2839
|
-
timezone?: number;
|
|
2842
|
+
timezone?: number | string;
|
|
2840
2843
|
};
|
|
2841
2844
|
|
|
2842
2845
|
/**
|
|
@@ -2924,9 +2927,9 @@ export type ShadbalaRequest = {
|
|
|
2924
2927
|
*/
|
|
2925
2928
|
longitude: number;
|
|
2926
2929
|
/**
|
|
2927
|
-
* Timezone
|
|
2930
|
+
* Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
|
|
2928
2931
|
*/
|
|
2929
|
-
timezone?: number;
|
|
2932
|
+
timezone?: number | string;
|
|
2930
2933
|
};
|
|
2931
2934
|
|
|
2932
2935
|
export type BasicCard = {
|
|
@@ -4247,9 +4250,9 @@ export type PostAstrologyPlanetsData = {
|
|
|
4247
4250
|
*/
|
|
4248
4251
|
longitude: number;
|
|
4249
4252
|
/**
|
|
4250
|
-
*
|
|
4253
|
+
* Decimal hours from UTC (e.g. -5 for EST, 5.5 for IST, 9 for JST, 5.75 for NPT) OR IANA name (e.g. "America/New_York"). IANA resolved to the DST-correct offset for the chart date.
|
|
4251
4254
|
*/
|
|
4252
|
-
timezone: number;
|
|
4255
|
+
timezone: number | string;
|
|
4253
4256
|
};
|
|
4254
4257
|
path?: never;
|
|
4255
4258
|
query?: {
|
|
@@ -4462,9 +4465,9 @@ export type GetAstrologyMoonPhaseCurrentData = {
|
|
|
4462
4465
|
*/
|
|
4463
4466
|
time?: string;
|
|
4464
4467
|
/**
|
|
4465
|
-
*
|
|
4468
|
+
* Decimal hours (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata"). IANA resolved to the DST-correct offset for the given date. Defaults to 0 (UTC).
|
|
4466
4469
|
*/
|
|
4467
|
-
timezone?: number;
|
|
4470
|
+
timezone?: number | string | unknown;
|
|
4468
4471
|
};
|
|
4469
4472
|
url: '/astrology/moon-phase/current';
|
|
4470
4473
|
};
|
|
@@ -4967,9 +4970,9 @@ export type PostAstrologySynastryData = {
|
|
|
4967
4970
|
*/
|
|
4968
4971
|
longitude: number;
|
|
4969
4972
|
/**
|
|
4970
|
-
* Timezone
|
|
4973
|
+
* Timezone: decimal hours from UTC (e.g. -5 for EST, 5.5 for IST) OR IANA name (e.g. "America/New_York", "Asia/Kolkata"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly.
|
|
4971
4974
|
*/
|
|
4972
|
-
timezone: number;
|
|
4975
|
+
timezone: number | string;
|
|
4973
4976
|
/**
|
|
4974
4977
|
* Optional display name for this person. Included in the response for easy identification.
|
|
4975
4978
|
*/
|
|
@@ -4993,9 +4996,9 @@ export type PostAstrologySynastryData = {
|
|
|
4993
4996
|
*/
|
|
4994
4997
|
longitude: number;
|
|
4995
4998
|
/**
|
|
4996
|
-
* Timezone
|
|
4999
|
+
* Timezone: decimal hours from UTC (e.g. -5 for EST, 5.5 for IST) OR IANA name (e.g. "America/New_York", "Asia/Kolkata"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly.
|
|
4997
5000
|
*/
|
|
4998
|
-
timezone: number;
|
|
5001
|
+
timezone: number | string;
|
|
4999
5002
|
/**
|
|
5000
5003
|
* Optional display name for this person. Included in the response for easy identification.
|
|
5001
5004
|
*/
|
|
@@ -5324,9 +5327,9 @@ export type PostAstrologyHousesData = {
|
|
|
5324
5327
|
*/
|
|
5325
5328
|
longitude: number;
|
|
5326
5329
|
/**
|
|
5327
|
-
*
|
|
5330
|
+
* Decimal hours from UTC (e.g. -5 for EST, 5.5 for IST, 9 for JST) OR IANA name (e.g. "America/New_York"). IANA resolved to the DST-correct offset for the chart date.
|
|
5328
5331
|
*/
|
|
5329
|
-
timezone: number;
|
|
5332
|
+
timezone: number | string;
|
|
5330
5333
|
/**
|
|
5331
5334
|
* House system for dividing ecliptic into 12 houses. Placidus (most popular) uses time, Whole Sign (ancient) uses signs, Equal divides from Ascendant. Use "all" to compare all 4 systems side-by-side for educational purposes.
|
|
5332
5335
|
*/
|
|
@@ -5728,9 +5731,9 @@ export type PostAstrologyTransitAspectsData = {
|
|
|
5728
5731
|
*/
|
|
5729
5732
|
longitude: number;
|
|
5730
5733
|
/**
|
|
5731
|
-
* Timezone
|
|
5734
|
+
* Timezone: decimal hours from UTC (e.g. -5 for EST, 5.5 for IST) OR IANA name (e.g. "America/New_York", "Asia/Kolkata"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly.
|
|
5732
5735
|
*/
|
|
5733
|
-
timezone: number;
|
|
5736
|
+
timezone: number | string;
|
|
5734
5737
|
};
|
|
5735
5738
|
/**
|
|
5736
5739
|
* Transit date in YYYY-MM-DD format. Defaults to current date if omitted. Use future dates for predictive transit analysis.
|
|
@@ -6101,9 +6104,9 @@ export type PostAstrologySolarReturnData = {
|
|
|
6101
6104
|
*/
|
|
6102
6105
|
longitude: number;
|
|
6103
6106
|
/**
|
|
6104
|
-
*
|
|
6107
|
+
* Decimal hours from UTC OR IANA name (e.g. "America/New_York"). IANA resolved to the DST-correct offset for the birthDate. Output datetime is adjusted to this timezone.
|
|
6105
6108
|
*/
|
|
6106
|
-
timezone: number;
|
|
6109
|
+
timezone: number | string;
|
|
6107
6110
|
/**
|
|
6108
6111
|
* House system for the solar return chart. Placidus (default) is most common in Western astrology. Whole Sign, Equal, and Koch also supported.
|
|
6109
6112
|
*/
|
|
@@ -6448,9 +6451,9 @@ export type PostAstrologyLunarReturnData = {
|
|
|
6448
6451
|
*/
|
|
6449
6452
|
longitude: number;
|
|
6450
6453
|
/**
|
|
6451
|
-
*
|
|
6454
|
+
* Decimal hours from UTC OR IANA name (e.g. "America/New_York"). IANA resolved to the DST-correct offset for the birthDate. Output datetime is adjusted to this timezone.
|
|
6452
6455
|
*/
|
|
6453
|
-
timezone: number;
|
|
6456
|
+
timezone: number | string;
|
|
6454
6457
|
/**
|
|
6455
6458
|
* House system for the lunar return chart. Placidus (default), Whole Sign, Equal, or Koch.
|
|
6456
6459
|
*/
|
|
@@ -6791,9 +6794,9 @@ export type PostAstrologyCompositeChartData = {
|
|
|
6791
6794
|
*/
|
|
6792
6795
|
longitude: number;
|
|
6793
6796
|
/**
|
|
6794
|
-
* Timezone
|
|
6797
|
+
* Timezone: decimal hours from UTC (e.g. -5 for EST, 5.5 for IST) OR IANA name (e.g. "America/New_York", "Asia/Kolkata"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly.
|
|
6795
6798
|
*/
|
|
6796
|
-
timezone: number;
|
|
6799
|
+
timezone: number | string;
|
|
6797
6800
|
};
|
|
6798
6801
|
/**
|
|
6799
6802
|
* Second person birth details (date, time, location, timezone).
|
|
@@ -6816,9 +6819,9 @@ export type PostAstrologyCompositeChartData = {
|
|
|
6816
6819
|
*/
|
|
6817
6820
|
longitude: number;
|
|
6818
6821
|
/**
|
|
6819
|
-
* Timezone
|
|
6822
|
+
* Timezone: decimal hours from UTC (e.g. -5 for EST, 5.5 for IST) OR IANA name (e.g. "America/New_York", "Asia/Kolkata"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly.
|
|
6820
6823
|
*/
|
|
6821
|
-
timezone: number;
|
|
6824
|
+
timezone: number | string;
|
|
6822
6825
|
};
|
|
6823
6826
|
/**
|
|
6824
6827
|
* House system for the composite chart. Placidus (default), Whole Sign, Equal, or Koch.
|
|
@@ -7185,9 +7188,9 @@ export type PostAstrologyCompatibilityScoreData = {
|
|
|
7185
7188
|
*/
|
|
7186
7189
|
longitude: number;
|
|
7187
7190
|
/**
|
|
7188
|
-
* Timezone
|
|
7191
|
+
* Timezone: decimal hours from UTC (e.g. -5 for EST, 5.5 for IST) OR IANA name (e.g. "America/New_York", "Asia/Kolkata"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly.
|
|
7189
7192
|
*/
|
|
7190
|
-
timezone: number;
|
|
7193
|
+
timezone: number | string;
|
|
7191
7194
|
};
|
|
7192
7195
|
/**
|
|
7193
7196
|
* Second person birth details. Compared against person1 to evaluate inter-chart aspects and compatibility.
|
|
@@ -7210,9 +7213,9 @@ export type PostAstrologyCompatibilityScoreData = {
|
|
|
7210
7213
|
*/
|
|
7211
7214
|
longitude: number;
|
|
7212
7215
|
/**
|
|
7213
|
-
* Timezone
|
|
7216
|
+
* Timezone: decimal hours from UTC (e.g. -5 for EST, 5.5 for IST) OR IANA name (e.g. "America/New_York", "Asia/Kolkata"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly.
|
|
7214
7217
|
*/
|
|
7215
|
-
timezone: number;
|
|
7218
|
+
timezone: number | string;
|
|
7216
7219
|
};
|
|
7217
7220
|
};
|
|
7218
7221
|
path?: never;
|
|
@@ -8292,9 +8295,9 @@ export type PostAstrologyPlanetaryReturnsData = {
|
|
|
8292
8295
|
*/
|
|
8293
8296
|
longitude: number;
|
|
8294
8297
|
/**
|
|
8295
|
-
*
|
|
8298
|
+
* Decimal hours from UTC OR IANA name (e.g. "America/New_York"). IANA resolved to the DST-correct offset for the birthDate. Output datetime is adjusted to this timezone.
|
|
8296
8299
|
*/
|
|
8297
|
-
timezone: number;
|
|
8300
|
+
timezone: number | string;
|
|
8298
8301
|
/**
|
|
8299
8302
|
* House system for the return chart. Placidus (default), Whole Sign, Equal, or Koch.
|
|
8300
8303
|
*/
|
|
@@ -9426,9 +9429,9 @@ export type PostVedicAstrologyDashaCurrentData = {
|
|
|
9426
9429
|
*/
|
|
9427
9430
|
longitude: number;
|
|
9428
9431
|
/**
|
|
9429
|
-
* Timezone
|
|
9432
|
+
* Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
|
|
9430
9433
|
*/
|
|
9431
|
-
timezone?: number;
|
|
9434
|
+
timezone?: number | string;
|
|
9432
9435
|
};
|
|
9433
9436
|
path?: never;
|
|
9434
9437
|
query?: {
|
|
@@ -9735,9 +9738,9 @@ export type PostVedicAstrologyDashaMajorData = {
|
|
|
9735
9738
|
*/
|
|
9736
9739
|
longitude: number;
|
|
9737
9740
|
/**
|
|
9738
|
-
* Timezone
|
|
9741
|
+
* Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
|
|
9739
9742
|
*/
|
|
9740
|
-
timezone?: number;
|
|
9743
|
+
timezone?: number | string;
|
|
9741
9744
|
};
|
|
9742
9745
|
path?: never;
|
|
9743
9746
|
query?: {
|
|
@@ -9944,9 +9947,9 @@ export type PostVedicAstrologyDashaSubByMahadashaData = {
|
|
|
9944
9947
|
*/
|
|
9945
9948
|
longitude: number;
|
|
9946
9949
|
/**
|
|
9947
|
-
* Timezone
|
|
9950
|
+
* Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
|
|
9948
9951
|
*/
|
|
9949
|
-
timezone?: number;
|
|
9952
|
+
timezone?: number | string;
|
|
9950
9953
|
};
|
|
9951
9954
|
path: {
|
|
9952
9955
|
/**
|
|
@@ -10156,7 +10159,7 @@ export type PostVedicAstrologyPanchangBasicData = {
|
|
|
10156
10159
|
/**
|
|
10157
10160
|
* Timezone offset from UTC in decimal hours. Defaults to 5.5 (IST).
|
|
10158
10161
|
*/
|
|
10159
|
-
timezone?: number;
|
|
10162
|
+
timezone?: number | string;
|
|
10160
10163
|
};
|
|
10161
10164
|
path?: never;
|
|
10162
10165
|
query?: {
|
|
@@ -10411,7 +10414,7 @@ export type PostVedicAstrologyPanchangDetailedData = {
|
|
|
10411
10414
|
/**
|
|
10412
10415
|
* Timezone offset from UTC in decimal hours. Used for sunrise/sunset/moonrise/moonset search accuracy and output time formatting. Essential for correct results outside IST. Defaults to 5.5 (IST).
|
|
10413
10416
|
*/
|
|
10414
|
-
timezone?: number;
|
|
10417
|
+
timezone?: number | string;
|
|
10415
10418
|
};
|
|
10416
10419
|
path?: never;
|
|
10417
10420
|
query?: {
|
|
@@ -11087,7 +11090,7 @@ export type PostVedicAstrologyPanchangChoghadiyaData = {
|
|
|
11087
11090
|
/**
|
|
11088
11091
|
* Timezone offset from UTC in decimal hours. Used for accurate sunrise/sunset calculation and output time formatting. Essential for correct Choghadiya periods outside IST. Defaults to 5.5 (IST).
|
|
11089
11092
|
*/
|
|
11090
|
-
timezone?: number;
|
|
11093
|
+
timezone?: number | string;
|
|
11091
11094
|
};
|
|
11092
11095
|
path?: never;
|
|
11093
11096
|
query?: never;
|
|
@@ -11276,7 +11279,7 @@ export type PostVedicAstrologyPanchangHoraData = {
|
|
|
11276
11279
|
/**
|
|
11277
11280
|
* Timezone offset from UTC in decimal hours. Used for accurate sunrise/sunset calculation and output time formatting. Essential for correct Hora periods outside IST. Defaults to 5.5 (IST).
|
|
11278
11281
|
*/
|
|
11279
|
-
timezone?: number;
|
|
11282
|
+
timezone?: number | string;
|
|
11280
11283
|
};
|
|
11281
11284
|
path?: never;
|
|
11282
11285
|
query?: never;
|
|
@@ -12606,9 +12609,9 @@ export type PostVedicAstrologyKpRulingPlanetsData = {
|
|
|
12606
12609
|
*/
|
|
12607
12610
|
longitude: number;
|
|
12608
12611
|
/**
|
|
12609
|
-
* Timezone
|
|
12612
|
+
* Timezone: decimal hours from UTC OR IANA name (e.g. "Asia/Kolkata"). IANA resolved to the DST-correct offset based on birthDate or datetime. Defaults to 5.5 (IST).
|
|
12610
12613
|
*/
|
|
12611
|
-
timezone?: number;
|
|
12614
|
+
timezone?: number | string;
|
|
12612
12615
|
/**
|
|
12613
12616
|
* ISO 8601 datetime for ruling planets. Defaults to current time. Always interpreted as local time when a non-zero timezone is provided (Z suffix is ignored).
|
|
12614
12617
|
*/
|
|
@@ -12769,7 +12772,7 @@ export type PostVedicAstrologyKpRulingPlanetsIntervalData = {
|
|
|
12769
12772
|
/**
|
|
12770
12773
|
* Timezone offset from UTC in decimal hours. When non-zero, all datetimes are treated as local time in this timezone (Z suffix is ignored). Output times are also converted to this timezone. Defaults to 5.5 (IST).
|
|
12771
12774
|
*/
|
|
12772
|
-
timezone?: number;
|
|
12775
|
+
timezone?: number | string;
|
|
12773
12776
|
/**
|
|
12774
12777
|
* Ayanamsa system for sidereal conversion. "kp-newcomb" uses the KP-Newcomb dynamic formula, the most common choice for KP astrology. "kp-old" uses the Krishnamurti original table from KP Reader-1 with constant precession rate. "lahiri" uses Lahiri/Chitrapaksha ayanamsa, matching most traditional Vedic software. Defaults to "kp-newcomb".
|
|
12775
12778
|
*/
|
|
@@ -13278,7 +13281,7 @@ export type PostVedicAstrologyAspectsData = {
|
|
|
13278
13281
|
/**
|
|
13279
13282
|
* Timezone offset from UTC in hours. Defaults to 5.5 (IST).
|
|
13280
13283
|
*/
|
|
13281
|
-
timezone?: number;
|
|
13284
|
+
timezone?: number | string;
|
|
13282
13285
|
/**
|
|
13283
13286
|
* Coordinate system for longitude output. "sidereal" (Nirayana) uses Lahiri ayanamsa - standard for Vedic astrology. "tropical" (Sayana) uses raw ecliptic longitude matching Western astrology. Defaults to "sidereal".
|
|
13284
13287
|
*/
|
|
@@ -13505,7 +13508,7 @@ export type PostVedicAstrologyAspectsMonthlyData = {
|
|
|
13505
13508
|
/**
|
|
13506
13509
|
* Timezone offset from UTC in hours. Output times are converted to this timezone. Defaults to 0 (UTC).
|
|
13507
13510
|
*/
|
|
13508
|
-
timezone?: number;
|
|
13511
|
+
timezone?: number | string;
|
|
13509
13512
|
/**
|
|
13510
13513
|
* Coordinate system for longitude output. "sidereal" (Nirayana) uses Lahiri ayanamsa - standard for Vedic astrology. "tropical" (Sayana) uses raw ecliptic longitude matching Western astrology. Defaults to "sidereal".
|
|
13511
13514
|
*/
|
|
@@ -13696,7 +13699,7 @@ export type PostVedicAstrologyAspectsLunarData = {
|
|
|
13696
13699
|
/**
|
|
13697
13700
|
* Timezone offset from UTC in hours. Output times are converted to this timezone. Defaults to 0 (UTC).
|
|
13698
13701
|
*/
|
|
13699
|
-
timezone?: number;
|
|
13702
|
+
timezone?: number | string;
|
|
13700
13703
|
/**
|
|
13701
13704
|
* Coordinate system for longitude output. "sidereal" (Nirayana) uses Lahiri ayanamsa - standard for Vedic astrology. "tropical" (Sayana) uses raw ecliptic longitude matching Western astrology. Defaults to "sidereal".
|
|
13702
13705
|
*/
|
|
@@ -13899,7 +13902,7 @@ export type PostVedicAstrologyTransitData = {
|
|
|
13899
13902
|
/**
|
|
13900
13903
|
* Timezone offset from UTC in hours. Defaults to 5.5 (IST).
|
|
13901
13904
|
*/
|
|
13902
|
-
timezone?: number;
|
|
13905
|
+
timezone?: number | string;
|
|
13903
13906
|
/**
|
|
13904
13907
|
* Coordinate system for longitude output. "sidereal" (Nirayana) uses Lahiri ayanamsa - standard for Vedic astrology. "tropical" (Sayana) uses raw ecliptic longitude matching Western astrology. Defaults to "sidereal".
|
|
13905
13908
|
*/
|
|
@@ -14125,7 +14128,7 @@ export type PostVedicAstrologyTransitMonthlyData = {
|
|
|
14125
14128
|
/**
|
|
14126
14129
|
* Timezone offset from UTC in hours. Output times are converted to this timezone. Defaults to 0 (UTC).
|
|
14127
14130
|
*/
|
|
14128
|
-
timezone?: number;
|
|
14131
|
+
timezone?: number | string;
|
|
14129
14132
|
/**
|
|
14130
14133
|
* Coordinate system for longitude output. "sidereal" (Nirayana) uses Lahiri ayanamsa - standard for Vedic astrology. "tropical" (Sayana) uses raw ecliptic longitude matching Western astrology. Defaults to "sidereal".
|
|
14131
14134
|
*/
|
|
@@ -14329,7 +14332,7 @@ export type PostVedicAstrologyParallelsData = {
|
|
|
14329
14332
|
/**
|
|
14330
14333
|
* Timezone offset from UTC in hours. Defaults to 5.5 (IST).
|
|
14331
14334
|
*/
|
|
14332
|
-
timezone?: number;
|
|
14335
|
+
timezone?: number | string;
|
|
14333
14336
|
/**
|
|
14334
14337
|
* Orb in degrees for parallel/contraparallel detection. Defaults to 1.5°.
|
|
14335
14338
|
*/
|
|
@@ -14517,7 +14520,7 @@ export type PostVedicAstrologyParallelsMonthlyData = {
|
|
|
14517
14520
|
/**
|
|
14518
14521
|
* Timezone offset from UTC in hours. Output times are converted to this timezone. Defaults to 0 (UTC).
|
|
14519
14522
|
*/
|
|
14520
|
-
timezone?: number;
|
|
14523
|
+
timezone?: number | string;
|
|
14521
14524
|
};
|
|
14522
14525
|
path?: never;
|
|
14523
14526
|
query?: never;
|
|
@@ -14696,7 +14699,7 @@ export type PostVedicAstrologyEclipticCrossingsData = {
|
|
|
14696
14699
|
/**
|
|
14697
14700
|
* Timezone offset from UTC in hours. Output times are converted to this timezone. Defaults to 0 (UTC).
|
|
14698
14701
|
*/
|
|
14699
|
-
timezone?: number;
|
|
14702
|
+
timezone?: number | string;
|
|
14700
14703
|
/**
|
|
14701
14704
|
* Coordinate system for longitude output. "sidereal" (Nirayana) uses Lahiri ayanamsa - standard for Vedic astrology. "tropical" (Sayana) uses raw ecliptic longitude matching Western astrology. Defaults to "sidereal".
|
|
14702
14705
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.2.
|
|
1
|
+
export const VERSION = '1.2.17';
|