@roxyapi/sdk 1.2.37 → 1.2.39

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
@@ -21183,6 +21183,888 @@ export type PostNumerologyDailyResponses = {
21183
21183
 
21184
21184
  export type PostNumerologyDailyResponse = PostNumerologyDailyResponses[keyof PostNumerologyDailyResponses];
21185
21185
 
21186
+ export type PostNumerologyChaldeanData = {
21187
+ body?: {
21188
+ /**
21189
+ * The name to analyze. Chaldean tradition uses the name a person is most known by, not necessarily the full legal birth name.
21190
+ */
21191
+ name: string;
21192
+ };
21193
+ path?: never;
21194
+ query?: {
21195
+ /**
21196
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
21197
+ */
21198
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
21199
+ };
21200
+ url: '/numerology/chaldean';
21201
+ };
21202
+
21203
+ export type PostNumerologyChaldeanErrors = {
21204
+ /**
21205
+ * Validation error. `issues[]` lists every failed field.
21206
+ */
21207
+ 400: {
21208
+ /**
21209
+ * First issue summary.
21210
+ */
21211
+ error: string;
21212
+ code: 'validation_error';
21213
+ /**
21214
+ * Every validation failure. Use this to rebuild a valid request.
21215
+ */
21216
+ issues: Array<{
21217
+ /**
21218
+ * Dot-separated field path, or "(root)" for top-level.
21219
+ */
21220
+ path: string;
21221
+ message: string;
21222
+ /**
21223
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
21224
+ */
21225
+ code?: string;
21226
+ /**
21227
+ * Expected type for invalid_type.
21228
+ */
21229
+ expected?: string;
21230
+ /**
21231
+ * Minimum bound for too_small issues.
21232
+ */
21233
+ minimum?: number | string;
21234
+ /**
21235
+ * Maximum bound for too_big issues.
21236
+ */
21237
+ maximum?: number | string;
21238
+ inclusive?: boolean;
21239
+ /**
21240
+ * Format name for string issues (regex, email, url, uuid).
21241
+ */
21242
+ format?: string;
21243
+ /**
21244
+ * Regex pattern when format is regex.
21245
+ */
21246
+ pattern?: string;
21247
+ }>;
21248
+ };
21249
+ /**
21250
+ * Invalid or missing API key
21251
+ */
21252
+ 401: {
21253
+ /**
21254
+ * Human-readable error message. May change wording.
21255
+ */
21256
+ error: string;
21257
+ /**
21258
+ * Machine-readable error code. Stable identifier.
21259
+ */
21260
+ code: string;
21261
+ };
21262
+ /**
21263
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
21264
+ */
21265
+ 405: {
21266
+ error: string;
21267
+ code: 'method_not_allowed';
21268
+ /**
21269
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
21270
+ */
21271
+ allow: Array<string>;
21272
+ /**
21273
+ * Link to the product page for this domain.
21274
+ */
21275
+ docs?: string;
21276
+ };
21277
+ /**
21278
+ * Monthly rate limit exceeded
21279
+ */
21280
+ 429: {
21281
+ /**
21282
+ * Human-readable error message. May change wording.
21283
+ */
21284
+ error: string;
21285
+ /**
21286
+ * Machine-readable error code. Stable identifier.
21287
+ */
21288
+ code: string;
21289
+ };
21290
+ /**
21291
+ * Internal server error
21292
+ */
21293
+ 500: {
21294
+ /**
21295
+ * Human-readable error message. May change wording.
21296
+ */
21297
+ error: string;
21298
+ /**
21299
+ * Machine-readable error code. Stable identifier.
21300
+ */
21301
+ code: string;
21302
+ };
21303
+ };
21304
+
21305
+ export type PostNumerologyChaldeanError = PostNumerologyChaldeanErrors[keyof PostNumerologyChaldeanErrors];
21306
+
21307
+ export type PostNumerologyChaldeanResponses = {
21308
+ /**
21309
+ * Successfully calculated the Chaldean name reading
21310
+ */
21311
+ 200: {
21312
+ /**
21313
+ * The name analyzed.
21314
+ */
21315
+ name: string;
21316
+ /**
21317
+ * The Destiny or name number from all letters. The primary Chaldean number, revealing the overall direction encoded in the name.
21318
+ */
21319
+ destiny: {
21320
+ /**
21321
+ * Raw sum of the Chaldean letter values before any reduction.
21322
+ */
21323
+ total: number;
21324
+ /**
21325
+ * The interpretable compound number (10 to 52), the hidden influence behind the name, or null when the total resolves below 10.
21326
+ */
21327
+ compound: number;
21328
+ /**
21329
+ * The single-digit root (1 to 9), the outward expression. Chaldean does not preserve master numbers.
21330
+ */
21331
+ root: number;
21332
+ /**
21333
+ * Letter-by-letter Chaldean breakdown summed to the total, then to compound and root.
21334
+ */
21335
+ calculation: string;
21336
+ /**
21337
+ * Cheiro compound-number interpretation when the aspect carries a compound layer.
21338
+ */
21339
+ compoundMeaning: {
21340
+ /**
21341
+ * The compound number (10 to 52).
21342
+ */
21343
+ number: number;
21344
+ /**
21345
+ * Classical symbolic title from Cheiro, or null when the number has no named symbol.
21346
+ */
21347
+ name: string;
21348
+ /**
21349
+ * Overall tenor of the compound. "mixed" covers conditional numbers that are fortunate only alongside a favorable single number or in a specific domain.
21350
+ */
21351
+ nature: 'fortunate' | 'unfortunate' | 'mixed';
21352
+ /**
21353
+ * Cheiro interpretation of the hidden influence carried by this compound number.
21354
+ */
21355
+ meaning: string;
21356
+ /**
21357
+ * For numbers 33 to 52, the lower compound in the same series whose meaning this number shares.
21358
+ */
21359
+ sameAs?: number;
21360
+ };
21361
+ };
21362
+ /**
21363
+ * The Soul Urge number from the vowels, revealing inner desire. Root may be 0 when the name has no vowels.
21364
+ */
21365
+ soulUrge: {
21366
+ /**
21367
+ * Raw sum of the Chaldean letter values before any reduction.
21368
+ */
21369
+ total: number;
21370
+ /**
21371
+ * The interpretable compound number (10 to 52), the hidden influence behind the name, or null when the total resolves below 10.
21372
+ */
21373
+ compound: number;
21374
+ /**
21375
+ * The single-digit root (1 to 9), the outward expression. Chaldean does not preserve master numbers.
21376
+ */
21377
+ root: number;
21378
+ /**
21379
+ * Letter-by-letter Chaldean breakdown summed to the total, then to compound and root.
21380
+ */
21381
+ calculation: string;
21382
+ /**
21383
+ * Cheiro compound-number interpretation when the aspect carries a compound layer.
21384
+ */
21385
+ compoundMeaning: {
21386
+ /**
21387
+ * The compound number (10 to 52).
21388
+ */
21389
+ number: number;
21390
+ /**
21391
+ * Classical symbolic title from Cheiro, or null when the number has no named symbol.
21392
+ */
21393
+ name: string;
21394
+ /**
21395
+ * Overall tenor of the compound. "mixed" covers conditional numbers that are fortunate only alongside a favorable single number or in a specific domain.
21396
+ */
21397
+ nature: 'fortunate' | 'unfortunate' | 'mixed';
21398
+ /**
21399
+ * Cheiro interpretation of the hidden influence carried by this compound number.
21400
+ */
21401
+ meaning: string;
21402
+ /**
21403
+ * For numbers 33 to 52, the lower compound in the same series whose meaning this number shares.
21404
+ */
21405
+ sameAs?: number;
21406
+ };
21407
+ };
21408
+ /**
21409
+ * The Personality number from the consonants, revealing the outer impression. Root may be 0 when the name has no consonants.
21410
+ */
21411
+ personality: {
21412
+ /**
21413
+ * Raw sum of the Chaldean letter values before any reduction.
21414
+ */
21415
+ total: number;
21416
+ /**
21417
+ * The interpretable compound number (10 to 52), the hidden influence behind the name, or null when the total resolves below 10.
21418
+ */
21419
+ compound: number;
21420
+ /**
21421
+ * The single-digit root (1 to 9), the outward expression. Chaldean does not preserve master numbers.
21422
+ */
21423
+ root: number;
21424
+ /**
21425
+ * Letter-by-letter Chaldean breakdown summed to the total, then to compound and root.
21426
+ */
21427
+ calculation: string;
21428
+ /**
21429
+ * Cheiro compound-number interpretation when the aspect carries a compound layer.
21430
+ */
21431
+ compoundMeaning: {
21432
+ /**
21433
+ * The compound number (10 to 52).
21434
+ */
21435
+ number: number;
21436
+ /**
21437
+ * Classical symbolic title from Cheiro, or null when the number has no named symbol.
21438
+ */
21439
+ name: string;
21440
+ /**
21441
+ * Overall tenor of the compound. "mixed" covers conditional numbers that are fortunate only alongside a favorable single number or in a specific domain.
21442
+ */
21443
+ nature: 'fortunate' | 'unfortunate' | 'mixed';
21444
+ /**
21445
+ * Cheiro interpretation of the hidden influence carried by this compound number.
21446
+ */
21447
+ meaning: string;
21448
+ /**
21449
+ * For numbers 33 to 52, the lower compound in the same series whose meaning this number shares.
21450
+ */
21451
+ sameAs?: number;
21452
+ };
21453
+ };
21454
+ numberMeaning: {
21455
+ /**
21456
+ * The Destiny root (1 to 9).
21457
+ */
21458
+ number: number;
21459
+ /**
21460
+ * Ruling planet.
21461
+ */
21462
+ planet: string;
21463
+ /**
21464
+ * Archetype of the root number.
21465
+ */
21466
+ title: string;
21467
+ /**
21468
+ * Core themes of the Destiny root.
21469
+ */
21470
+ keywords: Array<string>;
21471
+ /**
21472
+ * True for roots 4 and 8, the two numbers Cheiro counsels caution with.
21473
+ */
21474
+ caution: boolean;
21475
+ /**
21476
+ * Planetary interpretation of the Destiny root number.
21477
+ */
21478
+ meaning: string;
21479
+ };
21480
+ /**
21481
+ * True when the Destiny root is 4 or 8, the karmic numbers Cheiro advises adjusting a name away from for material success.
21482
+ */
21483
+ caution: boolean;
21484
+ /**
21485
+ * One-line plain-language summary of the Chaldean reading.
21486
+ */
21487
+ summary: string;
21488
+ };
21489
+ };
21490
+
21491
+ export type PostNumerologyChaldeanResponse = PostNumerologyChaldeanResponses[keyof PostNumerologyChaldeanResponses];
21492
+
21493
+ export type GetNumerologyCompoundNumberByNumberData = {
21494
+ body?: never;
21495
+ path: {
21496
+ /**
21497
+ * Compound number from 10 to 52.
21498
+ */
21499
+ number: string;
21500
+ };
21501
+ query?: {
21502
+ /**
21503
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
21504
+ */
21505
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
21506
+ };
21507
+ url: '/numerology/compound-number/{number}';
21508
+ };
21509
+
21510
+ export type GetNumerologyCompoundNumberByNumberErrors = {
21511
+ /**
21512
+ * Validation error. `issues[]` lists every failed field.
21513
+ */
21514
+ 400: {
21515
+ /**
21516
+ * First issue summary.
21517
+ */
21518
+ error: string;
21519
+ code: 'validation_error';
21520
+ /**
21521
+ * Every validation failure. Use this to rebuild a valid request.
21522
+ */
21523
+ issues: Array<{
21524
+ /**
21525
+ * Dot-separated field path, or "(root)" for top-level.
21526
+ */
21527
+ path: string;
21528
+ message: string;
21529
+ /**
21530
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
21531
+ */
21532
+ code?: string;
21533
+ /**
21534
+ * Expected type for invalid_type.
21535
+ */
21536
+ expected?: string;
21537
+ /**
21538
+ * Minimum bound for too_small issues.
21539
+ */
21540
+ minimum?: number | string;
21541
+ /**
21542
+ * Maximum bound for too_big issues.
21543
+ */
21544
+ maximum?: number | string;
21545
+ inclusive?: boolean;
21546
+ /**
21547
+ * Format name for string issues (regex, email, url, uuid).
21548
+ */
21549
+ format?: string;
21550
+ /**
21551
+ * Regex pattern when format is regex.
21552
+ */
21553
+ pattern?: string;
21554
+ }>;
21555
+ };
21556
+ /**
21557
+ * Invalid or missing API key
21558
+ */
21559
+ 401: {
21560
+ /**
21561
+ * Human-readable error message. May change wording.
21562
+ */
21563
+ error: string;
21564
+ /**
21565
+ * Machine-readable error code. Stable identifier.
21566
+ */
21567
+ code: string;
21568
+ };
21569
+ /**
21570
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
21571
+ */
21572
+ 405: {
21573
+ error: string;
21574
+ code: 'method_not_allowed';
21575
+ /**
21576
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
21577
+ */
21578
+ allow: Array<string>;
21579
+ /**
21580
+ * Link to the product page for this domain.
21581
+ */
21582
+ docs?: string;
21583
+ };
21584
+ /**
21585
+ * Monthly rate limit exceeded
21586
+ */
21587
+ 429: {
21588
+ /**
21589
+ * Human-readable error message. May change wording.
21590
+ */
21591
+ error: string;
21592
+ /**
21593
+ * Machine-readable error code. Stable identifier.
21594
+ */
21595
+ code: string;
21596
+ };
21597
+ /**
21598
+ * Internal server error
21599
+ */
21600
+ 500: {
21601
+ /**
21602
+ * Human-readable error message. May change wording.
21603
+ */
21604
+ error: string;
21605
+ /**
21606
+ * Machine-readable error code. Stable identifier.
21607
+ */
21608
+ code: string;
21609
+ };
21610
+ };
21611
+
21612
+ export type GetNumerologyCompoundNumberByNumberError = GetNumerologyCompoundNumberByNumberErrors[keyof GetNumerologyCompoundNumberByNumberErrors];
21613
+
21614
+ export type GetNumerologyCompoundNumberByNumberResponses = {
21615
+ /**
21616
+ * Successfully retrieved the compound number meaning
21617
+ */
21618
+ 200: {
21619
+ /**
21620
+ * The compound number (10 to 52).
21621
+ */
21622
+ number: number;
21623
+ /**
21624
+ * Classical symbolic title from Cheiro, or null when none is given.
21625
+ */
21626
+ name: string;
21627
+ /**
21628
+ * Overall tenor of the number. "mixed" marks conditional numbers, fortunate only with a favorable single number or in one domain.
21629
+ */
21630
+ nature: 'fortunate' | 'unfortunate' | 'mixed';
21631
+ /**
21632
+ * Cheiro interpretation of the hidden influence carried by this compound number.
21633
+ */
21634
+ meaning: string;
21635
+ /**
21636
+ * The single-digit root the compound reduces to (1 to 9).
21637
+ */
21638
+ root: number;
21639
+ /**
21640
+ * For numbers 33 to 52, the lower compound in the same series whose meaning this number shares.
21641
+ */
21642
+ sameAs?: number;
21643
+ };
21644
+ };
21645
+
21646
+ export type GetNumerologyCompoundNumberByNumberResponse = GetNumerologyCompoundNumberByNumberResponses[keyof GetNumerologyCompoundNumberByNumberResponses];
21647
+
21648
+ export type PostNumerologyDualData = {
21649
+ body?: {
21650
+ /**
21651
+ * The name to analyze in both systems.
21652
+ */
21653
+ name: string;
21654
+ };
21655
+ path?: never;
21656
+ query?: {
21657
+ /**
21658
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
21659
+ */
21660
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
21661
+ };
21662
+ url: '/numerology/dual';
21663
+ };
21664
+
21665
+ export type PostNumerologyDualErrors = {
21666
+ /**
21667
+ * Validation error. `issues[]` lists every failed field.
21668
+ */
21669
+ 400: {
21670
+ /**
21671
+ * First issue summary.
21672
+ */
21673
+ error: string;
21674
+ code: 'validation_error';
21675
+ /**
21676
+ * Every validation failure. Use this to rebuild a valid request.
21677
+ */
21678
+ issues: Array<{
21679
+ /**
21680
+ * Dot-separated field path, or "(root)" for top-level.
21681
+ */
21682
+ path: string;
21683
+ message: string;
21684
+ /**
21685
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
21686
+ */
21687
+ code?: string;
21688
+ /**
21689
+ * Expected type for invalid_type.
21690
+ */
21691
+ expected?: string;
21692
+ /**
21693
+ * Minimum bound for too_small issues.
21694
+ */
21695
+ minimum?: number | string;
21696
+ /**
21697
+ * Maximum bound for too_big issues.
21698
+ */
21699
+ maximum?: number | string;
21700
+ inclusive?: boolean;
21701
+ /**
21702
+ * Format name for string issues (regex, email, url, uuid).
21703
+ */
21704
+ format?: string;
21705
+ /**
21706
+ * Regex pattern when format is regex.
21707
+ */
21708
+ pattern?: string;
21709
+ }>;
21710
+ };
21711
+ /**
21712
+ * Invalid or missing API key
21713
+ */
21714
+ 401: {
21715
+ /**
21716
+ * Human-readable error message. May change wording.
21717
+ */
21718
+ error: string;
21719
+ /**
21720
+ * Machine-readable error code. Stable identifier.
21721
+ */
21722
+ code: string;
21723
+ };
21724
+ /**
21725
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
21726
+ */
21727
+ 405: {
21728
+ error: string;
21729
+ code: 'method_not_allowed';
21730
+ /**
21731
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
21732
+ */
21733
+ allow: Array<string>;
21734
+ /**
21735
+ * Link to the product page for this domain.
21736
+ */
21737
+ docs?: string;
21738
+ };
21739
+ /**
21740
+ * Monthly rate limit exceeded
21741
+ */
21742
+ 429: {
21743
+ /**
21744
+ * Human-readable error message. May change wording.
21745
+ */
21746
+ error: string;
21747
+ /**
21748
+ * Machine-readable error code. Stable identifier.
21749
+ */
21750
+ code: string;
21751
+ };
21752
+ /**
21753
+ * Internal server error
21754
+ */
21755
+ 500: {
21756
+ /**
21757
+ * Human-readable error message. May change wording.
21758
+ */
21759
+ error: string;
21760
+ /**
21761
+ * Machine-readable error code. Stable identifier.
21762
+ */
21763
+ code: string;
21764
+ };
21765
+ };
21766
+
21767
+ export type PostNumerologyDualError = PostNumerologyDualErrors[keyof PostNumerologyDualErrors];
21768
+
21769
+ export type PostNumerologyDualResponses = {
21770
+ /**
21771
+ * Successfully calculated the name in both numerology systems
21772
+ */
21773
+ 200: {
21774
+ /**
21775
+ * The name analyzed.
21776
+ */
21777
+ name: string;
21778
+ pythagorean: {
21779
+ /**
21780
+ * Pythagorean Expression number (1 to 9, 11, 22, 33).
21781
+ */
21782
+ number: number;
21783
+ /**
21784
+ * Single digit or preserved master number.
21785
+ */
21786
+ type: 'single' | 'master';
21787
+ /**
21788
+ * Pythagorean letter breakdown and reduction.
21789
+ */
21790
+ calculation: string;
21791
+ /**
21792
+ * Archetype of the number.
21793
+ */
21794
+ title: string;
21795
+ /**
21796
+ * Core themes in the Pythagorean reading.
21797
+ */
21798
+ keywords: Array<string>;
21799
+ };
21800
+ chaldean: {
21801
+ /**
21802
+ * Chaldean compound number (10 to 52), the hidden influence, or null.
21803
+ */
21804
+ compound: number;
21805
+ /**
21806
+ * Chaldean root (1 to 9).
21807
+ */
21808
+ root: number;
21809
+ /**
21810
+ * Raw Chaldean letter total.
21811
+ */
21812
+ total: number;
21813
+ /**
21814
+ * Chaldean letter breakdown to compound and root.
21815
+ */
21816
+ calculation: string;
21817
+ /**
21818
+ * Planetary ruler of the Chaldean root.
21819
+ */
21820
+ planet: string;
21821
+ /**
21822
+ * Archetype of the Chaldean root.
21823
+ */
21824
+ title: string;
21825
+ /**
21826
+ * True when the Chaldean root is 4 or 8, the numbers of caution.
21827
+ */
21828
+ caution: boolean;
21829
+ /**
21830
+ * Cheiro compound interpretation when present.
21831
+ */
21832
+ compoundMeaning: {
21833
+ /**
21834
+ * The compound number.
21835
+ */
21836
+ number: number;
21837
+ /**
21838
+ * Symbolic title.
21839
+ */
21840
+ name: string;
21841
+ /**
21842
+ * Tenor of the compound.
21843
+ */
21844
+ nature: 'fortunate' | 'unfortunate' | 'mixed';
21845
+ /**
21846
+ * Cheiro interpretation.
21847
+ */
21848
+ meaning: string;
21849
+ /**
21850
+ * Series equivalent for 33 to 52.
21851
+ */
21852
+ sameAs?: number;
21853
+ };
21854
+ };
21855
+ /**
21856
+ * 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.
21857
+ */
21858
+ agreement: boolean;
21859
+ /**
21860
+ * Plain-language comparison of the two systems for this name.
21861
+ */
21862
+ note: string;
21863
+ };
21864
+ };
21865
+
21866
+ export type PostNumerologyDualResponse = PostNumerologyDualResponses[keyof PostNumerologyDualResponses];
21867
+
21868
+ export type PostNumerologyBusinessNameData = {
21869
+ body?: {
21870
+ /**
21871
+ * The business or brand name to evaluate.
21872
+ */
21873
+ name: string;
21874
+ };
21875
+ path?: never;
21876
+ query?: {
21877
+ /**
21878
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
21879
+ */
21880
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
21881
+ };
21882
+ url: '/numerology/business-name';
21883
+ };
21884
+
21885
+ export type PostNumerologyBusinessNameErrors = {
21886
+ /**
21887
+ * Validation error. `issues[]` lists every failed field.
21888
+ */
21889
+ 400: {
21890
+ /**
21891
+ * First issue summary.
21892
+ */
21893
+ error: string;
21894
+ code: 'validation_error';
21895
+ /**
21896
+ * Every validation failure. Use this to rebuild a valid request.
21897
+ */
21898
+ issues: Array<{
21899
+ /**
21900
+ * Dot-separated field path, or "(root)" for top-level.
21901
+ */
21902
+ path: string;
21903
+ message: string;
21904
+ /**
21905
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
21906
+ */
21907
+ code?: string;
21908
+ /**
21909
+ * Expected type for invalid_type.
21910
+ */
21911
+ expected?: string;
21912
+ /**
21913
+ * Minimum bound for too_small issues.
21914
+ */
21915
+ minimum?: number | string;
21916
+ /**
21917
+ * Maximum bound for too_big issues.
21918
+ */
21919
+ maximum?: number | string;
21920
+ inclusive?: boolean;
21921
+ /**
21922
+ * Format name for string issues (regex, email, url, uuid).
21923
+ */
21924
+ format?: string;
21925
+ /**
21926
+ * Regex pattern when format is regex.
21927
+ */
21928
+ pattern?: string;
21929
+ }>;
21930
+ };
21931
+ /**
21932
+ * Invalid or missing API key
21933
+ */
21934
+ 401: {
21935
+ /**
21936
+ * Human-readable error message. May change wording.
21937
+ */
21938
+ error: string;
21939
+ /**
21940
+ * Machine-readable error code. Stable identifier.
21941
+ */
21942
+ code: string;
21943
+ };
21944
+ /**
21945
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
21946
+ */
21947
+ 405: {
21948
+ error: string;
21949
+ code: 'method_not_allowed';
21950
+ /**
21951
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
21952
+ */
21953
+ allow: Array<string>;
21954
+ /**
21955
+ * Link to the product page for this domain.
21956
+ */
21957
+ docs?: string;
21958
+ };
21959
+ /**
21960
+ * Monthly rate limit exceeded
21961
+ */
21962
+ 429: {
21963
+ /**
21964
+ * Human-readable error message. May change wording.
21965
+ */
21966
+ error: string;
21967
+ /**
21968
+ * Machine-readable error code. Stable identifier.
21969
+ */
21970
+ code: string;
21971
+ };
21972
+ /**
21973
+ * Internal server error
21974
+ */
21975
+ 500: {
21976
+ /**
21977
+ * Human-readable error message. May change wording.
21978
+ */
21979
+ error: string;
21980
+ /**
21981
+ * Machine-readable error code. Stable identifier.
21982
+ */
21983
+ code: string;
21984
+ };
21985
+ };
21986
+
21987
+ export type PostNumerologyBusinessNameError = PostNumerologyBusinessNameErrors[keyof PostNumerologyBusinessNameErrors];
21988
+
21989
+ export type PostNumerologyBusinessNameResponses = {
21990
+ /**
21991
+ * Successfully analyzed the business name
21992
+ */
21993
+ 200: {
21994
+ /**
21995
+ * The business name analyzed.
21996
+ */
21997
+ name: string;
21998
+ /**
21999
+ * Raw Chaldean letter total of the name.
22000
+ */
22001
+ total: number;
22002
+ /**
22003
+ * Chaldean compound number (10 to 52), the hidden influence, or null.
22004
+ */
22005
+ compound: number;
22006
+ /**
22007
+ * Single-digit business root (1 to 9), the outward commercial expression.
22008
+ */
22009
+ root: number;
22010
+ /**
22011
+ * Planetary ruler of the business root.
22012
+ */
22013
+ planet: string;
22014
+ /**
22015
+ * 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.
22016
+ */
22017
+ rating: 'excellent' | 'good' | 'caution' | 'avoid';
22018
+ /**
22019
+ * True when the compound number is one of Cheiro fortunate compounds, an extra positive signal layered over the root rating.
22020
+ */
22021
+ favorableCompound: boolean;
22022
+ /**
22023
+ * Industries the business root favors.
22024
+ */
22025
+ industries: Array<string>;
22026
+ /**
22027
+ * Plain-language guidance for using this number as a brand.
22028
+ */
22029
+ guidance: string;
22030
+ /**
22031
+ * Chaldean letter breakdown of the business name.
22032
+ */
22033
+ calculation: string;
22034
+ /**
22035
+ * Cheiro compound interpretation when present.
22036
+ */
22037
+ compoundMeaning: {
22038
+ /**
22039
+ * The compound number.
22040
+ */
22041
+ number: number;
22042
+ /**
22043
+ * Symbolic title, if any.
22044
+ */
22045
+ name: string;
22046
+ /**
22047
+ * Tenor of the compound.
22048
+ */
22049
+ nature: 'fortunate' | 'unfortunate' | 'mixed';
22050
+ /**
22051
+ * Cheiro interpretation.
22052
+ */
22053
+ meaning: string;
22054
+ /**
22055
+ * Series equivalent for 33 to 52.
22056
+ */
22057
+ sameAs?: number;
22058
+ };
22059
+ /**
22060
+ * One-line plain-language verdict for the business name.
22061
+ */
22062
+ summary: string;
22063
+ };
22064
+ };
22065
+
22066
+ export type PostNumerologyBusinessNameResponse = PostNumerologyBusinessNameResponses[keyof PostNumerologyBusinessNameResponses];
22067
+
21186
22068
  export type GetTarotCardsData = {
21187
22069
  body?: never;
21188
22070
  path?: never;
@@ -24263,11 +25145,11 @@ export type PostHumanDesignGatesResponse = PostHumanDesignGatesResponses[keyof P
24263
25145
 
24264
25146
  export type GetHumanDesignGatesByNumberData = {
24265
25147
  body?: never;
24266
- path?: {
25148
+ path: {
24267
25149
  /**
24268
25150
  * Gate number from 1 to 64.
24269
25151
  */
24270
- number?: number;
25152
+ number: number;
24271
25153
  };
24272
25154
  query?: {
24273
25155
  /**