@roxyapi/sdk 1.2.27 → 1.2.29
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 +2 -2
- package/README.md +2 -2
- package/dist/factory.cjs +37 -5
- package/dist/factory.js +37 -5
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/sdk.gen.d.ts +17 -5
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/types.gen.d.ts +590 -202
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
- package/src/sdk.gen.ts +39 -5
- package/src/types.gen.ts +602 -200
- package/src/version.ts +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -143,6 +143,57 @@ export type NatalChartResponse = {
|
|
|
143
143
|
*/
|
|
144
144
|
interpretation: string;
|
|
145
145
|
}>;
|
|
146
|
+
/**
|
|
147
|
+
* Detected multi-planet aspect configurations (Grand Trine, Kite, T-Square, Grand Cross, Yod, Mystic Rectangle, Stellium). Grand Cross suppresses contained T-Squares, Kite suppresses underlying Grand Trine.
|
|
148
|
+
*/
|
|
149
|
+
patterns?: Array<{
|
|
150
|
+
/**
|
|
151
|
+
* Pattern kind identifier. GRAND_TRINE (3 trines, harmonious flow), KITE (Grand Trine with a focal outlet planet), T_SQUARE (opposition with squared apex, growth engine), GRAND_CROSS (4 planets in 2 oppositions and 4 squares, peak tension), YOD (Finger of Fate, fated adjustment), MYSTIC_RECTANGLE (oppositions softened by trines and sextiles), STELLIUM (3+ planets clustered in a sign or 10-degree arc).
|
|
152
|
+
*/
|
|
153
|
+
kind: 'GRAND_TRINE' | 'KITE' | 'T_SQUARE' | 'GRAND_CROSS' | 'YOD' | 'MYSTIC_RECTANGLE' | 'STELLIUM';
|
|
154
|
+
/**
|
|
155
|
+
* Human-readable name of the configuration as used in astrological literature.
|
|
156
|
+
*/
|
|
157
|
+
name: string;
|
|
158
|
+
/**
|
|
159
|
+
* Participating bodies in canonical order. For Kite, T-Square, and Yod the apex planet appears first.
|
|
160
|
+
*/
|
|
161
|
+
planets: Array<string>;
|
|
162
|
+
/**
|
|
163
|
+
* Focal planet for Kite, T-Square, and Yod patterns. Receives the released energy of the configuration and is the recommended integration point.
|
|
164
|
+
*/
|
|
165
|
+
apex?: string;
|
|
166
|
+
/**
|
|
167
|
+
* Dominant element when the pattern is element-coherent (Grand Trine, Kite). Reported lowercase. Absent for patterns whose meaning does not pivot on element.
|
|
168
|
+
*/
|
|
169
|
+
element?: 'fire' | 'earth' | 'air' | 'water';
|
|
170
|
+
/**
|
|
171
|
+
* Dominant modality for tension-based patterns (T-Square, Grand Cross). Cardinal initiates, Fixed sustains, Mutable adapts.
|
|
172
|
+
*/
|
|
173
|
+
modality?: 'cardinal' | 'fixed' | 'mutable';
|
|
174
|
+
/**
|
|
175
|
+
* True if the pattern is out-of-sign (one or more planets in a neighboring element or modality). Dissociate patterns are still valid but operate with weakened thematic coherence.
|
|
176
|
+
*/
|
|
177
|
+
dissociate?: boolean;
|
|
178
|
+
/**
|
|
179
|
+
* Tightness score (0-100) derived from the average orb tightness across all defining aspects. Higher means closer to exact and stronger thematic expression.
|
|
180
|
+
*/
|
|
181
|
+
tightness: number;
|
|
182
|
+
/**
|
|
183
|
+
* Concise one-line interpretation naming the participating planets and theme. Localized to the requested language via the lang query parameter (defaults to English).
|
|
184
|
+
*/
|
|
185
|
+
interpretation: string;
|
|
186
|
+
/**
|
|
187
|
+
* Stable template identifier used to render the interpretation. Useful for clients that wish to swap in a custom narrative template while preserving the structured variables.
|
|
188
|
+
*/
|
|
189
|
+
interpretationKey: string;
|
|
190
|
+
/**
|
|
191
|
+
* Variables that were interpolated into the interpretation template. Names already resolved to the requested language where appropriate.
|
|
192
|
+
*/
|
|
193
|
+
interpretationVars: {
|
|
194
|
+
[key: string]: string;
|
|
195
|
+
};
|
|
196
|
+
}>;
|
|
146
197
|
/**
|
|
147
198
|
* Aspect pattern analysis showing the balance of harmonious vs challenging energies in the chart.
|
|
148
199
|
*/
|
|
@@ -474,6 +525,57 @@ export type AspectsResponse = {
|
|
|
474
525
|
nature: string;
|
|
475
526
|
};
|
|
476
527
|
}>;
|
|
528
|
+
/**
|
|
529
|
+
* Detected multi-planet aspect configurations (Grand Trine, Kite, T-Square, Grand Cross, Yod, Mystic Rectangle, Stellium).
|
|
530
|
+
*/
|
|
531
|
+
patterns?: Array<{
|
|
532
|
+
/**
|
|
533
|
+
* Pattern kind identifier. GRAND_TRINE (3 trines, harmonious flow), KITE (Grand Trine with a focal outlet planet), T_SQUARE (opposition with squared apex, growth engine), GRAND_CROSS (4 planets in 2 oppositions and 4 squares, peak tension), YOD (Finger of Fate, fated adjustment), MYSTIC_RECTANGLE (oppositions softened by trines and sextiles), STELLIUM (3+ planets clustered in a sign or 10-degree arc).
|
|
534
|
+
*/
|
|
535
|
+
kind: 'GRAND_TRINE' | 'KITE' | 'T_SQUARE' | 'GRAND_CROSS' | 'YOD' | 'MYSTIC_RECTANGLE' | 'STELLIUM';
|
|
536
|
+
/**
|
|
537
|
+
* Human-readable name of the configuration as used in astrological literature.
|
|
538
|
+
*/
|
|
539
|
+
name: string;
|
|
540
|
+
/**
|
|
541
|
+
* Participating bodies in canonical order. For Kite, T-Square, and Yod the apex planet appears first.
|
|
542
|
+
*/
|
|
543
|
+
planets: Array<string>;
|
|
544
|
+
/**
|
|
545
|
+
* Focal planet for Kite, T-Square, and Yod patterns. Receives the released energy of the configuration and is the recommended integration point.
|
|
546
|
+
*/
|
|
547
|
+
apex?: string;
|
|
548
|
+
/**
|
|
549
|
+
* Dominant element when the pattern is element-coherent (Grand Trine, Kite). Reported lowercase. Absent for patterns whose meaning does not pivot on element.
|
|
550
|
+
*/
|
|
551
|
+
element?: 'fire' | 'earth' | 'air' | 'water';
|
|
552
|
+
/**
|
|
553
|
+
* Dominant modality for tension-based patterns (T-Square, Grand Cross). Cardinal initiates, Fixed sustains, Mutable adapts.
|
|
554
|
+
*/
|
|
555
|
+
modality?: 'cardinal' | 'fixed' | 'mutable';
|
|
556
|
+
/**
|
|
557
|
+
* True if the pattern is out-of-sign (one or more planets in a neighboring element or modality). Dissociate patterns are still valid but operate with weakened thematic coherence.
|
|
558
|
+
*/
|
|
559
|
+
dissociate?: boolean;
|
|
560
|
+
/**
|
|
561
|
+
* Tightness score (0-100) derived from the average orb tightness across all defining aspects. Higher means closer to exact and stronger thematic expression.
|
|
562
|
+
*/
|
|
563
|
+
tightness: number;
|
|
564
|
+
/**
|
|
565
|
+
* Concise one-line interpretation naming the participating planets and theme. Localized to the requested language via the lang query parameter (defaults to English).
|
|
566
|
+
*/
|
|
567
|
+
interpretation: string;
|
|
568
|
+
/**
|
|
569
|
+
* Stable template identifier used to render the interpretation. Useful for clients that wish to swap in a custom narrative template while preserving the structured variables.
|
|
570
|
+
*/
|
|
571
|
+
interpretationKey: string;
|
|
572
|
+
/**
|
|
573
|
+
* Variables that were interpolated into the interpretation template. Names already resolved to the requested language where appropriate.
|
|
574
|
+
*/
|
|
575
|
+
interpretationVars: {
|
|
576
|
+
[key: string]: string;
|
|
577
|
+
};
|
|
578
|
+
}>;
|
|
477
579
|
/**
|
|
478
580
|
* Aspect summary with counts by nature and type.
|
|
479
581
|
*/
|
|
@@ -524,6 +626,98 @@ export type AspectsRequest = {
|
|
|
524
626
|
*/
|
|
525
627
|
aspectTypes?: Array<string>;
|
|
526
628
|
};
|
|
629
|
+
export type AspectPatternsResponse = {
|
|
630
|
+
/**
|
|
631
|
+
* All aspect patterns detected in the chart, in detection order: Grand Cross first, then Kite, Grand Trine, T-Square, Yod, Mystic Rectangle, Stellium. Patterns absorbed by a higher-priority detection (T-Squares inside a Grand Cross, Grand Trines absorbed by a Kite) are not reported separately.
|
|
632
|
+
*/
|
|
633
|
+
patterns: Array<{
|
|
634
|
+
/**
|
|
635
|
+
* Pattern kind identifier. GRAND_TRINE (3 trines, harmonious flow), KITE (Grand Trine with a focal outlet planet), T_SQUARE (opposition with squared apex, growth engine), GRAND_CROSS (4 planets in 2 oppositions and 4 squares, peak tension), YOD (Finger of Fate, fated adjustment), MYSTIC_RECTANGLE (oppositions softened by trines and sextiles), STELLIUM (3+ planets clustered in a sign or 10-degree arc).
|
|
636
|
+
*/
|
|
637
|
+
kind: 'GRAND_TRINE' | 'KITE' | 'T_SQUARE' | 'GRAND_CROSS' | 'YOD' | 'MYSTIC_RECTANGLE' | 'STELLIUM';
|
|
638
|
+
/**
|
|
639
|
+
* Human-readable name of the configuration as used in astrological literature.
|
|
640
|
+
*/
|
|
641
|
+
name: string;
|
|
642
|
+
/**
|
|
643
|
+
* Participating bodies in canonical order. For Kite, T-Square, and Yod the apex planet appears first.
|
|
644
|
+
*/
|
|
645
|
+
planets: Array<string>;
|
|
646
|
+
/**
|
|
647
|
+
* Focal planet for Kite, T-Square, and Yod patterns. Receives the released energy of the configuration and is the recommended integration point.
|
|
648
|
+
*/
|
|
649
|
+
apex?: string;
|
|
650
|
+
/**
|
|
651
|
+
* Dominant element when the pattern is element-coherent (Grand Trine, Kite). Reported lowercase. Absent for patterns whose meaning does not pivot on element.
|
|
652
|
+
*/
|
|
653
|
+
element?: 'fire' | 'earth' | 'air' | 'water';
|
|
654
|
+
/**
|
|
655
|
+
* Dominant modality for tension-based patterns (T-Square, Grand Cross). Cardinal initiates, Fixed sustains, Mutable adapts.
|
|
656
|
+
*/
|
|
657
|
+
modality?: 'cardinal' | 'fixed' | 'mutable';
|
|
658
|
+
/**
|
|
659
|
+
* True if the pattern is out-of-sign (one or more planets in a neighboring element or modality). Dissociate patterns are still valid but operate with weakened thematic coherence.
|
|
660
|
+
*/
|
|
661
|
+
dissociate?: boolean;
|
|
662
|
+
/**
|
|
663
|
+
* Tightness score (0-100) derived from the average orb tightness across all defining aspects. Higher means closer to exact and stronger thematic expression.
|
|
664
|
+
*/
|
|
665
|
+
tightness: number;
|
|
666
|
+
/**
|
|
667
|
+
* Concise one-line interpretation naming the participating planets and theme. Localized to the requested language via the lang query parameter (defaults to English).
|
|
668
|
+
*/
|
|
669
|
+
interpretation: string;
|
|
670
|
+
/**
|
|
671
|
+
* Stable template identifier used to render the interpretation. Useful for clients that wish to swap in a custom narrative template while preserving the structured variables.
|
|
672
|
+
*/
|
|
673
|
+
interpretationKey: string;
|
|
674
|
+
/**
|
|
675
|
+
* Variables that were interpolated into the interpretation template. Names already resolved to the requested language where appropriate.
|
|
676
|
+
*/
|
|
677
|
+
interpretationVars: {
|
|
678
|
+
[key: string]: string;
|
|
679
|
+
};
|
|
680
|
+
}>;
|
|
681
|
+
/**
|
|
682
|
+
* Total number of detected aspect patterns in this chart.
|
|
683
|
+
*/
|
|
684
|
+
total: number;
|
|
685
|
+
/**
|
|
686
|
+
* Echo of the options used for this detection run. Useful for reproducibility and for downstream UI display.
|
|
687
|
+
*/
|
|
688
|
+
options: {
|
|
689
|
+
/**
|
|
690
|
+
* Whether the strict (Pontopia-style) orb budget was used. False uses industry-standard orbs (8 for major aspects, 9 for square, 6 for sextile, 3 for quincunx).
|
|
691
|
+
*/
|
|
692
|
+
strictOrbs: boolean;
|
|
693
|
+
/**
|
|
694
|
+
* Optional bodies included beyond the default Sun-Pluto set. Empty means classical 10-planet detection only.
|
|
695
|
+
*/
|
|
696
|
+
include: Array<'chiron' | 'northNode'>;
|
|
697
|
+
};
|
|
698
|
+
};
|
|
699
|
+
export type AspectPatternsRequest = {
|
|
700
|
+
/**
|
|
701
|
+
* Birth date in YYYY-MM-DD format. Determines planetary positions for the specific calendar day.
|
|
702
|
+
*/
|
|
703
|
+
date: string;
|
|
704
|
+
/**
|
|
705
|
+
* Birth time in 24-hour HH:MM:SS format. Determines the Ascendant (rising sign) and house cusps. Use 12:00:00 if unknown.
|
|
706
|
+
*/
|
|
707
|
+
time: string;
|
|
708
|
+
/**
|
|
709
|
+
* Birth location latitude in decimal degrees (-90 to 90). Positive = North, negative = South.
|
|
710
|
+
*/
|
|
711
|
+
latitude: number;
|
|
712
|
+
/**
|
|
713
|
+
* Birth location longitude in decimal degrees (-180 to 180). Positive = East, negative = West.
|
|
714
|
+
*/
|
|
715
|
+
longitude: number;
|
|
716
|
+
/**
|
|
717
|
+
* Timezone: decimal hours from UTC (e.g. -5 for EST, 5.5 for IST) OR IANA name (e.g. "America/New_York", "Asia/Kolkata"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly.
|
|
718
|
+
*/
|
|
719
|
+
timezone: number | string;
|
|
720
|
+
};
|
|
527
721
|
export type TransitsResponse = {
|
|
528
722
|
/**
|
|
529
723
|
* Date of the transit calculation (YYYY-MM-DD).
|
|
@@ -731,6 +925,39 @@ export type BirthChartResponse = {
|
|
|
731
925
|
awastha?: 'Bala' | 'Kumara' | 'Yuva' | 'Vriddha' | 'Mrita';
|
|
732
926
|
}>;
|
|
733
927
|
};
|
|
928
|
+
/**
|
|
929
|
+
* Twelve classical yogas detected against this chart: Gajakesari (three-rule parashara definition), Sunapha, Anapha, Dhurdhura, Kemadruma, Chandra Mangala, Budha-Aditya, and the five Pancha Mahapurusha (Ruchaka, Bhadra, Hamsa, Malavya, Sasa). Each entry carries an `id` (matches `GET /yoga/{id}` for full glossary lookup), a `present` boolean, and classical-text `evidence` for the rule that triggered or failed.
|
|
930
|
+
*/
|
|
931
|
+
yogas?: Array<{
|
|
932
|
+
/**
|
|
933
|
+
* Glossary id (lowercase, kebab-case) matching an entry in the 300-entry planetary-yoga catalog. Use with GET /yoga/{id} to retrieve the full glossary text.
|
|
934
|
+
*/
|
|
935
|
+
id: string;
|
|
936
|
+
/**
|
|
937
|
+
* Classical Sanskrit name of the yoga as referenced in BPHS (Brihat Parashara Hora Shastra), Phaladeepika, and B.V. Raman *Three Hundred Important Combinations*.
|
|
938
|
+
*/
|
|
939
|
+
name: string;
|
|
940
|
+
/**
|
|
941
|
+
* Brief classical formation rule. Identifies the planetary placement, lordship, dignity, or aspect pattern required for the yoga to form.
|
|
942
|
+
*/
|
|
943
|
+
description: string;
|
|
944
|
+
/**
|
|
945
|
+
* Classical phala (life-effect) description of the yoga when present, sourced from the parashari and phaladeepika tradition.
|
|
946
|
+
*/
|
|
947
|
+
result: string;
|
|
948
|
+
/**
|
|
949
|
+
* Overall nature. Auspicious yogas (Pancha Mahapurusha, Gajakesari) bestow benefits; inauspicious yogas (Kemadruma) indicate challenges; Both denotes context-dependent effects.
|
|
950
|
+
*/
|
|
951
|
+
quality: 'Positive' | 'Negative' | 'Both';
|
|
952
|
+
/**
|
|
953
|
+
* True if every classical condition for the yoga is satisfied by the given chart. False if any rule fails, including "almost-present" cases where dignity is met but kendra/aspect is not.
|
|
954
|
+
*/
|
|
955
|
+
present: boolean;
|
|
956
|
+
/**
|
|
957
|
+
* Human-readable rationale naming the specific rule that triggered or failed the detection, including planetary positions, dignity, kendrādhipati status, lordship, or malefic drishti.
|
|
958
|
+
*/
|
|
959
|
+
evidence?: string;
|
|
960
|
+
}>;
|
|
734
961
|
/**
|
|
735
962
|
* Quick lookup of all planet positions keyed by planet name. Contains Sun, Moon, Mars, Mercury, Jupiter, Venus, Saturn, Rahu, Ketu, and Lagna (Ascendant).
|
|
736
963
|
*/
|
|
@@ -1526,6 +1753,77 @@ export type SadhesatiRequest = {
|
|
|
1526
1753
|
*/
|
|
1527
1754
|
timezone?: number | string;
|
|
1528
1755
|
};
|
|
1756
|
+
export type YogaDetectResponse = {
|
|
1757
|
+
/**
|
|
1758
|
+
* Array of 12 detected yogas. Every entry carries a present boolean; filter on present === true for active yogas. Evidence text names the rule that triggered or failed.
|
|
1759
|
+
*/
|
|
1760
|
+
yogas: Array<{
|
|
1761
|
+
/**
|
|
1762
|
+
* Glossary id (lowercase, kebab-case) matching an entry in the 300-entry planetary-yoga catalog. Use with GET /yoga/{id} to retrieve the full glossary text.
|
|
1763
|
+
*/
|
|
1764
|
+
id: string;
|
|
1765
|
+
/**
|
|
1766
|
+
* Classical Sanskrit name of the yoga as referenced in BPHS (Brihat Parashara Hora Shastra), Phaladeepika, and B.V. Raman *Three Hundred Important Combinations*.
|
|
1767
|
+
*/
|
|
1768
|
+
name: string;
|
|
1769
|
+
/**
|
|
1770
|
+
* Brief classical formation rule. Identifies the planetary placement, lordship, dignity, or aspect pattern required for the yoga to form.
|
|
1771
|
+
*/
|
|
1772
|
+
description: string;
|
|
1773
|
+
/**
|
|
1774
|
+
* Classical phala (life-effect) description of the yoga when present, sourced from the parashari and phaladeepika tradition.
|
|
1775
|
+
*/
|
|
1776
|
+
result: string;
|
|
1777
|
+
/**
|
|
1778
|
+
* Overall nature. Auspicious yogas (Pancha Mahapurusha, Gajakesari) bestow benefits; inauspicious yogas (Kemadruma) indicate challenges; Both denotes context-dependent effects.
|
|
1779
|
+
*/
|
|
1780
|
+
quality: 'Positive' | 'Negative' | 'Both';
|
|
1781
|
+
/**
|
|
1782
|
+
* True if every classical condition for the yoga is satisfied by the given chart. False if any rule fails, including "almost-present" cases where dignity is met but kendra/aspect is not.
|
|
1783
|
+
*/
|
|
1784
|
+
present: boolean;
|
|
1785
|
+
/**
|
|
1786
|
+
* Human-readable rationale naming the specific rule that triggered or failed the detection, including planetary positions, dignity, kendrādhipati status, lordship, or malefic drishti.
|
|
1787
|
+
*/
|
|
1788
|
+
evidence?: string;
|
|
1789
|
+
}>;
|
|
1790
|
+
/**
|
|
1791
|
+
* Count of yogas where present === true in this chart. Range 0-12.
|
|
1792
|
+
*/
|
|
1793
|
+
total: number;
|
|
1794
|
+
/**
|
|
1795
|
+
* Echo of the resolved birth data used for detection. Timezone is the numeric offset that the chart engine consumed (IANA names are resolved upstream).
|
|
1796
|
+
*/
|
|
1797
|
+
birthDetails: {
|
|
1798
|
+
date: string;
|
|
1799
|
+
time: string;
|
|
1800
|
+
latitude: number;
|
|
1801
|
+
longitude: number;
|
|
1802
|
+
timezone: number;
|
|
1803
|
+
};
|
|
1804
|
+
};
|
|
1805
|
+
export type YogaDetectRequest = {
|
|
1806
|
+
/**
|
|
1807
|
+
* Birth date in YYYY-MM-DD format. Date determines planetary positions and nakshatra calculations for Vedic kundli (janam patri). Accurate birth date is essential for dashas, yoga calculations, and divisional charts (vargas).
|
|
1808
|
+
*/
|
|
1809
|
+
date: string;
|
|
1810
|
+
/**
|
|
1811
|
+
* Birth time in 24-hour HH:MM:SS format. Time is CRITICAL for Lagna (Ascendant) calculation and house divisions - changes every ~2 hours. Even minutes matter for accurate nakshatra pada and divisional chart (D9, D10) calculations. Without exact time, Lagna and house-based predictions will be incorrect.
|
|
1812
|
+
*/
|
|
1813
|
+
time: string;
|
|
1814
|
+
/**
|
|
1815
|
+
* Birth location latitude in decimal degrees. Location determines local sidereal time for Lagna calculation and affects bhava (house) cusps. Example: Delhi 28.6139, Mumbai 19.0760, Kathmandu 27.7172.
|
|
1816
|
+
*/
|
|
1817
|
+
latitude: number;
|
|
1818
|
+
/**
|
|
1819
|
+
* Birth location longitude in decimal degrees. Affects local time calculations and ayanamsha adjustments. Example: Delhi 77.2090, Mumbai 72.8777, Kathmandu 85.3240.
|
|
1820
|
+
*/
|
|
1821
|
+
longitude: number;
|
|
1822
|
+
/**
|
|
1823
|
+
* Timezone: decimal hours from UTC (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "Asia/Kolkata", "America/New_York"). IANA strings are resolved to the DST-correct offset for the given date, so you can pass `cities[0].timezone` from /location/search directly. Defaults to 5.5 (IST).
|
|
1824
|
+
*/
|
|
1825
|
+
timezone?: number | string;
|
|
1826
|
+
};
|
|
1529
1827
|
export type KpAyanamsaResponse = {
|
|
1530
1828
|
/**
|
|
1531
1829
|
* Date for which ayanamsa was calculated
|
|
@@ -3194,11 +3492,11 @@ export type Card = {
|
|
|
3194
3492
|
};
|
|
3195
3493
|
export type DrawnCard = {
|
|
3196
3494
|
/**
|
|
3197
|
-
* Unique card identifier in kebab-case (e.g. the-fool, ace-of-cups
|
|
3495
|
+
* Unique card identifier in kebab-case (e.g. the-fool, ace-of-cups).
|
|
3198
3496
|
*/
|
|
3199
3497
|
id: string;
|
|
3200
3498
|
/**
|
|
3201
|
-
* Display name of the tarot card
|
|
3499
|
+
* Display name of the tarot card.
|
|
3202
3500
|
*/
|
|
3203
3501
|
name: string;
|
|
3204
3502
|
/**
|
|
@@ -3229,6 +3527,26 @@ export type DrawnCard = {
|
|
|
3229
3527
|
* Full interpretation of this card in its current orientation, providing detailed divination guidance.
|
|
3230
3528
|
*/
|
|
3231
3529
|
meaning: string;
|
|
3530
|
+
/**
|
|
3531
|
+
* Love and relationship interpretation for the drawn orientation. Covers romantic partnerships, dating, emotional connections, and matters of the heart.
|
|
3532
|
+
*/
|
|
3533
|
+
love?: string;
|
|
3534
|
+
/**
|
|
3535
|
+
* Career and professional interpretation for the drawn orientation. Covers workplace dynamics, job transitions, ambition, and vocational purpose.
|
|
3536
|
+
*/
|
|
3537
|
+
career?: string;
|
|
3538
|
+
/**
|
|
3539
|
+
* Financial interpretation for the drawn orientation. Covers money management, investments, material prosperity, and abundance mindset.
|
|
3540
|
+
*/
|
|
3541
|
+
finances?: string;
|
|
3542
|
+
/**
|
|
3543
|
+
* Health and wellbeing interpretation for the drawn orientation. Covers physical vitality, mental health, energy levels, and self-care guidance.
|
|
3544
|
+
*/
|
|
3545
|
+
health?: string;
|
|
3546
|
+
/**
|
|
3547
|
+
* Spiritual interpretation for the drawn orientation. Covers personal growth, inner wisdom, soul purpose, and metaphysical development.
|
|
3548
|
+
*/
|
|
3549
|
+
spirituality?: string;
|
|
3232
3550
|
/**
|
|
3233
3551
|
* URL to the tarot card artwork image.
|
|
3234
3552
|
*/
|
|
@@ -5414,9 +5732,129 @@ export type PostAstrologyHousesData = {
|
|
|
5414
5732
|
*/
|
|
5415
5733
|
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
5416
5734
|
};
|
|
5417
|
-
url: '/astrology/houses';
|
|
5735
|
+
url: '/astrology/houses';
|
|
5736
|
+
};
|
|
5737
|
+
export type PostAstrologyHousesErrors = {
|
|
5738
|
+
/**
|
|
5739
|
+
* Validation error. `issues[]` lists every failed field.
|
|
5740
|
+
*/
|
|
5741
|
+
400: {
|
|
5742
|
+
/**
|
|
5743
|
+
* First issue summary.
|
|
5744
|
+
*/
|
|
5745
|
+
error: string;
|
|
5746
|
+
code: 'validation_error';
|
|
5747
|
+
/**
|
|
5748
|
+
* Every validation failure. Use this to rebuild a valid request.
|
|
5749
|
+
*/
|
|
5750
|
+
issues: Array<{
|
|
5751
|
+
/**
|
|
5752
|
+
* Dot-separated field path, or "(root)" for top-level.
|
|
5753
|
+
*/
|
|
5754
|
+
path: string;
|
|
5755
|
+
message: string;
|
|
5756
|
+
/**
|
|
5757
|
+
* Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
|
|
5758
|
+
*/
|
|
5759
|
+
code?: string;
|
|
5760
|
+
/**
|
|
5761
|
+
* Expected type for invalid_type.
|
|
5762
|
+
*/
|
|
5763
|
+
expected?: string;
|
|
5764
|
+
/**
|
|
5765
|
+
* Minimum bound for too_small issues.
|
|
5766
|
+
*/
|
|
5767
|
+
minimum?: number | string;
|
|
5768
|
+
/**
|
|
5769
|
+
* Maximum bound for too_big issues.
|
|
5770
|
+
*/
|
|
5771
|
+
maximum?: number | string;
|
|
5772
|
+
inclusive?: boolean;
|
|
5773
|
+
/**
|
|
5774
|
+
* Format name for string issues (regex, email, url, uuid).
|
|
5775
|
+
*/
|
|
5776
|
+
format?: string;
|
|
5777
|
+
/**
|
|
5778
|
+
* Regex pattern when format is regex.
|
|
5779
|
+
*/
|
|
5780
|
+
pattern?: string;
|
|
5781
|
+
}>;
|
|
5782
|
+
};
|
|
5783
|
+
/**
|
|
5784
|
+
* Invalid or missing API key
|
|
5785
|
+
*/
|
|
5786
|
+
401: {
|
|
5787
|
+
/**
|
|
5788
|
+
* Human-readable error message. May change wording.
|
|
5789
|
+
*/
|
|
5790
|
+
error: string;
|
|
5791
|
+
/**
|
|
5792
|
+
* Machine-readable error code. Stable identifier.
|
|
5793
|
+
*/
|
|
5794
|
+
code: string;
|
|
5795
|
+
};
|
|
5796
|
+
/**
|
|
5797
|
+
* Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
|
|
5798
|
+
*/
|
|
5799
|
+
405: {
|
|
5800
|
+
error: string;
|
|
5801
|
+
code: 'method_not_allowed';
|
|
5802
|
+
/**
|
|
5803
|
+
* Allowed HTTP methods for this path. Mirrors the Allow response header.
|
|
5804
|
+
*/
|
|
5805
|
+
allow: Array<string>;
|
|
5806
|
+
/**
|
|
5807
|
+
* Link to the product page for this domain.
|
|
5808
|
+
*/
|
|
5809
|
+
docs?: string;
|
|
5810
|
+
};
|
|
5811
|
+
/**
|
|
5812
|
+
* Monthly rate limit exceeded
|
|
5813
|
+
*/
|
|
5814
|
+
429: {
|
|
5815
|
+
/**
|
|
5816
|
+
* Human-readable error message. May change wording.
|
|
5817
|
+
*/
|
|
5818
|
+
error: string;
|
|
5819
|
+
/**
|
|
5820
|
+
* Machine-readable error code. Stable identifier.
|
|
5821
|
+
*/
|
|
5822
|
+
code: string;
|
|
5823
|
+
};
|
|
5824
|
+
/**
|
|
5825
|
+
* Internal server error
|
|
5826
|
+
*/
|
|
5827
|
+
500: {
|
|
5828
|
+
/**
|
|
5829
|
+
* Human-readable error message. May change wording.
|
|
5830
|
+
*/
|
|
5831
|
+
error: string;
|
|
5832
|
+
/**
|
|
5833
|
+
* Machine-readable error code. Stable identifier.
|
|
5834
|
+
*/
|
|
5835
|
+
code: string;
|
|
5836
|
+
};
|
|
5837
|
+
};
|
|
5838
|
+
export type PostAstrologyHousesError = PostAstrologyHousesErrors[keyof PostAstrologyHousesErrors];
|
|
5839
|
+
export type PostAstrologyHousesResponses = {
|
|
5840
|
+
/**
|
|
5841
|
+
* House cusps calculated successfully
|
|
5842
|
+
*/
|
|
5843
|
+
200: HousesResponse;
|
|
5844
|
+
};
|
|
5845
|
+
export type PostAstrologyHousesResponse = PostAstrologyHousesResponses[keyof PostAstrologyHousesResponses];
|
|
5846
|
+
export type PostAstrologyAspectsData = {
|
|
5847
|
+
body?: AspectsRequest;
|
|
5848
|
+
path?: never;
|
|
5849
|
+
query?: {
|
|
5850
|
+
/**
|
|
5851
|
+
* Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
|
|
5852
|
+
*/
|
|
5853
|
+
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
5854
|
+
};
|
|
5855
|
+
url: '/astrology/aspects';
|
|
5418
5856
|
};
|
|
5419
|
-
export type
|
|
5857
|
+
export type PostAstrologyAspectsErrors = {
|
|
5420
5858
|
/**
|
|
5421
5859
|
* Validation error. `issues[]` lists every failed field.
|
|
5422
5860
|
*/
|
|
@@ -5517,26 +5955,34 @@ export type PostAstrologyHousesErrors = {
|
|
|
5517
5955
|
code: string;
|
|
5518
5956
|
};
|
|
5519
5957
|
};
|
|
5520
|
-
export type
|
|
5521
|
-
export type
|
|
5958
|
+
export type PostAstrologyAspectsError = PostAstrologyAspectsErrors[keyof PostAstrologyAspectsErrors];
|
|
5959
|
+
export type PostAstrologyAspectsResponses = {
|
|
5522
5960
|
/**
|
|
5523
|
-
*
|
|
5961
|
+
* Aspects calculated successfully
|
|
5524
5962
|
*/
|
|
5525
|
-
200:
|
|
5963
|
+
200: AspectsResponse;
|
|
5526
5964
|
};
|
|
5527
|
-
export type
|
|
5528
|
-
export type
|
|
5529
|
-
body?:
|
|
5965
|
+
export type PostAstrologyAspectsResponse = PostAstrologyAspectsResponses[keyof PostAstrologyAspectsResponses];
|
|
5966
|
+
export type PostAstrologyAspectPatternsData = {
|
|
5967
|
+
body?: AspectPatternsRequest;
|
|
5530
5968
|
path?: never;
|
|
5531
5969
|
query?: {
|
|
5532
5970
|
/**
|
|
5533
5971
|
* Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
|
|
5534
5972
|
*/
|
|
5535
5973
|
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
5974
|
+
/**
|
|
5975
|
+
* Use tighter orbs (Pontopia "optimal" recommendations). Truthy values (true, 1, yes, on; case-insensitive) narrow trine to 5, square to 5, sextile to 4, quincunx to 2. Defaults to false (industry-standard orbs).
|
|
5976
|
+
*/
|
|
5977
|
+
strictOrbs?: string;
|
|
5978
|
+
/**
|
|
5979
|
+
* Comma-separated list of optional bodies to include beyond the classical 10 planets. Valid tokens (case-insensitive): chiron, northNode (also accepts north_node, north-node, northnode). Empty by default.
|
|
5980
|
+
*/
|
|
5981
|
+
include?: string;
|
|
5536
5982
|
};
|
|
5537
|
-
url: '/astrology/
|
|
5983
|
+
url: '/astrology/aspect-patterns';
|
|
5538
5984
|
};
|
|
5539
|
-
export type
|
|
5985
|
+
export type PostAstrologyAspectPatternsErrors = {
|
|
5540
5986
|
/**
|
|
5541
5987
|
* Validation error. `issues[]` lists every failed field.
|
|
5542
5988
|
*/
|
|
@@ -5637,14 +6083,14 @@ export type PostAstrologyAspectsErrors = {
|
|
|
5637
6083
|
code: string;
|
|
5638
6084
|
};
|
|
5639
6085
|
};
|
|
5640
|
-
export type
|
|
5641
|
-
export type
|
|
6086
|
+
export type PostAstrologyAspectPatternsError = PostAstrologyAspectPatternsErrors[keyof PostAstrologyAspectPatternsErrors];
|
|
6087
|
+
export type PostAstrologyAspectPatternsResponses = {
|
|
5642
6088
|
/**
|
|
5643
|
-
*
|
|
6089
|
+
* Aspect patterns detected successfully
|
|
5644
6090
|
*/
|
|
5645
|
-
200:
|
|
6091
|
+
200: AspectPatternsResponse;
|
|
5646
6092
|
};
|
|
5647
|
-
export type
|
|
6093
|
+
export type PostAstrologyAspectPatternsResponse = PostAstrologyAspectPatternsResponses[keyof PostAstrologyAspectPatternsResponses];
|
|
5648
6094
|
export type PostAstrologyTransitsData = {
|
|
5649
6095
|
body?: TransitsRequest;
|
|
5650
6096
|
path?: never;
|
|
@@ -12149,6 +12595,126 @@ export type GetVedicAstrologyYogaByIdResponses = {
|
|
|
12149
12595
|
};
|
|
12150
12596
|
};
|
|
12151
12597
|
export type GetVedicAstrologyYogaByIdResponse = GetVedicAstrologyYogaByIdResponses[keyof GetVedicAstrologyYogaByIdResponses];
|
|
12598
|
+
export type PostVedicAstrologyYogaDetectData = {
|
|
12599
|
+
body?: YogaDetectRequest;
|
|
12600
|
+
path?: never;
|
|
12601
|
+
query?: {
|
|
12602
|
+
/**
|
|
12603
|
+
* Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
|
|
12604
|
+
*/
|
|
12605
|
+
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
12606
|
+
};
|
|
12607
|
+
url: '/vedic-astrology/yoga/detect';
|
|
12608
|
+
};
|
|
12609
|
+
export type PostVedicAstrologyYogaDetectErrors = {
|
|
12610
|
+
/**
|
|
12611
|
+
* Validation error. `issues[]` lists every failed field.
|
|
12612
|
+
*/
|
|
12613
|
+
400: {
|
|
12614
|
+
/**
|
|
12615
|
+
* First issue summary.
|
|
12616
|
+
*/
|
|
12617
|
+
error: string;
|
|
12618
|
+
code: 'validation_error';
|
|
12619
|
+
/**
|
|
12620
|
+
* Every validation failure. Use this to rebuild a valid request.
|
|
12621
|
+
*/
|
|
12622
|
+
issues: Array<{
|
|
12623
|
+
/**
|
|
12624
|
+
* Dot-separated field path, or "(root)" for top-level.
|
|
12625
|
+
*/
|
|
12626
|
+
path: string;
|
|
12627
|
+
message: string;
|
|
12628
|
+
/**
|
|
12629
|
+
* Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
|
|
12630
|
+
*/
|
|
12631
|
+
code?: string;
|
|
12632
|
+
/**
|
|
12633
|
+
* Expected type for invalid_type.
|
|
12634
|
+
*/
|
|
12635
|
+
expected?: string;
|
|
12636
|
+
/**
|
|
12637
|
+
* Minimum bound for too_small issues.
|
|
12638
|
+
*/
|
|
12639
|
+
minimum?: number | string;
|
|
12640
|
+
/**
|
|
12641
|
+
* Maximum bound for too_big issues.
|
|
12642
|
+
*/
|
|
12643
|
+
maximum?: number | string;
|
|
12644
|
+
inclusive?: boolean;
|
|
12645
|
+
/**
|
|
12646
|
+
* Format name for string issues (regex, email, url, uuid).
|
|
12647
|
+
*/
|
|
12648
|
+
format?: string;
|
|
12649
|
+
/**
|
|
12650
|
+
* Regex pattern when format is regex.
|
|
12651
|
+
*/
|
|
12652
|
+
pattern?: string;
|
|
12653
|
+
}>;
|
|
12654
|
+
};
|
|
12655
|
+
/**
|
|
12656
|
+
* Invalid or missing API key
|
|
12657
|
+
*/
|
|
12658
|
+
401: {
|
|
12659
|
+
/**
|
|
12660
|
+
* Human-readable error message. May change wording.
|
|
12661
|
+
*/
|
|
12662
|
+
error: string;
|
|
12663
|
+
/**
|
|
12664
|
+
* Machine-readable error code. Stable identifier.
|
|
12665
|
+
*/
|
|
12666
|
+
code: string;
|
|
12667
|
+
};
|
|
12668
|
+
/**
|
|
12669
|
+
* Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
|
|
12670
|
+
*/
|
|
12671
|
+
405: {
|
|
12672
|
+
error: string;
|
|
12673
|
+
code: 'method_not_allowed';
|
|
12674
|
+
/**
|
|
12675
|
+
* Allowed HTTP methods for this path. Mirrors the Allow response header.
|
|
12676
|
+
*/
|
|
12677
|
+
allow: Array<string>;
|
|
12678
|
+
/**
|
|
12679
|
+
* Link to the product page for this domain.
|
|
12680
|
+
*/
|
|
12681
|
+
docs?: string;
|
|
12682
|
+
};
|
|
12683
|
+
/**
|
|
12684
|
+
* Monthly rate limit exceeded
|
|
12685
|
+
*/
|
|
12686
|
+
429: {
|
|
12687
|
+
/**
|
|
12688
|
+
* Human-readable error message. May change wording.
|
|
12689
|
+
*/
|
|
12690
|
+
error: string;
|
|
12691
|
+
/**
|
|
12692
|
+
* Machine-readable error code. Stable identifier.
|
|
12693
|
+
*/
|
|
12694
|
+
code: string;
|
|
12695
|
+
};
|
|
12696
|
+
/**
|
|
12697
|
+
* Internal server error
|
|
12698
|
+
*/
|
|
12699
|
+
500: {
|
|
12700
|
+
/**
|
|
12701
|
+
* Human-readable error message. May change wording.
|
|
12702
|
+
*/
|
|
12703
|
+
error: string;
|
|
12704
|
+
/**
|
|
12705
|
+
* Machine-readable error code. Stable identifier.
|
|
12706
|
+
*/
|
|
12707
|
+
code: string;
|
|
12708
|
+
};
|
|
12709
|
+
};
|
|
12710
|
+
export type PostVedicAstrologyYogaDetectError = PostVedicAstrologyYogaDetectErrors[keyof PostVedicAstrologyYogaDetectErrors];
|
|
12711
|
+
export type PostVedicAstrologyYogaDetectResponses = {
|
|
12712
|
+
/**
|
|
12713
|
+
* List of 12 classical yogas with present/absent verdicts and classical-text evidence.
|
|
12714
|
+
*/
|
|
12715
|
+
200: YogaDetectResponse;
|
|
12716
|
+
};
|
|
12717
|
+
export type PostVedicAstrologyYogaDetectResponse = PostVedicAstrologyYogaDetectResponses[keyof PostVedicAstrologyYogaDetectResponses];
|
|
12152
12718
|
export type GetVedicAstrologyKpAyanamsaData = {
|
|
12153
12719
|
body?: never;
|
|
12154
12720
|
path?: never;
|
|
@@ -20031,40 +20597,7 @@ export type PostTarotDailyResponses = {
|
|
|
20031
20597
|
* Seed used for this daily reading. Same seed on the same date always produces the identical card for reproducible daily divination.
|
|
20032
20598
|
*/
|
|
20033
20599
|
seed: string;
|
|
20034
|
-
card:
|
|
20035
|
-
/**
|
|
20036
|
-
* Unique card identifier in kebab-case (e.g. the-fool, ace-of-cups).
|
|
20037
|
-
*/
|
|
20038
|
-
id: string;
|
|
20039
|
-
/**
|
|
20040
|
-
* Display name of the tarot card.
|
|
20041
|
-
*/
|
|
20042
|
-
name: string;
|
|
20043
|
-
/**
|
|
20044
|
-
* Whether this card belongs to the Major Arcana (22 trump cards, major life themes) or Minor Arcana (56 suit cards, daily situations).
|
|
20045
|
-
*/
|
|
20046
|
-
arcana: 'major' | 'minor';
|
|
20047
|
-
/**
|
|
20048
|
-
* Position index of the card in the draw sequence (1-based).
|
|
20049
|
-
*/
|
|
20050
|
-
position: number;
|
|
20051
|
-
/**
|
|
20052
|
-
* True if the card was drawn reversed (upside down). Reversed cards carry modified or blocked energy compared to upright position.
|
|
20053
|
-
*/
|
|
20054
|
-
reversed: boolean;
|
|
20055
|
-
/**
|
|
20056
|
-
* Key themes and concepts associated with this card in its current orientation (upright or reversed).
|
|
20057
|
-
*/
|
|
20058
|
-
keywords: Array<string>;
|
|
20059
|
-
/**
|
|
20060
|
-
* Full interpretation of this card in its current orientation, providing daily guidance and reflection.
|
|
20061
|
-
*/
|
|
20062
|
-
meaning: string;
|
|
20063
|
-
/**
|
|
20064
|
-
* URL to the tarot card artwork image.
|
|
20065
|
-
*/
|
|
20066
|
-
imageUrl: string;
|
|
20067
|
-
};
|
|
20600
|
+
card: DrawnCard;
|
|
20068
20601
|
/**
|
|
20069
20602
|
* Concise daily tarot message summarizing the card, its orientation, key themes, and brief guidance for the day.
|
|
20070
20603
|
*/
|
|
@@ -20399,36 +20932,7 @@ export type PostTarotSpreadsThreeCardResponses = {
|
|
|
20399
20932
|
* Position-specific interpretation of the drawn card, explaining how this card meaning applies to this particular spread position.
|
|
20400
20933
|
*/
|
|
20401
20934
|
interpretation: string;
|
|
20402
|
-
card:
|
|
20403
|
-
/**
|
|
20404
|
-
* Unique card identifier in kebab-case (e.g. the-fool, ace-of-cups).
|
|
20405
|
-
*/
|
|
20406
|
-
id: string;
|
|
20407
|
-
/**
|
|
20408
|
-
* Display name of the tarot card.
|
|
20409
|
-
*/
|
|
20410
|
-
name: string;
|
|
20411
|
-
/**
|
|
20412
|
-
* Whether this card belongs to the Major Arcana (22 trump cards, major life themes) or Minor Arcana (56 suit cards, daily situations).
|
|
20413
|
-
*/
|
|
20414
|
-
arcana: 'major' | 'minor';
|
|
20415
|
-
/**
|
|
20416
|
-
* True if the card was drawn reversed (upside down). Reversed cards carry modified or blocked energy compared to upright position.
|
|
20417
|
-
*/
|
|
20418
|
-
reversed: boolean;
|
|
20419
|
-
/**
|
|
20420
|
-
* Key themes and concepts associated with this card in its current orientation (upright or reversed).
|
|
20421
|
-
*/
|
|
20422
|
-
keywords: Array<string>;
|
|
20423
|
-
/**
|
|
20424
|
-
* Full interpretation of this card in its current orientation.
|
|
20425
|
-
*/
|
|
20426
|
-
meaning: string;
|
|
20427
|
-
/**
|
|
20428
|
-
* URL to the tarot card artwork image.
|
|
20429
|
-
*/
|
|
20430
|
-
imageUrl: string;
|
|
20431
|
-
};
|
|
20935
|
+
card: DrawnCard;
|
|
20432
20936
|
}>;
|
|
20433
20937
|
/**
|
|
20434
20938
|
* AI-generated narrative connecting all cards in the spread into a cohesive reading.
|
|
@@ -20586,36 +21090,7 @@ export type PostTarotSpreadsCelticCrossResponses = {
|
|
|
20586
21090
|
* Position-specific interpretation of the drawn card, explaining how this card meaning applies to this particular spread position.
|
|
20587
21091
|
*/
|
|
20588
21092
|
interpretation: string;
|
|
20589
|
-
card:
|
|
20590
|
-
/**
|
|
20591
|
-
* Unique card identifier in kebab-case (e.g. the-fool, ace-of-cups).
|
|
20592
|
-
*/
|
|
20593
|
-
id: string;
|
|
20594
|
-
/**
|
|
20595
|
-
* Display name of the tarot card.
|
|
20596
|
-
*/
|
|
20597
|
-
name: string;
|
|
20598
|
-
/**
|
|
20599
|
-
* Whether this card belongs to the Major Arcana (22 trump cards, major life themes) or Minor Arcana (56 suit cards, daily situations).
|
|
20600
|
-
*/
|
|
20601
|
-
arcana: 'major' | 'minor';
|
|
20602
|
-
/**
|
|
20603
|
-
* True if the card was drawn reversed (upside down). Reversed cards carry modified or blocked energy compared to upright position.
|
|
20604
|
-
*/
|
|
20605
|
-
reversed: boolean;
|
|
20606
|
-
/**
|
|
20607
|
-
* Key themes and concepts associated with this card in its current orientation (upright or reversed).
|
|
20608
|
-
*/
|
|
20609
|
-
keywords: Array<string>;
|
|
20610
|
-
/**
|
|
20611
|
-
* Full interpretation of this card in its current orientation.
|
|
20612
|
-
*/
|
|
20613
|
-
meaning: string;
|
|
20614
|
-
/**
|
|
20615
|
-
* URL to the tarot card artwork image.
|
|
20616
|
-
*/
|
|
20617
|
-
imageUrl: string;
|
|
20618
|
-
};
|
|
21093
|
+
card: DrawnCard;
|
|
20619
21094
|
}>;
|
|
20620
21095
|
/**
|
|
20621
21096
|
* AI-generated narrative connecting all cards in the spread into a cohesive reading.
|
|
@@ -20773,36 +21248,7 @@ export type PostTarotSpreadsLoveResponses = {
|
|
|
20773
21248
|
* Position-specific interpretation of the drawn card, explaining how this card meaning applies to this particular spread position.
|
|
20774
21249
|
*/
|
|
20775
21250
|
interpretation: string;
|
|
20776
|
-
card:
|
|
20777
|
-
/**
|
|
20778
|
-
* Unique card identifier in kebab-case (e.g. the-fool, ace-of-cups).
|
|
20779
|
-
*/
|
|
20780
|
-
id: string;
|
|
20781
|
-
/**
|
|
20782
|
-
* Display name of the tarot card.
|
|
20783
|
-
*/
|
|
20784
|
-
name: string;
|
|
20785
|
-
/**
|
|
20786
|
-
* Whether this card belongs to the Major Arcana (22 trump cards, major life themes) or Minor Arcana (56 suit cards, daily situations).
|
|
20787
|
-
*/
|
|
20788
|
-
arcana: 'major' | 'minor';
|
|
20789
|
-
/**
|
|
20790
|
-
* True if the card was drawn reversed (upside down). Reversed cards carry modified or blocked energy compared to upright position.
|
|
20791
|
-
*/
|
|
20792
|
-
reversed: boolean;
|
|
20793
|
-
/**
|
|
20794
|
-
* Key themes and concepts associated with this card in its current orientation (upright or reversed).
|
|
20795
|
-
*/
|
|
20796
|
-
keywords: Array<string>;
|
|
20797
|
-
/**
|
|
20798
|
-
* Full interpretation of this card in its current orientation.
|
|
20799
|
-
*/
|
|
20800
|
-
meaning: string;
|
|
20801
|
-
/**
|
|
20802
|
-
* URL to the tarot card artwork image.
|
|
20803
|
-
*/
|
|
20804
|
-
imageUrl: string;
|
|
20805
|
-
};
|
|
21251
|
+
card: DrawnCard;
|
|
20806
21252
|
}>;
|
|
20807
21253
|
/**
|
|
20808
21254
|
* AI-generated narrative connecting all cards in the spread into a cohesive reading.
|
|
@@ -20960,36 +21406,7 @@ export type PostTarotSpreadsCareerResponses = {
|
|
|
20960
21406
|
* Position-specific interpretation of the drawn card, explaining how this card meaning applies to this particular spread position.
|
|
20961
21407
|
*/
|
|
20962
21408
|
interpretation: string;
|
|
20963
|
-
card:
|
|
20964
|
-
/**
|
|
20965
|
-
* Unique card identifier in kebab-case (e.g. the-fool, ace-of-cups).
|
|
20966
|
-
*/
|
|
20967
|
-
id: string;
|
|
20968
|
-
/**
|
|
20969
|
-
* Display name of the tarot card.
|
|
20970
|
-
*/
|
|
20971
|
-
name: string;
|
|
20972
|
-
/**
|
|
20973
|
-
* Whether this card belongs to the Major Arcana (22 trump cards, major life themes) or Minor Arcana (56 suit cards, daily situations).
|
|
20974
|
-
*/
|
|
20975
|
-
arcana: 'major' | 'minor';
|
|
20976
|
-
/**
|
|
20977
|
-
* True if the card was drawn reversed (upside down). Reversed cards carry modified or blocked energy compared to upright position.
|
|
20978
|
-
*/
|
|
20979
|
-
reversed: boolean;
|
|
20980
|
-
/**
|
|
20981
|
-
* Key themes and concepts associated with this card in its current orientation (upright or reversed).
|
|
20982
|
-
*/
|
|
20983
|
-
keywords: Array<string>;
|
|
20984
|
-
/**
|
|
20985
|
-
* Full interpretation of this card in its current orientation.
|
|
20986
|
-
*/
|
|
20987
|
-
meaning: string;
|
|
20988
|
-
/**
|
|
20989
|
-
* URL to the tarot card artwork image.
|
|
20990
|
-
*/
|
|
20991
|
-
imageUrl: string;
|
|
20992
|
-
};
|
|
21409
|
+
card: DrawnCard;
|
|
20993
21410
|
}>;
|
|
20994
21411
|
/**
|
|
20995
21412
|
* AI-generated narrative connecting all cards in the spread into a cohesive reading.
|
|
@@ -21170,36 +21587,7 @@ export type PostTarotSpreadsCustomResponses = {
|
|
|
21170
21587
|
* Position-specific interpretation of the drawn card, explaining how this card meaning applies to this particular spread position.
|
|
21171
21588
|
*/
|
|
21172
21589
|
interpretation: string;
|
|
21173
|
-
card:
|
|
21174
|
-
/**
|
|
21175
|
-
* Unique card identifier in kebab-case (e.g. the-fool, ace-of-cups).
|
|
21176
|
-
*/
|
|
21177
|
-
id: string;
|
|
21178
|
-
/**
|
|
21179
|
-
* Display name of the tarot card.
|
|
21180
|
-
*/
|
|
21181
|
-
name: string;
|
|
21182
|
-
/**
|
|
21183
|
-
* Whether this card belongs to the Major Arcana (22 trump cards, major life themes) or Minor Arcana (56 suit cards, daily situations).
|
|
21184
|
-
*/
|
|
21185
|
-
arcana: 'major' | 'minor';
|
|
21186
|
-
/**
|
|
21187
|
-
* True if the card was drawn reversed (upside down). Reversed cards carry modified or blocked energy compared to upright position.
|
|
21188
|
-
*/
|
|
21189
|
-
reversed: boolean;
|
|
21190
|
-
/**
|
|
21191
|
-
* Key themes and concepts associated with this card in its current orientation (upright or reversed).
|
|
21192
|
-
*/
|
|
21193
|
-
keywords: Array<string>;
|
|
21194
|
-
/**
|
|
21195
|
-
* Full interpretation of this card in its current orientation.
|
|
21196
|
-
*/
|
|
21197
|
-
meaning: string;
|
|
21198
|
-
/**
|
|
21199
|
-
* URL to the tarot card artwork image.
|
|
21200
|
-
*/
|
|
21201
|
-
imageUrl: string;
|
|
21202
|
-
};
|
|
21590
|
+
card: DrawnCard;
|
|
21203
21591
|
}>;
|
|
21204
21592
|
/**
|
|
21205
21593
|
* AI-generated narrative connecting all cards in the spread into a cohesive reading.
|