@astroway/sdk 1.3.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +3 -3
- package/dist/namespaces.generated.d.ts +148 -6
- package/dist/namespaces.generated.d.ts.map +1 -1
- package/dist/namespaces.generated.js +90 -3
- package/dist/namespaces.generated.js.map +1 -1
- package/dist/types.generated.d.ts +11843 -8243
- package/dist/types.generated.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -115,9 +115,9 @@ export declare function createAstroway(options: AstrowayOptions): AstrowayClient
|
|
|
115
115
|
* `client` and unwrap the `{ ok, data, error }` envelope, returning `data`
|
|
116
116
|
* directly. Errors throw classified subclasses of `ApiError`.
|
|
117
117
|
*
|
|
118
|
-
* The raw `client` (`aw.client.POST(...)
|
|
119
|
-
* available as escape
|
|
120
|
-
* an endpoint not yet covered by namespaces.
|
|
118
|
+
* The raw `client` (`aw.client.POST(...)`, `aw.client.GET(...)`) remains
|
|
119
|
+
* available as an escape hatch when you need the full envelope or want to call
|
|
120
|
+
* an endpoint not yet covered by namespaces (GET operations are not namespaced).
|
|
121
121
|
*/
|
|
122
122
|
export interface Astroway extends AstrowayNamespaces {
|
|
123
123
|
}
|
|
@@ -25,6 +25,20 @@ type PostData<P extends keyof paths> = paths[P] extends {
|
|
|
25
25
|
} ? (T extends {
|
|
26
26
|
data?: infer D;
|
|
27
27
|
} ? D : T) : unknown;
|
|
28
|
+
/** Same, for a GET lookup. These take no body and no query parameters. */
|
|
29
|
+
type GetData<P extends keyof paths> = paths[P] extends {
|
|
30
|
+
get: {
|
|
31
|
+
responses: {
|
|
32
|
+
200: {
|
|
33
|
+
content: {
|
|
34
|
+
'application/json': infer T;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
} ? (T extends {
|
|
40
|
+
data?: infer D;
|
|
41
|
+
} ? D : T) : unknown;
|
|
28
42
|
/** Per-call options passed through to openapi-fetch. */
|
|
29
43
|
export interface CallOptions {
|
|
30
44
|
/** Extra headers merged into the request. */
|
|
@@ -46,11 +60,17 @@ export interface CallOptions {
|
|
|
46
60
|
}
|
|
47
61
|
export interface AstrowayNamespaces {
|
|
48
62
|
acg: {
|
|
63
|
+
/** A*C*G by Life Category (POST /acg/by-category) */
|
|
64
|
+
byCategory(body: PostBody<'/acg/by-category'>, options?: CallOptions): ResultPromise<PostData<'/acg/by-category'>>;
|
|
65
|
+
/** A*C*G Life Categories (GET /acg/categories) */
|
|
66
|
+
categoriesGet(options?: CallOptions): ResultPromise<GetData<'/acg/categories'>>;
|
|
49
67
|
/** Astrocartography (A*C*G) (POST /acg) */
|
|
50
68
|
compute(body: PostBody<'/acg'>, options?: CallOptions): ResultPromise<PostData<'/acg'>>;
|
|
69
|
+
/** A*C*G Line Report (POST /acg/line-report) */
|
|
70
|
+
lineReport(body: PostBody<'/acg/line-report'>, options?: CallOptions): ResultPromise<PostData<'/acg/line-report'>>;
|
|
51
71
|
};
|
|
52
72
|
acgZones: {
|
|
53
|
-
/** A*C*G
|
|
73
|
+
/** A*C*G Lines Near a Point (POST /acg-zones) */
|
|
54
74
|
compute(body: PostBody<'/acg-zones'>, options?: CallOptions): ResultPromise<PostData<'/acg-zones'>>;
|
|
55
75
|
};
|
|
56
76
|
ai: {
|
|
@@ -162,6 +182,10 @@ export interface AstrowayNamespaces {
|
|
|
162
182
|
fengShuiKua(body: PostBody<'/chinese/feng-shui/kua'>, options?: CallOptions): ResultPromise<PostData<'/chinese/feng-shui/kua'>>;
|
|
163
183
|
/** Lucky / Unlucky Directions (POST /chinese/feng-shui/lucky-directions) */
|
|
164
184
|
fengShuiLuckyDirections(body: PostBody<'/chinese/feng-shui/lucky-directions'>, options?: CallOptions): ResultPromise<PostData<'/chinese/feng-shui/lucky-directions'>>;
|
|
185
|
+
/** Gregorian to Lunar Date (POST /chinese/lunar-date) */
|
|
186
|
+
lunarDate(body: PostBody<'/chinese/lunar-date'>, options?: CallOptions): ResultPromise<PostData<'/chinese/lunar-date'>>;
|
|
187
|
+
/** 24 Solar Terms (節氣) (POST /chinese/solar-terms) */
|
|
188
|
+
solarTerms(body: PostBody<'/chinese/solar-terms'>, options?: CallOptions): ResultPromise<PostData<'/chinese/solar-terms'>>;
|
|
165
189
|
/** Chinese Zodiac Animal (POST /chinese/zodiac/animal) */
|
|
166
190
|
zodiacAnimal(body: PostBody<'/chinese/zodiac/animal'>, options?: CallOptions): ResultPromise<PostData<'/chinese/zodiac/animal'>>;
|
|
167
191
|
/** Animal Compatibility (POST /chinese/zodiac/compatibility) */
|
|
@@ -244,10 +268,20 @@ export interface AstrowayNamespaces {
|
|
|
244
268
|
esoteric: {
|
|
245
269
|
/** Decode Angel Number (POST /esoteric/angel-numbers/decode) */
|
|
246
270
|
angelNumbersDecode(body: PostBody<'/esoteric/angel-numbers/decode'>, options?: CallOptions): ResultPromise<PostData<'/esoteric/angel-numbers/decode'>>;
|
|
271
|
+
/** Angel Numbers — Catalogue (GET /esoteric/angel-numbers) */
|
|
272
|
+
angelNumbersGet(options?: CallOptions): ResultPromise<GetData<'/esoteric/angel-numbers'>>;
|
|
273
|
+
/** Daily Angel Number (GET /esoteric/angel-numbers/today) */
|
|
274
|
+
angelNumbersTodayGet(options?: CallOptions): ResultPromise<GetData<'/esoteric/angel-numbers/today'>>;
|
|
275
|
+
/** Crystals — Full Directory (GET /esoteric/crystals) */
|
|
276
|
+
crystalsGet(options?: CallOptions): ResultPromise<GetData<'/esoteric/crystals'>>;
|
|
247
277
|
/** Crystal Recommendations (POST /esoteric/crystals/recommend) */
|
|
248
278
|
crystalsRecommend(body: PostBody<'/esoteric/crystals/recommend'>, options?: CallOptions): ResultPromise<PostData<'/esoteric/crystals/recommend'>>;
|
|
249
279
|
/** Decode Dream Text (POST /esoteric/dreams/decode) */
|
|
250
280
|
dreamsDecode(body: PostBody<'/esoteric/dreams/decode'>, options?: CallOptions): ResultPromise<PostData<'/esoteric/dreams/decode'>>;
|
|
281
|
+
/** Dream Symbol Dictionary (GET /esoteric/dreams) */
|
|
282
|
+
dreamsGet(options?: CallOptions): ResultPromise<GetData<'/esoteric/dreams'>>;
|
|
283
|
+
/** Recurring Dream Themes (GET /esoteric/dreams/recurring-themes) */
|
|
284
|
+
dreamsRecurringThemesGet(options?: CallOptions): ResultPromise<GetData<'/esoteric/dreams/recurring-themes'>>;
|
|
251
285
|
};
|
|
252
286
|
essentialDignities: {
|
|
253
287
|
/** Essential Dignities (POST /essential-dignities) */
|
|
@@ -541,10 +575,6 @@ export interface AstrowayNamespaces {
|
|
|
541
575
|
/** Transits Interpretation (POST /interpret/transits) */
|
|
542
576
|
transits(body: PostBody<'/interpret/transits'>, options?: CallOptions): ResultPromise<PostData<'/interpret/transits'>>;
|
|
543
577
|
};
|
|
544
|
-
keys: {
|
|
545
|
-
/** Create API Key (POST /keys) */
|
|
546
|
-
compute(body: PostBody<'/keys'>, options?: CallOptions): ResultPromise<PostData<'/keys'>>;
|
|
547
|
-
};
|
|
548
578
|
localSpace: {
|
|
549
579
|
/** Local Space Chart (POST /local-space) */
|
|
550
580
|
compute(body: PostBody<'/local-space'>, options?: CallOptions): ResultPromise<PostData<'/local-space'>>;
|
|
@@ -559,6 +589,10 @@ export interface AstrowayNamespaces {
|
|
|
559
589
|
/** Lunar Return (POST /lunar-return) */
|
|
560
590
|
compute(body: PostBody<'/lunar-return'>, options?: CallOptions): ResultPromise<PostData<'/lunar-return'>>;
|
|
561
591
|
};
|
|
592
|
+
match: {
|
|
593
|
+
/** Match Score (dating compatibility) (POST /match/score) */
|
|
594
|
+
score(body: PostBody<'/match/score'>, options?: CallOptions): ResultPromise<PostData<'/match/score'>>;
|
|
595
|
+
};
|
|
562
596
|
mayan: {
|
|
563
597
|
/** Calendar Round (POST /mayan/calendar-round) */
|
|
564
598
|
calendarRound(body: PostBody<'/mayan/calendar-round'>, options?: CallOptions): ResultPromise<PostData<'/mayan/calendar-round'>>;
|
|
@@ -580,6 +614,8 @@ export interface AstrowayNamespaces {
|
|
|
580
614
|
mcp: {
|
|
581
615
|
/** MCP Agent Debate (POST /mcp/agent-debate) */
|
|
582
616
|
agentDebate(body: PostBody<'/mcp/agent-debate'>, options?: CallOptions): ResultPromise<PostData<'/mcp/agent-debate'>>;
|
|
617
|
+
/** MCP Agent Pool Status (GET /mcp/agent-pool-status) */
|
|
618
|
+
agentPoolStatusGet(options?: CallOptions): ResultPromise<GetData<'/mcp/agent-pool-status'>>;
|
|
583
619
|
/** MCP Multi-Agent Coordinate (POST /mcp/multi-agent-coordinate) */
|
|
584
620
|
multiAgentCoordinate(body: PostBody<'/mcp/multi-agent-coordinate'>, options?: CallOptions): ResultPromise<PostData<'/mcp/multi-agent-coordinate'>>;
|
|
585
621
|
/** MCP Multi-Chart Context (POST /mcp/multi-chart-context) */
|
|
@@ -590,6 +626,8 @@ export interface AstrowayNamespaces {
|
|
|
590
626
|
streaming(body: PostBody<'/mcp/streaming'>, options?: CallOptions): ResultPromise<PostData<'/mcp/streaming'>>;
|
|
591
627
|
/** MCP Tool-Call Stream (POST /mcp/tool-call-stream) */
|
|
592
628
|
toolCallStream(body: PostBody<'/mcp/tool-call-stream'>, options?: CallOptions): ResultPromise<PostData<'/mcp/tool-call-stream'>>;
|
|
629
|
+
/** MCP Tools List (GET /mcp/tools-list) */
|
|
630
|
+
toolsListGet(options?: CallOptions): ResultPromise<GetData<'/mcp/tools-list'>>;
|
|
593
631
|
};
|
|
594
632
|
midpointTrees: {
|
|
595
633
|
/** Midpoint Trees (Uranian) (POST /midpoint-trees) */
|
|
@@ -647,6 +685,10 @@ export interface AstrowayNamespaces {
|
|
|
647
685
|
/** Moon Void-of-Course (POST /moon-voc) */
|
|
648
686
|
compute(body: PostBody<'/moon-voc'>, options?: CallOptions): ResultPromise<PostData<'/moon-voc'>>;
|
|
649
687
|
};
|
|
688
|
+
muhurta: {
|
|
689
|
+
/** Muhurat — activity catalogue (GET /muhurta/types) */
|
|
690
|
+
typesGet(options?: CallOptions): ResultPromise<GetData<'/muhurta/types'>>;
|
|
691
|
+
};
|
|
650
692
|
nakshatras: {
|
|
651
693
|
/** Nakshatras (POST /nakshatras) */
|
|
652
694
|
compute(body: PostBody<'/nakshatras'>, options?: CallOptions): ResultPromise<PostData<'/nakshatras'>>;
|
|
@@ -849,6 +891,36 @@ export interface AstrowayNamespaces {
|
|
|
849
891
|
/** Trutine of Hermes (POST /rectification/trutine) */
|
|
850
892
|
trutine(body: PostBody<'/rectification/trutine'>, options?: CallOptions): ResultPromise<PostData<'/rectification/trutine'>>;
|
|
851
893
|
};
|
|
894
|
+
reference: {
|
|
895
|
+
/** Aspects (GET /reference/aspects) */
|
|
896
|
+
aspectsGet(options?: CallOptions): ResultPromise<GetData<'/reference/aspects'>>;
|
|
897
|
+
/** Asteroids & Centaurs (GET /reference/asteroids) */
|
|
898
|
+
asteroidsGet(options?: CallOptions): ResultPromise<GetData<'/reference/asteroids'>>;
|
|
899
|
+
/** Decans (GET /reference/decans) */
|
|
900
|
+
decansGet(options?: CallOptions): ResultPromise<GetData<'/reference/decans'>>;
|
|
901
|
+
/** Essential Dignities (GET /reference/dignities) */
|
|
902
|
+
dignitiesGet(options?: CallOptions): ResultPromise<GetData<'/reference/dignities'>>;
|
|
903
|
+
/** Elements (GET /reference/elements) */
|
|
904
|
+
elementsGet(options?: CallOptions): ResultPromise<GetData<'/reference/elements'>>;
|
|
905
|
+
/** Glyphs (GET /reference/glyphs) */
|
|
906
|
+
glyphsGet(options?: CallOptions): ResultPromise<GetData<'/reference/glyphs'>>;
|
|
907
|
+
/** Houses (GET /reference/houses) */
|
|
908
|
+
housesGet(options?: CallOptions): ResultPromise<GetData<'/reference/houses'>>;
|
|
909
|
+
/** Hellenistic Lots (GET /reference/lots) */
|
|
910
|
+
lotsGet(options?: CallOptions): ResultPromise<GetData<'/reference/lots'>>;
|
|
911
|
+
/** Modalities (GET /reference/modalities) */
|
|
912
|
+
modalitiesGet(options?: CallOptions): ResultPromise<GetData<'/reference/modalities'>>;
|
|
913
|
+
/** Nakshatras (GET /reference/nakshatras) */
|
|
914
|
+
nakshatrasGet(options?: CallOptions): ResultPromise<GetData<'/reference/nakshatras'>>;
|
|
915
|
+
/** Planets (GET /reference/planets) */
|
|
916
|
+
planetsGet(options?: CallOptions): ResultPromise<GetData<'/reference/planets'>>;
|
|
917
|
+
/** Polarities (GET /reference/polarities) */
|
|
918
|
+
polaritiesGet(options?: CallOptions): ResultPromise<GetData<'/reference/polarities'>>;
|
|
919
|
+
/** Zodiac Signs (GET /reference/signs) */
|
|
920
|
+
signsGet(options?: CallOptions): ResultPromise<GetData<'/reference/signs'>>;
|
|
921
|
+
/** Zodiac Systems (GET /reference/zodiac-systems) */
|
|
922
|
+
zodiacSystemsGet(options?: CallOptions): ResultPromise<GetData<'/reference/zodiac-systems'>>;
|
|
923
|
+
};
|
|
852
924
|
relocation: {
|
|
853
925
|
/** Relocation Chart (POST /relocation) */
|
|
854
926
|
compute(body: PostBody<'/relocation'>, options?: CallOptions): ResultPromise<PostData<'/relocation'>>;
|
|
@@ -902,6 +974,8 @@ export interface AstrowayNamespaces {
|
|
|
902
974
|
child(body: PostBody<'/reports/child'>, options?: CallOptions): ResultPromise<PostData<'/reports/child'>>;
|
|
903
975
|
/** Generate Report — Unified Dispatcher (V2) (POST /reports/generate) */
|
|
904
976
|
generate(body: PostBody<'/reports/generate'>, options?: CallOptions): ResultPromise<PostData<'/reports/generate'>>;
|
|
977
|
+
/** List Recent Report Exports (GET /reports/history) */
|
|
978
|
+
historyGet(options?: CallOptions): ResultPromise<GetData<'/reports/history'>>;
|
|
905
979
|
/** Generate Human Design Report (PDF or HTML) (POST /reports/human-design) */
|
|
906
980
|
humanDesign(body: PostBody<'/reports/human-design'>, options?: CallOptions): ResultPromise<PostData<'/reports/human-design'>>;
|
|
907
981
|
/** Generate Lal Kitab Report (PDF or HTML) (POST /reports/lal-kitab) */
|
|
@@ -910,8 +984,12 @@ export interface AstrowayNamespaces {
|
|
|
910
984
|
love(body: PostBody<'/reports/love'>, options?: CallOptions): ResultPromise<PostData<'/reports/love'>>;
|
|
911
985
|
/** Generate Money Report (PDF or HTML) (POST /reports/money) */
|
|
912
986
|
money(body: PostBody<'/reports/money'>, options?: CallOptions): ResultPromise<PostData<'/reports/money'>>;
|
|
987
|
+
/** Generate Muhurta Report (PDF or HTML) (POST /reports/muhurta) */
|
|
988
|
+
muhurta(body: PostBody<'/reports/muhurta'>, options?: CallOptions): ResultPromise<PostData<'/reports/muhurta'>>;
|
|
913
989
|
/** Generate Natal Report (PDF or HTML) (POST /reports/natal) */
|
|
914
990
|
natal(body: PostBody<'/reports/natal'>, options?: CallOptions): ResultPromise<PostData<'/reports/natal'>>;
|
|
991
|
+
/** Generate Stellaforge Birth-Chart Poster (PDF or HTML) (POST /reports/stellaforge) */
|
|
992
|
+
stellaforge(body: PostBody<'/reports/stellaforge'>, options?: CallOptions): ResultPromise<PostData<'/reports/stellaforge'>>;
|
|
915
993
|
/** Generate Synastry Report (PDF or HTML) (POST /reports/synastry) */
|
|
916
994
|
synastry(body: PostBody<'/reports/synastry'>, options?: CallOptions): ResultPromise<PostData<'/reports/synastry'>>;
|
|
917
995
|
/** Generate Tarot Reading (PDF or HTML) (POST /reports/tarot) */
|
|
@@ -992,6 +1070,8 @@ export interface AstrowayNamespaces {
|
|
|
992
1070
|
houseOverlay(body: PostBody<'/synastry/house-overlay'>, options?: CallOptions): ResultPromise<PostData<'/synastry/house-overlay'>>;
|
|
993
1071
|
};
|
|
994
1072
|
tarot: {
|
|
1073
|
+
/** Lenormand — All Cards (GET /tarot/lenormand/cards) */
|
|
1074
|
+
lenormandCardsGet(options?: CallOptions): ResultPromise<GetData<'/tarot/lenormand/cards'>>;
|
|
995
1075
|
/** Lenormand — Daily Cards (POST /tarot/lenormand/daily) */
|
|
996
1076
|
lenormandDaily(body: PostBody<'/tarot/lenormand/daily'>, options?: CallOptions): ResultPromise<PostData<'/tarot/lenormand/daily'>>;
|
|
997
1077
|
/** Lenormand — 9-Card Square (POST /tarot/lenormand/draw/9-card-square) */
|
|
@@ -1006,8 +1086,12 @@ export interface AstrowayNamespaces {
|
|
|
1006
1086
|
lenormandDrawRelationship(body: PostBody<'/tarot/lenormand/draw/relationship'>, options?: CallOptions): ResultPromise<PostData<'/tarot/lenormand/draw/relationship'>>;
|
|
1007
1087
|
/** Lenormand — Three-Card (POST /tarot/lenormand/draw/three-card) */
|
|
1008
1088
|
lenormandDrawThreeCard(body: PostBody<'/tarot/lenormand/draw/three-card'>, options?: CallOptions): ResultPromise<PostData<'/tarot/lenormand/draw/three-card'>>;
|
|
1089
|
+
/** Lenormand — 36 Houses (GET /tarot/lenormand/houses) */
|
|
1090
|
+
lenormandHousesGet(options?: CallOptions): ResultPromise<GetData<'/tarot/lenormand/houses'>>;
|
|
1009
1091
|
/** Marseille — Birth Card (POST /tarot/marseille/birth-card) */
|
|
1010
1092
|
marseilleBirthCard(body: PostBody<'/tarot/marseille/birth-card'>, options?: CallOptions): ResultPromise<PostData<'/tarot/marseille/birth-card'>>;
|
|
1093
|
+
/** Marseille — All Cards (GET /tarot/marseille/cards) */
|
|
1094
|
+
marseilleCardsGet(options?: CallOptions): ResultPromise<GetData<'/tarot/marseille/cards'>>;
|
|
1011
1095
|
/** Marseille — Clarifier (POST /tarot/marseille/clarify) */
|
|
1012
1096
|
marseilleClarify(body: PostBody<'/tarot/marseille/clarify'>, options?: CallOptions): ResultPromise<PostData<'/tarot/marseille/clarify'>>;
|
|
1013
1097
|
/** Marseille — Daily Card (POST /tarot/marseille/daily) */
|
|
@@ -1034,6 +1118,10 @@ export interface AstrowayNamespaces {
|
|
|
1034
1118
|
marseilleDrawThreeCard(body: PostBody<'/tarot/marseille/draw/three-card'>, options?: CallOptions): ResultPromise<PostData<'/tarot/marseille/draw/three-card'>>;
|
|
1035
1119
|
/** Marseille — Interpret (POST /tarot/marseille/interpret) */
|
|
1036
1120
|
marseilleInterpret(body: PostBody<'/tarot/marseille/interpret'>, options?: CallOptions): ResultPromise<PostData<'/tarot/marseille/interpret'>>;
|
|
1121
|
+
/** Marseille — 22 Majors (GET /tarot/marseille/majors) */
|
|
1122
|
+
marseilleMajorsGet(options?: CallOptions): ResultPromise<GetData<'/tarot/marseille/majors'>>;
|
|
1123
|
+
/** Marseille — All Spreads (GET /tarot/marseille/spreads) */
|
|
1124
|
+
marseilleSpreadsGet(options?: CallOptions): ResultPromise<GetData<'/tarot/marseille/spreads'>>;
|
|
1037
1125
|
/** Marseille — Timing (POST /tarot/marseille/timing) */
|
|
1038
1126
|
marseilleTiming(body: PostBody<'/tarot/marseille/timing'>, options?: CallOptions): ResultPromise<PostData<'/tarot/marseille/timing'>>;
|
|
1039
1127
|
/** Marseille — Year Card (POST /tarot/marseille/year-card) */
|
|
@@ -1042,8 +1130,12 @@ export interface AstrowayNamespaces {
|
|
|
1042
1130
|
riderWaiteAdvice(body: PostBody<'/tarot/rider-waite/advice'>, options?: CallOptions): ResultPromise<PostData<'/tarot/rider-waite/advice'>>;
|
|
1043
1131
|
/** RWS — Birth Card (POST /tarot/rider-waite/birth-card) */
|
|
1044
1132
|
riderWaiteBirthCard(body: PostBody<'/tarot/rider-waite/birth-card'>, options?: CallOptions): ResultPromise<PostData<'/tarot/rider-waite/birth-card'>>;
|
|
1133
|
+
/** RWS — All Cards (GET /tarot/rider-waite/cards) */
|
|
1134
|
+
riderWaiteCardsGet(options?: CallOptions): ResultPromise<GetData<'/tarot/rider-waite/cards'>>;
|
|
1045
1135
|
/** RWS — Clarifier Card (POST /tarot/rider-waite/clarify) */
|
|
1046
1136
|
riderWaiteClarify(body: PostBody<'/tarot/rider-waite/clarify'>, options?: CallOptions): ResultPromise<PostData<'/tarot/rider-waite/clarify'>>;
|
|
1137
|
+
/** RWS — 16 Court Cards (GET /tarot/rider-waite/courts) */
|
|
1138
|
+
riderWaiteCourtsGet(options?: CallOptions): ResultPromise<GetData<'/tarot/rider-waite/courts'>>;
|
|
1047
1139
|
/** RWS — Court Card Cross-Sum (POST /tarot/rider-waite/cross-sum) */
|
|
1048
1140
|
riderWaiteCrossSum(body: PostBody<'/tarot/rider-waite/cross-sum'>, options?: CallOptions): ResultPromise<PostData<'/tarot/rider-waite/cross-sum'>>;
|
|
1049
1141
|
/** RWS — Daily Card (POST /tarot/rider-waite/daily) */
|
|
@@ -1074,6 +1166,10 @@ export interface AstrowayNamespaces {
|
|
|
1074
1166
|
riderWaiteDrawYearAhead(body: PostBody<'/tarot/rider-waite/draw/year-ahead'>, options?: CallOptions): ResultPromise<PostData<'/tarot/rider-waite/draw/year-ahead'>>;
|
|
1075
1167
|
/** RWS — Interpret a Hand (POST /tarot/rider-waite/interpret) */
|
|
1076
1168
|
riderWaiteInterpret(body: PostBody<'/tarot/rider-waite/interpret'>, options?: CallOptions): ResultPromise<PostData<'/tarot/rider-waite/interpret'>>;
|
|
1169
|
+
/** RWS — 22 Majors (GET /tarot/rider-waite/majors) */
|
|
1170
|
+
riderWaiteMajorsGet(options?: CallOptions): ResultPromise<GetData<'/tarot/rider-waite/majors'>>;
|
|
1171
|
+
/** RWS — 40 Minors (GET /tarot/rider-waite/minors) */
|
|
1172
|
+
riderWaiteMinorsGet(options?: CallOptions): ResultPromise<GetData<'/tarot/rider-waite/minors'>>;
|
|
1077
1173
|
/** RWS — Missing Info Card (POST /tarot/rider-waite/missing-info) */
|
|
1078
1174
|
riderWaiteMissingInfo(body: PostBody<'/tarot/rider-waite/missing-info'>, options?: CallOptions): ResultPromise<PostData<'/tarot/rider-waite/missing-info'>>;
|
|
1079
1175
|
/** RWS — Outcome Card (POST /tarot/rider-waite/outcome) */
|
|
@@ -1082,6 +1178,8 @@ export interface AstrowayNamespaces {
|
|
|
1082
1178
|
riderWaiteShadowCard(body: PostBody<'/tarot/rider-waite/shadow-card'>, options?: CallOptions): ResultPromise<PostData<'/tarot/rider-waite/shadow-card'>>;
|
|
1083
1179
|
/** RWS — Soul + Personality (POST /tarot/rider-waite/soul-personality-card) */
|
|
1084
1180
|
riderWaiteSoulPersonalityCard(body: PostBody<'/tarot/rider-waite/soul-personality-card'>, options?: CallOptions): ResultPromise<PostData<'/tarot/rider-waite/soul-personality-card'>>;
|
|
1181
|
+
/** RWS — All Spreads (GET /tarot/rider-waite/spreads) */
|
|
1182
|
+
riderWaiteSpreadsGet(options?: CallOptions): ResultPromise<GetData<'/tarot/rider-waite/spreads'>>;
|
|
1085
1183
|
/** RWS — Timing Card (POST /tarot/rider-waite/timing) */
|
|
1086
1184
|
riderWaiteTiming(body: PostBody<'/tarot/rider-waite/timing'>, options?: CallOptions): ResultPromise<PostData<'/tarot/rider-waite/timing'>>;
|
|
1087
1185
|
/** RWS — Year Card (POST /tarot/rider-waite/year-card) */
|
|
@@ -1099,7 +1197,17 @@ export interface AstrowayNamespaces {
|
|
|
1099
1197
|
/** Transits (POST /transits) */
|
|
1100
1198
|
compute(body: PostBody<'/transits'>, options?: CallOptions): ResultPromise<PostData<'/transits'>>;
|
|
1101
1199
|
};
|
|
1200
|
+
translate: {
|
|
1201
|
+
/** Translate (astro-aware) (POST /translate/astro) */
|
|
1202
|
+
astro(body: PostBody<'/translate/astro'>, options?: CallOptions): ResultPromise<PostData<'/translate/astro'>>;
|
|
1203
|
+
/** Translate batch (POST /translate/batch) */
|
|
1204
|
+
batch(body: PostBody<'/translate/batch'>, options?: CallOptions): ResultPromise<PostData<'/translate/batch'>>;
|
|
1205
|
+
/** Supported languages (GET /translate/languages) */
|
|
1206
|
+
languagesGet(options?: CallOptions): ResultPromise<GetData<'/translate/languages'>>;
|
|
1207
|
+
};
|
|
1102
1208
|
vedic: {
|
|
1209
|
+
/** Bhava Bala — house strength (POST /vedic/bhavabala) */
|
|
1210
|
+
bhavabala(body: PostBody<'/vedic/bhavabala'>, options?: CallOptions): ResultPromise<PostData<'/vedic/bhavabala'>>;
|
|
1103
1211
|
/** Compatibility — Ashtakoot Guna Milan (8-fold 36-point) (POST /vedic/compatibility/ashtakoot) */
|
|
1104
1212
|
compatibilityAshtakoot(body: PostBody<'/vedic/compatibility/ashtakoot'>, options?: CallOptions): ResultPromise<PostData<'/vedic/compatibility/ashtakoot'>>;
|
|
1105
1213
|
/** Compatibility — Bhrigu-match (7H placement) (POST /vedic/compatibility/bhrigu-match) */
|
|
@@ -1444,6 +1552,8 @@ export interface AstrowayNamespaces {
|
|
|
1444
1552
|
dashaChange(body: PostBody<'/webhooks/dasha-change'>, options?: CallOptions): ResultPromise<PostData<'/webhooks/dasha-change'>>;
|
|
1445
1553
|
/** Register Eclipse-Alert Webhook (POST /webhooks/eclipse-alert) */
|
|
1446
1554
|
eclipseAlert(body: PostBody<'/webhooks/eclipse-alert'>, options?: CallOptions): ResultPromise<PostData<'/webhooks/eclipse-alert'>>;
|
|
1555
|
+
/** List Webhook Subscriptions (GET /webhooks) */
|
|
1556
|
+
get(options?: CallOptions): ResultPromise<GetData<'/webhooks'>>;
|
|
1447
1557
|
/** Register Mahadasha-End Webhook (POST /webhooks/mahadasha-end) */
|
|
1448
1558
|
mahadashaEnd(body: PostBody<'/webhooks/mahadasha-end'>, options?: CallOptions): ResultPromise<PostData<'/webhooks/mahadasha-end'>>;
|
|
1449
1559
|
/** Register Planetary-Hour-Tick Webhook (POST /webhooks/planetary-hour-tick) */
|
|
@@ -1464,6 +1574,8 @@ export interface AstrowayNamespaces {
|
|
|
1464
1574
|
voidOfCourseStart(body: PostBody<'/webhooks/void-of-course-start'>, options?: CallOptions): ResultPromise<PostData<'/webhooks/void-of-course-start'>>;
|
|
1465
1575
|
};
|
|
1466
1576
|
wellness: {
|
|
1577
|
+
/** Biorhythm (JSON) (POST /wellness/biorhythm) */
|
|
1578
|
+
biorhythm(body: PostBody<'/wellness/biorhythm'>, options?: CallOptions): ResultPromise<PostData<'/wellness/biorhythm'>>;
|
|
1467
1579
|
/** Healing Crystals by Sign (POST /wellness/crystals) */
|
|
1468
1580
|
crystals(body: PostBody<'/wellness/crystals'>, options?: CallOptions): ResultPromise<PostData<'/wellness/crystals'>>;
|
|
1469
1581
|
/** Wellness Cycle Milestones (POST /wellness/cycle) */
|
|
@@ -1484,6 +1596,8 @@ export interface AstrowayNamespaces {
|
|
|
1484
1596
|
yoga(body: PostBody<'/wellness/yoga'>, options?: CallOptions): ResultPromise<PostData<'/wellness/yoga'>>;
|
|
1485
1597
|
};
|
|
1486
1598
|
whitelabel: {
|
|
1599
|
+
/** Get White-label Config (GET /whitelabel/config) */
|
|
1600
|
+
configGet(options?: CallOptions): ResultPromise<GetData<'/whitelabel/config'>>;
|
|
1487
1601
|
/** Verify Custom Domain DNS (POST /whitelabel/domain/verify) */
|
|
1488
1602
|
domainVerify(body: PostBody<'/whitelabel/domain/verify'>, options?: CallOptions): ResultPromise<PostData<'/whitelabel/domain/verify'>>;
|
|
1489
1603
|
/** Upload White-label Logo (POST /whitelabel/logo) */
|
|
@@ -1496,6 +1610,8 @@ export interface AstrowayNamespaces {
|
|
|
1496
1610
|
compute(body: PostBody<'/zenith'>, options?: CallOptions): ResultPromise<PostData<'/zenith'>>;
|
|
1497
1611
|
};
|
|
1498
1612
|
ziwei: {
|
|
1613
|
+
/** Four Transformations (四化) (POST /ziwei/four-transformations) */
|
|
1614
|
+
fourTransformations(body: PostBody<'/ziwei/four-transformations'>, options?: CallOptions): ResultPromise<PostData<'/ziwei/four-transformations'>>;
|
|
1499
1615
|
/** Full Chart (MVP) (POST /ziwei/full-chart) */
|
|
1500
1616
|
fullChart(body: PostBody<'/ziwei/full-chart'>, options?: CallOptions): ResultPromise<PostData<'/ziwei/full-chart'>>;
|
|
1501
1617
|
/** 14 Main Stars (POST /ziwei/main-stars) */
|
|
@@ -1506,7 +1622,7 @@ export interface AstrowayNamespaces {
|
|
|
1506
1622
|
palaceChildren(body: PostBody<'/ziwei/palace-children'>, options?: CallOptions): ResultPromise<PostData<'/ziwei/palace-children'>>;
|
|
1507
1623
|
/** Destiny Palace (Ming) (POST /ziwei/palace-destiny) */
|
|
1508
1624
|
palaceDestiny(body: PostBody<'/ziwei/palace-destiny'>, options?: CallOptions): ResultPromise<PostData<'/ziwei/palace-destiny'>>;
|
|
1509
|
-
/** Health Palace (
|
|
1625
|
+
/** Health Palace (Ji'e) (POST /ziwei/palace-health) */
|
|
1510
1626
|
palaceHealth(body: PostBody<'/ziwei/palace-health'>, options?: CallOptions): ResultPromise<PostData<'/ziwei/palace-health'>>;
|
|
1511
1627
|
/** Property Palace (Tianzhai) (POST /ziwei/palace-property) */
|
|
1512
1628
|
palaceProperty(body: PostBody<'/ziwei/palace-property'>, options?: CallOptions): ResultPromise<PostData<'/ziwei/palace-property'>>;
|
|
@@ -1521,6 +1637,32 @@ export interface AstrowayNamespaces {
|
|
|
1521
1637
|
/** 12 Palaces (POST /ziwei/twelve-palaces) */
|
|
1522
1638
|
twelvePalaces(body: PostBody<'/ziwei/twelve-palaces'>, options?: CallOptions): ResultPromise<PostData<'/ziwei/twelve-palaces'>>;
|
|
1523
1639
|
};
|
|
1640
|
+
zodiac: {
|
|
1641
|
+
/** Aquarius — Fixed Air (GET /zodiac/aquarius) */
|
|
1642
|
+
aquariusGet(options?: CallOptions): ResultPromise<GetData<'/zodiac/aquarius'>>;
|
|
1643
|
+
/** Aries — Cardinal Fire (GET /zodiac/aries) */
|
|
1644
|
+
ariesGet(options?: CallOptions): ResultPromise<GetData<'/zodiac/aries'>>;
|
|
1645
|
+
/** Cancer — Cardinal Water (GET /zodiac/cancer) */
|
|
1646
|
+
cancerGet(options?: CallOptions): ResultPromise<GetData<'/zodiac/cancer'>>;
|
|
1647
|
+
/** Capricorn — Cardinal Earth (GET /zodiac/capricorn) */
|
|
1648
|
+
capricornGet(options?: CallOptions): ResultPromise<GetData<'/zodiac/capricorn'>>;
|
|
1649
|
+
/** Gemini — Mutable Air (GET /zodiac/gemini) */
|
|
1650
|
+
geminiGet(options?: CallOptions): ResultPromise<GetData<'/zodiac/gemini'>>;
|
|
1651
|
+
/** Leo — Fixed Fire (GET /zodiac/leo) */
|
|
1652
|
+
leoGet(options?: CallOptions): ResultPromise<GetData<'/zodiac/leo'>>;
|
|
1653
|
+
/** Libra — Cardinal Air (GET /zodiac/libra) */
|
|
1654
|
+
libraGet(options?: CallOptions): ResultPromise<GetData<'/zodiac/libra'>>;
|
|
1655
|
+
/** Pisces — Mutable Water (GET /zodiac/pisces) */
|
|
1656
|
+
piscesGet(options?: CallOptions): ResultPromise<GetData<'/zodiac/pisces'>>;
|
|
1657
|
+
/** Sagittarius — Mutable Fire (GET /zodiac/sagittarius) */
|
|
1658
|
+
sagittariusGet(options?: CallOptions): ResultPromise<GetData<'/zodiac/sagittarius'>>;
|
|
1659
|
+
/** Scorpio — Fixed Water (GET /zodiac/scorpio) */
|
|
1660
|
+
scorpioGet(options?: CallOptions): ResultPromise<GetData<'/zodiac/scorpio'>>;
|
|
1661
|
+
/** Taurus — Fixed Earth (GET /zodiac/taurus) */
|
|
1662
|
+
taurusGet(options?: CallOptions): ResultPromise<GetData<'/zodiac/taurus'>>;
|
|
1663
|
+
/** Virgo — Mutable Earth (GET /zodiac/virgo) */
|
|
1664
|
+
virgoGet(options?: CallOptions): ResultPromise<GetData<'/zodiac/virgo'>>;
|
|
1665
|
+
};
|
|
1524
1666
|
}
|
|
1525
1667
|
export declare function buildNamespaces(client: AstrowayClient): AstrowayNamespaces;
|
|
1526
1668
|
export {};
|