@roxyapi/sdk 1.2.3 → 1.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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];
@@ -6993,6 +7282,10 @@ export type GetAstrologyHoroscopeBySignDailyData = {
6993
7282
  * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
6994
7283
  */
6995
7284
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
7285
+ /**
7286
+ * Forecast date in YYYY-MM-DD format. Defaults to today. Supports future and past dates for editorial scheduling.
7287
+ */
7288
+ date?: string;
6996
7289
  };
6997
7290
  url: '/astrology/horoscope/{sign}/daily';
6998
7291
  };
@@ -7065,15 +7358,15 @@ export type GetAstrologyHoroscopeBySignDailyResponses = {
7065
7358
  */
7066
7359
  date: string;
7067
7360
  /**
7068
- * General daily overview based on current planetary transits through the sign.
7361
+ * General daily overview based on Moon house activation and planetary transits. Unique per sign based on whole-sign house positions.
7069
7362
  */
7070
7363
  overview: string;
7071
7364
  /**
7072
- * Love and relationship forecast. Influenced by Venus and Moon transits.
7365
+ * Love and relationship forecast. Based on Venus house position relative to this sign, providing unique guidance per sign.
7073
7366
  */
7074
7367
  love: string;
7075
7368
  /**
7076
- * Career and professional outlook. Influenced by Saturn, Jupiter, and Mars transits.
7369
+ * Career and professional outlook. Based on Mars house position relative to this sign, with Saturn and Jupiter influences.
7077
7370
  */
7078
7371
  career: string;
7079
7372
  /**
@@ -7097,24 +7390,45 @@ export type GetAstrologyHoroscopeBySignDailyResponses = {
7097
7390
  */
7098
7391
  luckyColor: string;
7099
7392
  /**
7100
- * Most compatible zodiac signs today, based on elemental harmony.
7393
+ * Most compatible zodiac signs today. First sign is where Venus transits, second is the Moon sign, remainder from elemental harmony.
7101
7394
  */
7102
7395
  compatibleSigns: Array<string>;
7396
+ /**
7397
+ * Active planetary transits affecting this sign today, with house activations. Each transit shows the planet, its current sign, and which house it activates for the queried sign.
7398
+ */
7399
+ activeTransits: Array<string>;
7400
+ /**
7401
+ * Current Moon sign. Changes every 2-3 days, sets the emotional tone for all signs.
7402
+ */
7403
+ moonSign: string;
7404
+ /**
7405
+ * Current lunar phase (New Moon, Waxing Crescent, First Quarter, Waxing Gibbous, Full Moon, Waning Gibbous, Last Quarter, Waning Crescent).
7406
+ */
7407
+ moonPhase: string;
7408
+ /**
7409
+ * Overall energy intensity for this sign today (1-10). Higher when more transits activate this sign directly. Useful for content widgets and visual indicators.
7410
+ */
7411
+ energyRating: number;
7103
7412
  };
7104
7413
  };
7105
7414
  export type GetAstrologyHoroscopeBySignDailyResponse = GetAstrologyHoroscopeBySignDailyResponses[keyof GetAstrologyHoroscopeBySignDailyResponses];
7106
- export type GetAstrologyHoroscopeDailyData = {
7415
+ export type GetAstrologyHoroscopeBySignWeeklyData = {
7107
7416
  body?: never;
7108
- path?: never;
7417
+ path: {
7418
+ /**
7419
+ * Zodiac sign, case-insensitive (e.g., aries, Aries, ARIES all work).
7420
+ */
7421
+ sign: 'aries' | 'taurus' | 'gemini' | 'cancer' | 'leo' | 'virgo' | 'libra' | 'scorpio' | 'sagittarius' | 'capricorn' | 'aquarius' | 'pisces';
7422
+ };
7109
7423
  query?: {
7110
7424
  /**
7111
7425
  * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
7112
7426
  */
7113
7427
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
7114
7428
  };
7115
- url: '/astrology/horoscope/daily';
7429
+ url: '/astrology/horoscope/{sign}/weekly';
7116
7430
  };
7117
- export type GetAstrologyHoroscopeDailyErrors = {
7431
+ export type GetAstrologyHoroscopeBySignWeeklyErrors = {
7118
7432
  /**
7119
7433
  * Validation error (missing or invalid parameters)
7120
7434
  */
@@ -7168,154 +7482,22 @@ export type GetAstrologyHoroscopeDailyErrors = {
7168
7482
  code: string;
7169
7483
  };
7170
7484
  };
7171
- export type GetAstrologyHoroscopeDailyError = GetAstrologyHoroscopeDailyErrors[keyof GetAstrologyHoroscopeDailyErrors];
7172
- export type GetAstrologyHoroscopeDailyResponses = {
7485
+ export type GetAstrologyHoroscopeBySignWeeklyError = GetAstrologyHoroscopeBySignWeeklyErrors[keyof GetAstrologyHoroscopeBySignWeeklyErrors];
7486
+ export type GetAstrologyHoroscopeBySignWeeklyResponses = {
7173
7487
  /**
7174
- * Daily horoscopes retrieved successfully
7488
+ * Weekly horoscope retrieved successfully
7175
7489
  */
7176
7490
  200: {
7177
7491
  /**
7178
- * Date of these horoscope forecasts (YYYY-MM-DD).
7492
+ * Zodiac sign for this horoscope.
7179
7493
  */
7180
- date: string;
7494
+ sign: string;
7181
7495
  /**
7182
- * Daily horoscope forecasts for all 12 zodiac signs (Aries through Pisces).
7496
+ * Start date of the forecast week (Monday).
7183
7497
  */
7184
- horoscopes: Array<{
7185
- /**
7186
- * Zodiac sign for this horoscope.
7187
- */
7188
- sign: string;
7189
- /**
7190
- * Date of this daily horoscope (YYYY-MM-DD).
7191
- */
7192
- date: string;
7193
- /**
7194
- * General daily overview based on current planetary transits through the sign.
7195
- */
7196
- overview: string;
7197
- /**
7198
- * Love and relationship forecast. Influenced by Venus and Moon transits.
7199
- */
7200
- love: string;
7201
- /**
7202
- * Career and professional outlook. Influenced by Saturn, Jupiter, and Mars transits.
7203
- */
7204
- career: string;
7205
- /**
7206
- * Health, energy, and wellness guidance for the day.
7207
- */
7208
- health: string;
7209
- /**
7210
- * Financial outlook and money-related guidance.
7211
- */
7212
- finance: string;
7213
- /**
7214
- * Actionable daily advice based on the dominant transit energy.
7215
- */
7216
- advice: string;
7217
- /**
7218
- * Lucky number for the day.
7219
- */
7220
- luckyNumber: number;
7221
- /**
7222
- * Lucky color for the day, derived from the sign element.
7223
- */
7224
- luckyColor: string;
7225
- /**
7226
- * Most compatible zodiac signs today, based on elemental harmony.
7227
- */
7228
- compatibleSigns: Array<string>;
7229
- }>;
7230
- };
7231
- };
7232
- export type GetAstrologyHoroscopeDailyResponse = GetAstrologyHoroscopeDailyResponses[keyof GetAstrologyHoroscopeDailyResponses];
7233
- export type GetAstrologyHoroscopeBySignWeeklyData = {
7234
- body?: never;
7235
- path: {
7498
+ week: string;
7236
7499
  /**
7237
- * Zodiac sign, case-insensitive (e.g., aries, Aries, ARIES all work).
7238
- */
7239
- sign: 'aries' | 'taurus' | 'gemini' | 'cancer' | 'leo' | 'virgo' | 'libra' | 'scorpio' | 'sagittarius' | 'capricorn' | 'aquarius' | 'pisces';
7240
- };
7241
- query?: {
7242
- /**
7243
- * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
7244
- */
7245
- lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
7246
- };
7247
- url: '/astrology/horoscope/{sign}/weekly';
7248
- };
7249
- export type GetAstrologyHoroscopeBySignWeeklyErrors = {
7250
- /**
7251
- * Validation error (missing or invalid parameters)
7252
- */
7253
- 400: {
7254
- /**
7255
- * Human-readable error message. May change wording.
7256
- */
7257
- error: string;
7258
- /**
7259
- * Machine-readable error code. Stable identifier.
7260
- */
7261
- code: string;
7262
- };
7263
- /**
7264
- * Invalid or missing API key
7265
- */
7266
- 401: {
7267
- /**
7268
- * Human-readable error message. May change wording.
7269
- */
7270
- error: string;
7271
- /**
7272
- * Machine-readable error code. Stable identifier.
7273
- */
7274
- code: string;
7275
- };
7276
- /**
7277
- * Monthly rate limit exceeded
7278
- */
7279
- 429: {
7280
- /**
7281
- * Human-readable error message. May change wording.
7282
- */
7283
- error: string;
7284
- /**
7285
- * Machine-readable error code. Stable identifier.
7286
- */
7287
- code: string;
7288
- };
7289
- /**
7290
- * Internal server error
7291
- */
7292
- 500: {
7293
- /**
7294
- * Human-readable error message. May change wording.
7295
- */
7296
- error: string;
7297
- /**
7298
- * Machine-readable error code. Stable identifier.
7299
- */
7300
- code: string;
7301
- };
7302
- };
7303
- export type GetAstrologyHoroscopeBySignWeeklyError = GetAstrologyHoroscopeBySignWeeklyErrors[keyof GetAstrologyHoroscopeBySignWeeklyErrors];
7304
- export type GetAstrologyHoroscopeBySignWeeklyResponses = {
7305
- /**
7306
- * Weekly horoscope retrieved successfully
7307
- */
7308
- 200: {
7309
- /**
7310
- * Zodiac sign for this horoscope.
7311
- */
7312
- sign: string;
7313
- /**
7314
- * Start date of the forecast week (Monday).
7315
- */
7316
- week: string;
7317
- /**
7318
- * Weekly overview highlighting the dominant planetary transits through the sign.
7500
+ * Weekly overview highlighting the dominant planetary transits through the sign.
7319
7501
  */
7320
7502
  overview: string;
7321
7503
  /**
@@ -7458,7 +7640,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
7458
7640
  */
7459
7641
  finance: string;
7460
7642
  /**
7461
- * Week-by-week breakdown of the monthly forecast.
7643
+ * Week-by-week breakdown with sign-specific focus areas based on transit house positions.
7462
7644
  */
7463
7645
  weekByWeek: Array<{
7464
7646
  /**
@@ -7466,7 +7648,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
7466
7648
  */
7467
7649
  week: number;
7468
7650
  /**
7469
- * Primary focus area for this week.
7651
+ * Primary focus area for this week, derived from planetary house activations for this sign.
7470
7652
  */
7471
7653
  focus: string;
7472
7654
  /**
@@ -7475,7 +7657,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
7475
7657
  advice: string;
7476
7658
  }>;
7477
7659
  /**
7478
- * Key astrological dates this month (lunar phases, planetary ingresses, retrogrades).
7660
+ * Key astrological dates this month with actual New Moon, Full Moon, and retrograde dates calculated from ephemeris data.
7479
7661
  */
7480
7662
  keyDates: Array<{
7481
7663
  /**
@@ -7483,7 +7665,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
7483
7665
  */
7484
7666
  date: string;
7485
7667
  /**
7486
- * Astrological event or theme active on this date.
7668
+ * Astrological event active on this date (lunar phases, retrogrades, sign ingresses).
7487
7669
  */
7488
7670
  event: string;
7489
7671
  }>;
@@ -14346,6 +14528,196 @@ export type PostNumerologyExpressionResponses = {
14346
14528
  };
14347
14529
  };
14348
14530
  export type PostNumerologyExpressionResponse = PostNumerologyExpressionResponses[keyof PostNumerologyExpressionResponses];
14531
+ export type PostNumerologyBridgeData = {
14532
+ body?: {
14533
+ /**
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.
14535
+ */
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;
14549
+ };
14550
+ path?: never;
14551
+ query?: {
14552
+ /**
14553
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
14554
+ */
14555
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
14556
+ };
14557
+ url: '/numerology/bridge';
14558
+ };
14559
+ export type PostNumerologyBridgeErrors = {
14560
+ /**
14561
+ * Validation error (missing or invalid parameters)
14562
+ */
14563
+ 400: {
14564
+ /**
14565
+ * Human-readable error message. May change wording.
14566
+ */
14567
+ error: string;
14568
+ /**
14569
+ * Machine-readable error code. Stable identifier.
14570
+ */
14571
+ code: string;
14572
+ };
14573
+ /**
14574
+ * Invalid or missing API key
14575
+ */
14576
+ 401: {
14577
+ /**
14578
+ * Human-readable error message. May change wording.
14579
+ */
14580
+ error: string;
14581
+ /**
14582
+ * Machine-readable error code. Stable identifier.
14583
+ */
14584
+ code: string;
14585
+ };
14586
+ /**
14587
+ * Monthly rate limit exceeded
14588
+ */
14589
+ 429: {
14590
+ /**
14591
+ * Human-readable error message. May change wording.
14592
+ */
14593
+ error: string;
14594
+ /**
14595
+ * Machine-readable error code. Stable identifier.
14596
+ */
14597
+ code: string;
14598
+ };
14599
+ /**
14600
+ * Internal server error
14601
+ */
14602
+ 500: {
14603
+ /**
14604
+ * Human-readable error message. May change wording.
14605
+ */
14606
+ error: string;
14607
+ /**
14608
+ * Machine-readable error code. Stable identifier.
14609
+ */
14610
+ code: string;
14611
+ };
14612
+ };
14613
+ export type PostNumerologyBridgeError = PostNumerologyBridgeErrors[keyof PostNumerologyBridgeErrors];
14614
+ export type PostNumerologyBridgeResponses = {
14615
+ /**
14616
+ * Successfully calculated three Bridge Numbers with actionable harmony guidance
14617
+ */
14618
+ 200: {
14619
+ /**
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.
14621
+ */
14622
+ lifePathExpression: {
14623
+ /**
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.
14625
+ */
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
+ };
14647
+ /**
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.
14649
+ */
14650
+ meaning: string;
14651
+ };
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: {
14656
+ /**
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.
14658
+ */
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];
14349
14721
  export type PostNumerologySoulUrgeData = {
14350
14722
  body?: {
14351
14723
  /**
@@ -14423,23 +14795,23 @@ export type PostNumerologySoulUrgeResponses = {
14423
14795
  */
14424
14796
  200: {
14425
14797
  /**
14426
- * Soul Urge number (1-9, 11, 22, 33)
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.
14427
14799
  */
14428
14800
  number: number;
14429
14801
  /**
14430
- * Step-by-step calculation showing vowel values only
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.
14431
14803
  */
14432
14804
  calculation: string;
14433
14805
  /**
14434
- * Number type classification
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.
14435
14807
  */
14436
14808
  type: 'single' | 'master';
14437
14809
  /**
14438
- * Whether calculation passed through karmic debt number
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.
14439
14811
  */
14440
14812
  hasKarmicDebt: boolean;
14441
14813
  /**
14442
- * Karmic debt number if detected (13, 14, 16, 19)
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.
14443
14815
  */
14444
14816
  karmicDebtNumber?: number;
14445
14817
  /**
@@ -14573,23 +14945,23 @@ export type PostNumerologyPersonalityResponses = {
14573
14945
  */
14574
14946
  200: {
14575
14947
  /**
14576
- * 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.
14577
14949
  */
14578
14950
  number: number;
14579
14951
  /**
14580
- * 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.
14581
14953
  */
14582
14954
  calculation: string;
14583
14955
  /**
14584
- * 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.
14585
14957
  */
14586
14958
  type: 'single' | 'master';
14587
14959
  /**
14588
- * 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.
14589
14961
  */
14590
14962
  hasKarmicDebt: boolean;
14591
14963
  /**
14592
- * 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.
14593
14965
  */
14594
14966
  karmicDebtNumber?: number;
14595
14967
  /**
@@ -14723,23 +15095,23 @@ export type PostNumerologyBirthDayResponses = {
14723
15095
  */
14724
15096
  200: {
14725
15097
  /**
14726
- * 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).
14727
15099
  */
14728
15100
  number: number;
14729
15101
  /**
14730
- * 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.
14731
15103
  */
14732
15104
  calculation: string;
14733
15105
  /**
14734
- * 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.
14735
15107
  */
14736
15108
  type: 'single' | 'master';
14737
15109
  /**
14738
- * 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.
14739
15111
  */
14740
15112
  hasKarmicDebt: boolean;
14741
15113
  /**
14742
- * 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.
14743
15115
  */
14744
15116
  karmicDebtNumber?: number;
14745
15117
  /**
@@ -14799,13 +15171,29 @@ export type PostNumerologyBirthDayResponse = PostNumerologyBirthDayResponses[key
14799
15171
  export type PostNumerologyMaturityData = {
14800
15172
  body?: {
14801
15173
  /**
14802
- * 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.
14803
15175
  */
14804
- lifePath: number;
15176
+ lifePath?: number;
14805
15177
  /**
14806
- * Your Expression number (1-9, 11, 22, 33)
15178
+ * Your Expression number (1-9, 11, 22, 33). Optional if fullName is provided.
14807
15179
  */
14808
- expression: number;
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.
15191
+ */
15192
+ month?: number;
15193
+ /**
15194
+ * Birth day (1-31). Required with year and month for automatic Life Path calculation.
15195
+ */
15196
+ day?: number;
14809
15197
  };
14810
15198
  path?: never;
14811
15199
  query?: {
@@ -14877,23 +15265,23 @@ export type PostNumerologyMaturityResponses = {
14877
15265
  */
14878
15266
  200: {
14879
15267
  /**
14880
- * 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.
14881
15269
  */
14882
15270
  number: number;
14883
15271
  /**
14884
- * 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.
14885
15273
  */
14886
15274
  calculation: string;
14887
15275
  /**
14888
- * 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.
14889
15277
  */
14890
15278
  type: 'single' | 'master';
14891
15279
  /**
14892
- * 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.
14893
15281
  */
14894
15282
  hasKarmicDebt: boolean;
14895
15283
  /**
14896
- * 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.
14897
15285
  */
14898
15286
  karmicDebtNumber?: number;
14899
15287
  /**
@@ -15171,10 +15559,14 @@ export type PostNumerologyKarmicDebtResponses = {
15171
15559
  */
15172
15560
  resolution: string;
15173
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;
15174
15566
  };
15175
15567
  };
15176
15568
  export type PostNumerologyKarmicDebtResponse = PostNumerologyKarmicDebtResponses[keyof PostNumerologyKarmicDebtResponses];
15177
- export type PostNumerologyPersonalYearData = {
15569
+ export type PostNumerologyPersonalDayData = {
15178
15570
  body?: {
15179
15571
  /**
15180
15572
  * Birth month (1-12)
@@ -15185,9 +15577,9 @@ export type PostNumerologyPersonalYearData = {
15185
15577
  */
15186
15578
  day: number;
15187
15579
  /**
15188
- * Year to calculate (defaults to current year)
15580
+ * Target date in YYYY-MM-DD format (defaults to today)
15189
15581
  */
15190
- year?: number;
15582
+ targetDate?: string;
15191
15583
  };
15192
15584
  path?: never;
15193
15585
  query?: {
@@ -15196,9 +15588,9 @@ export type PostNumerologyPersonalYearData = {
15196
15588
  */
15197
15589
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
15198
15590
  };
15199
- url: '/numerology/personal-year';
15591
+ url: '/numerology/personal-day';
15200
15592
  };
15201
- export type PostNumerologyPersonalYearErrors = {
15593
+ export type PostNumerologyPersonalDayErrors = {
15202
15594
  /**
15203
15595
  * Validation error (missing or invalid parameters)
15204
15596
  */
@@ -15252,30 +15644,264 @@ export type PostNumerologyPersonalYearErrors = {
15252
15644
  code: string;
15253
15645
  };
15254
15646
  };
15255
- export type PostNumerologyPersonalYearError = PostNumerologyPersonalYearErrors[keyof PostNumerologyPersonalYearErrors];
15256
- export type PostNumerologyPersonalYearResponses = {
15647
+ export type PostNumerologyPersonalDayError = PostNumerologyPersonalDayErrors[keyof PostNumerologyPersonalDayErrors];
15648
+ export type PostNumerologyPersonalDayResponses = {
15257
15649
  /**
15258
- * Successfully calculated Personal Year with forecast
15650
+ * Successfully calculated Personal Day with forecast
15259
15651
  */
15260
15652
  200: {
15261
15653
  /**
15262
- * Personal Year number (1-9)
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.
15263
15655
  */
15264
- personalYear: number;
15656
+ personalDay: number;
15265
15657
  /**
15266
- * Position in the 9-year cycle
15658
+ * Central theme for this Personal Day. A concise label capturing the dominant energy of the day.
15267
15659
  */
15268
- cycle: string;
15660
+ theme: string;
15269
15661
  /**
15270
- * Main theme of the year
15662
+ * Actionable daily guidance. Specific advice for how to work with the energy of this Personal Day.
15271
15663
  */
15272
- theme: string;
15664
+ guidance: string;
15273
15665
  /**
15274
- * Detailed year forecast (200-300 words)
15666
+ * The calendar date this forecast applies to in YYYY-MM-DD format.
15275
15667
  */
15276
- forecast: string;
15668
+ targetDate: string;
15277
15669
  /**
15278
- * Key opportunities in this year
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)
15692
+ */
15693
+ month: number;
15694
+ /**
15695
+ * Birth day (1-31)
15696
+ */
15697
+ day: number;
15698
+ /**
15699
+ * Target year for calculation (defaults to current year)
15700
+ */
15701
+ year?: number;
15702
+ /**
15703
+ * Target calendar month to forecast (1-12, defaults to current month)
15704
+ */
15705
+ targetMonth?: number;
15706
+ };
15707
+ path?: never;
15708
+ query?: {
15709
+ /**
15710
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
15711
+ */
15712
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
15713
+ };
15714
+ url: '/numerology/personal-month';
15715
+ };
15716
+ export type PostNumerologyPersonalMonthErrors = {
15717
+ /**
15718
+ * Validation error (missing or invalid parameters)
15719
+ */
15720
+ 400: {
15721
+ /**
15722
+ * Human-readable error message. May change wording.
15723
+ */
15724
+ error: string;
15725
+ /**
15726
+ * Machine-readable error code. Stable identifier.
15727
+ */
15728
+ code: string;
15729
+ };
15730
+ /**
15731
+ * Invalid or missing API key
15732
+ */
15733
+ 401: {
15734
+ /**
15735
+ * Human-readable error message. May change wording.
15736
+ */
15737
+ error: string;
15738
+ /**
15739
+ * Machine-readable error code. Stable identifier.
15740
+ */
15741
+ code: string;
15742
+ };
15743
+ /**
15744
+ * Monthly rate limit exceeded
15745
+ */
15746
+ 429: {
15747
+ /**
15748
+ * Human-readable error message. May change wording.
15749
+ */
15750
+ error: string;
15751
+ /**
15752
+ * Machine-readable error code. Stable identifier.
15753
+ */
15754
+ code: string;
15755
+ };
15756
+ /**
15757
+ * Internal server error
15758
+ */
15759
+ 500: {
15760
+ /**
15761
+ * Human-readable error message. May change wording.
15762
+ */
15763
+ error: string;
15764
+ /**
15765
+ * Machine-readable error code. Stable identifier.
15766
+ */
15767
+ code: string;
15768
+ };
15769
+ };
15770
+ export type PostNumerologyPersonalMonthError = PostNumerologyPersonalMonthErrors[keyof PostNumerologyPersonalMonthErrors];
15771
+ export type PostNumerologyPersonalMonthResponses = {
15772
+ /**
15773
+ * Successfully calculated Personal Month with forecast
15774
+ */
15775
+ 200: {
15776
+ /**
15777
+ * Personal Month number (1-9). Each month in the cycle carries specific energy and themes that guide decisions and focus.
15778
+ */
15779
+ personalMonth: number;
15780
+ /**
15781
+ * Central theme for this Personal Month. A concise label capturing the dominant energy.
15782
+ */
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;
15800
+ };
15801
+ };
15802
+ export type PostNumerologyPersonalMonthResponse = PostNumerologyPersonalMonthResponses[keyof PostNumerologyPersonalMonthResponses];
15803
+ export type PostNumerologyPersonalYearData = {
15804
+ body?: {
15805
+ /**
15806
+ * Birth month (1-12)
15807
+ */
15808
+ month: number;
15809
+ /**
15810
+ * Birth day (1-31)
15811
+ */
15812
+ day: number;
15813
+ /**
15814
+ * Year to calculate (defaults to current year)
15815
+ */
15816
+ year?: number;
15817
+ };
15818
+ path?: never;
15819
+ query?: {
15820
+ /**
15821
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
15822
+ */
15823
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
15824
+ };
15825
+ url: '/numerology/personal-year';
15826
+ };
15827
+ export type PostNumerologyPersonalYearErrors = {
15828
+ /**
15829
+ * Validation error (missing or invalid parameters)
15830
+ */
15831
+ 400: {
15832
+ /**
15833
+ * Human-readable error message. May change wording.
15834
+ */
15835
+ error: string;
15836
+ /**
15837
+ * Machine-readable error code. Stable identifier.
15838
+ */
15839
+ code: string;
15840
+ };
15841
+ /**
15842
+ * Invalid or missing API key
15843
+ */
15844
+ 401: {
15845
+ /**
15846
+ * Human-readable error message. May change wording.
15847
+ */
15848
+ error: string;
15849
+ /**
15850
+ * Machine-readable error code. Stable identifier.
15851
+ */
15852
+ code: string;
15853
+ };
15854
+ /**
15855
+ * Monthly rate limit exceeded
15856
+ */
15857
+ 429: {
15858
+ /**
15859
+ * Human-readable error message. May change wording.
15860
+ */
15861
+ error: string;
15862
+ /**
15863
+ * Machine-readable error code. Stable identifier.
15864
+ */
15865
+ code: string;
15866
+ };
15867
+ /**
15868
+ * Internal server error
15869
+ */
15870
+ 500: {
15871
+ /**
15872
+ * Human-readable error message. May change wording.
15873
+ */
15874
+ error: string;
15875
+ /**
15876
+ * Machine-readable error code. Stable identifier.
15877
+ */
15878
+ code: string;
15879
+ };
15880
+ };
15881
+ export type PostNumerologyPersonalYearError = PostNumerologyPersonalYearErrors[keyof PostNumerologyPersonalYearErrors];
15882
+ export type PostNumerologyPersonalYearResponses = {
15883
+ /**
15884
+ * Successfully calculated Personal Year with forecast
15885
+ */
15886
+ 200: {
15887
+ /**
15888
+ * Personal Year number (1-9)
15889
+ */
15890
+ personalYear: number;
15891
+ /**
15892
+ * Position in the 9-year cycle
15893
+ */
15894
+ cycle: string;
15895
+ /**
15896
+ * Main theme of the year
15897
+ */
15898
+ theme: string;
15899
+ /**
15900
+ * Detailed year forecast (200-300 words)
15901
+ */
15902
+ forecast: string;
15903
+ /**
15904
+ * Key opportunities in this year
15279
15905
  */
15280
15906
  opportunities: Array<string>;
15281
15907
  /**
@@ -15293,31 +15919,63 @@ export type PostNumerologyCompatibilityData = {
15293
15919
  body?: {
15294
15920
  person1: {
15295
15921
  /**
15296
- * 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.
15297
15935
  */
15298
- lifePath: number;
15936
+ fullName?: string;
15299
15937
  /**
15300
- * Person 1 Expression number (1-9, 11, 22, 33)
15938
+ * Birth year to calculate Life Path automatically. Use with month and day instead of passing lifePath directly.
15301
15939
  */
15302
- expression: number;
15940
+ year?: number;
15303
15941
  /**
15304
- * Person 1 Soul Urge number (1-9, 11, 22, 33)
15942
+ * Birth month (1-12). Required with year and day for automatic Life Path calculation.
15305
15943
  */
15306
- soulUrge: number;
15944
+ month?: number;
15945
+ /**
15946
+ * Birth day (1-31). Required with year and month for automatic Life Path calculation.
15947
+ */
15948
+ day?: number;
15307
15949
  };
15308
15950
  person2: {
15309
15951
  /**
15310
- * 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.
15311
15961
  */
15312
- lifePath: number;
15962
+ soulUrge?: number;
15313
15963
  /**
15314
- * Person 2 Expression number (1-9, 11, 22, 33)
15964
+ * Full birth name to calculate Expression and Soul Urge numbers automatically. Use instead of passing expression and soulUrge directly.
15315
15965
  */
15316
- expression: number;
15966
+ fullName?: string;
15317
15967
  /**
15318
- * Person 2 Soul Urge number (1-9, 11, 22, 33)
15968
+ * Birth year to calculate Life Path automatically. Use with month and day instead of passing lifePath directly.
15319
15969
  */
15320
- soulUrge: number;
15970
+ year?: number;
15971
+ /**
15972
+ * Birth month (1-12). Required with year and day for automatic Life Path calculation.
15973
+ */
15974
+ month?: number;
15975
+ /**
15976
+ * Birth day (1-31). Required with year and month for automatic Life Path calculation.
15977
+ */
15978
+ day?: number;
15321
15979
  };
15322
15980
  };
15323
15981
  path?: never;
@@ -15394,7 +16052,7 @@ export type PostNumerologyCompatibilityResponses = {
15394
16052
  */
15395
16053
  overallScore: number;
15396
16054
  /**
15397
- * Compatibility rating (Poor/Fair/Good/Excellent/Exceptional)
16055
+ * Compatibility rating: Highly Compatible, Very Compatible, Compatible, Moderately Compatible, or Challenging.
15398
16056
  */
15399
16057
  rating: string;
15400
16058
  lifePath: {
@@ -15831,6 +16489,22 @@ export type PostNumerologyChartResponses = {
15831
16489
  * Birth Day number (1-31). A special talent number based on the day of the month you were born.
15832
16490
  */
15833
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;
15834
16508
  /**
15835
16509
  * Complete interpretation of the Birth Day number with archetype, innate talents, career advantages, and relationship dynamics.
15836
16510
  */
@@ -15933,7 +16607,7 @@ export type PostNumerologyChartResponses = {
15933
16607
  };
15934
16608
  };
15935
16609
  /**
15936
- * 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.
15937
16611
  */
15938
16612
  additionalInsights: {
15939
16613
  /**
@@ -16007,7 +16681,7 @@ export type PostNumerologyChartResponses = {
16007
16681
  }>;
16008
16682
  };
16009
16683
  /**
16010
- * 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.
16011
16685
  */
16012
16686
  personalYear: {
16013
16687
  /**
@@ -16038,8 +16712,298 @@ export type PostNumerologyChartResponses = {
16038
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.
16039
16713
  */
16040
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
+ };
16041
16914
  };
16042
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
+ };
16043
17007
  /**
16044
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.
16045
17009
  */