@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.js
CHANGED
|
@@ -987,160 +987,6 @@ var VedicAstrology = class extends HeyApiClient {
|
|
|
987
987
|
});
|
|
988
988
|
}
|
|
989
989
|
};
|
|
990
|
-
var Tarot = class extends HeyApiClient {
|
|
991
|
-
/**
|
|
992
|
-
* List all 78 tarot cards
|
|
993
|
-
*
|
|
994
|
-
* 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.
|
|
995
|
-
*/
|
|
996
|
-
listCards(options) {
|
|
997
|
-
return (options?.client ?? this.client).get({
|
|
998
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
999
|
-
url: "/tarot/cards",
|
|
1000
|
-
...options
|
|
1001
|
-
});
|
|
1002
|
-
}
|
|
1003
|
-
/**
|
|
1004
|
-
* Get detailed tarot card information
|
|
1005
|
-
*
|
|
1006
|
-
* 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.
|
|
1007
|
-
*/
|
|
1008
|
-
getCard(options) {
|
|
1009
|
-
return (options.client ?? this.client).get({
|
|
1010
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1011
|
-
url: "/tarot/cards/{id}",
|
|
1012
|
-
...options
|
|
1013
|
-
});
|
|
1014
|
-
}
|
|
1015
|
-
/**
|
|
1016
|
-
* Draw random tarot cards with reproducible results
|
|
1017
|
-
*
|
|
1018
|
-
* 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).
|
|
1019
|
-
*/
|
|
1020
|
-
drawCards(options) {
|
|
1021
|
-
return (options.client ?? this.client).post({
|
|
1022
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1023
|
-
url: "/tarot/draw",
|
|
1024
|
-
...options,
|
|
1025
|
-
headers: {
|
|
1026
|
-
"Content-Type": "application/json",
|
|
1027
|
-
...options.headers
|
|
1028
|
-
}
|
|
1029
|
-
});
|
|
1030
|
-
}
|
|
1031
|
-
/**
|
|
1032
|
-
* Get daily tarot card reading
|
|
1033
|
-
*
|
|
1034
|
-
* 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.
|
|
1035
|
-
*/
|
|
1036
|
-
getDailyCard(options) {
|
|
1037
|
-
return (options?.client ?? this.client).post({
|
|
1038
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1039
|
-
url: "/tarot/daily",
|
|
1040
|
-
...options,
|
|
1041
|
-
headers: {
|
|
1042
|
-
"Content-Type": "application/json",
|
|
1043
|
-
...options?.headers
|
|
1044
|
-
}
|
|
1045
|
-
});
|
|
1046
|
-
}
|
|
1047
|
-
/**
|
|
1048
|
-
* Get yes/no answer to your question
|
|
1049
|
-
*
|
|
1050
|
-
* 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.
|
|
1051
|
-
*/
|
|
1052
|
-
castYesNo(options) {
|
|
1053
|
-
return (options.client ?? this.client).post({
|
|
1054
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1055
|
-
url: "/tarot/yes-no",
|
|
1056
|
-
...options,
|
|
1057
|
-
headers: {
|
|
1058
|
-
"Content-Type": "application/json",
|
|
1059
|
-
...options.headers
|
|
1060
|
-
}
|
|
1061
|
-
});
|
|
1062
|
-
}
|
|
1063
|
-
/**
|
|
1064
|
-
* Three-Card Spread: Past, Present, Future
|
|
1065
|
-
*
|
|
1066
|
-
* 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.
|
|
1067
|
-
*/
|
|
1068
|
-
castThreeCard(options) {
|
|
1069
|
-
return (options.client ?? this.client).post({
|
|
1070
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1071
|
-
url: "/tarot/spreads/three-card",
|
|
1072
|
-
...options,
|
|
1073
|
-
headers: {
|
|
1074
|
-
"Content-Type": "application/json",
|
|
1075
|
-
...options.headers
|
|
1076
|
-
}
|
|
1077
|
-
});
|
|
1078
|
-
}
|
|
1079
|
-
/**
|
|
1080
|
-
* Celtic Cross Spread (10 cards)
|
|
1081
|
-
*
|
|
1082
|
-
* 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.
|
|
1083
|
-
*/
|
|
1084
|
-
castCelticCross(options) {
|
|
1085
|
-
return (options.client ?? this.client).post({
|
|
1086
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1087
|
-
url: "/tarot/spreads/celtic-cross",
|
|
1088
|
-
...options,
|
|
1089
|
-
headers: {
|
|
1090
|
-
"Content-Type": "application/json",
|
|
1091
|
-
...options.headers
|
|
1092
|
-
}
|
|
1093
|
-
});
|
|
1094
|
-
}
|
|
1095
|
-
/**
|
|
1096
|
-
* Love Spread (5 cards)
|
|
1097
|
-
*
|
|
1098
|
-
* 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.
|
|
1099
|
-
*/
|
|
1100
|
-
castLoveSpread(options) {
|
|
1101
|
-
return (options.client ?? this.client).post({
|
|
1102
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1103
|
-
url: "/tarot/spreads/love",
|
|
1104
|
-
...options,
|
|
1105
|
-
headers: {
|
|
1106
|
-
"Content-Type": "application/json",
|
|
1107
|
-
...options.headers
|
|
1108
|
-
}
|
|
1109
|
-
});
|
|
1110
|
-
}
|
|
1111
|
-
/**
|
|
1112
|
-
* Career Spread (7 cards)
|
|
1113
|
-
*
|
|
1114
|
-
* 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.
|
|
1115
|
-
*/
|
|
1116
|
-
castCareerSpread(options) {
|
|
1117
|
-
return (options.client ?? this.client).post({
|
|
1118
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1119
|
-
url: "/tarot/spreads/career",
|
|
1120
|
-
...options,
|
|
1121
|
-
headers: {
|
|
1122
|
-
"Content-Type": "application/json",
|
|
1123
|
-
...options.headers
|
|
1124
|
-
}
|
|
1125
|
-
});
|
|
1126
|
-
}
|
|
1127
|
-
/**
|
|
1128
|
-
* Custom Spread Builder
|
|
1129
|
-
*
|
|
1130
|
-
* 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.
|
|
1131
|
-
*/
|
|
1132
|
-
castCustomSpread(options) {
|
|
1133
|
-
return (options.client ?? this.client).post({
|
|
1134
|
-
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1135
|
-
url: "/tarot/spreads/custom",
|
|
1136
|
-
...options,
|
|
1137
|
-
headers: {
|
|
1138
|
-
"Content-Type": "application/json",
|
|
1139
|
-
...options.headers
|
|
1140
|
-
}
|
|
1141
|
-
});
|
|
1142
|
-
}
|
|
1143
|
-
};
|
|
1144
990
|
var Numerology = class extends HeyApiClient {
|
|
1145
991
|
/**
|
|
1146
992
|
* Calculate Life Path number - Most important numerology calculation
|
|
@@ -1395,64 +1241,186 @@ var Numerology = class extends HeyApiClient {
|
|
|
1395
1241
|
});
|
|
1396
1242
|
}
|
|
1397
1243
|
};
|
|
1398
|
-
var
|
|
1244
|
+
var Tarot = class extends HeyApiClient {
|
|
1399
1245
|
/**
|
|
1400
|
-
* List
|
|
1246
|
+
* List all 78 tarot cards
|
|
1401
1247
|
*
|
|
1402
|
-
*
|
|
1248
|
+
* 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.
|
|
1403
1249
|
*/
|
|
1404
|
-
|
|
1250
|
+
listCards(options) {
|
|
1405
1251
|
return (options?.client ?? this.client).get({
|
|
1406
1252
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1407
|
-
url: "/
|
|
1253
|
+
url: "/tarot/cards",
|
|
1408
1254
|
...options
|
|
1409
1255
|
});
|
|
1410
1256
|
}
|
|
1411
1257
|
/**
|
|
1412
|
-
* Get
|
|
1258
|
+
* Get detailed tarot card information
|
|
1413
1259
|
*
|
|
1414
|
-
*
|
|
1260
|
+
* 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.
|
|
1415
1261
|
*/
|
|
1416
|
-
|
|
1417
|
-
return (options
|
|
1262
|
+
getCard(options) {
|
|
1263
|
+
return (options.client ?? this.client).get({
|
|
1264
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1265
|
+
url: "/tarot/cards/{id}",
|
|
1266
|
+
...options
|
|
1267
|
+
});
|
|
1268
|
+
}
|
|
1269
|
+
/**
|
|
1270
|
+
* Draw random tarot cards with reproducible results
|
|
1271
|
+
*
|
|
1272
|
+
* 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).
|
|
1273
|
+
*/
|
|
1274
|
+
drawCards(options) {
|
|
1275
|
+
return (options.client ?? this.client).post({
|
|
1276
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1277
|
+
url: "/tarot/draw",
|
|
1278
|
+
...options,
|
|
1279
|
+
headers: {
|
|
1280
|
+
"Content-Type": "application/json",
|
|
1281
|
+
...options.headers
|
|
1282
|
+
}
|
|
1283
|
+
});
|
|
1284
|
+
}
|
|
1285
|
+
/**
|
|
1286
|
+
* Get daily tarot card reading
|
|
1287
|
+
*
|
|
1288
|
+
* 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.
|
|
1289
|
+
*/
|
|
1290
|
+
getDailyCard(options) {
|
|
1291
|
+
return (options?.client ?? this.client).post({
|
|
1292
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1293
|
+
url: "/tarot/daily",
|
|
1294
|
+
...options,
|
|
1295
|
+
headers: {
|
|
1296
|
+
"Content-Type": "application/json",
|
|
1297
|
+
...options?.headers
|
|
1298
|
+
}
|
|
1299
|
+
});
|
|
1300
|
+
}
|
|
1301
|
+
/**
|
|
1302
|
+
* Get yes/no answer to your question
|
|
1303
|
+
*
|
|
1304
|
+
* 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.
|
|
1305
|
+
*/
|
|
1306
|
+
castYesNo(options) {
|
|
1307
|
+
return (options.client ?? this.client).post({
|
|
1308
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1309
|
+
url: "/tarot/yes-no",
|
|
1310
|
+
...options,
|
|
1311
|
+
headers: {
|
|
1312
|
+
"Content-Type": "application/json",
|
|
1313
|
+
...options.headers
|
|
1314
|
+
}
|
|
1315
|
+
});
|
|
1316
|
+
}
|
|
1317
|
+
/**
|
|
1318
|
+
* Three-Card Spread: Past, Present, Future
|
|
1319
|
+
*
|
|
1320
|
+
* 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.
|
|
1321
|
+
*/
|
|
1322
|
+
castThreeCard(options) {
|
|
1323
|
+
return (options.client ?? this.client).post({
|
|
1324
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1325
|
+
url: "/tarot/spreads/three-card",
|
|
1326
|
+
...options,
|
|
1327
|
+
headers: {
|
|
1328
|
+
"Content-Type": "application/json",
|
|
1329
|
+
...options.headers
|
|
1330
|
+
}
|
|
1331
|
+
});
|
|
1332
|
+
}
|
|
1333
|
+
/**
|
|
1334
|
+
* Celtic Cross Spread (10 cards)
|
|
1335
|
+
*
|
|
1336
|
+
* 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.
|
|
1337
|
+
*/
|
|
1338
|
+
castCelticCross(options) {
|
|
1339
|
+
return (options.client ?? this.client).post({
|
|
1340
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1341
|
+
url: "/tarot/spreads/celtic-cross",
|
|
1342
|
+
...options,
|
|
1343
|
+
headers: {
|
|
1344
|
+
"Content-Type": "application/json",
|
|
1345
|
+
...options.headers
|
|
1346
|
+
}
|
|
1347
|
+
});
|
|
1348
|
+
}
|
|
1349
|
+
/**
|
|
1350
|
+
* Love Spread (5 cards)
|
|
1351
|
+
*
|
|
1352
|
+
* 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.
|
|
1353
|
+
*/
|
|
1354
|
+
castLoveSpread(options) {
|
|
1355
|
+
return (options.client ?? this.client).post({
|
|
1356
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1357
|
+
url: "/tarot/spreads/love",
|
|
1358
|
+
...options,
|
|
1359
|
+
headers: {
|
|
1360
|
+
"Content-Type": "application/json",
|
|
1361
|
+
...options.headers
|
|
1362
|
+
}
|
|
1363
|
+
});
|
|
1364
|
+
}
|
|
1365
|
+
/**
|
|
1366
|
+
* Career Spread (7 cards)
|
|
1367
|
+
*
|
|
1368
|
+
* 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.
|
|
1369
|
+
*/
|
|
1370
|
+
castCareerSpread(options) {
|
|
1371
|
+
return (options.client ?? this.client).post({
|
|
1418
1372
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1419
|
-
url: "/
|
|
1420
|
-
...options
|
|
1373
|
+
url: "/tarot/spreads/career",
|
|
1374
|
+
...options,
|
|
1375
|
+
headers: {
|
|
1376
|
+
"Content-Type": "application/json",
|
|
1377
|
+
...options.headers
|
|
1378
|
+
}
|
|
1421
1379
|
});
|
|
1422
1380
|
}
|
|
1423
1381
|
/**
|
|
1424
|
-
*
|
|
1382
|
+
* Custom Spread Builder
|
|
1425
1383
|
*
|
|
1426
|
-
*
|
|
1384
|
+
* 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.
|
|
1427
1385
|
*/
|
|
1428
|
-
|
|
1429
|
-
return (options
|
|
1386
|
+
castCustomSpread(options) {
|
|
1387
|
+
return (options.client ?? this.client).post({
|
|
1430
1388
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1431
|
-
url: "/
|
|
1432
|
-
...options
|
|
1389
|
+
url: "/tarot/spreads/custom",
|
|
1390
|
+
...options,
|
|
1391
|
+
headers: {
|
|
1392
|
+
"Content-Type": "application/json",
|
|
1393
|
+
...options.headers
|
|
1394
|
+
}
|
|
1433
1395
|
});
|
|
1434
1396
|
}
|
|
1397
|
+
};
|
|
1398
|
+
var Biorhythm = class extends HeyApiClient {
|
|
1435
1399
|
/**
|
|
1436
|
-
* Get
|
|
1400
|
+
* Get biorhythm reading - Complete cycle analysis for any date
|
|
1437
1401
|
*
|
|
1438
|
-
*
|
|
1402
|
+
* 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.
|
|
1439
1403
|
*/
|
|
1440
|
-
|
|
1441
|
-
return (options
|
|
1404
|
+
getReading(options) {
|
|
1405
|
+
return (options?.client ?? this.client).post({
|
|
1442
1406
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1443
|
-
url: "/
|
|
1444
|
-
...options
|
|
1407
|
+
url: "/biorhythm/reading",
|
|
1408
|
+
...options,
|
|
1409
|
+
headers: {
|
|
1410
|
+
"Content-Type": "application/json",
|
|
1411
|
+
...options?.headers
|
|
1412
|
+
}
|
|
1445
1413
|
});
|
|
1446
1414
|
}
|
|
1447
1415
|
/**
|
|
1448
|
-
* Get
|
|
1416
|
+
* Get biorhythm forecast - Multi-day cycle predictions with best and worst days
|
|
1449
1417
|
*
|
|
1450
|
-
*
|
|
1418
|
+
* 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.
|
|
1451
1419
|
*/
|
|
1452
|
-
|
|
1420
|
+
getForecast(options) {
|
|
1453
1421
|
return (options?.client ?? this.client).post({
|
|
1454
1422
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1455
|
-
url: "/
|
|
1423
|
+
url: "/biorhythm/forecast",
|
|
1456
1424
|
...options,
|
|
1457
1425
|
headers: {
|
|
1458
1426
|
"Content-Type": "application/json",
|
|
@@ -1460,53 +1428,63 @@ var Dreams = class extends HeyApiClient {
|
|
|
1460
1428
|
}
|
|
1461
1429
|
});
|
|
1462
1430
|
}
|
|
1463
|
-
};
|
|
1464
|
-
var AngelNumbers = class extends HeyApiClient {
|
|
1465
1431
|
/**
|
|
1466
|
-
*
|
|
1432
|
+
* Find critical days - Zero crossing detection for any date range
|
|
1467
1433
|
*
|
|
1468
|
-
*
|
|
1434
|
+
* 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.
|
|
1469
1435
|
*/
|
|
1470
|
-
|
|
1471
|
-
return (options?.client ?? this.client).
|
|
1436
|
+
getCriticalDays(options) {
|
|
1437
|
+
return (options?.client ?? this.client).post({
|
|
1472
1438
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1473
|
-
url: "/
|
|
1474
|
-
...options
|
|
1439
|
+
url: "/biorhythm/critical-days",
|
|
1440
|
+
...options,
|
|
1441
|
+
headers: {
|
|
1442
|
+
"Content-Type": "application/json",
|
|
1443
|
+
...options?.headers
|
|
1444
|
+
}
|
|
1475
1445
|
});
|
|
1476
1446
|
}
|
|
1477
1447
|
/**
|
|
1478
|
-
*
|
|
1448
|
+
* Calculate compatibility - Biorhythm alignment between two people
|
|
1479
1449
|
*
|
|
1480
|
-
*
|
|
1450
|
+
* 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.
|
|
1481
1451
|
*/
|
|
1482
|
-
|
|
1483
|
-
return (options
|
|
1452
|
+
calculateBioCompatibility(options) {
|
|
1453
|
+
return (options?.client ?? this.client).post({
|
|
1484
1454
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1485
|
-
url: "/
|
|
1486
|
-
...options
|
|
1455
|
+
url: "/biorhythm/compatibility",
|
|
1456
|
+
...options,
|
|
1457
|
+
headers: {
|
|
1458
|
+
"Content-Type": "application/json",
|
|
1459
|
+
...options?.headers
|
|
1460
|
+
}
|
|
1487
1461
|
});
|
|
1488
1462
|
}
|
|
1489
1463
|
/**
|
|
1490
|
-
*
|
|
1464
|
+
* Get phase info - Lightweight cycle status for dashboards and widgets
|
|
1491
1465
|
*
|
|
1492
|
-
*
|
|
1466
|
+
* 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.
|
|
1493
1467
|
*/
|
|
1494
|
-
|
|
1495
|
-
return (options
|
|
1468
|
+
getPhases(options) {
|
|
1469
|
+
return (options?.client ?? this.client).post({
|
|
1496
1470
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1497
|
-
url: "/
|
|
1498
|
-
...options
|
|
1471
|
+
url: "/biorhythm/phases",
|
|
1472
|
+
...options,
|
|
1473
|
+
headers: {
|
|
1474
|
+
"Content-Type": "application/json",
|
|
1475
|
+
...options?.headers
|
|
1476
|
+
}
|
|
1499
1477
|
});
|
|
1500
1478
|
}
|
|
1501
1479
|
/**
|
|
1502
|
-
*
|
|
1480
|
+
* Get daily biorhythm - Seeded reading for daily check-in features
|
|
1503
1481
|
*
|
|
1504
|
-
* Get
|
|
1482
|
+
* 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.
|
|
1505
1483
|
*/
|
|
1506
|
-
|
|
1484
|
+
getDailyBiorhythm(options) {
|
|
1507
1485
|
return (options?.client ?? this.client).post({
|
|
1508
1486
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1509
|
-
url: "/
|
|
1487
|
+
url: "/biorhythm/daily",
|
|
1510
1488
|
...options,
|
|
1511
1489
|
headers: {
|
|
1512
1490
|
"Content-Type": "application/json",
|
|
@@ -1783,80 +1761,64 @@ var Crystals = class extends HeyApiClient {
|
|
|
1783
1761
|
});
|
|
1784
1762
|
}
|
|
1785
1763
|
};
|
|
1786
|
-
var
|
|
1764
|
+
var Dreams = class extends HeyApiClient {
|
|
1787
1765
|
/**
|
|
1788
|
-
*
|
|
1766
|
+
* List and search dream symbols
|
|
1789
1767
|
*
|
|
1790
|
-
*
|
|
1768
|
+
* 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.
|
|
1791
1769
|
*/
|
|
1792
|
-
|
|
1793
|
-
return (options?.client ?? this.client).
|
|
1770
|
+
searchDreamSymbols(options) {
|
|
1771
|
+
return (options?.client ?? this.client).get({
|
|
1794
1772
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1795
|
-
url: "/
|
|
1796
|
-
...options
|
|
1797
|
-
headers: {
|
|
1798
|
-
"Content-Type": "application/json",
|
|
1799
|
-
...options?.headers
|
|
1800
|
-
}
|
|
1773
|
+
url: "/dreams/symbols",
|
|
1774
|
+
...options
|
|
1801
1775
|
});
|
|
1802
1776
|
}
|
|
1803
1777
|
/**
|
|
1804
|
-
* Get
|
|
1778
|
+
* Get random dream symbols
|
|
1805
1779
|
*
|
|
1806
|
-
*
|
|
1780
|
+
* 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.
|
|
1807
1781
|
*/
|
|
1808
|
-
|
|
1809
|
-
return (options?.client ?? this.client).
|
|
1782
|
+
getRandomSymbols(options) {
|
|
1783
|
+
return (options?.client ?? this.client).get({
|
|
1810
1784
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1811
|
-
url: "/
|
|
1812
|
-
...options
|
|
1813
|
-
headers: {
|
|
1814
|
-
"Content-Type": "application/json",
|
|
1815
|
-
...options?.headers
|
|
1816
|
-
}
|
|
1785
|
+
url: "/dreams/symbols/random",
|
|
1786
|
+
...options
|
|
1817
1787
|
});
|
|
1818
1788
|
}
|
|
1819
1789
|
/**
|
|
1820
|
-
*
|
|
1790
|
+
* Get symbol counts by letter
|
|
1821
1791
|
*
|
|
1822
|
-
*
|
|
1792
|
+
* 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.
|
|
1823
1793
|
*/
|
|
1824
|
-
|
|
1825
|
-
return (options?.client ?? this.client).
|
|
1794
|
+
getSymbolLetterCounts(options) {
|
|
1795
|
+
return (options?.client ?? this.client).get({
|
|
1826
1796
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1827
|
-
url: "/
|
|
1828
|
-
...options
|
|
1829
|
-
headers: {
|
|
1830
|
-
"Content-Type": "application/json",
|
|
1831
|
-
...options?.headers
|
|
1832
|
-
}
|
|
1797
|
+
url: "/dreams/symbols/letters",
|
|
1798
|
+
...options
|
|
1833
1799
|
});
|
|
1834
1800
|
}
|
|
1835
1801
|
/**
|
|
1836
|
-
*
|
|
1802
|
+
* Get dream symbol details
|
|
1837
1803
|
*
|
|
1838
|
-
*
|
|
1804
|
+
* 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.
|
|
1839
1805
|
*/
|
|
1840
|
-
|
|
1841
|
-
return (options
|
|
1806
|
+
getDreamSymbol(options) {
|
|
1807
|
+
return (options.client ?? this.client).get({
|
|
1842
1808
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1843
|
-
url: "/
|
|
1844
|
-
...options
|
|
1845
|
-
headers: {
|
|
1846
|
-
"Content-Type": "application/json",
|
|
1847
|
-
...options?.headers
|
|
1848
|
-
}
|
|
1809
|
+
url: "/dreams/symbols/{id}",
|
|
1810
|
+
...options
|
|
1849
1811
|
});
|
|
1850
1812
|
}
|
|
1851
1813
|
/**
|
|
1852
|
-
* Get
|
|
1814
|
+
* Get daily dream symbol
|
|
1853
1815
|
*
|
|
1854
|
-
*
|
|
1816
|
+
* 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.
|
|
1855
1817
|
*/
|
|
1856
|
-
|
|
1818
|
+
getDailyDreamSymbol(options) {
|
|
1857
1819
|
return (options?.client ?? this.client).post({
|
|
1858
1820
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1859
|
-
url: "/
|
|
1821
|
+
url: "/dreams/daily",
|
|
1860
1822
|
...options,
|
|
1861
1823
|
headers: {
|
|
1862
1824
|
"Content-Type": "application/json",
|
|
@@ -1864,15 +1826,53 @@ var Biorhythm = class extends HeyApiClient {
|
|
|
1864
1826
|
}
|
|
1865
1827
|
});
|
|
1866
1828
|
}
|
|
1829
|
+
};
|
|
1830
|
+
var AngelNumbers = class extends HeyApiClient {
|
|
1867
1831
|
/**
|
|
1868
|
-
*
|
|
1832
|
+
* List All Angel Numbers
|
|
1869
1833
|
*
|
|
1870
|
-
*
|
|
1834
|
+
* 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.
|
|
1871
1835
|
*/
|
|
1872
|
-
|
|
1836
|
+
listAngelNumbers(options) {
|
|
1837
|
+
return (options?.client ?? this.client).get({
|
|
1838
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1839
|
+
url: "/angel-numbers/numbers",
|
|
1840
|
+
...options
|
|
1841
|
+
});
|
|
1842
|
+
}
|
|
1843
|
+
/**
|
|
1844
|
+
* Get Angel Number Meaning
|
|
1845
|
+
*
|
|
1846
|
+
* 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.
|
|
1847
|
+
*/
|
|
1848
|
+
getAngelNumber(options) {
|
|
1849
|
+
return (options.client ?? this.client).get({
|
|
1850
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1851
|
+
url: "/angel-numbers/numbers/{number}",
|
|
1852
|
+
...options
|
|
1853
|
+
});
|
|
1854
|
+
}
|
|
1855
|
+
/**
|
|
1856
|
+
* Analyze Any Number Sequence
|
|
1857
|
+
*
|
|
1858
|
+
* 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.
|
|
1859
|
+
*/
|
|
1860
|
+
analyzeNumberSequence(options) {
|
|
1861
|
+
return (options.client ?? this.client).get({
|
|
1862
|
+
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1863
|
+
url: "/angel-numbers/lookup",
|
|
1864
|
+
...options
|
|
1865
|
+
});
|
|
1866
|
+
}
|
|
1867
|
+
/**
|
|
1868
|
+
* Daily Angel Number
|
|
1869
|
+
*
|
|
1870
|
+
* 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.
|
|
1871
|
+
*/
|
|
1872
|
+
getDailyAngelNumber(options) {
|
|
1873
1873
|
return (options?.client ?? this.client).post({
|
|
1874
1874
|
security: [{ name: "X-API-Key", type: "apiKey" }],
|
|
1875
|
-
url: "/
|
|
1875
|
+
url: "/angel-numbers/daily",
|
|
1876
1876
|
...options,
|
|
1877
1877
|
headers: {
|
|
1878
1878
|
"Content-Type": "application/json",
|
|
@@ -1947,21 +1947,17 @@ var Roxy = class _Roxy extends HeyApiClient {
|
|
|
1947
1947
|
get vedicAstrology() {
|
|
1948
1948
|
return this._vedicAstrology ??= new VedicAstrology({ client: this.client });
|
|
1949
1949
|
}
|
|
1950
|
-
_tarot;
|
|
1951
|
-
get tarot() {
|
|
1952
|
-
return this._tarot ??= new Tarot({ client: this.client });
|
|
1953
|
-
}
|
|
1954
1950
|
_numerology;
|
|
1955
1951
|
get numerology() {
|
|
1956
1952
|
return this._numerology ??= new Numerology({ client: this.client });
|
|
1957
1953
|
}
|
|
1958
|
-
|
|
1959
|
-
get
|
|
1960
|
-
return this.
|
|
1954
|
+
_tarot;
|
|
1955
|
+
get tarot() {
|
|
1956
|
+
return this._tarot ??= new Tarot({ client: this.client });
|
|
1961
1957
|
}
|
|
1962
|
-
|
|
1963
|
-
get
|
|
1964
|
-
return this.
|
|
1958
|
+
_biorhythm;
|
|
1959
|
+
get biorhythm() {
|
|
1960
|
+
return this._biorhythm ??= new Biorhythm({ client: this.client });
|
|
1965
1961
|
}
|
|
1966
1962
|
_iching;
|
|
1967
1963
|
get iching() {
|
|
@@ -1971,9 +1967,13 @@ var Roxy = class _Roxy extends HeyApiClient {
|
|
|
1971
1967
|
get crystals() {
|
|
1972
1968
|
return this._crystals ??= new Crystals({ client: this.client });
|
|
1973
1969
|
}
|
|
1974
|
-
|
|
1975
|
-
get
|
|
1976
|
-
return this.
|
|
1970
|
+
_dreams;
|
|
1971
|
+
get dreams() {
|
|
1972
|
+
return this._dreams ??= new Dreams({ client: this.client });
|
|
1973
|
+
}
|
|
1974
|
+
_angelNumbers;
|
|
1975
|
+
get angelNumbers() {
|
|
1976
|
+
return this._angelNumbers ??= new AngelNumbers({ client: this.client });
|
|
1977
1977
|
}
|
|
1978
1978
|
_location;
|
|
1979
1979
|
get location() {
|
|
@@ -1986,7 +1986,7 @@ var Roxy = class _Roxy extends HeyApiClient {
|
|
|
1986
1986
|
};
|
|
1987
1987
|
|
|
1988
1988
|
// src/version.ts
|
|
1989
|
-
var VERSION = "1.2.
|
|
1989
|
+
var VERSION = "1.2.15";
|
|
1990
1990
|
|
|
1991
1991
|
// src/factory.ts
|
|
1992
1992
|
function createRoxy(auth) {
|