@astroway/sdk 0.1.0-alpha.1 → 0.1.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/CHANGELOG.md +350 -0
- package/README.md +59 -31
- package/dist/cache.d.ts +101 -0
- package/dist/cache.d.ts.map +1 -0
- package/dist/cache.js +198 -0
- package/dist/cache.js.map +1 -0
- package/dist/errors.d.ts +30 -6
- package/dist/errors.d.ts.map +1 -1
- package/dist/errors.js +45 -14
- package/dist/errors.js.map +1 -1
- package/dist/helpers/birth-date-time.d.ts +76 -0
- package/dist/helpers/birth-date-time.d.ts.map +1 -0
- package/dist/helpers/birth-date-time.js +112 -0
- package/dist/helpers/birth-date-time.js.map +1 -0
- package/dist/helpers/index.d.ts +3 -0
- package/dist/helpers/index.d.ts.map +1 -0
- package/dist/helpers/index.js +3 -0
- package/dist/helpers/index.js.map +1 -0
- package/dist/idempotency.d.ts +10 -0
- package/dist/idempotency.d.ts.map +1 -0
- package/dist/idempotency.js +41 -0
- package/dist/idempotency.js.map +1 -0
- package/dist/index.d.ts +97 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +191 -3
- package/dist/index.js.map +1 -1
- package/dist/namespaces.generated.d.ts +1513 -0
- package/dist/namespaces.generated.d.ts.map +1 -0
- package/dist/namespaces.generated.js +865 -0
- package/dist/namespaces.generated.js.map +1 -0
- package/dist/runtime.d.ts +7 -0
- package/dist/runtime.d.ts.map +1 -0
- package/dist/runtime.js +31 -0
- package/dist/runtime.js.map +1 -0
- package/dist/stream.d.ts +71 -0
- package/dist/stream.d.ts.map +1 -0
- package/dist/stream.js +199 -0
- package/dist/stream.js.map +1 -0
- package/dist/testing.d.ts +133 -0
- package/dist/testing.d.ts.map +1 -0
- package/dist/testing.js +132 -0
- package/dist/testing.js.map +1 -0
- package/dist/types.generated.d.ts +784 -176
- package/dist/types.generated.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.d.ts.map +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/dist/with-response.d.ts +36 -0
- package/dist/with-response.d.ts.map +1 -0
- package/dist/with-response.js +38 -0
- package/dist/with-response.js.map +1 -0
- package/package.json +19 -3
|
@@ -0,0 +1,865 @@
|
|
|
1
|
+
// AUTO-GENERATED by scripts/generate-namespaces.mjs — DO NOT EDIT BY HAND.
|
|
2
|
+
// Run `npm run generate:namespaces` to refresh from openapi.json.
|
|
3
|
+
import { ResultPromise } from './with-response.js';
|
|
4
|
+
export function buildNamespaces(client) {
|
|
5
|
+
const call = (path, body, options) => {
|
|
6
|
+
return new ResultPromise(async () => {
|
|
7
|
+
const init = { body: body };
|
|
8
|
+
const headers = { ...(options?.headers ?? {}) };
|
|
9
|
+
if (options?.idempotencyKey !== undefined)
|
|
10
|
+
headers['Idempotency-Key'] = options.idempotencyKey;
|
|
11
|
+
if (options?.timeoutMs !== undefined && options.timeoutMs > 0) {
|
|
12
|
+
// Strip-on-arrival header consumed by the client wrapper to bound this single call.
|
|
13
|
+
headers['x-astroway-timeout-ms'] = String(options.timeoutMs);
|
|
14
|
+
}
|
|
15
|
+
if (Object.keys(headers).length > 0)
|
|
16
|
+
init.headers = headers;
|
|
17
|
+
if (options?.signal)
|
|
18
|
+
init.signal = options.signal;
|
|
19
|
+
// openapi-fetch's POST is fully typed at the call site by literal P; the cast keeps
|
|
20
|
+
// this generic helper from inflating the union of every paths[P]['post'] body shape.
|
|
21
|
+
const res = await client.POST(path, init);
|
|
22
|
+
// Unwrap the `{ ok, data, error }` envelope. Endpoints without that shape pass through.
|
|
23
|
+
const envelope = res.data;
|
|
24
|
+
const data = (envelope && typeof envelope === 'object' && 'data' in envelope) ? envelope.data : res.data;
|
|
25
|
+
return { data: data, response: res.response };
|
|
26
|
+
});
|
|
27
|
+
};
|
|
28
|
+
return {
|
|
29
|
+
acg: {
|
|
30
|
+
compute: (body, options) => call('/acg', body, options),
|
|
31
|
+
},
|
|
32
|
+
acgZones: {
|
|
33
|
+
compute: (body, options) => call('/acg-zones', body, options),
|
|
34
|
+
},
|
|
35
|
+
ai: {
|
|
36
|
+
chat: (body, options) => call('/ai/chat', body, options),
|
|
37
|
+
comparisonCoach: (body, options) => call('/ai/comparison-coach', body, options),
|
|
38
|
+
explainAspect: (body, options) => call('/ai/explain-aspect', body, options),
|
|
39
|
+
explainTransit: (body, options) => call('/ai/explain-transit', body, options),
|
|
40
|
+
},
|
|
41
|
+
algolMinimum: {
|
|
42
|
+
compute: (body, options) => call('/algol-minimum', body, options),
|
|
43
|
+
nearest: (body, options) => call('/algol-minimum/nearest', body, options),
|
|
44
|
+
},
|
|
45
|
+
almuten: {
|
|
46
|
+
compute: (body, options) => call('/almuten', body, options),
|
|
47
|
+
},
|
|
48
|
+
antiscia: {
|
|
49
|
+
compute: (body, options) => call('/antiscia', body, options),
|
|
50
|
+
},
|
|
51
|
+
arabicParts: {
|
|
52
|
+
compute: (body, options) => call('/arabic-parts', body, options),
|
|
53
|
+
},
|
|
54
|
+
ashtakavarga: {
|
|
55
|
+
compute: (body, options) => call('/ashtakavarga', body, options),
|
|
56
|
+
},
|
|
57
|
+
aspectBar: {
|
|
58
|
+
compute: (body, options) => call('/aspect-bar', body, options),
|
|
59
|
+
},
|
|
60
|
+
aspectTimeline: {
|
|
61
|
+
compute: (body, options) => call('/aspect-timeline', body, options),
|
|
62
|
+
},
|
|
63
|
+
bazi: {
|
|
64
|
+
dayMaster: (body, options) => call('/bazi/day-master', body, options),
|
|
65
|
+
elementBalance: (body, options) => call('/bazi/element-balance', body, options),
|
|
66
|
+
fourPillars: (body, options) => call('/bazi/four-pillars', body, options),
|
|
67
|
+
hourPillar: (body, options) => call('/bazi/hour-pillar', body, options),
|
|
68
|
+
luckPillars: (body, options) => call('/bazi/luck-pillars', body, options),
|
|
69
|
+
monthly: (body, options) => call('/bazi/monthly', body, options),
|
|
70
|
+
monthPillar: (body, options) => call('/bazi/month-pillar', body, options),
|
|
71
|
+
tenGods: (body, options) => call('/bazi/ten-gods', body, options),
|
|
72
|
+
yearly: (body, options) => call('/bazi/yearly', body, options),
|
|
73
|
+
yearPillar: (body, options) => call('/bazi/year-pillar', body, options),
|
|
74
|
+
yearPillarDecade: (body, options) => call('/bazi/year-pillar-decade', body, options),
|
|
75
|
+
},
|
|
76
|
+
business: {
|
|
77
|
+
customerArchetype: (body, options) => call('/business/customer-archetype', body, options),
|
|
78
|
+
electionalDay: (body, options) => call('/business/electional-day', body, options),
|
|
79
|
+
expansionTiming: (body, options) => call('/business/expansion-timing', body, options),
|
|
80
|
+
founderPersonality: (body, options) => call('/business/founder-personality', body, options),
|
|
81
|
+
foundingChart: (body, options) => call('/business/founding-chart', body, options),
|
|
82
|
+
idealIndustry: (body, options) => call('/business/ideal-industry', body, options),
|
|
83
|
+
idealPartnerSign: (body, options) => call('/business/ideal-partner-sign', body, options),
|
|
84
|
+
leadershipStyle: (body, options) => call('/business/leadership-style', body, options),
|
|
85
|
+
marketingStyle: (body, options) => call('/business/marketing-style', body, options),
|
|
86
|
+
nameSuggestions: (body, options) => call('/business/name-suggestions', body, options),
|
|
87
|
+
riskProfile: (body, options) => call('/business/risk-profile', body, options),
|
|
88
|
+
teamCompatibility: (body, options) => call('/business/team-compatibility', body, options),
|
|
89
|
+
},
|
|
90
|
+
ccgAnalysis: {
|
|
91
|
+
compute: (body, options) => call('/ccg-analysis', body, options),
|
|
92
|
+
},
|
|
93
|
+
chart: {
|
|
94
|
+
compute: (body, options) => call('/chart', body, options),
|
|
95
|
+
},
|
|
96
|
+
chinese: {
|
|
97
|
+
fengShuiBagua: (body, options) => call('/chinese/feng-shui/bagua', body, options),
|
|
98
|
+
fengShuiKua: (body, options) => call('/chinese/feng-shui/kua', body, options),
|
|
99
|
+
fengShuiLuckyDirections: (body, options) => call('/chinese/feng-shui/lucky-directions', body, options),
|
|
100
|
+
zodiacAnimal: (body, options) => call('/chinese/zodiac/animal', body, options),
|
|
101
|
+
zodiacCompatibility: (body, options) => call('/chinese/zodiac/compatibility', body, options),
|
|
102
|
+
zodiacElement: (body, options) => call('/chinese/zodiac/element', body, options),
|
|
103
|
+
zodiacInnerAnimal: (body, options) => call('/chinese/zodiac/inner-animal', body, options),
|
|
104
|
+
zodiacSecretAnimal: (body, options) => call('/chinese/zodiac/secret-animal', body, options),
|
|
105
|
+
},
|
|
106
|
+
coalescent: {
|
|
107
|
+
compute: (body, options) => call('/coalescent', body, options),
|
|
108
|
+
},
|
|
109
|
+
composite: {
|
|
110
|
+
compute: (body, options) => call('/composite', body, options),
|
|
111
|
+
},
|
|
112
|
+
cosmobiology: {
|
|
113
|
+
cosmogram: (body, options) => call('/cosmobiology/cosmogram', body, options),
|
|
114
|
+
dial90: (body, options) => call('/cosmobiology/dial-90', body, options),
|
|
115
|
+
eightHarmonicAspects: (body, options) => call('/cosmobiology/eight-harmonic-aspects', body, options),
|
|
116
|
+
lefeldtExtensions: (body, options) => call('/cosmobiology/lefeldt-extensions', body, options),
|
|
117
|
+
midpointPictures: (body, options) => call('/cosmobiology/midpoint-pictures', body, options),
|
|
118
|
+
personalPointTree: (body, options) => call('/cosmobiology/personal-point-tree', body, options),
|
|
119
|
+
sensitivePoints: (body, options) => call('/cosmobiology/sensitive-points', body, options),
|
|
120
|
+
transitMidpoints: (body, options) => call('/cosmobiology/transit-midpoints', body, options),
|
|
121
|
+
uranianTnps: (body, options) => call('/cosmobiology/uranian-tnps', body, options),
|
|
122
|
+
witteFormulas: (body, options) => call('/cosmobiology/witte-formulas', body, options),
|
|
123
|
+
},
|
|
124
|
+
cyclicIndex: {
|
|
125
|
+
compute: (body, options) => call('/cyclic-index', body, options),
|
|
126
|
+
},
|
|
127
|
+
davison: {
|
|
128
|
+
compute: (body, options) => call('/davison', body, options),
|
|
129
|
+
},
|
|
130
|
+
destinyMatrix: {
|
|
131
|
+
ladini: (body, options) => call('/destiny-matrix/ladini', body, options),
|
|
132
|
+
},
|
|
133
|
+
dispositionChains: {
|
|
134
|
+
compute: (body, options) => call('/disposition-chains', body, options),
|
|
135
|
+
layout: (body, options) => call('/disposition-chains/layout', body, options),
|
|
136
|
+
},
|
|
137
|
+
djamaspa: {
|
|
138
|
+
compute: (body, options) => call('/djamaspa', body, options),
|
|
139
|
+
},
|
|
140
|
+
draconic: {
|
|
141
|
+
compute: (body, options) => call('/draconic', body, options),
|
|
142
|
+
},
|
|
143
|
+
eclipseAnalysis: {
|
|
144
|
+
compute: (body, options) => call('/eclipse-analysis', body, options),
|
|
145
|
+
},
|
|
146
|
+
eclipses: {
|
|
147
|
+
compute: (body, options) => call('/eclipses', body, options),
|
|
148
|
+
},
|
|
149
|
+
ephemeris: {
|
|
150
|
+
compute: (body, options) => call('/ephemeris', body, options),
|
|
151
|
+
},
|
|
152
|
+
esoteric: {
|
|
153
|
+
angelNumbersDecode: (body, options) => call('/esoteric/angel-numbers/decode', body, options),
|
|
154
|
+
crystalsRecommend: (body, options) => call('/esoteric/crystals/recommend', body, options),
|
|
155
|
+
dreamsDecode: (body, options) => call('/esoteric/dreams/decode', body, options),
|
|
156
|
+
},
|
|
157
|
+
essentialDignities: {
|
|
158
|
+
compute: (body, options) => call('/essential-dignities', body, options),
|
|
159
|
+
},
|
|
160
|
+
evolutionary: {
|
|
161
|
+
nodalAxisDetail: (body, options) => call('/evolutionary/nodal-axis-detail', body, options),
|
|
162
|
+
plutoNatalCondition: (body, options) => call('/evolutionary/pluto-natal-condition', body, options),
|
|
163
|
+
skippedSteps: (body, options) => call('/evolutionary/skipped-steps', body, options),
|
|
164
|
+
soulTypes: (body, options) => call('/evolutionary/soul-types', body, options),
|
|
165
|
+
yesterdaySky: (body, options) => call('/evolutionary/yesterday-sky', body, options),
|
|
166
|
+
},
|
|
167
|
+
family: {
|
|
168
|
+
genogram: (body, options) => call('/family/genogram', body, options),
|
|
169
|
+
parentChildDeep: (body, options) => call('/family/parent-child-deep', body, options),
|
|
170
|
+
saturnReturnCycles: (body, options) => call('/family/saturn-return-cycles', body, options),
|
|
171
|
+
siblingDynamics: (body, options) => call('/family/sibling-dynamics', body, options),
|
|
172
|
+
systemPattern: (body, options) => call('/family/system-pattern', body, options),
|
|
173
|
+
},
|
|
174
|
+
financial: {
|
|
175
|
+
careerMoneyStyle: (body, options) => call('/financial/career-money-style', body, options),
|
|
176
|
+
investorArchetype: (body, options) => call('/financial/investor-archetype', body, options),
|
|
177
|
+
luckyDay: (body, options) => call('/financial/lucky-day', body, options),
|
|
178
|
+
luckyNumbers: (body, options) => call('/financial/lucky-numbers', body, options),
|
|
179
|
+
marketTiming: (body, options) => call('/financial/market-timing', body, options),
|
|
180
|
+
riskTolerance: (body, options) => call('/financial/risk-tolerance', body, options),
|
|
181
|
+
savingsTips: (body, options) => call('/financial/savings-tips', body, options),
|
|
182
|
+
spendingStyle: (body, options) => call('/financial/spending-style', body, options),
|
|
183
|
+
wealthCycle: (body, options) => call('/financial/wealth-cycle', body, options),
|
|
184
|
+
wealthHouse: (body, options) => call('/financial/wealth-house', body, options),
|
|
185
|
+
},
|
|
186
|
+
firdaria: {
|
|
187
|
+
compute: (body, options) => call('/firdaria', body, options),
|
|
188
|
+
},
|
|
189
|
+
fixedStars: {
|
|
190
|
+
compute: (body, options) => call('/fixed-stars', body, options),
|
|
191
|
+
},
|
|
192
|
+
forecastCalendar: {
|
|
193
|
+
compute: (body, options) => call('/forecast-calendar', body, options),
|
|
194
|
+
},
|
|
195
|
+
gauquelinSectors: {
|
|
196
|
+
compute: (body, options) => call('/gauquelin-sectors', body, options),
|
|
197
|
+
},
|
|
198
|
+
geodetic: {
|
|
199
|
+
compute: (body, options) => call('/geodetic', body, options),
|
|
200
|
+
},
|
|
201
|
+
geomancy: {
|
|
202
|
+
acquisitio: (body, options) => call('/geomancy/acquisitio', body, options),
|
|
203
|
+
albus: (body, options) => call('/geomancy/albus', body, options),
|
|
204
|
+
amissio: (body, options) => call('/geomancy/amissio', body, options),
|
|
205
|
+
caputDraconis: (body, options) => call('/geomancy/caput-draconis', body, options),
|
|
206
|
+
carcer: (body, options) => call('/geomancy/carcer', body, options),
|
|
207
|
+
caudaDraconis: (body, options) => call('/geomancy/cauda-draconis', body, options),
|
|
208
|
+
coniunctio: (body, options) => call('/geomancy/coniunctio', body, options),
|
|
209
|
+
fortunaMajor: (body, options) => call('/geomancy/fortuna-major', body, options),
|
|
210
|
+
fortunaMinor: (body, options) => call('/geomancy/fortuna-minor', body, options),
|
|
211
|
+
laetitia: (body, options) => call('/geomancy/laetitia', body, options),
|
|
212
|
+
populus: (body, options) => call('/geomancy/populus', body, options),
|
|
213
|
+
puella: (body, options) => call('/geomancy/puella', body, options),
|
|
214
|
+
puer: (body, options) => call('/geomancy/puer', body, options),
|
|
215
|
+
rubeus: (body, options) => call('/geomancy/rubeus', body, options),
|
|
216
|
+
tristitia: (body, options) => call('/geomancy/tristitia', body, options),
|
|
217
|
+
via: (body, options) => call('/geomancy/via', body, options),
|
|
218
|
+
},
|
|
219
|
+
groupSynastry: {
|
|
220
|
+
compute: (body, options) => call('/group-synastry', body, options),
|
|
221
|
+
},
|
|
222
|
+
harmonics: {
|
|
223
|
+
compute: (body, options) => call('/harmonics', body, options),
|
|
224
|
+
},
|
|
225
|
+
hd: {
|
|
226
|
+
circuitry: (body, options) => call('/hd/circuitry', body, options),
|
|
227
|
+
designDate: (body, options) => call('/hd/design-date', body, options),
|
|
228
|
+
dreamRave: (body, options) => call('/hd/dream-rave', body, options),
|
|
229
|
+
groupOverlay: (body, options) => call('/hd/group-overlay', body, options),
|
|
230
|
+
hologenetic: (body, options) => call('/hd/hologenetic', body, options),
|
|
231
|
+
incarnationCross: (body, options) => call('/hd/incarnation-cross', body, options),
|
|
232
|
+
penta: (body, options) => call('/hd/penta', body, options),
|
|
233
|
+
raveNewYears: (body, options) => call('/hd/rave-new-years', body, options),
|
|
234
|
+
sensitivity: (body, options) => call('/hd/sensitivity', body, options),
|
|
235
|
+
},
|
|
236
|
+
heliocentric: {
|
|
237
|
+
compute: (body, options) => call('/heliocentric', body, options),
|
|
238
|
+
},
|
|
239
|
+
hellenistic: {
|
|
240
|
+
brennanBonificationsMaltreatments: (body, options) => call('/hellenistic/brennan/bonifications-maltreatments', body, options),
|
|
241
|
+
brennanJoysOfPlanets: (body, options) => call('/hellenistic/brennan/joys-of-planets', body, options),
|
|
242
|
+
brennanLots15: (body, options) => call('/hellenistic/brennan/lots-15', body, options),
|
|
243
|
+
brennanProfectionsDetail: (body, options) => call('/hellenistic/brennan/profections-detail', body, options),
|
|
244
|
+
brennanTimeLordStack: (body, options) => call('/hellenistic/brennan/time-lord-stack', body, options),
|
|
245
|
+
brennanTriplicityRulers: (body, options) => call('/hellenistic/brennan/triplicity-rulers', body, options),
|
|
246
|
+
brennanZodiacalReleasingFortune: (body, options) => call('/hellenistic/brennan/zodiacal-releasing-fortune', body, options),
|
|
247
|
+
brennanZodiacalReleasingSpirit: (body, options) => call('/hellenistic/brennan/zodiacal-releasing-spirit', body, options),
|
|
248
|
+
brennanZrLoosingOfBond: (body, options) => call('/hellenistic/brennan/zr-loosing-of-bond', body, options),
|
|
249
|
+
brennanZrPeakPeriods: (body, options) => call('/hellenistic/brennan/zr-peak-periods', body, options),
|
|
250
|
+
greenbaumAntisciaHellenistic: (body, options) => call('/hellenistic/greenbaum/antiscia-hellenistic', body, options),
|
|
251
|
+
greenbaumContraAntiscia: (body, options) => call('/hellenistic/greenbaum/contra-antiscia', body, options),
|
|
252
|
+
greenbaumDaimonTycheAxis: (body, options) => call('/hellenistic/greenbaum/daimon-tyche-axis', body, options),
|
|
253
|
+
greenbaumDodekatemoria: (body, options) => call('/hellenistic/greenbaum/dodekatemoria', body, options),
|
|
254
|
+
greenbaumDuodecima: (body, options) => call('/hellenistic/greenbaum/duodecima', body, options),
|
|
255
|
+
greenbaumLotOfErosDetail: (body, options) => call('/hellenistic/greenbaum/lot-of-eros-detail', body, options),
|
|
256
|
+
greenbaumQualityOfTime: (body, options) => call('/hellenistic/greenbaum/quality-of-time', body, options),
|
|
257
|
+
greenbaumSphaeraBarbarica: (body, options) => call('/hellenistic/greenbaum/sphaera-barbarica', body, options),
|
|
258
|
+
greenbaumTempleDoctrine: (body, options) => call('/hellenistic/greenbaum/temple-doctrine', body, options),
|
|
259
|
+
greenbaumZodiacalDecans: (body, options) => call('/hellenistic/greenbaum/zodiacal-decans', body, options),
|
|
260
|
+
handBounds: (body, options) => call('/hellenistic/hand/bounds', body, options),
|
|
261
|
+
handCriticalDegrees: (body, options) => call('/hellenistic/hand/critical-degrees', body, options),
|
|
262
|
+
handDecanicRulers: (body, options) => call('/hellenistic/hand/decanic-rulers', body, options),
|
|
263
|
+
handDecennials: (body, options) => call('/hellenistic/hand/decennials', body, options),
|
|
264
|
+
handHoroscoposTrine: (body, options) => call('/hellenistic/hand/horoscopos-trine', body, options),
|
|
265
|
+
handLongevityHyleg: (body, options) => call('/hellenistic/hand/longevity-hyleg', body, options),
|
|
266
|
+
handLotsOfSeven: (body, options) => call('/hellenistic/hand/lots-of-seven', body, options),
|
|
267
|
+
handPerfections: (body, options) => call('/hellenistic/hand/perfections', body, options),
|
|
268
|
+
handQuarterLord: (body, options) => call('/hellenistic/hand/quarter-lord', body, options),
|
|
269
|
+
handSectStrength: (body, options) => call('/hellenistic/hand/sect-strength', body, options),
|
|
270
|
+
schmidtAspectualTypology: (body, options) => call('/hellenistic/schmidt/aspectual-typology', body, options),
|
|
271
|
+
schmidtDerivativeHousesMethod: (body, options) => call('/hellenistic/schmidt/derivative-houses-method', body, options),
|
|
272
|
+
schmidtEnneaMooirai: (body, options) => call('/hellenistic/schmidt/ennea-mooirai', body, options),
|
|
273
|
+
schmidtLevelsOfCausation: (body, options) => call('/hellenistic/schmidt/levels-of-causation', body, options),
|
|
274
|
+
schmidtLordOfPrediction: (body, options) => call('/hellenistic/schmidt/lord-of-prediction', body, options),
|
|
275
|
+
schmidtMorningEveningStars: (body, options) => call('/hellenistic/schmidt/morning-evening-stars', body, options),
|
|
276
|
+
schmidtQualitiesAndQuantities: (body, options) => call('/hellenistic/schmidt/qualities-and-quantities', body, options),
|
|
277
|
+
schmidtSectClasses: (body, options) => call('/hellenistic/schmidt/sect-classes', body, options),
|
|
278
|
+
schmidtStationsAndPhases: (body, options) => call('/hellenistic/schmidt/stations-and-phases', body, options),
|
|
279
|
+
schmidtStoicElementhood: (body, options) => call('/hellenistic/schmidt/stoic-elementhood', body, options),
|
|
280
|
+
},
|
|
281
|
+
horary: {
|
|
282
|
+
compute: (body, options) => call('/horary', body, options),
|
|
283
|
+
diagnostics: (body, options) => call('/horary/diagnostics', body, options),
|
|
284
|
+
moonAspects: (body, options) => call('/horary/moon-aspects', body, options),
|
|
285
|
+
moonVoc: (body, options) => call('/horary/moon-voc', body, options),
|
|
286
|
+
planetaryHours: (body, options) => call('/horary/planetary-hours', body, options),
|
|
287
|
+
viaCombusta: (body, options) => call('/horary/via-combusta', body, options),
|
|
288
|
+
},
|
|
289
|
+
horizon: {
|
|
290
|
+
compute: (body, options) => call('/horizon', body, options),
|
|
291
|
+
},
|
|
292
|
+
horoscope: {
|
|
293
|
+
compatibility: (body, options) => call('/horoscope/compatibility', body, options),
|
|
294
|
+
daily: (body, options) => call('/horoscope/daily', body, options),
|
|
295
|
+
monthly: (body, options) => call('/horoscope/monthly', body, options),
|
|
296
|
+
weekly: (body, options) => call('/horoscope/weekly', body, options),
|
|
297
|
+
yearly: (body, options) => call('/horoscope/yearly', body, options),
|
|
298
|
+
},
|
|
299
|
+
humanDesign: {
|
|
300
|
+
compatibility: (body, options) => call('/human-design/compatibility', body, options),
|
|
301
|
+
compute: (body, options) => call('/human-design', body, options),
|
|
302
|
+
transits: (body, options) => call('/human-design/transits', body, options),
|
|
303
|
+
},
|
|
304
|
+
hyleg: {
|
|
305
|
+
compute: (body, options) => call('/hyleg', body, options),
|
|
306
|
+
},
|
|
307
|
+
iching: {
|
|
308
|
+
byQuestion: (body, options) => call('/iching/by-question', body, options),
|
|
309
|
+
compute: (body, options) => call('/iching', body, options),
|
|
310
|
+
daily: (body, options) => call('/iching/daily', body, options),
|
|
311
|
+
throwCoins: (body, options) => call('/iching/throw-coins', body, options),
|
|
312
|
+
withChangingLines: (body, options) => call('/iching/with-changing-lines', body, options),
|
|
313
|
+
},
|
|
314
|
+
ingresses: {
|
|
315
|
+
compute: (body, options) => call('/ingresses', body, options),
|
|
316
|
+
},
|
|
317
|
+
interpret: {
|
|
318
|
+
element: (body, options) => call('/interpret/element', body, options),
|
|
319
|
+
natal: (body, options) => call('/interpret/natal', body, options),
|
|
320
|
+
placement: (body, options) => call('/interpret/placement', body, options),
|
|
321
|
+
synastry: (body, options) => call('/interpret/synastry', body, options),
|
|
322
|
+
transits: (body, options) => call('/interpret/transits', body, options),
|
|
323
|
+
},
|
|
324
|
+
keys: {
|
|
325
|
+
compute: (body, options) => call('/keys', body, options),
|
|
326
|
+
},
|
|
327
|
+
localSpace: {
|
|
328
|
+
compute: (body, options) => call('/local-space', body, options),
|
|
329
|
+
influenceZone: (body, options) => call('/local-space/influence-zone', body, options),
|
|
330
|
+
},
|
|
331
|
+
lunarCalendar: {
|
|
332
|
+
compute: (body, options) => call('/lunar-calendar', body, options),
|
|
333
|
+
},
|
|
334
|
+
lunarReturn: {
|
|
335
|
+
compute: (body, options) => call('/lunar-return', body, options),
|
|
336
|
+
},
|
|
337
|
+
mayan: {
|
|
338
|
+
calendarRound: (body, options) => call('/mayan/calendar-round', body, options),
|
|
339
|
+
compatibility: (body, options) => call('/mayan/compatibility', body, options),
|
|
340
|
+
dreamspell: (body, options) => call('/mayan/dreamspell', body, options),
|
|
341
|
+
full: (body, options) => call('/mayan/full', body, options),
|
|
342
|
+
haab: (body, options) => call('/mayan/haab', body, options),
|
|
343
|
+
longCount: (body, options) => call('/mayan/long-count', body, options),
|
|
344
|
+
lordOfNight: (body, options) => call('/mayan/lord-of-night', body, options),
|
|
345
|
+
tzolkin: (body, options) => call('/mayan/tzolkin', body, options),
|
|
346
|
+
},
|
|
347
|
+
mcp: {
|
|
348
|
+
agentDebate: (body, options) => call('/mcp/agent-debate', body, options),
|
|
349
|
+
multiAgentCoordinate: (body, options) => call('/mcp/multi-agent-coordinate', body, options),
|
|
350
|
+
multiChartContext: (body, options) => call('/mcp/multi-chart-context', body, options),
|
|
351
|
+
ragSearch: (body, options) => call('/mcp/rag-search', body, options),
|
|
352
|
+
streaming: (body, options) => call('/mcp/streaming', body, options),
|
|
353
|
+
toolCallStream: (body, options) => call('/mcp/tool-call-stream', body, options),
|
|
354
|
+
},
|
|
355
|
+
midpointTrees: {
|
|
356
|
+
compute: (body, options) => call('/midpoint-trees', body, options),
|
|
357
|
+
},
|
|
358
|
+
midpoints: {
|
|
359
|
+
compute: (body, options) => call('/midpoints', body, options),
|
|
360
|
+
},
|
|
361
|
+
minorProgressions: {
|
|
362
|
+
compute: (body, options) => call('/minor-progressions', body, options),
|
|
363
|
+
},
|
|
364
|
+
modern: {
|
|
365
|
+
arroyoCycleOfBecoming: (body, options) => call('/modern/arroyo/cycle-of-becoming', body, options),
|
|
366
|
+
arroyoElementBalance: (body, options) => call('/modern/arroyo/element-balance', body, options),
|
|
367
|
+
arroyoElementIntegration: (body, options) => call('/modern/arroyo/element-integration', body, options),
|
|
368
|
+
arroyoRelationalElementMap: (body, options) => call('/modern/arroyo/relational-element-map', body, options),
|
|
369
|
+
arroyoWaterHousesTrauma: (body, options) => call('/modern/arroyo/water-houses-trauma', body, options),
|
|
370
|
+
greeneArchetypalFigures: (body, options) => call('/modern/greene/archetypal-figures', body, options),
|
|
371
|
+
greeneIndividuationPath: (body, options) => call('/modern/greene/individuation-path', body, options),
|
|
372
|
+
greeneLunarMyth: (body, options) => call('/modern/greene/lunar-myth', body, options),
|
|
373
|
+
greeneParentalImagos: (body, options) => call('/modern/greene/parental-imagos', body, options),
|
|
374
|
+
greeneSaturnShadow: (body, options) => call('/modern/greene/saturn-shadow', body, options),
|
|
375
|
+
rudhyarCyclesOfBecoming: (body, options) => call('/modern/rudhyar/cycles-of-becoming', body, options),
|
|
376
|
+
rudhyarLunationPhase: (body, options) => call('/modern/rudhyar/lunation-phase', body, options),
|
|
377
|
+
rudhyarPersonalityKeynote: (body, options) => call('/modern/rudhyar/personality-keynote', body, options),
|
|
378
|
+
rudhyarSymbolicDegrees: (body, options) => call('/modern/rudhyar/symbolic-degrees', body, options),
|
|
379
|
+
rudhyarTransitsAsRebirth: (body, options) => call('/modern/rudhyar/transits-as-rebirth', body, options),
|
|
380
|
+
},
|
|
381
|
+
moonAspects: {
|
|
382
|
+
compute: (body, options) => call('/moon-aspects', body, options),
|
|
383
|
+
},
|
|
384
|
+
moonVoc: {
|
|
385
|
+
compute: (body, options) => call('/moon-voc', body, options),
|
|
386
|
+
},
|
|
387
|
+
nakshatras: {
|
|
388
|
+
compute: (body, options) => call('/nakshatras', body, options),
|
|
389
|
+
},
|
|
390
|
+
numerology: {
|
|
391
|
+
chaldeanBalance: (body, options) => call('/numerology/chaldean/balance', body, options),
|
|
392
|
+
chaldeanBirthday: (body, options) => call('/numerology/chaldean/birthday', body, options),
|
|
393
|
+
chaldeanChallenge: (body, options) => call('/numerology/chaldean/challenge', body, options),
|
|
394
|
+
chaldeanExpression: (body, options) => call('/numerology/chaldean/expression', body, options),
|
|
395
|
+
chaldeanLifePath: (body, options) => call('/numerology/chaldean/life-path', body, options),
|
|
396
|
+
chaldeanMaturity: (body, options) => call('/numerology/chaldean/maturity', body, options),
|
|
397
|
+
chaldeanPersonality: (body, options) => call('/numerology/chaldean/personality', body, options),
|
|
398
|
+
chaldeanPersonalYear: (body, options) => call('/numerology/chaldean/personal-year', body, options),
|
|
399
|
+
chaldeanPinnacles: (body, options) => call('/numerology/chaldean/pinnacles', body, options),
|
|
400
|
+
chaldeanSoulUrge: (body, options) => call('/numerology/chaldean/soul-urge', body, options),
|
|
401
|
+
kabbalisticBalance: (body, options) => call('/numerology/kabbalistic/balance', body, options),
|
|
402
|
+
kabbalisticBirthday: (body, options) => call('/numerology/kabbalistic/birthday', body, options),
|
|
403
|
+
kabbalisticChallenge: (body, options) => call('/numerology/kabbalistic/challenge', body, options),
|
|
404
|
+
kabbalisticExpression: (body, options) => call('/numerology/kabbalistic/expression', body, options),
|
|
405
|
+
kabbalisticLifePath: (body, options) => call('/numerology/kabbalistic/life-path', body, options),
|
|
406
|
+
kabbalisticMaturity: (body, options) => call('/numerology/kabbalistic/maturity', body, options),
|
|
407
|
+
kabbalisticPersonality: (body, options) => call('/numerology/kabbalistic/personality', body, options),
|
|
408
|
+
kabbalisticPersonalYear: (body, options) => call('/numerology/kabbalistic/personal-year', body, options),
|
|
409
|
+
kabbalisticPinnacles: (body, options) => call('/numerology/kabbalistic/pinnacles', body, options),
|
|
410
|
+
kabbalisticSoulUrge: (body, options) => call('/numerology/kabbalistic/soul-urge', body, options),
|
|
411
|
+
kabbalisticStrictBalance: (body, options) => call('/numerology/kabbalistic-strict/balance', body, options),
|
|
412
|
+
kabbalisticStrictBirthday: (body, options) => call('/numerology/kabbalistic-strict/birthday', body, options),
|
|
413
|
+
kabbalisticStrictChallenge: (body, options) => call('/numerology/kabbalistic-strict/challenge', body, options),
|
|
414
|
+
kabbalisticStrictExpression: (body, options) => call('/numerology/kabbalistic-strict/expression', body, options),
|
|
415
|
+
kabbalisticStrictLifePath: (body, options) => call('/numerology/kabbalistic-strict/life-path', body, options),
|
|
416
|
+
kabbalisticStrictMaturity: (body, options) => call('/numerology/kabbalistic-strict/maturity', body, options),
|
|
417
|
+
kabbalisticStrictPersonality: (body, options) => call('/numerology/kabbalistic-strict/personality', body, options),
|
|
418
|
+
kabbalisticStrictPersonalYear: (body, options) => call('/numerology/kabbalistic-strict/personal-year', body, options),
|
|
419
|
+
kabbalisticStrictPinnacles: (body, options) => call('/numerology/kabbalistic-strict/pinnacles', body, options),
|
|
420
|
+
kabbalisticStrictSoulUrge: (body, options) => call('/numerology/kabbalistic-strict/soul-urge', body, options),
|
|
421
|
+
pythagoreanBalance: (body, options) => call('/numerology/pythagorean/balance', body, options),
|
|
422
|
+
pythagoreanBirthday: (body, options) => call('/numerology/pythagorean/birthday', body, options),
|
|
423
|
+
pythagoreanChallenge: (body, options) => call('/numerology/pythagorean/challenge', body, options),
|
|
424
|
+
pythagoreanExpression: (body, options) => call('/numerology/pythagorean/expression', body, options),
|
|
425
|
+
pythagoreanLifePath: (body, options) => call('/numerology/pythagorean/life-path', body, options),
|
|
426
|
+
pythagoreanMaturity: (body, options) => call('/numerology/pythagorean/maturity', body, options),
|
|
427
|
+
pythagoreanPersonality: (body, options) => call('/numerology/pythagorean/personality', body, options),
|
|
428
|
+
pythagoreanPersonalYear: (body, options) => call('/numerology/pythagorean/personal-year', body, options),
|
|
429
|
+
pythagoreanPinnacles: (body, options) => call('/numerology/pythagorean/pinnacles', body, options),
|
|
430
|
+
pythagoreanSoulUrge: (body, options) => call('/numerology/pythagorean/soul-urge', body, options),
|
|
431
|
+
vedicBalance: (body, options) => call('/numerology/vedic/balance', body, options),
|
|
432
|
+
vedicBirthday: (body, options) => call('/numerology/vedic/birthday', body, options),
|
|
433
|
+
vedicChallenge: (body, options) => call('/numerology/vedic/challenge', body, options),
|
|
434
|
+
vedicExpression: (body, options) => call('/numerology/vedic/expression', body, options),
|
|
435
|
+
vedicLifePath: (body, options) => call('/numerology/vedic/life-path', body, options),
|
|
436
|
+
vedicMaturity: (body, options) => call('/numerology/vedic/maturity', body, options),
|
|
437
|
+
vedicPersonality: (body, options) => call('/numerology/vedic/personality', body, options),
|
|
438
|
+
vedicPersonalYear: (body, options) => call('/numerology/vedic/personal-year', body, options),
|
|
439
|
+
vedicPinnacles: (body, options) => call('/numerology/vedic/pinnacles', body, options),
|
|
440
|
+
vedicSoulUrge: (body, options) => call('/numerology/vedic/soul-urge', body, options),
|
|
441
|
+
},
|
|
442
|
+
palmistry: {
|
|
443
|
+
fateLine: (body, options) => call('/palmistry/fate-line', body, options),
|
|
444
|
+
headLine: (body, options) => call('/palmistry/head-line', body, options),
|
|
445
|
+
heartLine: (body, options) => call('/palmistry/heart-line', body, options),
|
|
446
|
+
lifeLine: (body, options) => call('/palmistry/life-line', body, options),
|
|
447
|
+
marriageLine: (body, options) => call('/palmistry/marriage-line', body, options),
|
|
448
|
+
},
|
|
449
|
+
parallelAspects: {
|
|
450
|
+
compute: (body, options) => call('/parallel-aspects', body, options),
|
|
451
|
+
},
|
|
452
|
+
parans: {
|
|
453
|
+
compute: (body, options) => call('/parans', body, options),
|
|
454
|
+
},
|
|
455
|
+
pet: {
|
|
456
|
+
bestNames: (body, options) => call('/pet/best-names', body, options),
|
|
457
|
+
birthChart: (body, options) => call('/pet/birth-chart', body, options),
|
|
458
|
+
communicationStyle: (body, options) => call('/pet/communication-style', body, options),
|
|
459
|
+
dietBySign: (body, options) => call('/pet/diet-by-sign', body, options),
|
|
460
|
+
exerciseNeeds: (body, options) => call('/pet/exercise-needs', body, options),
|
|
461
|
+
groomingByElement: (body, options) => call('/pet/grooming-by-element', body, options),
|
|
462
|
+
healthTips: (body, options) => call('/pet/health-tips', body, options),
|
|
463
|
+
luckyDay: (body, options) => call('/pet/lucky-day', body, options),
|
|
464
|
+
ownerPetCompatibility: (body, options) => call('/pet/owner-pet-compatibility', body, options),
|
|
465
|
+
personality: (body, options) => call('/pet/personality', body, options),
|
|
466
|
+
playStyle: (body, options) => call('/pet/play-style', body, options),
|
|
467
|
+
sunSignMeaning: (body, options) => call('/pet/sun-sign-meaning', body, options),
|
|
468
|
+
temperament: (body, options) => call('/pet/temperament', body, options),
|
|
469
|
+
trainingStyle: (body, options) => call('/pet/training-style', body, options),
|
|
470
|
+
},
|
|
471
|
+
phaseReturn: {
|
|
472
|
+
compute: (body, options) => call('/phase-return', body, options),
|
|
473
|
+
},
|
|
474
|
+
planetaryCycles: {
|
|
475
|
+
compute: (body, options) => call('/planetary-cycles', body, options),
|
|
476
|
+
},
|
|
477
|
+
planetaryHours: {
|
|
478
|
+
compute: (body, options) => call('/planetary-hours', body, options),
|
|
479
|
+
},
|
|
480
|
+
planetaryPhases: {
|
|
481
|
+
compute: (body, options) => call('/planetary-phases', body, options),
|
|
482
|
+
},
|
|
483
|
+
planetaryReturn: {
|
|
484
|
+
compute: (body, options) => call('/planetary-return', body, options),
|
|
485
|
+
},
|
|
486
|
+
planets: {
|
|
487
|
+
compute: (body, options) => call('/planets', body, options),
|
|
488
|
+
},
|
|
489
|
+
primaryDirections: {
|
|
490
|
+
compute: (body, options) => call('/primary-directions', body, options),
|
|
491
|
+
},
|
|
492
|
+
profections: {
|
|
493
|
+
compute: (body, options) => call('/profections', body, options),
|
|
494
|
+
},
|
|
495
|
+
progressions: {
|
|
496
|
+
compute: (body, options) => call('/progressions', body, options),
|
|
497
|
+
},
|
|
498
|
+
receptions: {
|
|
499
|
+
compute: (body, options) => call('/receptions', body, options),
|
|
500
|
+
},
|
|
501
|
+
rectification: {
|
|
502
|
+
compute: (body, options) => call('/rectification', body, options),
|
|
503
|
+
trutine: (body, options) => call('/rectification/trutine', body, options),
|
|
504
|
+
},
|
|
505
|
+
relocation: {
|
|
506
|
+
compute: (body, options) => call('/relocation', body, options),
|
|
507
|
+
},
|
|
508
|
+
render: {
|
|
509
|
+
aspectGrid: (body, options) => call('/render/aspect-grid', body, options),
|
|
510
|
+
biorhythm: (body, options) => call('/render/biorhythm', body, options),
|
|
511
|
+
biWheel: (body, options) => call('/render/bi-wheel', body, options),
|
|
512
|
+
composite: (body, options) => call('/render/composite', body, options),
|
|
513
|
+
cosmogram: (body, options) => call('/render/cosmogram', body, options),
|
|
514
|
+
eclipsePath: (body, options) => call('/render/eclipse-path', body, options),
|
|
515
|
+
moonPhase: (body, options) => call('/render/moon-phase', body, options),
|
|
516
|
+
starMap: (body, options) => call('/render/star-map', body, options),
|
|
517
|
+
timeline: (body, options) => call('/render/timeline', body, options),
|
|
518
|
+
triWheel: (body, options) => call('/render/tri-wheel', body, options),
|
|
519
|
+
wheelVedicEast: (body, options) => call('/render/wheel-vedic-east', body, options),
|
|
520
|
+
wheelVedicNorth: (body, options) => call('/render/wheel-vedic-north', body, options),
|
|
521
|
+
wheelVedicSouth: (body, options) => call('/render/wheel-vedic-south', body, options),
|
|
522
|
+
wheelWestern: (body, options) => call('/render/wheel-western', body, options),
|
|
523
|
+
},
|
|
524
|
+
reports: {
|
|
525
|
+
aiMonthlyNarrative: (body, options) => call('/reports/ai/monthly-narrative', body, options),
|
|
526
|
+
aiNatalNarrative: (body, options) => call('/reports/ai/natal-narrative', body, options),
|
|
527
|
+
aiSynastryNarrative: (body, options) => call('/reports/ai/synastry-narrative', body, options),
|
|
528
|
+
aiTransitNarrative: (body, options) => call('/reports/ai/transit-narrative', body, options),
|
|
529
|
+
aiYearAheadNarrative: (body, options) => call('/reports/ai/year-ahead-narrative', body, options),
|
|
530
|
+
business: (body, options) => call('/reports/business', body, options),
|
|
531
|
+
career: (body, options) => call('/reports/career', body, options),
|
|
532
|
+
child: (body, options) => call('/reports/child', body, options),
|
|
533
|
+
humanDesign: (body, options) => call('/reports/human-design', body, options),
|
|
534
|
+
lalKitab: (body, options) => call('/reports/lal-kitab', body, options),
|
|
535
|
+
love: (body, options) => call('/reports/love', body, options),
|
|
536
|
+
money: (body, options) => call('/reports/money', body, options),
|
|
537
|
+
natal: (body, options) => call('/reports/natal', body, options),
|
|
538
|
+
synastry: (body, options) => call('/reports/synastry', body, options),
|
|
539
|
+
tarot: (body, options) => call('/reports/tarot', body, options),
|
|
540
|
+
transitYearly: (body, options) => call('/reports/transit-yearly', body, options),
|
|
541
|
+
vedicKundli: (body, options) => call('/reports/vedic-kundli', body, options),
|
|
542
|
+
},
|
|
543
|
+
retrogradePeriods: {
|
|
544
|
+
compute: (body, options) => call('/retrograde-periods', body, options),
|
|
545
|
+
},
|
|
546
|
+
runes: {
|
|
547
|
+
byZodiac: (body, options) => call('/runes/by-zodiac', body, options),
|
|
548
|
+
compute: (body, options) => call('/runes', body, options),
|
|
549
|
+
nine: (body, options) => call('/runes/nine', body, options),
|
|
550
|
+
single: (body, options) => call('/runes/single', body, options),
|
|
551
|
+
three: (body, options) => call('/runes/three', body, options),
|
|
552
|
+
},
|
|
553
|
+
sabianSymbols: {
|
|
554
|
+
compute: (body, options) => call('/sabian-symbols', body, options),
|
|
555
|
+
},
|
|
556
|
+
solarAcg: {
|
|
557
|
+
compute: (body, options) => call('/solar-acg', body, options),
|
|
558
|
+
},
|
|
559
|
+
solarReturn: {
|
|
560
|
+
compute: (body, options) => call('/solar-return', body, options),
|
|
561
|
+
},
|
|
562
|
+
stream: {
|
|
563
|
+
eclipseIncoming: (body, options) => call('/stream/eclipse-incoming', body, options),
|
|
564
|
+
eclipseTotality: (body, options) => call('/stream/eclipse-totality', body, options),
|
|
565
|
+
ingress: (body, options) => call('/stream/ingress', body, options),
|
|
566
|
+
lunarPhase: (body, options) => call('/stream/lunar-phase', body, options),
|
|
567
|
+
planetaryHourChanges: (body, options) => call('/stream/planetary-hour-changes', body, options),
|
|
568
|
+
positions: (body, options) => call('/stream/positions', body, options),
|
|
569
|
+
retrogradeAlerts: (body, options) => call('/stream/retrograde-alerts', body, options),
|
|
570
|
+
sunriseSunset: (body, options) => call('/stream/sunrise-sunset', body, options),
|
|
571
|
+
transitAlerts: (body, options) => call('/stream/transit-alerts', body, options),
|
|
572
|
+
voidOfCourse: (body, options) => call('/stream/void-of-course', body, options),
|
|
573
|
+
},
|
|
574
|
+
sunTimes: {
|
|
575
|
+
compute: (body, options) => call('/sun-times', body, options),
|
|
576
|
+
},
|
|
577
|
+
symbolicDirections: {
|
|
578
|
+
compute: (body, options) => call('/symbolic-directions', body, options),
|
|
579
|
+
},
|
|
580
|
+
synastry: {
|
|
581
|
+
aspectGrid: (body, options) => call('/synastry/aspect-grid', body, options),
|
|
582
|
+
attractionScore: (body, options) => call('/synastry/attraction-score', body, options),
|
|
583
|
+
compute: (body, options) => call('/synastry', body, options),
|
|
584
|
+
elementBalance: (body, options) => call('/synastry/element-balance', body, options),
|
|
585
|
+
houseOverlay: (body, options) => call('/synastry/house-overlay', body, options),
|
|
586
|
+
},
|
|
587
|
+
tarot: {
|
|
588
|
+
lenormandDaily: (body, options) => call('/tarot/lenormand/daily', body, options),
|
|
589
|
+
lenormandDraw9CardSquare: (body, options) => call('/tarot/lenormand/draw/9-card-square', body, options),
|
|
590
|
+
lenormandDrawCelticCrossLenormand: (body, options) => call('/tarot/lenormand/draw/celtic-cross-lenormand', body, options),
|
|
591
|
+
lenormandDrawGrandTableau: (body, options) => call('/tarot/lenormand/draw/grand-tableau', body, options),
|
|
592
|
+
lenormandDrawLineOfFive: (body, options) => call('/tarot/lenormand/draw/line-of-five', body, options),
|
|
593
|
+
lenormandDrawRelationship: (body, options) => call('/tarot/lenormand/draw/relationship', body, options),
|
|
594
|
+
lenormandDrawThreeCard: (body, options) => call('/tarot/lenormand/draw/three-card', body, options),
|
|
595
|
+
marseilleBirthCard: (body, options) => call('/tarot/marseille/birth-card', body, options),
|
|
596
|
+
marseilleClarify: (body, options) => call('/tarot/marseille/clarify', body, options),
|
|
597
|
+
marseilleDaily: (body, options) => call('/tarot/marseille/daily', body, options),
|
|
598
|
+
marseilleDrawCareer: (body, options) => call('/tarot/marseille/draw/career', body, options),
|
|
599
|
+
marseilleDrawCelticCross: (body, options) => call('/tarot/marseille/draw/celtic-cross', body, options),
|
|
600
|
+
marseilleDrawCross: (body, options) => call('/tarot/marseille/draw/cross', body, options),
|
|
601
|
+
marseilleDrawDecision: (body, options) => call('/tarot/marseille/draw/decision', body, options),
|
|
602
|
+
marseilleDrawHero: (body, options) => call('/tarot/marseille/draw/hero', body, options),
|
|
603
|
+
marseilleDrawLove: (body, options) => call('/tarot/marseille/draw/love', body, options),
|
|
604
|
+
marseilleDrawSevenCard: (body, options) => call('/tarot/marseille/draw/seven-card', body, options),
|
|
605
|
+
marseilleDrawSingle: (body, options) => call('/tarot/marseille/draw/single', body, options),
|
|
606
|
+
marseilleDrawSpiritual: (body, options) => call('/tarot/marseille/draw/spiritual', body, options),
|
|
607
|
+
marseilleDrawThreeCard: (body, options) => call('/tarot/marseille/draw/three-card', body, options),
|
|
608
|
+
marseilleInterpret: (body, options) => call('/tarot/marseille/interpret', body, options),
|
|
609
|
+
marseilleTiming: (body, options) => call('/tarot/marseille/timing', body, options),
|
|
610
|
+
marseilleYearCard: (body, options) => call('/tarot/marseille/year-card', body, options),
|
|
611
|
+
riderWaiteAdvice: (body, options) => call('/tarot/rider-waite/advice', body, options),
|
|
612
|
+
riderWaiteBirthCard: (body, options) => call('/tarot/rider-waite/birth-card', body, options),
|
|
613
|
+
riderWaiteClarify: (body, options) => call('/tarot/rider-waite/clarify', body, options),
|
|
614
|
+
riderWaiteCrossSum: (body, options) => call('/tarot/rider-waite/cross-sum', body, options),
|
|
615
|
+
riderWaiteDaily: (body, options) => call('/tarot/rider-waite/daily', body, options),
|
|
616
|
+
riderWaiteDrawCareer: (body, options) => call('/tarot/rider-waite/draw/career', body, options),
|
|
617
|
+
riderWaiteDrawCelticCross: (body, options) => call('/tarot/rider-waite/draw/celtic-cross', body, options),
|
|
618
|
+
riderWaiteDrawChakra: (body, options) => call('/tarot/rider-waite/draw/chakra', body, options),
|
|
619
|
+
riderWaiteDrawDecision: (body, options) => call('/tarot/rider-waite/draw/decision', body, options),
|
|
620
|
+
riderWaiteDrawHorseshoe: (body, options) => call('/tarot/rider-waite/draw/horseshoe', body, options),
|
|
621
|
+
riderWaiteDrawLoveTriangle: (body, options) => call('/tarot/rider-waite/draw/love-triangle', body, options),
|
|
622
|
+
riderWaiteDrawRelationship: (body, options) => call('/tarot/rider-waite/draw/relationship', body, options),
|
|
623
|
+
riderWaiteDrawShadowWork: (body, options) => call('/tarot/rider-waite/draw/shadow-work', body, options),
|
|
624
|
+
riderWaiteDrawSingle: (body, options) => call('/tarot/rider-waite/draw/single', body, options),
|
|
625
|
+
riderWaiteDrawSpiritualPath: (body, options) => call('/tarot/rider-waite/draw/spiritual-path', body, options),
|
|
626
|
+
riderWaiteDrawThreeCard: (body, options) => call('/tarot/rider-waite/draw/three-card', body, options),
|
|
627
|
+
riderWaiteDrawYearAhead: (body, options) => call('/tarot/rider-waite/draw/year-ahead', body, options),
|
|
628
|
+
riderWaiteInterpret: (body, options) => call('/tarot/rider-waite/interpret', body, options),
|
|
629
|
+
riderWaiteMissingInfo: (body, options) => call('/tarot/rider-waite/missing-info', body, options),
|
|
630
|
+
riderWaiteOutcome: (body, options) => call('/tarot/rider-waite/outcome', body, options),
|
|
631
|
+
riderWaiteShadowCard: (body, options) => call('/tarot/rider-waite/shadow-card', body, options),
|
|
632
|
+
riderWaiteSoulPersonalityCard: (body, options) => call('/tarot/rider-waite/soul-personality-card', body, options),
|
|
633
|
+
riderWaiteTiming: (body, options) => call('/tarot/rider-waite/timing', body, options),
|
|
634
|
+
riderWaiteYearCard: (body, options) => call('/tarot/rider-waite/year-card', body, options),
|
|
635
|
+
},
|
|
636
|
+
tertiaryProgressions: {
|
|
637
|
+
compute: (body, options) => call('/tertiary-progressions', body, options),
|
|
638
|
+
},
|
|
639
|
+
transitCalendar: {
|
|
640
|
+
compute: (body, options) => call('/transit-calendar', body, options),
|
|
641
|
+
},
|
|
642
|
+
transits: {
|
|
643
|
+
compute: (body, options) => call('/transits', body, options),
|
|
644
|
+
},
|
|
645
|
+
vedic: {
|
|
646
|
+
compatibilityAshtakoot: (body, options) => call('/vedic/compatibility/ashtakoot', body, options),
|
|
647
|
+
compatibilityBhriguMatch: (body, options) => call('/vedic/compatibility/bhrigu-match', body, options),
|
|
648
|
+
compatibilityDashakoota: (body, options) => call('/vedic/compatibility/dashakoota', body, options),
|
|
649
|
+
compatibilityFull: (body, options) => call('/vedic/compatibility/full', body, options),
|
|
650
|
+
compatibilityMangalMatch: (body, options) => call('/vedic/compatibility/mangal-match', body, options),
|
|
651
|
+
compatibilityManglikCheck: (body, options) => call('/vedic/compatibility/manglik-check', body, options),
|
|
652
|
+
dashasAshtottariAntar: (body, options) => call('/vedic/dashas/ashtottari/antar', body, options),
|
|
653
|
+
dashasAshtottariMaha: (body, options) => call('/vedic/dashas/ashtottari/maha', body, options),
|
|
654
|
+
dashasAshtottariPrana: (body, options) => call('/vedic/dashas/ashtottari/prana', body, options),
|
|
655
|
+
dashasAshtottariPratyantar: (body, options) => call('/vedic/dashas/ashtottari/pratyantar', body, options),
|
|
656
|
+
dashasAshtottariSookshma: (body, options) => call('/vedic/dashas/ashtottari/sookshma', body, options),
|
|
657
|
+
dashasCharaAntar: (body, options) => call('/vedic/dashas/chara/antar', body, options),
|
|
658
|
+
dashasCharaMaha: (body, options) => call('/vedic/dashas/chara/maha', body, options),
|
|
659
|
+
dashasCharaPrana: (body, options) => call('/vedic/dashas/chara/prana', body, options),
|
|
660
|
+
dashasCharaPratyantar: (body, options) => call('/vedic/dashas/chara/pratyantar', body, options),
|
|
661
|
+
dashasCharaSookshma: (body, options) => call('/vedic/dashas/chara/sookshma', body, options),
|
|
662
|
+
dashasKalachakraAntar: (body, options) => call('/vedic/dashas/kalachakra/antar', body, options),
|
|
663
|
+
dashasKalachakraMaha: (body, options) => call('/vedic/dashas/kalachakra/maha', body, options),
|
|
664
|
+
dashasKalachakraPrana: (body, options) => call('/vedic/dashas/kalachakra/prana', body, options),
|
|
665
|
+
dashasKalachakraPratyantar: (body, options) => call('/vedic/dashas/kalachakra/pratyantar', body, options),
|
|
666
|
+
dashasKalachakraSookshma: (body, options) => call('/vedic/dashas/kalachakra/sookshma', body, options),
|
|
667
|
+
dashasShatabdikaAntar: (body, options) => call('/vedic/dashas/shatabdika/antar', body, options),
|
|
668
|
+
dashasShatabdikaMaha: (body, options) => call('/vedic/dashas/shatabdika/maha', body, options),
|
|
669
|
+
dashasShatabdikaPrana: (body, options) => call('/vedic/dashas/shatabdika/prana', body, options),
|
|
670
|
+
dashasShatabdikaPratyantar: (body, options) => call('/vedic/dashas/shatabdika/pratyantar', body, options),
|
|
671
|
+
dashasShatabdikaSookshma: (body, options) => call('/vedic/dashas/shatabdika/sookshma', body, options),
|
|
672
|
+
dashasShodashottariAntar: (body, options) => call('/vedic/dashas/shodashottari/antar', body, options),
|
|
673
|
+
dashasShodashottariMaha: (body, options) => call('/vedic/dashas/shodashottari/maha', body, options),
|
|
674
|
+
dashasShodashottariPrana: (body, options) => call('/vedic/dashas/shodashottari/prana', body, options),
|
|
675
|
+
dashasShodashottariPratyantar: (body, options) => call('/vedic/dashas/shodashottari/pratyantar', body, options),
|
|
676
|
+
dashasShodashottariSookshma: (body, options) => call('/vedic/dashas/shodashottari/sookshma', body, options),
|
|
677
|
+
dashasShoolaAntar: (body, options) => call('/vedic/dashas/shoola/antar', body, options),
|
|
678
|
+
dashasShoolaMaha: (body, options) => call('/vedic/dashas/shoola/maha', body, options),
|
|
679
|
+
dashasShoolaPrana: (body, options) => call('/vedic/dashas/shoola/prana', body, options),
|
|
680
|
+
dashasShoolaPratyantar: (body, options) => call('/vedic/dashas/shoola/pratyantar', body, options),
|
|
681
|
+
dashasShoolaSookshma: (body, options) => call('/vedic/dashas/shoola/sookshma', body, options),
|
|
682
|
+
dashasSthiraAntar: (body, options) => call('/vedic/dashas/sthira/antar', body, options),
|
|
683
|
+
dashasSthiraMaha: (body, options) => call('/vedic/dashas/sthira/maha', body, options),
|
|
684
|
+
dashasSthiraPrana: (body, options) => call('/vedic/dashas/sthira/prana', body, options),
|
|
685
|
+
dashasSthiraPratyantar: (body, options) => call('/vedic/dashas/sthira/pratyantar', body, options),
|
|
686
|
+
dashasSthiraSookshma: (body, options) => call('/vedic/dashas/sthira/sookshma', body, options),
|
|
687
|
+
dashasTribhagiAntar: (body, options) => call('/vedic/dashas/tribhagi/antar', body, options),
|
|
688
|
+
dashasTribhagiMaha: (body, options) => call('/vedic/dashas/tribhagi/maha', body, options),
|
|
689
|
+
dashasTribhagiPrana: (body, options) => call('/vedic/dashas/tribhagi/prana', body, options),
|
|
690
|
+
dashasTribhagiPratyantar: (body, options) => call('/vedic/dashas/tribhagi/pratyantar', body, options),
|
|
691
|
+
dashasTribhagiSookshma: (body, options) => call('/vedic/dashas/tribhagi/sookshma', body, options),
|
|
692
|
+
dashasVimshottariAntar: (body, options) => call('/vedic/dashas/vimshottari/antar', body, options),
|
|
693
|
+
dashasVimshottariMaha: (body, options) => call('/vedic/dashas/vimshottari/maha', body, options),
|
|
694
|
+
dashasVimshottariPrana: (body, options) => call('/vedic/dashas/vimshottari/prana', body, options),
|
|
695
|
+
dashasVimshottariPratyantar: (body, options) => call('/vedic/dashas/vimshottari/pratyantar', body, options),
|
|
696
|
+
dashasVimshottariSookshma: (body, options) => call('/vedic/dashas/vimshottari/sookshma', body, options),
|
|
697
|
+
dashasYoginiAntar: (body, options) => call('/vedic/dashas/yogini/antar', body, options),
|
|
698
|
+
dashasYoginiMaha: (body, options) => call('/vedic/dashas/yogini/maha', body, options),
|
|
699
|
+
dashasYoginiPrana: (body, options) => call('/vedic/dashas/yogini/prana', body, options),
|
|
700
|
+
dashasYoginiPratyantar: (body, options) => call('/vedic/dashas/yogini/pratyantar', body, options),
|
|
701
|
+
dashasYoginiSookshma: (body, options) => call('/vedic/dashas/yogini/sookshma', body, options),
|
|
702
|
+
doshasKpFull: (body, options) => call('/vedic/doshas/kp/full', body, options),
|
|
703
|
+
doshasKpKalasarpa: (body, options) => call('/vedic/doshas/kp/kalasarpa', body, options),
|
|
704
|
+
doshasKpKemadruma: (body, options) => call('/vedic/doshas/kp/kemadruma', body, options),
|
|
705
|
+
doshasKpManglik: (body, options) => call('/vedic/doshas/kp/manglik', body, options),
|
|
706
|
+
doshasKpPitra: (body, options) => call('/vedic/doshas/kp/pitra', body, options),
|
|
707
|
+
doshasKpSadeSati: (body, options) => call('/vedic/doshas/kp/sade-sati', body, options),
|
|
708
|
+
doshasLalKitabFull: (body, options) => call('/vedic/doshas/lal-kitab/full', body, options),
|
|
709
|
+
doshasLalKitabKalsarpa: (body, options) => call('/vedic/doshas/lal-kitab/kalsarpa', body, options),
|
|
710
|
+
doshasLalKitabManglik: (body, options) => call('/vedic/doshas/lal-kitab/manglik', body, options),
|
|
711
|
+
doshasLalKitabPitra: (body, options) => call('/vedic/doshas/lal-kitab/pitra', body, options),
|
|
712
|
+
doshasLalKitabRin: (body, options) => call('/vedic/doshas/lal-kitab/rin', body, options),
|
|
713
|
+
doshasLalKitabShrapit: (body, options) => call('/vedic/doshas/lal-kitab/shrapit', body, options),
|
|
714
|
+
doshasParasharaFull: (body, options) => call('/vedic/doshas/parashara/full', body, options),
|
|
715
|
+
doshasParasharaGrahan: (body, options) => call('/vedic/doshas/parashara/grahan', body, options),
|
|
716
|
+
doshasParasharaGuruChandal: (body, options) => call('/vedic/doshas/parashara/guru-chandal', body, options),
|
|
717
|
+
doshasParasharaKaalSarp: (body, options) => call('/vedic/doshas/parashara/kaal-sarp', body, options),
|
|
718
|
+
doshasParasharaMangal: (body, options) => call('/vedic/doshas/parashara/mangal', body, options),
|
|
719
|
+
doshasParasharaPitru: (body, options) => call('/vedic/doshas/parashara/pitru', body, options),
|
|
720
|
+
doshasParasharaShrapit: (body, options) => call('/vedic/doshas/parashara/shrapit', body, options),
|
|
721
|
+
jaiminiArgalaAnalysis: (body, options) => call('/vedic/jaimini/argala-analysis', body, options),
|
|
722
|
+
jaiminiAspects: (body, options) => call('/vedic/jaimini/aspects', body, options),
|
|
723
|
+
jaiminiAtmakarakaNavamsa: (body, options) => call('/vedic/jaimini/atmakaraka-navamsa', body, options),
|
|
724
|
+
jaiminiAtmakarakaRotation: (body, options) => call('/vedic/jaimini/atmakaraka-rotation', body, options),
|
|
725
|
+
jaiminiCharaKarakas: (body, options) => call('/vedic/jaimini/chara-karakas', body, options),
|
|
726
|
+
jaiminiDashaSummary: (body, options) => call('/vedic/jaimini/dasha-summary', body, options),
|
|
727
|
+
jaiminiDrishtiGraha: (body, options) => call('/vedic/jaimini/drishti-graha', body, options),
|
|
728
|
+
jaiminiDrishtiRasi: (body, options) => call('/vedic/jaimini/drishti-rasi', body, options),
|
|
729
|
+
jaiminiKarakas: (body, options) => call('/vedic/jaimini/karakas', body, options),
|
|
730
|
+
jaiminiPadas: (body, options) => call('/vedic/jaimini/padas', body, options),
|
|
731
|
+
jaiminiUpapada: (body, options) => call('/vedic/jaimini/upapada', body, options),
|
|
732
|
+
jaiminiYogas: (body, options) => call('/vedic/jaimini/yogas', body, options),
|
|
733
|
+
kpAscSub: (body, options) => call('/vedic/kp/asc-sub', body, options),
|
|
734
|
+
kpCusps: (body, options) => call('/vedic/kp/cusps', body, options),
|
|
735
|
+
kpFortuna: (body, options) => call('/vedic/kp/fortuna', body, options),
|
|
736
|
+
kpHorary: (body, options) => call('/vedic/kp/horary', body, options),
|
|
737
|
+
kpPlanetCuspalPosition: (body, options) => call('/vedic/kp/planet-cuspal-position', body, options),
|
|
738
|
+
kpRulingPlanets: (body, options) => call('/vedic/kp/ruling-planets', body, options),
|
|
739
|
+
kpSignificators: (body, options) => call('/vedic/kp/significators', body, options),
|
|
740
|
+
kpSubLords: (body, options) => call('/vedic/kp/sub-lords', body, options),
|
|
741
|
+
kpSubSubLord: (body, options) => call('/vedic/kp/sub-sub-lord', body, options),
|
|
742
|
+
kpTransitKp: (body, options) => call('/vedic/kp/transit-kp', body, options),
|
|
743
|
+
lalKitabBlindHouse: (body, options) => call('/vedic/lal-kitab/blind-house', body, options),
|
|
744
|
+
lalKitabDasha: (body, options) => call('/vedic/lal-kitab/dasha', body, options),
|
|
745
|
+
lalKitabDebts: (body, options) => call('/vedic/lal-kitab/debts', body, options),
|
|
746
|
+
lalKitabKismat: (body, options) => call('/vedic/lal-kitab/kismat', body, options),
|
|
747
|
+
lalKitabLalKundali: (body, options) => call('/vedic/lal-kitab/lal-kundali', body, options),
|
|
748
|
+
lalKitabLifeGraph: (body, options) => call('/vedic/lal-kitab/life-graph', body, options),
|
|
749
|
+
lalKitabPlanetHouseEffect: (body, options) => call('/vedic/lal-kitab/planet-house-effect', body, options),
|
|
750
|
+
lalKitabProsperity: (body, options) => call('/vedic/lal-kitab/prosperity', body, options),
|
|
751
|
+
lalKitabRemedies: (body, options) => call('/vedic/lal-kitab/remedies', body, options),
|
|
752
|
+
lalKitabSleepingHouse: (body, options) => call('/vedic/lal-kitab/sleeping-house', body, options),
|
|
753
|
+
lalKitabTeva: (body, options) => call('/vedic/lal-kitab/teva', body, options),
|
|
754
|
+
lalKitabVarshphal: (body, options) => call('/vedic/lal-kitab/varshphal', body, options),
|
|
755
|
+
muhuratBusinessStart: (body, options) => call('/vedic/muhurat/business-start', body, options),
|
|
756
|
+
muhuratEducationStart: (body, options) => call('/vedic/muhurat/education-start', body, options),
|
|
757
|
+
muhuratGeneralAuspicious: (body, options) => call('/vedic/muhurat/general-auspicious', body, options),
|
|
758
|
+
muhuratInvestment: (body, options) => call('/vedic/muhurat/investment', body, options),
|
|
759
|
+
muhuratJourneyLong: (body, options) => call('/vedic/muhurat/journey-long', body, options),
|
|
760
|
+
muhuratMarriage: (body, options) => call('/vedic/muhurat/marriage', body, options),
|
|
761
|
+
muhuratNameChange: (body, options) => call('/vedic/muhurat/name-change', body, options),
|
|
762
|
+
muhuratNamingCeremony: (body, options) => call('/vedic/muhurat/naming-ceremony', body, options),
|
|
763
|
+
muhuratPropertyPurchase: (body, options) => call('/vedic/muhurat/property-purchase', body, options),
|
|
764
|
+
muhuratSurgery: (body, options) => call('/vedic/muhurat/surgery', body, options),
|
|
765
|
+
muhuratTravel: (body, options) => call('/vedic/muhurat/travel', body, options),
|
|
766
|
+
muhuratVehiclePurchase: (body, options) => call('/vedic/muhurat/vehicle-purchase', body, options),
|
|
767
|
+
panchangChoghadia: (body, options) => call('/vedic/panchang/choghadia', body, options),
|
|
768
|
+
panchangFull: (body, options) => call('/vedic/panchang/full', body, options),
|
|
769
|
+
panchangHora: (body, options) => call('/vedic/panchang/hora', body, options),
|
|
770
|
+
panchangKarana: (body, options) => call('/vedic/panchang/karana', body, options),
|
|
771
|
+
panchangNakshatraOfDay: (body, options) => call('/vedic/panchang/nakshatra-of-day', body, options),
|
|
772
|
+
panchangRahuKaal: (body, options) => call('/vedic/panchang/rahu-kaal', body, options),
|
|
773
|
+
panchangTithi: (body, options) => call('/vedic/panchang/tithi', body, options),
|
|
774
|
+
panchangYoga: (body, options) => call('/vedic/panchang/yoga', body, options),
|
|
775
|
+
shadbalaCheshta: (body, options) => call('/vedic/shadbala/cheshta', body, options),
|
|
776
|
+
shadbalaDig: (body, options) => call('/vedic/shadbala/dig', body, options),
|
|
777
|
+
shadbalaDrik: (body, options) => call('/vedic/shadbala/drik', body, options),
|
|
778
|
+
shadbalaFull: (body, options) => call('/vedic/shadbala/full', body, options),
|
|
779
|
+
shadbalaKala: (body, options) => call('/vedic/shadbala/kala', body, options),
|
|
780
|
+
shadbalaNaisargika: (body, options) => call('/vedic/shadbala/naisargika', body, options),
|
|
781
|
+
shadbalaSthana: (body, options) => call('/vedic/shadbala/sthana', body, options),
|
|
782
|
+
vargaD1: (body, options) => call('/vedic/varga/D1', body, options),
|
|
783
|
+
vargaD10: (body, options) => call('/vedic/varga/D10', body, options),
|
|
784
|
+
vargaD12: (body, options) => call('/vedic/varga/D12', body, options),
|
|
785
|
+
vargaD16: (body, options) => call('/vedic/varga/D16', body, options),
|
|
786
|
+
vargaD2: (body, options) => call('/vedic/varga/D2', body, options),
|
|
787
|
+
vargaD20: (body, options) => call('/vedic/varga/D20', body, options),
|
|
788
|
+
vargaD24: (body, options) => call('/vedic/varga/D24', body, options),
|
|
789
|
+
vargaD27: (body, options) => call('/vedic/varga/D27', body, options),
|
|
790
|
+
vargaD3: (body, options) => call('/vedic/varga/D3', body, options),
|
|
791
|
+
vargaD30: (body, options) => call('/vedic/varga/D30', body, options),
|
|
792
|
+
vargaD4: (body, options) => call('/vedic/varga/D4', body, options),
|
|
793
|
+
vargaD40: (body, options) => call('/vedic/varga/D40', body, options),
|
|
794
|
+
vargaD45: (body, options) => call('/vedic/varga/D45', body, options),
|
|
795
|
+
vargaD60: (body, options) => call('/vedic/varga/D60', body, options),
|
|
796
|
+
vargaD7: (body, options) => call('/vedic/varga/D7', body, options),
|
|
797
|
+
vargaD9: (body, options) => call('/vedic/varga/D9', body, options),
|
|
798
|
+
yogasJaiminiDaridra: (body, options) => call('/vedic/yogas/jaimini/daridra', body, options),
|
|
799
|
+
yogasJaiminiDhana: (body, options) => call('/vedic/yogas/jaimini/dhana', body, options),
|
|
800
|
+
yogasJaiminiFull: (body, options) => call('/vedic/yogas/jaimini/full', body, options),
|
|
801
|
+
yogasJaiminiKarakamsa: (body, options) => call('/vedic/yogas/jaimini/karakamsa', body, options),
|
|
802
|
+
yogasJaiminiKarakaYoga: (body, options) => call('/vedic/yogas/jaimini/karaka-yoga', body, options),
|
|
803
|
+
yogasJaiminiRaja: (body, options) => call('/vedic/yogas/jaimini/raja', body, options),
|
|
804
|
+
yogasJaiminiShubhaGraha: (body, options) => call('/vedic/yogas/jaimini/shubha-graha', body, options),
|
|
805
|
+
yogasJaiminiViparita: (body, options) => call('/vedic/yogas/jaimini/viparita', body, options),
|
|
806
|
+
yogasParasharaAdhi: (body, options) => call('/vedic/yogas/parashara/adhi', body, options),
|
|
807
|
+
yogasParasharaDhana: (body, options) => call('/vedic/yogas/parashara/dhana', body, options),
|
|
808
|
+
yogasParasharaDharmaKarmadhipati: (body, options) => call('/vedic/yogas/parashara/dharma-karmadhipati', body, options),
|
|
809
|
+
yogasParasharaFull: (body, options) => call('/vedic/yogas/parashara/full', body, options),
|
|
810
|
+
yogasParasharaGajakesari: (body, options) => call('/vedic/yogas/parashara/gajakesari', body, options),
|
|
811
|
+
yogasParasharaPanchaMahapurusha: (body, options) => call('/vedic/yogas/parashara/pancha-mahapurusha', body, options),
|
|
812
|
+
yogasParasharaRaja: (body, options) => call('/vedic/yogas/parashara/raja', body, options),
|
|
813
|
+
},
|
|
814
|
+
vedicDivisional: {
|
|
815
|
+
compute: (body, options) => call('/vedic-divisional', body, options),
|
|
816
|
+
},
|
|
817
|
+
webhooks: {
|
|
818
|
+
dashaChange: (body, options) => call('/webhooks/dasha-change', body, options),
|
|
819
|
+
eclipseAlert: (body, options) => call('/webhooks/eclipse-alert', body, options),
|
|
820
|
+
mahadashaEnd: (body, options) => call('/webhooks/mahadasha-end', body, options),
|
|
821
|
+
planetaryHourTick: (body, options) => call('/webhooks/planetary-hour-tick', body, options),
|
|
822
|
+
retrogradeEnd: (body, options) => call('/webhooks/retrograde-end', body, options),
|
|
823
|
+
retrogradeStart: (body, options) => call('/webhooks/retrograde-start', body, options),
|
|
824
|
+
returnDue: (body, options) => call('/webhooks/return-due', body, options),
|
|
825
|
+
signIngress: (body, options) => call('/webhooks/sign-ingress', body, options),
|
|
826
|
+
subscribe: (body, options) => call('/webhooks/subscribe', body, options),
|
|
827
|
+
transitTrigger: (body, options) => call('/webhooks/transit-trigger', body, options),
|
|
828
|
+
voidOfCourseStart: (body, options) => call('/webhooks/void-of-course-start', body, options),
|
|
829
|
+
},
|
|
830
|
+
wellness: {
|
|
831
|
+
crystals: (body, options) => call('/wellness/crystals', body, options),
|
|
832
|
+
cycle: (body, options) => call('/wellness/cycle', body, options),
|
|
833
|
+
diet: (body, options) => call('/wellness/diet', body, options),
|
|
834
|
+
exercise: (body, options) => call('/wellness/exercise', body, options),
|
|
835
|
+
herbs: (body, options) => call('/wellness/herbs', body, options),
|
|
836
|
+
medicalAstrology: (body, options) => call('/wellness/medical-astrology', body, options),
|
|
837
|
+
mentalHealth: (body, options) => call('/wellness/mental-health', body, options),
|
|
838
|
+
sleepCycles: (body, options) => call('/wellness/sleep-cycles', body, options),
|
|
839
|
+
yoga: (body, options) => call('/wellness/yoga', body, options),
|
|
840
|
+
},
|
|
841
|
+
whitelabel: {
|
|
842
|
+
domainVerify: (body, options) => call('/whitelabel/domain/verify', body, options),
|
|
843
|
+
logo: (body, options) => call('/whitelabel/logo', body, options),
|
|
844
|
+
preview: (body, options) => call('/whitelabel/preview', body, options),
|
|
845
|
+
},
|
|
846
|
+
zenith: {
|
|
847
|
+
compute: (body, options) => call('/zenith', body, options),
|
|
848
|
+
},
|
|
849
|
+
ziwei: {
|
|
850
|
+
fullChart: (body, options) => call('/ziwei/full-chart', body, options),
|
|
851
|
+
mainStars: (body, options) => call('/ziwei/main-stars', body, options),
|
|
852
|
+
palaceCareer: (body, options) => call('/ziwei/palace-career', body, options),
|
|
853
|
+
palaceChildren: (body, options) => call('/ziwei/palace-children', body, options),
|
|
854
|
+
palaceDestiny: (body, options) => call('/ziwei/palace-destiny', body, options),
|
|
855
|
+
palaceHealth: (body, options) => call('/ziwei/palace-health', body, options),
|
|
856
|
+
palaceProperty: (body, options) => call('/ziwei/palace-property', body, options),
|
|
857
|
+
palaceSiblings: (body, options) => call('/ziwei/palace-siblings', body, options),
|
|
858
|
+
palaceSpouse: (body, options) => call('/ziwei/palace-spouse', body, options),
|
|
859
|
+
palaceTravel: (body, options) => call('/ziwei/palace-travel', body, options),
|
|
860
|
+
palaceWealth: (body, options) => call('/ziwei/palace-wealth', body, options),
|
|
861
|
+
twelvePalaces: (body, options) => call('/ziwei/twelve-palaces', body, options),
|
|
862
|
+
},
|
|
863
|
+
};
|
|
864
|
+
}
|
|
865
|
+
//# sourceMappingURL=namespaces.generated.js.map
|