@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.
@@ -4994,55 +4994,55 @@ export type PostAstrologySynastryData = {
4994
4994
  body?: {
4995
4995
  person1: {
4996
4996
  /**
4997
- * Optional display name for this person. Included in the response for easy identification.
4998
- */
4999
- name?: string;
5000
- /**
5001
- * Birth date in YYYY-MM-DD format.
4997
+ * Birth date in YYYY-MM-DD format. Determines planetary positions for the specific calendar day.
5002
4998
  */
5003
4999
  date: string;
5004
5000
  /**
5005
- * Birth time in 24-hour HH:MM:SS format. Determines Ascendant and house placements.
5001
+ * Birth time in 24-hour HH:MM:SS format. Determines the Ascendant (rising sign) and house cusps. Use 12:00:00 if unknown.
5006
5002
  */
5007
5003
  time: string;
5008
5004
  /**
5009
- * Birth location latitude in decimal degrees (-90 to 90).
5005
+ * Birth location latitude in decimal degrees (-90 to 90). Positive = North, negative = South.
5010
5006
  */
5011
5007
  latitude: number;
5012
5008
  /**
5013
- * Birth location longitude in decimal degrees (-180 to 180).
5009
+ * Birth location longitude in decimal degrees (-180 to 180). Positive = East, negative = West.
5014
5010
  */
5015
5011
  longitude: number;
5016
5012
  /**
5017
5013
  * Timezone offset from UTC in decimal hours. Examples: New York = -5, London = 0, India = 5.5, Tokyo = 9.
5018
5014
  */
5019
5015
  timezone: number;
5020
- };
5021
- person2: {
5022
5016
  /**
5023
5017
  * Optional display name for this person. Included in the response for easy identification.
5024
5018
  */
5025
5019
  name?: string;
5020
+ };
5021
+ person2: {
5026
5022
  /**
5027
- * Birth date in YYYY-MM-DD format.
5023
+ * Birth date in YYYY-MM-DD format. Determines planetary positions for the specific calendar day.
5028
5024
  */
5029
5025
  date: string;
5030
5026
  /**
5031
- * Birth time in 24-hour HH:MM:SS format. Determines Ascendant and house placements.
5027
+ * Birth time in 24-hour HH:MM:SS format. Determines the Ascendant (rising sign) and house cusps. Use 12:00:00 if unknown.
5032
5028
  */
5033
5029
  time: string;
5034
5030
  /**
5035
- * Birth location latitude in decimal degrees (-90 to 90).
5031
+ * Birth location latitude in decimal degrees (-90 to 90). Positive = North, negative = South.
5036
5032
  */
5037
5033
  latitude: number;
5038
5034
  /**
5039
- * Birth location longitude in decimal degrees (-180 to 180).
5035
+ * Birth location longitude in decimal degrees (-180 to 180). Positive = East, negative = West.
5040
5036
  */
5041
5037
  longitude: number;
5042
5038
  /**
5043
5039
  * Timezone offset from UTC in decimal hours. Examples: New York = -5, London = 0, India = 5.5, Tokyo = 9.
5044
5040
  */
5045
5041
  timezone: number;
5042
+ /**
5043
+ * Optional display name for this person. Included in the response for easy identification.
5044
+ */
5045
+ name?: string;
5046
5046
  };
5047
5047
  /**
5048
5048
  * House system for both natal charts. Placidus (default), Whole Sign, Equal, or Koch.
@@ -6932,7 +6932,7 @@ export type PostAstrologyCompatibilityScoreResponses = {
6932
6932
  */
6933
6933
  intellectual: number;
6934
6934
  /**
6935
- * Physical compatibility score based on Mars-Mars and Mars-Venus inter-aspects.
6935
+ * Physical compatibility score based on Mars-Mars and Mars-Sun inter-aspects.
6936
6936
  */
6937
6937
  physical: number;
6938
6938
  /**
@@ -6941,11 +6941,271 @@ export type PostAstrologyCompatibilityScoreResponses = {
6941
6941
  spiritual: number;
6942
6942
  };
6943
6943
  /**
6944
- * Identified relationship strengths based on harmonious inter-chart aspects.
6944
+ * Summary of key planetary positions for both people. Includes the four planets most relevant to relationship compatibility.
6945
+ */
6946
+ persons: {
6947
+ /**
6948
+ * Key planet positions for person 1. Sun, Moon, Venus, and Mars sign placements.
6949
+ */
6950
+ person1: {
6951
+ /**
6952
+ * Sun sign position. Core identity and ego.
6953
+ */
6954
+ sun: {
6955
+ /**
6956
+ * Zodiac sign this planet occupies in the tropical zodiac.
6957
+ */
6958
+ sign: string;
6959
+ /**
6960
+ * Degree within the zodiac sign (0-29.999).
6961
+ */
6962
+ degree: number;
6963
+ };
6964
+ /**
6965
+ * Moon sign position. Emotional nature and instincts.
6966
+ */
6967
+ moon: {
6968
+ /**
6969
+ * Zodiac sign this planet occupies in the tropical zodiac.
6970
+ */
6971
+ sign: string;
6972
+ /**
6973
+ * Degree within the zodiac sign (0-29.999).
6974
+ */
6975
+ degree: number;
6976
+ };
6977
+ /**
6978
+ * Venus sign position. Love language and relationship style.
6979
+ */
6980
+ venus: {
6981
+ /**
6982
+ * Zodiac sign this planet occupies in the tropical zodiac.
6983
+ */
6984
+ sign: string;
6985
+ /**
6986
+ * Degree within the zodiac sign (0-29.999).
6987
+ */
6988
+ degree: number;
6989
+ };
6990
+ /**
6991
+ * Mars sign position. Passion, desire, and conflict style.
6992
+ */
6993
+ mars: {
6994
+ /**
6995
+ * Zodiac sign this planet occupies in the tropical zodiac.
6996
+ */
6997
+ sign: string;
6998
+ /**
6999
+ * Degree within the zodiac sign (0-29.999).
7000
+ */
7001
+ degree: number;
7002
+ };
7003
+ };
7004
+ /**
7005
+ * Key planet positions for person 2. Sun, Moon, Venus, and Mars sign placements.
7006
+ */
7007
+ person2: {
7008
+ /**
7009
+ * Sun sign position. Core identity and ego.
7010
+ */
7011
+ sun: {
7012
+ /**
7013
+ * Zodiac sign this planet occupies in the tropical zodiac.
7014
+ */
7015
+ sign: string;
7016
+ /**
7017
+ * Degree within the zodiac sign (0-29.999).
7018
+ */
7019
+ degree: number;
7020
+ };
7021
+ /**
7022
+ * Moon sign position. Emotional nature and instincts.
7023
+ */
7024
+ moon: {
7025
+ /**
7026
+ * Zodiac sign this planet occupies in the tropical zodiac.
7027
+ */
7028
+ sign: string;
7029
+ /**
7030
+ * Degree within the zodiac sign (0-29.999).
7031
+ */
7032
+ degree: number;
7033
+ };
7034
+ /**
7035
+ * Venus sign position. Love language and relationship style.
7036
+ */
7037
+ venus: {
7038
+ /**
7039
+ * Zodiac sign this planet occupies in the tropical zodiac.
7040
+ */
7041
+ sign: string;
7042
+ /**
7043
+ * Degree within the zodiac sign (0-29.999).
7044
+ */
7045
+ degree: number;
7046
+ };
7047
+ /**
7048
+ * Mars sign position. Passion, desire, and conflict style.
7049
+ */
7050
+ mars: {
7051
+ /**
7052
+ * Zodiac sign this planet occupies in the tropical zodiac.
7053
+ */
7054
+ sign: string;
7055
+ /**
7056
+ * Degree within the zodiac sign (0-29.999).
7057
+ */
7058
+ degree: number;
7059
+ };
7060
+ };
7061
+ };
7062
+ /**
7063
+ * Sign-by-sign compatibility analysis for the four key relationship planets. Each entry describes how the two signs interact through that planetary lens.
7064
+ */
7065
+ signCompatibility: {
7066
+ /**
7067
+ * Sun sign compatibility. Reveals core personality dynamic as a couple.
7068
+ */
7069
+ sun: {
7070
+ /**
7071
+ * Person 1 sign for this planet.
7072
+ */
7073
+ person1Sign: string;
7074
+ /**
7075
+ * Person 2 sign for this planet.
7076
+ */
7077
+ person2Sign: string;
7078
+ /**
7079
+ * Narrative analysis of how these two signs interact through this planet.
7080
+ */
7081
+ description: string;
7082
+ };
7083
+ /**
7084
+ * Moon sign compatibility. Reveals how you process emotions and nurture each other.
7085
+ */
7086
+ moon: {
7087
+ /**
7088
+ * Person 1 sign for this planet.
7089
+ */
7090
+ person1Sign: string;
7091
+ /**
7092
+ * Person 2 sign for this planet.
7093
+ */
7094
+ person2Sign: string;
7095
+ /**
7096
+ * Narrative analysis of how these two signs interact through this planet.
7097
+ */
7098
+ description: string;
7099
+ };
7100
+ /**
7101
+ * Venus sign compatibility. Reveals love languages and what you find beautiful together.
7102
+ */
7103
+ venus: {
7104
+ /**
7105
+ * Person 1 sign for this planet.
7106
+ */
7107
+ person1Sign: string;
7108
+ /**
7109
+ * Person 2 sign for this planet.
7110
+ */
7111
+ person2Sign: string;
7112
+ /**
7113
+ * Narrative analysis of how these two signs interact through this planet.
7114
+ */
7115
+ description: string;
7116
+ };
7117
+ /**
7118
+ * Mars sign compatibility. Reveals how you handle passion, conflict, and desire.
7119
+ */
7120
+ mars: {
7121
+ /**
7122
+ * Person 1 sign for this planet.
7123
+ */
7124
+ person1Sign: string;
7125
+ /**
7126
+ * Person 2 sign for this planet.
7127
+ */
7128
+ person2Sign: string;
7129
+ /**
7130
+ * Narrative analysis of how these two signs interact through this planet.
7131
+ */
7132
+ description: string;
7133
+ };
7134
+ };
7135
+ /**
7136
+ * Elemental balance comparison. Shows how fire, earth, air, and water energy is distributed across both charts.
7137
+ */
7138
+ elementBalance: {
7139
+ /**
7140
+ * Element distribution across person 1 natal planets.
7141
+ */
7142
+ person1: {
7143
+ /**
7144
+ * Count of planets in fire signs (Aries, Leo, Sagittarius).
7145
+ */
7146
+ fire: number;
7147
+ /**
7148
+ * Count of planets in earth signs (Taurus, Virgo, Capricorn).
7149
+ */
7150
+ earth: number;
7151
+ /**
7152
+ * Count of planets in air signs (Gemini, Libra, Aquarius).
7153
+ */
7154
+ air: number;
7155
+ /**
7156
+ * Count of planets in water signs (Cancer, Scorpio, Pisces).
7157
+ */
7158
+ water: number;
7159
+ };
7160
+ /**
7161
+ * Element distribution across person 2 natal planets.
7162
+ */
7163
+ person2: {
7164
+ /**
7165
+ * Count of planets in fire signs (Aries, Leo, Sagittarius).
7166
+ */
7167
+ fire: number;
7168
+ /**
7169
+ * Count of planets in earth signs (Taurus, Virgo, Capricorn).
7170
+ */
7171
+ earth: number;
7172
+ /**
7173
+ * Count of planets in air signs (Gemini, Libra, Aquarius).
7174
+ */
7175
+ air: number;
7176
+ /**
7177
+ * Count of planets in water signs (Cancer, Scorpio, Pisces).
7178
+ */
7179
+ water: number;
7180
+ };
7181
+ /**
7182
+ * Dominant element shared by both charts, or null if dominant elements differ.
7183
+ */
7184
+ sharedElement: string;
7185
+ /**
7186
+ * How the elemental balance between charts shapes the relationship dynamic.
7187
+ */
7188
+ description: string;
7189
+ };
7190
+ /**
7191
+ * 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.
7192
+ */
7193
+ archetype: {
7194
+ /**
7195
+ * Relationship archetype label. A headline-friendly label for the dynamic.
7196
+ */
7197
+ label: string;
7198
+ /**
7199
+ * Narrative description of the relationship archetype and what it means.
7200
+ */
7201
+ description: string;
7202
+ };
7203
+ /**
7204
+ * Top relationship strengths based on harmonious inter-chart aspects. Each includes the planet pair, aspect type, and relationship-specific interpretation.
6945
7205
  */
6946
7206
  strengths: Array<string>;
6947
7207
  /**
6948
- * Potential friction points based on challenging inter-chart aspects. Growth opportunities in the relationship.
7208
+ * Potential friction points based on challenging inter-chart aspects. Each includes specific guidance for navigating the tension.
6949
7209
  */
6950
7210
  challenges: Array<string>;
6951
7211
  /**
@@ -6977,6 +7237,35 @@ export type PostAstrologyCompatibilityScoreResponses = {
6977
7237
  */
6978
7238
  neutral: number;
6979
7239
  };
7240
+ /**
7241
+ * The most significant inter-chart aspects involving personal planets (Sun through Saturn), sorted by strength. Each includes a relationship-specific interpretation.
7242
+ */
7243
+ keyAspects: Array<{
7244
+ /**
7245
+ * First planet in the aspect.
7246
+ */
7247
+ planet1: string;
7248
+ /**
7249
+ * Second planet in the aspect.
7250
+ */
7251
+ planet2: string;
7252
+ /**
7253
+ * Aspect type (conjunction, trine, square, etc.).
7254
+ */
7255
+ type: string;
7256
+ /**
7257
+ * Deviation from exact aspect in degrees. Tighter orb = stronger influence.
7258
+ */
7259
+ orb: number;
7260
+ /**
7261
+ * Aspect nature. Harmonious flows easily. Challenging creates growth-oriented tension.
7262
+ */
7263
+ interpretation: 'harmonious' | 'challenging' | 'neutral';
7264
+ /**
7265
+ * Relationship-specific interpretation of this aspect between the two charts.
7266
+ */
7267
+ description: string;
7268
+ }>;
6980
7269
  };
6981
7270
  };
6982
7271
  export type PostAstrologyCompatibilityScoreResponse = PostAstrologyCompatibilityScoreResponses[keyof PostAstrologyCompatibilityScoreResponses];
@@ -14239,12 +14528,24 @@ export type PostNumerologyExpressionResponses = {
14239
14528
  };
14240
14529
  };
14241
14530
  export type PostNumerologyExpressionResponse = PostNumerologyExpressionResponses[keyof PostNumerologyExpressionResponses];
14242
- export type PostNumerologySoulUrgeData = {
14531
+ export type PostNumerologyBridgeData = {
14243
14532
  body?: {
14244
14533
  /**
14245
- * Full birth name (vowels will be extracted)
14534
+ * 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.
14246
14535
  */
14247
14536
  fullName: string;
14537
+ /**
14538
+ * Birth year between 100 and 2100. Used to calculate the Life Path number via Pythagorean reduction.
14539
+ */
14540
+ year: number;
14541
+ /**
14542
+ * Birth month (1 to 12)
14543
+ */
14544
+ month: number;
14545
+ /**
14546
+ * Birth day (1 to 31)
14547
+ */
14548
+ day: number;
14248
14549
  };
14249
14550
  path?: never;
14250
14551
  query?: {
@@ -14253,9 +14554,9 @@ export type PostNumerologySoulUrgeData = {
14253
14554
  */
14254
14555
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
14255
14556
  };
14256
- url: '/numerology/soul-urge';
14557
+ url: '/numerology/bridge';
14257
14558
  };
14258
- export type PostNumerologySoulUrgeErrors = {
14559
+ export type PostNumerologyBridgeErrors = {
14259
14560
  /**
14260
14561
  * Validation error (missing or invalid parameters)
14261
14562
  */
@@ -14309,60 +14610,238 @@ export type PostNumerologySoulUrgeErrors = {
14309
14610
  code: string;
14310
14611
  };
14311
14612
  };
14312
- export type PostNumerologySoulUrgeError = PostNumerologySoulUrgeErrors[keyof PostNumerologySoulUrgeErrors];
14313
- export type PostNumerologySoulUrgeResponses = {
14613
+ export type PostNumerologyBridgeError = PostNumerologyBridgeErrors[keyof PostNumerologyBridgeErrors];
14614
+ export type PostNumerologyBridgeResponses = {
14314
14615
  /**
14315
- * Successfully calculated Soul Urge number with detailed interpretation
14616
+ * Successfully calculated three Bridge Numbers with actionable harmony guidance
14316
14617
  */
14317
14618
  200: {
14318
14619
  /**
14319
- * Soul Urge number (1-9, 11, 22, 33)
14320
- */
14321
- number: number;
14322
- /**
14323
- * Step-by-step calculation showing vowel values only
14620
+ * 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.
14324
14621
  */
14325
- calculation: string;
14326
- /**
14327
- * Number type classification
14328
- */
14329
- type: 'single' | 'master';
14330
- /**
14331
- * Whether calculation passed through karmic debt number
14332
- */
14333
- hasKarmicDebt: boolean;
14334
- /**
14335
- * Karmic debt number if detected (13, 14, 16, 19)
14336
- */
14337
- karmicDebtNumber?: number;
14338
- /**
14339
- * Detailed interpretation of the Karmic Debt number when present. Only returned when hasKarmicDebt is true.
14340
- */
14341
- karmicDebtMeaning?: {
14342
- /**
14343
- * Title describing the karmic debt theme and core past-life pattern.
14344
- */
14345
- description: string;
14622
+ lifePathExpression: {
14346
14623
  /**
14347
- * The specific challenge from past lives that must be confronted.
14624
+ * 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.
14348
14625
  */
14349
- challenge: string;
14626
+ bridge: number;
14627
+ from: {
14628
+ /**
14629
+ * Name of the first core number in this bridge pair. Identifies which aspect of personality or destiny is being compared.
14630
+ */
14631
+ name: string;
14632
+ /**
14633
+ * The reduced single-digit value (1 to 9) of the first core number used in the bridge calculation.
14634
+ */
14635
+ number: number;
14636
+ };
14637
+ to: {
14638
+ /**
14639
+ * Name of the second core number in this bridge pair. Identifies the other aspect of personality or destiny being compared.
14640
+ */
14641
+ name: string;
14642
+ /**
14643
+ * The reduced single-digit value (1 to 9) of the second core number used in the bridge calculation.
14644
+ */
14645
+ number: number;
14646
+ };
14350
14647
  /**
14351
- * Practical guidance for resolving the karmic debt.
14648
+ * 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.
14352
14649
  */
14353
- resolution: string;
14650
+ meaning: string;
14354
14651
  };
14355
- meaning: {
14356
- /**
14357
- * Numerology archetype for this Soul Urge number. Reveals the deepest inner motivation, such as "The Seeker" for 7 or "The Master Teacher" for 33.
14358
- */
14359
- title: string;
14652
+ /**
14653
+ * 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.
14654
+ */
14655
+ expressionPersonality: {
14360
14656
  /**
14361
- * 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.
14657
+ * 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.
14362
14658
  */
14363
- keywords: Array<string>;
14364
- /**
14365
- * 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.
14659
+ bridge: number;
14660
+ from: {
14661
+ /**
14662
+ * Name of the first core number in this bridge pair. Identifies which aspect of personality or destiny is being compared.
14663
+ */
14664
+ name: string;
14665
+ /**
14666
+ * The reduced single-digit value (1 to 9) of the first core number used in the bridge calculation.
14667
+ */
14668
+ number: number;
14669
+ };
14670
+ to: {
14671
+ /**
14672
+ * Name of the second core number in this bridge pair. Identifies the other aspect of personality or destiny being compared.
14673
+ */
14674
+ name: string;
14675
+ /**
14676
+ * The reduced single-digit value (1 to 9) of the second core number used in the bridge calculation.
14677
+ */
14678
+ number: number;
14679
+ };
14680
+ /**
14681
+ * 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.
14682
+ */
14683
+ meaning: string;
14684
+ };
14685
+ /**
14686
+ * 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.
14687
+ */
14688
+ expressionSoulUrge: {
14689
+ /**
14690
+ * 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.
14691
+ */
14692
+ bridge: number;
14693
+ from: {
14694
+ /**
14695
+ * Name of the first core number in this bridge pair. Identifies which aspect of personality or destiny is being compared.
14696
+ */
14697
+ name: string;
14698
+ /**
14699
+ * The reduced single-digit value (1 to 9) of the first core number used in the bridge calculation.
14700
+ */
14701
+ number: number;
14702
+ };
14703
+ to: {
14704
+ /**
14705
+ * Name of the second core number in this bridge pair. Identifies the other aspect of personality or destiny being compared.
14706
+ */
14707
+ name: string;
14708
+ /**
14709
+ * The reduced single-digit value (1 to 9) of the second core number used in the bridge calculation.
14710
+ */
14711
+ number: number;
14712
+ };
14713
+ /**
14714
+ * 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.
14715
+ */
14716
+ meaning: string;
14717
+ };
14718
+ };
14719
+ };
14720
+ export type PostNumerologyBridgeResponse = PostNumerologyBridgeResponses[keyof PostNumerologyBridgeResponses];
14721
+ export type PostNumerologySoulUrgeData = {
14722
+ body?: {
14723
+ /**
14724
+ * Full birth name (vowels will be extracted)
14725
+ */
14726
+ fullName: string;
14727
+ };
14728
+ path?: never;
14729
+ query?: {
14730
+ /**
14731
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
14732
+ */
14733
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
14734
+ };
14735
+ url: '/numerology/soul-urge';
14736
+ };
14737
+ export type PostNumerologySoulUrgeErrors = {
14738
+ /**
14739
+ * Validation error (missing or invalid parameters)
14740
+ */
14741
+ 400: {
14742
+ /**
14743
+ * Human-readable error message. May change wording.
14744
+ */
14745
+ error: string;
14746
+ /**
14747
+ * Machine-readable error code. Stable identifier.
14748
+ */
14749
+ code: string;
14750
+ };
14751
+ /**
14752
+ * Invalid or missing API key
14753
+ */
14754
+ 401: {
14755
+ /**
14756
+ * Human-readable error message. May change wording.
14757
+ */
14758
+ error: string;
14759
+ /**
14760
+ * Machine-readable error code. Stable identifier.
14761
+ */
14762
+ code: string;
14763
+ };
14764
+ /**
14765
+ * Monthly rate limit exceeded
14766
+ */
14767
+ 429: {
14768
+ /**
14769
+ * Human-readable error message. May change wording.
14770
+ */
14771
+ error: string;
14772
+ /**
14773
+ * Machine-readable error code. Stable identifier.
14774
+ */
14775
+ code: string;
14776
+ };
14777
+ /**
14778
+ * Internal server error
14779
+ */
14780
+ 500: {
14781
+ /**
14782
+ * Human-readable error message. May change wording.
14783
+ */
14784
+ error: string;
14785
+ /**
14786
+ * Machine-readable error code. Stable identifier.
14787
+ */
14788
+ code: string;
14789
+ };
14790
+ };
14791
+ export type PostNumerologySoulUrgeError = PostNumerologySoulUrgeErrors[keyof PostNumerologySoulUrgeErrors];
14792
+ export type PostNumerologySoulUrgeResponses = {
14793
+ /**
14794
+ * Successfully calculated Soul Urge number with detailed interpretation
14795
+ */
14796
+ 200: {
14797
+ /**
14798
+ * 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.
14799
+ */
14800
+ number: number;
14801
+ /**
14802
+ * 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.
14803
+ */
14804
+ calculation: string;
14805
+ /**
14806
+ * 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.
14807
+ */
14808
+ type: 'single' | 'master';
14809
+ /**
14810
+ * 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.
14811
+ */
14812
+ hasKarmicDebt: boolean;
14813
+ /**
14814
+ * 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.
14815
+ */
14816
+ karmicDebtNumber?: number;
14817
+ /**
14818
+ * Detailed interpretation of the Karmic Debt number when present. Only returned when hasKarmicDebt is true.
14819
+ */
14820
+ karmicDebtMeaning?: {
14821
+ /**
14822
+ * Title describing the karmic debt theme and core past-life pattern.
14823
+ */
14824
+ description: string;
14825
+ /**
14826
+ * The specific challenge from past lives that must be confronted.
14827
+ */
14828
+ challenge: string;
14829
+ /**
14830
+ * Practical guidance for resolving the karmic debt.
14831
+ */
14832
+ resolution: string;
14833
+ };
14834
+ meaning: {
14835
+ /**
14836
+ * Numerology archetype for this Soul Urge number. Reveals the deepest inner motivation, such as "The Seeker" for 7 or "The Master Teacher" for 33.
14837
+ */
14838
+ title: string;
14839
+ /**
14840
+ * 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.
14841
+ */
14842
+ keywords: Array<string>;
14843
+ /**
14844
+ * 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.
14366
14845
  */
14367
14846
  description: string;
14368
14847
  /**
@@ -14466,23 +14945,23 @@ export type PostNumerologyPersonalityResponses = {
14466
14945
  */
14467
14946
  200: {
14468
14947
  /**
14469
- * Personality number (1-9, 11, 22, 33)
14948
+ * 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.
14470
14949
  */
14471
14950
  number: number;
14472
14951
  /**
14473
- * Step-by-step calculation showing consonant values only
14952
+ * 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.
14474
14953
  */
14475
14954
  calculation: string;
14476
14955
  /**
14477
- * Number type classification
14956
+ * 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.
14478
14957
  */
14479
14958
  type: 'single' | 'master';
14480
14959
  /**
14481
- * Whether calculation passed through karmic debt number
14960
+ * 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.
14482
14961
  */
14483
14962
  hasKarmicDebt: boolean;
14484
14963
  /**
14485
- * Karmic debt number if detected (13, 14, 16, 19)
14964
+ * 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.
14486
14965
  */
14487
14966
  karmicDebtNumber?: number;
14488
14967
  /**
@@ -14616,23 +15095,23 @@ export type PostNumerologyBirthDayResponses = {
14616
15095
  */
14617
15096
  200: {
14618
15097
  /**
14619
- * Birth Day number (1-9, 11, 22)
15098
+ * 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).
14620
15099
  */
14621
15100
  number: number;
14622
15101
  /**
14623
- * Step-by-step calculation (single digit if 1-9)
15102
+ * 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.
14624
15103
  */
14625
15104
  calculation: string;
14626
15105
  /**
14627
- * Number type classification
15106
+ * 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.
14628
15107
  */
14629
15108
  type: 'single' | 'master';
14630
15109
  /**
14631
- * Whether day number has karmic debt
15110
+ * 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.
14632
15111
  */
14633
15112
  hasKarmicDebt: boolean;
14634
15113
  /**
14635
- * Karmic debt number if present (13, 14, 16, 19)
15114
+ * 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.
14636
15115
  */
14637
15116
  karmicDebtNumber?: number;
14638
15117
  /**
@@ -14692,13 +15171,29 @@ export type PostNumerologyBirthDayResponse = PostNumerologyBirthDayResponses[key
14692
15171
  export type PostNumerologyMaturityData = {
14693
15172
  body?: {
14694
15173
  /**
14695
- * Your Life Path number (1-9, 11, 22, 33)
15174
+ * Your Life Path number (1-9, 11, 22, 33). Optional if year, month, day are provided.
15175
+ */
15176
+ lifePath?: number;
15177
+ /**
15178
+ * Your Expression number (1-9, 11, 22, 33). Optional if fullName is provided.
15179
+ */
15180
+ expression?: number;
15181
+ /**
15182
+ * Full birth name to calculate Expression number automatically. Use instead of passing expression directly.
15183
+ */
15184
+ fullName?: string;
15185
+ /**
15186
+ * Birth year to calculate Life Path automatically. Use with month and day instead of passing lifePath directly.
15187
+ */
15188
+ year?: number;
15189
+ /**
15190
+ * Birth month (1-12). Required with year and day for automatic Life Path calculation.
14696
15191
  */
14697
- lifePath: number;
15192
+ month?: number;
14698
15193
  /**
14699
- * Your Expression number (1-9, 11, 22, 33)
15194
+ * Birth day (1-31). Required with year and month for automatic Life Path calculation.
14700
15195
  */
14701
- expression: number;
15196
+ day?: number;
14702
15197
  };
14703
15198
  path?: never;
14704
15199
  query?: {
@@ -14770,23 +15265,23 @@ export type PostNumerologyMaturityResponses = {
14770
15265
  */
14771
15266
  200: {
14772
15267
  /**
14773
- * Maturity number (1-9, 11, 22, 33)
15268
+ * 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.
14774
15269
  */
14775
15270
  number: number;
14776
15271
  /**
14777
- * Step-by-step calculation showing Life Path + Expression
15272
+ * 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.
14778
15273
  */
14779
15274
  calculation: string;
14780
15275
  /**
14781
- * Number type classification
15276
+ * 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.
14782
15277
  */
14783
15278
  type: 'single' | 'master';
14784
15279
  /**
14785
- * Whether calculation passed through karmic debt number
15280
+ * 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.
14786
15281
  */
14787
15282
  hasKarmicDebt: boolean;
14788
15283
  /**
14789
- * Karmic debt number if detected (13, 14, 16, 19)
15284
+ * 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.
14790
15285
  */
14791
15286
  karmicDebtNumber?: number;
14792
15287
  /**
@@ -14953,21 +15448,261 @@ export type PostNumerologyKarmicLessonsResponse = PostNumerologyKarmicLessonsRes
14953
15448
  export type PostNumerologyKarmicDebtData = {
14954
15449
  body?: {
14955
15450
  /**
14956
- * Birth year (checks Life Path)
15451
+ * Birth year (checks Life Path)
15452
+ */
15453
+ year?: number;
15454
+ /**
15455
+ * Birth month (checks Life Path)
15456
+ */
15457
+ month?: number;
15458
+ /**
15459
+ * Birth day (checks Life Path)
15460
+ */
15461
+ day?: number;
15462
+ /**
15463
+ * Full birth name (checks Expression, Soul Urge, Personality)
15464
+ */
15465
+ fullName?: string;
15466
+ };
15467
+ path?: never;
15468
+ query?: {
15469
+ /**
15470
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
15471
+ */
15472
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
15473
+ };
15474
+ url: '/numerology/karmic-debt';
15475
+ };
15476
+ export type PostNumerologyKarmicDebtErrors = {
15477
+ /**
15478
+ * Validation error (missing or invalid parameters)
15479
+ */
15480
+ 400: {
15481
+ /**
15482
+ * Human-readable error message. May change wording.
15483
+ */
15484
+ error: string;
15485
+ /**
15486
+ * Machine-readable error code. Stable identifier.
15487
+ */
15488
+ code: string;
15489
+ };
15490
+ /**
15491
+ * Invalid or missing API key
15492
+ */
15493
+ 401: {
15494
+ /**
15495
+ * Human-readable error message. May change wording.
15496
+ */
15497
+ error: string;
15498
+ /**
15499
+ * Machine-readable error code. Stable identifier.
15500
+ */
15501
+ code: string;
15502
+ };
15503
+ /**
15504
+ * Monthly rate limit exceeded
15505
+ */
15506
+ 429: {
15507
+ /**
15508
+ * Human-readable error message. May change wording.
15509
+ */
15510
+ error: string;
15511
+ /**
15512
+ * Machine-readable error code. Stable identifier.
15513
+ */
15514
+ code: string;
15515
+ };
15516
+ /**
15517
+ * Internal server error
15518
+ */
15519
+ 500: {
15520
+ /**
15521
+ * Human-readable error message. May change wording.
15522
+ */
15523
+ error: string;
15524
+ /**
15525
+ * Machine-readable error code. Stable identifier.
15526
+ */
15527
+ code: string;
15528
+ };
15529
+ };
15530
+ export type PostNumerologyKarmicDebtError = PostNumerologyKarmicDebtErrors[keyof PostNumerologyKarmicDebtErrors];
15531
+ export type PostNumerologyKarmicDebtResponses = {
15532
+ /**
15533
+ * Successfully detected karmic debt with detailed meanings
15534
+ */
15535
+ 200: {
15536
+ /**
15537
+ * Whether any karmic debt numbers were detected
15538
+ */
15539
+ hasKarmicDebt: boolean;
15540
+ /**
15541
+ * All karmic debt numbers found (13, 14, 16, 19)
15542
+ */
15543
+ debtNumbers: Array<number>;
15544
+ meanings: Array<{
15545
+ /**
15546
+ * Karmic debt number
15547
+ */
15548
+ number: number;
15549
+ /**
15550
+ * Debt title and nature
15551
+ */
15552
+ description: string;
15553
+ /**
15554
+ * Detailed explanation of past life issue and current challenges
15555
+ */
15556
+ challenge: string;
15557
+ /**
15558
+ * Guidance for resolving karmic debt in this lifetime
15559
+ */
15560
+ resolution: string;
15561
+ }>;
15562
+ /**
15563
+ * Human-readable summary. Explains what the karmic debt findings mean or provides a positive affirmation when no debt is found.
15564
+ */
15565
+ message: string;
15566
+ };
15567
+ };
15568
+ export type PostNumerologyKarmicDebtResponse = PostNumerologyKarmicDebtResponses[keyof PostNumerologyKarmicDebtResponses];
15569
+ export type PostNumerologyPersonalDayData = {
15570
+ body?: {
15571
+ /**
15572
+ * Birth month (1-12)
15573
+ */
15574
+ month: number;
15575
+ /**
15576
+ * Birth day (1-31)
15577
+ */
15578
+ day: number;
15579
+ /**
15580
+ * Target date in YYYY-MM-DD format (defaults to today)
15581
+ */
15582
+ targetDate?: string;
15583
+ };
15584
+ path?: never;
15585
+ query?: {
15586
+ /**
15587
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
15588
+ */
15589
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
15590
+ };
15591
+ url: '/numerology/personal-day';
15592
+ };
15593
+ export type PostNumerologyPersonalDayErrors = {
15594
+ /**
15595
+ * Validation error (missing or invalid parameters)
15596
+ */
15597
+ 400: {
15598
+ /**
15599
+ * Human-readable error message. May change wording.
15600
+ */
15601
+ error: string;
15602
+ /**
15603
+ * Machine-readable error code. Stable identifier.
15604
+ */
15605
+ code: string;
15606
+ };
15607
+ /**
15608
+ * Invalid or missing API key
15609
+ */
15610
+ 401: {
15611
+ /**
15612
+ * Human-readable error message. May change wording.
15613
+ */
15614
+ error: string;
15615
+ /**
15616
+ * Machine-readable error code. Stable identifier.
15617
+ */
15618
+ code: string;
15619
+ };
15620
+ /**
15621
+ * Monthly rate limit exceeded
15622
+ */
15623
+ 429: {
15624
+ /**
15625
+ * Human-readable error message. May change wording.
15626
+ */
15627
+ error: string;
15628
+ /**
15629
+ * Machine-readable error code. Stable identifier.
15630
+ */
15631
+ code: string;
15632
+ };
15633
+ /**
15634
+ * Internal server error
15635
+ */
15636
+ 500: {
15637
+ /**
15638
+ * Human-readable error message. May change wording.
15639
+ */
15640
+ error: string;
15641
+ /**
15642
+ * Machine-readable error code. Stable identifier.
15643
+ */
15644
+ code: string;
15645
+ };
15646
+ };
15647
+ export type PostNumerologyPersonalDayError = PostNumerologyPersonalDayErrors[keyof PostNumerologyPersonalDayErrors];
15648
+ export type PostNumerologyPersonalDayResponses = {
15649
+ /**
15650
+ * Successfully calculated Personal Day with forecast
15651
+ */
15652
+ 200: {
15653
+ /**
15654
+ * Personal Day number (1-9). The most granular numerology cycle, revealing the energy and theme for this specific day based on your birth data.
15655
+ */
15656
+ personalDay: number;
15657
+ /**
15658
+ * Central theme for this Personal Day. A concise label capturing the dominant energy of the day.
15659
+ */
15660
+ theme: string;
15661
+ /**
15662
+ * Actionable daily guidance. Specific advice for how to work with the energy of this Personal Day.
15663
+ */
15664
+ guidance: string;
15665
+ /**
15666
+ * The calendar date this forecast applies to in YYYY-MM-DD format.
15667
+ */
15668
+ targetDate: string;
15669
+ /**
15670
+ * The parent Personal Month number this day falls within.
15671
+ */
15672
+ personalMonth: number;
15673
+ /**
15674
+ * Theme of the parent Personal Month, providing broader context for the daily forecast.
15675
+ */
15676
+ personalMonthTheme: string;
15677
+ /**
15678
+ * The parent Personal Year number this day falls within.
15679
+ */
15680
+ personalYear: number;
15681
+ /**
15682
+ * Theme of the parent Personal Year, providing the broadest cycle context.
15683
+ */
15684
+ personalYearTheme: string;
15685
+ };
15686
+ };
15687
+ export type PostNumerologyPersonalDayResponse = PostNumerologyPersonalDayResponses[keyof PostNumerologyPersonalDayResponses];
15688
+ export type PostNumerologyPersonalMonthData = {
15689
+ body?: {
15690
+ /**
15691
+ * Birth month (1-12)
14957
15692
  */
14958
- year?: number;
15693
+ month: number;
14959
15694
  /**
14960
- * Birth month (checks Life Path)
15695
+ * Birth day (1-31)
14961
15696
  */
14962
- month?: number;
15697
+ day: number;
14963
15698
  /**
14964
- * Birth day (checks Life Path)
15699
+ * Target year for calculation (defaults to current year)
14965
15700
  */
14966
- day?: number;
15701
+ year?: number;
14967
15702
  /**
14968
- * Full birth name (checks Expression, Soul Urge, Personality)
15703
+ * Target calendar month to forecast (1-12, defaults to current month)
14969
15704
  */
14970
- fullName?: string;
15705
+ targetMonth?: number;
14971
15706
  };
14972
15707
  path?: never;
14973
15708
  query?: {
@@ -14976,9 +15711,9 @@ export type PostNumerologyKarmicDebtData = {
14976
15711
  */
14977
15712
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
14978
15713
  };
14979
- url: '/numerology/karmic-debt';
15714
+ url: '/numerology/personal-month';
14980
15715
  };
14981
- export type PostNumerologyKarmicDebtErrors = {
15716
+ export type PostNumerologyPersonalMonthErrors = {
14982
15717
  /**
14983
15718
  * Validation error (missing or invalid parameters)
14984
15719
  */
@@ -15032,41 +15767,39 @@ export type PostNumerologyKarmicDebtErrors = {
15032
15767
  code: string;
15033
15768
  };
15034
15769
  };
15035
- export type PostNumerologyKarmicDebtError = PostNumerologyKarmicDebtErrors[keyof PostNumerologyKarmicDebtErrors];
15036
- export type PostNumerologyKarmicDebtResponses = {
15770
+ export type PostNumerologyPersonalMonthError = PostNumerologyPersonalMonthErrors[keyof PostNumerologyPersonalMonthErrors];
15771
+ export type PostNumerologyPersonalMonthResponses = {
15037
15772
  /**
15038
- * Successfully detected karmic debt with detailed meanings
15773
+ * Successfully calculated Personal Month with forecast
15039
15774
  */
15040
15775
  200: {
15041
15776
  /**
15042
- * Whether any karmic debt numbers were detected
15777
+ * Personal Month number (1-9). Each month in the cycle carries specific energy and themes that guide decisions and focus.
15043
15778
  */
15044
- hasKarmicDebt: boolean;
15779
+ personalMonth: number;
15045
15780
  /**
15046
- * All karmic debt numbers found (13, 14, 16, 19)
15781
+ * Central theme for this Personal Month. A concise label capturing the dominant energy.
15047
15782
  */
15048
- debtNumbers: Array<number>;
15049
- meanings: Array<{
15050
- /**
15051
- * Karmic debt number
15052
- */
15053
- number: number;
15054
- /**
15055
- * Debt title and nature
15056
- */
15057
- description: string;
15058
- /**
15059
- * Detailed explanation of past life issue and current challenges
15060
- */
15061
- challenge: string;
15062
- /**
15063
- * Guidance for resolving karmic debt in this lifetime
15064
- */
15065
- resolution: string;
15066
- }>;
15783
+ theme: string;
15784
+ /**
15785
+ * Practical guidance for this month. Specific actions, areas of focus, and advice for making the most of this monthly energy.
15786
+ */
15787
+ focus: string;
15788
+ /**
15789
+ * The calendar month this forecast applies to (1-12).
15790
+ */
15791
+ calendarMonth: number;
15792
+ /**
15793
+ * The parent Personal Year number this month falls within.
15794
+ */
15795
+ personalYear: number;
15796
+ /**
15797
+ * Theme of the parent Personal Year, providing broader context for the monthly forecast.
15798
+ */
15799
+ personalYearTheme: string;
15067
15800
  };
15068
15801
  };
15069
- export type PostNumerologyKarmicDebtResponse = PostNumerologyKarmicDebtResponses[keyof PostNumerologyKarmicDebtResponses];
15802
+ export type PostNumerologyPersonalMonthResponse = PostNumerologyPersonalMonthResponses[keyof PostNumerologyPersonalMonthResponses];
15070
15803
  export type PostNumerologyPersonalYearData = {
15071
15804
  body?: {
15072
15805
  /**
@@ -15186,31 +15919,63 @@ export type PostNumerologyCompatibilityData = {
15186
15919
  body?: {
15187
15920
  person1: {
15188
15921
  /**
15189
- * Person 1 Life Path number (1-9, 11, 22, 33)
15922
+ * Person 1 Life Path number (1-9, 11, 22, 33). Optional if year, month, day are provided.
15923
+ */
15924
+ lifePath?: number;
15925
+ /**
15926
+ * Person 1 Expression number (1-9, 11, 22, 33). Optional if fullName is provided.
15927
+ */
15928
+ expression?: number;
15929
+ /**
15930
+ * Person 1 Soul Urge number (1-9, 11, 22, 33). Optional if fullName is provided.
15931
+ */
15932
+ soulUrge?: number;
15933
+ /**
15934
+ * Full birth name to calculate Expression and Soul Urge numbers automatically. Use instead of passing expression and soulUrge directly.
15935
+ */
15936
+ fullName?: string;
15937
+ /**
15938
+ * Birth year to calculate Life Path automatically. Use with month and day instead of passing lifePath directly.
15190
15939
  */
15191
- lifePath: number;
15940
+ year?: number;
15192
15941
  /**
15193
- * Person 1 Expression number (1-9, 11, 22, 33)
15942
+ * Birth month (1-12). Required with year and day for automatic Life Path calculation.
15194
15943
  */
15195
- expression: number;
15944
+ month?: number;
15196
15945
  /**
15197
- * Person 1 Soul Urge number (1-9, 11, 22, 33)
15946
+ * Birth day (1-31). Required with year and month for automatic Life Path calculation.
15198
15947
  */
15199
- soulUrge: number;
15948
+ day?: number;
15200
15949
  };
15201
15950
  person2: {
15202
15951
  /**
15203
- * Person 2 Life Path number (1-9, 11, 22, 33)
15952
+ * Person 2 Life Path number (1-9, 11, 22, 33). Optional if year, month, day are provided.
15953
+ */
15954
+ lifePath?: number;
15955
+ /**
15956
+ * Person 2 Expression number (1-9, 11, 22, 33). Optional if fullName is provided.
15957
+ */
15958
+ expression?: number;
15959
+ /**
15960
+ * Person 2 Soul Urge number (1-9, 11, 22, 33). Optional if fullName is provided.
15961
+ */
15962
+ soulUrge?: number;
15963
+ /**
15964
+ * Full birth name to calculate Expression and Soul Urge numbers automatically. Use instead of passing expression and soulUrge directly.
15965
+ */
15966
+ fullName?: string;
15967
+ /**
15968
+ * Birth year to calculate Life Path automatically. Use with month and day instead of passing lifePath directly.
15204
15969
  */
15205
- lifePath: number;
15970
+ year?: number;
15206
15971
  /**
15207
- * Person 2 Expression number (1-9, 11, 22, 33)
15972
+ * Birth month (1-12). Required with year and day for automatic Life Path calculation.
15208
15973
  */
15209
- expression: number;
15974
+ month?: number;
15210
15975
  /**
15211
- * Person 2 Soul Urge number (1-9, 11, 22, 33)
15976
+ * Birth day (1-31). Required with year and month for automatic Life Path calculation.
15212
15977
  */
15213
- soulUrge: number;
15978
+ day?: number;
15214
15979
  };
15215
15980
  };
15216
15981
  path?: never;
@@ -15287,7 +16052,7 @@ export type PostNumerologyCompatibilityResponses = {
15287
16052
  */
15288
16053
  overallScore: number;
15289
16054
  /**
15290
- * Compatibility rating (Poor/Fair/Good/Excellent/Exceptional)
16055
+ * Compatibility rating: Highly Compatible, Very Compatible, Compatible, Moderately Compatible, or Challenging.
15291
16056
  */
15292
16057
  rating: string;
15293
16058
  lifePath: {
@@ -15724,6 +16489,22 @@ export type PostNumerologyChartResponses = {
15724
16489
  * Birth Day number (1-31). A special talent number based on the day of the month you were born.
15725
16490
  */
15726
16491
  number: number;
16492
+ /**
16493
+ * Step-by-step calculation showing how the Birth Day number was reduced from the calendar day of birth.
16494
+ */
16495
+ calculation: string;
16496
+ /**
16497
+ * Whether this is a single digit (1-9) or master number (11, 22). Birth days of 11 and 22 are preserved as master numbers.
16498
+ */
16499
+ type: 'single' | 'master';
16500
+ /**
16501
+ * True if the birth day is a karmic debt number (13, 14, 16, 19).
16502
+ */
16503
+ hasKarmicDebt: boolean;
16504
+ /**
16505
+ * The karmic debt number if the birth day carries one (13, 14, 16, or 19).
16506
+ */
16507
+ karmicDebtNumber?: number;
15727
16508
  /**
15728
16509
  * Complete interpretation of the Birth Day number with archetype, innate talents, career advantages, and relationship dynamics.
15729
16510
  */
@@ -15826,7 +16607,7 @@ export type PostNumerologyChartResponses = {
15826
16607
  };
15827
16608
  };
15828
16609
  /**
15829
- * Additional numerology insights beyond core numbers: karmic analysis and yearly forecast.
16610
+ * Additional numerology insights: karmic analysis, yearly/monthly forecasts, pinnacles, challenges, hidden passion, subconscious self, and name letter analysis.
15830
16611
  */
15831
16612
  additionalInsights: {
15832
16613
  /**
@@ -15900,7 +16681,7 @@ export type PostNumerologyChartResponses = {
15900
16681
  }>;
15901
16682
  };
15902
16683
  /**
15903
- * Personal Year forecast. Yearly numerology cycle revealing the theme, opportunities, and challenges for the specified year.
16684
+ * Personal Year forecast with nested Personal Month. Yearly and monthly numerology cycles.
15904
16685
  */
15905
16686
  personalYear: {
15906
16687
  /**
@@ -15931,8 +16712,298 @@ export type PostNumerologyChartResponses = {
15931
16712
  * 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.
15932
16713
  */
15933
16714
  advice: string;
16715
+ /**
16716
+ * Personal Month forecast nested within the Personal Year cycle.
16717
+ */
16718
+ personalMonth: {
16719
+ /**
16720
+ * Personal Month number (1-9).
16721
+ */
16722
+ personalMonth: number;
16723
+ /**
16724
+ * Central theme for this Personal Month.
16725
+ */
16726
+ theme: string;
16727
+ /**
16728
+ * Practical focus and guidance for this month.
16729
+ */
16730
+ focus: string;
16731
+ };
16732
+ };
16733
+ /**
16734
+ * Four Pinnacle numbers representing major life phases with age ranges and meanings.
16735
+ */
16736
+ pinnacles: Array<{
16737
+ /**
16738
+ * Pinnacle position (1-4). Four major life phases.
16739
+ */
16740
+ position: number;
16741
+ /**
16742
+ * Pinnacle number (1-9, 11, 22, 33). Defines the theme of this life phase.
16743
+ */
16744
+ number: number;
16745
+ /**
16746
+ * Age when this Pinnacle phase begins.
16747
+ */
16748
+ startAge: number;
16749
+ /**
16750
+ * Age when this phase ends. Null for the 4th Pinnacle (lasts rest of life).
16751
+ */
16752
+ endAge: number;
16753
+ /**
16754
+ * Meaning and interpretation for this Pinnacle number.
16755
+ */
16756
+ meaning: {
16757
+ /**
16758
+ * Pinnacle phase title.
16759
+ */
16760
+ title: string;
16761
+ /**
16762
+ * What this Pinnacle phase brings to your life.
16763
+ */
16764
+ description: string;
16765
+ /**
16766
+ * Key opportunities during this phase.
16767
+ */
16768
+ opportunities: Array<string>;
16769
+ /**
16770
+ * Challenges to navigate during this phase.
16771
+ */
16772
+ challenges: Array<string>;
16773
+ };
16774
+ }>;
16775
+ /**
16776
+ * Four Challenge numbers representing life obstacles aligned with Pinnacle timing.
16777
+ */
16778
+ challenges: Array<{
16779
+ /**
16780
+ * Challenge position (1-4). Four life obstacle periods.
16781
+ */
16782
+ position: number;
16783
+ /**
16784
+ * Challenge number (0-8). Defines the obstacle of this period.
16785
+ */
16786
+ number: number;
16787
+ /**
16788
+ * Age when this Challenge period begins.
16789
+ */
16790
+ startAge: number;
16791
+ /**
16792
+ * Age when this period ends. Null for the 4th Challenge.
16793
+ */
16794
+ endAge: number;
16795
+ /**
16796
+ * Meaning and resolution guidance for this Challenge number.
16797
+ */
16798
+ meaning: {
16799
+ /**
16800
+ * Challenge title.
16801
+ */
16802
+ title: string;
16803
+ /**
16804
+ * What this Challenge demands you overcome.
16805
+ */
16806
+ description: string;
16807
+ /**
16808
+ * Core lesson to learn during this period.
16809
+ */
16810
+ lesson: string;
16811
+ /**
16812
+ * Actionable guidance for working through this Challenge.
16813
+ */
16814
+ howToOvercome: string;
16815
+ };
16816
+ }>;
16817
+ /**
16818
+ * Hidden Passion number. The most frequent number in the name revealing an overwhelming drive or talent.
16819
+ */
16820
+ hiddenPassion: {
16821
+ /**
16822
+ * Hidden Passion number (1-9). The most frequently occurring number in the birth name.
16823
+ */
16824
+ number: number;
16825
+ /**
16826
+ * How many times this number appears in the name.
16827
+ */
16828
+ count: number;
16829
+ /**
16830
+ * All numbers tied for highest frequency (usually one, sometimes multiple).
16831
+ */
16832
+ allPassions: Array<number>;
16833
+ /**
16834
+ * Archetype title for this Hidden Passion.
16835
+ */
16836
+ title: string;
16837
+ /**
16838
+ * What this dominant number drive reveals about latent talents and obsessions.
16839
+ */
16840
+ description: string;
16841
+ };
16842
+ /**
16843
+ * Subconscious Self number. Reveals inner confidence and emergency response style.
16844
+ */
16845
+ subconsciousSelf: {
16846
+ /**
16847
+ * Subconscious Self number (1-9). Count of unique numbers present in the name.
16848
+ */
16849
+ number: number;
16850
+ /**
16851
+ * Which numbers (1-9) are present in the birth name.
16852
+ */
16853
+ uniqueNumbers: Array<number>;
16854
+ /**
16855
+ * Archetype title for this Subconscious Self level.
16856
+ */
16857
+ title: string;
16858
+ /**
16859
+ * How you handle emergencies and unexpected challenges based on the breadth of numbers in your name.
16860
+ */
16861
+ description: string;
16862
+ };
16863
+ /**
16864
+ * Name letter analysis: Cornerstone, Capstone, and First Vowel.
16865
+ */
16866
+ nameLetters: {
16867
+ /**
16868
+ * Cornerstone letter analysis. Reveals approach to new situations.
16869
+ */
16870
+ cornerstone: {
16871
+ /**
16872
+ * First letter of the first name.
16873
+ */
16874
+ letter: string;
16875
+ /**
16876
+ * Pythagorean number value of the Cornerstone letter.
16877
+ */
16878
+ number: number;
16879
+ /**
16880
+ * How you approach new situations and initiate action.
16881
+ */
16882
+ meaning: string;
16883
+ };
16884
+ /**
16885
+ * Capstone letter analysis. Reveals completion and follow-through style.
16886
+ */
16887
+ capstone: {
16888
+ /**
16889
+ * Last letter of the first name.
16890
+ */
16891
+ letter: string;
16892
+ /**
16893
+ * Pythagorean number value of the Capstone letter.
16894
+ */
16895
+ number: number;
16896
+ /**
16897
+ * How you complete tasks and handle endings.
16898
+ */
16899
+ meaning: string;
16900
+ };
16901
+ /**
16902
+ * First Vowel analysis. Reveals instinctive emotional reactions.
16903
+ */
16904
+ firstVowel: {
16905
+ /**
16906
+ * First vowel in the full name (A, E, I, O, or U).
16907
+ */
16908
+ letter: string;
16909
+ /**
16910
+ * Instinctive emotional response and inner reaction style.
16911
+ */
16912
+ meaning: string;
16913
+ };
15934
16914
  };
15935
16915
  };
16916
+ /**
16917
+ * Birth Day profile with day-specific meaning (1-31). Unlike the core Birth Day number, this provides unique interpretation per calendar day.
16918
+ */
16919
+ birthDayProfile?: {
16920
+ /**
16921
+ * Calendar day of birth (1-31).
16922
+ */
16923
+ day: number;
16924
+ /**
16925
+ * Single digit or master number this day reduces to.
16926
+ */
16927
+ reducesTo: number;
16928
+ /**
16929
+ * Unique archetype title for this specific birth day.
16930
+ */
16931
+ title: string;
16932
+ /**
16933
+ * Personality traits specific to this birth day.
16934
+ */
16935
+ keywords: Array<string>;
16936
+ /**
16937
+ * Detailed personality profile unique to this calendar day, not just the reduced digit.
16938
+ */
16939
+ description: string;
16940
+ /**
16941
+ * Strengths specific to this birth day.
16942
+ */
16943
+ strengths: Array<string>;
16944
+ /**
16945
+ * Challenges specific to this birth day.
16946
+ */
16947
+ challenges: Array<string>;
16948
+ /**
16949
+ * Career guidance for this specific birth day.
16950
+ */
16951
+ career: string;
16952
+ /**
16953
+ * Relationship dynamics for this birth day.
16954
+ */
16955
+ relationships: string;
16956
+ };
16957
+ /**
16958
+ * Maturity number activation status based on current age.
16959
+ */
16960
+ maturityStatus: {
16961
+ /**
16962
+ * Whether the Maturity number is currently active (typically activates around age 35-40).
16963
+ */
16964
+ isActive: boolean;
16965
+ /**
16966
+ * Current age calculated from the birth year.
16967
+ */
16968
+ currentAge: number;
16969
+ /**
16970
+ * Age range when the Maturity number typically activates (35-40).
16971
+ */
16972
+ activationRange: string;
16973
+ };
16974
+ /**
16975
+ * Lucky associations based on Life Path number: colors, gemstones, day, element, planet, and compatibility.
16976
+ */
16977
+ luckyAssociations?: {
16978
+ /**
16979
+ * Lucky colors associated with the Life Path number.
16980
+ */
16981
+ colors: Array<string>;
16982
+ /**
16983
+ * Lucky gemstones aligned to the ruling planet.
16984
+ */
16985
+ gemstones: Array<string>;
16986
+ /**
16987
+ * Lucky day of the week.
16988
+ */
16989
+ day: string;
16990
+ /**
16991
+ * Classical element (Fire, Water, Earth, Air).
16992
+ */
16993
+ element: string;
16994
+ /**
16995
+ * Ruling planet for this Life Path number.
16996
+ */
16997
+ rulingPlanet: string;
16998
+ /**
16999
+ * Most compatible Life Path numbers.
17000
+ */
17001
+ compatibleNumbers: Array<number>;
17002
+ /**
17003
+ * Least compatible Life Path numbers.
17004
+ */
17005
+ incompatibleNumbers: Array<number>;
17006
+ };
15936
17007
  /**
15937
17008
  * 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.
15938
17009
  */