@roxyapi/sdk 1.2.33 → 1.2.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/types.gen.ts CHANGED
@@ -25565,19 +25565,19 @@ export type PostForecastTimelineResponses = {
25565
25565
  */
25566
25566
  datetime: string;
25567
25567
  /**
25568
- * Forecast domain. western covers transit aspects, sign ingresses, and retrograde stations. vedic covers Vimshottari mahadasha and antardasha boundaries. biorhythm covers critical days. A stable machine value, never localized, so consumers can branch on it under any language.
25568
+ * Forecast domain. western covers transit aspects, sign ingresses, retrograde stations, eclipses, and new and full moons. vedic covers Vimshottari mahadasha, antardasha, and pratyantardasha boundaries. biorhythm covers critical days. A stable machine value, never localized, so consumers can branch on it under any language.
25569
25569
  */
25570
25570
  domain: 'western' | 'vedic' | 'biorhythm';
25571
25571
  /**
25572
- * Event kind. transit-aspect, sign-ingress, retrograde-station, and eclipse are western, dasha-change is vedic Vimshottari, critical-day is biorhythm. A stable machine value, never localized, so consumers can branch on it under any language.
25572
+ * Event kind. transit-aspect, sign-ingress, retrograde-station, eclipse, and lunar-phase are western, dasha-change is vedic Vimshottari, critical-day is biorhythm. A stable machine value, never localized, so consumers can branch on it under any language.
25573
25573
  */
25574
- type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'dasha-change' | 'critical-day';
25574
+ type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'lunar-phase' | 'dasha-change' | 'critical-day';
25575
25575
  /**
25576
- * Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse or Moon for a lunar eclipse, a mahadasha or antardasha label for dasha changes, or the critical cycle for biorhythm days.
25576
+ * Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse, Moon for a lunar eclipse or a new or full moon, a mahadasha, antardasha, or pratyantardasha label for dasha changes, or the critical cycle for biorhythm days.
25577
25577
  */
25578
25578
  body: string;
25579
25579
  /**
25580
- * For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered. Absent for other event types.
25580
+ * For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered, and for a lunar-phase, the zodiac sign of the New or Full Moon. Absent for other event types.
25581
25581
  */
25582
25582
  target?: string;
25583
25583
  /**
@@ -25600,6 +25600,10 @@ export type PostForecastTimelineResponses = {
25600
25600
  * For a lunar eclipse, the peak fraction from 0 to 1 of the Moon disc covered by Earth umbra. 1 for a total lunar eclipse, between 0 and 1 for a partial, 0 for a penumbral. Absent for solar eclipses and other event types.
25601
25601
  */
25602
25602
  obscuration?: number;
25603
+ /**
25604
+ * For a lunar-phase event, which syzygy it is: new-moon (Sun-Moon conjunction) or full-moon (Sun-Moon opposition). The intermediate quarters are not emitted. A stable machine value, never localized. Absent for other event types.
25605
+ */
25606
+ phase?: 'new-moon' | 'full-moon';
25603
25607
  /**
25604
25608
  * Plain-language summary of the event, suitable for direct display. The only localized field: when lang is set this sentence, and the body, target, and aspect names within it, render in the requested language while the structured fields stay English.
25605
25609
  */
@@ -25770,7 +25774,7 @@ export type PostForecastTransitsError = PostForecastTransitsErrors[keyof PostFor
25770
25774
 
25771
25775
  export type PostForecastTransitsResponses = {
25772
25776
  /**
25773
- * Time-ordered western transit events: aspects, ingresses, and stations
25777
+ * Time-ordered western forecast events: aspects, ingresses, stations, eclipses, and moon phases
25774
25778
  */
25775
25779
  200: {
25776
25780
  /**
@@ -25823,19 +25827,19 @@ export type PostForecastTransitsResponses = {
25823
25827
  */
25824
25828
  datetime: string;
25825
25829
  /**
25826
- * Forecast domain. western covers transit aspects, sign ingresses, and retrograde stations. vedic covers Vimshottari mahadasha and antardasha boundaries. biorhythm covers critical days. A stable machine value, never localized, so consumers can branch on it under any language.
25830
+ * Forecast domain. western covers transit aspects, sign ingresses, retrograde stations, eclipses, and new and full moons. vedic covers Vimshottari mahadasha, antardasha, and pratyantardasha boundaries. biorhythm covers critical days. A stable machine value, never localized, so consumers can branch on it under any language.
25827
25831
  */
25828
25832
  domain: 'western' | 'vedic' | 'biorhythm';
25829
25833
  /**
25830
- * Event kind. transit-aspect, sign-ingress, retrograde-station, and eclipse are western, dasha-change is vedic Vimshottari, critical-day is biorhythm. A stable machine value, never localized, so consumers can branch on it under any language.
25834
+ * Event kind. transit-aspect, sign-ingress, retrograde-station, eclipse, and lunar-phase are western, dasha-change is vedic Vimshottari, critical-day is biorhythm. A stable machine value, never localized, so consumers can branch on it under any language.
25831
25835
  */
25832
- type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'dasha-change' | 'critical-day';
25836
+ type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'lunar-phase' | 'dasha-change' | 'critical-day';
25833
25837
  /**
25834
- * Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse or Moon for a lunar eclipse, a mahadasha or antardasha label for dasha changes, or the critical cycle for biorhythm days.
25838
+ * Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse, Moon for a lunar eclipse or a new or full moon, a mahadasha, antardasha, or pratyantardasha label for dasha changes, or the critical cycle for biorhythm days.
25835
25839
  */
25836
25840
  body: string;
25837
25841
  /**
25838
- * For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered. Absent for other event types.
25842
+ * For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered, and for a lunar-phase, the zodiac sign of the New or Full Moon. Absent for other event types.
25839
25843
  */
25840
25844
  target?: string;
25841
25845
  /**
@@ -25858,6 +25862,10 @@ export type PostForecastTransitsResponses = {
25858
25862
  * For a lunar eclipse, the peak fraction from 0 to 1 of the Moon disc covered by Earth umbra. 1 for a total lunar eclipse, between 0 and 1 for a partial, 0 for a penumbral. Absent for solar eclipses and other event types.
25859
25863
  */
25860
25864
  obscuration?: number;
25865
+ /**
25866
+ * For a lunar-phase event, which syzygy it is: new-moon (Sun-Moon conjunction) or full-moon (Sun-Moon opposition). The intermediate quarters are not emitted. A stable machine value, never localized. Absent for other event types.
25867
+ */
25868
+ phase?: 'new-moon' | 'full-moon';
25861
25869
  /**
25862
25870
  * Plain-language summary of the event, suitable for direct display. The only localized field: when lang is set this sentence, and the body, target, and aspect names within it, render in the requested language while the structured fields stay English.
25863
25871
  */
@@ -26102,19 +26110,19 @@ export type PostForecastSignificantDatesResponses = {
26102
26110
  */
26103
26111
  datetime: string;
26104
26112
  /**
26105
- * Forecast domain. western covers transit aspects, sign ingresses, and retrograde stations. vedic covers Vimshottari mahadasha and antardasha boundaries. biorhythm covers critical days. A stable machine value, never localized, so consumers can branch on it under any language.
26113
+ * Forecast domain. western covers transit aspects, sign ingresses, retrograde stations, eclipses, and new and full moons. vedic covers Vimshottari mahadasha, antardasha, and pratyantardasha boundaries. biorhythm covers critical days. A stable machine value, never localized, so consumers can branch on it under any language.
26106
26114
  */
26107
26115
  domain: 'western' | 'vedic' | 'biorhythm';
26108
26116
  /**
26109
- * Event kind. transit-aspect, sign-ingress, retrograde-station, and eclipse are western, dasha-change is vedic Vimshottari, critical-day is biorhythm. A stable machine value, never localized, so consumers can branch on it under any language.
26117
+ * Event kind. transit-aspect, sign-ingress, retrograde-station, eclipse, and lunar-phase are western, dasha-change is vedic Vimshottari, critical-day is biorhythm. A stable machine value, never localized, so consumers can branch on it under any language.
26110
26118
  */
26111
- type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'dasha-change' | 'critical-day';
26119
+ type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'lunar-phase' | 'dasha-change' | 'critical-day';
26112
26120
  /**
26113
- * Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse or Moon for a lunar eclipse, a mahadasha or antardasha label for dasha changes, or the critical cycle for biorhythm days.
26121
+ * Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse, Moon for a lunar eclipse or a new or full moon, a mahadasha, antardasha, or pratyantardasha label for dasha changes, or the critical cycle for biorhythm days.
26114
26122
  */
26115
26123
  body: string;
26116
26124
  /**
26117
- * For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered. Absent for other event types.
26125
+ * For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered, and for a lunar-phase, the zodiac sign of the New or Full Moon. Absent for other event types.
26118
26126
  */
26119
26127
  target?: string;
26120
26128
  /**
@@ -26137,6 +26145,10 @@ export type PostForecastSignificantDatesResponses = {
26137
26145
  * For a lunar eclipse, the peak fraction from 0 to 1 of the Moon disc covered by Earth umbra. 1 for a total lunar eclipse, between 0 and 1 for a partial, 0 for a penumbral. Absent for solar eclipses and other event types.
26138
26146
  */
26139
26147
  obscuration?: number;
26148
+ /**
26149
+ * For a lunar-phase event, which syzygy it is: new-moon (Sun-Moon conjunction) or full-moon (Sun-Moon opposition). The intermediate quarters are not emitted. A stable machine value, never localized. Absent for other event types.
26150
+ */
26151
+ phase?: 'new-moon' | 'full-moon';
26140
26152
  /**
26141
26153
  * Plain-language summary of the event, suitable for direct display. The only localized field: when lang is set this sentence, and the body, target, and aspect names within it, render in the requested language while the structured fields stay English.
26142
26154
  */
@@ -26400,6 +26412,7 @@ export type PostForecastDigestResponses = {
26400
26412
  'sign-ingress'?: number;
26401
26413
  'retrograde-station'?: number;
26402
26414
  eclipse?: number;
26415
+ 'lunar-phase'?: number;
26403
26416
  'dasha-change'?: number;
26404
26417
  'critical-day'?: number;
26405
26418
  };
@@ -26416,19 +26429,19 @@ export type PostForecastDigestResponses = {
26416
26429
  */
26417
26430
  datetime: string;
26418
26431
  /**
26419
- * Forecast domain. western covers transit aspects, sign ingresses, and retrograde stations. vedic covers Vimshottari mahadasha and antardasha boundaries. biorhythm covers critical days. A stable machine value, never localized, so consumers can branch on it under any language.
26432
+ * Forecast domain. western covers transit aspects, sign ingresses, retrograde stations, eclipses, and new and full moons. vedic covers Vimshottari mahadasha, antardasha, and pratyantardasha boundaries. biorhythm covers critical days. A stable machine value, never localized, so consumers can branch on it under any language.
26420
26433
  */
26421
26434
  domain: 'western' | 'vedic' | 'biorhythm';
26422
26435
  /**
26423
- * Event kind. transit-aspect, sign-ingress, retrograde-station, and eclipse are western, dasha-change is vedic Vimshottari, critical-day is biorhythm. A stable machine value, never localized, so consumers can branch on it under any language.
26436
+ * Event kind. transit-aspect, sign-ingress, retrograde-station, eclipse, and lunar-phase are western, dasha-change is vedic Vimshottari, critical-day is biorhythm. A stable machine value, never localized, so consumers can branch on it under any language.
26424
26437
  */
26425
- type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'dasha-change' | 'critical-day';
26438
+ type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'eclipse' | 'lunar-phase' | 'dasha-change' | 'critical-day';
26426
26439
  /**
26427
- * Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse or Moon for a lunar eclipse, a mahadasha or antardasha label for dasha changes, or the critical cycle for biorhythm days.
26440
+ * Primary subject of the event. A transiting planet for western events, Sun for a solar eclipse, Moon for a lunar eclipse or a new or full moon, a mahadasha, antardasha, or pratyantardasha label for dasha changes, or the critical cycle for biorhythm days.
26428
26441
  */
26429
26442
  body: string;
26430
26443
  /**
26431
- * For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered. Absent for other event types.
26444
+ * For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered, and for a lunar-phase, the zodiac sign of the New or Full Moon. Absent for other event types.
26432
26445
  */
26433
26446
  target?: string;
26434
26447
  /**
@@ -26451,6 +26464,10 @@ export type PostForecastDigestResponses = {
26451
26464
  * For a lunar eclipse, the peak fraction from 0 to 1 of the Moon disc covered by Earth umbra. 1 for a total lunar eclipse, between 0 and 1 for a partial, 0 for a penumbral. Absent for solar eclipses and other event types.
26452
26465
  */
26453
26466
  obscuration?: number;
26467
+ /**
26468
+ * For a lunar-phase event, which syzygy it is: new-moon (Sun-Moon conjunction) or full-moon (Sun-Moon opposition). The intermediate quarters are not emitted. A stable machine value, never localized. Absent for other event types.
26469
+ */
26470
+ phase?: 'new-moon' | 'full-moon';
26454
26471
  /**
26455
26472
  * Plain-language summary of the event, suitable for direct display. The only localized field: when lang is set this sentence, and the body, target, and aspect names within it, render in the requested language while the structured fields stay English.
26456
26473
  */
@@ -32334,9 +32351,9 @@ export type GetAngelNumbersNumbersData = {
32334
32351
  */
32335
32352
  offset?: number;
32336
32353
  /**
32337
- * Filter results by angel number pattern type. "repeating" returns numbers like 111, 444, 7777. "sequential" returns patterns like 1234. "mirror" returns palindrome patterns like 1212. "master" returns 11, 22, 33. "root" returns single digits 0-9.
32354
+ * Filter results by angel number pattern type. "repeating" returns numbers like 111, 444, 7777. "sequential" returns patterns like 1234. "mirror" returns palindrome or alternating patterns like 1212, 717. "master" returns 11, 22, 33. "root" returns single digits 0-9. "compound" returns mixed sequences with no pure pattern like 911, 1122.
32338
32355
  */
32339
- type?: 'repeating' | 'sequential' | 'mirror' | 'master' | 'root';
32356
+ type?: 'repeating' | 'sequential' | 'mirror' | 'master' | 'root' | 'compound';
32340
32357
  };
32341
32358
  url: '/angel-numbers/numbers';
32342
32359
  };
@@ -32451,7 +32468,7 @@ export type GetAngelNumbersNumbersResponses = {
32451
32468
  */
32452
32469
  200: {
32453
32470
  /**
32454
- * Total number of angel numbers matching the applied filters. 43 for the full set, fewer when filtered by type.
32471
+ * Total number of angel numbers matching the applied filters. The full catalog size when unfiltered, fewer when filtered by type.
32455
32472
  */
32456
32473
  total: number;
32457
32474
  /**
@@ -32479,7 +32496,7 @@ export type GetAngelNumbersNumbersResponses = {
32479
32496
  */
32480
32497
  coreMessage: string;
32481
32498
  /**
32482
- * Pattern classification of the angel number. "repeating" means all digits are the same (111, 4444). "sequential" means consecutive digits (1234). "mirror" means palindrome or alternating pattern (1212, 1221). "master" means numerology master number (11, 22, 33). "root" means single digit (0-9).
32499
+ * Pattern classification of the angel number. "repeating" means all digits are the same (111, 4444). "sequential" means consecutive digits (1234). "mirror" means palindrome or alternating pattern (1212, 1221). "master" means numerology master number (11, 22, 33). "root" means single digit (0-9). "compound" means a mixed sequence with no pure pattern (911, 1122).
32483
32500
  */
32484
32501
  type: string;
32485
32502
  /**
@@ -32652,7 +32669,7 @@ export type GetAngelNumbersNumbersByNumberResponses = {
32652
32669
  */
32653
32670
  coreMessage: string;
32654
32671
  /**
32655
- * Pattern classification of the angel number. "repeating" means all digits are the same (111, 4444). "sequential" means consecutive digits (1234). "mirror" means palindrome or alternating pattern (1212, 1221). "master" means numerology master number (11, 22, 33). "root" means single digit (0-9).
32672
+ * Pattern classification of the angel number. "repeating" means all digits are the same (111, 4444). "sequential" means consecutive digits (1234). "mirror" means palindrome or alternating pattern (1212, 1221). "master" means numerology master number (11, 22, 33). "root" means single digit (0-9). "compound" means a mixed sequence with no pure pattern (911, 1122).
32656
32673
  */
32657
32674
  type: string;
32658
32675
  /**
@@ -32677,14 +32694,26 @@ export type GetAngelNumbersNumbersByNumberResponses = {
32677
32694
  */
32678
32695
  love: string;
32679
32696
  /**
32680
- * Career and financial guidance including professional opportunities, money mindset, and practical advice for work life aligned with this angel number energy.
32697
+ * Career and vocation guidance: professional opportunities, calling, and practical work advice aligned with this angel number energy. Money and finances are returned separately in the money field.
32681
32698
  */
32682
32699
  career: string;
32700
+ /**
32701
+ * Money, finances, and material abundance guidance, kept distinct from career and vocation. Covers income, spending, debt, and prosperity mindset for this angel number.
32702
+ */
32703
+ money: string;
32683
32704
  /**
32684
32705
  * Twin flame connection interpretation covering union, separation, and spiritual growth within the twin flame journey.
32685
32706
  */
32686
32707
  twinFlame: string;
32687
32708
  };
32709
+ /**
32710
+ * Biblical and religious perspective on the sequence, framed honestly. States plainly when a number is not a scriptural concept rather than inventing scripture.
32711
+ */
32712
+ biblical: string;
32713
+ /**
32714
+ * Shadow or cautionary reading: the misuse, over-reliance, or imbalance this sequence can signal. Complements the energy classification.
32715
+ */
32716
+ shadow: string;
32688
32717
  /**
32689
32718
  * Positive affirmation aligned with this angel number. Can be used for daily affirmation features, meditation guidance, or spiritual journal prompts.
32690
32719
  */
@@ -32710,6 +32739,10 @@ export type GetAngelNumbersLookupData = {
32710
32739
  * Number sequence to analyze (1-8 digits). Can be any number the user has encountered: clock times (1111), addresses (717), receipts (888), license plates (4444), or any repeating pattern.
32711
32740
  */
32712
32741
  number: string;
32742
+ /**
32743
+ * Where the number was seen. When supplied, the response adds a contextNote tailoring the reading to the sighting: clock (a glanced time), receipt (a purchase), license-plate (in transit), phone (a call or notification), address (a home or place), price (a total or amount).
32744
+ */
32745
+ context?: 'clock' | 'receipt' | 'license-plate' | 'phone' | 'address' | 'price';
32713
32746
  };
32714
32747
  url: '/angel-numbers/lookup';
32715
32748
  };
@@ -32828,7 +32861,7 @@ export type GetAngelNumbersLookupResponses = {
32828
32861
  */
32829
32862
  number: string;
32830
32863
  /**
32831
- * Pattern classification detected for this number. "repeating" means all same digits. "sequential" means consecutive ascending or descending. "mirror" means palindrome or alternating pattern. "master" means numerology master number. "root" means single digit.
32864
+ * Pattern classification detected for this number. "repeating" means all same digits. "sequential" means consecutive ascending or descending. "mirror" means palindrome or alternating pattern. "master" means numerology master number. "root" means single digit. "compound" means a multi-digit sequence with no pure pattern (e.g. 911, 1122).
32832
32865
  */
32833
32866
  type: string;
32834
32867
  /**
@@ -32852,7 +32885,7 @@ export type GetAngelNumbersLookupResponses = {
32852
32885
  */
32853
32886
  isRepeating: boolean;
32854
32887
  /**
32855
- * Full angel number meaning if this number exists in the database (43 known numbers). Null if the number is not in the database, in which case use the analysis fields (type, digitRoot) for interpretation.
32888
+ * Full angel number meaning if this number exists in the curated database (75+ known sequences). Null if the number is not in the database, in which case use the analysis fields (type, digitRoot) and the digitRootMeaning fallback for interpretation.
32856
32889
  */
32857
32890
  knownMeaning: {
32858
32891
  /**
@@ -32872,7 +32905,7 @@ export type GetAngelNumbersLookupResponses = {
32872
32905
  */
32873
32906
  keywords: Array<string>;
32874
32907
  /**
32875
- * Detailed interpretations across four life areas: spiritual, love, career, and twin flame.
32908
+ * Detailed interpretations across life areas.
32876
32909
  */
32877
32910
  meaning: {
32878
32911
  /**
@@ -32884,14 +32917,26 @@ export type GetAngelNumbersLookupResponses = {
32884
32917
  */
32885
32918
  love: string;
32886
32919
  /**
32887
- * Career and financial guidance including professional opportunities and money mindset.
32920
+ * Career and vocation guidance. Money and finances are returned separately in the money field.
32888
32921
  */
32889
32922
  career: string;
32923
+ /**
32924
+ * Money, finances, and material abundance guidance, distinct from career.
32925
+ */
32926
+ money: string;
32890
32927
  /**
32891
32928
  * Twin flame connection interpretation covering union, separation, and spiritual growth.
32892
32929
  */
32893
32930
  twinFlame: string;
32894
32931
  };
32932
+ /**
32933
+ * Biblical and religious perspective, framed honestly.
32934
+ */
32935
+ biblical: string;
32936
+ /**
32937
+ * Shadow or cautionary reading for this number.
32938
+ */
32939
+ shadow: string;
32895
32940
  /**
32896
32941
  * Positive affirmation for this number.
32897
32942
  */
@@ -32917,7 +32962,29 @@ export type GetAngelNumbersLookupResponses = {
32917
32962
  * Core message of the foundational root digit.
32918
32963
  */
32919
32964
  coreMessage: string;
32965
+ /**
32966
+ * Full life-area interpretation of the underlying root digit. For an unknown sequence this is the substantive reading to display, so a synchronicity app never dead-ends on an arbitrary number.
32967
+ */
32968
+ meaning: {
32969
+ spiritual: string;
32970
+ love: string;
32971
+ career: string;
32972
+ money: string;
32973
+ twinFlame: string;
32974
+ };
32975
+ /**
32976
+ * Keywords for the root digit.
32977
+ */
32978
+ keywords: Array<string>;
32979
+ /**
32980
+ * Affirmation for the root digit.
32981
+ */
32982
+ affirmation: string;
32920
32983
  };
32984
+ /**
32985
+ * Present only when the context query parameter is supplied. A short reading layered on top of the meaning that accounts for WHERE the number was seen (clock, receipt, license plate, phone, address, price), since the place of a sighting shifts its emphasis.
32986
+ */
32987
+ contextNote?: string;
32921
32988
  };
32922
32989
  };
32923
32990
 
@@ -33086,7 +33153,7 @@ export type PostAngelNumbersDailyResponses = {
33086
33153
  */
33087
33154
  energy: string;
33088
33155
  /**
33089
- * Detailed interpretations across four life areas for the daily angel number.
33156
+ * Detailed interpretations across life areas for the daily angel number.
33090
33157
  */
33091
33158
  meaning: {
33092
33159
  /**
@@ -33098,14 +33165,26 @@ export type PostAngelNumbersDailyResponses = {
33098
33165
  */
33099
33166
  love: string;
33100
33167
  /**
33101
- * Career and financial guidance including professional opportunities, money mindset, and practical advice for work life.
33168
+ * Career and vocation guidance: professional opportunities, calling, and practical work advice. Money and finances are returned separately in the money field.
33102
33169
  */
33103
33170
  career: string;
33171
+ /**
33172
+ * Money, finances, and material abundance guidance, kept distinct from career and vocation.
33173
+ */
33174
+ money: string;
33104
33175
  /**
33105
33176
  * Twin flame connection interpretation covering union, separation, and spiritual growth within the twin flame journey.
33106
33177
  */
33107
33178
  twinFlame: string;
33108
33179
  };
33180
+ /**
33181
+ * Biblical and religious perspective on the daily sequence, framed honestly.
33182
+ */
33183
+ biblical: string;
33184
+ /**
33185
+ * Shadow or cautionary reading for the daily sequence. Complements the energy classification.
33186
+ */
33187
+ shadow: string;
33109
33188
  /**
33110
33189
  * Five to eight keywords capturing the spiritual themes and energy of the daily angel number. Useful for search, filtering, and content generation.
33111
33190
  */
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '1.2.33';
1
+ export const VERSION = '1.2.35';