@roxyapi/sdk 1.2.4 → 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/src/types.gen.ts CHANGED
@@ -5121,55 +5121,55 @@ export type PostAstrologySynastryData = {
5121
5121
  body?: {
5122
5122
  person1: {
5123
5123
  /**
5124
- * Optional display name for this person. Included in the response for easy identification.
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 placements.
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 placements.
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-Venus inter-aspects.
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
- * Identified relationship strengths based on harmonious inter-chart aspects.
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. Growth opportunities in the relationship.
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
 
@@ -14701,12 +14990,24 @@ export type PostNumerologyExpressionResponses = {
14701
14990
 
14702
14991
  export type PostNumerologyExpressionResponse = PostNumerologyExpressionResponses[keyof PostNumerologyExpressionResponses];
14703
14992
 
14704
- export type PostNumerologySoulUrgeData = {
14993
+ export type PostNumerologyBridgeData = {
14705
14994
  body?: {
14706
14995
  /**
14707
- * Full birth name (vowels will be extracted)
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.
14708
14997
  */
14709
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;
14710
15011
  };
14711
15012
  path?: never;
14712
15013
  query?: {
@@ -14715,10 +15016,10 @@ export type PostNumerologySoulUrgeData = {
14715
15016
  */
14716
15017
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
14717
15018
  };
14718
- url: '/numerology/soul-urge';
15019
+ url: '/numerology/bridge';
14719
15020
  };
14720
15021
 
14721
- export type PostNumerologySoulUrgeErrors = {
15022
+ export type PostNumerologyBridgeErrors = {
14722
15023
  /**
14723
15024
  * Validation error (missing or invalid parameters)
14724
15025
  */
@@ -14773,61 +15074,244 @@ export type PostNumerologySoulUrgeErrors = {
14773
15074
  };
14774
15075
  };
14775
15076
 
14776
- export type PostNumerologySoulUrgeError = PostNumerologySoulUrgeErrors[keyof PostNumerologySoulUrgeErrors];
15077
+ export type PostNumerologyBridgeError = PostNumerologyBridgeErrors[keyof PostNumerologyBridgeErrors];
14777
15078
 
14778
- export type PostNumerologySoulUrgeResponses = {
15079
+ export type PostNumerologyBridgeResponses = {
14779
15080
  /**
14780
- * Successfully calculated Soul Urge number with detailed interpretation
15081
+ * Successfully calculated three Bridge Numbers with actionable harmony guidance
14781
15082
  */
14782
15083
  200: {
14783
15084
  /**
14784
- * Soul Urge number (1-9, 11, 22, 33)
14785
- */
14786
- number: number;
14787
- /**
14788
- * Step-by-step calculation showing vowel values only
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.
14789
15086
  */
14790
- calculation: string;
14791
- /**
14792
- * Number type classification
14793
- */
14794
- type: 'single' | 'master';
14795
- /**
14796
- * Whether calculation passed through karmic debt number
14797
- */
14798
- hasKarmicDebt: boolean;
14799
- /**
14800
- * Karmic debt number if detected (13, 14, 16, 19)
14801
- */
14802
- karmicDebtNumber?: number;
14803
- /**
14804
- * Detailed interpretation of the Karmic Debt number when present. Only returned when hasKarmicDebt is true.
14805
- */
14806
- karmicDebtMeaning?: {
14807
- /**
14808
- * Title describing the karmic debt theme and core past-life pattern.
14809
- */
14810
- description: string;
15087
+ lifePathExpression: {
14811
15088
  /**
14812
- * The specific challenge from past lives that must be confronted.
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.
14813
15090
  */
14814
- challenge: string;
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
+ };
14815
15112
  /**
14816
- * Practical guidance for resolving the karmic debt.
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.
14817
15114
  */
14818
- resolution: string;
15115
+ meaning: string;
14819
15116
  };
14820
- meaning: {
14821
- /**
14822
- * Numerology archetype for this Soul Urge number. Reveals the deepest inner motivation, such as "The Seeker" for 7 or "The Master Teacher" for 33.
14823
- */
14824
- title: string;
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: {
14825
15121
  /**
14826
- * Core emotional drives and inner motivations for this Soul Urge. Useful for understanding hidden desires, emotional needs, and what truly fulfills someone at the deepest level.
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.
14827
15123
  */
14828
- keywords: Array<string>;
14829
- /**
14830
- * Expert-written 300 to 500 word exploration of the inner self, hidden desires, and emotional landscape. Reveals what the heart truly craves beneath the surface persona.
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
+
15188
+ export type PostNumerologySoulUrgeData = {
15189
+ body?: {
15190
+ /**
15191
+ * Full birth name (vowels will be extracted)
15192
+ */
15193
+ fullName: string;
15194
+ };
15195
+ path?: never;
15196
+ query?: {
15197
+ /**
15198
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
15199
+ */
15200
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
15201
+ };
15202
+ url: '/numerology/soul-urge';
15203
+ };
15204
+
15205
+ export type PostNumerologySoulUrgeErrors = {
15206
+ /**
15207
+ * Validation error (missing or invalid parameters)
15208
+ */
15209
+ 400: {
15210
+ /**
15211
+ * Human-readable error message. May change wording.
15212
+ */
15213
+ error: string;
15214
+ /**
15215
+ * Machine-readable error code. Stable identifier.
15216
+ */
15217
+ code: string;
15218
+ };
15219
+ /**
15220
+ * Invalid or missing API key
15221
+ */
15222
+ 401: {
15223
+ /**
15224
+ * Human-readable error message. May change wording.
15225
+ */
15226
+ error: string;
15227
+ /**
15228
+ * Machine-readable error code. Stable identifier.
15229
+ */
15230
+ code: string;
15231
+ };
15232
+ /**
15233
+ * Monthly rate limit exceeded
15234
+ */
15235
+ 429: {
15236
+ /**
15237
+ * Human-readable error message. May change wording.
15238
+ */
15239
+ error: string;
15240
+ /**
15241
+ * Machine-readable error code. Stable identifier.
15242
+ */
15243
+ code: string;
15244
+ };
15245
+ /**
15246
+ * Internal server error
15247
+ */
15248
+ 500: {
15249
+ /**
15250
+ * Human-readable error message. May change wording.
15251
+ */
15252
+ error: string;
15253
+ /**
15254
+ * Machine-readable error code. Stable identifier.
15255
+ */
15256
+ code: string;
15257
+ };
15258
+ };
15259
+
15260
+ export type PostNumerologySoulUrgeError = PostNumerologySoulUrgeErrors[keyof PostNumerologySoulUrgeErrors];
15261
+
15262
+ export type PostNumerologySoulUrgeResponses = {
15263
+ /**
15264
+ * Successfully calculated Soul Urge number with detailed interpretation
15265
+ */
15266
+ 200: {
15267
+ /**
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.
15269
+ */
15270
+ number: number;
15271
+ /**
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.
15273
+ */
15274
+ calculation: string;
15275
+ /**
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.
15277
+ */
15278
+ type: 'single' | 'master';
15279
+ /**
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.
15281
+ */
15282
+ hasKarmicDebt: boolean;
15283
+ /**
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.
15285
+ */
15286
+ karmicDebtNumber?: number;
15287
+ /**
15288
+ * Detailed interpretation of the Karmic Debt number when present. Only returned when hasKarmicDebt is true.
15289
+ */
15290
+ karmicDebtMeaning?: {
15291
+ /**
15292
+ * Title describing the karmic debt theme and core past-life pattern.
15293
+ */
15294
+ description: string;
15295
+ /**
15296
+ * The specific challenge from past lives that must be confronted.
15297
+ */
15298
+ challenge: string;
15299
+ /**
15300
+ * Practical guidance for resolving the karmic debt.
15301
+ */
15302
+ resolution: string;
15303
+ };
15304
+ meaning: {
15305
+ /**
15306
+ * Numerology archetype for this Soul Urge number. Reveals the deepest inner motivation, such as "The Seeker" for 7 or "The Master Teacher" for 33.
15307
+ */
15308
+ title: string;
15309
+ /**
15310
+ * Core emotional drives and inner motivations for this Soul Urge. Useful for understanding hidden desires, emotional needs, and what truly fulfills someone at the deepest level.
15311
+ */
15312
+ keywords: Array<string>;
15313
+ /**
15314
+ * Expert-written 300 to 500 word exploration of the inner self, hidden desires, and emotional landscape. Reveals what the heart truly craves beneath the surface persona.
14831
15315
  */
14832
15316
  description: string;
14833
15317
  /**
@@ -14936,23 +15420,23 @@ export type PostNumerologyPersonalityResponses = {
14936
15420
  */
14937
15421
  200: {
14938
15422
  /**
14939
- * Personality number (1-9, 11, 22, 33)
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.
14940
15424
  */
14941
15425
  number: number;
14942
15426
  /**
14943
- * Step-by-step calculation showing consonant values only
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.
14944
15428
  */
14945
15429
  calculation: string;
14946
15430
  /**
14947
- * Number type classification
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.
14948
15432
  */
14949
15433
  type: 'single' | 'master';
14950
15434
  /**
14951
- * Whether calculation passed through karmic debt number
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.
14952
15436
  */
14953
15437
  hasKarmicDebt: boolean;
14954
15438
  /**
14955
- * Karmic debt number if detected (13, 14, 16, 19)
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.
14956
15440
  */
14957
15441
  karmicDebtNumber?: number;
14958
15442
  /**
@@ -15091,23 +15575,23 @@ export type PostNumerologyBirthDayResponses = {
15091
15575
  */
15092
15576
  200: {
15093
15577
  /**
15094
- * Birth Day number (1-9, 11, 22)
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).
15095
15579
  */
15096
15580
  number: number;
15097
15581
  /**
15098
- * Step-by-step calculation (single digit if 1-9)
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.
15099
15583
  */
15100
15584
  calculation: string;
15101
15585
  /**
15102
- * Number type classification
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.
15103
15587
  */
15104
15588
  type: 'single' | 'master';
15105
15589
  /**
15106
- * Whether day number has karmic debt
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.
15107
15591
  */
15108
15592
  hasKarmicDebt: boolean;
15109
15593
  /**
15110
- * Karmic debt number if present (13, 14, 16, 19)
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.
15111
15595
  */
15112
15596
  karmicDebtNumber?: number;
15113
15597
  /**
@@ -15169,13 +15653,29 @@ export type PostNumerologyBirthDayResponse = PostNumerologyBirthDayResponses[key
15169
15653
  export type PostNumerologyMaturityData = {
15170
15654
  body?: {
15171
15655
  /**
15172
- * 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.
15173
15673
  */
15174
- lifePath: number;
15674
+ month?: number;
15175
15675
  /**
15176
- * Your Expression number (1-9, 11, 22, 33)
15676
+ * Birth day (1-31). Required with year and month for automatic Life Path calculation.
15177
15677
  */
15178
- expression: number;
15678
+ day?: number;
15179
15679
  };
15180
15680
  path?: never;
15181
15681
  query?: {
@@ -15250,23 +15750,23 @@ export type PostNumerologyMaturityResponses = {
15250
15750
  */
15251
15751
  200: {
15252
15752
  /**
15253
- * Maturity number (1-9, 11, 22, 33)
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.
15254
15754
  */
15255
15755
  number: number;
15256
15756
  /**
15257
- * Step-by-step calculation showing Life Path + Expression
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.
15258
15758
  */
15259
15759
  calculation: string;
15260
15760
  /**
15261
- * Number type classification
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.
15262
15762
  */
15263
15763
  type: 'single' | 'master';
15264
15764
  /**
15265
- * Whether calculation passed through karmic debt number
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.
15266
15766
  */
15267
15767
  hasKarmicDebt: boolean;
15268
15768
  /**
15269
- * Karmic debt number if detected (13, 14, 16, 19)
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.
15270
15770
  */
15271
15771
  karmicDebtNumber?: number;
15272
15772
  /**
@@ -15440,21 +15940,271 @@ export type PostNumerologyKarmicLessonsResponse = PostNumerologyKarmicLessonsRes
15440
15940
  export type PostNumerologyKarmicDebtData = {
15441
15941
  body?: {
15442
15942
  /**
15443
- * Birth year (checks Life Path)
15943
+ * Birth year (checks Life Path)
15944
+ */
15945
+ year?: number;
15946
+ /**
15947
+ * Birth month (checks Life Path)
15948
+ */
15949
+ month?: number;
15950
+ /**
15951
+ * Birth day (checks Life Path)
15952
+ */
15953
+ day?: number;
15954
+ /**
15955
+ * Full birth name (checks Expression, Soul Urge, Personality)
15956
+ */
15957
+ fullName?: string;
15958
+ };
15959
+ path?: never;
15960
+ query?: {
15961
+ /**
15962
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
15963
+ */
15964
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
15965
+ };
15966
+ url: '/numerology/karmic-debt';
15967
+ };
15968
+
15969
+ export type PostNumerologyKarmicDebtErrors = {
15970
+ /**
15971
+ * Validation error (missing or invalid parameters)
15972
+ */
15973
+ 400: {
15974
+ /**
15975
+ * Human-readable error message. May change wording.
15976
+ */
15977
+ error: string;
15978
+ /**
15979
+ * Machine-readable error code. Stable identifier.
15980
+ */
15981
+ code: string;
15982
+ };
15983
+ /**
15984
+ * Invalid or missing API key
15985
+ */
15986
+ 401: {
15987
+ /**
15988
+ * Human-readable error message. May change wording.
15989
+ */
15990
+ error: string;
15991
+ /**
15992
+ * Machine-readable error code. Stable identifier.
15993
+ */
15994
+ code: string;
15995
+ };
15996
+ /**
15997
+ * Monthly rate limit exceeded
15998
+ */
15999
+ 429: {
16000
+ /**
16001
+ * Human-readable error message. May change wording.
16002
+ */
16003
+ error: string;
16004
+ /**
16005
+ * Machine-readable error code. Stable identifier.
16006
+ */
16007
+ code: string;
16008
+ };
16009
+ /**
16010
+ * Internal server error
16011
+ */
16012
+ 500: {
16013
+ /**
16014
+ * Human-readable error message. May change wording.
16015
+ */
16016
+ error: string;
16017
+ /**
16018
+ * Machine-readable error code. Stable identifier.
16019
+ */
16020
+ code: string;
16021
+ };
16022
+ };
16023
+
16024
+ export type PostNumerologyKarmicDebtError = PostNumerologyKarmicDebtErrors[keyof PostNumerologyKarmicDebtErrors];
16025
+
16026
+ export type PostNumerologyKarmicDebtResponses = {
16027
+ /**
16028
+ * Successfully detected karmic debt with detailed meanings
16029
+ */
16030
+ 200: {
16031
+ /**
16032
+ * Whether any karmic debt numbers were detected
16033
+ */
16034
+ hasKarmicDebt: boolean;
16035
+ /**
16036
+ * All karmic debt numbers found (13, 14, 16, 19)
16037
+ */
16038
+ debtNumbers: Array<number>;
16039
+ meanings: Array<{
16040
+ /**
16041
+ * Karmic debt number
16042
+ */
16043
+ number: number;
16044
+ /**
16045
+ * Debt title and nature
16046
+ */
16047
+ description: string;
16048
+ /**
16049
+ * Detailed explanation of past life issue and current challenges
16050
+ */
16051
+ challenge: string;
16052
+ /**
16053
+ * Guidance for resolving karmic debt in this lifetime
16054
+ */
16055
+ resolution: string;
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;
16061
+ };
16062
+ };
16063
+
16064
+ export type PostNumerologyKarmicDebtResponse = PostNumerologyKarmicDebtResponses[keyof PostNumerologyKarmicDebtResponses];
16065
+
16066
+ export type PostNumerologyPersonalDayData = {
16067
+ body?: {
16068
+ /**
16069
+ * Birth month (1-12)
16070
+ */
16071
+ month: number;
16072
+ /**
16073
+ * Birth day (1-31)
16074
+ */
16075
+ day: number;
16076
+ /**
16077
+ * Target date in YYYY-MM-DD format (defaults to today)
16078
+ */
16079
+ targetDate?: string;
16080
+ };
16081
+ path?: never;
16082
+ query?: {
16083
+ /**
16084
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
16085
+ */
16086
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
16087
+ };
16088
+ url: '/numerology/personal-day';
16089
+ };
16090
+
16091
+ export type PostNumerologyPersonalDayErrors = {
16092
+ /**
16093
+ * Validation error (missing or invalid parameters)
16094
+ */
16095
+ 400: {
16096
+ /**
16097
+ * Human-readable error message. May change wording.
16098
+ */
16099
+ error: string;
16100
+ /**
16101
+ * Machine-readable error code. Stable identifier.
16102
+ */
16103
+ code: string;
16104
+ };
16105
+ /**
16106
+ * Invalid or missing API key
16107
+ */
16108
+ 401: {
16109
+ /**
16110
+ * Human-readable error message. May change wording.
16111
+ */
16112
+ error: string;
16113
+ /**
16114
+ * Machine-readable error code. Stable identifier.
16115
+ */
16116
+ code: string;
16117
+ };
16118
+ /**
16119
+ * Monthly rate limit exceeded
16120
+ */
16121
+ 429: {
16122
+ /**
16123
+ * Human-readable error message. May change wording.
16124
+ */
16125
+ error: string;
16126
+ /**
16127
+ * Machine-readable error code. Stable identifier.
16128
+ */
16129
+ code: string;
16130
+ };
16131
+ /**
16132
+ * Internal server error
16133
+ */
16134
+ 500: {
16135
+ /**
16136
+ * Human-readable error message. May change wording.
16137
+ */
16138
+ error: string;
16139
+ /**
16140
+ * Machine-readable error code. Stable identifier.
16141
+ */
16142
+ code: string;
16143
+ };
16144
+ };
16145
+
16146
+ export type PostNumerologyPersonalDayError = PostNumerologyPersonalDayErrors[keyof PostNumerologyPersonalDayErrors];
16147
+
16148
+ export type PostNumerologyPersonalDayResponses = {
16149
+ /**
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)
15444
16194
  */
15445
- year?: number;
16195
+ month: number;
15446
16196
  /**
15447
- * Birth month (checks Life Path)
16197
+ * Birth day (1-31)
15448
16198
  */
15449
- month?: number;
16199
+ day: number;
15450
16200
  /**
15451
- * Birth day (checks Life Path)
16201
+ * Target year for calculation (defaults to current year)
15452
16202
  */
15453
- day?: number;
16203
+ year?: number;
15454
16204
  /**
15455
- * Full birth name (checks Expression, Soul Urge, Personality)
16205
+ * Target calendar month to forecast (1-12, defaults to current month)
15456
16206
  */
15457
- fullName?: string;
16207
+ targetMonth?: number;
15458
16208
  };
15459
16209
  path?: never;
15460
16210
  query?: {
@@ -15463,10 +16213,10 @@ export type PostNumerologyKarmicDebtData = {
15463
16213
  */
15464
16214
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
15465
16215
  };
15466
- url: '/numerology/karmic-debt';
16216
+ url: '/numerology/personal-month';
15467
16217
  };
15468
16218
 
15469
- export type PostNumerologyKarmicDebtErrors = {
16219
+ export type PostNumerologyPersonalMonthErrors = {
15470
16220
  /**
15471
16221
  * Validation error (missing or invalid parameters)
15472
16222
  */
@@ -15521,43 +16271,41 @@ export type PostNumerologyKarmicDebtErrors = {
15521
16271
  };
15522
16272
  };
15523
16273
 
15524
- export type PostNumerologyKarmicDebtError = PostNumerologyKarmicDebtErrors[keyof PostNumerologyKarmicDebtErrors];
16274
+ export type PostNumerologyPersonalMonthError = PostNumerologyPersonalMonthErrors[keyof PostNumerologyPersonalMonthErrors];
15525
16275
 
15526
- export type PostNumerologyKarmicDebtResponses = {
16276
+ export type PostNumerologyPersonalMonthResponses = {
15527
16277
  /**
15528
- * Successfully detected karmic debt with detailed meanings
16278
+ * Successfully calculated Personal Month with forecast
15529
16279
  */
15530
16280
  200: {
15531
16281
  /**
15532
- * Whether any karmic debt numbers were detected
16282
+ * Personal Month number (1-9). Each month in the cycle carries specific energy and themes that guide decisions and focus.
15533
16283
  */
15534
- hasKarmicDebt: boolean;
16284
+ personalMonth: number;
15535
16285
  /**
15536
- * All karmic debt numbers found (13, 14, 16, 19)
16286
+ * Central theme for this Personal Month. A concise label capturing the dominant energy.
15537
16287
  */
15538
- debtNumbers: Array<number>;
15539
- meanings: Array<{
15540
- /**
15541
- * Karmic debt number
15542
- */
15543
- number: number;
15544
- /**
15545
- * Debt title and nature
15546
- */
15547
- description: string;
15548
- /**
15549
- * Detailed explanation of past life issue and current challenges
15550
- */
15551
- challenge: string;
15552
- /**
15553
- * Guidance for resolving karmic debt in this lifetime
15554
- */
15555
- resolution: string;
15556
- }>;
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;
15557
16305
  };
15558
16306
  };
15559
16307
 
15560
- export type PostNumerologyKarmicDebtResponse = PostNumerologyKarmicDebtResponses[keyof PostNumerologyKarmicDebtResponses];
16308
+ export type PostNumerologyPersonalMonthResponse = PostNumerologyPersonalMonthResponses[keyof PostNumerologyPersonalMonthResponses];
15561
16309
 
15562
16310
  export type PostNumerologyPersonalYearData = {
15563
16311
  body?: {
@@ -15683,31 +16431,63 @@ export type PostNumerologyCompatibilityData = {
15683
16431
  body?: {
15684
16432
  person1: {
15685
16433
  /**
15686
- * 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.
16439
+ */
16440
+ expression?: number;
16441
+ /**
16442
+ * Person 1 Soul Urge number (1-9, 11, 22, 33). Optional if fullName is provided.
16443
+ */
16444
+ soulUrge?: number;
16445
+ /**
16446
+ * Full birth name to calculate Expression and Soul Urge numbers automatically. Use instead of passing expression and soulUrge directly.
16447
+ */
16448
+ fullName?: string;
16449
+ /**
16450
+ * Birth year to calculate Life Path automatically. Use with month and day instead of passing lifePath directly.
15687
16451
  */
15688
- lifePath: number;
16452
+ year?: number;
15689
16453
  /**
15690
- * Person 1 Expression number (1-9, 11, 22, 33)
16454
+ * Birth month (1-12). Required with year and day for automatic Life Path calculation.
15691
16455
  */
15692
- expression: number;
16456
+ month?: number;
15693
16457
  /**
15694
- * Person 1 Soul Urge number (1-9, 11, 22, 33)
16458
+ * Birth day (1-31). Required with year and month for automatic Life Path calculation.
15695
16459
  */
15696
- soulUrge: number;
16460
+ day?: number;
15697
16461
  };
15698
16462
  person2: {
15699
16463
  /**
15700
- * 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.
16477
+ */
16478
+ fullName?: string;
16479
+ /**
16480
+ * Birth year to calculate Life Path automatically. Use with month and day instead of passing lifePath directly.
15701
16481
  */
15702
- lifePath: number;
16482
+ year?: number;
15703
16483
  /**
15704
- * Person 2 Expression number (1-9, 11, 22, 33)
16484
+ * Birth month (1-12). Required with year and day for automatic Life Path calculation.
15705
16485
  */
15706
- expression: number;
16486
+ month?: number;
15707
16487
  /**
15708
- * Person 2 Soul Urge number (1-9, 11, 22, 33)
16488
+ * Birth day (1-31). Required with year and month for automatic Life Path calculation.
15709
16489
  */
15710
- soulUrge: number;
16490
+ day?: number;
15711
16491
  };
15712
16492
  };
15713
16493
  path?: never;
@@ -15787,7 +16567,7 @@ export type PostNumerologyCompatibilityResponses = {
15787
16567
  */
15788
16568
  overallScore: number;
15789
16569
  /**
15790
- * Compatibility rating (Poor/Fair/Good/Excellent/Exceptional)
16570
+ * Compatibility rating: Highly Compatible, Very Compatible, Compatible, Moderately Compatible, or Challenging.
15791
16571
  */
15792
16572
  rating: string;
15793
16573
  lifePath: {
@@ -16229,6 +17009,22 @@ export type PostNumerologyChartResponses = {
16229
17009
  * Birth Day number (1-31). A special talent number based on the day of the month you were born.
16230
17010
  */
16231
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;
16232
17028
  /**
16233
17029
  * Complete interpretation of the Birth Day number with archetype, innate talents, career advantages, and relationship dynamics.
16234
17030
  */
@@ -16331,7 +17127,7 @@ export type PostNumerologyChartResponses = {
16331
17127
  };
16332
17128
  };
16333
17129
  /**
16334
- * Additional numerology insights beyond core numbers: karmic analysis and yearly forecast.
17130
+ * Additional numerology insights: karmic analysis, yearly/monthly forecasts, pinnacles, challenges, hidden passion, subconscious self, and name letter analysis.
16335
17131
  */
16336
17132
  additionalInsights: {
16337
17133
  /**
@@ -16405,7 +17201,7 @@ export type PostNumerologyChartResponses = {
16405
17201
  }>;
16406
17202
  };
16407
17203
  /**
16408
- * Personal Year forecast. Yearly numerology cycle revealing the theme, opportunities, and challenges for the specified year.
17204
+ * Personal Year forecast with nested Personal Month. Yearly and monthly numerology cycles.
16409
17205
  */
16410
17206
  personalYear: {
16411
17207
  /**
@@ -16436,8 +17232,298 @@ export type PostNumerologyChartResponses = {
16436
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.
16437
17233
  */
16438
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
+ };
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
+ };
16439
17434
  };
16440
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>;
17526
+ };
16441
17527
  /**
16442
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.
16443
17529
  */