You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Multi-language responses.** Interpretations are available in 8 languages: `en`, `tr`, `de`, `es`, `hi`, `pt`, `fr`, `ru`. Pass `query: { lang }` on any supported endpoint. Supported: astrology, vedicAstrology, forecast, humanDesign, numerology, tarot, biorhythm, iching, crystals, angelNumbers. English-only: dreams, location, usage, languages. Languages without translations yet fall back to English.
13
+
**Multi-language responses.** Interpretations are available in 8 languages: `en`, `tr`, `de`, `es`, `hi`, `pt`, `fr`, `ru`. Pass `query: { lang }` on any supported endpoint. Supported: astrology, vedicAstrology, forecast, humanDesign, numerology, tarot, biorhythm, iching, crystals, angelNumbers, languages. English-only: dreams, location, usage. Languages without translations yet fall back to English.
Copy file name to clipboardExpand all lines: src/types.gen.ts
+145-3Lines changed: 145 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4261,7 +4261,7 @@ export type YogaDetail = {
4261
4261
4262
4262
export type YogaDetectResponse = {
4263
4263
/**
4264
-
* Array of 44 detected yogas, always the full set so a caller can render absent verdicts too. Every entry carries a `present` boolean and a `quality` (Positive, Negative, or Both = auspicious, inauspicious, or context-dependent); filter on present === true for active yogas. Evidence text names the rule that triggered or failed, or the precedence norm that outranked it.
4264
+
* Array of 48 detected yogas, always the full set so a caller can render absent verdicts too. Every entry carries a `present` boolean and a `quality` (Positive, Negative, or Both = auspicious, inauspicious, or context-dependent); filter on present === true for active yogas. Evidence text names the rule that triggered or failed, or the precedence norm that outranked it.
4265
4265
*/
4266
4266
yogas: Array<{
4267
4267
/**
@@ -4315,7 +4315,7 @@ export type YogaDetectResponse = {
4315
4315
ayanamsaDegrees: number;
4316
4316
};
4317
4317
/**
4318
-
* Count of yogas where present === true in this chart. Range 0-44, though real charts sit in the low single digits: the Nabhasa families are mutually constrained by the precedence norms, and most shape yogas are rare.
4318
+
* Count of yogas where present === true in this chart. Range 0-48, though real charts sit in the low single digits: the Nabhasa families are mutually constrained by the precedence norms, and most shape yogas are rare.
4319
4319
*/
4320
4320
total: number;
4321
4321
/**
@@ -7457,6 +7457,148 @@ export type DreamSymbol = {
7457
7457
meaning: string;
7458
7458
};
7459
7459
7460
+
export type GetLanguagesFieldLabelsData = {
7461
+
body?: never;
7462
+
path?: never;
7463
+
query?: {
7464
+
/**
7465
+
* Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
* Label per request field or parameter name. Keys are the wire names used in request bodies and query parameters, such as `birthDate`, `timezone` or `houseSystem`.
7587
+
*/
7588
+
fields: {
7589
+
[key: string]: string;
7590
+
};
7591
+
/**
7592
+
* Label per selectable option, keyed `{fieldName}.{value}` so the same value can read differently under different fields. For example `nodeType.mean` and `houseSystem.whole-sign`. Split on the first dot: the field name is before it, and everything after it is the value you send back unchanged.
7593
+
*/
7594
+
enums: {
7595
+
[key: string]: string;
7596
+
};
7597
+
};
7598
+
};
7599
+
7600
+
export type GetLanguagesFieldLabelsResponse = GetLanguagesFieldLabelsResponses[keyof GetLanguagesFieldLabelsResponses];
7601
+
7460
7602
export type GetAstrologySignsData = {
7461
7603
body?: never;
7462
7604
path?: never;
@@ -20505,7 +20647,7 @@ export type PostVedicAstrologyYogaDetectError = PostVedicAstrologyYogaDetectErro
20505
20647
20506
20648
export type PostVedicAstrologyYogaDetectResponses = {
20507
20649
/**
20508
-
* List of 44 classical yogas with present/absent verdicts and classical-text evidence.
20650
+
* List of 48 classical yogas with present/absent verdicts and classical-text evidence.
0 commit comments