@roxyapi/sdk 1.2.13 → 1.2.15
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 +22 -8
- package/README.md +14 -12
- package/dist/factory.cjs +268 -268
- package/dist/factory.js +268 -268
- package/dist/sdk.gen.d.ts +118 -118
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/types.gen.d.ts +4378 -4378
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/sdk.gen.ts +284 -284
- package/src/types.gen.ts +4323 -4323
- package/src/version.ts +1 -1
package/dist/factory.cjs
CHANGED
|
@@ -1822,160 +1822,6 @@ var VedicAstrology = class extends HeyApiClient {
|
|
|
1822
1822
|
});
|
|
1823
1823
|
}
|
|
1824
1824
|
};
|
|
1825
|
-
var Tarot = class extends HeyApiClient {
|
|
1826
|
-
/**
|
|
1827
|
-
* List all 78 tarot cards
|
|
1828
|
-
*
|
|
1829
|
-
* Retrieve the complete Rider-Waite-Smith tarot deck of 78 cards: 22 Major Arcana (numbered 0-21, representing life lessons, spiritual themes, and karmic influences like The Fool, Death, The Tower) plus 56 Minor Arcana (4 suits × 14 cards each for daily situations and practical matters). Filter by arcana type (major for spiritual guidance, minor for everyday concerns), suit (cups for emotions and relationships, wands for creativity and passion, swords for intellect and conflict, pentacles for material wealth and finances), or card number (Ace=1 for new beginnings, 2-10 for progression, Page=11 for messages, Knight=12 for action, Queen=13 for mastery, King=14 for authority). Returns lightweight basic card data - use GET /cards/:id for full upright and reversed interpretations with keywords. Perfect for building tarot reference libraries, card databases, learning applications, or browsing the complete traditional deck used by professional tarot readers worldwide.
|
|
1830
|
-
*/
|
|
1831
|
-
listCards(options) {
|
|
1832
|
-
return (options?.client ?? this.client).get({
|
|
1833
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1834
|
-
url: "/tarot/cards",
|
|
1835
|
-
...options
|
|
1836
|
-
});
|
|
1837
|
-
}
|
|
1838
|
-
/**
|
|
1839
|
-
* Get detailed tarot card information
|
|
1840
|
-
*
|
|
1841
|
-
* Retrieve comprehensive details for a specific tarot card from the traditional Rider-Waite-Smith deck including complete upright meanings (card drawn normally) and reversed meanings (inverted/upside down interpretations for nuanced guidance). Each card provides keywords for quick reference, full interpretations (400+ words each for upright and reversed orientations), and guidance across life domains: love and relationships, career and professional growth, finances and material success, health and wellbeing, spirituality and personal development. Major Arcana cards (0-21) reveal deep spiritual lessons and life-changing themes. Minor Arcana cards (Ace through King in Cups, Wands, Swords, Pentacles) address practical daily situations and specific challenges. Use card ID in kebab-case format: Major Arcana like "fool", "magician", "death", "tower", or Minor Arcana like "ace-of-cups", "seven-of-wands", "queen-of-swords", "king-of-pentacles". Essential for detailed tarot study, reading interpretations, divination apps, fortune-telling platforms, spiritual guidance tools, and professional tarot learning applications.
|
|
1842
|
-
*/
|
|
1843
|
-
getCard(options) {
|
|
1844
|
-
return (options.client ?? this.client).get({
|
|
1845
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1846
|
-
url: "/tarot/cards/{id}",
|
|
1847
|
-
...options
|
|
1848
|
-
});
|
|
1849
|
-
}
|
|
1850
|
-
/**
|
|
1851
|
-
* Draw random tarot cards with reproducible results
|
|
1852
|
-
*
|
|
1853
|
-
* Draw 1-78 tarot cards from the complete Rider-Waite-Smith deck with seeded reproducibility for consistent personalized readings. Provide an optional seed string (like "user123-2025-12-27" or "readingId") to ensure the same seed always returns identical cards in the exact same order - essential for daily tarot features, personalized user experiences, shareable readings, or reproducible testing. Omit seed for true random draws each time. Control card reversals (upright vs reversed/inverted orientations - reversed cards provide alternative meanings when drawn upside down) and duplicates (traditional deck draws each of 78 cards once, or oracle-style allows repeating same card). Each drawn card includes position number, reversal state (boolean), keywords for quick interpretation, full meaning text (400+ words), authentic Rider-Waite imagery, and card metadata. Perfect for custom spread builders, random card generators, automated tarot reading platforms, daily card features, meditation apps, journaling prompts, divination tools, and any application requiring reproducible or random tarot draws from the industry-standard 78-card deck (22 Major Arcana spiritual lessons + 56 Minor Arcana practical guidance across 4 suits).
|
|
1854
|
-
*/
|
|
1855
|
-
drawCards(options) {
|
|
1856
|
-
return (options.client ?? this.client).post({
|
|
1857
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1858
|
-
url: "/tarot/draw",
|
|
1859
|
-
...options,
|
|
1860
|
-
headers: {
|
|
1861
|
-
"Content-Type": "application/json",
|
|
1862
|
-
...options.headers
|
|
1863
|
-
}
|
|
1864
|
-
});
|
|
1865
|
-
}
|
|
1866
|
-
/**
|
|
1867
|
-
* Get daily tarot card reading
|
|
1868
|
-
*
|
|
1869
|
-
* Receive a single tarot card for daily guidance and reflection. This endpoint uses seeded randomness to ensure the same seed gets the same card on the same day - perfect for "Card of the Day" features. Provide a seed (userId, email hash, session token) for reproducible consistency, or omit for anonymous daily draws. Returns card with keywords, full meaning, and a daily message summary. Great for tarot apps, wellness platforms, morning ritual apps, and journaling tools.
|
|
1870
|
-
*/
|
|
1871
|
-
getDailyCard(options) {
|
|
1872
|
-
return (options?.client ?? this.client).post({
|
|
1873
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1874
|
-
url: "/tarot/daily",
|
|
1875
|
-
...options,
|
|
1876
|
-
headers: {
|
|
1877
|
-
"Content-Type": "application/json",
|
|
1878
|
-
...options?.headers
|
|
1879
|
-
}
|
|
1880
|
-
});
|
|
1881
|
-
}
|
|
1882
|
-
/**
|
|
1883
|
-
* Get yes/no answer to your question
|
|
1884
|
-
*
|
|
1885
|
-
* Ask a specific question and receive a yes, no, or maybe answer based on a single tarot card draw. Upright cards indicate "Yes" with positive energy, reversed cards indicate "No" with caution, and certain inherently ambiguous cards (The Hanged Man, Wheel of Fortune, Temperance, Two of Swords, Four of Swords) return "Maybe" regardless of orientation since their energy signals pause, reflection, or shifting circumstances. Major Arcana cards give strong definitive answers, Minor Arcana cards give qualified nuanced answers. Returns the answer, strength level, drawn card details, and a contextual interpretation explaining why. Perfect for decision-making apps, quick guidance tools, fortune-telling chatbots, and interactive tarot experiences. Optionally provide a seed for reproducible answers.
|
|
1886
|
-
*/
|
|
1887
|
-
castYesNo(options) {
|
|
1888
|
-
return (options.client ?? this.client).post({
|
|
1889
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1890
|
-
url: "/tarot/yes-no",
|
|
1891
|
-
...options,
|
|
1892
|
-
headers: {
|
|
1893
|
-
"Content-Type": "application/json",
|
|
1894
|
-
...options.headers
|
|
1895
|
-
}
|
|
1896
|
-
});
|
|
1897
|
-
}
|
|
1898
|
-
/**
|
|
1899
|
-
* Three-Card Spread: Past, Present, Future
|
|
1900
|
-
*
|
|
1901
|
-
* Perform the classic three-card tarot spread revealing Past (what led to this situation), Present (current energy and circumstances), and Future (likely outcome if current path continues). The most popular beginner-friendly spread, perfect for quick insights, daily guidance, or exploring specific questions. Each position includes a drawn card with reversal state, keywords, full meaning, and position-specific interpretation. Returns a summary connecting all three cards. Ideal for tarot reading apps, decision-making tools, and personal growth platforms. Optionally provide a seed for reproducible readings.
|
|
1902
|
-
*/
|
|
1903
|
-
castThreeCard(options) {
|
|
1904
|
-
return (options.client ?? this.client).post({
|
|
1905
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1906
|
-
url: "/tarot/spreads/three-card",
|
|
1907
|
-
...options,
|
|
1908
|
-
headers: {
|
|
1909
|
-
"Content-Type": "application/json",
|
|
1910
|
-
...options.headers
|
|
1911
|
-
}
|
|
1912
|
-
});
|
|
1913
|
-
}
|
|
1914
|
-
/**
|
|
1915
|
-
* Celtic Cross Spread (10 cards)
|
|
1916
|
-
*
|
|
1917
|
-
* Perform the legendary Celtic Cross spread - the most comprehensive and detailed tarot reading available, used by professional tarot readers worldwide for over a century. This 10-card layout reveals the complete picture of any situation through distinct positions: Present Situation (what is happening now), Challenge (obstacles crossing your path), Distant Past (root causes), Recent Past (recent influences), Best Outcome (potential positive result), Near Future (what is approaching in weeks ahead), Your Approach (your attitude and self-perception), External Influences (environment and other people impact), Hopes and Fears (your desires and anxieties), and Final Outcome (where everything is headed). Perfect for life-changing decisions, complex relationship questions, career transitions, spiritual guidance, and deep self-discovery. Ideal for professional tarot apps, life coaching platforms, spiritual wellness websites, and divination tools requiring authoritative comprehensive readings. Each card position provides layered insight combining traditional tarot wisdom with modern psychological interpretation for actionable guidance.
|
|
1918
|
-
*/
|
|
1919
|
-
castCelticCross(options) {
|
|
1920
|
-
return (options.client ?? this.client).post({
|
|
1921
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1922
|
-
url: "/tarot/spreads/celtic-cross",
|
|
1923
|
-
...options,
|
|
1924
|
-
headers: {
|
|
1925
|
-
"Content-Type": "application/json",
|
|
1926
|
-
...options.headers
|
|
1927
|
-
}
|
|
1928
|
-
});
|
|
1929
|
-
}
|
|
1930
|
-
/**
|
|
1931
|
-
* Love Spread (5 cards)
|
|
1932
|
-
*
|
|
1933
|
-
* Perform a specialized 5-card relationship tarot spread analyzing romantic connections, emotional dynamics, and partnership potential. This love-focused reading examines five crucial relationship aspects: You (your current emotional state, needs, and what you bring to the relationship), Partner/Other (their emotional perspective, desires, and energy), Relationship Dynamic (the current energy and connection between you both), Challenge (obstacles needing attention, healing, or communication), and Outcome (where this romantic connection is naturally heading). Perfect for dating apps, relationship counseling platforms, matchmaking services, wellness apps, and romantic guidance tools. Provides deep insight into new relationships, existing partnerships, potential connections, breakup recovery, or self-love journeys. Ideal for understanding compatibility, resolving conflicts, strengthening bonds, or deciding whether to pursue or continue a relationship. Each position reveals emotional truths combining traditional tarot relationship wisdom with modern relationship psychology. Use for individual readings or couples readings to gain perspective on romantic situations from singleness to marriage.
|
|
1934
|
-
*/
|
|
1935
|
-
castLoveSpread(options) {
|
|
1936
|
-
return (options.client ?? this.client).post({
|
|
1937
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1938
|
-
url: "/tarot/spreads/love",
|
|
1939
|
-
...options,
|
|
1940
|
-
headers: {
|
|
1941
|
-
"Content-Type": "application/json",
|
|
1942
|
-
...options.headers
|
|
1943
|
-
}
|
|
1944
|
-
});
|
|
1945
|
-
}
|
|
1946
|
-
/**
|
|
1947
|
-
* Career Spread (7 cards)
|
|
1948
|
-
*
|
|
1949
|
-
* Perform a comprehensive 7-card career tarot spread using SWOT analysis framework (Strengths, Weaknesses, Opportunities, Threats) for professional guidance, business decisions, and vocational clarity. This career-focused reading examines seven strategic business aspects: Current Situation (your present professional position and workplace energy), Strengths (your professional assets, talents, and competitive advantages), Weaknesses (areas needing development, skill gaps, or limiting beliefs), Opportunities (potential growth paths, new ventures, or doors opening), Threats (obstacles, competition, or external challenges), Advice (actionable guidance for navigating your career path), and Outcome (where your professional journey is heading if you follow the guidance). Perfect for career coaching platforms, professional development apps, business consulting tools, job search websites, entrepreneurship platforms, and executive coaching services. Use for career transitions, job offers evaluation, promotion decisions, starting a business, workplace conflicts, finding your calling, or strategic career planning. Combines traditional tarot wisdom with modern SWOT business analysis for practical professional insight. Ideal for employees, entrepreneurs, freelancers, career changers, and anyone seeking vocational direction.
|
|
1950
|
-
*/
|
|
1951
|
-
castCareerSpread(options) {
|
|
1952
|
-
return (options.client ?? this.client).post({
|
|
1953
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1954
|
-
url: "/tarot/spreads/career",
|
|
1955
|
-
...options,
|
|
1956
|
-
headers: {
|
|
1957
|
-
"Content-Type": "application/json",
|
|
1958
|
-
...options.headers
|
|
1959
|
-
}
|
|
1960
|
-
});
|
|
1961
|
-
}
|
|
1962
|
-
/**
|
|
1963
|
-
* Custom Spread Builder
|
|
1964
|
-
*
|
|
1965
|
-
* Build and perform your own custom tarot spread with personalized positions and interpretations (1-10 cards). This flexible endpoint lets you create unique spread layouts for any purpose - define your own position names, meanings, and card count to match your specific needs or therapeutic framework. Perfect for therapists using tarot in counseling, coaches creating signature spreads, app developers building custom reading features, spiritual practitioners with proprietary methods, or anyone wanting to design specialized layouts beyond traditional spreads. Create spreads for specific themes like chakra readings (7 cards), lunar phases (8 cards), elements (4 cards), goals setting (any count), shadow work, inner child healing, decision matrices, or creative problem-solving. Each position requires a name and interpretation - you define what each card position represents in your reading. The API draws the exact number of cards you specify and maps them to your custom positions. No pre-generated summary provided - you interpret the reading based on your framework. Ideal for innovative tarot apps, therapeutic tools, personal development platforms, spiritual coaching services, or experimental divination methods. Maximum 10 positions to maintain reading clarity and practical interpretation time.
|
|
1966
|
-
*/
|
|
1967
|
-
castCustomSpread(options) {
|
|
1968
|
-
return (options.client ?? this.client).post({
|
|
1969
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1970
|
-
url: "/tarot/spreads/custom",
|
|
1971
|
-
...options,
|
|
1972
|
-
headers: {
|
|
1973
|
-
"Content-Type": "application/json",
|
|
1974
|
-
...options.headers
|
|
1975
|
-
}
|
|
1976
|
-
});
|
|
1977
|
-
}
|
|
1978
|
-
};
|
|
1979
1825
|
var Numerology = class extends HeyApiClient {
|
|
1980
1826
|
/**
|
|
1981
1827
|
* Calculate Life Path number - Most important numerology calculation
|
|
@@ -2230,64 +2076,186 @@ var Numerology = class extends HeyApiClient {
|
|
|
2230
2076
|
});
|
|
2231
2077
|
}
|
|
2232
2078
|
};
|
|
2233
|
-
var
|
|
2079
|
+
var Tarot = class extends HeyApiClient {
|
|
2234
2080
|
/**
|
|
2235
|
-
* List
|
|
2081
|
+
* List all 78 tarot cards
|
|
2236
2082
|
*
|
|
2237
|
-
*
|
|
2083
|
+
* Retrieve the complete Rider-Waite-Smith tarot deck of 78 cards: 22 Major Arcana (numbered 0-21, representing life lessons, spiritual themes, and karmic influences like The Fool, Death, The Tower) plus 56 Minor Arcana (4 suits × 14 cards each for daily situations and practical matters). Filter by arcana type (major for spiritual guidance, minor for everyday concerns), suit (cups for emotions and relationships, wands for creativity and passion, swords for intellect and conflict, pentacles for material wealth and finances), or card number (Ace=1 for new beginnings, 2-10 for progression, Page=11 for messages, Knight=12 for action, Queen=13 for mastery, King=14 for authority). Returns lightweight basic card data - use GET /cards/:id for full upright and reversed interpretations with keywords. Perfect for building tarot reference libraries, card databases, learning applications, or browsing the complete traditional deck used by professional tarot readers worldwide.
|
|
2238
2084
|
*/
|
|
2239
|
-
|
|
2085
|
+
listCards(options) {
|
|
2240
2086
|
return (options?.client ?? this.client).get({
|
|
2241
2087
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2242
|
-
url: "/
|
|
2088
|
+
url: "/tarot/cards",
|
|
2243
2089
|
...options
|
|
2244
2090
|
});
|
|
2245
2091
|
}
|
|
2246
2092
|
/**
|
|
2247
|
-
* Get
|
|
2093
|
+
* Get detailed tarot card information
|
|
2248
2094
|
*
|
|
2249
|
-
*
|
|
2095
|
+
* Retrieve comprehensive details for a specific tarot card from the traditional Rider-Waite-Smith deck including complete upright meanings (card drawn normally) and reversed meanings (inverted/upside down interpretations for nuanced guidance). Each card provides keywords for quick reference, full interpretations (400+ words each for upright and reversed orientations), and guidance across life domains: love and relationships, career and professional growth, finances and material success, health and wellbeing, spirituality and personal development. Major Arcana cards (0-21) reveal deep spiritual lessons and life-changing themes. Minor Arcana cards (Ace through King in Cups, Wands, Swords, Pentacles) address practical daily situations and specific challenges. Use card ID in kebab-case format: Major Arcana like "fool", "magician", "death", "tower", or Minor Arcana like "ace-of-cups", "seven-of-wands", "queen-of-swords", "king-of-pentacles". Essential for detailed tarot study, reading interpretations, divination apps, fortune-telling platforms, spiritual guidance tools, and professional tarot learning applications.
|
|
2250
2096
|
*/
|
|
2251
|
-
|
|
2252
|
-
return (options
|
|
2097
|
+
getCard(options) {
|
|
2098
|
+
return (options.client ?? this.client).get({
|
|
2099
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2100
|
+
url: "/tarot/cards/{id}",
|
|
2101
|
+
...options
|
|
2102
|
+
});
|
|
2103
|
+
}
|
|
2104
|
+
/**
|
|
2105
|
+
* Draw random tarot cards with reproducible results
|
|
2106
|
+
*
|
|
2107
|
+
* Draw 1-78 tarot cards from the complete Rider-Waite-Smith deck with seeded reproducibility for consistent personalized readings. Provide an optional seed string (like "user123-2025-12-27" or "readingId") to ensure the same seed always returns identical cards in the exact same order - essential for daily tarot features, personalized user experiences, shareable readings, or reproducible testing. Omit seed for true random draws each time. Control card reversals (upright vs reversed/inverted orientations - reversed cards provide alternative meanings when drawn upside down) and duplicates (traditional deck draws each of 78 cards once, or oracle-style allows repeating same card). Each drawn card includes position number, reversal state (boolean), keywords for quick interpretation, full meaning text (400+ words), authentic Rider-Waite imagery, and card metadata. Perfect for custom spread builders, random card generators, automated tarot reading platforms, daily card features, meditation apps, journaling prompts, divination tools, and any application requiring reproducible or random tarot draws from the industry-standard 78-card deck (22 Major Arcana spiritual lessons + 56 Minor Arcana practical guidance across 4 suits).
|
|
2108
|
+
*/
|
|
2109
|
+
drawCards(options) {
|
|
2110
|
+
return (options.client ?? this.client).post({
|
|
2111
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2112
|
+
url: "/tarot/draw",
|
|
2113
|
+
...options,
|
|
2114
|
+
headers: {
|
|
2115
|
+
"Content-Type": "application/json",
|
|
2116
|
+
...options.headers
|
|
2117
|
+
}
|
|
2118
|
+
});
|
|
2119
|
+
}
|
|
2120
|
+
/**
|
|
2121
|
+
* Get daily tarot card reading
|
|
2122
|
+
*
|
|
2123
|
+
* Receive a single tarot card for daily guidance and reflection. This endpoint uses seeded randomness to ensure the same seed gets the same card on the same day - perfect for "Card of the Day" features. Provide a seed (userId, email hash, session token) for reproducible consistency, or omit for anonymous daily draws. Returns card with keywords, full meaning, and a daily message summary. Great for tarot apps, wellness platforms, morning ritual apps, and journaling tools.
|
|
2124
|
+
*/
|
|
2125
|
+
getDailyCard(options) {
|
|
2126
|
+
return (options?.client ?? this.client).post({
|
|
2127
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2128
|
+
url: "/tarot/daily",
|
|
2129
|
+
...options,
|
|
2130
|
+
headers: {
|
|
2131
|
+
"Content-Type": "application/json",
|
|
2132
|
+
...options?.headers
|
|
2133
|
+
}
|
|
2134
|
+
});
|
|
2135
|
+
}
|
|
2136
|
+
/**
|
|
2137
|
+
* Get yes/no answer to your question
|
|
2138
|
+
*
|
|
2139
|
+
* Ask a specific question and receive a yes, no, or maybe answer based on a single tarot card draw. Upright cards indicate "Yes" with positive energy, reversed cards indicate "No" with caution, and certain inherently ambiguous cards (The Hanged Man, Wheel of Fortune, Temperance, Two of Swords, Four of Swords) return "Maybe" regardless of orientation since their energy signals pause, reflection, or shifting circumstances. Major Arcana cards give strong definitive answers, Minor Arcana cards give qualified nuanced answers. Returns the answer, strength level, drawn card details, and a contextual interpretation explaining why. Perfect for decision-making apps, quick guidance tools, fortune-telling chatbots, and interactive tarot experiences. Optionally provide a seed for reproducible answers.
|
|
2140
|
+
*/
|
|
2141
|
+
castYesNo(options) {
|
|
2142
|
+
return (options.client ?? this.client).post({
|
|
2143
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2144
|
+
url: "/tarot/yes-no",
|
|
2145
|
+
...options,
|
|
2146
|
+
headers: {
|
|
2147
|
+
"Content-Type": "application/json",
|
|
2148
|
+
...options.headers
|
|
2149
|
+
}
|
|
2150
|
+
});
|
|
2151
|
+
}
|
|
2152
|
+
/**
|
|
2153
|
+
* Three-Card Spread: Past, Present, Future
|
|
2154
|
+
*
|
|
2155
|
+
* Perform the classic three-card tarot spread revealing Past (what led to this situation), Present (current energy and circumstances), and Future (likely outcome if current path continues). The most popular beginner-friendly spread, perfect for quick insights, daily guidance, or exploring specific questions. Each position includes a drawn card with reversal state, keywords, full meaning, and position-specific interpretation. Returns a summary connecting all three cards. Ideal for tarot reading apps, decision-making tools, and personal growth platforms. Optionally provide a seed for reproducible readings.
|
|
2156
|
+
*/
|
|
2157
|
+
castThreeCard(options) {
|
|
2158
|
+
return (options.client ?? this.client).post({
|
|
2159
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2160
|
+
url: "/tarot/spreads/three-card",
|
|
2161
|
+
...options,
|
|
2162
|
+
headers: {
|
|
2163
|
+
"Content-Type": "application/json",
|
|
2164
|
+
...options.headers
|
|
2165
|
+
}
|
|
2166
|
+
});
|
|
2167
|
+
}
|
|
2168
|
+
/**
|
|
2169
|
+
* Celtic Cross Spread (10 cards)
|
|
2170
|
+
*
|
|
2171
|
+
* Perform the legendary Celtic Cross spread - the most comprehensive and detailed tarot reading available, used by professional tarot readers worldwide for over a century. This 10-card layout reveals the complete picture of any situation through distinct positions: Present Situation (what is happening now), Challenge (obstacles crossing your path), Distant Past (root causes), Recent Past (recent influences), Best Outcome (potential positive result), Near Future (what is approaching in weeks ahead), Your Approach (your attitude and self-perception), External Influences (environment and other people impact), Hopes and Fears (your desires and anxieties), and Final Outcome (where everything is headed). Perfect for life-changing decisions, complex relationship questions, career transitions, spiritual guidance, and deep self-discovery. Ideal for professional tarot apps, life coaching platforms, spiritual wellness websites, and divination tools requiring authoritative comprehensive readings. Each card position provides layered insight combining traditional tarot wisdom with modern psychological interpretation for actionable guidance.
|
|
2172
|
+
*/
|
|
2173
|
+
castCelticCross(options) {
|
|
2174
|
+
return (options.client ?? this.client).post({
|
|
2175
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2176
|
+
url: "/tarot/spreads/celtic-cross",
|
|
2177
|
+
...options,
|
|
2178
|
+
headers: {
|
|
2179
|
+
"Content-Type": "application/json",
|
|
2180
|
+
...options.headers
|
|
2181
|
+
}
|
|
2182
|
+
});
|
|
2183
|
+
}
|
|
2184
|
+
/**
|
|
2185
|
+
* Love Spread (5 cards)
|
|
2186
|
+
*
|
|
2187
|
+
* Perform a specialized 5-card relationship tarot spread analyzing romantic connections, emotional dynamics, and partnership potential. This love-focused reading examines five crucial relationship aspects: You (your current emotional state, needs, and what you bring to the relationship), Partner/Other (their emotional perspective, desires, and energy), Relationship Dynamic (the current energy and connection between you both), Challenge (obstacles needing attention, healing, or communication), and Outcome (where this romantic connection is naturally heading). Perfect for dating apps, relationship counseling platforms, matchmaking services, wellness apps, and romantic guidance tools. Provides deep insight into new relationships, existing partnerships, potential connections, breakup recovery, or self-love journeys. Ideal for understanding compatibility, resolving conflicts, strengthening bonds, or deciding whether to pursue or continue a relationship. Each position reveals emotional truths combining traditional tarot relationship wisdom with modern relationship psychology. Use for individual readings or couples readings to gain perspective on romantic situations from singleness to marriage.
|
|
2188
|
+
*/
|
|
2189
|
+
castLoveSpread(options) {
|
|
2190
|
+
return (options.client ?? this.client).post({
|
|
2191
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2192
|
+
url: "/tarot/spreads/love",
|
|
2193
|
+
...options,
|
|
2194
|
+
headers: {
|
|
2195
|
+
"Content-Type": "application/json",
|
|
2196
|
+
...options.headers
|
|
2197
|
+
}
|
|
2198
|
+
});
|
|
2199
|
+
}
|
|
2200
|
+
/**
|
|
2201
|
+
* Career Spread (7 cards)
|
|
2202
|
+
*
|
|
2203
|
+
* Perform a comprehensive 7-card career tarot spread using SWOT analysis framework (Strengths, Weaknesses, Opportunities, Threats) for professional guidance, business decisions, and vocational clarity. This career-focused reading examines seven strategic business aspects: Current Situation (your present professional position and workplace energy), Strengths (your professional assets, talents, and competitive advantages), Weaknesses (areas needing development, skill gaps, or limiting beliefs), Opportunities (potential growth paths, new ventures, or doors opening), Threats (obstacles, competition, or external challenges), Advice (actionable guidance for navigating your career path), and Outcome (where your professional journey is heading if you follow the guidance). Perfect for career coaching platforms, professional development apps, business consulting tools, job search websites, entrepreneurship platforms, and executive coaching services. Use for career transitions, job offers evaluation, promotion decisions, starting a business, workplace conflicts, finding your calling, or strategic career planning. Combines traditional tarot wisdom with modern SWOT business analysis for practical professional insight. Ideal for employees, entrepreneurs, freelancers, career changers, and anyone seeking vocational direction.
|
|
2204
|
+
*/
|
|
2205
|
+
castCareerSpread(options) {
|
|
2206
|
+
return (options.client ?? this.client).post({
|
|
2253
2207
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2254
|
-
url: "/
|
|
2255
|
-
...options
|
|
2208
|
+
url: "/tarot/spreads/career",
|
|
2209
|
+
...options,
|
|
2210
|
+
headers: {
|
|
2211
|
+
"Content-Type": "application/json",
|
|
2212
|
+
...options.headers
|
|
2213
|
+
}
|
|
2256
2214
|
});
|
|
2257
2215
|
}
|
|
2258
2216
|
/**
|
|
2259
|
-
*
|
|
2217
|
+
* Custom Spread Builder
|
|
2260
2218
|
*
|
|
2261
|
-
*
|
|
2219
|
+
* Build and perform your own custom tarot spread with personalized positions and interpretations (1-10 cards). This flexible endpoint lets you create unique spread layouts for any purpose - define your own position names, meanings, and card count to match your specific needs or therapeutic framework. Perfect for therapists using tarot in counseling, coaches creating signature spreads, app developers building custom reading features, spiritual practitioners with proprietary methods, or anyone wanting to design specialized layouts beyond traditional spreads. Create spreads for specific themes like chakra readings (7 cards), lunar phases (8 cards), elements (4 cards), goals setting (any count), shadow work, inner child healing, decision matrices, or creative problem-solving. Each position requires a name and interpretation - you define what each card position represents in your reading. The API draws the exact number of cards you specify and maps them to your custom positions. No pre-generated summary provided - you interpret the reading based on your framework. Ideal for innovative tarot apps, therapeutic tools, personal development platforms, spiritual coaching services, or experimental divination methods. Maximum 10 positions to maintain reading clarity and practical interpretation time.
|
|
2262
2220
|
*/
|
|
2263
|
-
|
|
2264
|
-
return (options
|
|
2221
|
+
castCustomSpread(options) {
|
|
2222
|
+
return (options.client ?? this.client).post({
|
|
2265
2223
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2266
|
-
url: "/
|
|
2267
|
-
...options
|
|
2224
|
+
url: "/tarot/spreads/custom",
|
|
2225
|
+
...options,
|
|
2226
|
+
headers: {
|
|
2227
|
+
"Content-Type": "application/json",
|
|
2228
|
+
...options.headers
|
|
2229
|
+
}
|
|
2268
2230
|
});
|
|
2269
2231
|
}
|
|
2232
|
+
};
|
|
2233
|
+
var Biorhythm = class extends HeyApiClient {
|
|
2270
2234
|
/**
|
|
2271
|
-
* Get
|
|
2235
|
+
* Get biorhythm reading - Complete cycle analysis for any date
|
|
2272
2236
|
*
|
|
2273
|
-
*
|
|
2237
|
+
* Calculate a complete biorhythm reading for a given birth date and target date. Returns all 10 cycle values (physical, emotional, intellectual, intuitive, aesthetic, awareness, spiritual, passion, mastery, wisdom), phase detection with 8 distinct states, energy rating (1-10), overall phase assessment, editorial-grade interpretation, actionable advice, and critical day alerts. Perfect for wellness apps, dating platforms, productivity tools, and AI chatbot integrations that need structured biorhythm data.
|
|
2274
2238
|
*/
|
|
2275
|
-
|
|
2276
|
-
return (options
|
|
2239
|
+
getReading(options) {
|
|
2240
|
+
return (options?.client ?? this.client).post({
|
|
2277
2241
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2278
|
-
url: "/
|
|
2279
|
-
...options
|
|
2242
|
+
url: "/biorhythm/reading",
|
|
2243
|
+
...options,
|
|
2244
|
+
headers: {
|
|
2245
|
+
"Content-Type": "application/json",
|
|
2246
|
+
...options?.headers
|
|
2247
|
+
}
|
|
2280
2248
|
});
|
|
2281
2249
|
}
|
|
2282
2250
|
/**
|
|
2283
|
-
* Get
|
|
2251
|
+
* Get biorhythm forecast - Multi-day cycle predictions with best and worst days
|
|
2284
2252
|
*
|
|
2285
|
-
*
|
|
2253
|
+
* Generate a biorhythm forecast for a date range up to 90 days. Returns daily cycle values for physical, emotional, intellectual, and intuitive cycles, daily energy ratings, critical day identification, and a summary with best day, worst day, average energy, and period-level guidance. Ideal for wellness apps, productivity planners, scheduling tools, and calendar integrations that need forward-looking biorhythm data.
|
|
2286
2254
|
*/
|
|
2287
|
-
|
|
2255
|
+
getForecast(options) {
|
|
2288
2256
|
return (options?.client ?? this.client).post({
|
|
2289
2257
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2290
|
-
url: "/
|
|
2258
|
+
url: "/biorhythm/forecast",
|
|
2291
2259
|
...options,
|
|
2292
2260
|
headers: {
|
|
2293
2261
|
"Content-Type": "application/json",
|
|
@@ -2295,53 +2263,63 @@ var Dreams = class extends HeyApiClient {
|
|
|
2295
2263
|
}
|
|
2296
2264
|
});
|
|
2297
2265
|
}
|
|
2298
|
-
};
|
|
2299
|
-
var AngelNumbers = class extends HeyApiClient {
|
|
2300
2266
|
/**
|
|
2301
|
-
*
|
|
2267
|
+
* Find critical days - Zero crossing detection for any date range
|
|
2302
2268
|
*
|
|
2303
|
-
*
|
|
2269
|
+
* Find all critical days (zero crossings) within a date range up to 180 days. Returns each critical day with cycle name, period, direction (ascending or descending), severity (single, double, or triple), and advisory text. Highlights rare double critical days where two primary cycles cross zero simultaneously and extremely rare triple critical days where all three primary cycles cross zero on the same date. Ideal for calendar integrations, push notification systems, alert engines, and wellness scheduling tools.
|
|
2304
2270
|
*/
|
|
2305
|
-
|
|
2306
|
-
return (options?.client ?? this.client).
|
|
2271
|
+
getCriticalDays(options) {
|
|
2272
|
+
return (options?.client ?? this.client).post({
|
|
2307
2273
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2308
|
-
url: "/
|
|
2309
|
-
...options
|
|
2274
|
+
url: "/biorhythm/critical-days",
|
|
2275
|
+
...options,
|
|
2276
|
+
headers: {
|
|
2277
|
+
"Content-Type": "application/json",
|
|
2278
|
+
...options?.headers
|
|
2279
|
+
}
|
|
2310
2280
|
});
|
|
2311
2281
|
}
|
|
2312
2282
|
/**
|
|
2313
|
-
*
|
|
2283
|
+
* Calculate compatibility - Biorhythm alignment between two people
|
|
2314
2284
|
*
|
|
2315
|
-
*
|
|
2285
|
+
* Calculate biorhythm compatibility between two people by overlaying their cycle profiles on a target date. Returns per-cycle alignment scores (0-100) for physical, emotional, and intellectual cycles, an overall compatibility score, relationship rating, strengths, challenges, practical advice, and a daily sync snapshot showing the absolute difference in each primary cycle. Perfect for dating apps, relationship platforms, team-building tools, and couples coaching applications.
|
|
2316
2286
|
*/
|
|
2317
|
-
|
|
2318
|
-
return (options
|
|
2287
|
+
calculateBioCompatibility(options) {
|
|
2288
|
+
return (options?.client ?? this.client).post({
|
|
2319
2289
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2320
|
-
url: "/
|
|
2321
|
-
...options
|
|
2290
|
+
url: "/biorhythm/compatibility",
|
|
2291
|
+
...options,
|
|
2292
|
+
headers: {
|
|
2293
|
+
"Content-Type": "application/json",
|
|
2294
|
+
...options?.headers
|
|
2295
|
+
}
|
|
2322
2296
|
});
|
|
2323
2297
|
}
|
|
2324
2298
|
/**
|
|
2325
|
-
*
|
|
2299
|
+
* Get phase info - Lightweight cycle status for dashboards and widgets
|
|
2326
2300
|
*
|
|
2327
|
-
*
|
|
2301
|
+
* Get current phase information for all 10 biorhythm cycles without the full interpretation payload. Returns value, phase name, phase label, day position within cycle, cycle period, days until next critical crossing, and short-term trend for each cycle. Includes a compact summary string. Designed as a lightweight endpoint for dashboards, widgets, status bars, and quick-check interfaces that need biorhythm phase data without editorial text.
|
|
2328
2302
|
*/
|
|
2329
|
-
|
|
2330
|
-
return (options
|
|
2303
|
+
getPhases(options) {
|
|
2304
|
+
return (options?.client ?? this.client).post({
|
|
2331
2305
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2332
|
-
url: "/
|
|
2333
|
-
...options
|
|
2306
|
+
url: "/biorhythm/phases",
|
|
2307
|
+
...options,
|
|
2308
|
+
headers: {
|
|
2309
|
+
"Content-Type": "application/json",
|
|
2310
|
+
...options?.headers
|
|
2311
|
+
}
|
|
2334
2312
|
});
|
|
2335
2313
|
}
|
|
2336
2314
|
/**
|
|
2337
|
-
*
|
|
2315
|
+
* Get daily biorhythm - Seeded reading for daily check-in features
|
|
2338
2316
|
*
|
|
2339
|
-
* Get
|
|
2317
|
+
* Get a daily biorhythm reading with seeded randomness for consistent "biorhythm of the day" features. Same seed and same date always produce the same reading, perfect for daily push notifications, morning briefings, and wellness app check-ins. Returns energy rating, overall phase, a spotlight on one featured cycle, quick-read values for all three primary cycles, a daily message, and actionable advice. The spotlight cycle is deterministically selected by the seed, creating variety across users while maintaining consistency for each individual.
|
|
2340
2318
|
*/
|
|
2341
|
-
|
|
2319
|
+
getDailyBiorhythm(options) {
|
|
2342
2320
|
return (options?.client ?? this.client).post({
|
|
2343
2321
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2344
|
-
url: "/
|
|
2322
|
+
url: "/biorhythm/daily",
|
|
2345
2323
|
...options,
|
|
2346
2324
|
headers: {
|
|
2347
2325
|
"Content-Type": "application/json",
|
|
@@ -2618,80 +2596,64 @@ var Crystals = class extends HeyApiClient {
|
|
|
2618
2596
|
});
|
|
2619
2597
|
}
|
|
2620
2598
|
};
|
|
2621
|
-
var
|
|
2599
|
+
var Dreams = class extends HeyApiClient {
|
|
2622
2600
|
/**
|
|
2623
|
-
*
|
|
2601
|
+
* List and search dream symbols
|
|
2624
2602
|
*
|
|
2625
|
-
*
|
|
2603
|
+
* Browse and search our complete dream interpretation dictionary containing 2,000+ dream symbols with psychological meanings. Find dream meanings for animals (snake dreams, spider dreams, dog dreams), common scenarios (falling dreams, flying dreams, being chased, drowning), people (dreams about mother, father, baby, ex), objects (car, house, water, fire), emotions (fear, anxiety, love), body parts (teeth falling out, hair, eyes), colors, numbers, and abstract concepts. Filter by starting letter for A-Z navigation or search by keyword to find what your dreams mean.
|
|
2626
2604
|
*/
|
|
2627
|
-
|
|
2628
|
-
return (options?.client ?? this.client).
|
|
2605
|
+
searchDreamSymbols(options) {
|
|
2606
|
+
return (options?.client ?? this.client).get({
|
|
2629
2607
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2630
|
-
url: "/
|
|
2631
|
-
...options
|
|
2632
|
-
headers: {
|
|
2633
|
-
"Content-Type": "application/json",
|
|
2634
|
-
...options?.headers
|
|
2635
|
-
}
|
|
2608
|
+
url: "/dreams/symbols",
|
|
2609
|
+
...options
|
|
2636
2610
|
});
|
|
2637
2611
|
}
|
|
2638
2612
|
/**
|
|
2639
|
-
* Get
|
|
2613
|
+
* Get random dream symbols
|
|
2640
2614
|
*
|
|
2641
|
-
*
|
|
2615
|
+
* Discover random dream symbols and their interpretations for daily dream insights and exploration. Each request returns different symbols from the 2,000+ dream meaning database - perfect for dream of the day features, dream journaling prompts, meditation on subconscious themes, or exploring what different dreams mean. Get one or multiple random dream interpretations with full psychological meanings.
|
|
2642
2616
|
*/
|
|
2643
|
-
|
|
2644
|
-
return (options?.client ?? this.client).
|
|
2617
|
+
getRandomSymbols(options) {
|
|
2618
|
+
return (options?.client ?? this.client).get({
|
|
2645
2619
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2646
|
-
url: "/
|
|
2647
|
-
...options
|
|
2648
|
-
headers: {
|
|
2649
|
-
"Content-Type": "application/json",
|
|
2650
|
-
...options?.headers
|
|
2651
|
-
}
|
|
2620
|
+
url: "/dreams/symbols/random",
|
|
2621
|
+
...options
|
|
2652
2622
|
});
|
|
2653
2623
|
}
|
|
2654
2624
|
/**
|
|
2655
|
-
*
|
|
2625
|
+
* Get symbol counts by letter
|
|
2656
2626
|
*
|
|
2657
|
-
*
|
|
2627
|
+
* Get the count of dream symbols available for each letter A-Z. Build alphabetical dream dictionary navigation to help users browse dream interpretations by letter - from abandonment dreams to zodiac dreams. See how many dream meanings exist for each starting letter.
|
|
2658
2628
|
*/
|
|
2659
|
-
|
|
2660
|
-
return (options?.client ?? this.client).
|
|
2629
|
+
getSymbolLetterCounts(options) {
|
|
2630
|
+
return (options?.client ?? this.client).get({
|
|
2661
2631
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2662
|
-
url: "/
|
|
2663
|
-
...options
|
|
2664
|
-
headers: {
|
|
2665
|
-
"Content-Type": "application/json",
|
|
2666
|
-
...options?.headers
|
|
2667
|
-
}
|
|
2632
|
+
url: "/dreams/symbols/letters",
|
|
2633
|
+
...options
|
|
2668
2634
|
});
|
|
2669
2635
|
}
|
|
2670
2636
|
/**
|
|
2671
|
-
*
|
|
2637
|
+
* Get dream symbol details
|
|
2672
2638
|
*
|
|
2673
|
-
*
|
|
2639
|
+
* Get the complete dream interpretation for a specific symbol. Understand what your dream means with detailed psychological analysis covering subconscious symbolism, emotional significance, and connections to your waking life. Covers all major dream themes: snake dreams (hidden fears, transformation), falling dreams (loss of control, anxiety), water dreams (emotions, cleansing), death dreams (endings, transformation), teeth falling out (self-image, communication anxiety), being chased (avoidance, confronting fears), flying dreams (freedom, ambition), and thousands more dream meanings.
|
|
2674
2640
|
*/
|
|
2675
|
-
|
|
2676
|
-
return (options
|
|
2641
|
+
getDreamSymbol(options) {
|
|
2642
|
+
return (options.client ?? this.client).get({
|
|
2677
2643
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2678
|
-
url: "/
|
|
2679
|
-
...options
|
|
2680
|
-
headers: {
|
|
2681
|
-
"Content-Type": "application/json",
|
|
2682
|
-
...options?.headers
|
|
2683
|
-
}
|
|
2644
|
+
url: "/dreams/symbols/{id}",
|
|
2645
|
+
...options
|
|
2684
2646
|
});
|
|
2685
2647
|
}
|
|
2686
2648
|
/**
|
|
2687
|
-
* Get
|
|
2649
|
+
* Get daily dream symbol
|
|
2688
2650
|
*
|
|
2689
|
-
*
|
|
2651
|
+
* Receive a single dream symbol for daily reflection and subconscious exploration. Uses seeded randomness so the same seed gets the same symbol on the same day, perfect for "Dream Symbol of the Day" features. Provide a seed (userId, email hash, session token) for reproducible consistency, or omit for date-based daily symbols. Returns the symbol with full psychological interpretation. Great for dream journal apps, wellness platforms, morning ritual apps, and meditation tools.
|
|
2690
2652
|
*/
|
|
2691
|
-
|
|
2653
|
+
getDailyDreamSymbol(options) {
|
|
2692
2654
|
return (options?.client ?? this.client).post({
|
|
2693
2655
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2694
|
-
url: "/
|
|
2656
|
+
url: "/dreams/daily",
|
|
2695
2657
|
...options,
|
|
2696
2658
|
headers: {
|
|
2697
2659
|
"Content-Type": "application/json",
|
|
@@ -2699,15 +2661,53 @@ var Biorhythm = class extends HeyApiClient {
|
|
|
2699
2661
|
}
|
|
2700
2662
|
});
|
|
2701
2663
|
}
|
|
2664
|
+
};
|
|
2665
|
+
var AngelNumbers = class extends HeyApiClient {
|
|
2702
2666
|
/**
|
|
2703
|
-
*
|
|
2667
|
+
* List All Angel Numbers
|
|
2704
2668
|
*
|
|
2705
|
-
*
|
|
2669
|
+
* Retrieve the complete database of angel numbers with summary information. Returns all 43 angel numbers covering root digits (0-9), master numbers (11, 22, 33), double digits (44-99), triple repeating (111-999), quad repeating (1111-9999), mirror patterns (1212), and sequential numbers (1234). Supports optional type filtering. Perfect for building angel number explorer apps, reference guides, and spiritual databases.
|
|
2706
2670
|
*/
|
|
2707
|
-
|
|
2671
|
+
listAngelNumbers(options) {
|
|
2672
|
+
return (options?.client ?? this.client).get({
|
|
2673
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2674
|
+
url: "/angel-numbers/numbers",
|
|
2675
|
+
...options
|
|
2676
|
+
});
|
|
2677
|
+
}
|
|
2678
|
+
/**
|
|
2679
|
+
* Get Angel Number Meaning
|
|
2680
|
+
*
|
|
2681
|
+
* 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 43 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.
|
|
2682
|
+
*/
|
|
2683
|
+
getAngelNumber(options) {
|
|
2684
|
+
return (options.client ?? this.client).get({
|
|
2685
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2686
|
+
url: "/angel-numbers/numbers/{number}",
|
|
2687
|
+
...options
|
|
2688
|
+
});
|
|
2689
|
+
}
|
|
2690
|
+
/**
|
|
2691
|
+
* Analyze Any Number Sequence
|
|
2692
|
+
*
|
|
2693
|
+
* 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.
|
|
2694
|
+
*/
|
|
2695
|
+
analyzeNumberSequence(options) {
|
|
2696
|
+
return (options.client ?? this.client).get({
|
|
2697
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2698
|
+
url: "/angel-numbers/lookup",
|
|
2699
|
+
...options
|
|
2700
|
+
});
|
|
2701
|
+
}
|
|
2702
|
+
/**
|
|
2703
|
+
* Daily Angel Number
|
|
2704
|
+
*
|
|
2705
|
+
* 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.
|
|
2706
|
+
*/
|
|
2707
|
+
getDailyAngelNumber(options) {
|
|
2708
2708
|
return (options?.client ?? this.client).post({
|
|
2709
2709
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
2710
|
-
url: "/
|
|
2710
|
+
url: "/angel-numbers/daily",
|
|
2711
2711
|
...options,
|
|
2712
2712
|
headers: {
|
|
2713
2713
|
"Content-Type": "application/json",
|
|
@@ -2782,21 +2782,17 @@ var Roxy = class _Roxy extends HeyApiClient {
|
|
|
2782
2782
|
get vedicAstrology() {
|
|
2783
2783
|
return this._vedicAstrology ??= new VedicAstrology({ client: this.client });
|
|
2784
2784
|
}
|
|
2785
|
-
_tarot;
|
|
2786
|
-
get tarot() {
|
|
2787
|
-
return this._tarot ??= new Tarot({ client: this.client });
|
|
2788
|
-
}
|
|
2789
2785
|
_numerology;
|
|
2790
2786
|
get numerology() {
|
|
2791
2787
|
return this._numerology ??= new Numerology({ client: this.client });
|
|
2792
2788
|
}
|
|
2793
|
-
|
|
2794
|
-
get
|
|
2795
|
-
return this.
|
|
2789
|
+
_tarot;
|
|
2790
|
+
get tarot() {
|
|
2791
|
+
return this._tarot ??= new Tarot({ client: this.client });
|
|
2796
2792
|
}
|
|
2797
|
-
|
|
2798
|
-
get
|
|
2799
|
-
return this.
|
|
2793
|
+
_biorhythm;
|
|
2794
|
+
get biorhythm() {
|
|
2795
|
+
return this._biorhythm ??= new Biorhythm({ client: this.client });
|
|
2800
2796
|
}
|
|
2801
2797
|
_iching;
|
|
2802
2798
|
get iching() {
|
|
@@ -2806,9 +2802,13 @@ var Roxy = class _Roxy extends HeyApiClient {
|
|
|
2806
2802
|
get crystals() {
|
|
2807
2803
|
return this._crystals ??= new Crystals({ client: this.client });
|
|
2808
2804
|
}
|
|
2809
|
-
|
|
2810
|
-
get
|
|
2811
|
-
return this.
|
|
2805
|
+
_dreams;
|
|
2806
|
+
get dreams() {
|
|
2807
|
+
return this._dreams ??= new Dreams({ client: this.client });
|
|
2808
|
+
}
|
|
2809
|
+
_angelNumbers;
|
|
2810
|
+
get angelNumbers() {
|
|
2811
|
+
return this._angelNumbers ??= new AngelNumbers({ client: this.client });
|
|
2812
2812
|
}
|
|
2813
2813
|
_location;
|
|
2814
2814
|
get location() {
|
|
@@ -2821,7 +2821,7 @@ var Roxy = class _Roxy extends HeyApiClient {
|
|
|
2821
2821
|
};
|
|
2822
2822
|
|
|
2823
2823
|
// src/version.ts
|
|
2824
|
-
var VERSION = "1.2.
|
|
2824
|
+
var VERSION = "1.2.15";
|
|
2825
2825
|
|
|
2826
2826
|
// src/factory.ts
|
|
2827
2827
|
function createRoxy(auth) {
|