@roxyapi/sdk 1.2.30 → 1.2.31

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.
@@ -15221,7 +15221,7 @@ export type PostVedicAstrologyTransitResponses = {
15221
15221
  */
15222
15222
  sign: string;
15223
15223
  /**
15224
- * House number (1-12) in the natal chart based on Placidus cusps.
15224
+ * Bhava (house) number 1-12, counted whole-sign from the Lagna (house 1 is the Lagna rashi).
15225
15225
  */
15226
15226
  house: number;
15227
15227
  }>;
@@ -15242,7 +15242,7 @@ export type PostVedicAstrologyTransitResponses = {
15242
15242
  */
15243
15243
  sign: string;
15244
15244
  /**
15245
- * Which natal house this planet is currently transiting through. Key for Gochar predictions.
15245
+ * Which natal house (whole-sign bhava from the Lagna) this planet is currently transiting through. Key for Gochar predictions.
15246
15246
  */
15247
15247
  natalHouse: number;
15248
15248
  /**
@@ -20345,17 +20345,49 @@ export type GetNumerologyMeaningsByNumberData = {
20345
20345
  };
20346
20346
  export type GetNumerologyMeaningsByNumberErrors = {
20347
20347
  /**
20348
- * Invalid number (must be 1-9, 11, 22, or 33)
20348
+ * Validation error. `issues[]` lists every failed field.
20349
20349
  */
20350
20350
  400: {
20351
20351
  /**
20352
- * Human-readable error message. May change wording — do not parse programmatically.
20352
+ * First issue summary.
20353
20353
  */
20354
20354
  error: string;
20355
+ code: 'validation_error';
20355
20356
  /**
20356
- * Machine-readable error code. Stable identifier for programmatic error handling.
20357
+ * Every validation failure. Use this to rebuild a valid request.
20357
20358
  */
20358
- code: string;
20359
+ issues: Array<{
20360
+ /**
20361
+ * Dot-separated field path, or "(root)" for top-level.
20362
+ */
20363
+ path: string;
20364
+ message: string;
20365
+ /**
20366
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
20367
+ */
20368
+ code?: string;
20369
+ /**
20370
+ * Expected type for invalid_type.
20371
+ */
20372
+ expected?: string;
20373
+ /**
20374
+ * Minimum bound for too_small issues.
20375
+ */
20376
+ minimum?: number | string;
20377
+ /**
20378
+ * Maximum bound for too_big issues.
20379
+ */
20380
+ maximum?: number | string;
20381
+ inclusive?: boolean;
20382
+ /**
20383
+ * Format name for string issues (regex, email, url, uuid).
20384
+ */
20385
+ format?: string;
20386
+ /**
20387
+ * Regex pattern when format is regex.
20388
+ */
20389
+ pattern?: string;
20390
+ }>;
20359
20391
  };
20360
20392
  /**
20361
20393
  * Invalid or missing API key
@@ -22235,6 +22267,2785 @@ export type PostTarotSpreadsCustomResponses = {
22235
22267
  };
22236
22268
  };
22237
22269
  export type PostTarotSpreadsCustomResponse = PostTarotSpreadsCustomResponses[keyof PostTarotSpreadsCustomResponses];
22270
+ export type PostHumanDesignBodygraphData = {
22271
+ body?: {
22272
+ /**
22273
+ * Birth date in YYYY-MM-DD format. The anchor for both the Personality activations at birth and the Design activations 88 degrees of solar arc earlier.
22274
+ */
22275
+ date: string;
22276
+ /**
22277
+ * Birth time in 24-hour HH:MM:SS format. Precision matters: the profile lines and gate boundaries shift with the exact minute of birth.
22278
+ */
22279
+ time: string;
22280
+ /**
22281
+ * Decimal hours (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "America/New_York", "UTC"). IANA is resolved to the DST-correct offset for the request date. Invalid timezones return 400 with a validation error.
22282
+ */
22283
+ timezone: number | string;
22284
+ /**
22285
+ * Birth latitude in decimal degrees. Optional and does not affect the bodygraph, which depends only on ecliptic longitudes. Defaults to 0.
22286
+ */
22287
+ latitude?: number;
22288
+ /**
22289
+ * Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0.
22290
+ */
22291
+ longitude?: number;
22292
+ };
22293
+ path?: never;
22294
+ query?: {
22295
+ /**
22296
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
22297
+ */
22298
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
22299
+ };
22300
+ url: '/human-design/bodygraph';
22301
+ };
22302
+ export type PostHumanDesignBodygraphErrors = {
22303
+ /**
22304
+ * Validation error. `issues[]` lists every failed field.
22305
+ */
22306
+ 400: {
22307
+ /**
22308
+ * First issue summary.
22309
+ */
22310
+ error: string;
22311
+ code: 'validation_error';
22312
+ /**
22313
+ * Every validation failure. Use this to rebuild a valid request.
22314
+ */
22315
+ issues: Array<{
22316
+ /**
22317
+ * Dot-separated field path, or "(root)" for top-level.
22318
+ */
22319
+ path: string;
22320
+ message: string;
22321
+ /**
22322
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
22323
+ */
22324
+ code?: string;
22325
+ /**
22326
+ * Expected type for invalid_type.
22327
+ */
22328
+ expected?: string;
22329
+ /**
22330
+ * Minimum bound for too_small issues.
22331
+ */
22332
+ minimum?: number | string;
22333
+ /**
22334
+ * Maximum bound for too_big issues.
22335
+ */
22336
+ maximum?: number | string;
22337
+ inclusive?: boolean;
22338
+ /**
22339
+ * Format name for string issues (regex, email, url, uuid).
22340
+ */
22341
+ format?: string;
22342
+ /**
22343
+ * Regex pattern when format is regex.
22344
+ */
22345
+ pattern?: string;
22346
+ }>;
22347
+ };
22348
+ /**
22349
+ * Invalid or missing API key
22350
+ */
22351
+ 401: {
22352
+ /**
22353
+ * Human-readable error message. May change wording.
22354
+ */
22355
+ error: string;
22356
+ /**
22357
+ * Machine-readable error code. Stable identifier.
22358
+ */
22359
+ code: string;
22360
+ };
22361
+ /**
22362
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
22363
+ */
22364
+ 405: {
22365
+ error: string;
22366
+ code: 'method_not_allowed';
22367
+ /**
22368
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
22369
+ */
22370
+ allow: Array<string>;
22371
+ /**
22372
+ * Link to the product page for this domain.
22373
+ */
22374
+ docs?: string;
22375
+ };
22376
+ /**
22377
+ * Monthly rate limit exceeded
22378
+ */
22379
+ 429: {
22380
+ /**
22381
+ * Human-readable error message. May change wording.
22382
+ */
22383
+ error: string;
22384
+ /**
22385
+ * Machine-readable error code. Stable identifier.
22386
+ */
22387
+ code: string;
22388
+ };
22389
+ /**
22390
+ * Internal server error
22391
+ */
22392
+ 500: {
22393
+ /**
22394
+ * Human-readable error message. May change wording.
22395
+ */
22396
+ error: string;
22397
+ /**
22398
+ * Machine-readable error code. Stable identifier.
22399
+ */
22400
+ code: string;
22401
+ };
22402
+ };
22403
+ export type PostHumanDesignBodygraphError = PostHumanDesignBodygraphErrors[keyof PostHumanDesignBodygraphErrors];
22404
+ export type PostHumanDesignBodygraphResponses = {
22405
+ /**
22406
+ * Complete bodygraph with type, authority, profile, centers, channels, and gates
22407
+ */
22408
+ 200: {
22409
+ /**
22410
+ * Human Design energy type. One of Manifestor, Generator, Manifesting Generator, Projector, Reflector.
22411
+ */
22412
+ type: string;
22413
+ /**
22414
+ * The aura strategy for engaging life correctly for this type.
22415
+ */
22416
+ strategy: string;
22417
+ /**
22418
+ * Inner authority for decision making. One of Emotional, Sacral, Splenic, Ego, Self-Projected, Mental, Lunar.
22419
+ */
22420
+ authority: string;
22421
+ /**
22422
+ * The signature feeling of living in alignment with the type.
22423
+ */
22424
+ signature: string;
22425
+ /**
22426
+ * The not-self theme, the recurring feeling that signals being out of alignment.
22427
+ */
22428
+ notSelf: string;
22429
+ /**
22430
+ * Profile in conscious/unconscious form from the Personality Sun line over the Design Sun line.
22431
+ */
22432
+ profile: string;
22433
+ /**
22434
+ * Definition type from the number of connected components among defined centers. One of None, Single, Split, Triple Split, Quadruple Split.
22435
+ */
22436
+ definition: string;
22437
+ /**
22438
+ * The incarnation cross built from the four cardinal gates and the profile angle.
22439
+ */
22440
+ incarnationCross: {
22441
+ /**
22442
+ * The four cardinal gates of the cross: Personality Sun, Personality Earth, Design Sun, Design Earth.
22443
+ */
22444
+ gates: Array<number>;
22445
+ /**
22446
+ * Cross angle. One of Right Angle, Juxtaposition, Left Angle.
22447
+ */
22448
+ angle: string;
22449
+ /**
22450
+ * Short code for the angle. One of RAX, JXT, LAX.
22451
+ */
22452
+ angleCode: string;
22453
+ /**
22454
+ * Composed name of the incarnation cross from the angle and the four gates.
22455
+ */
22456
+ name: string;
22457
+ };
22458
+ /**
22459
+ * All nine centers with their defined state and active gates.
22460
+ */
22461
+ centers: Array<{
22462
+ /**
22463
+ * Center identifier. One of head, ajna, throat, g, heart, sacral, solar-plexus, spleen, root.
22464
+ */
22465
+ id: string;
22466
+ /**
22467
+ * Display name of the center.
22468
+ */
22469
+ name: string;
22470
+ /**
22471
+ * Whether the center is defined. A defined center is a consistent source of energy or awareness; an undefined center is open and conditioned by others.
22472
+ */
22473
+ defined: boolean;
22474
+ /**
22475
+ * Whether this is a motor center (energy source). The four motors are Heart, Sacral, Solar Plexus, and Root.
22476
+ */
22477
+ motor: boolean;
22478
+ /**
22479
+ * Whether this is an awareness center. The three awareness centers are Ajna, Solar Plexus, and Spleen.
22480
+ */
22481
+ awareness: boolean;
22482
+ /**
22483
+ * Theme text describing the center in its current defined or undefined state.
22484
+ */
22485
+ theme: string;
22486
+ /**
22487
+ * Active gate numbers that sit in this center.
22488
+ */
22489
+ gates: Array<number>;
22490
+ }>;
22491
+ /**
22492
+ * The defined channels where both gates are activated.
22493
+ */
22494
+ channels: Array<{
22495
+ /**
22496
+ * First gate of the channel.
22497
+ */
22498
+ gateA: number;
22499
+ /**
22500
+ * Second gate of the channel.
22501
+ */
22502
+ gateB: number;
22503
+ /**
22504
+ * Name of the defined channel.
22505
+ */
22506
+ name: string;
22507
+ /**
22508
+ * Circuit family of the channel. One of Individual, Collective, Tribal.
22509
+ */
22510
+ circuit: string;
22511
+ /**
22512
+ * The two centers this channel connects and defines.
22513
+ */
22514
+ centers: Array<string>;
22515
+ }>;
22516
+ /**
22517
+ * All 26 activations, 13 Personality and 13 Design.
22518
+ */
22519
+ gates: Array<{
22520
+ /**
22521
+ * Activating body. One of Sun, Earth, Moon, North Node, South Node, Mercury, Venus, Mars, Jupiter, Saturn, Uranus, Neptune, Pluto.
22522
+ */
22523
+ planet: string;
22524
+ /**
22525
+ * Chart side. personality is the conscious birth-moment activation, design is the unconscious activation 88 degrees of solar arc before birth.
22526
+ */
22527
+ side: string;
22528
+ /**
22529
+ * Human Design gate number from 1 to 64 that this activation falls in.
22530
+ */
22531
+ gate: number;
22532
+ /**
22533
+ * Line number from 1 to 6 within the gate, setting the line keynote and the profile.
22534
+ */
22535
+ line: number;
22536
+ /**
22537
+ * Human Design keynote name of the gate, describing its bodygraph function.
22538
+ */
22539
+ gateName: string;
22540
+ /**
22541
+ * Cross-reference to the I-Ching hexagram that shares this gate number.
22542
+ */
22543
+ ichingHexagram: {
22544
+ /**
22545
+ * I-Ching hexagram number, identical to the gate number it corresponds to.
22546
+ */
22547
+ number: number;
22548
+ /**
22549
+ * English name of the corresponding I-Ching hexagram.
22550
+ */
22551
+ english: string;
22552
+ };
22553
+ }>;
22554
+ };
22555
+ };
22556
+ export type PostHumanDesignBodygraphResponse = PostHumanDesignBodygraphResponses[keyof PostHumanDesignBodygraphResponses];
22557
+ export type PostHumanDesignConnectionData = {
22558
+ body?: {
22559
+ /**
22560
+ * Birth moment of the first person in the connection.
22561
+ */
22562
+ personA: {
22563
+ /**
22564
+ * Birth date in YYYY-MM-DD format. The anchor for both the Personality activations at birth and the Design activations 88 degrees of solar arc earlier.
22565
+ */
22566
+ date: string;
22567
+ /**
22568
+ * Birth time in 24-hour HH:MM:SS format. Precision matters: the profile lines and gate boundaries shift with the exact minute of birth.
22569
+ */
22570
+ time: string;
22571
+ /**
22572
+ * Decimal hours (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "America/New_York", "UTC"). IANA is resolved to the DST-correct offset for the request date. Invalid timezones return 400 with a validation error.
22573
+ */
22574
+ timezone: number | string;
22575
+ /**
22576
+ * Birth latitude in decimal degrees. Optional and does not affect the bodygraph, which depends only on ecliptic longitudes. Defaults to 0.
22577
+ */
22578
+ latitude?: number;
22579
+ /**
22580
+ * Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0.
22581
+ */
22582
+ longitude?: number;
22583
+ };
22584
+ /**
22585
+ * Birth moment of the second person in the connection.
22586
+ */
22587
+ personB: {
22588
+ /**
22589
+ * Birth date in YYYY-MM-DD format. The anchor for both the Personality activations at birth and the Design activations 88 degrees of solar arc earlier.
22590
+ */
22591
+ date: string;
22592
+ /**
22593
+ * Birth time in 24-hour HH:MM:SS format. Precision matters: the profile lines and gate boundaries shift with the exact minute of birth.
22594
+ */
22595
+ time: string;
22596
+ /**
22597
+ * Decimal hours (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "America/New_York", "UTC"). IANA is resolved to the DST-correct offset for the request date. Invalid timezones return 400 with a validation error.
22598
+ */
22599
+ timezone: number | string;
22600
+ /**
22601
+ * Birth latitude in decimal degrees. Optional and does not affect the bodygraph, which depends only on ecliptic longitudes. Defaults to 0.
22602
+ */
22603
+ latitude?: number;
22604
+ /**
22605
+ * Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0.
22606
+ */
22607
+ longitude?: number;
22608
+ };
22609
+ };
22610
+ path?: never;
22611
+ query?: {
22612
+ /**
22613
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
22614
+ */
22615
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
22616
+ };
22617
+ url: '/human-design/connection';
22618
+ };
22619
+ export type PostHumanDesignConnectionErrors = {
22620
+ /**
22621
+ * Validation error. `issues[]` lists every failed field.
22622
+ */
22623
+ 400: {
22624
+ /**
22625
+ * First issue summary.
22626
+ */
22627
+ error: string;
22628
+ code: 'validation_error';
22629
+ /**
22630
+ * Every validation failure. Use this to rebuild a valid request.
22631
+ */
22632
+ issues: Array<{
22633
+ /**
22634
+ * Dot-separated field path, or "(root)" for top-level.
22635
+ */
22636
+ path: string;
22637
+ message: string;
22638
+ /**
22639
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
22640
+ */
22641
+ code?: string;
22642
+ /**
22643
+ * Expected type for invalid_type.
22644
+ */
22645
+ expected?: string;
22646
+ /**
22647
+ * Minimum bound for too_small issues.
22648
+ */
22649
+ minimum?: number | string;
22650
+ /**
22651
+ * Maximum bound for too_big issues.
22652
+ */
22653
+ maximum?: number | string;
22654
+ inclusive?: boolean;
22655
+ /**
22656
+ * Format name for string issues (regex, email, url, uuid).
22657
+ */
22658
+ format?: string;
22659
+ /**
22660
+ * Regex pattern when format is regex.
22661
+ */
22662
+ pattern?: string;
22663
+ }>;
22664
+ };
22665
+ /**
22666
+ * Invalid or missing API key
22667
+ */
22668
+ 401: {
22669
+ /**
22670
+ * Human-readable error message. May change wording.
22671
+ */
22672
+ error: string;
22673
+ /**
22674
+ * Machine-readable error code. Stable identifier.
22675
+ */
22676
+ code: string;
22677
+ };
22678
+ /**
22679
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
22680
+ */
22681
+ 405: {
22682
+ error: string;
22683
+ code: 'method_not_allowed';
22684
+ /**
22685
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
22686
+ */
22687
+ allow: Array<string>;
22688
+ /**
22689
+ * Link to the product page for this domain.
22690
+ */
22691
+ docs?: string;
22692
+ };
22693
+ /**
22694
+ * Monthly rate limit exceeded
22695
+ */
22696
+ 429: {
22697
+ /**
22698
+ * Human-readable error message. May change wording.
22699
+ */
22700
+ error: string;
22701
+ /**
22702
+ * Machine-readable error code. Stable identifier.
22703
+ */
22704
+ code: string;
22705
+ };
22706
+ /**
22707
+ * Internal server error
22708
+ */
22709
+ 500: {
22710
+ /**
22711
+ * Human-readable error message. May change wording.
22712
+ */
22713
+ error: string;
22714
+ /**
22715
+ * Machine-readable error code. Stable identifier.
22716
+ */
22717
+ code: string;
22718
+ };
22719
+ };
22720
+ export type PostHumanDesignConnectionError = PostHumanDesignConnectionErrors[keyof PostHumanDesignConnectionErrors];
22721
+ export type PostHumanDesignConnectionResponses = {
22722
+ /**
22723
+ * Connection chart with per-channel dynamics, combined centers, definition, and a dynamic count
22724
+ */
22725
+ 200: {
22726
+ /**
22727
+ * Total number of connected channels between the two people. Equals the length of channels and the sum of the summary counts.
22728
+ */
22729
+ totalChannels: number;
22730
+ /**
22731
+ * Every connected channel between the two people with its dynamic. A channel is connected when the two people together hold both of its gates.
22732
+ */
22733
+ channels: Array<{
22734
+ /**
22735
+ * First gate of the channel.
22736
+ */
22737
+ gateA: number;
22738
+ /**
22739
+ * Second gate of the channel.
22740
+ */
22741
+ gateB: number;
22742
+ /**
22743
+ * Name of the channel whose connection dynamic is reported.
22744
+ */
22745
+ name: string;
22746
+ /**
22747
+ * Circuit family of the channel. One of Individual, Collective, Tribal.
22748
+ */
22749
+ circuit: string;
22750
+ /**
22751
+ * The two centers this channel connects in the bodygraph.
22752
+ */
22753
+ centers: Array<string>;
22754
+ /**
22755
+ * Connection dynamic for this channel. Electromagnetic means each person holds one of the two gates and the channel completes only together, the classic point of attraction. Dominance means one person holds both gates and the other holds neither, a one-way conditioning. Compromise means one person holds both gates and the other holds a single hanging gate. Companionship means both people independently hold both gates, a shared and familiar frequency.
22756
+ */
22757
+ dynamic: string;
22758
+ /**
22759
+ * Which of the channel two gates person A holds, from one to both.
22760
+ */
22761
+ personAGates: Array<number>;
22762
+ /**
22763
+ * Which of the channel two gates person B holds, from one to both.
22764
+ */
22765
+ personBGates: Array<number>;
22766
+ }>;
22767
+ /**
22768
+ * All nine centers with their defined state in the combined connection bodygraph and which person defines each.
22769
+ */
22770
+ centers: Array<{
22771
+ /**
22772
+ * Center identifier. One of head, ajna, throat, g, heart, sacral, solar-plexus, spleen, root.
22773
+ */
22774
+ id: string;
22775
+ /**
22776
+ * Display name of the center.
22777
+ */
22778
+ name: string;
22779
+ /**
22780
+ * Whether the center is defined in the combined connection bodygraph, where a channel counts as defined when the two people together hold both of its gates.
22781
+ */
22782
+ defined: boolean;
22783
+ /**
22784
+ * Who defines this center in their own chart. A, B, both, or empty when the center is open in both individual charts.
22785
+ */
22786
+ definedBy: Array<string>;
22787
+ }>;
22788
+ /**
22789
+ * Definition of the combined connection bodygraph from connected components among its defined centers. One of None, Single, Split, Triple Split, Quadruple Split.
22790
+ */
22791
+ combinedDefinition: string;
22792
+ /**
22793
+ * Count of each connection dynamic across all connected channels.
22794
+ */
22795
+ summary: {
22796
+ /**
22797
+ * Count of electromagnetic channels, the points of mutual attraction.
22798
+ */
22799
+ electromagnetic: number;
22800
+ /**
22801
+ * Count of dominance channels, where one person conditions the other one way.
22802
+ */
22803
+ dominance: number;
22804
+ /**
22805
+ * Count of compromise channels, a full channel meeting a single hanging gate.
22806
+ */
22807
+ compromise: number;
22808
+ /**
22809
+ * Count of companionship channels, where both people share the whole channel.
22810
+ */
22811
+ companionship: number;
22812
+ };
22813
+ };
22814
+ };
22815
+ export type PostHumanDesignConnectionResponse = PostHumanDesignConnectionResponses[keyof PostHumanDesignConnectionResponses];
22816
+ export type PostHumanDesignTransitData = {
22817
+ body?: {
22818
+ /**
22819
+ * Birth moment whose natal bodygraph the transit is overlaid on.
22820
+ */
22821
+ birthData: {
22822
+ /**
22823
+ * Birth date in YYYY-MM-DD format. The anchor for both the Personality activations at birth and the Design activations 88 degrees of solar arc earlier.
22824
+ */
22825
+ date: string;
22826
+ /**
22827
+ * Birth time in 24-hour HH:MM:SS format. Precision matters: the profile lines and gate boundaries shift with the exact minute of birth.
22828
+ */
22829
+ time: string;
22830
+ /**
22831
+ * Decimal hours (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "America/New_York", "UTC"). IANA is resolved to the DST-correct offset for the request date. Invalid timezones return 400 with a validation error.
22832
+ */
22833
+ timezone: number | string;
22834
+ /**
22835
+ * Birth latitude in decimal degrees. Optional and does not affect the bodygraph, which depends only on ecliptic longitudes. Defaults to 0.
22836
+ */
22837
+ latitude?: number;
22838
+ /**
22839
+ * Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0.
22840
+ */
22841
+ longitude?: number;
22842
+ };
22843
+ /**
22844
+ * Transit date in YYYY-MM-DD UTC. Optional. Defaults to today in UTC when omitted, giving the just-now transit.
22845
+ */
22846
+ date?: string;
22847
+ /**
22848
+ * Transit time in HH:MM:SS UTC. Optional. Defaults to the current UTC time when omitted. Precision matters: the Moon moves through a gate in roughly half a day.
22849
+ */
22850
+ time?: string;
22851
+ };
22852
+ path?: never;
22853
+ query?: {
22854
+ /**
22855
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
22856
+ */
22857
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
22858
+ };
22859
+ url: '/human-design/transit';
22860
+ };
22861
+ export type PostHumanDesignTransitErrors = {
22862
+ /**
22863
+ * Validation error. `issues[]` lists every failed field.
22864
+ */
22865
+ 400: {
22866
+ /**
22867
+ * First issue summary.
22868
+ */
22869
+ error: string;
22870
+ code: 'validation_error';
22871
+ /**
22872
+ * Every validation failure. Use this to rebuild a valid request.
22873
+ */
22874
+ issues: Array<{
22875
+ /**
22876
+ * Dot-separated field path, or "(root)" for top-level.
22877
+ */
22878
+ path: string;
22879
+ message: string;
22880
+ /**
22881
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
22882
+ */
22883
+ code?: string;
22884
+ /**
22885
+ * Expected type for invalid_type.
22886
+ */
22887
+ expected?: string;
22888
+ /**
22889
+ * Minimum bound for too_small issues.
22890
+ */
22891
+ minimum?: number | string;
22892
+ /**
22893
+ * Maximum bound for too_big issues.
22894
+ */
22895
+ maximum?: number | string;
22896
+ inclusive?: boolean;
22897
+ /**
22898
+ * Format name for string issues (regex, email, url, uuid).
22899
+ */
22900
+ format?: string;
22901
+ /**
22902
+ * Regex pattern when format is regex.
22903
+ */
22904
+ pattern?: string;
22905
+ }>;
22906
+ };
22907
+ /**
22908
+ * Invalid or missing API key
22909
+ */
22910
+ 401: {
22911
+ /**
22912
+ * Human-readable error message. May change wording.
22913
+ */
22914
+ error: string;
22915
+ /**
22916
+ * Machine-readable error code. Stable identifier.
22917
+ */
22918
+ code: string;
22919
+ };
22920
+ /**
22921
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
22922
+ */
22923
+ 405: {
22924
+ error: string;
22925
+ code: 'method_not_allowed';
22926
+ /**
22927
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
22928
+ */
22929
+ allow: Array<string>;
22930
+ /**
22931
+ * Link to the product page for this domain.
22932
+ */
22933
+ docs?: string;
22934
+ };
22935
+ /**
22936
+ * Monthly rate limit exceeded
22937
+ */
22938
+ 429: {
22939
+ /**
22940
+ * Human-readable error message. May change wording.
22941
+ */
22942
+ error: string;
22943
+ /**
22944
+ * Machine-readable error code. Stable identifier.
22945
+ */
22946
+ code: string;
22947
+ };
22948
+ /**
22949
+ * Internal server error
22950
+ */
22951
+ 500: {
22952
+ /**
22953
+ * Human-readable error message. May change wording.
22954
+ */
22955
+ error: string;
22956
+ /**
22957
+ * Machine-readable error code. Stable identifier.
22958
+ */
22959
+ code: string;
22960
+ };
22961
+ };
22962
+ export type PostHumanDesignTransitError = PostHumanDesignTransitErrors[keyof PostHumanDesignTransitErrors];
22963
+ export type PostHumanDesignTransitResponses = {
22964
+ /**
22965
+ * Transit overlay with transiting activations, completed channels, temporary centers, and a summary
22966
+ */
22967
+ 200: {
22968
+ /**
22969
+ * Date the transit overlay was computed for, in YYYY-MM-DD UTC.
22970
+ */
22971
+ date: string;
22972
+ /**
22973
+ * Time the transit overlay was computed for, in HH:MM:SS UTC.
22974
+ */
22975
+ time: string;
22976
+ /**
22977
+ * UTC offset of the transit moment. Always 0, since the transit is computed in UTC.
22978
+ */
22979
+ timezone: number;
22980
+ /**
22981
+ * The 13 transiting bodies at this moment with the gate and line each currently activates. A transit is a single instant, so there is no Design side, only current positions.
22982
+ */
22983
+ activations: Array<{
22984
+ /**
22985
+ * Transiting body whose current position lands on this gate. One of Sun, Earth, Moon, North Node, South Node, Mercury, Venus, Mars, Jupiter, Saturn, Uranus, Neptune, Pluto.
22986
+ */
22987
+ body: string;
22988
+ /**
22989
+ * Human Design gate number from 1 to 64 this transiting body currently sits in.
22990
+ */
22991
+ gate: number;
22992
+ /**
22993
+ * Line number from 1 to 6 within the gate, setting the line keynote of the transit.
22994
+ */
22995
+ line: number;
22996
+ /**
22997
+ * Human Design keynote name of the gate the transiting body activates.
22998
+ */
22999
+ gateName: string;
23000
+ /**
23001
+ * Cross-reference to the I-Ching hexagram that shares this gate number.
23002
+ */
23003
+ ichingHexagram: {
23004
+ /**
23005
+ * I-Ching hexagram number, identical to the gate number it corresponds to.
23006
+ */
23007
+ number: number;
23008
+ /**
23009
+ * English name of the corresponding I-Ching hexagram.
23010
+ */
23011
+ english: string;
23012
+ };
23013
+ }>;
23014
+ /**
23015
+ * Channels the transit temporarily completes that the natal chart did not already define, each labelled personal or educational with the side that supplied each gate.
23016
+ */
23017
+ completedChannels: Array<{
23018
+ /**
23019
+ * First gate of the completed channel.
23020
+ */
23021
+ gateA: number;
23022
+ /**
23023
+ * Second gate of the completed channel.
23024
+ */
23025
+ gateB: number;
23026
+ /**
23027
+ * Name of the channel the transit temporarily completes.
23028
+ */
23029
+ name: string;
23030
+ /**
23031
+ * Circuit family of the channel. One of Individual, Collective, Tribal.
23032
+ */
23033
+ circuit: string;
23034
+ /**
23035
+ * The two centers this channel connects and temporarily defines.
23036
+ */
23037
+ centers: Array<string>;
23038
+ /**
23039
+ * How the transit completes the channel. personal means the natal chart already holds one gate and the transit supplies the other, the classic electromagnetic completion. educational means both gates are open in the natal chart and the transit supplies both at once.
23040
+ */
23041
+ kind: string;
23042
+ /**
23043
+ * Gate or gates of this channel the natal chart already holds. Empty for an educational channel.
23044
+ */
23045
+ natalGates: Array<number>;
23046
+ /**
23047
+ * Gate or gates of this channel supplied by the transit. One gate for a personal channel, both gates for an educational channel.
23048
+ */
23049
+ transitGates: Array<number>;
23050
+ }>;
23051
+ /**
23052
+ * Centers that are open in the natal chart and temporarily defined by a transit-completed channel.
23053
+ */
23054
+ temporaryCenters: Array<{
23055
+ /**
23056
+ * Center identifier. One of head, ajna, throat, g, heart, sacral, solar-plexus, spleen, root.
23057
+ */
23058
+ id: string;
23059
+ /**
23060
+ * Display name of the center.
23061
+ */
23062
+ name: string;
23063
+ /**
23064
+ * Always true. The center is open in the natal chart and temporarily defined by a transit-completed channel for the duration of the transit.
23065
+ */
23066
+ temporarilyDefined: boolean;
23067
+ }>;
23068
+ /**
23069
+ * Short factual summary of the overlay with channel and center counts only.
23070
+ */
23071
+ summary: string;
23072
+ };
23073
+ };
23074
+ export type PostHumanDesignTransitResponse = PostHumanDesignTransitResponses[keyof PostHumanDesignTransitResponses];
23075
+ export type PostHumanDesignTypeData = {
23076
+ body?: {
23077
+ /**
23078
+ * Birth date in YYYY-MM-DD format. The anchor for both the Personality activations at birth and the Design activations 88 degrees of solar arc earlier.
23079
+ */
23080
+ date: string;
23081
+ /**
23082
+ * Birth time in 24-hour HH:MM:SS format. Precision matters: the profile lines and gate boundaries shift with the exact minute of birth.
23083
+ */
23084
+ time: string;
23085
+ /**
23086
+ * Decimal hours (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "America/New_York", "UTC"). IANA is resolved to the DST-correct offset for the request date. Invalid timezones return 400 with a validation error.
23087
+ */
23088
+ timezone: number | string;
23089
+ /**
23090
+ * Birth latitude in decimal degrees. Optional and does not affect the bodygraph, which depends only on ecliptic longitudes. Defaults to 0.
23091
+ */
23092
+ latitude?: number;
23093
+ /**
23094
+ * Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0.
23095
+ */
23096
+ longitude?: number;
23097
+ };
23098
+ path?: never;
23099
+ query?: {
23100
+ /**
23101
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
23102
+ */
23103
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
23104
+ };
23105
+ url: '/human-design/type';
23106
+ };
23107
+ export type PostHumanDesignTypeErrors = {
23108
+ /**
23109
+ * Validation error. `issues[]` lists every failed field.
23110
+ */
23111
+ 400: {
23112
+ /**
23113
+ * First issue summary.
23114
+ */
23115
+ error: string;
23116
+ code: 'validation_error';
23117
+ /**
23118
+ * Every validation failure. Use this to rebuild a valid request.
23119
+ */
23120
+ issues: Array<{
23121
+ /**
23122
+ * Dot-separated field path, or "(root)" for top-level.
23123
+ */
23124
+ path: string;
23125
+ message: string;
23126
+ /**
23127
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
23128
+ */
23129
+ code?: string;
23130
+ /**
23131
+ * Expected type for invalid_type.
23132
+ */
23133
+ expected?: string;
23134
+ /**
23135
+ * Minimum bound for too_small issues.
23136
+ */
23137
+ minimum?: number | string;
23138
+ /**
23139
+ * Maximum bound for too_big issues.
23140
+ */
23141
+ maximum?: number | string;
23142
+ inclusive?: boolean;
23143
+ /**
23144
+ * Format name for string issues (regex, email, url, uuid).
23145
+ */
23146
+ format?: string;
23147
+ /**
23148
+ * Regex pattern when format is regex.
23149
+ */
23150
+ pattern?: string;
23151
+ }>;
23152
+ };
23153
+ /**
23154
+ * Invalid or missing API key
23155
+ */
23156
+ 401: {
23157
+ /**
23158
+ * Human-readable error message. May change wording.
23159
+ */
23160
+ error: string;
23161
+ /**
23162
+ * Machine-readable error code. Stable identifier.
23163
+ */
23164
+ code: string;
23165
+ };
23166
+ /**
23167
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
23168
+ */
23169
+ 405: {
23170
+ error: string;
23171
+ code: 'method_not_allowed';
23172
+ /**
23173
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
23174
+ */
23175
+ allow: Array<string>;
23176
+ /**
23177
+ * Link to the product page for this domain.
23178
+ */
23179
+ docs?: string;
23180
+ };
23181
+ /**
23182
+ * Monthly rate limit exceeded
23183
+ */
23184
+ 429: {
23185
+ /**
23186
+ * Human-readable error message. May change wording.
23187
+ */
23188
+ error: string;
23189
+ /**
23190
+ * Machine-readable error code. Stable identifier.
23191
+ */
23192
+ code: string;
23193
+ };
23194
+ /**
23195
+ * Internal server error
23196
+ */
23197
+ 500: {
23198
+ /**
23199
+ * Human-readable error message. May change wording.
23200
+ */
23201
+ error: string;
23202
+ /**
23203
+ * Machine-readable error code. Stable identifier.
23204
+ */
23205
+ code: string;
23206
+ };
23207
+ };
23208
+ export type PostHumanDesignTypeError = PostHumanDesignTypeErrors[keyof PostHumanDesignTypeErrors];
23209
+ export type PostHumanDesignTypeResponses = {
23210
+ /**
23211
+ * Type, strategy, authority, signature, not-self theme, and profile
23212
+ */
23213
+ 200: {
23214
+ /**
23215
+ * Human Design energy type. One of Manifestor, Generator, Manifesting Generator, Projector, Reflector.
23216
+ */
23217
+ type: string;
23218
+ /**
23219
+ * The aura strategy for engaging life correctly for this type.
23220
+ */
23221
+ strategy: string;
23222
+ /**
23223
+ * Inner authority for decision making. One of Emotional, Sacral, Splenic, Ego, Self-Projected, Mental, Lunar.
23224
+ */
23225
+ authority: string;
23226
+ /**
23227
+ * The signature feeling of living in alignment.
23228
+ */
23229
+ signature: string;
23230
+ /**
23231
+ * The not-self theme that signals being out of alignment.
23232
+ */
23233
+ notSelf: string;
23234
+ /**
23235
+ * Profile from the Personality Sun line over the Design Sun line.
23236
+ */
23237
+ profile: string;
23238
+ };
23239
+ };
23240
+ export type PostHumanDesignTypeResponse = PostHumanDesignTypeResponses[keyof PostHumanDesignTypeResponses];
23241
+ export type PostHumanDesignGatesData = {
23242
+ body?: {
23243
+ /**
23244
+ * Birth date in YYYY-MM-DD format. The anchor for both the Personality activations at birth and the Design activations 88 degrees of solar arc earlier.
23245
+ */
23246
+ date: string;
23247
+ /**
23248
+ * Birth time in 24-hour HH:MM:SS format. Precision matters: the profile lines and gate boundaries shift with the exact minute of birth.
23249
+ */
23250
+ time: string;
23251
+ /**
23252
+ * Decimal hours (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "America/New_York", "UTC"). IANA is resolved to the DST-correct offset for the request date. Invalid timezones return 400 with a validation error.
23253
+ */
23254
+ timezone: number | string;
23255
+ /**
23256
+ * Birth latitude in decimal degrees. Optional and does not affect the bodygraph, which depends only on ecliptic longitudes. Defaults to 0.
23257
+ */
23258
+ latitude?: number;
23259
+ /**
23260
+ * Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0.
23261
+ */
23262
+ longitude?: number;
23263
+ };
23264
+ path?: never;
23265
+ query?: {
23266
+ /**
23267
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
23268
+ */
23269
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
23270
+ };
23271
+ url: '/human-design/gates';
23272
+ };
23273
+ export type PostHumanDesignGatesErrors = {
23274
+ /**
23275
+ * Validation error. `issues[]` lists every failed field.
23276
+ */
23277
+ 400: {
23278
+ /**
23279
+ * First issue summary.
23280
+ */
23281
+ error: string;
23282
+ code: 'validation_error';
23283
+ /**
23284
+ * Every validation failure. Use this to rebuild a valid request.
23285
+ */
23286
+ issues: Array<{
23287
+ /**
23288
+ * Dot-separated field path, or "(root)" for top-level.
23289
+ */
23290
+ path: string;
23291
+ message: string;
23292
+ /**
23293
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
23294
+ */
23295
+ code?: string;
23296
+ /**
23297
+ * Expected type for invalid_type.
23298
+ */
23299
+ expected?: string;
23300
+ /**
23301
+ * Minimum bound for too_small issues.
23302
+ */
23303
+ minimum?: number | string;
23304
+ /**
23305
+ * Maximum bound for too_big issues.
23306
+ */
23307
+ maximum?: number | string;
23308
+ inclusive?: boolean;
23309
+ /**
23310
+ * Format name for string issues (regex, email, url, uuid).
23311
+ */
23312
+ format?: string;
23313
+ /**
23314
+ * Regex pattern when format is regex.
23315
+ */
23316
+ pattern?: string;
23317
+ }>;
23318
+ };
23319
+ /**
23320
+ * Invalid or missing API key
23321
+ */
23322
+ 401: {
23323
+ /**
23324
+ * Human-readable error message. May change wording.
23325
+ */
23326
+ error: string;
23327
+ /**
23328
+ * Machine-readable error code. Stable identifier.
23329
+ */
23330
+ code: string;
23331
+ };
23332
+ /**
23333
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
23334
+ */
23335
+ 405: {
23336
+ error: string;
23337
+ code: 'method_not_allowed';
23338
+ /**
23339
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
23340
+ */
23341
+ allow: Array<string>;
23342
+ /**
23343
+ * Link to the product page for this domain.
23344
+ */
23345
+ docs?: string;
23346
+ };
23347
+ /**
23348
+ * Monthly rate limit exceeded
23349
+ */
23350
+ 429: {
23351
+ /**
23352
+ * Human-readable error message. May change wording.
23353
+ */
23354
+ error: string;
23355
+ /**
23356
+ * Machine-readable error code. Stable identifier.
23357
+ */
23358
+ code: string;
23359
+ };
23360
+ /**
23361
+ * Internal server error
23362
+ */
23363
+ 500: {
23364
+ /**
23365
+ * Human-readable error message. May change wording.
23366
+ */
23367
+ error: string;
23368
+ /**
23369
+ * Machine-readable error code. Stable identifier.
23370
+ */
23371
+ code: string;
23372
+ };
23373
+ };
23374
+ export type PostHumanDesignGatesError = PostHumanDesignGatesErrors[keyof PostHumanDesignGatesErrors];
23375
+ export type PostHumanDesignGatesResponses = {
23376
+ /**
23377
+ * Personality and Design activation lists, 13 each
23378
+ */
23379
+ 200: {
23380
+ /**
23381
+ * The 13 conscious Personality activations computed at the exact birth moment, in black on a standard chart.
23382
+ */
23383
+ personality: Array<{
23384
+ /**
23385
+ * Activating body. One of Sun, Earth, Moon, North Node, South Node, Mercury, Venus, Mars, Jupiter, Saturn, Uranus, Neptune, Pluto.
23386
+ */
23387
+ planet: string;
23388
+ /**
23389
+ * Chart side. personality is the conscious birth-moment activation, design is the unconscious activation 88 degrees of solar arc before birth.
23390
+ */
23391
+ side: string;
23392
+ /**
23393
+ * Human Design gate number from 1 to 64 that this activation falls in.
23394
+ */
23395
+ gate: number;
23396
+ /**
23397
+ * Line number from 1 to 6 within the gate, setting the line keynote and the profile.
23398
+ */
23399
+ line: number;
23400
+ /**
23401
+ * Human Design keynote name of the gate, describing its bodygraph function.
23402
+ */
23403
+ gateName: string;
23404
+ /**
23405
+ * Cross-reference to the I-Ching hexagram that shares this gate number.
23406
+ */
23407
+ ichingHexagram: {
23408
+ /**
23409
+ * I-Ching hexagram number, identical to the gate number it corresponds to.
23410
+ */
23411
+ number: number;
23412
+ /**
23413
+ * English name of the corresponding I-Ching hexagram.
23414
+ */
23415
+ english: string;
23416
+ };
23417
+ }>;
23418
+ /**
23419
+ * The 13 unconscious Design activations computed 88 degrees of solar arc before birth, in red on a standard chart.
23420
+ */
23421
+ design: Array<{
23422
+ /**
23423
+ * Activating body. One of Sun, Earth, Moon, North Node, South Node, Mercury, Venus, Mars, Jupiter, Saturn, Uranus, Neptune, Pluto.
23424
+ */
23425
+ planet: string;
23426
+ /**
23427
+ * Chart side. personality is the conscious birth-moment activation, design is the unconscious activation 88 degrees of solar arc before birth.
23428
+ */
23429
+ side: string;
23430
+ /**
23431
+ * Human Design gate number from 1 to 64 that this activation falls in.
23432
+ */
23433
+ gate: number;
23434
+ /**
23435
+ * Line number from 1 to 6 within the gate, setting the line keynote and the profile.
23436
+ */
23437
+ line: number;
23438
+ /**
23439
+ * Human Design keynote name of the gate, describing its bodygraph function.
23440
+ */
23441
+ gateName: string;
23442
+ /**
23443
+ * Cross-reference to the I-Ching hexagram that shares this gate number.
23444
+ */
23445
+ ichingHexagram: {
23446
+ /**
23447
+ * I-Ching hexagram number, identical to the gate number it corresponds to.
23448
+ */
23449
+ number: number;
23450
+ /**
23451
+ * English name of the corresponding I-Ching hexagram.
23452
+ */
23453
+ english: string;
23454
+ };
23455
+ }>;
23456
+ };
23457
+ };
23458
+ export type PostHumanDesignGatesResponse = PostHumanDesignGatesResponses[keyof PostHumanDesignGatesResponses];
23459
+ export type GetHumanDesignGatesByNumberData = {
23460
+ body?: never;
23461
+ path?: {
23462
+ /**
23463
+ * Gate number from 1 to 64.
23464
+ */
23465
+ number?: number;
23466
+ };
23467
+ query?: {
23468
+ /**
23469
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
23470
+ */
23471
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
23472
+ };
23473
+ url: '/human-design/gates/{number}';
23474
+ };
23475
+ export type GetHumanDesignGatesByNumberErrors = {
23476
+ /**
23477
+ * Validation error. `issues[]` lists every failed field.
23478
+ */
23479
+ 400: {
23480
+ /**
23481
+ * First issue summary.
23482
+ */
23483
+ error: string;
23484
+ code: 'validation_error';
23485
+ /**
23486
+ * Every validation failure. Use this to rebuild a valid request.
23487
+ */
23488
+ issues: Array<{
23489
+ /**
23490
+ * Dot-separated field path, or "(root)" for top-level.
23491
+ */
23492
+ path: string;
23493
+ message: string;
23494
+ /**
23495
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
23496
+ */
23497
+ code?: string;
23498
+ /**
23499
+ * Expected type for invalid_type.
23500
+ */
23501
+ expected?: string;
23502
+ /**
23503
+ * Minimum bound for too_small issues.
23504
+ */
23505
+ minimum?: number | string;
23506
+ /**
23507
+ * Maximum bound for too_big issues.
23508
+ */
23509
+ maximum?: number | string;
23510
+ inclusive?: boolean;
23511
+ /**
23512
+ * Format name for string issues (regex, email, url, uuid).
23513
+ */
23514
+ format?: string;
23515
+ /**
23516
+ * Regex pattern when format is regex.
23517
+ */
23518
+ pattern?: string;
23519
+ }>;
23520
+ };
23521
+ /**
23522
+ * Invalid or missing API key
23523
+ */
23524
+ 401: {
23525
+ /**
23526
+ * Human-readable error message. May change wording.
23527
+ */
23528
+ error: string;
23529
+ /**
23530
+ * Machine-readable error code. Stable identifier.
23531
+ */
23532
+ code: string;
23533
+ };
23534
+ /**
23535
+ * Gate number is outside the range 1 to 64
23536
+ */
23537
+ 404: {
23538
+ /**
23539
+ * Human-readable error message. May change wording — do not parse programmatically.
23540
+ */
23541
+ error: string;
23542
+ /**
23543
+ * Machine-readable error code. Stable identifier for programmatic error handling.
23544
+ */
23545
+ code: string;
23546
+ };
23547
+ /**
23548
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
23549
+ */
23550
+ 405: {
23551
+ error: string;
23552
+ code: 'method_not_allowed';
23553
+ /**
23554
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
23555
+ */
23556
+ allow: Array<string>;
23557
+ /**
23558
+ * Link to the product page for this domain.
23559
+ */
23560
+ docs?: string;
23561
+ };
23562
+ /**
23563
+ * Monthly rate limit exceeded
23564
+ */
23565
+ 429: {
23566
+ /**
23567
+ * Human-readable error message. May change wording.
23568
+ */
23569
+ error: string;
23570
+ /**
23571
+ * Machine-readable error code. Stable identifier.
23572
+ */
23573
+ code: string;
23574
+ };
23575
+ /**
23576
+ * Internal server error
23577
+ */
23578
+ 500: {
23579
+ /**
23580
+ * Human-readable error message. May change wording.
23581
+ */
23582
+ error: string;
23583
+ /**
23584
+ * Machine-readable error code. Stable identifier.
23585
+ */
23586
+ code: string;
23587
+ };
23588
+ };
23589
+ export type GetHumanDesignGatesByNumberError = GetHumanDesignGatesByNumberErrors[keyof GetHumanDesignGatesByNumberErrors];
23590
+ export type GetHumanDesignGatesByNumberResponses = {
23591
+ /**
23592
+ * Gate reference data with center, hexagram, and channel partners
23593
+ */
23594
+ 200: {
23595
+ /**
23596
+ * Gate number from 1 to 64.
23597
+ */
23598
+ number: number;
23599
+ /**
23600
+ * Human Design keynote name of the gate.
23601
+ */
23602
+ name: string;
23603
+ /**
23604
+ * Center the gate sits in.
23605
+ */
23606
+ center: string;
23607
+ /**
23608
+ * Display name of the center.
23609
+ */
23610
+ centerName: string;
23611
+ /**
23612
+ * The I-Ching hexagram that shares this gate number.
23613
+ */
23614
+ ichingHexagram: {
23615
+ /**
23616
+ * I-Ching hexagram number.
23617
+ */
23618
+ number: number;
23619
+ /**
23620
+ * Hexagram name.
23621
+ */
23622
+ english: string;
23623
+ };
23624
+ /**
23625
+ * Gates that form a channel with this gate, with the channel name for each.
23626
+ */
23627
+ channelPartners: Array<{
23628
+ /**
23629
+ * Partner gate number.
23630
+ */
23631
+ gate: number;
23632
+ /**
23633
+ * Name of the shared channel.
23634
+ */
23635
+ channel: string;
23636
+ }>;
23637
+ };
23638
+ };
23639
+ export type GetHumanDesignGatesByNumberResponse = GetHumanDesignGatesByNumberResponses[keyof GetHumanDesignGatesByNumberResponses];
23640
+ export type PostHumanDesignChannelsData = {
23641
+ body?: {
23642
+ /**
23643
+ * Birth date in YYYY-MM-DD format. The anchor for both the Personality activations at birth and the Design activations 88 degrees of solar arc earlier.
23644
+ */
23645
+ date: string;
23646
+ /**
23647
+ * Birth time in 24-hour HH:MM:SS format. Precision matters: the profile lines and gate boundaries shift with the exact minute of birth.
23648
+ */
23649
+ time: string;
23650
+ /**
23651
+ * Decimal hours (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "America/New_York", "UTC"). IANA is resolved to the DST-correct offset for the request date. Invalid timezones return 400 with a validation error.
23652
+ */
23653
+ timezone: number | string;
23654
+ /**
23655
+ * Birth latitude in decimal degrees. Optional and does not affect the bodygraph, which depends only on ecliptic longitudes. Defaults to 0.
23656
+ */
23657
+ latitude?: number;
23658
+ /**
23659
+ * Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0.
23660
+ */
23661
+ longitude?: number;
23662
+ };
23663
+ path?: never;
23664
+ query?: {
23665
+ /**
23666
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
23667
+ */
23668
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
23669
+ };
23670
+ url: '/human-design/channels';
23671
+ };
23672
+ export type PostHumanDesignChannelsErrors = {
23673
+ /**
23674
+ * Validation error. `issues[]` lists every failed field.
23675
+ */
23676
+ 400: {
23677
+ /**
23678
+ * First issue summary.
23679
+ */
23680
+ error: string;
23681
+ code: 'validation_error';
23682
+ /**
23683
+ * Every validation failure. Use this to rebuild a valid request.
23684
+ */
23685
+ issues: Array<{
23686
+ /**
23687
+ * Dot-separated field path, or "(root)" for top-level.
23688
+ */
23689
+ path: string;
23690
+ message: string;
23691
+ /**
23692
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
23693
+ */
23694
+ code?: string;
23695
+ /**
23696
+ * Expected type for invalid_type.
23697
+ */
23698
+ expected?: string;
23699
+ /**
23700
+ * Minimum bound for too_small issues.
23701
+ */
23702
+ minimum?: number | string;
23703
+ /**
23704
+ * Maximum bound for too_big issues.
23705
+ */
23706
+ maximum?: number | string;
23707
+ inclusive?: boolean;
23708
+ /**
23709
+ * Format name for string issues (regex, email, url, uuid).
23710
+ */
23711
+ format?: string;
23712
+ /**
23713
+ * Regex pattern when format is regex.
23714
+ */
23715
+ pattern?: string;
23716
+ }>;
23717
+ };
23718
+ /**
23719
+ * Invalid or missing API key
23720
+ */
23721
+ 401: {
23722
+ /**
23723
+ * Human-readable error message. May change wording.
23724
+ */
23725
+ error: string;
23726
+ /**
23727
+ * Machine-readable error code. Stable identifier.
23728
+ */
23729
+ code: string;
23730
+ };
23731
+ /**
23732
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
23733
+ */
23734
+ 405: {
23735
+ error: string;
23736
+ code: 'method_not_allowed';
23737
+ /**
23738
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
23739
+ */
23740
+ allow: Array<string>;
23741
+ /**
23742
+ * Link to the product page for this domain.
23743
+ */
23744
+ docs?: string;
23745
+ };
23746
+ /**
23747
+ * Monthly rate limit exceeded
23748
+ */
23749
+ 429: {
23750
+ /**
23751
+ * Human-readable error message. May change wording.
23752
+ */
23753
+ error: string;
23754
+ /**
23755
+ * Machine-readable error code. Stable identifier.
23756
+ */
23757
+ code: string;
23758
+ };
23759
+ /**
23760
+ * Internal server error
23761
+ */
23762
+ 500: {
23763
+ /**
23764
+ * Human-readable error message. May change wording.
23765
+ */
23766
+ error: string;
23767
+ /**
23768
+ * Machine-readable error code. Stable identifier.
23769
+ */
23770
+ code: string;
23771
+ };
23772
+ };
23773
+ export type PostHumanDesignChannelsError = PostHumanDesignChannelsErrors[keyof PostHumanDesignChannelsErrors];
23774
+ export type PostHumanDesignChannelsResponses = {
23775
+ /**
23776
+ * Defined channels with circuits and the centers they define
23777
+ */
23778
+ 200: {
23779
+ /**
23780
+ * The defined channels, where both gates are activated.
23781
+ */
23782
+ channels: Array<{
23783
+ /**
23784
+ * First gate of the channel.
23785
+ */
23786
+ gateA: number;
23787
+ /**
23788
+ * Second gate of the channel.
23789
+ */
23790
+ gateB: number;
23791
+ /**
23792
+ * Name of the defined channel.
23793
+ */
23794
+ name: string;
23795
+ /**
23796
+ * Circuit family of the channel. One of Individual, Collective, Tribal.
23797
+ */
23798
+ circuit: string;
23799
+ /**
23800
+ * The two centers this channel connects and defines.
23801
+ */
23802
+ centers: Array<string>;
23803
+ }>;
23804
+ /**
23805
+ * Number of defined channels in the bodygraph.
23806
+ */
23807
+ total: number;
23808
+ /**
23809
+ * The centers defined by these channels.
23810
+ */
23811
+ definedCenters: Array<string>;
23812
+ };
23813
+ };
23814
+ export type PostHumanDesignChannelsResponse = PostHumanDesignChannelsResponses[keyof PostHumanDesignChannelsResponses];
23815
+ export type PostHumanDesignCentersData = {
23816
+ body?: {
23817
+ /**
23818
+ * Birth date in YYYY-MM-DD format. The anchor for both the Personality activations at birth and the Design activations 88 degrees of solar arc earlier.
23819
+ */
23820
+ date: string;
23821
+ /**
23822
+ * Birth time in 24-hour HH:MM:SS format. Precision matters: the profile lines and gate boundaries shift with the exact minute of birth.
23823
+ */
23824
+ time: string;
23825
+ /**
23826
+ * Decimal hours (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "America/New_York", "UTC"). IANA is resolved to the DST-correct offset for the request date. Invalid timezones return 400 with a validation error.
23827
+ */
23828
+ timezone: number | string;
23829
+ /**
23830
+ * Birth latitude in decimal degrees. Optional and does not affect the bodygraph, which depends only on ecliptic longitudes. Defaults to 0.
23831
+ */
23832
+ latitude?: number;
23833
+ /**
23834
+ * Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0.
23835
+ */
23836
+ longitude?: number;
23837
+ };
23838
+ path?: never;
23839
+ query?: {
23840
+ /**
23841
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
23842
+ */
23843
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
23844
+ };
23845
+ url: '/human-design/centers';
23846
+ };
23847
+ export type PostHumanDesignCentersErrors = {
23848
+ /**
23849
+ * Validation error. `issues[]` lists every failed field.
23850
+ */
23851
+ 400: {
23852
+ /**
23853
+ * First issue summary.
23854
+ */
23855
+ error: string;
23856
+ code: 'validation_error';
23857
+ /**
23858
+ * Every validation failure. Use this to rebuild a valid request.
23859
+ */
23860
+ issues: Array<{
23861
+ /**
23862
+ * Dot-separated field path, or "(root)" for top-level.
23863
+ */
23864
+ path: string;
23865
+ message: string;
23866
+ /**
23867
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
23868
+ */
23869
+ code?: string;
23870
+ /**
23871
+ * Expected type for invalid_type.
23872
+ */
23873
+ expected?: string;
23874
+ /**
23875
+ * Minimum bound for too_small issues.
23876
+ */
23877
+ minimum?: number | string;
23878
+ /**
23879
+ * Maximum bound for too_big issues.
23880
+ */
23881
+ maximum?: number | string;
23882
+ inclusive?: boolean;
23883
+ /**
23884
+ * Format name for string issues (regex, email, url, uuid).
23885
+ */
23886
+ format?: string;
23887
+ /**
23888
+ * Regex pattern when format is regex.
23889
+ */
23890
+ pattern?: string;
23891
+ }>;
23892
+ };
23893
+ /**
23894
+ * Invalid or missing API key
23895
+ */
23896
+ 401: {
23897
+ /**
23898
+ * Human-readable error message. May change wording.
23899
+ */
23900
+ error: string;
23901
+ /**
23902
+ * Machine-readable error code. Stable identifier.
23903
+ */
23904
+ code: string;
23905
+ };
23906
+ /**
23907
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
23908
+ */
23909
+ 405: {
23910
+ error: string;
23911
+ code: 'method_not_allowed';
23912
+ /**
23913
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
23914
+ */
23915
+ allow: Array<string>;
23916
+ /**
23917
+ * Link to the product page for this domain.
23918
+ */
23919
+ docs?: string;
23920
+ };
23921
+ /**
23922
+ * Monthly rate limit exceeded
23923
+ */
23924
+ 429: {
23925
+ /**
23926
+ * Human-readable error message. May change wording.
23927
+ */
23928
+ error: string;
23929
+ /**
23930
+ * Machine-readable error code. Stable identifier.
23931
+ */
23932
+ code: string;
23933
+ };
23934
+ /**
23935
+ * Internal server error
23936
+ */
23937
+ 500: {
23938
+ /**
23939
+ * Human-readable error message. May change wording.
23940
+ */
23941
+ error: string;
23942
+ /**
23943
+ * Machine-readable error code. Stable identifier.
23944
+ */
23945
+ code: string;
23946
+ };
23947
+ };
23948
+ export type PostHumanDesignCentersError = PostHumanDesignCentersErrors[keyof PostHumanDesignCentersErrors];
23949
+ export type PostHumanDesignCentersResponses = {
23950
+ /**
23951
+ * All nine centers with defined state, flags, theme, and active gates
23952
+ */
23953
+ 200: {
23954
+ /**
23955
+ * All nine centers with their defined state and active gates.
23956
+ */
23957
+ centers: Array<{
23958
+ /**
23959
+ * Center identifier. One of head, ajna, throat, g, heart, sacral, solar-plexus, spleen, root.
23960
+ */
23961
+ id: string;
23962
+ /**
23963
+ * Display name of the center.
23964
+ */
23965
+ name: string;
23966
+ /**
23967
+ * Whether the center is defined. A defined center is a consistent source of energy or awareness; an undefined center is open and conditioned by others.
23968
+ */
23969
+ defined: boolean;
23970
+ /**
23971
+ * Whether this is a motor center (energy source). The four motors are Heart, Sacral, Solar Plexus, and Root.
23972
+ */
23973
+ motor: boolean;
23974
+ /**
23975
+ * Whether this is an awareness center. The three awareness centers are Ajna, Solar Plexus, and Spleen.
23976
+ */
23977
+ awareness: boolean;
23978
+ /**
23979
+ * Theme text describing the center in its current defined or undefined state.
23980
+ */
23981
+ theme: string;
23982
+ /**
23983
+ * Active gate numbers that sit in this center.
23984
+ */
23985
+ gates: Array<number>;
23986
+ }>;
23987
+ /**
23988
+ * How many of the nine centers are defined.
23989
+ */
23990
+ definedCount: number;
23991
+ };
23992
+ };
23993
+ export type PostHumanDesignCentersResponse = PostHumanDesignCentersResponses[keyof PostHumanDesignCentersResponses];
23994
+ export type GetHumanDesignCentersByIdData = {
23995
+ body?: never;
23996
+ path: {
23997
+ /**
23998
+ * Center id. One of head, ajna, throat, g, heart, sacral, solar-plexus, spleen, root.
23999
+ */
24000
+ id: 'head' | 'ajna' | 'throat' | 'g' | 'heart' | 'sacral' | 'solar-plexus' | 'spleen' | 'root';
24001
+ };
24002
+ query?: {
24003
+ /**
24004
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
24005
+ */
24006
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
24007
+ };
24008
+ url: '/human-design/centers/{id}';
24009
+ };
24010
+ export type GetHumanDesignCentersByIdErrors = {
24011
+ /**
24012
+ * Validation error. `issues[]` lists every failed field.
24013
+ */
24014
+ 400: {
24015
+ /**
24016
+ * First issue summary.
24017
+ */
24018
+ error: string;
24019
+ code: 'validation_error';
24020
+ /**
24021
+ * Every validation failure. Use this to rebuild a valid request.
24022
+ */
24023
+ issues: Array<{
24024
+ /**
24025
+ * Dot-separated field path, or "(root)" for top-level.
24026
+ */
24027
+ path: string;
24028
+ message: string;
24029
+ /**
24030
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
24031
+ */
24032
+ code?: string;
24033
+ /**
24034
+ * Expected type for invalid_type.
24035
+ */
24036
+ expected?: string;
24037
+ /**
24038
+ * Minimum bound for too_small issues.
24039
+ */
24040
+ minimum?: number | string;
24041
+ /**
24042
+ * Maximum bound for too_big issues.
24043
+ */
24044
+ maximum?: number | string;
24045
+ inclusive?: boolean;
24046
+ /**
24047
+ * Format name for string issues (regex, email, url, uuid).
24048
+ */
24049
+ format?: string;
24050
+ /**
24051
+ * Regex pattern when format is regex.
24052
+ */
24053
+ pattern?: string;
24054
+ }>;
24055
+ };
24056
+ /**
24057
+ * Invalid or missing API key
24058
+ */
24059
+ 401: {
24060
+ /**
24061
+ * Human-readable error message. May change wording.
24062
+ */
24063
+ error: string;
24064
+ /**
24065
+ * Machine-readable error code. Stable identifier.
24066
+ */
24067
+ code: string;
24068
+ };
24069
+ /**
24070
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
24071
+ */
24072
+ 405: {
24073
+ error: string;
24074
+ code: 'method_not_allowed';
24075
+ /**
24076
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
24077
+ */
24078
+ allow: Array<string>;
24079
+ /**
24080
+ * Link to the product page for this domain.
24081
+ */
24082
+ docs?: string;
24083
+ };
24084
+ /**
24085
+ * Monthly rate limit exceeded
24086
+ */
24087
+ 429: {
24088
+ /**
24089
+ * Human-readable error message. May change wording.
24090
+ */
24091
+ error: string;
24092
+ /**
24093
+ * Machine-readable error code. Stable identifier.
24094
+ */
24095
+ code: string;
24096
+ };
24097
+ /**
24098
+ * Internal server error
24099
+ */
24100
+ 500: {
24101
+ /**
24102
+ * Human-readable error message. May change wording.
24103
+ */
24104
+ error: string;
24105
+ /**
24106
+ * Machine-readable error code. Stable identifier.
24107
+ */
24108
+ code: string;
24109
+ };
24110
+ };
24111
+ export type GetHumanDesignCentersByIdError = GetHumanDesignCentersByIdErrors[keyof GetHumanDesignCentersByIdErrors];
24112
+ export type GetHumanDesignCentersByIdResponses = {
24113
+ /**
24114
+ * Center reference data with defined and undefined meanings
24115
+ */
24116
+ 200: {
24117
+ /**
24118
+ * Center identifier.
24119
+ */
24120
+ id: string;
24121
+ /**
24122
+ * Display name of the center.
24123
+ */
24124
+ name: string;
24125
+ /**
24126
+ * Whether this is a motor center.
24127
+ */
24128
+ motor: boolean;
24129
+ /**
24130
+ * Whether this is an awareness center.
24131
+ */
24132
+ awareness: boolean;
24133
+ /**
24134
+ * What this center means when defined: a consistent, reliable energy or awareness.
24135
+ */
24136
+ definedMeaning: string;
24137
+ /**
24138
+ * What this center means when undefined and open: a place of conditioning and learning.
24139
+ */
24140
+ undefinedMeaning: string;
24141
+ };
24142
+ };
24143
+ export type GetHumanDesignCentersByIdResponse = GetHumanDesignCentersByIdResponses[keyof GetHumanDesignCentersByIdResponses];
24144
+ export type PostHumanDesignProfileData = {
24145
+ body?: {
24146
+ /**
24147
+ * Birth date in YYYY-MM-DD format. The anchor for both the Personality activations at birth and the Design activations 88 degrees of solar arc earlier.
24148
+ */
24149
+ date: string;
24150
+ /**
24151
+ * Birth time in 24-hour HH:MM:SS format. Precision matters: the profile lines and gate boundaries shift with the exact minute of birth.
24152
+ */
24153
+ time: string;
24154
+ /**
24155
+ * Decimal hours (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "America/New_York", "UTC"). IANA is resolved to the DST-correct offset for the request date. Invalid timezones return 400 with a validation error.
24156
+ */
24157
+ timezone: number | string;
24158
+ /**
24159
+ * Birth latitude in decimal degrees. Optional and does not affect the bodygraph, which depends only on ecliptic longitudes. Defaults to 0.
24160
+ */
24161
+ latitude?: number;
24162
+ /**
24163
+ * Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0.
24164
+ */
24165
+ longitude?: number;
24166
+ };
24167
+ path?: never;
24168
+ query?: {
24169
+ /**
24170
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
24171
+ */
24172
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
24173
+ };
24174
+ url: '/human-design/profile';
24175
+ };
24176
+ export type PostHumanDesignProfileErrors = {
24177
+ /**
24178
+ * Validation error. `issues[]` lists every failed field.
24179
+ */
24180
+ 400: {
24181
+ /**
24182
+ * First issue summary.
24183
+ */
24184
+ error: string;
24185
+ code: 'validation_error';
24186
+ /**
24187
+ * Every validation failure. Use this to rebuild a valid request.
24188
+ */
24189
+ issues: Array<{
24190
+ /**
24191
+ * Dot-separated field path, or "(root)" for top-level.
24192
+ */
24193
+ path: string;
24194
+ message: string;
24195
+ /**
24196
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
24197
+ */
24198
+ code?: string;
24199
+ /**
24200
+ * Expected type for invalid_type.
24201
+ */
24202
+ expected?: string;
24203
+ /**
24204
+ * Minimum bound for too_small issues.
24205
+ */
24206
+ minimum?: number | string;
24207
+ /**
24208
+ * Maximum bound for too_big issues.
24209
+ */
24210
+ maximum?: number | string;
24211
+ inclusive?: boolean;
24212
+ /**
24213
+ * Format name for string issues (regex, email, url, uuid).
24214
+ */
24215
+ format?: string;
24216
+ /**
24217
+ * Regex pattern when format is regex.
24218
+ */
24219
+ pattern?: string;
24220
+ }>;
24221
+ };
24222
+ /**
24223
+ * Invalid or missing API key
24224
+ */
24225
+ 401: {
24226
+ /**
24227
+ * Human-readable error message. May change wording.
24228
+ */
24229
+ error: string;
24230
+ /**
24231
+ * Machine-readable error code. Stable identifier.
24232
+ */
24233
+ code: string;
24234
+ };
24235
+ /**
24236
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
24237
+ */
24238
+ 405: {
24239
+ error: string;
24240
+ code: 'method_not_allowed';
24241
+ /**
24242
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
24243
+ */
24244
+ allow: Array<string>;
24245
+ /**
24246
+ * Link to the product page for this domain.
24247
+ */
24248
+ docs?: string;
24249
+ };
24250
+ /**
24251
+ * Monthly rate limit exceeded
24252
+ */
24253
+ 429: {
24254
+ /**
24255
+ * Human-readable error message. May change wording.
24256
+ */
24257
+ error: string;
24258
+ /**
24259
+ * Machine-readable error code. Stable identifier.
24260
+ */
24261
+ code: string;
24262
+ };
24263
+ /**
24264
+ * Internal server error
24265
+ */
24266
+ 500: {
24267
+ /**
24268
+ * Human-readable error message. May change wording.
24269
+ */
24270
+ error: string;
24271
+ /**
24272
+ * Machine-readable error code. Stable identifier.
24273
+ */
24274
+ code: string;
24275
+ };
24276
+ };
24277
+ export type PostHumanDesignProfileError = PostHumanDesignProfileErrors[keyof PostHumanDesignProfileErrors];
24278
+ export type PostHumanDesignProfileResponses = {
24279
+ /**
24280
+ * Profile string, the two line numbers, and line keynotes
24281
+ */
24282
+ 200: {
24283
+ /**
24284
+ * Profile in conscious/unconscious form, the Personality Sun line over the Design Sun line.
24285
+ */
24286
+ profile: string;
24287
+ /**
24288
+ * Line number from 1 to 6 of the conscious Personality Sun.
24289
+ */
24290
+ personalityLine: number;
24291
+ /**
24292
+ * Line number from 1 to 6 of the unconscious Design Sun.
24293
+ */
24294
+ designLine: number;
24295
+ /**
24296
+ * Keynote of the Personality line, the conscious half of the profile.
24297
+ */
24298
+ personalityKeynote: string;
24299
+ /**
24300
+ * Keynote of the Design line, the unconscious half of the profile.
24301
+ */
24302
+ designKeynote: string;
24303
+ };
24304
+ };
24305
+ export type PostHumanDesignProfileResponse = PostHumanDesignProfileResponses[keyof PostHumanDesignProfileResponses];
24306
+ export type PostForecastTimelineData = {
24307
+ body?: {
24308
+ /**
24309
+ * The single birth subject this forecast is built for. One object only, never an array.
24310
+ */
24311
+ birthData: {
24312
+ /**
24313
+ * Birth date in YYYY-MM-DD format. Anchors the natal chart and the Vimshottari dasha sequence.
24314
+ */
24315
+ date: string;
24316
+ /**
24317
+ * Birth time in 24-hour HH:MM:SS format. Precision matters for the natal positions the transit aspects are measured against.
24318
+ */
24319
+ time: string;
24320
+ /**
24321
+ * Decimal hours (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "America/New_York", "UTC"). IANA is resolved to the DST-correct offset for the request date. Invalid timezones return 400 with a validation error.
24322
+ */
24323
+ timezone: number | string;
24324
+ /**
24325
+ * Birth latitude in decimal degrees. Optional and does not affect the timeline. Defaults to 0.
24326
+ */
24327
+ latitude?: number;
24328
+ /**
24329
+ * Birth longitude in decimal degrees. Optional and does not affect the timeline. Defaults to 0.
24330
+ */
24331
+ longitude?: number;
24332
+ };
24333
+ /**
24334
+ * First day of the forecast window in YYYY-MM-DD format. Defaults to today in UTC.
24335
+ */
24336
+ startDate?: string;
24337
+ /**
24338
+ * Last day of the forecast window in YYYY-MM-DD format. Defaults to startDate plus 30 days. The window is clamped to a maximum of 90 days from startDate.
24339
+ */
24340
+ endDate?: string;
24341
+ /**
24342
+ * Which forecast domains to include. Defaults to all three. Pass a subset to scope the timeline to one or two engines.
24343
+ */
24344
+ domains?: Array<'western' | 'vedic' | 'biorhythm'>;
24345
+ /**
24346
+ * Drop events scoring below this significance threshold from 0 to 100. Defaults to 0, keeping all events.
24347
+ */
24348
+ minSignificance?: number;
24349
+ };
24350
+ path?: never;
24351
+ query?: {
24352
+ /**
24353
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
24354
+ */
24355
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
24356
+ };
24357
+ url: '/forecast/timeline';
24358
+ };
24359
+ export type PostForecastTimelineErrors = {
24360
+ /**
24361
+ * Validation error. `issues[]` lists every failed field.
24362
+ */
24363
+ 400: {
24364
+ /**
24365
+ * First issue summary.
24366
+ */
24367
+ error: string;
24368
+ code: 'validation_error';
24369
+ /**
24370
+ * Every validation failure. Use this to rebuild a valid request.
24371
+ */
24372
+ issues: Array<{
24373
+ /**
24374
+ * Dot-separated field path, or "(root)" for top-level.
24375
+ */
24376
+ path: string;
24377
+ message: string;
24378
+ /**
24379
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
24380
+ */
24381
+ code?: string;
24382
+ /**
24383
+ * Expected type for invalid_type.
24384
+ */
24385
+ expected?: string;
24386
+ /**
24387
+ * Minimum bound for too_small issues.
24388
+ */
24389
+ minimum?: number | string;
24390
+ /**
24391
+ * Maximum bound for too_big issues.
24392
+ */
24393
+ maximum?: number | string;
24394
+ inclusive?: boolean;
24395
+ /**
24396
+ * Format name for string issues (regex, email, url, uuid).
24397
+ */
24398
+ format?: string;
24399
+ /**
24400
+ * Regex pattern when format is regex.
24401
+ */
24402
+ pattern?: string;
24403
+ }>;
24404
+ };
24405
+ /**
24406
+ * Invalid or missing API key
24407
+ */
24408
+ 401: {
24409
+ /**
24410
+ * Human-readable error message. May change wording.
24411
+ */
24412
+ error: string;
24413
+ /**
24414
+ * Machine-readable error code. Stable identifier.
24415
+ */
24416
+ code: string;
24417
+ };
24418
+ /**
24419
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
24420
+ */
24421
+ 405: {
24422
+ error: string;
24423
+ code: 'method_not_allowed';
24424
+ /**
24425
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
24426
+ */
24427
+ allow: Array<string>;
24428
+ /**
24429
+ * Link to the product page for this domain.
24430
+ */
24431
+ docs?: string;
24432
+ };
24433
+ /**
24434
+ * Monthly rate limit exceeded
24435
+ */
24436
+ 429: {
24437
+ /**
24438
+ * Human-readable error message. May change wording.
24439
+ */
24440
+ error: string;
24441
+ /**
24442
+ * Machine-readable error code. Stable identifier.
24443
+ */
24444
+ code: string;
24445
+ };
24446
+ /**
24447
+ * Internal server error
24448
+ */
24449
+ 500: {
24450
+ /**
24451
+ * Human-readable error message. May change wording.
24452
+ */
24453
+ error: string;
24454
+ /**
24455
+ * Machine-readable error code. Stable identifier.
24456
+ */
24457
+ code: string;
24458
+ };
24459
+ };
24460
+ export type PostForecastTimelineError = PostForecastTimelineErrors[keyof PostForecastTimelineErrors];
24461
+ export type PostForecastTimelineResponses = {
24462
+ /**
24463
+ * Merged forecast timeline with time-ordered events across the requested domains
24464
+ */
24465
+ 200: {
24466
+ /**
24467
+ * Echo of the birth subject this forecast was built for.
24468
+ */
24469
+ birthData: {
24470
+ /**
24471
+ * Birth date in YYYY-MM-DD format. Anchors the natal chart and the Vimshottari dasha sequence.
24472
+ */
24473
+ date: string;
24474
+ /**
24475
+ * Birth time in 24-hour HH:MM:SS format. Precision matters for the natal positions the transit aspects are measured against.
24476
+ */
24477
+ time: string;
24478
+ /**
24479
+ * Decimal hours (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "America/New_York", "UTC"). IANA is resolved to the DST-correct offset for the request date. Invalid timezones return 400 with a validation error.
24480
+ */
24481
+ timezone: number | string;
24482
+ /**
24483
+ * Birth latitude in decimal degrees. Optional and does not affect the timeline. Defaults to 0.
24484
+ */
24485
+ latitude?: number;
24486
+ /**
24487
+ * Birth longitude in decimal degrees. Optional and does not affect the timeline. Defaults to 0.
24488
+ */
24489
+ longitude?: number;
24490
+ };
24491
+ /**
24492
+ * First day of the resolved forecast window.
24493
+ */
24494
+ startDate: string;
24495
+ /**
24496
+ * Last day of the resolved forecast window after the horizon clamp.
24497
+ */
24498
+ endDate: string;
24499
+ /**
24500
+ * Number of events in the timeline after deduplication, filtering, and the event cap.
24501
+ */
24502
+ count: number;
24503
+ /**
24504
+ * The merged, time-ordered forecast events across the requested domains.
24505
+ */
24506
+ events: Array<{
24507
+ /**
24508
+ * Calendar date of the event in YYYY-MM-DD (UTC).
24509
+ */
24510
+ date: string;
24511
+ /**
24512
+ * Exact instant of the event as an ISO-8601 UTC datetime. Astronomical events are refined to this instant by search, not reported at a daily sample point.
24513
+ */
24514
+ datetime: string;
24515
+ /**
24516
+ * 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.
24517
+ */
24518
+ domain: 'western' | 'vedic' | 'biorhythm';
24519
+ /**
24520
+ * Event kind. transit-aspect, sign-ingress, and retrograde-station 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.
24521
+ */
24522
+ type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'dasha-change' | 'critical-day';
24523
+ /**
24524
+ * Primary subject of the event. A transiting planet for western events, a mahadasha or antardasha label for dasha changes, or the critical cycle for biorhythm days.
24525
+ */
24526
+ body: string;
24527
+ /**
24528
+ * For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered. Absent for other event types.
24529
+ */
24530
+ target?: string;
24531
+ /**
24532
+ * For a transit-aspect, the angular relationship. One of conjunction, sextile, square, trine, opposition. Absent for other event types.
24533
+ */
24534
+ aspect?: string;
24535
+ /**
24536
+ * For a transit-aspect, the separation in degrees from the exact aspect at the reported instant. Tighter orb means a more exact and significant aspect.
24537
+ */
24538
+ orb?: number;
24539
+ /**
24540
+ * For a retrograde-station, whether the planet turns retrograde or direct. A stable machine value, never localized. Absent for other event types.
24541
+ */
24542
+ station?: 'retrograde' | 'direct';
24543
+ /**
24544
+ * 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.
24545
+ */
24546
+ description: string;
24547
+ /**
24548
+ * Importance score from 0 to 100. Outer-planet exact transit aspects and mahadasha changes score highest; fast Moon events and biorhythm critical days score lower.
24549
+ */
24550
+ significance: number;
24551
+ }>;
24552
+ };
24553
+ };
24554
+ export type PostForecastTimelineResponse = PostForecastTimelineResponses[keyof PostForecastTimelineResponses];
24555
+ export type PostForecastTransitsData = {
24556
+ body?: {
24557
+ /**
24558
+ * The single birth subject this transit forecast is built for. One object only, never an array.
24559
+ */
24560
+ birthData: {
24561
+ /**
24562
+ * Birth date in YYYY-MM-DD format. Anchors the natal chart and the Vimshottari dasha sequence.
24563
+ */
24564
+ date: string;
24565
+ /**
24566
+ * Birth time in 24-hour HH:MM:SS format. Precision matters for the natal positions the transit aspects are measured against.
24567
+ */
24568
+ time: string;
24569
+ /**
24570
+ * Decimal hours (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "America/New_York", "UTC"). IANA is resolved to the DST-correct offset for the request date. Invalid timezones return 400 with a validation error.
24571
+ */
24572
+ timezone: number | string;
24573
+ /**
24574
+ * Birth latitude in decimal degrees. Optional and does not affect the timeline. Defaults to 0.
24575
+ */
24576
+ latitude?: number;
24577
+ /**
24578
+ * Birth longitude in decimal degrees. Optional and does not affect the timeline. Defaults to 0.
24579
+ */
24580
+ longitude?: number;
24581
+ };
24582
+ /**
24583
+ * First day of the transit window in YYYY-MM-DD format. Defaults to today in UTC.
24584
+ */
24585
+ startDate?: string;
24586
+ /**
24587
+ * Last day of the transit window in YYYY-MM-DD format. Defaults to startDate plus 30 days. Clamped to a maximum of 90 days from startDate.
24588
+ */
24589
+ endDate?: string;
24590
+ /**
24591
+ * Drop transit events scoring below this significance threshold from 0 to 100. Defaults to 0.
24592
+ */
24593
+ minSignificance?: number;
24594
+ };
24595
+ path?: never;
24596
+ query?: {
24597
+ /**
24598
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
24599
+ */
24600
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
24601
+ };
24602
+ url: '/forecast/transits';
24603
+ };
24604
+ export type PostForecastTransitsErrors = {
24605
+ /**
24606
+ * Validation error. `issues[]` lists every failed field.
24607
+ */
24608
+ 400: {
24609
+ /**
24610
+ * First issue summary.
24611
+ */
24612
+ error: string;
24613
+ code: 'validation_error';
24614
+ /**
24615
+ * Every validation failure. Use this to rebuild a valid request.
24616
+ */
24617
+ issues: Array<{
24618
+ /**
24619
+ * Dot-separated field path, or "(root)" for top-level.
24620
+ */
24621
+ path: string;
24622
+ message: string;
24623
+ /**
24624
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
24625
+ */
24626
+ code?: string;
24627
+ /**
24628
+ * Expected type for invalid_type.
24629
+ */
24630
+ expected?: string;
24631
+ /**
24632
+ * Minimum bound for too_small issues.
24633
+ */
24634
+ minimum?: number | string;
24635
+ /**
24636
+ * Maximum bound for too_big issues.
24637
+ */
24638
+ maximum?: number | string;
24639
+ inclusive?: boolean;
24640
+ /**
24641
+ * Format name for string issues (regex, email, url, uuid).
24642
+ */
24643
+ format?: string;
24644
+ /**
24645
+ * Regex pattern when format is regex.
24646
+ */
24647
+ pattern?: string;
24648
+ }>;
24649
+ };
24650
+ /**
24651
+ * Invalid or missing API key
24652
+ */
24653
+ 401: {
24654
+ /**
24655
+ * Human-readable error message. May change wording.
24656
+ */
24657
+ error: string;
24658
+ /**
24659
+ * Machine-readable error code. Stable identifier.
24660
+ */
24661
+ code: string;
24662
+ };
24663
+ /**
24664
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
24665
+ */
24666
+ 405: {
24667
+ error: string;
24668
+ code: 'method_not_allowed';
24669
+ /**
24670
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
24671
+ */
24672
+ allow: Array<string>;
24673
+ /**
24674
+ * Link to the product page for this domain.
24675
+ */
24676
+ docs?: string;
24677
+ };
24678
+ /**
24679
+ * Monthly rate limit exceeded
24680
+ */
24681
+ 429: {
24682
+ /**
24683
+ * Human-readable error message. May change wording.
24684
+ */
24685
+ error: string;
24686
+ /**
24687
+ * Machine-readable error code. Stable identifier.
24688
+ */
24689
+ code: string;
24690
+ };
24691
+ /**
24692
+ * Internal server error
24693
+ */
24694
+ 500: {
24695
+ /**
24696
+ * Human-readable error message. May change wording.
24697
+ */
24698
+ error: string;
24699
+ /**
24700
+ * Machine-readable error code. Stable identifier.
24701
+ */
24702
+ code: string;
24703
+ };
24704
+ };
24705
+ export type PostForecastTransitsError = PostForecastTransitsErrors[keyof PostForecastTransitsErrors];
24706
+ export type PostForecastTransitsResponses = {
24707
+ /**
24708
+ * Time-ordered western transit events: aspects, ingresses, and stations
24709
+ */
24710
+ 200: {
24711
+ /**
24712
+ * Echo of the birth subject this forecast was built for.
24713
+ */
24714
+ birthData: {
24715
+ /**
24716
+ * Birth date in YYYY-MM-DD format. Anchors the natal chart and the Vimshottari dasha sequence.
24717
+ */
24718
+ date: string;
24719
+ /**
24720
+ * Birth time in 24-hour HH:MM:SS format. Precision matters for the natal positions the transit aspects are measured against.
24721
+ */
24722
+ time: string;
24723
+ /**
24724
+ * Decimal hours (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "America/New_York", "UTC"). IANA is resolved to the DST-correct offset for the request date. Invalid timezones return 400 with a validation error.
24725
+ */
24726
+ timezone: number | string;
24727
+ /**
24728
+ * Birth latitude in decimal degrees. Optional and does not affect the timeline. Defaults to 0.
24729
+ */
24730
+ latitude?: number;
24731
+ /**
24732
+ * Birth longitude in decimal degrees. Optional and does not affect the timeline. Defaults to 0.
24733
+ */
24734
+ longitude?: number;
24735
+ };
24736
+ /**
24737
+ * First day of the resolved forecast window.
24738
+ */
24739
+ startDate: string;
24740
+ /**
24741
+ * Last day of the resolved forecast window after the horizon clamp.
24742
+ */
24743
+ endDate: string;
24744
+ /**
24745
+ * Number of events in the timeline after deduplication, filtering, and the event cap.
24746
+ */
24747
+ count: number;
24748
+ /**
24749
+ * The merged, time-ordered forecast events across the requested domains.
24750
+ */
24751
+ events: Array<{
24752
+ /**
24753
+ * Calendar date of the event in YYYY-MM-DD (UTC).
24754
+ */
24755
+ date: string;
24756
+ /**
24757
+ * Exact instant of the event as an ISO-8601 UTC datetime. Astronomical events are refined to this instant by search, not reported at a daily sample point.
24758
+ */
24759
+ datetime: string;
24760
+ /**
24761
+ * 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.
24762
+ */
24763
+ domain: 'western' | 'vedic' | 'biorhythm';
24764
+ /**
24765
+ * Event kind. transit-aspect, sign-ingress, and retrograde-station 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.
24766
+ */
24767
+ type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'dasha-change' | 'critical-day';
24768
+ /**
24769
+ * Primary subject of the event. A transiting planet for western events, a mahadasha or antardasha label for dasha changes, or the critical cycle for biorhythm days.
24770
+ */
24771
+ body: string;
24772
+ /**
24773
+ * For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered. Absent for other event types.
24774
+ */
24775
+ target?: string;
24776
+ /**
24777
+ * For a transit-aspect, the angular relationship. One of conjunction, sextile, square, trine, opposition. Absent for other event types.
24778
+ */
24779
+ aspect?: string;
24780
+ /**
24781
+ * For a transit-aspect, the separation in degrees from the exact aspect at the reported instant. Tighter orb means a more exact and significant aspect.
24782
+ */
24783
+ orb?: number;
24784
+ /**
24785
+ * For a retrograde-station, whether the planet turns retrograde or direct. A stable machine value, never localized. Absent for other event types.
24786
+ */
24787
+ station?: 'retrograde' | 'direct';
24788
+ /**
24789
+ * 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.
24790
+ */
24791
+ description: string;
24792
+ /**
24793
+ * Importance score from 0 to 100. Outer-planet exact transit aspects and mahadasha changes score highest; fast Moon events and biorhythm critical days score lower.
24794
+ */
24795
+ significance: number;
24796
+ }>;
24797
+ };
24798
+ };
24799
+ export type PostForecastTransitsResponse = PostForecastTransitsResponses[keyof PostForecastTransitsResponses];
24800
+ export type PostForecastSignificantDatesData = {
24801
+ body?: {
24802
+ /**
24803
+ * The single birth subject this forecast is built for. One object only, never an array.
24804
+ */
24805
+ birthData: {
24806
+ /**
24807
+ * Birth date in YYYY-MM-DD format. Anchors the natal chart and the Vimshottari dasha sequence.
24808
+ */
24809
+ date: string;
24810
+ /**
24811
+ * Birth time in 24-hour HH:MM:SS format. Precision matters for the natal positions the transit aspects are measured against.
24812
+ */
24813
+ time: string;
24814
+ /**
24815
+ * Decimal hours (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "America/New_York", "UTC"). IANA is resolved to the DST-correct offset for the request date. Invalid timezones return 400 with a validation error.
24816
+ */
24817
+ timezone: number | string;
24818
+ /**
24819
+ * Birth latitude in decimal degrees. Optional and does not affect the timeline. Defaults to 0.
24820
+ */
24821
+ latitude?: number;
24822
+ /**
24823
+ * Birth longitude in decimal degrees. Optional and does not affect the timeline. Defaults to 0.
24824
+ */
24825
+ longitude?: number;
24826
+ };
24827
+ /**
24828
+ * First day of the window in YYYY-MM-DD format. Defaults to today in UTC.
24829
+ */
24830
+ startDate?: string;
24831
+ /**
24832
+ * Last day of the window in YYYY-MM-DD format. Defaults to startDate plus 30 days. Clamped to a maximum of 90 days from startDate.
24833
+ */
24834
+ endDate?: string;
24835
+ /**
24836
+ * Which forecast domains to consider before filtering by significance. Defaults to all three.
24837
+ */
24838
+ domains?: Array<'western' | 'vedic' | 'biorhythm'>;
24839
+ /**
24840
+ * Significance floor from 0 to 100 for what counts as a significant date. Defaults to 70.
24841
+ */
24842
+ minSignificance?: number;
24843
+ };
24844
+ path?: never;
24845
+ query?: {
24846
+ /**
24847
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
24848
+ */
24849
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
24850
+ };
24851
+ url: '/forecast/significant-dates';
24852
+ };
24853
+ export type PostForecastSignificantDatesErrors = {
24854
+ /**
24855
+ * Validation error. `issues[]` lists every failed field.
24856
+ */
24857
+ 400: {
24858
+ /**
24859
+ * First issue summary.
24860
+ */
24861
+ error: string;
24862
+ code: 'validation_error';
24863
+ /**
24864
+ * Every validation failure. Use this to rebuild a valid request.
24865
+ */
24866
+ issues: Array<{
24867
+ /**
24868
+ * Dot-separated field path, or "(root)" for top-level.
24869
+ */
24870
+ path: string;
24871
+ message: string;
24872
+ /**
24873
+ * Zod issue code (invalid_type, too_small, too_big, invalid_string, ...).
24874
+ */
24875
+ code?: string;
24876
+ /**
24877
+ * Expected type for invalid_type.
24878
+ */
24879
+ expected?: string;
24880
+ /**
24881
+ * Minimum bound for too_small issues.
24882
+ */
24883
+ minimum?: number | string;
24884
+ /**
24885
+ * Maximum bound for too_big issues.
24886
+ */
24887
+ maximum?: number | string;
24888
+ inclusive?: boolean;
24889
+ /**
24890
+ * Format name for string issues (regex, email, url, uuid).
24891
+ */
24892
+ format?: string;
24893
+ /**
24894
+ * Regex pattern when format is regex.
24895
+ */
24896
+ pattern?: string;
24897
+ }>;
24898
+ };
24899
+ /**
24900
+ * Invalid or missing API key
24901
+ */
24902
+ 401: {
24903
+ /**
24904
+ * Human-readable error message. May change wording.
24905
+ */
24906
+ error: string;
24907
+ /**
24908
+ * Machine-readable error code. Stable identifier.
24909
+ */
24910
+ code: string;
24911
+ };
24912
+ /**
24913
+ * Method not allowed. The path exists but only responds to the methods listed in `allow[]` and the `Allow` response header.
24914
+ */
24915
+ 405: {
24916
+ error: string;
24917
+ code: 'method_not_allowed';
24918
+ /**
24919
+ * Allowed HTTP methods for this path. Mirrors the Allow response header.
24920
+ */
24921
+ allow: Array<string>;
24922
+ /**
24923
+ * Link to the product page for this domain.
24924
+ */
24925
+ docs?: string;
24926
+ };
24927
+ /**
24928
+ * Monthly rate limit exceeded
24929
+ */
24930
+ 429: {
24931
+ /**
24932
+ * Human-readable error message. May change wording.
24933
+ */
24934
+ error: string;
24935
+ /**
24936
+ * Machine-readable error code. Stable identifier.
24937
+ */
24938
+ code: string;
24939
+ };
24940
+ /**
24941
+ * Internal server error
24942
+ */
24943
+ 500: {
24944
+ /**
24945
+ * Human-readable error message. May change wording.
24946
+ */
24947
+ error: string;
24948
+ /**
24949
+ * Machine-readable error code. Stable identifier.
24950
+ */
24951
+ code: string;
24952
+ };
24953
+ };
24954
+ export type PostForecastSignificantDatesError = PostForecastSignificantDatesErrors[keyof PostForecastSignificantDatesErrors];
24955
+ export type PostForecastSignificantDatesResponses = {
24956
+ /**
24957
+ * High-significance forecast events across the requested domains
24958
+ */
24959
+ 200: {
24960
+ /**
24961
+ * Echo of the birth subject this forecast was built for.
24962
+ */
24963
+ birthData: {
24964
+ /**
24965
+ * Birth date in YYYY-MM-DD format. Anchors the natal chart and the Vimshottari dasha sequence.
24966
+ */
24967
+ date: string;
24968
+ /**
24969
+ * Birth time in 24-hour HH:MM:SS format. Precision matters for the natal positions the transit aspects are measured against.
24970
+ */
24971
+ time: string;
24972
+ /**
24973
+ * Decimal hours (e.g. 5.5 for IST, -5 for EST) OR IANA name (e.g. "America/New_York", "UTC"). IANA is resolved to the DST-correct offset for the request date. Invalid timezones return 400 with a validation error.
24974
+ */
24975
+ timezone: number | string;
24976
+ /**
24977
+ * Birth latitude in decimal degrees. Optional and does not affect the timeline. Defaults to 0.
24978
+ */
24979
+ latitude?: number;
24980
+ /**
24981
+ * Birth longitude in decimal degrees. Optional and does not affect the timeline. Defaults to 0.
24982
+ */
24983
+ longitude?: number;
24984
+ };
24985
+ /**
24986
+ * First day of the resolved forecast window.
24987
+ */
24988
+ startDate: string;
24989
+ /**
24990
+ * Last day of the resolved forecast window after the horizon clamp.
24991
+ */
24992
+ endDate: string;
24993
+ /**
24994
+ * Number of events in the timeline after deduplication, filtering, and the event cap.
24995
+ */
24996
+ count: number;
24997
+ /**
24998
+ * The merged, time-ordered forecast events across the requested domains.
24999
+ */
25000
+ events: Array<{
25001
+ /**
25002
+ * Calendar date of the event in YYYY-MM-DD (UTC).
25003
+ */
25004
+ date: string;
25005
+ /**
25006
+ * Exact instant of the event as an ISO-8601 UTC datetime. Astronomical events are refined to this instant by search, not reported at a daily sample point.
25007
+ */
25008
+ datetime: string;
25009
+ /**
25010
+ * 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.
25011
+ */
25012
+ domain: 'western' | 'vedic' | 'biorhythm';
25013
+ /**
25014
+ * Event kind. transit-aspect, sign-ingress, and retrograde-station 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.
25015
+ */
25016
+ type: 'transit-aspect' | 'sign-ingress' | 'retrograde-station' | 'dasha-change' | 'critical-day';
25017
+ /**
25018
+ * Primary subject of the event. A transiting planet for western events, a mahadasha or antardasha label for dasha changes, or the critical cycle for biorhythm days.
25019
+ */
25020
+ body: string;
25021
+ /**
25022
+ * For a transit-aspect, the natal body the transit aspects. For a sign-ingress, the zodiac sign entered. Absent for other event types.
25023
+ */
25024
+ target?: string;
25025
+ /**
25026
+ * For a transit-aspect, the angular relationship. One of conjunction, sextile, square, trine, opposition. Absent for other event types.
25027
+ */
25028
+ aspect?: string;
25029
+ /**
25030
+ * For a transit-aspect, the separation in degrees from the exact aspect at the reported instant. Tighter orb means a more exact and significant aspect.
25031
+ */
25032
+ orb?: number;
25033
+ /**
25034
+ * For a retrograde-station, whether the planet turns retrograde or direct. A stable machine value, never localized. Absent for other event types.
25035
+ */
25036
+ station?: 'retrograde' | 'direct';
25037
+ /**
25038
+ * 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.
25039
+ */
25040
+ description: string;
25041
+ /**
25042
+ * Importance score from 0 to 100. Outer-planet exact transit aspects and mahadasha changes score highest; fast Moon events and biorhythm critical days score lower.
25043
+ */
25044
+ significance: number;
25045
+ }>;
25046
+ };
25047
+ };
25048
+ export type PostForecastSignificantDatesResponse = PostForecastSignificantDatesResponses[keyof PostForecastSignificantDatesResponses];
22238
25049
  export type PostBiorhythmReadingData = {
22239
25050
  body?: {
22240
25051
  /**