@roxyapi/sdk 1.2.36 → 1.2.38

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.
@@ -12109,40 +12109,40 @@ export type PostVedicAstrologyPanchangDetailedResponses = {
12109
12109
  unfavorableNakshatras: Array<string>;
12110
12110
  };
12111
12111
  /**
12112
- * Panchaka, inauspicious period when Moon transits nakshatras 23-27. Five types based on the specific nakshatra. Includes timing when active. Avoid major activities during Panchaka.
12112
+ * Panchaka, the inauspicious ~5-day window while the Moon transits the last five nakshatras (Dhanishta 3rd pada through Revati, 300 to 360 degrees sidereal). The dosha type depends on the weekday it begins; startsAt and endsAt report the period in force at sunrise or beginning later this day. Avoid major activities during Panchaka.
12113
12113
  */
12114
12114
  panchaka: {
12115
12115
  /**
12116
- * Whether Panchaka is currently active. Panchaka occurs when Moon transits through the last 5 nakshatras (Dhanishta to Revati).
12116
+ * Whether Panchaka is in force at sunrise, the panchang day reference. Can be false while startsAt and endsAt are populated when Panchaka begins later in the day.
12117
12117
  */
12118
12118
  active: boolean;
12119
12119
  /**
12120
- * Panchaka type when active: Mrityu (death-related), Agni (fire-related), Raja (government-related), Chora (theft-related), or Roga (disease-related). Null when Panchaka is not active.
12120
+ * Panchaka dosha, set by the weekday the period BEGINS (not the nakshatra): Roga (Sunday, disease), Raja (Monday, government), Agni (Tuesday, fire), Chora (Friday, theft), Mrityu (Saturday, death). Null when Panchaka begins on Wednesday or Thursday (no dosha) or when no Panchaka touches this date.
12121
12121
  */
12122
12122
  type: string;
12123
12123
  /**
12124
- * When the current Panchaka period started (Moon entered Dhanishta nakshatra). Null when not active. In requested timezone.
12124
+ * When the Panchaka period starts (Moon enters 300 degrees, Dhanishta 3rd pada). May predate this date when Panchaka is already running. Null when no Panchaka is in force or begins on this date. In requested timezone.
12125
12125
  */
12126
12126
  startsAt: string;
12127
12127
  /**
12128
- * When the current Panchaka period ends (Moon exits Revati nakshatra). Null when not active. In requested timezone.
12128
+ * When the Panchaka period ends (Moon exits Revati at 360 degrees), about five days after it starts. Null when no Panchaka. In requested timezone.
12129
12129
  */
12130
12130
  endsAt: string;
12131
12131
  };
12132
12132
  /**
12133
- * Bhadra, occurs during Vishti Karana period. One of the 7 movable karanas, Vishti (also called Bhadra) is avoided for all auspicious activities. Includes timing when active.
12133
+ * Bhadra (Vishti Karana), the 7th movable karana, avoided for all auspicious activities. Bhadra recurs roughly every 3 to 5 days and lasts about half a tithi, so most occurrences begin after sunrise rather than at it. startsAt and endsAt report the Bhadra beginning on this date regardless of whether it is active at sunrise.
12134
12134
  */
12135
12135
  bhadra: {
12136
12136
  /**
12137
- * Whether Bhadra (Vishti Karana) is currently active. Bhadra is considered inauspicious for starting new ventures.
12137
+ * Whether Bhadra (Vishti Karana) is in force at sunrise, the panchang day reference moment. Can be false while startsAt and endsAt are populated when Bhadra begins later in the day.
12138
12138
  */
12139
12139
  active: boolean;
12140
12140
  /**
12141
- * When the current Bhadra (Vishti) period started. Null when not active. In requested timezone.
12141
+ * When the Bhadra (Vishti) period that begins on this date starts. Null when no Bhadra begins on this date. In requested timezone.
12142
12142
  */
12143
12143
  startsAt: string;
12144
12144
  /**
12145
- * When the current Bhadra (Vishti) period ends. Null when not active. In requested timezone.
12145
+ * When the Bhadra (Vishti) period that begins on this date ends. May fall on the next calendar day. Null when no Bhadra begins on this date. In requested timezone.
12146
12146
  */
12147
12147
  endsAt: string;
12148
12148
  };
@@ -20707,6 +20707,868 @@ export type PostNumerologyDailyResponses = {
20707
20707
  };
20708
20708
  };
20709
20709
  export type PostNumerologyDailyResponse = PostNumerologyDailyResponses[keyof PostNumerologyDailyResponses];
20710
+ export type PostNumerologyChaldeanData = {
20711
+ body?: {
20712
+ /**
20713
+ * The name to analyze. Chaldean tradition uses the name a person is most known by, not necessarily the full legal birth name.
20714
+ */
20715
+ name: string;
20716
+ };
20717
+ path?: never;
20718
+ query?: {
20719
+ /**
20720
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
20721
+ */
20722
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
20723
+ };
20724
+ url: '/numerology/chaldean';
20725
+ };
20726
+ export type PostNumerologyChaldeanErrors = {
20727
+ /**
20728
+ * Validation error. `issues[]` lists every failed field.
20729
+ */
20730
+ 400: {
20731
+ /**
20732
+ * First issue summary.
20733
+ */
20734
+ error: string;
20735
+ code: 'validation_error';
20736
+ /**
20737
+ * Every validation failure. Use this to rebuild a valid request.
20738
+ */
20739
+ issues: Array<{
20740
+ /**
20741
+ * Dot-separated field path, or "(root)" for top-level.
20742
+ */
20743
+ path: string;
20744
+ message: string;
20745
+ /**
20746
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
20747
+ */
20748
+ code?: string;
20749
+ /**
20750
+ * Expected type for invalid_type.
20751
+ */
20752
+ expected?: string;
20753
+ /**
20754
+ * Minimum bound for too_small issues.
20755
+ */
20756
+ minimum?: number | string;
20757
+ /**
20758
+ * Maximum bound for too_big issues.
20759
+ */
20760
+ maximum?: number | string;
20761
+ inclusive?: boolean;
20762
+ /**
20763
+ * Format name for string issues (regex, email, url, uuid).
20764
+ */
20765
+ format?: string;
20766
+ /**
20767
+ * Regex pattern when format is regex.
20768
+ */
20769
+ pattern?: string;
20770
+ }>;
20771
+ };
20772
+ /**
20773
+ * Invalid or missing API key
20774
+ */
20775
+ 401: {
20776
+ /**
20777
+ * Human-readable error message. May change wording.
20778
+ */
20779
+ error: string;
20780
+ /**
20781
+ * Machine-readable error code. Stable identifier.
20782
+ */
20783
+ code: string;
20784
+ };
20785
+ /**
20786
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
20787
+ */
20788
+ 405: {
20789
+ error: string;
20790
+ code: 'method_not_allowed';
20791
+ /**
20792
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
20793
+ */
20794
+ allow: Array<string>;
20795
+ /**
20796
+ * Link to the product page for this domain.
20797
+ */
20798
+ docs?: string;
20799
+ };
20800
+ /**
20801
+ * Monthly rate limit exceeded
20802
+ */
20803
+ 429: {
20804
+ /**
20805
+ * Human-readable error message. May change wording.
20806
+ */
20807
+ error: string;
20808
+ /**
20809
+ * Machine-readable error code. Stable identifier.
20810
+ */
20811
+ code: string;
20812
+ };
20813
+ /**
20814
+ * Internal server error
20815
+ */
20816
+ 500: {
20817
+ /**
20818
+ * Human-readable error message. May change wording.
20819
+ */
20820
+ error: string;
20821
+ /**
20822
+ * Machine-readable error code. Stable identifier.
20823
+ */
20824
+ code: string;
20825
+ };
20826
+ };
20827
+ export type PostNumerologyChaldeanError = PostNumerologyChaldeanErrors[keyof PostNumerologyChaldeanErrors];
20828
+ export type PostNumerologyChaldeanResponses = {
20829
+ /**
20830
+ * Successfully calculated the Chaldean name reading
20831
+ */
20832
+ 200: {
20833
+ /**
20834
+ * The name analyzed.
20835
+ */
20836
+ name: string;
20837
+ /**
20838
+ * The Destiny or name number from all letters. The primary Chaldean number, revealing the overall direction encoded in the name.
20839
+ */
20840
+ destiny: {
20841
+ /**
20842
+ * Raw sum of the Chaldean letter values before any reduction.
20843
+ */
20844
+ total: number;
20845
+ /**
20846
+ * The interpretable compound number (10 to 52), the hidden influence behind the name, or null when the total resolves below 10.
20847
+ */
20848
+ compound: number;
20849
+ /**
20850
+ * The single-digit root (1 to 9), the outward expression. Chaldean does not preserve master numbers.
20851
+ */
20852
+ root: number;
20853
+ /**
20854
+ * Letter-by-letter Chaldean breakdown summed to the total, then to compound and root.
20855
+ */
20856
+ calculation: string;
20857
+ /**
20858
+ * Cheiro compound-number interpretation when the aspect carries a compound layer.
20859
+ */
20860
+ compoundMeaning: {
20861
+ /**
20862
+ * The compound number (10 to 52).
20863
+ */
20864
+ number: number;
20865
+ /**
20866
+ * Classical symbolic title from Cheiro, or null when the number has no named symbol.
20867
+ */
20868
+ name: string;
20869
+ /**
20870
+ * Overall tenor of the compound. "mixed" covers conditional numbers that are fortunate only alongside a favorable single number or in a specific domain.
20871
+ */
20872
+ nature: 'fortunate' | 'unfortunate' | 'mixed';
20873
+ /**
20874
+ * Cheiro interpretation of the hidden influence carried by this compound number.
20875
+ */
20876
+ meaning: string;
20877
+ /**
20878
+ * For numbers 33 to 52, the lower compound in the same series whose meaning this number shares.
20879
+ */
20880
+ sameAs?: number;
20881
+ };
20882
+ };
20883
+ /**
20884
+ * The Soul Urge number from the vowels, revealing inner desire. Root may be 0 when the name has no vowels.
20885
+ */
20886
+ soulUrge: {
20887
+ /**
20888
+ * Raw sum of the Chaldean letter values before any reduction.
20889
+ */
20890
+ total: number;
20891
+ /**
20892
+ * The interpretable compound number (10 to 52), the hidden influence behind the name, or null when the total resolves below 10.
20893
+ */
20894
+ compound: number;
20895
+ /**
20896
+ * The single-digit root (1 to 9), the outward expression. Chaldean does not preserve master numbers.
20897
+ */
20898
+ root: number;
20899
+ /**
20900
+ * Letter-by-letter Chaldean breakdown summed to the total, then to compound and root.
20901
+ */
20902
+ calculation: string;
20903
+ /**
20904
+ * Cheiro compound-number interpretation when the aspect carries a compound layer.
20905
+ */
20906
+ compoundMeaning: {
20907
+ /**
20908
+ * The compound number (10 to 52).
20909
+ */
20910
+ number: number;
20911
+ /**
20912
+ * Classical symbolic title from Cheiro, or null when the number has no named symbol.
20913
+ */
20914
+ name: string;
20915
+ /**
20916
+ * Overall tenor of the compound. "mixed" covers conditional numbers that are fortunate only alongside a favorable single number or in a specific domain.
20917
+ */
20918
+ nature: 'fortunate' | 'unfortunate' | 'mixed';
20919
+ /**
20920
+ * Cheiro interpretation of the hidden influence carried by this compound number.
20921
+ */
20922
+ meaning: string;
20923
+ /**
20924
+ * For numbers 33 to 52, the lower compound in the same series whose meaning this number shares.
20925
+ */
20926
+ sameAs?: number;
20927
+ };
20928
+ };
20929
+ /**
20930
+ * The Personality number from the consonants, revealing the outer impression. Root may be 0 when the name has no consonants.
20931
+ */
20932
+ personality: {
20933
+ /**
20934
+ * Raw sum of the Chaldean letter values before any reduction.
20935
+ */
20936
+ total: number;
20937
+ /**
20938
+ * The interpretable compound number (10 to 52), the hidden influence behind the name, or null when the total resolves below 10.
20939
+ */
20940
+ compound: number;
20941
+ /**
20942
+ * The single-digit root (1 to 9), the outward expression. Chaldean does not preserve master numbers.
20943
+ */
20944
+ root: number;
20945
+ /**
20946
+ * Letter-by-letter Chaldean breakdown summed to the total, then to compound and root.
20947
+ */
20948
+ calculation: string;
20949
+ /**
20950
+ * Cheiro compound-number interpretation when the aspect carries a compound layer.
20951
+ */
20952
+ compoundMeaning: {
20953
+ /**
20954
+ * The compound number (10 to 52).
20955
+ */
20956
+ number: number;
20957
+ /**
20958
+ * Classical symbolic title from Cheiro, or null when the number has no named symbol.
20959
+ */
20960
+ name: string;
20961
+ /**
20962
+ * Overall tenor of the compound. "mixed" covers conditional numbers that are fortunate only alongside a favorable single number or in a specific domain.
20963
+ */
20964
+ nature: 'fortunate' | 'unfortunate' | 'mixed';
20965
+ /**
20966
+ * Cheiro interpretation of the hidden influence carried by this compound number.
20967
+ */
20968
+ meaning: string;
20969
+ /**
20970
+ * For numbers 33 to 52, the lower compound in the same series whose meaning this number shares.
20971
+ */
20972
+ sameAs?: number;
20973
+ };
20974
+ };
20975
+ numberMeaning: {
20976
+ /**
20977
+ * The Destiny root (1 to 9).
20978
+ */
20979
+ number: number;
20980
+ /**
20981
+ * Ruling planet.
20982
+ */
20983
+ planet: string;
20984
+ /**
20985
+ * Archetype of the root number.
20986
+ */
20987
+ title: string;
20988
+ /**
20989
+ * Core themes of the Destiny root.
20990
+ */
20991
+ keywords: Array<string>;
20992
+ /**
20993
+ * True for roots 4 and 8, the two numbers Cheiro counsels caution with.
20994
+ */
20995
+ caution: boolean;
20996
+ /**
20997
+ * Planetary interpretation of the Destiny root number.
20998
+ */
20999
+ meaning: string;
21000
+ };
21001
+ /**
21002
+ * True when the Destiny root is 4 or 8, the karmic numbers Cheiro advises adjusting a name away from for material success.
21003
+ */
21004
+ caution: boolean;
21005
+ /**
21006
+ * One-line plain-language summary of the Chaldean reading.
21007
+ */
21008
+ summary: string;
21009
+ };
21010
+ };
21011
+ export type PostNumerologyChaldeanResponse = PostNumerologyChaldeanResponses[keyof PostNumerologyChaldeanResponses];
21012
+ export type GetNumerologyCompoundNumberByNumberData = {
21013
+ body?: never;
21014
+ path: {
21015
+ /**
21016
+ * Compound number from 10 to 52.
21017
+ */
21018
+ number: string;
21019
+ };
21020
+ query?: {
21021
+ /**
21022
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
21023
+ */
21024
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
21025
+ };
21026
+ url: '/numerology/compound-number/{number}';
21027
+ };
21028
+ export type GetNumerologyCompoundNumberByNumberErrors = {
21029
+ /**
21030
+ * Validation error. `issues[]` lists every failed field.
21031
+ */
21032
+ 400: {
21033
+ /**
21034
+ * First issue summary.
21035
+ */
21036
+ error: string;
21037
+ code: 'validation_error';
21038
+ /**
21039
+ * Every validation failure. Use this to rebuild a valid request.
21040
+ */
21041
+ issues: Array<{
21042
+ /**
21043
+ * Dot-separated field path, or "(root)" for top-level.
21044
+ */
21045
+ path: string;
21046
+ message: string;
21047
+ /**
21048
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
21049
+ */
21050
+ code?: string;
21051
+ /**
21052
+ * Expected type for invalid_type.
21053
+ */
21054
+ expected?: string;
21055
+ /**
21056
+ * Minimum bound for too_small issues.
21057
+ */
21058
+ minimum?: number | string;
21059
+ /**
21060
+ * Maximum bound for too_big issues.
21061
+ */
21062
+ maximum?: number | string;
21063
+ inclusive?: boolean;
21064
+ /**
21065
+ * Format name for string issues (regex, email, url, uuid).
21066
+ */
21067
+ format?: string;
21068
+ /**
21069
+ * Regex pattern when format is regex.
21070
+ */
21071
+ pattern?: string;
21072
+ }>;
21073
+ };
21074
+ /**
21075
+ * Invalid or missing API key
21076
+ */
21077
+ 401: {
21078
+ /**
21079
+ * Human-readable error message. May change wording.
21080
+ */
21081
+ error: string;
21082
+ /**
21083
+ * Machine-readable error code. Stable identifier.
21084
+ */
21085
+ code: string;
21086
+ };
21087
+ /**
21088
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
21089
+ */
21090
+ 405: {
21091
+ error: string;
21092
+ code: 'method_not_allowed';
21093
+ /**
21094
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
21095
+ */
21096
+ allow: Array<string>;
21097
+ /**
21098
+ * Link to the product page for this domain.
21099
+ */
21100
+ docs?: string;
21101
+ };
21102
+ /**
21103
+ * Monthly rate limit exceeded
21104
+ */
21105
+ 429: {
21106
+ /**
21107
+ * Human-readable error message. May change wording.
21108
+ */
21109
+ error: string;
21110
+ /**
21111
+ * Machine-readable error code. Stable identifier.
21112
+ */
21113
+ code: string;
21114
+ };
21115
+ /**
21116
+ * Internal server error
21117
+ */
21118
+ 500: {
21119
+ /**
21120
+ * Human-readable error message. May change wording.
21121
+ */
21122
+ error: string;
21123
+ /**
21124
+ * Machine-readable error code. Stable identifier.
21125
+ */
21126
+ code: string;
21127
+ };
21128
+ };
21129
+ export type GetNumerologyCompoundNumberByNumberError = GetNumerologyCompoundNumberByNumberErrors[keyof GetNumerologyCompoundNumberByNumberErrors];
21130
+ export type GetNumerologyCompoundNumberByNumberResponses = {
21131
+ /**
21132
+ * Successfully retrieved the compound number meaning
21133
+ */
21134
+ 200: {
21135
+ /**
21136
+ * The compound number (10 to 52).
21137
+ */
21138
+ number: number;
21139
+ /**
21140
+ * Classical symbolic title from Cheiro, or null when none is given.
21141
+ */
21142
+ name: string;
21143
+ /**
21144
+ * Overall tenor of the number. "mixed" marks conditional numbers, fortunate only with a favorable single number or in one domain.
21145
+ */
21146
+ nature: 'fortunate' | 'unfortunate' | 'mixed';
21147
+ /**
21148
+ * Cheiro interpretation of the hidden influence carried by this compound number.
21149
+ */
21150
+ meaning: string;
21151
+ /**
21152
+ * The single-digit root the compound reduces to (1 to 9).
21153
+ */
21154
+ root: number;
21155
+ /**
21156
+ * For numbers 33 to 52, the lower compound in the same series whose meaning this number shares.
21157
+ */
21158
+ sameAs?: number;
21159
+ };
21160
+ };
21161
+ export type GetNumerologyCompoundNumberByNumberResponse = GetNumerologyCompoundNumberByNumberResponses[keyof GetNumerologyCompoundNumberByNumberResponses];
21162
+ export type PostNumerologyDualData = {
21163
+ body?: {
21164
+ /**
21165
+ * The name to analyze in both systems.
21166
+ */
21167
+ name: string;
21168
+ };
21169
+ path?: never;
21170
+ query?: {
21171
+ /**
21172
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
21173
+ */
21174
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
21175
+ };
21176
+ url: '/numerology/dual';
21177
+ };
21178
+ export type PostNumerologyDualErrors = {
21179
+ /**
21180
+ * Validation error. `issues[]` lists every failed field.
21181
+ */
21182
+ 400: {
21183
+ /**
21184
+ * First issue summary.
21185
+ */
21186
+ error: string;
21187
+ code: 'validation_error';
21188
+ /**
21189
+ * Every validation failure. Use this to rebuild a valid request.
21190
+ */
21191
+ issues: Array<{
21192
+ /**
21193
+ * Dot-separated field path, or "(root)" for top-level.
21194
+ */
21195
+ path: string;
21196
+ message: string;
21197
+ /**
21198
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
21199
+ */
21200
+ code?: string;
21201
+ /**
21202
+ * Expected type for invalid_type.
21203
+ */
21204
+ expected?: string;
21205
+ /**
21206
+ * Minimum bound for too_small issues.
21207
+ */
21208
+ minimum?: number | string;
21209
+ /**
21210
+ * Maximum bound for too_big issues.
21211
+ */
21212
+ maximum?: number | string;
21213
+ inclusive?: boolean;
21214
+ /**
21215
+ * Format name for string issues (regex, email, url, uuid).
21216
+ */
21217
+ format?: string;
21218
+ /**
21219
+ * Regex pattern when format is regex.
21220
+ */
21221
+ pattern?: string;
21222
+ }>;
21223
+ };
21224
+ /**
21225
+ * Invalid or missing API key
21226
+ */
21227
+ 401: {
21228
+ /**
21229
+ * Human-readable error message. May change wording.
21230
+ */
21231
+ error: string;
21232
+ /**
21233
+ * Machine-readable error code. Stable identifier.
21234
+ */
21235
+ code: string;
21236
+ };
21237
+ /**
21238
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
21239
+ */
21240
+ 405: {
21241
+ error: string;
21242
+ code: 'method_not_allowed';
21243
+ /**
21244
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
21245
+ */
21246
+ allow: Array<string>;
21247
+ /**
21248
+ * Link to the product page for this domain.
21249
+ */
21250
+ docs?: string;
21251
+ };
21252
+ /**
21253
+ * Monthly rate limit exceeded
21254
+ */
21255
+ 429: {
21256
+ /**
21257
+ * Human-readable error message. May change wording.
21258
+ */
21259
+ error: string;
21260
+ /**
21261
+ * Machine-readable error code. Stable identifier.
21262
+ */
21263
+ code: string;
21264
+ };
21265
+ /**
21266
+ * Internal server error
21267
+ */
21268
+ 500: {
21269
+ /**
21270
+ * Human-readable error message. May change wording.
21271
+ */
21272
+ error: string;
21273
+ /**
21274
+ * Machine-readable error code. Stable identifier.
21275
+ */
21276
+ code: string;
21277
+ };
21278
+ };
21279
+ export type PostNumerologyDualError = PostNumerologyDualErrors[keyof PostNumerologyDualErrors];
21280
+ export type PostNumerologyDualResponses = {
21281
+ /**
21282
+ * Successfully calculated the name in both numerology systems
21283
+ */
21284
+ 200: {
21285
+ /**
21286
+ * The name analyzed.
21287
+ */
21288
+ name: string;
21289
+ pythagorean: {
21290
+ /**
21291
+ * Pythagorean Expression number (1 to 9, 11, 22, 33).
21292
+ */
21293
+ number: number;
21294
+ /**
21295
+ * Single digit or preserved master number.
21296
+ */
21297
+ type: 'single' | 'master';
21298
+ /**
21299
+ * Pythagorean letter breakdown and reduction.
21300
+ */
21301
+ calculation: string;
21302
+ /**
21303
+ * Archetype of the number.
21304
+ */
21305
+ title: string;
21306
+ /**
21307
+ * Core themes in the Pythagorean reading.
21308
+ */
21309
+ keywords: Array<string>;
21310
+ };
21311
+ chaldean: {
21312
+ /**
21313
+ * Chaldean compound number (10 to 52), the hidden influence, or null.
21314
+ */
21315
+ compound: number;
21316
+ /**
21317
+ * Chaldean root (1 to 9).
21318
+ */
21319
+ root: number;
21320
+ /**
21321
+ * Raw Chaldean letter total.
21322
+ */
21323
+ total: number;
21324
+ /**
21325
+ * Chaldean letter breakdown to compound and root.
21326
+ */
21327
+ calculation: string;
21328
+ /**
21329
+ * Planetary ruler of the Chaldean root.
21330
+ */
21331
+ planet: string;
21332
+ /**
21333
+ * Archetype of the Chaldean root.
21334
+ */
21335
+ title: string;
21336
+ /**
21337
+ * True when the Chaldean root is 4 or 8, the numbers of caution.
21338
+ */
21339
+ caution: boolean;
21340
+ /**
21341
+ * Cheiro compound interpretation when present.
21342
+ */
21343
+ compoundMeaning: {
21344
+ /**
21345
+ * The compound number.
21346
+ */
21347
+ number: number;
21348
+ /**
21349
+ * Symbolic title.
21350
+ */
21351
+ name: string;
21352
+ /**
21353
+ * Tenor of the compound.
21354
+ */
21355
+ nature: 'fortunate' | 'unfortunate' | 'mixed';
21356
+ /**
21357
+ * Cheiro interpretation.
21358
+ */
21359
+ meaning: string;
21360
+ /**
21361
+ * Series equivalent for 33 to 52.
21362
+ */
21363
+ sameAs?: number;
21364
+ };
21365
+ };
21366
+ /**
21367
+ * True when both systems reduce to the same single-digit energy (Pythagorean number reduced to one digit equals the Chaldean root). Agreement is read as a name whose vibrations are in harmony.
21368
+ */
21369
+ agreement: boolean;
21370
+ /**
21371
+ * Plain-language comparison of the two systems for this name.
21372
+ */
21373
+ note: string;
21374
+ };
21375
+ };
21376
+ export type PostNumerologyDualResponse = PostNumerologyDualResponses[keyof PostNumerologyDualResponses];
21377
+ export type PostNumerologyBusinessNameData = {
21378
+ body?: {
21379
+ /**
21380
+ * The business or brand name to evaluate.
21381
+ */
21382
+ name: string;
21383
+ };
21384
+ path?: never;
21385
+ query?: {
21386
+ /**
21387
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
21388
+ */
21389
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
21390
+ };
21391
+ url: '/numerology/business-name';
21392
+ };
21393
+ export type PostNumerologyBusinessNameErrors = {
21394
+ /**
21395
+ * Validation error. `issues[]` lists every failed field.
21396
+ */
21397
+ 400: {
21398
+ /**
21399
+ * First issue summary.
21400
+ */
21401
+ error: string;
21402
+ code: 'validation_error';
21403
+ /**
21404
+ * Every validation failure. Use this to rebuild a valid request.
21405
+ */
21406
+ issues: Array<{
21407
+ /**
21408
+ * Dot-separated field path, or "(root)" for top-level.
21409
+ */
21410
+ path: string;
21411
+ message: string;
21412
+ /**
21413
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
21414
+ */
21415
+ code?: string;
21416
+ /**
21417
+ * Expected type for invalid_type.
21418
+ */
21419
+ expected?: string;
21420
+ /**
21421
+ * Minimum bound for too_small issues.
21422
+ */
21423
+ minimum?: number | string;
21424
+ /**
21425
+ * Maximum bound for too_big issues.
21426
+ */
21427
+ maximum?: number | string;
21428
+ inclusive?: boolean;
21429
+ /**
21430
+ * Format name for string issues (regex, email, url, uuid).
21431
+ */
21432
+ format?: string;
21433
+ /**
21434
+ * Regex pattern when format is regex.
21435
+ */
21436
+ pattern?: string;
21437
+ }>;
21438
+ };
21439
+ /**
21440
+ * Invalid or missing API key
21441
+ */
21442
+ 401: {
21443
+ /**
21444
+ * Human-readable error message. May change wording.
21445
+ */
21446
+ error: string;
21447
+ /**
21448
+ * Machine-readable error code. Stable identifier.
21449
+ */
21450
+ code: string;
21451
+ };
21452
+ /**
21453
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
21454
+ */
21455
+ 405: {
21456
+ error: string;
21457
+ code: 'method_not_allowed';
21458
+ /**
21459
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
21460
+ */
21461
+ allow: Array<string>;
21462
+ /**
21463
+ * Link to the product page for this domain.
21464
+ */
21465
+ docs?: string;
21466
+ };
21467
+ /**
21468
+ * Monthly rate limit exceeded
21469
+ */
21470
+ 429: {
21471
+ /**
21472
+ * Human-readable error message. May change wording.
21473
+ */
21474
+ error: string;
21475
+ /**
21476
+ * Machine-readable error code. Stable identifier.
21477
+ */
21478
+ code: string;
21479
+ };
21480
+ /**
21481
+ * Internal server error
21482
+ */
21483
+ 500: {
21484
+ /**
21485
+ * Human-readable error message. May change wording.
21486
+ */
21487
+ error: string;
21488
+ /**
21489
+ * Machine-readable error code. Stable identifier.
21490
+ */
21491
+ code: string;
21492
+ };
21493
+ };
21494
+ export type PostNumerologyBusinessNameError = PostNumerologyBusinessNameErrors[keyof PostNumerologyBusinessNameErrors];
21495
+ export type PostNumerologyBusinessNameResponses = {
21496
+ /**
21497
+ * Successfully analyzed the business name
21498
+ */
21499
+ 200: {
21500
+ /**
21501
+ * The business name analyzed.
21502
+ */
21503
+ name: string;
21504
+ /**
21505
+ * Raw Chaldean letter total of the name.
21506
+ */
21507
+ total: number;
21508
+ /**
21509
+ * Chaldean compound number (10 to 52), the hidden influence, or null.
21510
+ */
21511
+ compound: number;
21512
+ /**
21513
+ * Single-digit business root (1 to 9), the outward commercial expression.
21514
+ */
21515
+ root: number;
21516
+ /**
21517
+ * Planetary ruler of the business root.
21518
+ */
21519
+ planet: string;
21520
+ /**
21521
+ * Overall favorability of the root for business. excellent and good are growth-friendly; caution (7, 8) and avoid (4) flag the demanding and unstable roots.
21522
+ */
21523
+ rating: 'excellent' | 'good' | 'caution' | 'avoid';
21524
+ /**
21525
+ * True when the compound number is one of Cheiro fortunate compounds, an extra positive signal layered over the root rating.
21526
+ */
21527
+ favorableCompound: boolean;
21528
+ /**
21529
+ * Industries the business root favors.
21530
+ */
21531
+ industries: Array<string>;
21532
+ /**
21533
+ * Plain-language guidance for using this number as a brand.
21534
+ */
21535
+ guidance: string;
21536
+ /**
21537
+ * Chaldean letter breakdown of the business name.
21538
+ */
21539
+ calculation: string;
21540
+ /**
21541
+ * Cheiro compound interpretation when present.
21542
+ */
21543
+ compoundMeaning: {
21544
+ /**
21545
+ * The compound number.
21546
+ */
21547
+ number: number;
21548
+ /**
21549
+ * Symbolic title, if any.
21550
+ */
21551
+ name: string;
21552
+ /**
21553
+ * Tenor of the compound.
21554
+ */
21555
+ nature: 'fortunate' | 'unfortunate' | 'mixed';
21556
+ /**
21557
+ * Cheiro interpretation.
21558
+ */
21559
+ meaning: string;
21560
+ /**
21561
+ * Series equivalent for 33 to 52.
21562
+ */
21563
+ sameAs?: number;
21564
+ };
21565
+ /**
21566
+ * One-line plain-language verdict for the business name.
21567
+ */
21568
+ summary: string;
21569
+ };
21570
+ };
21571
+ export type PostNumerologyBusinessNameResponse = PostNumerologyBusinessNameResponses[keyof PostNumerologyBusinessNameResponses];
20710
21572
  export type GetTarotCardsData = {
20711
21573
  body?: never;
20712
21574
  path?: never;