@roxyapi/sdk 1.2.3 → 1.2.5
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/factory.cjs +57 -21
- package/dist/factory.js +57 -21
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/sdk.gen.d.ts +27 -15
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/types.gen.d.ts +1189 -225
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
- package/src/sdk.gen.ts +60 -22
- package/src/types.gen.ts +1195 -221
- package/src/version.ts +1 -1
package/src/types.gen.ts
CHANGED
|
@@ -5121,55 +5121,55 @@ export type PostAstrologySynastryData = {
|
|
|
5121
5121
|
body?: {
|
|
5122
5122
|
person1: {
|
|
5123
5123
|
/**
|
|
5124
|
-
*
|
|
5125
|
-
*/
|
|
5126
|
-
name?: string;
|
|
5127
|
-
/**
|
|
5128
|
-
* Birth date in YYYY-MM-DD format.
|
|
5124
|
+
* Birth date in YYYY-MM-DD format. Determines planetary positions for the specific calendar day.
|
|
5129
5125
|
*/
|
|
5130
5126
|
date: string;
|
|
5131
5127
|
/**
|
|
5132
|
-
* Birth time in 24-hour HH:MM:SS format. Determines Ascendant and house
|
|
5128
|
+
* Birth time in 24-hour HH:MM:SS format. Determines the Ascendant (rising sign) and house cusps. Use 12:00:00 if unknown.
|
|
5133
5129
|
*/
|
|
5134
5130
|
time: string;
|
|
5135
5131
|
/**
|
|
5136
|
-
* Birth location latitude in decimal degrees (-90 to 90).
|
|
5132
|
+
* Birth location latitude in decimal degrees (-90 to 90). Positive = North, negative = South.
|
|
5137
5133
|
*/
|
|
5138
5134
|
latitude: number;
|
|
5139
5135
|
/**
|
|
5140
|
-
* Birth location longitude in decimal degrees (-180 to 180).
|
|
5136
|
+
* Birth location longitude in decimal degrees (-180 to 180). Positive = East, negative = West.
|
|
5141
5137
|
*/
|
|
5142
5138
|
longitude: number;
|
|
5143
5139
|
/**
|
|
5144
5140
|
* Timezone offset from UTC in decimal hours. Examples: New York = -5, London = 0, India = 5.5, Tokyo = 9.
|
|
5145
5141
|
*/
|
|
5146
5142
|
timezone: number;
|
|
5147
|
-
};
|
|
5148
|
-
person2: {
|
|
5149
5143
|
/**
|
|
5150
5144
|
* Optional display name for this person. Included in the response for easy identification.
|
|
5151
5145
|
*/
|
|
5152
5146
|
name?: string;
|
|
5147
|
+
};
|
|
5148
|
+
person2: {
|
|
5153
5149
|
/**
|
|
5154
|
-
* Birth date in YYYY-MM-DD format.
|
|
5150
|
+
* Birth date in YYYY-MM-DD format. Determines planetary positions for the specific calendar day.
|
|
5155
5151
|
*/
|
|
5156
5152
|
date: string;
|
|
5157
5153
|
/**
|
|
5158
|
-
* Birth time in 24-hour HH:MM:SS format. Determines Ascendant and house
|
|
5154
|
+
* Birth time in 24-hour HH:MM:SS format. Determines the Ascendant (rising sign) and house cusps. Use 12:00:00 if unknown.
|
|
5159
5155
|
*/
|
|
5160
5156
|
time: string;
|
|
5161
5157
|
/**
|
|
5162
|
-
* Birth location latitude in decimal degrees (-90 to 90).
|
|
5158
|
+
* Birth location latitude in decimal degrees (-90 to 90). Positive = North, negative = South.
|
|
5163
5159
|
*/
|
|
5164
5160
|
latitude: number;
|
|
5165
5161
|
/**
|
|
5166
|
-
* Birth location longitude in decimal degrees (-180 to 180).
|
|
5162
|
+
* Birth location longitude in decimal degrees (-180 to 180). Positive = East, negative = West.
|
|
5167
5163
|
*/
|
|
5168
5164
|
longitude: number;
|
|
5169
5165
|
/**
|
|
5170
5166
|
* Timezone offset from UTC in decimal hours. Examples: New York = -5, London = 0, India = 5.5, Tokyo = 9.
|
|
5171
5167
|
*/
|
|
5172
5168
|
timezone: number;
|
|
5169
|
+
/**
|
|
5170
|
+
* Optional display name for this person. Included in the response for easy identification.
|
|
5171
|
+
*/
|
|
5172
|
+
name?: string;
|
|
5173
5173
|
};
|
|
5174
5174
|
/**
|
|
5175
5175
|
* House system for both natal charts. Placidus (default), Whole Sign, Equal, or Koch.
|
|
@@ -7102,7 +7102,7 @@ export type PostAstrologyCompatibilityScoreResponses = {
|
|
|
7102
7102
|
*/
|
|
7103
7103
|
intellectual: number;
|
|
7104
7104
|
/**
|
|
7105
|
-
* Physical compatibility score based on Mars-Mars and Mars-
|
|
7105
|
+
* Physical compatibility score based on Mars-Mars and Mars-Sun inter-aspects.
|
|
7106
7106
|
*/
|
|
7107
7107
|
physical: number;
|
|
7108
7108
|
/**
|
|
@@ -7111,11 +7111,271 @@ export type PostAstrologyCompatibilityScoreResponses = {
|
|
|
7111
7111
|
spiritual: number;
|
|
7112
7112
|
};
|
|
7113
7113
|
/**
|
|
7114
|
-
*
|
|
7114
|
+
* Summary of key planetary positions for both people. Includes the four planets most relevant to relationship compatibility.
|
|
7115
|
+
*/
|
|
7116
|
+
persons: {
|
|
7117
|
+
/**
|
|
7118
|
+
* Key planet positions for person 1. Sun, Moon, Venus, and Mars sign placements.
|
|
7119
|
+
*/
|
|
7120
|
+
person1: {
|
|
7121
|
+
/**
|
|
7122
|
+
* Sun sign position. Core identity and ego.
|
|
7123
|
+
*/
|
|
7124
|
+
sun: {
|
|
7125
|
+
/**
|
|
7126
|
+
* Zodiac sign this planet occupies in the tropical zodiac.
|
|
7127
|
+
*/
|
|
7128
|
+
sign: string;
|
|
7129
|
+
/**
|
|
7130
|
+
* Degree within the zodiac sign (0-29.999).
|
|
7131
|
+
*/
|
|
7132
|
+
degree: number;
|
|
7133
|
+
};
|
|
7134
|
+
/**
|
|
7135
|
+
* Moon sign position. Emotional nature and instincts.
|
|
7136
|
+
*/
|
|
7137
|
+
moon: {
|
|
7138
|
+
/**
|
|
7139
|
+
* Zodiac sign this planet occupies in the tropical zodiac.
|
|
7140
|
+
*/
|
|
7141
|
+
sign: string;
|
|
7142
|
+
/**
|
|
7143
|
+
* Degree within the zodiac sign (0-29.999).
|
|
7144
|
+
*/
|
|
7145
|
+
degree: number;
|
|
7146
|
+
};
|
|
7147
|
+
/**
|
|
7148
|
+
* Venus sign position. Love language and relationship style.
|
|
7149
|
+
*/
|
|
7150
|
+
venus: {
|
|
7151
|
+
/**
|
|
7152
|
+
* Zodiac sign this planet occupies in the tropical zodiac.
|
|
7153
|
+
*/
|
|
7154
|
+
sign: string;
|
|
7155
|
+
/**
|
|
7156
|
+
* Degree within the zodiac sign (0-29.999).
|
|
7157
|
+
*/
|
|
7158
|
+
degree: number;
|
|
7159
|
+
};
|
|
7160
|
+
/**
|
|
7161
|
+
* Mars sign position. Passion, desire, and conflict style.
|
|
7162
|
+
*/
|
|
7163
|
+
mars: {
|
|
7164
|
+
/**
|
|
7165
|
+
* Zodiac sign this planet occupies in the tropical zodiac.
|
|
7166
|
+
*/
|
|
7167
|
+
sign: string;
|
|
7168
|
+
/**
|
|
7169
|
+
* Degree within the zodiac sign (0-29.999).
|
|
7170
|
+
*/
|
|
7171
|
+
degree: number;
|
|
7172
|
+
};
|
|
7173
|
+
};
|
|
7174
|
+
/**
|
|
7175
|
+
* Key planet positions for person 2. Sun, Moon, Venus, and Mars sign placements.
|
|
7176
|
+
*/
|
|
7177
|
+
person2: {
|
|
7178
|
+
/**
|
|
7179
|
+
* Sun sign position. Core identity and ego.
|
|
7180
|
+
*/
|
|
7181
|
+
sun: {
|
|
7182
|
+
/**
|
|
7183
|
+
* Zodiac sign this planet occupies in the tropical zodiac.
|
|
7184
|
+
*/
|
|
7185
|
+
sign: string;
|
|
7186
|
+
/**
|
|
7187
|
+
* Degree within the zodiac sign (0-29.999).
|
|
7188
|
+
*/
|
|
7189
|
+
degree: number;
|
|
7190
|
+
};
|
|
7191
|
+
/**
|
|
7192
|
+
* Moon sign position. Emotional nature and instincts.
|
|
7193
|
+
*/
|
|
7194
|
+
moon: {
|
|
7195
|
+
/**
|
|
7196
|
+
* Zodiac sign this planet occupies in the tropical zodiac.
|
|
7197
|
+
*/
|
|
7198
|
+
sign: string;
|
|
7199
|
+
/**
|
|
7200
|
+
* Degree within the zodiac sign (0-29.999).
|
|
7201
|
+
*/
|
|
7202
|
+
degree: number;
|
|
7203
|
+
};
|
|
7204
|
+
/**
|
|
7205
|
+
* Venus sign position. Love language and relationship style.
|
|
7206
|
+
*/
|
|
7207
|
+
venus: {
|
|
7208
|
+
/**
|
|
7209
|
+
* Zodiac sign this planet occupies in the tropical zodiac.
|
|
7210
|
+
*/
|
|
7211
|
+
sign: string;
|
|
7212
|
+
/**
|
|
7213
|
+
* Degree within the zodiac sign (0-29.999).
|
|
7214
|
+
*/
|
|
7215
|
+
degree: number;
|
|
7216
|
+
};
|
|
7217
|
+
/**
|
|
7218
|
+
* Mars sign position. Passion, desire, and conflict style.
|
|
7219
|
+
*/
|
|
7220
|
+
mars: {
|
|
7221
|
+
/**
|
|
7222
|
+
* Zodiac sign this planet occupies in the tropical zodiac.
|
|
7223
|
+
*/
|
|
7224
|
+
sign: string;
|
|
7225
|
+
/**
|
|
7226
|
+
* Degree within the zodiac sign (0-29.999).
|
|
7227
|
+
*/
|
|
7228
|
+
degree: number;
|
|
7229
|
+
};
|
|
7230
|
+
};
|
|
7231
|
+
};
|
|
7232
|
+
/**
|
|
7233
|
+
* Sign-by-sign compatibility analysis for the four key relationship planets. Each entry describes how the two signs interact through that planetary lens.
|
|
7234
|
+
*/
|
|
7235
|
+
signCompatibility: {
|
|
7236
|
+
/**
|
|
7237
|
+
* Sun sign compatibility. Reveals core personality dynamic as a couple.
|
|
7238
|
+
*/
|
|
7239
|
+
sun: {
|
|
7240
|
+
/**
|
|
7241
|
+
* Person 1 sign for this planet.
|
|
7242
|
+
*/
|
|
7243
|
+
person1Sign: string;
|
|
7244
|
+
/**
|
|
7245
|
+
* Person 2 sign for this planet.
|
|
7246
|
+
*/
|
|
7247
|
+
person2Sign: string;
|
|
7248
|
+
/**
|
|
7249
|
+
* Narrative analysis of how these two signs interact through this planet.
|
|
7250
|
+
*/
|
|
7251
|
+
description: string;
|
|
7252
|
+
};
|
|
7253
|
+
/**
|
|
7254
|
+
* Moon sign compatibility. Reveals how you process emotions and nurture each other.
|
|
7255
|
+
*/
|
|
7256
|
+
moon: {
|
|
7257
|
+
/**
|
|
7258
|
+
* Person 1 sign for this planet.
|
|
7259
|
+
*/
|
|
7260
|
+
person1Sign: string;
|
|
7261
|
+
/**
|
|
7262
|
+
* Person 2 sign for this planet.
|
|
7263
|
+
*/
|
|
7264
|
+
person2Sign: string;
|
|
7265
|
+
/**
|
|
7266
|
+
* Narrative analysis of how these two signs interact through this planet.
|
|
7267
|
+
*/
|
|
7268
|
+
description: string;
|
|
7269
|
+
};
|
|
7270
|
+
/**
|
|
7271
|
+
* Venus sign compatibility. Reveals love languages and what you find beautiful together.
|
|
7272
|
+
*/
|
|
7273
|
+
venus: {
|
|
7274
|
+
/**
|
|
7275
|
+
* Person 1 sign for this planet.
|
|
7276
|
+
*/
|
|
7277
|
+
person1Sign: string;
|
|
7278
|
+
/**
|
|
7279
|
+
* Person 2 sign for this planet.
|
|
7280
|
+
*/
|
|
7281
|
+
person2Sign: string;
|
|
7282
|
+
/**
|
|
7283
|
+
* Narrative analysis of how these two signs interact through this planet.
|
|
7284
|
+
*/
|
|
7285
|
+
description: string;
|
|
7286
|
+
};
|
|
7287
|
+
/**
|
|
7288
|
+
* Mars sign compatibility. Reveals how you handle passion, conflict, and desire.
|
|
7289
|
+
*/
|
|
7290
|
+
mars: {
|
|
7291
|
+
/**
|
|
7292
|
+
* Person 1 sign for this planet.
|
|
7293
|
+
*/
|
|
7294
|
+
person1Sign: string;
|
|
7295
|
+
/**
|
|
7296
|
+
* Person 2 sign for this planet.
|
|
7297
|
+
*/
|
|
7298
|
+
person2Sign: string;
|
|
7299
|
+
/**
|
|
7300
|
+
* Narrative analysis of how these two signs interact through this planet.
|
|
7301
|
+
*/
|
|
7302
|
+
description: string;
|
|
7303
|
+
};
|
|
7304
|
+
};
|
|
7305
|
+
/**
|
|
7306
|
+
* Elemental balance comparison. Shows how fire, earth, air, and water energy is distributed across both charts.
|
|
7307
|
+
*/
|
|
7308
|
+
elementBalance: {
|
|
7309
|
+
/**
|
|
7310
|
+
* Element distribution across person 1 natal planets.
|
|
7311
|
+
*/
|
|
7312
|
+
person1: {
|
|
7313
|
+
/**
|
|
7314
|
+
* Count of planets in fire signs (Aries, Leo, Sagittarius).
|
|
7315
|
+
*/
|
|
7316
|
+
fire: number;
|
|
7317
|
+
/**
|
|
7318
|
+
* Count of planets in earth signs (Taurus, Virgo, Capricorn).
|
|
7319
|
+
*/
|
|
7320
|
+
earth: number;
|
|
7321
|
+
/**
|
|
7322
|
+
* Count of planets in air signs (Gemini, Libra, Aquarius).
|
|
7323
|
+
*/
|
|
7324
|
+
air: number;
|
|
7325
|
+
/**
|
|
7326
|
+
* Count of planets in water signs (Cancer, Scorpio, Pisces).
|
|
7327
|
+
*/
|
|
7328
|
+
water: number;
|
|
7329
|
+
};
|
|
7330
|
+
/**
|
|
7331
|
+
* Element distribution across person 2 natal planets.
|
|
7332
|
+
*/
|
|
7333
|
+
person2: {
|
|
7334
|
+
/**
|
|
7335
|
+
* Count of planets in fire signs (Aries, Leo, Sagittarius).
|
|
7336
|
+
*/
|
|
7337
|
+
fire: number;
|
|
7338
|
+
/**
|
|
7339
|
+
* Count of planets in earth signs (Taurus, Virgo, Capricorn).
|
|
7340
|
+
*/
|
|
7341
|
+
earth: number;
|
|
7342
|
+
/**
|
|
7343
|
+
* Count of planets in air signs (Gemini, Libra, Aquarius).
|
|
7344
|
+
*/
|
|
7345
|
+
air: number;
|
|
7346
|
+
/**
|
|
7347
|
+
* Count of planets in water signs (Cancer, Scorpio, Pisces).
|
|
7348
|
+
*/
|
|
7349
|
+
water: number;
|
|
7350
|
+
};
|
|
7351
|
+
/**
|
|
7352
|
+
* Dominant element shared by both charts, or null if dominant elements differ.
|
|
7353
|
+
*/
|
|
7354
|
+
sharedElement: string;
|
|
7355
|
+
/**
|
|
7356
|
+
* How the elemental balance between charts shapes the relationship dynamic.
|
|
7357
|
+
*/
|
|
7358
|
+
description: string;
|
|
7359
|
+
};
|
|
7360
|
+
/**
|
|
7361
|
+
* Relationship archetype based on score pattern, category strengths, and elemental balance. One of eight archetypes: Kindred Spirits, Opposites Attract, The Power Couple, The Nurturers, The Adventurers, Growth Partners, The Balancers, The Mystics.
|
|
7362
|
+
*/
|
|
7363
|
+
archetype: {
|
|
7364
|
+
/**
|
|
7365
|
+
* Relationship archetype label. A headline-friendly label for the dynamic.
|
|
7366
|
+
*/
|
|
7367
|
+
label: string;
|
|
7368
|
+
/**
|
|
7369
|
+
* Narrative description of the relationship archetype and what it means.
|
|
7370
|
+
*/
|
|
7371
|
+
description: string;
|
|
7372
|
+
};
|
|
7373
|
+
/**
|
|
7374
|
+
* Top relationship strengths based on harmonious inter-chart aspects. Each includes the planet pair, aspect type, and relationship-specific interpretation.
|
|
7115
7375
|
*/
|
|
7116
7376
|
strengths: Array<string>;
|
|
7117
7377
|
/**
|
|
7118
|
-
* Potential friction points based on challenging inter-chart aspects.
|
|
7378
|
+
* Potential friction points based on challenging inter-chart aspects. Each includes specific guidance for navigating the tension.
|
|
7119
7379
|
*/
|
|
7120
7380
|
challenges: Array<string>;
|
|
7121
7381
|
/**
|
|
@@ -7147,6 +7407,35 @@ export type PostAstrologyCompatibilityScoreResponses = {
|
|
|
7147
7407
|
*/
|
|
7148
7408
|
neutral: number;
|
|
7149
7409
|
};
|
|
7410
|
+
/**
|
|
7411
|
+
* The most significant inter-chart aspects involving personal planets (Sun through Saturn), sorted by strength. Each includes a relationship-specific interpretation.
|
|
7412
|
+
*/
|
|
7413
|
+
keyAspects: Array<{
|
|
7414
|
+
/**
|
|
7415
|
+
* First planet in the aspect.
|
|
7416
|
+
*/
|
|
7417
|
+
planet1: string;
|
|
7418
|
+
/**
|
|
7419
|
+
* Second planet in the aspect.
|
|
7420
|
+
*/
|
|
7421
|
+
planet2: string;
|
|
7422
|
+
/**
|
|
7423
|
+
* Aspect type (conjunction, trine, square, etc.).
|
|
7424
|
+
*/
|
|
7425
|
+
type: string;
|
|
7426
|
+
/**
|
|
7427
|
+
* Deviation from exact aspect in degrees. Tighter orb = stronger influence.
|
|
7428
|
+
*/
|
|
7429
|
+
orb: number;
|
|
7430
|
+
/**
|
|
7431
|
+
* Aspect nature. Harmonious flows easily. Challenging creates growth-oriented tension.
|
|
7432
|
+
*/
|
|
7433
|
+
interpretation: 'harmonious' | 'challenging' | 'neutral';
|
|
7434
|
+
/**
|
|
7435
|
+
* Relationship-specific interpretation of this aspect between the two charts.
|
|
7436
|
+
*/
|
|
7437
|
+
description: string;
|
|
7438
|
+
}>;
|
|
7150
7439
|
};
|
|
7151
7440
|
};
|
|
7152
7441
|
|
|
@@ -7165,6 +7454,10 @@ export type GetAstrologyHoroscopeBySignDailyData = {
|
|
|
7165
7454
|
* Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
|
|
7166
7455
|
*/
|
|
7167
7456
|
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
7457
|
+
/**
|
|
7458
|
+
* Forecast date in YYYY-MM-DD format. Defaults to today. Supports future and past dates for editorial scheduling.
|
|
7459
|
+
*/
|
|
7460
|
+
date?: string;
|
|
7168
7461
|
};
|
|
7169
7462
|
url: '/astrology/horoscope/{sign}/daily';
|
|
7170
7463
|
};
|
|
@@ -7240,15 +7533,15 @@ export type GetAstrologyHoroscopeBySignDailyResponses = {
|
|
|
7240
7533
|
*/
|
|
7241
7534
|
date: string;
|
|
7242
7535
|
/**
|
|
7243
|
-
* General daily overview based on
|
|
7536
|
+
* General daily overview based on Moon house activation and planetary transits. Unique per sign based on whole-sign house positions.
|
|
7244
7537
|
*/
|
|
7245
7538
|
overview: string;
|
|
7246
7539
|
/**
|
|
7247
|
-
* Love and relationship forecast.
|
|
7540
|
+
* Love and relationship forecast. Based on Venus house position relative to this sign, providing unique guidance per sign.
|
|
7248
7541
|
*/
|
|
7249
7542
|
love: string;
|
|
7250
7543
|
/**
|
|
7251
|
-
* Career and professional outlook.
|
|
7544
|
+
* Career and professional outlook. Based on Mars house position relative to this sign, with Saturn and Jupiter influences.
|
|
7252
7545
|
*/
|
|
7253
7546
|
career: string;
|
|
7254
7547
|
/**
|
|
@@ -7272,27 +7565,48 @@ export type GetAstrologyHoroscopeBySignDailyResponses = {
|
|
|
7272
7565
|
*/
|
|
7273
7566
|
luckyColor: string;
|
|
7274
7567
|
/**
|
|
7275
|
-
* Most compatible zodiac signs today,
|
|
7568
|
+
* Most compatible zodiac signs today. First sign is where Venus transits, second is the Moon sign, remainder from elemental harmony.
|
|
7276
7569
|
*/
|
|
7277
7570
|
compatibleSigns: Array<string>;
|
|
7571
|
+
/**
|
|
7572
|
+
* Active planetary transits affecting this sign today, with house activations. Each transit shows the planet, its current sign, and which house it activates for the queried sign.
|
|
7573
|
+
*/
|
|
7574
|
+
activeTransits: Array<string>;
|
|
7575
|
+
/**
|
|
7576
|
+
* Current Moon sign. Changes every 2-3 days, sets the emotional tone for all signs.
|
|
7577
|
+
*/
|
|
7578
|
+
moonSign: string;
|
|
7579
|
+
/**
|
|
7580
|
+
* Current lunar phase (New Moon, Waxing Crescent, First Quarter, Waxing Gibbous, Full Moon, Waning Gibbous, Last Quarter, Waning Crescent).
|
|
7581
|
+
*/
|
|
7582
|
+
moonPhase: string;
|
|
7583
|
+
/**
|
|
7584
|
+
* Overall energy intensity for this sign today (1-10). Higher when more transits activate this sign directly. Useful for content widgets and visual indicators.
|
|
7585
|
+
*/
|
|
7586
|
+
energyRating: number;
|
|
7278
7587
|
};
|
|
7279
7588
|
};
|
|
7280
7589
|
|
|
7281
7590
|
export type GetAstrologyHoroscopeBySignDailyResponse = GetAstrologyHoroscopeBySignDailyResponses[keyof GetAstrologyHoroscopeBySignDailyResponses];
|
|
7282
7591
|
|
|
7283
|
-
export type
|
|
7592
|
+
export type GetAstrologyHoroscopeBySignWeeklyData = {
|
|
7284
7593
|
body?: never;
|
|
7285
|
-
path
|
|
7594
|
+
path: {
|
|
7595
|
+
/**
|
|
7596
|
+
* Zodiac sign, case-insensitive (e.g., aries, Aries, ARIES all work).
|
|
7597
|
+
*/
|
|
7598
|
+
sign: 'aries' | 'taurus' | 'gemini' | 'cancer' | 'leo' | 'virgo' | 'libra' | 'scorpio' | 'sagittarius' | 'capricorn' | 'aquarius' | 'pisces';
|
|
7599
|
+
};
|
|
7286
7600
|
query?: {
|
|
7287
7601
|
/**
|
|
7288
7602
|
* Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
|
|
7289
7603
|
*/
|
|
7290
7604
|
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
7291
7605
|
};
|
|
7292
|
-
url: '/astrology/horoscope/
|
|
7606
|
+
url: '/astrology/horoscope/{sign}/weekly';
|
|
7293
7607
|
};
|
|
7294
7608
|
|
|
7295
|
-
export type
|
|
7609
|
+
export type GetAstrologyHoroscopeBySignWeeklyErrors = {
|
|
7296
7610
|
/**
|
|
7297
7611
|
* Validation error (missing or invalid parameters)
|
|
7298
7612
|
*/
|
|
@@ -7347,160 +7661,23 @@ export type GetAstrologyHoroscopeDailyErrors = {
|
|
|
7347
7661
|
};
|
|
7348
7662
|
};
|
|
7349
7663
|
|
|
7350
|
-
export type
|
|
7664
|
+
export type GetAstrologyHoroscopeBySignWeeklyError = GetAstrologyHoroscopeBySignWeeklyErrors[keyof GetAstrologyHoroscopeBySignWeeklyErrors];
|
|
7351
7665
|
|
|
7352
|
-
export type
|
|
7666
|
+
export type GetAstrologyHoroscopeBySignWeeklyResponses = {
|
|
7353
7667
|
/**
|
|
7354
|
-
*
|
|
7668
|
+
* Weekly horoscope retrieved successfully
|
|
7355
7669
|
*/
|
|
7356
7670
|
200: {
|
|
7357
7671
|
/**
|
|
7358
|
-
*
|
|
7672
|
+
* Zodiac sign for this horoscope.
|
|
7359
7673
|
*/
|
|
7360
|
-
|
|
7674
|
+
sign: string;
|
|
7361
7675
|
/**
|
|
7362
|
-
*
|
|
7676
|
+
* Start date of the forecast week (Monday).
|
|
7363
7677
|
*/
|
|
7364
|
-
|
|
7365
|
-
/**
|
|
7366
|
-
* Zodiac sign for this horoscope.
|
|
7367
|
-
*/
|
|
7368
|
-
sign: string;
|
|
7369
|
-
/**
|
|
7370
|
-
* Date of this daily horoscope (YYYY-MM-DD).
|
|
7371
|
-
*/
|
|
7372
|
-
date: string;
|
|
7373
|
-
/**
|
|
7374
|
-
* General daily overview based on current planetary transits through the sign.
|
|
7375
|
-
*/
|
|
7376
|
-
overview: string;
|
|
7377
|
-
/**
|
|
7378
|
-
* Love and relationship forecast. Influenced by Venus and Moon transits.
|
|
7379
|
-
*/
|
|
7380
|
-
love: string;
|
|
7381
|
-
/**
|
|
7382
|
-
* Career and professional outlook. Influenced by Saturn, Jupiter, and Mars transits.
|
|
7383
|
-
*/
|
|
7384
|
-
career: string;
|
|
7385
|
-
/**
|
|
7386
|
-
* Health, energy, and wellness guidance for the day.
|
|
7387
|
-
*/
|
|
7388
|
-
health: string;
|
|
7389
|
-
/**
|
|
7390
|
-
* Financial outlook and money-related guidance.
|
|
7391
|
-
*/
|
|
7392
|
-
finance: string;
|
|
7393
|
-
/**
|
|
7394
|
-
* Actionable daily advice based on the dominant transit energy.
|
|
7395
|
-
*/
|
|
7396
|
-
advice: string;
|
|
7397
|
-
/**
|
|
7398
|
-
* Lucky number for the day.
|
|
7399
|
-
*/
|
|
7400
|
-
luckyNumber: number;
|
|
7401
|
-
/**
|
|
7402
|
-
* Lucky color for the day, derived from the sign element.
|
|
7403
|
-
*/
|
|
7404
|
-
luckyColor: string;
|
|
7405
|
-
/**
|
|
7406
|
-
* Most compatible zodiac signs today, based on elemental harmony.
|
|
7407
|
-
*/
|
|
7408
|
-
compatibleSigns: Array<string>;
|
|
7409
|
-
}>;
|
|
7410
|
-
};
|
|
7411
|
-
};
|
|
7412
|
-
|
|
7413
|
-
export type GetAstrologyHoroscopeDailyResponse = GetAstrologyHoroscopeDailyResponses[keyof GetAstrologyHoroscopeDailyResponses];
|
|
7414
|
-
|
|
7415
|
-
export type GetAstrologyHoroscopeBySignWeeklyData = {
|
|
7416
|
-
body?: never;
|
|
7417
|
-
path: {
|
|
7678
|
+
week: string;
|
|
7418
7679
|
/**
|
|
7419
|
-
*
|
|
7420
|
-
*/
|
|
7421
|
-
sign: 'aries' | 'taurus' | 'gemini' | 'cancer' | 'leo' | 'virgo' | 'libra' | 'scorpio' | 'sagittarius' | 'capricorn' | 'aquarius' | 'pisces';
|
|
7422
|
-
};
|
|
7423
|
-
query?: {
|
|
7424
|
-
/**
|
|
7425
|
-
* Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
|
|
7426
|
-
*/
|
|
7427
|
-
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
7428
|
-
};
|
|
7429
|
-
url: '/astrology/horoscope/{sign}/weekly';
|
|
7430
|
-
};
|
|
7431
|
-
|
|
7432
|
-
export type GetAstrologyHoroscopeBySignWeeklyErrors = {
|
|
7433
|
-
/**
|
|
7434
|
-
* Validation error (missing or invalid parameters)
|
|
7435
|
-
*/
|
|
7436
|
-
400: {
|
|
7437
|
-
/**
|
|
7438
|
-
* Human-readable error message. May change wording.
|
|
7439
|
-
*/
|
|
7440
|
-
error: string;
|
|
7441
|
-
/**
|
|
7442
|
-
* Machine-readable error code. Stable identifier.
|
|
7443
|
-
*/
|
|
7444
|
-
code: string;
|
|
7445
|
-
};
|
|
7446
|
-
/**
|
|
7447
|
-
* Invalid or missing API key
|
|
7448
|
-
*/
|
|
7449
|
-
401: {
|
|
7450
|
-
/**
|
|
7451
|
-
* Human-readable error message. May change wording.
|
|
7452
|
-
*/
|
|
7453
|
-
error: string;
|
|
7454
|
-
/**
|
|
7455
|
-
* Machine-readable error code. Stable identifier.
|
|
7456
|
-
*/
|
|
7457
|
-
code: string;
|
|
7458
|
-
};
|
|
7459
|
-
/**
|
|
7460
|
-
* Monthly rate limit exceeded
|
|
7461
|
-
*/
|
|
7462
|
-
429: {
|
|
7463
|
-
/**
|
|
7464
|
-
* Human-readable error message. May change wording.
|
|
7465
|
-
*/
|
|
7466
|
-
error: string;
|
|
7467
|
-
/**
|
|
7468
|
-
* Machine-readable error code. Stable identifier.
|
|
7469
|
-
*/
|
|
7470
|
-
code: string;
|
|
7471
|
-
};
|
|
7472
|
-
/**
|
|
7473
|
-
* Internal server error
|
|
7474
|
-
*/
|
|
7475
|
-
500: {
|
|
7476
|
-
/**
|
|
7477
|
-
* Human-readable error message. May change wording.
|
|
7478
|
-
*/
|
|
7479
|
-
error: string;
|
|
7480
|
-
/**
|
|
7481
|
-
* Machine-readable error code. Stable identifier.
|
|
7482
|
-
*/
|
|
7483
|
-
code: string;
|
|
7484
|
-
};
|
|
7485
|
-
};
|
|
7486
|
-
|
|
7487
|
-
export type GetAstrologyHoroscopeBySignWeeklyError = GetAstrologyHoroscopeBySignWeeklyErrors[keyof GetAstrologyHoroscopeBySignWeeklyErrors];
|
|
7488
|
-
|
|
7489
|
-
export type GetAstrologyHoroscopeBySignWeeklyResponses = {
|
|
7490
|
-
/**
|
|
7491
|
-
* Weekly horoscope retrieved successfully
|
|
7492
|
-
*/
|
|
7493
|
-
200: {
|
|
7494
|
-
/**
|
|
7495
|
-
* Zodiac sign for this horoscope.
|
|
7496
|
-
*/
|
|
7497
|
-
sign: string;
|
|
7498
|
-
/**
|
|
7499
|
-
* Start date of the forecast week (Monday).
|
|
7500
|
-
*/
|
|
7501
|
-
week: string;
|
|
7502
|
-
/**
|
|
7503
|
-
* Weekly overview highlighting the dominant planetary transits through the sign.
|
|
7680
|
+
* Weekly overview highlighting the dominant planetary transits through the sign.
|
|
7504
7681
|
*/
|
|
7505
7682
|
overview: string;
|
|
7506
7683
|
/**
|
|
@@ -7648,7 +7825,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
|
|
|
7648
7825
|
*/
|
|
7649
7826
|
finance: string;
|
|
7650
7827
|
/**
|
|
7651
|
-
* Week-by-week breakdown
|
|
7828
|
+
* Week-by-week breakdown with sign-specific focus areas based on transit house positions.
|
|
7652
7829
|
*/
|
|
7653
7830
|
weekByWeek: Array<{
|
|
7654
7831
|
/**
|
|
@@ -7656,7 +7833,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
|
|
|
7656
7833
|
*/
|
|
7657
7834
|
week: number;
|
|
7658
7835
|
/**
|
|
7659
|
-
* Primary focus area for this week.
|
|
7836
|
+
* Primary focus area for this week, derived from planetary house activations for this sign.
|
|
7660
7837
|
*/
|
|
7661
7838
|
focus: string;
|
|
7662
7839
|
/**
|
|
@@ -7665,7 +7842,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
|
|
|
7665
7842
|
advice: string;
|
|
7666
7843
|
}>;
|
|
7667
7844
|
/**
|
|
7668
|
-
* Key astrological dates this month
|
|
7845
|
+
* Key astrological dates this month with actual New Moon, Full Moon, and retrograde dates calculated from ephemeris data.
|
|
7669
7846
|
*/
|
|
7670
7847
|
keyDates: Array<{
|
|
7671
7848
|
/**
|
|
@@ -7673,7 +7850,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
|
|
|
7673
7850
|
*/
|
|
7674
7851
|
date: string;
|
|
7675
7852
|
/**
|
|
7676
|
-
* Astrological event
|
|
7853
|
+
* Astrological event active on this date (lunar phases, retrogrades, sign ingresses).
|
|
7677
7854
|
*/
|
|
7678
7855
|
event: string;
|
|
7679
7856
|
}>;
|
|
@@ -14813,6 +14990,201 @@ export type PostNumerologyExpressionResponses = {
|
|
|
14813
14990
|
|
|
14814
14991
|
export type PostNumerologyExpressionResponse = PostNumerologyExpressionResponses[keyof PostNumerologyExpressionResponses];
|
|
14815
14992
|
|
|
14993
|
+
export type PostNumerologyBridgeData = {
|
|
14994
|
+
body?: {
|
|
14995
|
+
/**
|
|
14996
|
+
* Full legal birth name as it appears on the birth certificate. Used to calculate Expression, Soul Urge, and Personality numbers. Include first, middle, and last names separated by spaces.
|
|
14997
|
+
*/
|
|
14998
|
+
fullName: string;
|
|
14999
|
+
/**
|
|
15000
|
+
* Birth year between 100 and 2100. Used to calculate the Life Path number via Pythagorean reduction.
|
|
15001
|
+
*/
|
|
15002
|
+
year: number;
|
|
15003
|
+
/**
|
|
15004
|
+
* Birth month (1 to 12)
|
|
15005
|
+
*/
|
|
15006
|
+
month: number;
|
|
15007
|
+
/**
|
|
15008
|
+
* Birth day (1 to 31)
|
|
15009
|
+
*/
|
|
15010
|
+
day: number;
|
|
15011
|
+
};
|
|
15012
|
+
path?: never;
|
|
15013
|
+
query?: {
|
|
15014
|
+
/**
|
|
15015
|
+
* Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
|
|
15016
|
+
*/
|
|
15017
|
+
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
15018
|
+
};
|
|
15019
|
+
url: '/numerology/bridge';
|
|
15020
|
+
};
|
|
15021
|
+
|
|
15022
|
+
export type PostNumerologyBridgeErrors = {
|
|
15023
|
+
/**
|
|
15024
|
+
* Validation error (missing or invalid parameters)
|
|
15025
|
+
*/
|
|
15026
|
+
400: {
|
|
15027
|
+
/**
|
|
15028
|
+
* Human-readable error message. May change wording.
|
|
15029
|
+
*/
|
|
15030
|
+
error: string;
|
|
15031
|
+
/**
|
|
15032
|
+
* Machine-readable error code. Stable identifier.
|
|
15033
|
+
*/
|
|
15034
|
+
code: string;
|
|
15035
|
+
};
|
|
15036
|
+
/**
|
|
15037
|
+
* Invalid or missing API key
|
|
15038
|
+
*/
|
|
15039
|
+
401: {
|
|
15040
|
+
/**
|
|
15041
|
+
* Human-readable error message. May change wording.
|
|
15042
|
+
*/
|
|
15043
|
+
error: string;
|
|
15044
|
+
/**
|
|
15045
|
+
* Machine-readable error code. Stable identifier.
|
|
15046
|
+
*/
|
|
15047
|
+
code: string;
|
|
15048
|
+
};
|
|
15049
|
+
/**
|
|
15050
|
+
* Monthly rate limit exceeded
|
|
15051
|
+
*/
|
|
15052
|
+
429: {
|
|
15053
|
+
/**
|
|
15054
|
+
* Human-readable error message. May change wording.
|
|
15055
|
+
*/
|
|
15056
|
+
error: string;
|
|
15057
|
+
/**
|
|
15058
|
+
* Machine-readable error code. Stable identifier.
|
|
15059
|
+
*/
|
|
15060
|
+
code: string;
|
|
15061
|
+
};
|
|
15062
|
+
/**
|
|
15063
|
+
* Internal server error
|
|
15064
|
+
*/
|
|
15065
|
+
500: {
|
|
15066
|
+
/**
|
|
15067
|
+
* Human-readable error message. May change wording.
|
|
15068
|
+
*/
|
|
15069
|
+
error: string;
|
|
15070
|
+
/**
|
|
15071
|
+
* Machine-readable error code. Stable identifier.
|
|
15072
|
+
*/
|
|
15073
|
+
code: string;
|
|
15074
|
+
};
|
|
15075
|
+
};
|
|
15076
|
+
|
|
15077
|
+
export type PostNumerologyBridgeError = PostNumerologyBridgeErrors[keyof PostNumerologyBridgeErrors];
|
|
15078
|
+
|
|
15079
|
+
export type PostNumerologyBridgeResponses = {
|
|
15080
|
+
/**
|
|
15081
|
+
* Successfully calculated three Bridge Numbers with actionable harmony guidance
|
|
15082
|
+
*/
|
|
15083
|
+
200: {
|
|
15084
|
+
/**
|
|
15085
|
+
* Bridge between Life Path and Expression numbers. Reveals the gap between your destined life purpose (from birth date) and your natural talents and abilities (from birth name). A high bridge here means your innate skills may not directly serve your life mission without conscious effort.
|
|
15086
|
+
*/
|
|
15087
|
+
lifePathExpression: {
|
|
15088
|
+
/**
|
|
15089
|
+
* Bridge number (0 to 8). The absolute difference between two core numerology numbers after reducing master numbers to single digits. 0 means the two aspects are already in natural harmony. Higher values indicate greater tension requiring conscious adjustment.
|
|
15090
|
+
*/
|
|
15091
|
+
bridge: number;
|
|
15092
|
+
from: {
|
|
15093
|
+
/**
|
|
15094
|
+
* Name of the first core number in this bridge pair. Identifies which aspect of personality or destiny is being compared.
|
|
15095
|
+
*/
|
|
15096
|
+
name: string;
|
|
15097
|
+
/**
|
|
15098
|
+
* The reduced single-digit value (1 to 9) of the first core number used in the bridge calculation.
|
|
15099
|
+
*/
|
|
15100
|
+
number: number;
|
|
15101
|
+
};
|
|
15102
|
+
to: {
|
|
15103
|
+
/**
|
|
15104
|
+
* Name of the second core number in this bridge pair. Identifies the other aspect of personality or destiny being compared.
|
|
15105
|
+
*/
|
|
15106
|
+
name: string;
|
|
15107
|
+
/**
|
|
15108
|
+
* The reduced single-digit value (1 to 9) of the second core number used in the bridge calculation.
|
|
15109
|
+
*/
|
|
15110
|
+
number: number;
|
|
15111
|
+
};
|
|
15112
|
+
/**
|
|
15113
|
+
* Actionable guidance for bridging the gap between these two aspects of your numerology profile. Explains what adjustments to make to bring these energies into harmony.
|
|
15114
|
+
*/
|
|
15115
|
+
meaning: string;
|
|
15116
|
+
};
|
|
15117
|
+
/**
|
|
15118
|
+
* Bridge between Expression and Personality numbers. Reveals the gap between your true talents (all letters) and how others perceive you (consonants only). A high bridge means others may not see your real capabilities, requiring you to present yourself more authentically.
|
|
15119
|
+
*/
|
|
15120
|
+
expressionPersonality: {
|
|
15121
|
+
/**
|
|
15122
|
+
* Bridge number (0 to 8). The absolute difference between two core numerology numbers after reducing master numbers to single digits. 0 means the two aspects are already in natural harmony. Higher values indicate greater tension requiring conscious adjustment.
|
|
15123
|
+
*/
|
|
15124
|
+
bridge: number;
|
|
15125
|
+
from: {
|
|
15126
|
+
/**
|
|
15127
|
+
* Name of the first core number in this bridge pair. Identifies which aspect of personality or destiny is being compared.
|
|
15128
|
+
*/
|
|
15129
|
+
name: string;
|
|
15130
|
+
/**
|
|
15131
|
+
* The reduced single-digit value (1 to 9) of the first core number used in the bridge calculation.
|
|
15132
|
+
*/
|
|
15133
|
+
number: number;
|
|
15134
|
+
};
|
|
15135
|
+
to: {
|
|
15136
|
+
/**
|
|
15137
|
+
* Name of the second core number in this bridge pair. Identifies the other aspect of personality or destiny being compared.
|
|
15138
|
+
*/
|
|
15139
|
+
name: string;
|
|
15140
|
+
/**
|
|
15141
|
+
* The reduced single-digit value (1 to 9) of the second core number used in the bridge calculation.
|
|
15142
|
+
*/
|
|
15143
|
+
number: number;
|
|
15144
|
+
};
|
|
15145
|
+
/**
|
|
15146
|
+
* Actionable guidance for bridging the gap between these two aspects of your numerology profile. Explains what adjustments to make to bring these energies into harmony.
|
|
15147
|
+
*/
|
|
15148
|
+
meaning: string;
|
|
15149
|
+
};
|
|
15150
|
+
/**
|
|
15151
|
+
* Bridge between Expression and Soul Urge numbers. Reveals the gap between your outward talents (all letters) and your deepest inner desires (vowels only). A high bridge means what you are good at may differ from what your soul truly craves, calling for realignment.
|
|
15152
|
+
*/
|
|
15153
|
+
expressionSoulUrge: {
|
|
15154
|
+
/**
|
|
15155
|
+
* Bridge number (0 to 8). The absolute difference between two core numerology numbers after reducing master numbers to single digits. 0 means the two aspects are already in natural harmony. Higher values indicate greater tension requiring conscious adjustment.
|
|
15156
|
+
*/
|
|
15157
|
+
bridge: number;
|
|
15158
|
+
from: {
|
|
15159
|
+
/**
|
|
15160
|
+
* Name of the first core number in this bridge pair. Identifies which aspect of personality or destiny is being compared.
|
|
15161
|
+
*/
|
|
15162
|
+
name: string;
|
|
15163
|
+
/**
|
|
15164
|
+
* The reduced single-digit value (1 to 9) of the first core number used in the bridge calculation.
|
|
15165
|
+
*/
|
|
15166
|
+
number: number;
|
|
15167
|
+
};
|
|
15168
|
+
to: {
|
|
15169
|
+
/**
|
|
15170
|
+
* Name of the second core number in this bridge pair. Identifies the other aspect of personality or destiny being compared.
|
|
15171
|
+
*/
|
|
15172
|
+
name: string;
|
|
15173
|
+
/**
|
|
15174
|
+
* The reduced single-digit value (1 to 9) of the second core number used in the bridge calculation.
|
|
15175
|
+
*/
|
|
15176
|
+
number: number;
|
|
15177
|
+
};
|
|
15178
|
+
/**
|
|
15179
|
+
* Actionable guidance for bridging the gap between these two aspects of your numerology profile. Explains what adjustments to make to bring these energies into harmony.
|
|
15180
|
+
*/
|
|
15181
|
+
meaning: string;
|
|
15182
|
+
};
|
|
15183
|
+
};
|
|
15184
|
+
};
|
|
15185
|
+
|
|
15186
|
+
export type PostNumerologyBridgeResponse = PostNumerologyBridgeResponses[keyof PostNumerologyBridgeResponses];
|
|
15187
|
+
|
|
14816
15188
|
export type PostNumerologySoulUrgeData = {
|
|
14817
15189
|
body?: {
|
|
14818
15190
|
/**
|
|
@@ -14893,23 +15265,23 @@ export type PostNumerologySoulUrgeResponses = {
|
|
|
14893
15265
|
*/
|
|
14894
15266
|
200: {
|
|
14895
15267
|
/**
|
|
14896
|
-
* Soul Urge number (1
|
|
15268
|
+
* Your Soul Urge number (also called Heart Desire number), revealing your innermost motivations and what your soul truly craves. Values range from 1 to 9 for single digits, or 11, 22, 33 for Master Numbers.
|
|
14897
15269
|
*/
|
|
14898
15270
|
number: number;
|
|
14899
15271
|
/**
|
|
14900
|
-
*
|
|
15272
|
+
* Full step-by-step Pythagorean reduction using only the vowels (A, E, I, O, U) from the birth name. Shows each vowel mapped to its numeric value, grouped by word, then summed and reduced to the final Soul Urge number.
|
|
14901
15273
|
*/
|
|
14902
15274
|
calculation: string;
|
|
14903
15275
|
/**
|
|
14904
|
-
* Number
|
|
15276
|
+
* Whether this is a standard single-digit number (1 to 9) or a Master Number (11, 22, 33). Master Numbers in the Soul Urge position indicate a soul with amplified spiritual longing and heightened inner sensitivity.
|
|
14905
15277
|
*/
|
|
14906
15278
|
type: 'single' | 'master';
|
|
14907
15279
|
/**
|
|
14908
|
-
*
|
|
15280
|
+
* Indicates whether a Karmic Debt number (13, 14, 16, or 19) appeared during the vowel reduction chain. Karmic Debt in the Soul Urge reveals past-life emotional patterns and unresolved inner desires carried into this lifetime.
|
|
14909
15281
|
*/
|
|
14910
15282
|
hasKarmicDebt: boolean;
|
|
14911
15283
|
/**
|
|
14912
|
-
* Karmic
|
|
15284
|
+
* The specific Karmic Debt number detected during the vowel reduction, if any. Each debt number (13, 14, 16, 19) represents a distinct past-life emotional lesson that influences your deepest desires and motivations.
|
|
14913
15285
|
*/
|
|
14914
15286
|
karmicDebtNumber?: number;
|
|
14915
15287
|
/**
|
|
@@ -15048,23 +15420,23 @@ export type PostNumerologyPersonalityResponses = {
|
|
|
15048
15420
|
*/
|
|
15049
15421
|
200: {
|
|
15050
15422
|
/**
|
|
15051
|
-
* Personality number
|
|
15423
|
+
* Your Personality number, derived from the consonants in your birth name. Reveals how others perceive you, your outer persona, and the first impression you project. Values range from 1 to 9 for single digits, or 11, 22, 33 for Master Numbers.
|
|
15052
15424
|
*/
|
|
15053
15425
|
number: number;
|
|
15054
15426
|
/**
|
|
15055
|
-
*
|
|
15427
|
+
* Full step-by-step Pythagorean reduction using only the consonants from the birth name. Shows each consonant mapped to its numeric value, grouped by word, then summed and reduced to the final Personality number.
|
|
15056
15428
|
*/
|
|
15057
15429
|
calculation: string;
|
|
15058
15430
|
/**
|
|
15059
|
-
* Number
|
|
15431
|
+
* Whether this is a standard single-digit number (1 to 9) or a Master Number (11, 22, 33). Master Numbers in the Personality position indicate a powerful outer presence that others immediately sense, carrying heightened charisma and public influence.
|
|
15060
15432
|
*/
|
|
15061
15433
|
type: 'single' | 'master';
|
|
15062
15434
|
/**
|
|
15063
|
-
*
|
|
15435
|
+
* Indicates whether a Karmic Debt number (13, 14, 16, or 19) appeared during the consonant reduction chain. Karmic Debt in the Personality position reveals past-life patterns that influence how others perceive you and the social challenges you must overcome.
|
|
15064
15436
|
*/
|
|
15065
15437
|
hasKarmicDebt: boolean;
|
|
15066
15438
|
/**
|
|
15067
|
-
* Karmic
|
|
15439
|
+
* The specific Karmic Debt number detected during the consonant reduction, if any. Each debt number (13, 14, 16, 19) represents a distinct past-life lesson that shapes your public image and social interactions.
|
|
15068
15440
|
*/
|
|
15069
15441
|
karmicDebtNumber?: number;
|
|
15070
15442
|
/**
|
|
@@ -15203,23 +15575,23 @@ export type PostNumerologyBirthDayResponses = {
|
|
|
15203
15575
|
*/
|
|
15204
15576
|
200: {
|
|
15205
15577
|
/**
|
|
15206
|
-
* Birth Day number
|
|
15578
|
+
* Your Birth Day number, revealing the special talents and innate abilities you carry from the day you were born. Values range from 1 to 9 for single digits, or 11, 22 for Master Numbers (days 11 and 22 are never reduced).
|
|
15207
15579
|
*/
|
|
15208
15580
|
number: number;
|
|
15209
15581
|
/**
|
|
15210
|
-
* Step-by-step
|
|
15582
|
+
* Step-by-step digit reduction of the birth day. Single-digit days (1 to 9) remain as-is, Master Number days (11, 22) are preserved, and all other double-digit days are reduced by summing their digits.
|
|
15211
15583
|
*/
|
|
15212
15584
|
calculation: string;
|
|
15213
15585
|
/**
|
|
15214
|
-
* Number
|
|
15586
|
+
* Whether this is a standard single-digit number (1 to 9) or a Master Number (11, 22). Master Numbers in the Birth Day position indicate extraordinary innate gifts that are available from birth and demand conscious development.
|
|
15215
15587
|
*/
|
|
15216
15588
|
type: 'single' | 'master';
|
|
15217
15589
|
/**
|
|
15218
|
-
*
|
|
15590
|
+
* Indicates whether a Karmic Debt number (13, 14, 16, or 19) corresponds to the birth day. Karmic Debt in the Birth Day position reveals past-life challenges woven directly into your natural talents, influencing how your gifts manifest.
|
|
15219
15591
|
*/
|
|
15220
15592
|
hasKarmicDebt: boolean;
|
|
15221
15593
|
/**
|
|
15222
|
-
* Karmic
|
|
15594
|
+
* The specific Karmic Debt number detected from the birth day, if any. Each debt number (13, 14, 16, 19) represents a distinct past-life lesson embedded in the talents your birth day bestows.
|
|
15223
15595
|
*/
|
|
15224
15596
|
karmicDebtNumber?: number;
|
|
15225
15597
|
/**
|
|
@@ -15281,13 +15653,29 @@ export type PostNumerologyBirthDayResponse = PostNumerologyBirthDayResponses[key
|
|
|
15281
15653
|
export type PostNumerologyMaturityData = {
|
|
15282
15654
|
body?: {
|
|
15283
15655
|
/**
|
|
15284
|
-
* Your Life Path number (1-9, 11, 22, 33)
|
|
15656
|
+
* Your Life Path number (1-9, 11, 22, 33). Optional if year, month, day are provided.
|
|
15657
|
+
*/
|
|
15658
|
+
lifePath?: number;
|
|
15659
|
+
/**
|
|
15660
|
+
* Your Expression number (1-9, 11, 22, 33). Optional if fullName is provided.
|
|
15661
|
+
*/
|
|
15662
|
+
expression?: number;
|
|
15663
|
+
/**
|
|
15664
|
+
* Full birth name to calculate Expression number automatically. Use instead of passing expression directly.
|
|
15665
|
+
*/
|
|
15666
|
+
fullName?: string;
|
|
15667
|
+
/**
|
|
15668
|
+
* Birth year to calculate Life Path automatically. Use with month and day instead of passing lifePath directly.
|
|
15669
|
+
*/
|
|
15670
|
+
year?: number;
|
|
15671
|
+
/**
|
|
15672
|
+
* Birth month (1-12). Required with year and day for automatic Life Path calculation.
|
|
15285
15673
|
*/
|
|
15286
|
-
|
|
15674
|
+
month?: number;
|
|
15287
15675
|
/**
|
|
15288
|
-
*
|
|
15676
|
+
* Birth day (1-31). Required with year and month for automatic Life Path calculation.
|
|
15289
15677
|
*/
|
|
15290
|
-
|
|
15678
|
+
day?: number;
|
|
15291
15679
|
};
|
|
15292
15680
|
path?: never;
|
|
15293
15681
|
query?: {
|
|
@@ -15362,23 +15750,23 @@ export type PostNumerologyMaturityResponses = {
|
|
|
15362
15750
|
*/
|
|
15363
15751
|
200: {
|
|
15364
15752
|
/**
|
|
15365
|
-
* Maturity number (1
|
|
15753
|
+
* Your Maturity number (also called Realization number), revealing who you are becoming in the second half of life. Derived from the sum of your Life Path and Expression numbers. Values range from 1 to 9 for single digits, or 11, 22, 33 for Master Numbers.
|
|
15366
15754
|
*/
|
|
15367
15755
|
number: number;
|
|
15368
15756
|
/**
|
|
15369
|
-
*
|
|
15757
|
+
* Full step-by-step reduction showing Life Path plus Expression combined and reduced to the final Maturity number. This synthesis represents the convergence of your life purpose and natural talents into mature wisdom.
|
|
15370
15758
|
*/
|
|
15371
15759
|
calculation: string;
|
|
15372
15760
|
/**
|
|
15373
|
-
* Number
|
|
15761
|
+
* Whether this is a standard single-digit number (1 to 9) or a Master Number (11, 22, 33). Master Numbers in the Maturity position indicate a powerful late-life awakening with extraordinary potential for spiritual leadership and legacy.
|
|
15374
15762
|
*/
|
|
15375
15763
|
type: 'single' | 'master';
|
|
15376
15764
|
/**
|
|
15377
|
-
*
|
|
15765
|
+
* Indicates whether a Karmic Debt number (13, 14, 16, or 19) appeared during the Life Path plus Expression reduction. Karmic Debt in the Maturity position reveals past-life lessons that surface during midlife transformation, typically after age 35 to 40.
|
|
15378
15766
|
*/
|
|
15379
15767
|
hasKarmicDebt: boolean;
|
|
15380
15768
|
/**
|
|
15381
|
-
* Karmic
|
|
15769
|
+
* The specific Karmic Debt number detected during the Maturity reduction, if any. Each debt number (13, 14, 16, 19) represents a distinct past-life challenge that becomes especially prominent as you enter the second half of life.
|
|
15382
15770
|
*/
|
|
15383
15771
|
karmicDebtNumber?: number;
|
|
15384
15772
|
/**
|
|
@@ -15666,12 +16054,16 @@ export type PostNumerologyKarmicDebtResponses = {
|
|
|
15666
16054
|
*/
|
|
15667
16055
|
resolution: string;
|
|
15668
16056
|
}>;
|
|
16057
|
+
/**
|
|
16058
|
+
* Human-readable summary. Explains what the karmic debt findings mean or provides a positive affirmation when no debt is found.
|
|
16059
|
+
*/
|
|
16060
|
+
message: string;
|
|
15669
16061
|
};
|
|
15670
16062
|
};
|
|
15671
16063
|
|
|
15672
16064
|
export type PostNumerologyKarmicDebtResponse = PostNumerologyKarmicDebtResponses[keyof PostNumerologyKarmicDebtResponses];
|
|
15673
16065
|
|
|
15674
|
-
export type
|
|
16066
|
+
export type PostNumerologyPersonalDayData = {
|
|
15675
16067
|
body?: {
|
|
15676
16068
|
/**
|
|
15677
16069
|
* Birth month (1-12)
|
|
@@ -15682,9 +16074,9 @@ export type PostNumerologyPersonalYearData = {
|
|
|
15682
16074
|
*/
|
|
15683
16075
|
day: number;
|
|
15684
16076
|
/**
|
|
15685
|
-
*
|
|
16077
|
+
* Target date in YYYY-MM-DD format (defaults to today)
|
|
15686
16078
|
*/
|
|
15687
|
-
|
|
16079
|
+
targetDate?: string;
|
|
15688
16080
|
};
|
|
15689
16081
|
path?: never;
|
|
15690
16082
|
query?: {
|
|
@@ -15693,10 +16085,10 @@ export type PostNumerologyPersonalYearData = {
|
|
|
15693
16085
|
*/
|
|
15694
16086
|
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
15695
16087
|
};
|
|
15696
|
-
url: '/numerology/personal-
|
|
16088
|
+
url: '/numerology/personal-day';
|
|
15697
16089
|
};
|
|
15698
16090
|
|
|
15699
|
-
export type
|
|
16091
|
+
export type PostNumerologyPersonalDayErrors = {
|
|
15700
16092
|
/**
|
|
15701
16093
|
* Validation error (missing or invalid parameters)
|
|
15702
16094
|
*/
|
|
@@ -15751,11 +16143,255 @@ export type PostNumerologyPersonalYearErrors = {
|
|
|
15751
16143
|
};
|
|
15752
16144
|
};
|
|
15753
16145
|
|
|
15754
|
-
export type
|
|
16146
|
+
export type PostNumerologyPersonalDayError = PostNumerologyPersonalDayErrors[keyof PostNumerologyPersonalDayErrors];
|
|
15755
16147
|
|
|
15756
|
-
export type
|
|
16148
|
+
export type PostNumerologyPersonalDayResponses = {
|
|
15757
16149
|
/**
|
|
15758
|
-
* Successfully calculated Personal
|
|
16150
|
+
* Successfully calculated Personal Day with forecast
|
|
16151
|
+
*/
|
|
16152
|
+
200: {
|
|
16153
|
+
/**
|
|
16154
|
+
* Personal Day number (1-9). The most granular numerology cycle, revealing the energy and theme for this specific day based on your birth data.
|
|
16155
|
+
*/
|
|
16156
|
+
personalDay: number;
|
|
16157
|
+
/**
|
|
16158
|
+
* Central theme for this Personal Day. A concise label capturing the dominant energy of the day.
|
|
16159
|
+
*/
|
|
16160
|
+
theme: string;
|
|
16161
|
+
/**
|
|
16162
|
+
* Actionable daily guidance. Specific advice for how to work with the energy of this Personal Day.
|
|
16163
|
+
*/
|
|
16164
|
+
guidance: string;
|
|
16165
|
+
/**
|
|
16166
|
+
* The calendar date this forecast applies to in YYYY-MM-DD format.
|
|
16167
|
+
*/
|
|
16168
|
+
targetDate: string;
|
|
16169
|
+
/**
|
|
16170
|
+
* The parent Personal Month number this day falls within.
|
|
16171
|
+
*/
|
|
16172
|
+
personalMonth: number;
|
|
16173
|
+
/**
|
|
16174
|
+
* Theme of the parent Personal Month, providing broader context for the daily forecast.
|
|
16175
|
+
*/
|
|
16176
|
+
personalMonthTheme: string;
|
|
16177
|
+
/**
|
|
16178
|
+
* The parent Personal Year number this day falls within.
|
|
16179
|
+
*/
|
|
16180
|
+
personalYear: number;
|
|
16181
|
+
/**
|
|
16182
|
+
* Theme of the parent Personal Year, providing the broadest cycle context.
|
|
16183
|
+
*/
|
|
16184
|
+
personalYearTheme: string;
|
|
16185
|
+
};
|
|
16186
|
+
};
|
|
16187
|
+
|
|
16188
|
+
export type PostNumerologyPersonalDayResponse = PostNumerologyPersonalDayResponses[keyof PostNumerologyPersonalDayResponses];
|
|
16189
|
+
|
|
16190
|
+
export type PostNumerologyPersonalMonthData = {
|
|
16191
|
+
body?: {
|
|
16192
|
+
/**
|
|
16193
|
+
* Birth month (1-12)
|
|
16194
|
+
*/
|
|
16195
|
+
month: number;
|
|
16196
|
+
/**
|
|
16197
|
+
* Birth day (1-31)
|
|
16198
|
+
*/
|
|
16199
|
+
day: number;
|
|
16200
|
+
/**
|
|
16201
|
+
* Target year for calculation (defaults to current year)
|
|
16202
|
+
*/
|
|
16203
|
+
year?: number;
|
|
16204
|
+
/**
|
|
16205
|
+
* Target calendar month to forecast (1-12, defaults to current month)
|
|
16206
|
+
*/
|
|
16207
|
+
targetMonth?: number;
|
|
16208
|
+
};
|
|
16209
|
+
path?: never;
|
|
16210
|
+
query?: {
|
|
16211
|
+
/**
|
|
16212
|
+
* Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
|
|
16213
|
+
*/
|
|
16214
|
+
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
16215
|
+
};
|
|
16216
|
+
url: '/numerology/personal-month';
|
|
16217
|
+
};
|
|
16218
|
+
|
|
16219
|
+
export type PostNumerologyPersonalMonthErrors = {
|
|
16220
|
+
/**
|
|
16221
|
+
* Validation error (missing or invalid parameters)
|
|
16222
|
+
*/
|
|
16223
|
+
400: {
|
|
16224
|
+
/**
|
|
16225
|
+
* Human-readable error message. May change wording.
|
|
16226
|
+
*/
|
|
16227
|
+
error: string;
|
|
16228
|
+
/**
|
|
16229
|
+
* Machine-readable error code. Stable identifier.
|
|
16230
|
+
*/
|
|
16231
|
+
code: string;
|
|
16232
|
+
};
|
|
16233
|
+
/**
|
|
16234
|
+
* Invalid or missing API key
|
|
16235
|
+
*/
|
|
16236
|
+
401: {
|
|
16237
|
+
/**
|
|
16238
|
+
* Human-readable error message. May change wording.
|
|
16239
|
+
*/
|
|
16240
|
+
error: string;
|
|
16241
|
+
/**
|
|
16242
|
+
* Machine-readable error code. Stable identifier.
|
|
16243
|
+
*/
|
|
16244
|
+
code: string;
|
|
16245
|
+
};
|
|
16246
|
+
/**
|
|
16247
|
+
* Monthly rate limit exceeded
|
|
16248
|
+
*/
|
|
16249
|
+
429: {
|
|
16250
|
+
/**
|
|
16251
|
+
* Human-readable error message. May change wording.
|
|
16252
|
+
*/
|
|
16253
|
+
error: string;
|
|
16254
|
+
/**
|
|
16255
|
+
* Machine-readable error code. Stable identifier.
|
|
16256
|
+
*/
|
|
16257
|
+
code: string;
|
|
16258
|
+
};
|
|
16259
|
+
/**
|
|
16260
|
+
* Internal server error
|
|
16261
|
+
*/
|
|
16262
|
+
500: {
|
|
16263
|
+
/**
|
|
16264
|
+
* Human-readable error message. May change wording.
|
|
16265
|
+
*/
|
|
16266
|
+
error: string;
|
|
16267
|
+
/**
|
|
16268
|
+
* Machine-readable error code. Stable identifier.
|
|
16269
|
+
*/
|
|
16270
|
+
code: string;
|
|
16271
|
+
};
|
|
16272
|
+
};
|
|
16273
|
+
|
|
16274
|
+
export type PostNumerologyPersonalMonthError = PostNumerologyPersonalMonthErrors[keyof PostNumerologyPersonalMonthErrors];
|
|
16275
|
+
|
|
16276
|
+
export type PostNumerologyPersonalMonthResponses = {
|
|
16277
|
+
/**
|
|
16278
|
+
* Successfully calculated Personal Month with forecast
|
|
16279
|
+
*/
|
|
16280
|
+
200: {
|
|
16281
|
+
/**
|
|
16282
|
+
* Personal Month number (1-9). Each month in the cycle carries specific energy and themes that guide decisions and focus.
|
|
16283
|
+
*/
|
|
16284
|
+
personalMonth: number;
|
|
16285
|
+
/**
|
|
16286
|
+
* Central theme for this Personal Month. A concise label capturing the dominant energy.
|
|
16287
|
+
*/
|
|
16288
|
+
theme: string;
|
|
16289
|
+
/**
|
|
16290
|
+
* Practical guidance for this month. Specific actions, areas of focus, and advice for making the most of this monthly energy.
|
|
16291
|
+
*/
|
|
16292
|
+
focus: string;
|
|
16293
|
+
/**
|
|
16294
|
+
* The calendar month this forecast applies to (1-12).
|
|
16295
|
+
*/
|
|
16296
|
+
calendarMonth: number;
|
|
16297
|
+
/**
|
|
16298
|
+
* The parent Personal Year number this month falls within.
|
|
16299
|
+
*/
|
|
16300
|
+
personalYear: number;
|
|
16301
|
+
/**
|
|
16302
|
+
* Theme of the parent Personal Year, providing broader context for the monthly forecast.
|
|
16303
|
+
*/
|
|
16304
|
+
personalYearTheme: string;
|
|
16305
|
+
};
|
|
16306
|
+
};
|
|
16307
|
+
|
|
16308
|
+
export type PostNumerologyPersonalMonthResponse = PostNumerologyPersonalMonthResponses[keyof PostNumerologyPersonalMonthResponses];
|
|
16309
|
+
|
|
16310
|
+
export type PostNumerologyPersonalYearData = {
|
|
16311
|
+
body?: {
|
|
16312
|
+
/**
|
|
16313
|
+
* Birth month (1-12)
|
|
16314
|
+
*/
|
|
16315
|
+
month: number;
|
|
16316
|
+
/**
|
|
16317
|
+
* Birth day (1-31)
|
|
16318
|
+
*/
|
|
16319
|
+
day: number;
|
|
16320
|
+
/**
|
|
16321
|
+
* Year to calculate (defaults to current year)
|
|
16322
|
+
*/
|
|
16323
|
+
year?: number;
|
|
16324
|
+
};
|
|
16325
|
+
path?: never;
|
|
16326
|
+
query?: {
|
|
16327
|
+
/**
|
|
16328
|
+
* Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
|
|
16329
|
+
*/
|
|
16330
|
+
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
16331
|
+
};
|
|
16332
|
+
url: '/numerology/personal-year';
|
|
16333
|
+
};
|
|
16334
|
+
|
|
16335
|
+
export type PostNumerologyPersonalYearErrors = {
|
|
16336
|
+
/**
|
|
16337
|
+
* Validation error (missing or invalid parameters)
|
|
16338
|
+
*/
|
|
16339
|
+
400: {
|
|
16340
|
+
/**
|
|
16341
|
+
* Human-readable error message. May change wording.
|
|
16342
|
+
*/
|
|
16343
|
+
error: string;
|
|
16344
|
+
/**
|
|
16345
|
+
* Machine-readable error code. Stable identifier.
|
|
16346
|
+
*/
|
|
16347
|
+
code: string;
|
|
16348
|
+
};
|
|
16349
|
+
/**
|
|
16350
|
+
* Invalid or missing API key
|
|
16351
|
+
*/
|
|
16352
|
+
401: {
|
|
16353
|
+
/**
|
|
16354
|
+
* Human-readable error message. May change wording.
|
|
16355
|
+
*/
|
|
16356
|
+
error: string;
|
|
16357
|
+
/**
|
|
16358
|
+
* Machine-readable error code. Stable identifier.
|
|
16359
|
+
*/
|
|
16360
|
+
code: string;
|
|
16361
|
+
};
|
|
16362
|
+
/**
|
|
16363
|
+
* Monthly rate limit exceeded
|
|
16364
|
+
*/
|
|
16365
|
+
429: {
|
|
16366
|
+
/**
|
|
16367
|
+
* Human-readable error message. May change wording.
|
|
16368
|
+
*/
|
|
16369
|
+
error: string;
|
|
16370
|
+
/**
|
|
16371
|
+
* Machine-readable error code. Stable identifier.
|
|
16372
|
+
*/
|
|
16373
|
+
code: string;
|
|
16374
|
+
};
|
|
16375
|
+
/**
|
|
16376
|
+
* Internal server error
|
|
16377
|
+
*/
|
|
16378
|
+
500: {
|
|
16379
|
+
/**
|
|
16380
|
+
* Human-readable error message. May change wording.
|
|
16381
|
+
*/
|
|
16382
|
+
error: string;
|
|
16383
|
+
/**
|
|
16384
|
+
* Machine-readable error code. Stable identifier.
|
|
16385
|
+
*/
|
|
16386
|
+
code: string;
|
|
16387
|
+
};
|
|
16388
|
+
};
|
|
16389
|
+
|
|
16390
|
+
export type PostNumerologyPersonalYearError = PostNumerologyPersonalYearErrors[keyof PostNumerologyPersonalYearErrors];
|
|
16391
|
+
|
|
16392
|
+
export type PostNumerologyPersonalYearResponses = {
|
|
16393
|
+
/**
|
|
16394
|
+
* Successfully calculated Personal Year with forecast
|
|
15759
16395
|
*/
|
|
15760
16396
|
200: {
|
|
15761
16397
|
/**
|
|
@@ -15795,31 +16431,63 @@ export type PostNumerologyCompatibilityData = {
|
|
|
15795
16431
|
body?: {
|
|
15796
16432
|
person1: {
|
|
15797
16433
|
/**
|
|
15798
|
-
* Person 1 Life Path number (1-9, 11, 22, 33)
|
|
16434
|
+
* Person 1 Life Path number (1-9, 11, 22, 33). Optional if year, month, day are provided.
|
|
16435
|
+
*/
|
|
16436
|
+
lifePath?: number;
|
|
16437
|
+
/**
|
|
16438
|
+
* Person 1 Expression number (1-9, 11, 22, 33). Optional if fullName is provided.
|
|
15799
16439
|
*/
|
|
15800
|
-
|
|
16440
|
+
expression?: number;
|
|
15801
16441
|
/**
|
|
15802
|
-
* Person 1
|
|
16442
|
+
* Person 1 Soul Urge number (1-9, 11, 22, 33). Optional if fullName is provided.
|
|
15803
16443
|
*/
|
|
15804
|
-
|
|
16444
|
+
soulUrge?: number;
|
|
15805
16445
|
/**
|
|
15806
|
-
*
|
|
16446
|
+
* Full birth name to calculate Expression and Soul Urge numbers automatically. Use instead of passing expression and soulUrge directly.
|
|
15807
16447
|
*/
|
|
15808
|
-
|
|
16448
|
+
fullName?: string;
|
|
16449
|
+
/**
|
|
16450
|
+
* Birth year to calculate Life Path automatically. Use with month and day instead of passing lifePath directly.
|
|
16451
|
+
*/
|
|
16452
|
+
year?: number;
|
|
16453
|
+
/**
|
|
16454
|
+
* Birth month (1-12). Required with year and day for automatic Life Path calculation.
|
|
16455
|
+
*/
|
|
16456
|
+
month?: number;
|
|
16457
|
+
/**
|
|
16458
|
+
* Birth day (1-31). Required with year and month for automatic Life Path calculation.
|
|
16459
|
+
*/
|
|
16460
|
+
day?: number;
|
|
15809
16461
|
};
|
|
15810
16462
|
person2: {
|
|
15811
16463
|
/**
|
|
15812
|
-
* Person 2 Life Path number (1-9, 11, 22, 33)
|
|
16464
|
+
* Person 2 Life Path number (1-9, 11, 22, 33). Optional if year, month, day are provided.
|
|
16465
|
+
*/
|
|
16466
|
+
lifePath?: number;
|
|
16467
|
+
/**
|
|
16468
|
+
* Person 2 Expression number (1-9, 11, 22, 33). Optional if fullName is provided.
|
|
16469
|
+
*/
|
|
16470
|
+
expression?: number;
|
|
16471
|
+
/**
|
|
16472
|
+
* Person 2 Soul Urge number (1-9, 11, 22, 33). Optional if fullName is provided.
|
|
16473
|
+
*/
|
|
16474
|
+
soulUrge?: number;
|
|
16475
|
+
/**
|
|
16476
|
+
* Full birth name to calculate Expression and Soul Urge numbers automatically. Use instead of passing expression and soulUrge directly.
|
|
15813
16477
|
*/
|
|
15814
|
-
|
|
16478
|
+
fullName?: string;
|
|
15815
16479
|
/**
|
|
15816
|
-
*
|
|
16480
|
+
* Birth year to calculate Life Path automatically. Use with month and day instead of passing lifePath directly.
|
|
15817
16481
|
*/
|
|
15818
|
-
|
|
16482
|
+
year?: number;
|
|
15819
16483
|
/**
|
|
15820
|
-
*
|
|
16484
|
+
* Birth month (1-12). Required with year and day for automatic Life Path calculation.
|
|
15821
16485
|
*/
|
|
15822
|
-
|
|
16486
|
+
month?: number;
|
|
16487
|
+
/**
|
|
16488
|
+
* Birth day (1-31). Required with year and month for automatic Life Path calculation.
|
|
16489
|
+
*/
|
|
16490
|
+
day?: number;
|
|
15823
16491
|
};
|
|
15824
16492
|
};
|
|
15825
16493
|
path?: never;
|
|
@@ -15899,7 +16567,7 @@ export type PostNumerologyCompatibilityResponses = {
|
|
|
15899
16567
|
*/
|
|
15900
16568
|
overallScore: number;
|
|
15901
16569
|
/**
|
|
15902
|
-
* Compatibility rating
|
|
16570
|
+
* Compatibility rating: Highly Compatible, Very Compatible, Compatible, Moderately Compatible, or Challenging.
|
|
15903
16571
|
*/
|
|
15904
16572
|
rating: string;
|
|
15905
16573
|
lifePath: {
|
|
@@ -16341,6 +17009,22 @@ export type PostNumerologyChartResponses = {
|
|
|
16341
17009
|
* Birth Day number (1-31). A special talent number based on the day of the month you were born.
|
|
16342
17010
|
*/
|
|
16343
17011
|
number: number;
|
|
17012
|
+
/**
|
|
17013
|
+
* Step-by-step calculation showing how the Birth Day number was reduced from the calendar day of birth.
|
|
17014
|
+
*/
|
|
17015
|
+
calculation: string;
|
|
17016
|
+
/**
|
|
17017
|
+
* Whether this is a single digit (1-9) or master number (11, 22). Birth days of 11 and 22 are preserved as master numbers.
|
|
17018
|
+
*/
|
|
17019
|
+
type: 'single' | 'master';
|
|
17020
|
+
/**
|
|
17021
|
+
* True if the birth day is a karmic debt number (13, 14, 16, 19).
|
|
17022
|
+
*/
|
|
17023
|
+
hasKarmicDebt: boolean;
|
|
17024
|
+
/**
|
|
17025
|
+
* The karmic debt number if the birth day carries one (13, 14, 16, or 19).
|
|
17026
|
+
*/
|
|
17027
|
+
karmicDebtNumber?: number;
|
|
16344
17028
|
/**
|
|
16345
17029
|
* Complete interpretation of the Birth Day number with archetype, innate talents, career advantages, and relationship dynamics.
|
|
16346
17030
|
*/
|
|
@@ -16443,7 +17127,7 @@ export type PostNumerologyChartResponses = {
|
|
|
16443
17127
|
};
|
|
16444
17128
|
};
|
|
16445
17129
|
/**
|
|
16446
|
-
* Additional numerology insights
|
|
17130
|
+
* Additional numerology insights: karmic analysis, yearly/monthly forecasts, pinnacles, challenges, hidden passion, subconscious self, and name letter analysis.
|
|
16447
17131
|
*/
|
|
16448
17132
|
additionalInsights: {
|
|
16449
17133
|
/**
|
|
@@ -16517,7 +17201,7 @@ export type PostNumerologyChartResponses = {
|
|
|
16517
17201
|
}>;
|
|
16518
17202
|
};
|
|
16519
17203
|
/**
|
|
16520
|
-
* Personal Year forecast
|
|
17204
|
+
* Personal Year forecast with nested Personal Month. Yearly and monthly numerology cycles.
|
|
16521
17205
|
*/
|
|
16522
17206
|
personalYear: {
|
|
16523
17207
|
/**
|
|
@@ -16548,7 +17232,297 @@ export type PostNumerologyChartResponses = {
|
|
|
16548
17232
|
* Strategic guidance for making the most of this Personal Year. Covers timing decisions, areas to focus on, and the mindset that aligns with the current numerological energy.
|
|
16549
17233
|
*/
|
|
16550
17234
|
advice: string;
|
|
17235
|
+
/**
|
|
17236
|
+
* Personal Month forecast nested within the Personal Year cycle.
|
|
17237
|
+
*/
|
|
17238
|
+
personalMonth: {
|
|
17239
|
+
/**
|
|
17240
|
+
* Personal Month number (1-9).
|
|
17241
|
+
*/
|
|
17242
|
+
personalMonth: number;
|
|
17243
|
+
/**
|
|
17244
|
+
* Central theme for this Personal Month.
|
|
17245
|
+
*/
|
|
17246
|
+
theme: string;
|
|
17247
|
+
/**
|
|
17248
|
+
* Practical focus and guidance for this month.
|
|
17249
|
+
*/
|
|
17250
|
+
focus: string;
|
|
17251
|
+
};
|
|
16551
17252
|
};
|
|
17253
|
+
/**
|
|
17254
|
+
* Four Pinnacle numbers representing major life phases with age ranges and meanings.
|
|
17255
|
+
*/
|
|
17256
|
+
pinnacles: Array<{
|
|
17257
|
+
/**
|
|
17258
|
+
* Pinnacle position (1-4). Four major life phases.
|
|
17259
|
+
*/
|
|
17260
|
+
position: number;
|
|
17261
|
+
/**
|
|
17262
|
+
* Pinnacle number (1-9, 11, 22, 33). Defines the theme of this life phase.
|
|
17263
|
+
*/
|
|
17264
|
+
number: number;
|
|
17265
|
+
/**
|
|
17266
|
+
* Age when this Pinnacle phase begins.
|
|
17267
|
+
*/
|
|
17268
|
+
startAge: number;
|
|
17269
|
+
/**
|
|
17270
|
+
* Age when this phase ends. Null for the 4th Pinnacle (lasts rest of life).
|
|
17271
|
+
*/
|
|
17272
|
+
endAge: number;
|
|
17273
|
+
/**
|
|
17274
|
+
* Meaning and interpretation for this Pinnacle number.
|
|
17275
|
+
*/
|
|
17276
|
+
meaning: {
|
|
17277
|
+
/**
|
|
17278
|
+
* Pinnacle phase title.
|
|
17279
|
+
*/
|
|
17280
|
+
title: string;
|
|
17281
|
+
/**
|
|
17282
|
+
* What this Pinnacle phase brings to your life.
|
|
17283
|
+
*/
|
|
17284
|
+
description: string;
|
|
17285
|
+
/**
|
|
17286
|
+
* Key opportunities during this phase.
|
|
17287
|
+
*/
|
|
17288
|
+
opportunities: Array<string>;
|
|
17289
|
+
/**
|
|
17290
|
+
* Challenges to navigate during this phase.
|
|
17291
|
+
*/
|
|
17292
|
+
challenges: Array<string>;
|
|
17293
|
+
};
|
|
17294
|
+
}>;
|
|
17295
|
+
/**
|
|
17296
|
+
* Four Challenge numbers representing life obstacles aligned with Pinnacle timing.
|
|
17297
|
+
*/
|
|
17298
|
+
challenges: Array<{
|
|
17299
|
+
/**
|
|
17300
|
+
* Challenge position (1-4). Four life obstacle periods.
|
|
17301
|
+
*/
|
|
17302
|
+
position: number;
|
|
17303
|
+
/**
|
|
17304
|
+
* Challenge number (0-8). Defines the obstacle of this period.
|
|
17305
|
+
*/
|
|
17306
|
+
number: number;
|
|
17307
|
+
/**
|
|
17308
|
+
* Age when this Challenge period begins.
|
|
17309
|
+
*/
|
|
17310
|
+
startAge: number;
|
|
17311
|
+
/**
|
|
17312
|
+
* Age when this period ends. Null for the 4th Challenge.
|
|
17313
|
+
*/
|
|
17314
|
+
endAge: number;
|
|
17315
|
+
/**
|
|
17316
|
+
* Meaning and resolution guidance for this Challenge number.
|
|
17317
|
+
*/
|
|
17318
|
+
meaning: {
|
|
17319
|
+
/**
|
|
17320
|
+
* Challenge title.
|
|
17321
|
+
*/
|
|
17322
|
+
title: string;
|
|
17323
|
+
/**
|
|
17324
|
+
* What this Challenge demands you overcome.
|
|
17325
|
+
*/
|
|
17326
|
+
description: string;
|
|
17327
|
+
/**
|
|
17328
|
+
* Core lesson to learn during this period.
|
|
17329
|
+
*/
|
|
17330
|
+
lesson: string;
|
|
17331
|
+
/**
|
|
17332
|
+
* Actionable guidance for working through this Challenge.
|
|
17333
|
+
*/
|
|
17334
|
+
howToOvercome: string;
|
|
17335
|
+
};
|
|
17336
|
+
}>;
|
|
17337
|
+
/**
|
|
17338
|
+
* Hidden Passion number. The most frequent number in the name revealing an overwhelming drive or talent.
|
|
17339
|
+
*/
|
|
17340
|
+
hiddenPassion: {
|
|
17341
|
+
/**
|
|
17342
|
+
* Hidden Passion number (1-9). The most frequently occurring number in the birth name.
|
|
17343
|
+
*/
|
|
17344
|
+
number: number;
|
|
17345
|
+
/**
|
|
17346
|
+
* How many times this number appears in the name.
|
|
17347
|
+
*/
|
|
17348
|
+
count: number;
|
|
17349
|
+
/**
|
|
17350
|
+
* All numbers tied for highest frequency (usually one, sometimes multiple).
|
|
17351
|
+
*/
|
|
17352
|
+
allPassions: Array<number>;
|
|
17353
|
+
/**
|
|
17354
|
+
* Archetype title for this Hidden Passion.
|
|
17355
|
+
*/
|
|
17356
|
+
title: string;
|
|
17357
|
+
/**
|
|
17358
|
+
* What this dominant number drive reveals about latent talents and obsessions.
|
|
17359
|
+
*/
|
|
17360
|
+
description: string;
|
|
17361
|
+
};
|
|
17362
|
+
/**
|
|
17363
|
+
* Subconscious Self number. Reveals inner confidence and emergency response style.
|
|
17364
|
+
*/
|
|
17365
|
+
subconsciousSelf: {
|
|
17366
|
+
/**
|
|
17367
|
+
* Subconscious Self number (1-9). Count of unique numbers present in the name.
|
|
17368
|
+
*/
|
|
17369
|
+
number: number;
|
|
17370
|
+
/**
|
|
17371
|
+
* Which numbers (1-9) are present in the birth name.
|
|
17372
|
+
*/
|
|
17373
|
+
uniqueNumbers: Array<number>;
|
|
17374
|
+
/**
|
|
17375
|
+
* Archetype title for this Subconscious Self level.
|
|
17376
|
+
*/
|
|
17377
|
+
title: string;
|
|
17378
|
+
/**
|
|
17379
|
+
* How you handle emergencies and unexpected challenges based on the breadth of numbers in your name.
|
|
17380
|
+
*/
|
|
17381
|
+
description: string;
|
|
17382
|
+
};
|
|
17383
|
+
/**
|
|
17384
|
+
* Name letter analysis: Cornerstone, Capstone, and First Vowel.
|
|
17385
|
+
*/
|
|
17386
|
+
nameLetters: {
|
|
17387
|
+
/**
|
|
17388
|
+
* Cornerstone letter analysis. Reveals approach to new situations.
|
|
17389
|
+
*/
|
|
17390
|
+
cornerstone: {
|
|
17391
|
+
/**
|
|
17392
|
+
* First letter of the first name.
|
|
17393
|
+
*/
|
|
17394
|
+
letter: string;
|
|
17395
|
+
/**
|
|
17396
|
+
* Pythagorean number value of the Cornerstone letter.
|
|
17397
|
+
*/
|
|
17398
|
+
number: number;
|
|
17399
|
+
/**
|
|
17400
|
+
* How you approach new situations and initiate action.
|
|
17401
|
+
*/
|
|
17402
|
+
meaning: string;
|
|
17403
|
+
};
|
|
17404
|
+
/**
|
|
17405
|
+
* Capstone letter analysis. Reveals completion and follow-through style.
|
|
17406
|
+
*/
|
|
17407
|
+
capstone: {
|
|
17408
|
+
/**
|
|
17409
|
+
* Last letter of the first name.
|
|
17410
|
+
*/
|
|
17411
|
+
letter: string;
|
|
17412
|
+
/**
|
|
17413
|
+
* Pythagorean number value of the Capstone letter.
|
|
17414
|
+
*/
|
|
17415
|
+
number: number;
|
|
17416
|
+
/**
|
|
17417
|
+
* How you complete tasks and handle endings.
|
|
17418
|
+
*/
|
|
17419
|
+
meaning: string;
|
|
17420
|
+
};
|
|
17421
|
+
/**
|
|
17422
|
+
* First Vowel analysis. Reveals instinctive emotional reactions.
|
|
17423
|
+
*/
|
|
17424
|
+
firstVowel: {
|
|
17425
|
+
/**
|
|
17426
|
+
* First vowel in the full name (A, E, I, O, or U).
|
|
17427
|
+
*/
|
|
17428
|
+
letter: string;
|
|
17429
|
+
/**
|
|
17430
|
+
* Instinctive emotional response and inner reaction style.
|
|
17431
|
+
*/
|
|
17432
|
+
meaning: string;
|
|
17433
|
+
};
|
|
17434
|
+
};
|
|
17435
|
+
};
|
|
17436
|
+
/**
|
|
17437
|
+
* Birth Day profile with day-specific meaning (1-31). Unlike the core Birth Day number, this provides unique interpretation per calendar day.
|
|
17438
|
+
*/
|
|
17439
|
+
birthDayProfile?: {
|
|
17440
|
+
/**
|
|
17441
|
+
* Calendar day of birth (1-31).
|
|
17442
|
+
*/
|
|
17443
|
+
day: number;
|
|
17444
|
+
/**
|
|
17445
|
+
* Single digit or master number this day reduces to.
|
|
17446
|
+
*/
|
|
17447
|
+
reducesTo: number;
|
|
17448
|
+
/**
|
|
17449
|
+
* Unique archetype title for this specific birth day.
|
|
17450
|
+
*/
|
|
17451
|
+
title: string;
|
|
17452
|
+
/**
|
|
17453
|
+
* Personality traits specific to this birth day.
|
|
17454
|
+
*/
|
|
17455
|
+
keywords: Array<string>;
|
|
17456
|
+
/**
|
|
17457
|
+
* Detailed personality profile unique to this calendar day, not just the reduced digit.
|
|
17458
|
+
*/
|
|
17459
|
+
description: string;
|
|
17460
|
+
/**
|
|
17461
|
+
* Strengths specific to this birth day.
|
|
17462
|
+
*/
|
|
17463
|
+
strengths: Array<string>;
|
|
17464
|
+
/**
|
|
17465
|
+
* Challenges specific to this birth day.
|
|
17466
|
+
*/
|
|
17467
|
+
challenges: Array<string>;
|
|
17468
|
+
/**
|
|
17469
|
+
* Career guidance for this specific birth day.
|
|
17470
|
+
*/
|
|
17471
|
+
career: string;
|
|
17472
|
+
/**
|
|
17473
|
+
* Relationship dynamics for this birth day.
|
|
17474
|
+
*/
|
|
17475
|
+
relationships: string;
|
|
17476
|
+
};
|
|
17477
|
+
/**
|
|
17478
|
+
* Maturity number activation status based on current age.
|
|
17479
|
+
*/
|
|
17480
|
+
maturityStatus: {
|
|
17481
|
+
/**
|
|
17482
|
+
* Whether the Maturity number is currently active (typically activates around age 35-40).
|
|
17483
|
+
*/
|
|
17484
|
+
isActive: boolean;
|
|
17485
|
+
/**
|
|
17486
|
+
* Current age calculated from the birth year.
|
|
17487
|
+
*/
|
|
17488
|
+
currentAge: number;
|
|
17489
|
+
/**
|
|
17490
|
+
* Age range when the Maturity number typically activates (35-40).
|
|
17491
|
+
*/
|
|
17492
|
+
activationRange: string;
|
|
17493
|
+
};
|
|
17494
|
+
/**
|
|
17495
|
+
* Lucky associations based on Life Path number: colors, gemstones, day, element, planet, and compatibility.
|
|
17496
|
+
*/
|
|
17497
|
+
luckyAssociations?: {
|
|
17498
|
+
/**
|
|
17499
|
+
* Lucky colors associated with the Life Path number.
|
|
17500
|
+
*/
|
|
17501
|
+
colors: Array<string>;
|
|
17502
|
+
/**
|
|
17503
|
+
* Lucky gemstones aligned to the ruling planet.
|
|
17504
|
+
*/
|
|
17505
|
+
gemstones: Array<string>;
|
|
17506
|
+
/**
|
|
17507
|
+
* Lucky day of the week.
|
|
17508
|
+
*/
|
|
17509
|
+
day: string;
|
|
17510
|
+
/**
|
|
17511
|
+
* Classical element (Fire, Water, Earth, Air).
|
|
17512
|
+
*/
|
|
17513
|
+
element: string;
|
|
17514
|
+
/**
|
|
17515
|
+
* Ruling planet for this Life Path number.
|
|
17516
|
+
*/
|
|
17517
|
+
rulingPlanet: string;
|
|
17518
|
+
/**
|
|
17519
|
+
* Most compatible Life Path numbers.
|
|
17520
|
+
*/
|
|
17521
|
+
compatibleNumbers: Array<number>;
|
|
17522
|
+
/**
|
|
17523
|
+
* Least compatible Life Path numbers.
|
|
17524
|
+
*/
|
|
17525
|
+
incompatibleNumbers: Array<number>;
|
|
16552
17526
|
};
|
|
16553
17527
|
/**
|
|
16554
17528
|
* AI-ready holistic summary weaving all core numbers, karmic insights, and yearly forecast into a cohesive narrative. Ideal for generating personalized reports, chatbot responses, or one-page numerology overviews.
|