@roxyapi/sdk 1.2.33 → 1.2.35
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/AGENTS.md +4 -2
- package/README.md +48 -6
- package/dist/{chunk-2UA7D7RW.js → chunk-HCC4GID6.js} +101 -118
- package/dist/client/client.gen.d.ts.map +1 -1
- package/dist/client/index.cjs +101 -118
- package/dist/client/index.js +1 -1
- package/dist/client/types.gen.d.ts +6 -3
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +7 -3
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/core/serverSentEvents.gen.d.ts +1 -1
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
- package/dist/factory.cjs +105 -122
- package/dist/factory.js +9 -9
- package/dist/sdk.gen.d.ts +8 -8
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/types.gen.d.ts +112 -33
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/docs/llms-full.txt +3 -3
- package/package.json +2 -2
- package/src/client/client.gen.ts +124 -137
- package/src/client/types.gen.ts +9 -5
- package/src/client/utils.gen.ts +10 -10
- package/src/core/params.gen.ts +4 -4
- package/src/core/serverSentEvents.gen.ts +4 -5
- package/src/sdk.gen.ts +8 -8
- package/src/types.gen.ts +112 -33
- package/src/version.ts +1 -1
package/dist/factory.cjs
CHANGED
|
@@ -54,7 +54,7 @@ var extraPrefixesMap = {
|
|
|
54
54
|
var extraPrefixes = Object.entries(extraPrefixesMap);
|
|
55
55
|
|
|
56
56
|
// src/core/serverSentEvents.gen.ts
|
|
57
|
-
|
|
57
|
+
function createSseClient({
|
|
58
58
|
onRequest,
|
|
59
59
|
onSseError,
|
|
60
60
|
onSseEvent,
|
|
@@ -66,7 +66,7 @@ var createSseClient = ({
|
|
|
66
66
|
sseSleepFn,
|
|
67
67
|
url,
|
|
68
68
|
...options
|
|
69
|
-
})
|
|
69
|
+
}) {
|
|
70
70
|
let lastEventId;
|
|
71
71
|
const sleep = sseSleepFn ?? ((ms) => new Promise((resolve) => setTimeout(resolve, ms)));
|
|
72
72
|
const createStream = async function* () {
|
|
@@ -110,7 +110,7 @@ var createSseClient = ({
|
|
|
110
110
|
const { done, value } = await reader.read();
|
|
111
111
|
if (done) break;
|
|
112
112
|
buffer += value;
|
|
113
|
-
buffer = buffer.replace(/\r\n
|
|
113
|
+
buffer = buffer.replace(/\r\n?/g, "\n");
|
|
114
114
|
const chunks = buffer.split("\n\n");
|
|
115
115
|
buffer = chunks.pop() ?? "";
|
|
116
116
|
for (const chunk of chunks) {
|
|
@@ -178,7 +178,7 @@ var createSseClient = ({
|
|
|
178
178
|
};
|
|
179
179
|
const stream = createStream();
|
|
180
180
|
return { stream };
|
|
181
|
-
}
|
|
181
|
+
}
|
|
182
182
|
|
|
183
183
|
// src/core/pathSerializer.gen.ts
|
|
184
184
|
var separatorArrayExplode = (style) => {
|
|
@@ -495,11 +495,8 @@ var checkForExistence = (options, name) => {
|
|
|
495
495
|
}
|
|
496
496
|
return false;
|
|
497
497
|
};
|
|
498
|
-
|
|
499
|
-
security
|
|
500
|
-
...options
|
|
501
|
-
}) => {
|
|
502
|
-
for (const auth of security) {
|
|
498
|
+
async function setAuthParams(options) {
|
|
499
|
+
for (const auth of options.security ?? []) {
|
|
503
500
|
if (checkForExistence(options, auth.name)) {
|
|
504
501
|
continue;
|
|
505
502
|
}
|
|
@@ -524,7 +521,7 @@ var setAuthParams = async ({
|
|
|
524
521
|
break;
|
|
525
522
|
}
|
|
526
523
|
}
|
|
527
|
-
}
|
|
524
|
+
}
|
|
528
525
|
var buildUrl = (options) => getUrl({
|
|
529
526
|
baseUrl: options.baseUrl,
|
|
530
527
|
path: options.path,
|
|
@@ -650,10 +647,7 @@ var createClient = (config = {}) => {
|
|
|
650
647
|
serializedBody: void 0
|
|
651
648
|
};
|
|
652
649
|
if (opts.security) {
|
|
653
|
-
await setAuthParams(
|
|
654
|
-
...opts,
|
|
655
|
-
security: opts.security
|
|
656
|
-
});
|
|
650
|
+
await setAuthParams(opts);
|
|
657
651
|
}
|
|
658
652
|
if (opts.requestValidator) {
|
|
659
653
|
await opts.requestValidator(opts);
|
|
@@ -664,131 +658,121 @@ var createClient = (config = {}) => {
|
|
|
664
658
|
if (opts.body === void 0 || opts.serializedBody === "") {
|
|
665
659
|
opts.headers.delete("Content-Type");
|
|
666
660
|
}
|
|
667
|
-
const
|
|
668
|
-
|
|
661
|
+
const resolvedOpts = opts;
|
|
662
|
+
const url = buildUrl(resolvedOpts);
|
|
663
|
+
return { opts: resolvedOpts, url };
|
|
669
664
|
};
|
|
670
665
|
const request = async (options) => {
|
|
671
|
-
const
|
|
672
|
-
const
|
|
673
|
-
|
|
674
|
-
...opts,
|
|
675
|
-
body: getValidRequestBody(opts)
|
|
676
|
-
};
|
|
677
|
-
let request2 = new Request(url, requestInit);
|
|
678
|
-
for (const fn of interceptors.request.fns) {
|
|
679
|
-
if (fn) {
|
|
680
|
-
request2 = await fn(request2, opts);
|
|
681
|
-
}
|
|
682
|
-
}
|
|
683
|
-
const _fetch = opts.fetch;
|
|
666
|
+
const throwOnError = options.throwOnError ?? _config.throwOnError;
|
|
667
|
+
const responseStyle = options.responseStyle ?? _config.responseStyle;
|
|
668
|
+
let request2;
|
|
684
669
|
let response;
|
|
685
670
|
try {
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
671
|
+
const { opts, url } = await beforeRequest(options);
|
|
672
|
+
const requestInit = {
|
|
673
|
+
redirect: "follow",
|
|
674
|
+
...opts,
|
|
675
|
+
body: getValidRequestBody(opts)
|
|
676
|
+
};
|
|
677
|
+
request2 = new Request(url, requestInit);
|
|
678
|
+
for (const fn of interceptors.request.fns) {
|
|
690
679
|
if (fn) {
|
|
691
|
-
|
|
680
|
+
request2 = await fn(request2, opts);
|
|
692
681
|
}
|
|
693
682
|
}
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
683
|
+
const _fetch = opts.fetch;
|
|
684
|
+
response = await _fetch(request2);
|
|
685
|
+
for (const fn of interceptors.response.fns) {
|
|
686
|
+
if (fn) {
|
|
687
|
+
response = await fn(response, request2, opts);
|
|
688
|
+
}
|
|
697
689
|
}
|
|
698
|
-
|
|
699
|
-
error: finalError2,
|
|
690
|
+
const result = {
|
|
700
691
|
request: request2,
|
|
701
|
-
response
|
|
692
|
+
response
|
|
702
693
|
};
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
694
|
+
if (response.ok) {
|
|
695
|
+
const parseAs = (opts.parseAs === "auto" ? getParseAs(response.headers.get("Content-Type")) : opts.parseAs) ?? "json";
|
|
696
|
+
if (response.status === 204 || response.headers.get("Content-Length") === "0") {
|
|
697
|
+
let emptyData;
|
|
698
|
+
switch (parseAs) {
|
|
699
|
+
case "arrayBuffer":
|
|
700
|
+
case "blob":
|
|
701
|
+
case "text":
|
|
702
|
+
emptyData = await response[parseAs]();
|
|
703
|
+
break;
|
|
704
|
+
case "formData":
|
|
705
|
+
emptyData = new FormData();
|
|
706
|
+
break;
|
|
707
|
+
case "stream":
|
|
708
|
+
emptyData = response.body;
|
|
709
|
+
break;
|
|
710
|
+
case "json":
|
|
711
|
+
default:
|
|
712
|
+
emptyData = {};
|
|
713
|
+
break;
|
|
714
|
+
}
|
|
715
|
+
return opts.responseStyle === "data" ? emptyData : {
|
|
716
|
+
data: emptyData,
|
|
717
|
+
...result
|
|
718
|
+
};
|
|
719
|
+
}
|
|
720
|
+
let data;
|
|
717
721
|
switch (parseAs) {
|
|
718
722
|
case "arrayBuffer":
|
|
719
723
|
case "blob":
|
|
724
|
+
case "formData":
|
|
720
725
|
case "text":
|
|
721
|
-
|
|
726
|
+
data = await response[parseAs]();
|
|
722
727
|
break;
|
|
723
|
-
case "
|
|
724
|
-
|
|
728
|
+
case "json": {
|
|
729
|
+
const text = await response.text();
|
|
730
|
+
data = text ? JSON.parse(text) : {};
|
|
725
731
|
break;
|
|
732
|
+
}
|
|
726
733
|
case "stream":
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
emptyData = {};
|
|
732
|
-
break;
|
|
734
|
+
return opts.responseStyle === "data" ? response.body : {
|
|
735
|
+
data: response.body,
|
|
736
|
+
...result
|
|
737
|
+
};
|
|
733
738
|
}
|
|
734
|
-
|
|
735
|
-
|
|
739
|
+
if (parseAs === "json") {
|
|
740
|
+
if (opts.responseValidator) {
|
|
741
|
+
await opts.responseValidator(data);
|
|
742
|
+
}
|
|
743
|
+
if (opts.responseTransformer) {
|
|
744
|
+
data = await opts.responseTransformer(data);
|
|
745
|
+
}
|
|
746
|
+
}
|
|
747
|
+
return opts.responseStyle === "data" ? data : {
|
|
748
|
+
data,
|
|
736
749
|
...result
|
|
737
750
|
};
|
|
738
751
|
}
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
case "text":
|
|
745
|
-
data = await response[parseAs]();
|
|
746
|
-
break;
|
|
747
|
-
case "json": {
|
|
748
|
-
const text = await response.text();
|
|
749
|
-
data = text ? JSON.parse(text) : {};
|
|
750
|
-
break;
|
|
751
|
-
}
|
|
752
|
-
case "stream":
|
|
753
|
-
return opts.responseStyle === "data" ? response.body : {
|
|
754
|
-
data: response.body,
|
|
755
|
-
...result
|
|
756
|
-
};
|
|
752
|
+
const textError = await response.text();
|
|
753
|
+
let jsonError;
|
|
754
|
+
try {
|
|
755
|
+
jsonError = JSON.parse(textError);
|
|
756
|
+
} catch {
|
|
757
757
|
}
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
if (
|
|
763
|
-
|
|
758
|
+
throw jsonError ?? textError;
|
|
759
|
+
} catch (error) {
|
|
760
|
+
let finalError = error;
|
|
761
|
+
for (const fn of interceptors.error.fns) {
|
|
762
|
+
if (fn) {
|
|
763
|
+
finalError = await fn(finalError, response, request2, options);
|
|
764
764
|
}
|
|
765
765
|
}
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
};
|
|
770
|
-
}
|
|
771
|
-
const textError = await response.text();
|
|
772
|
-
let jsonError;
|
|
773
|
-
try {
|
|
774
|
-
jsonError = JSON.parse(textError);
|
|
775
|
-
} catch {
|
|
776
|
-
}
|
|
777
|
-
const error = jsonError ?? textError;
|
|
778
|
-
let finalError = error;
|
|
779
|
-
for (const fn of interceptors.error.fns) {
|
|
780
|
-
if (fn) {
|
|
781
|
-
finalError = await fn(error, response, request2, opts);
|
|
766
|
+
finalError = finalError || {};
|
|
767
|
+
if (throwOnError) {
|
|
768
|
+
throw finalError;
|
|
782
769
|
}
|
|
770
|
+
return responseStyle === "data" ? void 0 : {
|
|
771
|
+
error: finalError,
|
|
772
|
+
request: request2,
|
|
773
|
+
response
|
|
774
|
+
};
|
|
783
775
|
}
|
|
784
|
-
finalError = finalError || {};
|
|
785
|
-
if (opts.throwOnError) {
|
|
786
|
-
throw finalError;
|
|
787
|
-
}
|
|
788
|
-
return opts.responseStyle === "data" ? void 0 : {
|
|
789
|
-
error: finalError,
|
|
790
|
-
...result
|
|
791
|
-
};
|
|
792
776
|
};
|
|
793
777
|
const makeMethodFn = (method) => (options) => request({ ...options, method });
|
|
794
778
|
const makeSseFn = (method) => async (options) => {
|
|
@@ -796,7 +780,6 @@ var createClient = (config = {}) => {
|
|
|
796
780
|
return createSseClient({
|
|
797
781
|
...opts,
|
|
798
782
|
body: opts.body,
|
|
799
|
-
headers: opts.headers,
|
|
800
783
|
method,
|
|
801
784
|
onRequest: async (url2, init) => {
|
|
802
785
|
let request2 = new Request(url2, init);
|
|
@@ -2455,7 +2438,7 @@ var Forecast = class extends HeyApiClient {
|
|
|
2455
2438
|
/**
|
|
2456
2439
|
* Cross-domain forecast timeline - Transits, ingresses, stations, dasha changes, critical days
|
|
2457
2440
|
*
|
|
2458
|
-
* Build one time-ordered forecast for a single birth subject by merging upcoming events across three domains: western transit-to-natal aspects, sign ingresses,
|
|
2441
|
+
* Build one time-ordered forecast for a single birth subject by merging upcoming events across three domains: western transit-to-natal aspects, sign ingresses, retrograde stations, eclipses, and new and full moons; biorhythm critical days; and vedic Vimshottari mahadasha, antardasha, and pratyantardasha boundaries. The window is clamped to 90 days and events are capped and scored by significance. Built for what-is-coming dashboards, daily and weekly forecast feeds, and timing tools.
|
|
2459
2442
|
*/
|
|
2460
2443
|
generateTimeline(options) {
|
|
2461
2444
|
return (options?.client ?? this.client).post({
|
|
@@ -2469,9 +2452,9 @@ var Forecast = class extends HeyApiClient {
|
|
|
2469
2452
|
});
|
|
2470
2453
|
}
|
|
2471
2454
|
/**
|
|
2472
|
-
* Western
|
|
2455
|
+
* Western astrology forecast - aspects, ingresses, stations, eclipses, moon phases
|
|
2473
2456
|
*
|
|
2474
|
-
* Forecast the western astrology events for a single birth chart over a window up to 90 days: every transit-to-natal major aspect refined to its exact instant, every transiting planet sign ingress,
|
|
2457
|
+
* Forecast the western astrology events for a single birth chart over a window up to 90 days: every transit-to-natal major aspect refined to its exact instant, every transiting planet sign ingress, every retrograde or direct station, every solar and lunar eclipse, and every New and Full Moon. Returns a time-ordered, significance-scored timeline. Built for astrology forecast feeds, transit alerts, and timing tools.
|
|
2475
2458
|
*/
|
|
2476
2459
|
forecastTransits(options) {
|
|
2477
2460
|
return (options?.client ?? this.client).post({
|
|
@@ -2969,7 +2952,7 @@ var AngelNumbers = class extends HeyApiClient {
|
|
|
2969
2952
|
/**
|
|
2970
2953
|
* List All Angel Numbers
|
|
2971
2954
|
*
|
|
2972
|
-
* Retrieve the complete database of angel numbers with summary information. Returns
|
|
2955
|
+
* Retrieve the complete database of angel numbers with summary information. Returns 75+ angel numbers covering root digits (0-9), master numbers (11, 22, 33), double digits (44-99), triple repeating (111-999), quad repeating (1111-9999), the mirror families (X0X like 101-909, X1X, four-digit mirrors like 1212-2121), palindromes (1221, 1331), compound sequences (911, 1122), and sequential numbers (123, 1234). Supports optional type filtering. Perfect for building angel number explorer apps, reference guides, and spiritual databases.
|
|
2973
2956
|
*/
|
|
2974
2957
|
listAngelNumbers(options) {
|
|
2975
2958
|
return (options?.client ?? this.client).get({
|
|
@@ -2981,7 +2964,7 @@ var AngelNumbers = class extends HeyApiClient {
|
|
|
2981
2964
|
/**
|
|
2982
2965
|
* Get Angel Number Meaning
|
|
2983
2966
|
*
|
|
2984
|
-
* Get the complete, authoritative meaning and interpretation for a specific angel number. Returns detailed spiritual, love, career, and twin flame interpretations along with keywords, affirmation, and actionable steps. Covers
|
|
2967
|
+
* Get the complete, authoritative meaning and interpretation for a specific angel number. Returns detailed spiritual, love, career, money, and twin flame interpretations, plus a biblical perspective and a shadow reading, along with keywords, affirmation, and actionable steps. Covers 75+ angel numbers including 111, 222, 333, 444, 555, 666, 777, 888, 999, 1111, 1212, 1234, and more. Authoritative interpretations covering all major angel number patterns.
|
|
2985
2968
|
*/
|
|
2986
2969
|
getAngelNumber(options) {
|
|
2987
2970
|
return (options.client ?? this.client).get({
|
|
@@ -2993,7 +2976,7 @@ var AngelNumbers = class extends HeyApiClient {
|
|
|
2993
2976
|
/**
|
|
2994
2977
|
* Analyze Any Number Sequence
|
|
2995
2978
|
*
|
|
2996
|
-
* Smart angel number analysis that works for ANY number sequence, not just known angel numbers. Automatically classifies the pattern type (repeating, sequential, mirror, master, root), calculates the numerology digit root, checks the database for a known meaning, and provides the foundational digit root interpretation as a fallback. Perfect for synchronicity tracking apps where users enter arbitrary number sequences they encounter.
|
|
2979
|
+
* Smart angel number analysis that works for ANY number sequence, not just known angel numbers. Automatically classifies the pattern type (repeating, sequential, mirror, master, root, compound), calculates the numerology digit root, checks the database for a known meaning, and provides the foundational digit root interpretation (with full spiritual, love, career, money, and twin flame guidance) as a fallback. An optional context parameter adds a note tailored to where the number was seen. Perfect for synchronicity tracking apps where users enter arbitrary number sequences they encounter.
|
|
2997
2980
|
*/
|
|
2998
2981
|
analyzeNumberSequence(options) {
|
|
2999
2982
|
return (options.client ?? this.client).get({
|
|
@@ -3005,7 +2988,7 @@ var AngelNumbers = class extends HeyApiClient {
|
|
|
3005
2988
|
/**
|
|
3006
2989
|
* Daily Angel Number
|
|
3007
2990
|
*
|
|
3008
|
-
* Get the angel number of the day with full meaning and interpretation. Returns a deterministic angel number based on the current date (or a provided seed date), ensuring all users see the same number for any given day. Includes complete spiritual, love, career, and twin flame interpretations. Perfect for daily guidance features, push notifications, content generation, and angel number widget integrations.
|
|
2991
|
+
* Get the angel number of the day with full meaning and interpretation. Returns a deterministic angel number based on the current date (or a provided seed date), ensuring all users see the same number for any given day. Includes complete spiritual, love, career, money, and twin flame interpretations plus a biblical perspective and a shadow reading. Perfect for daily guidance features, push notifications, content generation, and angel number widget integrations.
|
|
3009
2992
|
*/
|
|
3010
2993
|
getDailyAngelNumber(options) {
|
|
3011
2994
|
return (options?.client ?? this.client).post({
|
|
@@ -3150,7 +3133,7 @@ var Roxy = class _Roxy extends HeyApiClient {
|
|
|
3150
3133
|
};
|
|
3151
3134
|
|
|
3152
3135
|
// src/version.ts
|
|
3153
|
-
var VERSION = "1.2.
|
|
3136
|
+
var VERSION = "1.2.35";
|
|
3154
3137
|
|
|
3155
3138
|
// src/factory.ts
|
|
3156
3139
|
function createRoxy(auth) {
|
package/dist/factory.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createClient,
|
|
3
3
|
createConfig
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-HCC4GID6.js";
|
|
5
5
|
|
|
6
6
|
// src/client.gen.ts
|
|
7
7
|
var client = createClient(createConfig({ baseUrl: "https://roxyapi.com/api/v2" }));
|
|
@@ -1617,7 +1617,7 @@ var Forecast = class extends HeyApiClient {
|
|
|
1617
1617
|
/**
|
|
1618
1618
|
* Cross-domain forecast timeline - Transits, ingresses, stations, dasha changes, critical days
|
|
1619
1619
|
*
|
|
1620
|
-
* Build one time-ordered forecast for a single birth subject by merging upcoming events across three domains: western transit-to-natal aspects, sign ingresses,
|
|
1620
|
+
* Build one time-ordered forecast for a single birth subject by merging upcoming events across three domains: western transit-to-natal aspects, sign ingresses, retrograde stations, eclipses, and new and full moons; biorhythm critical days; and vedic Vimshottari mahadasha, antardasha, and pratyantardasha boundaries. The window is clamped to 90 days and events are capped and scored by significance. Built for what-is-coming dashboards, daily and weekly forecast feeds, and timing tools.
|
|
1621
1621
|
*/
|
|
1622
1622
|
generateTimeline(options) {
|
|
1623
1623
|
return (options?.client ?? this.client).post({
|
|
@@ -1631,9 +1631,9 @@ var Forecast = class extends HeyApiClient {
|
|
|
1631
1631
|
});
|
|
1632
1632
|
}
|
|
1633
1633
|
/**
|
|
1634
|
-
* Western
|
|
1634
|
+
* Western astrology forecast - aspects, ingresses, stations, eclipses, moon phases
|
|
1635
1635
|
*
|
|
1636
|
-
* Forecast the western astrology events for a single birth chart over a window up to 90 days: every transit-to-natal major aspect refined to its exact instant, every transiting planet sign ingress,
|
|
1636
|
+
* Forecast the western astrology events for a single birth chart over a window up to 90 days: every transit-to-natal major aspect refined to its exact instant, every transiting planet sign ingress, every retrograde or direct station, every solar and lunar eclipse, and every New and Full Moon. Returns a time-ordered, significance-scored timeline. Built for astrology forecast feeds, transit alerts, and timing tools.
|
|
1637
1637
|
*/
|
|
1638
1638
|
forecastTransits(options) {
|
|
1639
1639
|
return (options?.client ?? this.client).post({
|
|
@@ -2131,7 +2131,7 @@ var AngelNumbers = class extends HeyApiClient {
|
|
|
2131
2131
|
/**
|
|
2132
2132
|
* List All Angel Numbers
|
|
2133
2133
|
*
|
|
2134
|
-
* Retrieve the complete database of angel numbers with summary information. Returns
|
|
2134
|
+
* Retrieve the complete database of angel numbers with summary information. Returns 75+ angel numbers covering root digits (0-9), master numbers (11, 22, 33), double digits (44-99), triple repeating (111-999), quad repeating (1111-9999), the mirror families (X0X like 101-909, X1X, four-digit mirrors like 1212-2121), palindromes (1221, 1331), compound sequences (911, 1122), and sequential numbers (123, 1234). Supports optional type filtering. Perfect for building angel number explorer apps, reference guides, and spiritual databases.
|
|
2135
2135
|
*/
|
|
2136
2136
|
listAngelNumbers(options) {
|
|
2137
2137
|
return (options?.client ?? this.client).get({
|
|
@@ -2143,7 +2143,7 @@ var AngelNumbers = class extends HeyApiClient {
|
|
|
2143
2143
|
/**
|
|
2144
2144
|
* Get Angel Number Meaning
|
|
2145
2145
|
*
|
|
2146
|
-
* Get the complete, authoritative meaning and interpretation for a specific angel number. Returns detailed spiritual, love, career, and twin flame interpretations along with keywords, affirmation, and actionable steps. Covers
|
|
2146
|
+
* Get the complete, authoritative meaning and interpretation for a specific angel number. Returns detailed spiritual, love, career, money, and twin flame interpretations, plus a biblical perspective and a shadow reading, along with keywords, affirmation, and actionable steps. Covers 75+ angel numbers including 111, 222, 333, 444, 555, 666, 777, 888, 999, 1111, 1212, 1234, and more. Authoritative interpretations covering all major angel number patterns.
|
|
2147
2147
|
*/
|
|
2148
2148
|
getAngelNumber(options) {
|
|
2149
2149
|
return (options.client ?? this.client).get({
|
|
@@ -2155,7 +2155,7 @@ var AngelNumbers = class extends HeyApiClient {
|
|
|
2155
2155
|
/**
|
|
2156
2156
|
* Analyze Any Number Sequence
|
|
2157
2157
|
*
|
|
2158
|
-
* Smart angel number analysis that works for ANY number sequence, not just known angel numbers. Automatically classifies the pattern type (repeating, sequential, mirror, master, root), calculates the numerology digit root, checks the database for a known meaning, and provides the foundational digit root interpretation as a fallback. Perfect for synchronicity tracking apps where users enter arbitrary number sequences they encounter.
|
|
2158
|
+
* Smart angel number analysis that works for ANY number sequence, not just known angel numbers. Automatically classifies the pattern type (repeating, sequential, mirror, master, root, compound), calculates the numerology digit root, checks the database for a known meaning, and provides the foundational digit root interpretation (with full spiritual, love, career, money, and twin flame guidance) as a fallback. An optional context parameter adds a note tailored to where the number was seen. Perfect for synchronicity tracking apps where users enter arbitrary number sequences they encounter.
|
|
2159
2159
|
*/
|
|
2160
2160
|
analyzeNumberSequence(options) {
|
|
2161
2161
|
return (options.client ?? this.client).get({
|
|
@@ -2167,7 +2167,7 @@ var AngelNumbers = class extends HeyApiClient {
|
|
|
2167
2167
|
/**
|
|
2168
2168
|
* Daily Angel Number
|
|
2169
2169
|
*
|
|
2170
|
-
* Get the angel number of the day with full meaning and interpretation. Returns a deterministic angel number based on the current date (or a provided seed date), ensuring all users see the same number for any given day. Includes complete spiritual, love, career, and twin flame interpretations. Perfect for daily guidance features, push notifications, content generation, and angel number widget integrations.
|
|
2170
|
+
* Get the angel number of the day with full meaning and interpretation. Returns a deterministic angel number based on the current date (or a provided seed date), ensuring all users see the same number for any given day. Includes complete spiritual, love, career, money, and twin flame interpretations plus a biblical perspective and a shadow reading. Perfect for daily guidance features, push notifications, content generation, and angel number widget integrations.
|
|
2171
2171
|
*/
|
|
2172
2172
|
getDailyAngelNumber(options) {
|
|
2173
2173
|
return (options?.client ?? this.client).post({
|
|
@@ -2312,7 +2312,7 @@ var Roxy = class _Roxy extends HeyApiClient {
|
|
|
2312
2312
|
};
|
|
2313
2313
|
|
|
2314
2314
|
// src/version.ts
|
|
2315
|
-
var VERSION = "1.2.
|
|
2315
|
+
var VERSION = "1.2.35";
|
|
2316
2316
|
|
|
2317
2317
|
// src/factory.ts
|
|
2318
2318
|
function createRoxy(auth) {
|
package/dist/sdk.gen.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Client, Options as Options2, TDataShape } from './client';
|
|
2
2
|
import type { GetAngelNumbersLookupData, GetAngelNumbersLookupErrors, GetAngelNumbersLookupResponses, GetAngelNumbersNumbersByNumberData, GetAngelNumbersNumbersByNumberErrors, GetAngelNumbersNumbersByNumberResponses, GetAngelNumbersNumbersData, GetAngelNumbersNumbersErrors, GetAngelNumbersNumbersResponses, GetAstrologyHoroscopeBySignDailyData, GetAstrologyHoroscopeBySignDailyErrors, GetAstrologyHoroscopeBySignDailyResponses, GetAstrologyHoroscopeBySignMonthlyData, GetAstrologyHoroscopeBySignMonthlyErrors, GetAstrologyHoroscopeBySignMonthlyResponses, GetAstrologyHoroscopeBySignWeeklyData, GetAstrologyHoroscopeBySignWeeklyErrors, GetAstrologyHoroscopeBySignWeeklyResponses, GetAstrologyMoonPhaseCalendarByYearByMonthData, GetAstrologyMoonPhaseCalendarByYearByMonthErrors, GetAstrologyMoonPhaseCalendarByYearByMonthResponses, GetAstrologyMoonPhaseCurrentData, GetAstrologyMoonPhaseCurrentErrors, GetAstrologyMoonPhaseCurrentResponses, GetAstrologyMoonPhaseUpcomingData, GetAstrologyMoonPhaseUpcomingErrors, GetAstrologyMoonPhaseUpcomingResponses, GetAstrologyPlanetMeaningsByIdData, GetAstrologyPlanetMeaningsByIdErrors, GetAstrologyPlanetMeaningsByIdResponses, GetAstrologyPlanetMeaningsData, GetAstrologyPlanetMeaningsErrors, GetAstrologyPlanetMeaningsResponses, GetAstrologySignsByIdData, GetAstrologySignsByIdErrors, GetAstrologySignsByIdResponses, GetAstrologySignsData, GetAstrologySignsErrors, GetAstrologySignsResponses, GetCrystalsBirthstoneByMonthData, GetCrystalsBirthstoneByMonthErrors, GetCrystalsBirthstoneByMonthResponses, GetCrystalsByIdData, GetCrystalsByIdErrors, GetCrystalsByIdResponses, GetCrystalsChakraByChakraData, GetCrystalsChakraByChakraErrors, GetCrystalsChakraByChakraResponses, GetCrystalsColorsData, GetCrystalsColorsErrors, GetCrystalsColorsResponses, GetCrystalsData, GetCrystalsElementByElementData, GetCrystalsElementByElementErrors, GetCrystalsElementByElementResponses, GetCrystalsErrors, GetCrystalsPairingsByIdData, GetCrystalsPairingsByIdErrors, GetCrystalsPairingsByIdResponses, GetCrystalsPlanetsData, GetCrystalsPlanetsErrors, GetCrystalsPlanetsResponses, GetCrystalsRandomData, GetCrystalsRandomErrors, GetCrystalsRandomResponses, GetCrystalsResponses, GetCrystalsSearchData, GetCrystalsSearchErrors, GetCrystalsSearchResponses, GetCrystalsZodiacBySignData, GetCrystalsZodiacBySignErrors, GetCrystalsZodiacBySignResponses, GetDreamsSymbolsByIdData, GetDreamsSymbolsByIdErrors, GetDreamsSymbolsByIdResponses, GetDreamsSymbolsData, GetDreamsSymbolsErrors, GetDreamsSymbolsLettersData, GetDreamsSymbolsLettersErrors, GetDreamsSymbolsLettersResponses, GetDreamsSymbolsRandomData, GetDreamsSymbolsRandomErrors, GetDreamsSymbolsRandomResponses, GetDreamsSymbolsResponses, GetHumanDesignCentersByIdData, GetHumanDesignCentersByIdErrors, GetHumanDesignCentersByIdResponses, GetHumanDesignGatesByNumberData, GetHumanDesignGatesByNumberErrors, GetHumanDesignGatesByNumberResponses, GetIchingCastData, GetIchingCastErrors, GetIchingCastResponses, GetIchingHexagramsByNumberData, GetIchingHexagramsByNumberErrors, GetIchingHexagramsByNumberResponses, GetIchingHexagramsData, GetIchingHexagramsErrors, GetIchingHexagramsLookupData, GetIchingHexagramsLookupErrors, GetIchingHexagramsLookupResponses, GetIchingHexagramsRandomData, GetIchingHexagramsRandomErrors, GetIchingHexagramsRandomResponses, GetIchingHexagramsResponses, GetIchingTrigramsByIdData, GetIchingTrigramsByIdErrors, GetIchingTrigramsByIdResponses, GetIchingTrigramsData, GetIchingTrigramsErrors, GetIchingTrigramsResponses, GetLanguagesData, GetLanguagesErrors, GetLanguagesResponses, GetLocationCountriesByIso2Data, GetLocationCountriesByIso2Errors, GetLocationCountriesByIso2Responses, GetLocationCountriesData, GetLocationCountriesErrors, GetLocationCountriesResponses, GetLocationSearchData, GetLocationSearchErrors, GetLocationSearchResponses, GetNumerologyMeaningsByNumberData, GetNumerologyMeaningsByNumberErrors, GetNumerologyMeaningsByNumberResponses, GetTarotCardsByIdData, GetTarotCardsByIdErrors, GetTarotCardsByIdResponses, GetTarotCardsData, GetTarotCardsErrors, GetTarotCardsResponses, GetUsageData, GetUsageErrors, GetUsageResponses, GetVedicAstrologyKpAyanamsaData, GetVedicAstrologyKpAyanamsaErrors, GetVedicAstrologyKpAyanamsaResponses, GetVedicAstrologyNakshatrasByIdData, GetVedicAstrologyNakshatrasByIdErrors, GetVedicAstrologyNakshatrasByIdResponses, GetVedicAstrologyNakshatrasData, GetVedicAstrologyNakshatrasErrors, GetVedicAstrologyNakshatrasResponses, GetVedicAstrologyRashisByIdData, GetVedicAstrologyRashisByIdErrors, GetVedicAstrologyRashisByIdResponses, GetVedicAstrologyRashisData, GetVedicAstrologyRashisErrors, GetVedicAstrologyRashisResponses, GetVedicAstrologyYogaByIdData, GetVedicAstrologyYogaByIdErrors, GetVedicAstrologyYogaByIdResponses, GetVedicAstrologyYogaData, GetVedicAstrologyYogaErrors, GetVedicAstrologyYogaResponses, PostAngelNumbersDailyData, PostAngelNumbersDailyErrors, PostAngelNumbersDailyResponses, PostAstrologyAspectPatternsData, PostAstrologyAspectPatternsErrors, PostAstrologyAspectPatternsResponses, PostAstrologyAspectsData, PostAstrologyAspectsErrors, PostAstrologyAspectsResponses, PostAstrologyCompatibilityScoreData, PostAstrologyCompatibilityScoreErrors, PostAstrologyCompatibilityScoreResponses, PostAstrologyCompositeChartData, PostAstrologyCompositeChartErrors, PostAstrologyCompositeChartResponses, PostAstrologyHousesData, PostAstrologyHousesErrors, PostAstrologyHousesResponses, PostAstrologyLunarReturnData, PostAstrologyLunarReturnErrors, PostAstrologyLunarReturnResponses, PostAstrologyNatalChartData, PostAstrologyNatalChartErrors, PostAstrologyNatalChartResponses, PostAstrologyPlanetaryReturnsData, PostAstrologyPlanetaryReturnsErrors, PostAstrologyPlanetaryReturnsResponses, PostAstrologyPlanetsData, PostAstrologyPlanetsErrors, PostAstrologyPlanetsResponses, PostAstrologySolarReturnData, PostAstrologySolarReturnErrors, PostAstrologySolarReturnResponses, PostAstrologySynastryData, PostAstrologySynastryErrors, PostAstrologySynastryResponses, PostAstrologyTransitAspectsData, PostAstrologyTransitAspectsErrors, PostAstrologyTransitAspectsResponses, PostAstrologyTransitsData, PostAstrologyTransitsErrors, PostAstrologyTransitsResponses, PostBiorhythmCompatibilityData, PostBiorhythmCompatibilityErrors, PostBiorhythmCompatibilityResponses, PostBiorhythmCriticalDaysData, PostBiorhythmCriticalDaysErrors, PostBiorhythmCriticalDaysResponses, PostBiorhythmDailyData, PostBiorhythmDailyErrors, PostBiorhythmDailyResponses, PostBiorhythmForecastData, PostBiorhythmForecastErrors, PostBiorhythmForecastResponses, PostBiorhythmPhasesData, PostBiorhythmPhasesErrors, PostBiorhythmPhasesResponses, PostBiorhythmReadingData, PostBiorhythmReadingErrors, PostBiorhythmReadingResponses, PostCrystalsDailyData, PostCrystalsDailyErrors, PostCrystalsDailyResponses, PostDreamsDailyData, PostDreamsDailyErrors, PostDreamsDailyResponses, PostForecastDigestData, PostForecastDigestErrors, PostForecastDigestResponses, PostForecastSignificantDatesData, PostForecastSignificantDatesErrors, PostForecastSignificantDatesResponses, PostForecastSolarReturnData, PostForecastSolarReturnErrors, PostForecastSolarReturnResponses, PostForecastTimelineData, PostForecastTimelineErrors, PostForecastTimelineResponses, PostForecastTransitsData, PostForecastTransitsErrors, PostForecastTransitsResponses, PostHumanDesignBodygraphData, PostHumanDesignBodygraphErrors, PostHumanDesignBodygraphResponses, PostHumanDesignCentersData, PostHumanDesignCentersErrors, PostHumanDesignCentersResponses, PostHumanDesignChannelsData, PostHumanDesignChannelsErrors, PostHumanDesignChannelsResponses, PostHumanDesignConnectionData, PostHumanDesignConnectionErrors, PostHumanDesignConnectionResponses, PostHumanDesignGatesData, PostHumanDesignGatesErrors, PostHumanDesignGatesResponses, PostHumanDesignPentaData, PostHumanDesignPentaErrors, PostHumanDesignPentaResponses, PostHumanDesignProfileData, PostHumanDesignProfileErrors, PostHumanDesignProfileResponses, PostHumanDesignTransitData, PostHumanDesignTransitErrors, PostHumanDesignTransitResponses, PostHumanDesignTypeData, PostHumanDesignTypeErrors, PostHumanDesignTypeResponses, PostHumanDesignVariablesData, PostHumanDesignVariablesErrors, PostHumanDesignVariablesResponses, PostIchingDailyCastData, PostIchingDailyCastErrors, PostIchingDailyCastResponses, PostIchingDailyData, PostIchingDailyErrors, PostIchingDailyResponses, PostNumerologyBirthDayData, PostNumerologyBirthDayErrors, PostNumerologyBirthDayResponses, PostNumerologyBridgeData, PostNumerologyBridgeErrors, PostNumerologyBridgeResponses, PostNumerologyChartData, PostNumerologyChartErrors, PostNumerologyChartResponses, PostNumerologyCompatibilityData, PostNumerologyCompatibilityErrors, PostNumerologyCompatibilityResponses, PostNumerologyDailyData, PostNumerologyDailyErrors, PostNumerologyDailyResponses, PostNumerologyExpressionData, PostNumerologyExpressionErrors, PostNumerologyExpressionResponses, PostNumerologyKarmicDebtData, PostNumerologyKarmicDebtErrors, PostNumerologyKarmicDebtResponses, PostNumerologyKarmicLessonsData, PostNumerologyKarmicLessonsErrors, PostNumerologyKarmicLessonsResponses, PostNumerologyLifePathData, PostNumerologyLifePathErrors, PostNumerologyLifePathResponses, PostNumerologyMaturityData, PostNumerologyMaturityErrors, PostNumerologyMaturityResponses, PostNumerologyPersonalDayData, PostNumerologyPersonalDayErrors, PostNumerologyPersonalDayResponses, PostNumerologyPersonalityData, PostNumerologyPersonalityErrors, PostNumerologyPersonalityResponses, PostNumerologyPersonalMonthData, PostNumerologyPersonalMonthErrors, PostNumerologyPersonalMonthResponses, PostNumerologyPersonalYearData, PostNumerologyPersonalYearErrors, PostNumerologyPersonalYearResponses, PostNumerologySoulUrgeData, PostNumerologySoulUrgeErrors, PostNumerologySoulUrgeResponses, PostTarotDailyData, PostTarotDailyErrors, PostTarotDailyResponses, PostTarotDrawData, PostTarotDrawErrors, PostTarotDrawResponses, PostTarotSpreadsCareerData, PostTarotSpreadsCareerErrors, PostTarotSpreadsCareerResponses, PostTarotSpreadsCelticCrossData, PostTarotSpreadsCelticCrossErrors, PostTarotSpreadsCelticCrossResponses, PostTarotSpreadsCustomData, PostTarotSpreadsCustomErrors, PostTarotSpreadsCustomResponses, PostTarotSpreadsLoveData, PostTarotSpreadsLoveErrors, PostTarotSpreadsLoveResponses, PostTarotSpreadsThreeCardData, PostTarotSpreadsThreeCardErrors, PostTarotSpreadsThreeCardResponses, PostTarotYesNoData, PostTarotYesNoErrors, PostTarotYesNoResponses, PostVedicAstrologyAshtakavargaData, PostVedicAstrologyAshtakavargaErrors, PostVedicAstrologyAshtakavargaResponses, PostVedicAstrologyAspectsData, PostVedicAstrologyAspectsErrors, PostVedicAstrologyAspectsLunarData, PostVedicAstrologyAspectsLunarErrors, PostVedicAstrologyAspectsLunarResponses, PostVedicAstrologyAspectsMonthlyData, PostVedicAstrologyAspectsMonthlyErrors, PostVedicAstrologyAspectsMonthlyResponses, PostVedicAstrologyAspectsResponses, PostVedicAstrologyBirthChartData, PostVedicAstrologyBirthChartErrors, PostVedicAstrologyBirthChartResponses, PostVedicAstrologyCompatibilityData, PostVedicAstrologyCompatibilityErrors, PostVedicAstrologyCompatibilityResponses, PostVedicAstrologyDashaCurrentData, PostVedicAstrologyDashaCurrentErrors, PostVedicAstrologyDashaCurrentResponses, PostVedicAstrologyDashaMajorData, PostVedicAstrologyDashaMajorErrors, PostVedicAstrologyDashaMajorResponses, PostVedicAstrologyDashaSubByMahadashaData, PostVedicAstrologyDashaSubByMahadashaErrors, PostVedicAstrologyDashaSubByMahadashaResponses, PostVedicAstrologyDivisionalChartData, PostVedicAstrologyDivisionalChartErrors, PostVedicAstrologyDivisionalChartResponses, PostVedicAstrologyDoshaKalsarpaData, PostVedicAstrologyDoshaKalsarpaErrors, PostVedicAstrologyDoshaKalsarpaResponses, PostVedicAstrologyDoshaManglikData, PostVedicAstrologyDoshaManglikErrors, PostVedicAstrologyDoshaManglikResponses, PostVedicAstrologyDoshaSadhesatiData, PostVedicAstrologyDoshaSadhesatiErrors, PostVedicAstrologyDoshaSadhesatiResponses, PostVedicAstrologyEclipticCrossingsData, PostVedicAstrologyEclipticCrossingsErrors, PostVedicAstrologyEclipticCrossingsResponses, PostVedicAstrologyKpChartData, PostVedicAstrologyKpChartErrors, PostVedicAstrologyKpChartResponses, PostVedicAstrologyKpCuspsData, PostVedicAstrologyKpCuspsErrors, PostVedicAstrologyKpCuspsResponses, PostVedicAstrologyKpPlanetsData, PostVedicAstrologyKpPlanetsErrors, PostVedicAstrologyKpPlanetsIntervalData, PostVedicAstrologyKpPlanetsIntervalErrors, PostVedicAstrologyKpPlanetsIntervalResponses, PostVedicAstrologyKpPlanetsResponses, PostVedicAstrologyKpRasiChangesData, PostVedicAstrologyKpRasiChangesErrors, PostVedicAstrologyKpRasiChangesResponses, PostVedicAstrologyKpRulingPlanetsData, PostVedicAstrologyKpRulingPlanetsErrors, PostVedicAstrologyKpRulingPlanetsIntervalData, PostVedicAstrologyKpRulingPlanetsIntervalErrors, PostVedicAstrologyKpRulingPlanetsIntervalResponses, PostVedicAstrologyKpRulingPlanetsResponses, PostVedicAstrologyKpSublordChangesData, PostVedicAstrologyKpSublordChangesErrors, PostVedicAstrologyKpSublordChangesResponses, PostVedicAstrologyNavamsaData, PostVedicAstrologyNavamsaErrors, PostVedicAstrologyNavamsaResponses, PostVedicAstrologyPanchangBasicData, PostVedicAstrologyPanchangBasicErrors, PostVedicAstrologyPanchangBasicResponses, PostVedicAstrologyPanchangChoghadiyaData, PostVedicAstrologyPanchangChoghadiyaErrors, PostVedicAstrologyPanchangChoghadiyaResponses, PostVedicAstrologyPanchangDetailedData, PostVedicAstrologyPanchangDetailedErrors, PostVedicAstrologyPanchangDetailedResponses, PostVedicAstrologyPanchangHoraData, PostVedicAstrologyPanchangHoraErrors, PostVedicAstrologyPanchangHoraResponses, PostVedicAstrologyParallelsData, PostVedicAstrologyParallelsErrors, PostVedicAstrologyParallelsMonthlyData, PostVedicAstrologyParallelsMonthlyErrors, PostVedicAstrologyParallelsMonthlyResponses, PostVedicAstrologyParallelsResponses, PostVedicAstrologyPlanetaryPositionsData, PostVedicAstrologyPlanetaryPositionsErrors, PostVedicAstrologyPlanetaryPositionsMonthlyData, PostVedicAstrologyPlanetaryPositionsMonthlyErrors, PostVedicAstrologyPlanetaryPositionsMonthlyResponses, PostVedicAstrologyPlanetaryPositionsResponses, PostVedicAstrologyShadbalaData, PostVedicAstrologyShadbalaErrors, PostVedicAstrologyShadbalaResponses, PostVedicAstrologyTransitData, PostVedicAstrologyTransitErrors, PostVedicAstrologyTransitMonthlyData, PostVedicAstrologyTransitMonthlyErrors, PostVedicAstrologyTransitMonthlyResponses, PostVedicAstrologyTransitResponses, PostVedicAstrologyUpagrahaData, PostVedicAstrologyUpagrahaErrors, PostVedicAstrologyUpagrahaResponses, PostVedicAstrologyYogaDetectData, PostVedicAstrologyYogaDetectErrors, PostVedicAstrologyYogaDetectResponses } from './types.gen';
|
|
3
|
-
export type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options2<TData, ThrowOnError> & {
|
|
3
|
+
export type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown> = Options2<TData, ThrowOnError, TResponse> & {
|
|
4
4
|
/**
|
|
5
5
|
* You can provide a client instance returned by `createClient()` instead of
|
|
6
6
|
* individual options. This might be also useful if you want to implement a
|
|
@@ -663,13 +663,13 @@ export declare class Forecast extends HeyApiClient {
|
|
|
663
663
|
/**
|
|
664
664
|
* Cross-domain forecast timeline - Transits, ingresses, stations, dasha changes, critical days
|
|
665
665
|
*
|
|
666
|
-
* Build one time-ordered forecast for a single birth subject by merging upcoming events across three domains: western transit-to-natal aspects, sign ingresses,
|
|
666
|
+
* Build one time-ordered forecast for a single birth subject by merging upcoming events across three domains: western transit-to-natal aspects, sign ingresses, retrograde stations, eclipses, and new and full moons; biorhythm critical days; and vedic Vimshottari mahadasha, antardasha, and pratyantardasha boundaries. The window is clamped to 90 days and events are capped and scored by significance. Built for what-is-coming dashboards, daily and weekly forecast feeds, and timing tools.
|
|
667
667
|
*/
|
|
668
668
|
generateTimeline<ThrowOnError extends boolean = false>(options?: Options<PostForecastTimelineData, ThrowOnError>): import("./client").RequestResult<PostForecastTimelineResponses, PostForecastTimelineErrors, ThrowOnError, "fields">;
|
|
669
669
|
/**
|
|
670
|
-
* Western
|
|
670
|
+
* Western astrology forecast - aspects, ingresses, stations, eclipses, moon phases
|
|
671
671
|
*
|
|
672
|
-
* Forecast the western astrology events for a single birth chart over a window up to 90 days: every transit-to-natal major aspect refined to its exact instant, every transiting planet sign ingress,
|
|
672
|
+
* Forecast the western astrology events for a single birth chart over a window up to 90 days: every transit-to-natal major aspect refined to its exact instant, every transiting planet sign ingress, every retrograde or direct station, every solar and lunar eclipse, and every New and Full Moon. Returns a time-ordered, significance-scored timeline. Built for astrology forecast feeds, transit alerts, and timing tools.
|
|
673
673
|
*/
|
|
674
674
|
forecastTransits<ThrowOnError extends boolean = false>(options?: Options<PostForecastTransitsData, ThrowOnError>): import("./client").RequestResult<PostForecastTransitsResponses, PostForecastTransitsErrors, ThrowOnError, "fields">;
|
|
675
675
|
/**
|
|
@@ -895,25 +895,25 @@ export declare class AngelNumbers extends HeyApiClient {
|
|
|
895
895
|
/**
|
|
896
896
|
* List All Angel Numbers
|
|
897
897
|
*
|
|
898
|
-
* Retrieve the complete database of angel numbers with summary information. Returns
|
|
898
|
+
* Retrieve the complete database of angel numbers with summary information. Returns 75+ angel numbers covering root digits (0-9), master numbers (11, 22, 33), double digits (44-99), triple repeating (111-999), quad repeating (1111-9999), the mirror families (X0X like 101-909, X1X, four-digit mirrors like 1212-2121), palindromes (1221, 1331), compound sequences (911, 1122), and sequential numbers (123, 1234). Supports optional type filtering. Perfect for building angel number explorer apps, reference guides, and spiritual databases.
|
|
899
899
|
*/
|
|
900
900
|
listAngelNumbers<ThrowOnError extends boolean = false>(options?: Options<GetAngelNumbersNumbersData, ThrowOnError>): import("./client").RequestResult<GetAngelNumbersNumbersResponses, GetAngelNumbersNumbersErrors, ThrowOnError, "fields">;
|
|
901
901
|
/**
|
|
902
902
|
* Get Angel Number Meaning
|
|
903
903
|
*
|
|
904
|
-
* Get the complete, authoritative meaning and interpretation for a specific angel number. Returns detailed spiritual, love, career, and twin flame interpretations along with keywords, affirmation, and actionable steps. Covers
|
|
904
|
+
* Get the complete, authoritative meaning and interpretation for a specific angel number. Returns detailed spiritual, love, career, money, and twin flame interpretations, plus a biblical perspective and a shadow reading, along with keywords, affirmation, and actionable steps. Covers 75+ angel numbers including 111, 222, 333, 444, 555, 666, 777, 888, 999, 1111, 1212, 1234, and more. Authoritative interpretations covering all major angel number patterns.
|
|
905
905
|
*/
|
|
906
906
|
getAngelNumber<ThrowOnError extends boolean = false>(options: Options<GetAngelNumbersNumbersByNumberData, ThrowOnError>): import("./client").RequestResult<GetAngelNumbersNumbersByNumberResponses, GetAngelNumbersNumbersByNumberErrors, ThrowOnError, "fields">;
|
|
907
907
|
/**
|
|
908
908
|
* Analyze Any Number Sequence
|
|
909
909
|
*
|
|
910
|
-
* Smart angel number analysis that works for ANY number sequence, not just known angel numbers. Automatically classifies the pattern type (repeating, sequential, mirror, master, root), calculates the numerology digit root, checks the database for a known meaning, and provides the foundational digit root interpretation as a fallback. Perfect for synchronicity tracking apps where users enter arbitrary number sequences they encounter.
|
|
910
|
+
* Smart angel number analysis that works for ANY number sequence, not just known angel numbers. Automatically classifies the pattern type (repeating, sequential, mirror, master, root, compound), calculates the numerology digit root, checks the database for a known meaning, and provides the foundational digit root interpretation (with full spiritual, love, career, money, and twin flame guidance) as a fallback. An optional context parameter adds a note tailored to where the number was seen. Perfect for synchronicity tracking apps where users enter arbitrary number sequences they encounter.
|
|
911
911
|
*/
|
|
912
912
|
analyzeNumberSequence<ThrowOnError extends boolean = false>(options: Options<GetAngelNumbersLookupData, ThrowOnError>): import("./client").RequestResult<GetAngelNumbersLookupResponses, GetAngelNumbersLookupErrors, ThrowOnError, "fields">;
|
|
913
913
|
/**
|
|
914
914
|
* Daily Angel Number
|
|
915
915
|
*
|
|
916
|
-
* Get the angel number of the day with full meaning and interpretation. Returns a deterministic angel number based on the current date (or a provided seed date), ensuring all users see the same number for any given day. Includes complete spiritual, love, career, and twin flame interpretations. Perfect for daily guidance features, push notifications, content generation, and angel number widget integrations.
|
|
916
|
+
* Get the angel number of the day with full meaning and interpretation. Returns a deterministic angel number based on the current date (or a provided seed date), ensuring all users see the same number for any given day. Includes complete spiritual, love, career, money, and twin flame interpretations plus a biblical perspective and a shadow reading. Perfect for daily guidance features, push notifications, content generation, and angel number widget integrations.
|
|
917
917
|
*/
|
|
918
918
|
getDailyAngelNumber<ThrowOnError extends boolean = false>(options?: Options<PostAngelNumbersDailyData, ThrowOnError>): import("./client").RequestResult<PostAngelNumbersDailyResponses, PostAngelNumbersDailyErrors, ThrowOnError, "fields">;
|
|
919
919
|
}
|