@roxyapi/sdk 1.2.2 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/types.gen.ts CHANGED
@@ -3329,6 +3329,14 @@ export type GetAngelNumbersNumbersData = {
3329
3329
  * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
3330
3330
  */
3331
3331
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
3332
+ /**
3333
+ * Maximum items to return per page. Range: 1-50, default 20.
3334
+ */
3335
+ limit?: number;
3336
+ /**
3337
+ * Number of items to skip for pagination. Default 0.
3338
+ */
3339
+ offset?: number;
3332
3340
  /**
3333
3341
  * Filter results by angel number pattern type. "repeating" returns numbers like 111, 444, 7777. "sequential" returns patterns like 1234. "mirror" returns palindrome patterns like 1212. "master" returns 11, 22, 33. "root" returns single digits 0-9.
3334
3342
  */
@@ -3398,36 +3406,53 @@ export type GetAngelNumbersNumbersResponses = {
3398
3406
  /**
3399
3407
  * List of angel numbers with summary information
3400
3408
  */
3401
- 200: Array<{
3402
- /**
3403
- * Angel number sequence as a string. Common patterns include triple repeating (111-999), quad repeating (1111-9999), master numbers (11, 22, 33), mirror patterns (1212), and sequential numbers (1234).
3404
- */
3405
- number: string;
3406
- /**
3407
- * Short descriptive title capturing the core theme and spiritual significance of this angel number.
3408
- */
3409
- title: string;
3410
- /**
3411
- * One to two sentence summary of the divine message. Ideal for push notifications, daily guidance widgets, and quick reference lookups.
3412
- */
3413
- coreMessage: string;
3409
+ 200: {
3414
3410
  /**
3415
- * Pattern classification of the angel number. "repeating" means all digits are the same (111, 4444). "sequential" means consecutive digits (1234). "mirror" means palindrome or alternating pattern (1212, 1221). "master" means numerology master number (11, 22, 33). "root" means single digit (0-9).
3411
+ * Total number of angel numbers matching the applied filters. 43 for the full set, fewer when filtered by type.
3416
3412
  */
3417
- type: string;
3413
+ total: number;
3418
3414
  /**
3419
- * Numerology digit root calculated by summing all digits and reducing to a single digit. Links each angel number to foundational numerology meaning. Master numbers 11, 22, 33 are preserved without further reduction.
3415
+ * Maximum items returned per page.
3420
3416
  */
3421
- digitRoot: number;
3417
+ limit: number;
3422
3418
  /**
3423
- * Five to eight keywords capturing the spiritual themes and energy of this angel number. Useful for search, filtering, and content generation.
3419
+ * Number of items skipped from the start of the result set.
3424
3420
  */
3425
- keywords: Array<string>;
3421
+ offset: number;
3426
3422
  /**
3427
- * Overall energy classification. "positive" indicates encouraging, uplifting energy. "neutral" indicates transitional energy (neither purely positive nor cautionary). "cautionary" indicates a gentle warning to rebalance or pay attention.
3423
+ * Array of angel number summaries for the current page.
3428
3424
  */
3429
- energy: string;
3430
- }>;
3425
+ numbers: Array<{
3426
+ /**
3427
+ * Angel number sequence as a string. Common patterns include triple repeating (111-999), quad repeating (1111-9999), master numbers (11, 22, 33), mirror patterns (1212), and sequential numbers (1234).
3428
+ */
3429
+ number: string;
3430
+ /**
3431
+ * Short descriptive title capturing the core theme and spiritual significance of this angel number.
3432
+ */
3433
+ title: string;
3434
+ /**
3435
+ * One to two sentence summary of the divine message. Ideal for push notifications, daily guidance widgets, and quick reference lookups.
3436
+ */
3437
+ coreMessage: string;
3438
+ /**
3439
+ * Pattern classification of the angel number. "repeating" means all digits are the same (111, 4444). "sequential" means consecutive digits (1234). "mirror" means palindrome or alternating pattern (1212, 1221). "master" means numerology master number (11, 22, 33). "root" means single digit (0-9).
3440
+ */
3441
+ type: string;
3442
+ /**
3443
+ * Numerology digit root calculated by summing all digits and reducing to a single digit. Links each angel number to foundational numerology meaning. Master numbers 11, 22, 33 are preserved without further reduction.
3444
+ */
3445
+ digitRoot: number;
3446
+ /**
3447
+ * Five to eight keywords capturing the spiritual themes and energy of this angel number. Useful for search, filtering, and content generation.
3448
+ */
3449
+ keywords: Array<string>;
3450
+ /**
3451
+ * Overall energy classification. "positive" indicates encouraging, uplifting energy. "neutral" indicates transitional energy (neither purely positive nor cautionary). "cautionary" indicates a gentle warning to rebalance or pay attention.
3452
+ */
3453
+ energy: string;
3454
+ }>;
3455
+ };
3431
3456
  };
3432
3457
 
3433
3458
  export type GetAngelNumbersNumbersResponse = GetAngelNumbersNumbersResponses[keyof GetAngelNumbersNumbersResponses];
@@ -3761,23 +3786,28 @@ export type GetAngelNumbersLookupResponses = {
3761
3786
 
3762
3787
  export type GetAngelNumbersLookupResponse = GetAngelNumbersLookupResponses[keyof GetAngelNumbersLookupResponses];
3763
3788
 
3764
- export type GetAngelNumbersDailyData = {
3765
- body?: never;
3789
+ export type PostAngelNumbersDailyData = {
3790
+ body?: {
3791
+ /**
3792
+ * Optional seed for reproducible readings. Same seed + same date = same angel number every time. Pass any unique identifier (userId, email hash, session token). Omit for anonymous daily readings.
3793
+ */
3794
+ seed?: string;
3795
+ /**
3796
+ * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily readings or pre-generating future ones.
3797
+ */
3798
+ date?: string;
3799
+ };
3766
3800
  path?: never;
3767
3801
  query?: {
3768
3802
  /**
3769
3803
  * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
3770
3804
  */
3771
3805
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
3772
- /**
3773
- * Date seed in YYYY-MM-DD format for deterministic selection. If omitted, uses the current UTC date. Same seed always returns the same angel number.
3774
- */
3775
- seed?: string;
3776
3806
  };
3777
3807
  url: '/angel-numbers/daily';
3778
3808
  };
3779
3809
 
3780
- export type GetAngelNumbersDailyErrors = {
3810
+ export type PostAngelNumbersDailyErrors = {
3781
3811
  /**
3782
3812
  * Validation error (missing or invalid parameters)
3783
3813
  */
@@ -3832,9 +3862,9 @@ export type GetAngelNumbersDailyErrors = {
3832
3862
  };
3833
3863
  };
3834
3864
 
3835
- export type GetAngelNumbersDailyError = GetAngelNumbersDailyErrors[keyof GetAngelNumbersDailyErrors];
3865
+ export type PostAngelNumbersDailyError = PostAngelNumbersDailyErrors[keyof PostAngelNumbersDailyErrors];
3836
3866
 
3837
- export type GetAngelNumbersDailyResponses = {
3867
+ export type PostAngelNumbersDailyResponses = {
3838
3868
  /**
3839
3869
  * Daily angel number with complete interpretation
3840
3870
  */
@@ -3843,6 +3873,10 @@ export type GetAngelNumbersDailyResponses = {
3843
3873
  * The date used for angel number selection (UTC).
3844
3874
  */
3845
3875
  date: string;
3876
+ /**
3877
+ * Computed seed used for this reading. Same seed always produces the same angel number.
3878
+ */
3879
+ seed: string;
3846
3880
  /**
3847
3881
  * Angel number sequence selected for today. Three or more digit repeating, sequential, or mirror pattern (e.g., 111, 444, 1212).
3848
3882
  */
@@ -3903,7 +3937,7 @@ export type GetAngelNumbersDailyResponses = {
3903
3937
  };
3904
3938
  };
3905
3939
 
3906
- export type GetAngelNumbersDailyResponse = GetAngelNumbersDailyResponses[keyof GetAngelNumbersDailyResponses];
3940
+ export type PostAngelNumbersDailyResponse = PostAngelNumbersDailyResponses[keyof PostAngelNumbersDailyResponses];
3907
3941
 
3908
3942
  export type GetAstrologySignsData = {
3909
3943
  body?: never;
@@ -4017,13 +4051,13 @@ export type GetAstrologySignsResponses = {
4017
4051
 
4018
4052
  export type GetAstrologySignsResponse = GetAstrologySignsResponses[keyof GetAstrologySignsResponses];
4019
4053
 
4020
- export type GetAstrologySignsByIdentifierData = {
4054
+ export type GetAstrologySignsByIdData = {
4021
4055
  body?: never;
4022
4056
  path: {
4023
4057
  /**
4024
4058
  * Sign ID (lowercase, e.g., aries, taurus) or display name (case-insensitive, e.g., Aries, TAURUS).
4025
4059
  */
4026
- identifier: string;
4060
+ id: string;
4027
4061
  };
4028
4062
  query?: {
4029
4063
  /**
@@ -4031,10 +4065,10 @@ export type GetAstrologySignsByIdentifierData = {
4031
4065
  */
4032
4066
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
4033
4067
  };
4034
- url: '/astrology/signs/{identifier}';
4068
+ url: '/astrology/signs/{id}';
4035
4069
  };
4036
4070
 
4037
- export type GetAstrologySignsByIdentifierErrors = {
4071
+ export type GetAstrologySignsByIdErrors = {
4038
4072
  /**
4039
4073
  * Validation error (missing or invalid parameters)
4040
4074
  */
@@ -4102,9 +4136,9 @@ export type GetAstrologySignsByIdentifierErrors = {
4102
4136
  };
4103
4137
  };
4104
4138
 
4105
- export type GetAstrologySignsByIdentifierError = GetAstrologySignsByIdentifierErrors[keyof GetAstrologySignsByIdentifierErrors];
4139
+ export type GetAstrologySignsByIdError = GetAstrologySignsByIdErrors[keyof GetAstrologySignsByIdErrors];
4106
4140
 
4107
- export type GetAstrologySignsByIdentifierResponses = {
4141
+ export type GetAstrologySignsByIdResponses = {
4108
4142
  /**
4109
4143
  * Successfully retrieved zodiac sign
4110
4144
  */
@@ -4194,7 +4228,7 @@ export type GetAstrologySignsByIdentifierResponses = {
4194
4228
  };
4195
4229
  };
4196
4230
 
4197
- export type GetAstrologySignsByIdentifierResponse = GetAstrologySignsByIdentifierResponses[keyof GetAstrologySignsByIdentifierResponses];
4231
+ export type GetAstrologySignsByIdResponse = GetAstrologySignsByIdResponses[keyof GetAstrologySignsByIdResponses];
4198
4232
 
4199
4233
  export type GetAstrologyPlanetMeaningsData = {
4200
4234
  body?: never;
@@ -4303,13 +4337,13 @@ export type GetAstrologyPlanetMeaningsResponses = {
4303
4337
 
4304
4338
  export type GetAstrologyPlanetMeaningsResponse = GetAstrologyPlanetMeaningsResponses[keyof GetAstrologyPlanetMeaningsResponses];
4305
4339
 
4306
- export type GetAstrologyPlanetMeaningsByIdentifierData = {
4340
+ export type GetAstrologyPlanetMeaningsByIdData = {
4307
4341
  body?: never;
4308
4342
  path: {
4309
4343
  /**
4310
4344
  * Planet ID (lowercase, e.g., sun, moon, mercury) or display name (case-insensitive, e.g., Sun, MOON).
4311
4345
  */
4312
- identifier: string;
4346
+ id: string;
4313
4347
  };
4314
4348
  query?: {
4315
4349
  /**
@@ -4317,10 +4351,10 @@ export type GetAstrologyPlanetMeaningsByIdentifierData = {
4317
4351
  */
4318
4352
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
4319
4353
  };
4320
- url: '/astrology/planet-meanings/{identifier}';
4354
+ url: '/astrology/planet-meanings/{id}';
4321
4355
  };
4322
4356
 
4323
- export type GetAstrologyPlanetMeaningsByIdentifierErrors = {
4357
+ export type GetAstrologyPlanetMeaningsByIdErrors = {
4324
4358
  /**
4325
4359
  * Validation error (missing or invalid parameters)
4326
4360
  */
@@ -4388,9 +4422,9 @@ export type GetAstrologyPlanetMeaningsByIdentifierErrors = {
4388
4422
  };
4389
4423
  };
4390
4424
 
4391
- export type GetAstrologyPlanetMeaningsByIdentifierError = GetAstrologyPlanetMeaningsByIdentifierErrors[keyof GetAstrologyPlanetMeaningsByIdentifierErrors];
4425
+ export type GetAstrologyPlanetMeaningsByIdError = GetAstrologyPlanetMeaningsByIdErrors[keyof GetAstrologyPlanetMeaningsByIdErrors];
4392
4426
 
4393
- export type GetAstrologyPlanetMeaningsByIdentifierResponses = {
4427
+ export type GetAstrologyPlanetMeaningsByIdResponses = {
4394
4428
  /**
4395
4429
  * Successfully retrieved planet meaning
4396
4430
  */
@@ -4472,7 +4506,7 @@ export type GetAstrologyPlanetMeaningsByIdentifierResponses = {
4472
4506
  };
4473
4507
  };
4474
4508
 
4475
- export type GetAstrologyPlanetMeaningsByIdentifierResponse = GetAstrologyPlanetMeaningsByIdentifierResponses[keyof GetAstrologyPlanetMeaningsByIdentifierResponses];
4509
+ export type GetAstrologyPlanetMeaningsByIdResponse = GetAstrologyPlanetMeaningsByIdResponses[keyof GetAstrologyPlanetMeaningsByIdResponses];
4476
4510
 
4477
4511
  export type PostAstrologyNatalChartData = {
4478
4512
  body?: NatalChartRequest;
@@ -7131,6 +7165,10 @@ export type GetAstrologyHoroscopeBySignDailyData = {
7131
7165
  * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
7132
7166
  */
7133
7167
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
7168
+ /**
7169
+ * Forecast date in YYYY-MM-DD format. Defaults to today. Supports future and past dates for editorial scheduling.
7170
+ */
7171
+ date?: string;
7134
7172
  };
7135
7173
  url: '/astrology/horoscope/{sign}/daily';
7136
7174
  };
@@ -7206,15 +7244,15 @@ export type GetAstrologyHoroscopeBySignDailyResponses = {
7206
7244
  */
7207
7245
  date: string;
7208
7246
  /**
7209
- * General daily overview based on current planetary transits through the sign.
7247
+ * General daily overview based on Moon house activation and planetary transits. Unique per sign based on whole-sign house positions.
7210
7248
  */
7211
7249
  overview: string;
7212
7250
  /**
7213
- * Love and relationship forecast. Influenced by Venus and Moon transits.
7251
+ * Love and relationship forecast. Based on Venus house position relative to this sign, providing unique guidance per sign.
7214
7252
  */
7215
7253
  love: string;
7216
7254
  /**
7217
- * Career and professional outlook. Influenced by Saturn, Jupiter, and Mars transits.
7255
+ * Career and professional outlook. Based on Mars house position relative to this sign, with Saturn and Jupiter influences.
7218
7256
  */
7219
7257
  career: string;
7220
7258
  /**
@@ -7238,145 +7276,29 @@ export type GetAstrologyHoroscopeBySignDailyResponses = {
7238
7276
  */
7239
7277
  luckyColor: string;
7240
7278
  /**
7241
- * Most compatible zodiac signs today, based on elemental harmony.
7279
+ * Most compatible zodiac signs today. First sign is where Venus transits, second is the Moon sign, remainder from elemental harmony.
7242
7280
  */
7243
7281
  compatibleSigns: Array<string>;
7244
- };
7245
- };
7246
-
7247
- export type GetAstrologyHoroscopeBySignDailyResponse = GetAstrologyHoroscopeBySignDailyResponses[keyof GetAstrologyHoroscopeBySignDailyResponses];
7248
-
7249
- export type GetAstrologyHoroscopeDailyData = {
7250
- body?: never;
7251
- path?: never;
7252
- query?: {
7253
7282
  /**
7254
- * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
7283
+ * Active planetary transits affecting this sign today, with house activations. Each transit shows the planet, its current sign, and which house it activates for the queried sign.
7255
7284
  */
7256
- lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
7257
- };
7258
- url: '/astrology/horoscope/daily';
7259
- };
7260
-
7261
- export type GetAstrologyHoroscopeDailyErrors = {
7262
- /**
7263
- * Validation error (missing or invalid parameters)
7264
- */
7265
- 400: {
7285
+ activeTransits: Array<string>;
7266
7286
  /**
7267
- * Human-readable error message. May change wording.
7287
+ * Current Moon sign. Changes every 2-3 days, sets the emotional tone for all signs.
7268
7288
  */
7269
- error: string;
7289
+ moonSign: string;
7270
7290
  /**
7271
- * Machine-readable error code. Stable identifier.
7291
+ * Current lunar phase (New Moon, Waxing Crescent, First Quarter, Waxing Gibbous, Full Moon, Waning Gibbous, Last Quarter, Waning Crescent).
7272
7292
  */
7273
- code: string;
7274
- };
7275
- /**
7276
- * Invalid or missing API key
7277
- */
7278
- 401: {
7293
+ moonPhase: string;
7279
7294
  /**
7280
- * Human-readable error message. May change wording.
7281
- */
7282
- error: string;
7283
- /**
7284
- * Machine-readable error code. Stable identifier.
7295
+ * Overall energy intensity for this sign today (1-10). Higher when more transits activate this sign directly. Useful for content widgets and visual indicators.
7285
7296
  */
7286
- code: string;
7287
- };
7288
- /**
7289
- * Monthly rate limit exceeded
7290
- */
7291
- 429: {
7292
- /**
7293
- * Human-readable error message. May change wording.
7294
- */
7295
- error: string;
7296
- /**
7297
- * Machine-readable error code. Stable identifier.
7298
- */
7299
- code: string;
7300
- };
7301
- /**
7302
- * Internal server error
7303
- */
7304
- 500: {
7305
- /**
7306
- * Human-readable error message. May change wording.
7307
- */
7308
- error: string;
7309
- /**
7310
- * Machine-readable error code. Stable identifier.
7311
- */
7312
- code: string;
7297
+ energyRating: number;
7313
7298
  };
7314
7299
  };
7315
7300
 
7316
- export type GetAstrologyHoroscopeDailyError = GetAstrologyHoroscopeDailyErrors[keyof GetAstrologyHoroscopeDailyErrors];
7317
-
7318
- export type GetAstrologyHoroscopeDailyResponses = {
7319
- /**
7320
- * Daily horoscopes retrieved successfully
7321
- */
7322
- 200: {
7323
- /**
7324
- * Date of these horoscope forecasts (YYYY-MM-DD).
7325
- */
7326
- date: string;
7327
- /**
7328
- * Daily horoscope forecasts for all 12 zodiac signs (Aries through Pisces).
7329
- */
7330
- horoscopes: Array<{
7331
- /**
7332
- * Zodiac sign for this horoscope.
7333
- */
7334
- sign: string;
7335
- /**
7336
- * Date of this daily horoscope (YYYY-MM-DD).
7337
- */
7338
- date: string;
7339
- /**
7340
- * General daily overview based on current planetary transits through the sign.
7341
- */
7342
- overview: string;
7343
- /**
7344
- * Love and relationship forecast. Influenced by Venus and Moon transits.
7345
- */
7346
- love: string;
7347
- /**
7348
- * Career and professional outlook. Influenced by Saturn, Jupiter, and Mars transits.
7349
- */
7350
- career: string;
7351
- /**
7352
- * Health, energy, and wellness guidance for the day.
7353
- */
7354
- health: string;
7355
- /**
7356
- * Financial outlook and money-related guidance.
7357
- */
7358
- finance: string;
7359
- /**
7360
- * Actionable daily advice based on the dominant transit energy.
7361
- */
7362
- advice: string;
7363
- /**
7364
- * Lucky number for the day.
7365
- */
7366
- luckyNumber: number;
7367
- /**
7368
- * Lucky color for the day, derived from the sign element.
7369
- */
7370
- luckyColor: string;
7371
- /**
7372
- * Most compatible zodiac signs today, based on elemental harmony.
7373
- */
7374
- compatibleSigns: Array<string>;
7375
- }>;
7376
- };
7377
- };
7378
-
7379
- export type GetAstrologyHoroscopeDailyResponse = GetAstrologyHoroscopeDailyResponses[keyof GetAstrologyHoroscopeDailyResponses];
7301
+ export type GetAstrologyHoroscopeBySignDailyResponse = GetAstrologyHoroscopeBySignDailyResponses[keyof GetAstrologyHoroscopeBySignDailyResponses];
7380
7302
 
7381
7303
  export type GetAstrologyHoroscopeBySignWeeklyData = {
7382
7304
  body?: never;
@@ -7614,7 +7536,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
7614
7536
  */
7615
7537
  finance: string;
7616
7538
  /**
7617
- * Week-by-week breakdown of the monthly forecast.
7539
+ * Week-by-week breakdown with sign-specific focus areas based on transit house positions.
7618
7540
  */
7619
7541
  weekByWeek: Array<{
7620
7542
  /**
@@ -7622,7 +7544,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
7622
7544
  */
7623
7545
  week: number;
7624
7546
  /**
7625
- * Primary focus area for this week.
7547
+ * Primary focus area for this week, derived from planetary house activations for this sign.
7626
7548
  */
7627
7549
  focus: string;
7628
7550
  /**
@@ -7631,7 +7553,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
7631
7553
  advice: string;
7632
7554
  }>;
7633
7555
  /**
7634
- * Key astrological dates this month (lunar phases, planetary ingresses, retrogrades).
7556
+ * Key astrological dates this month with actual New Moon, Full Moon, and retrograde dates calculated from ephemeris data.
7635
7557
  */
7636
7558
  keyDates: Array<{
7637
7559
  /**
@@ -7639,7 +7561,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
7639
7561
  */
7640
7562
  date: string;
7641
7563
  /**
7642
- * Astrological event or theme active on this date.
7564
+ * Astrological event active on this date (lunar phases, retrogrades, sign ingresses).
7643
7565
  */
7644
7566
  event: string;
7645
7567
  }>;
@@ -13136,6 +13058,14 @@ export type GetTarotCardsData = {
13136
13058
  * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
13137
13059
  */
13138
13060
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
13061
+ /**
13062
+ * Maximum items to return per page. Range: 1-100, default 20.
13063
+ */
13064
+ limit?: number;
13065
+ /**
13066
+ * Number of items to skip for pagination. Default 0.
13067
+ */
13068
+ offset?: number;
13139
13069
  /**
13140
13070
  * Filter by arcana type. Major arcana (0-21) represents life lessons and spiritual themes. Minor arcana (Ace-King in 4 suits) represents daily situations and practical matters.
13141
13071
  */
@@ -13218,6 +13148,14 @@ export type GetTarotCardsResponses = {
13218
13148
  * Total number of tarot cards matching the applied filters. 78 for the full deck, 22 for Major Arcana, 56 for Minor Arcana, 14 per suit.
13219
13149
  */
13220
13150
  total: number;
13151
+ /**
13152
+ * Maximum items returned per page.
13153
+ */
13154
+ limit: number;
13155
+ /**
13156
+ * Number of items skipped from the start of the result set.
13157
+ */
13158
+ offset: number;
13221
13159
  /**
13222
13160
  * Array of tarot cards with basic metadata. Use GET /cards/:id for full upright and reversed interpretations.
13223
13161
  */
@@ -13430,11 +13368,11 @@ export type PostTarotDrawResponse = PostTarotDrawResponses[keyof PostTarotDrawRe
13430
13368
  export type PostTarotDailyData = {
13431
13369
  body?: {
13432
13370
  /**
13433
- * Optional seed for reproducible daily readings. Same seed + same date = same card every time. Pass any unique identifier (userId, email hash, session token, device ID). Omit for anonymous daily cards.
13371
+ * Optional seed for reproducible readings. Same seed + same date = same card every time. Pass any unique identifier (userId, email hash, session token). Omit for anonymous daily readings.
13434
13372
  */
13435
13373
  seed?: string;
13436
13374
  /**
13437
- * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily cards or pre-generating future readings. Must be valid ISO date string.
13375
+ * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily readings or pre-generating future ones.
13438
13376
  */
13439
13377
  date?: string;
13440
13378
  };
@@ -16655,7 +16593,7 @@ export type PostNumerologyDailyData = {
16655
16593
  */
16656
16594
  seed?: string;
16657
16595
  /**
16658
- * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily numbers or pre-generating future readings.
16596
+ * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily readings or pre-generating future ones.
16659
16597
  */
16660
16598
  date?: string;
16661
16599
  };
@@ -16797,7 +16735,7 @@ export type GetDreamsSymbolsData = {
16797
16735
  /**
16798
16736
  * Search query to match against symbol names and meanings. Case-insensitive.
16799
16737
  */
16800
- search?: string;
16738
+ q?: string;
16801
16739
  /**
16802
16740
  * Filter symbols by starting letter (a-z). Case-insensitive.
16803
16741
  */
@@ -17155,11 +17093,11 @@ export type GetDreamsSymbolsByIdResponse = GetDreamsSymbolsByIdResponses[keyof G
17155
17093
  export type PostDreamsDailyData = {
17156
17094
  body?: {
17157
17095
  /**
17158
- * Optional seed for reproducible daily symbols. Same seed + same date = same symbol every time. Pass any unique identifier (userId, email hash, session token). Omit for anonymous daily symbols.
17096
+ * Optional seed for reproducible readings. Same seed + same date = same symbol every time. Pass any unique identifier (userId, email hash, session token). Omit for anonymous daily readings.
17159
17097
  */
17160
17098
  seed?: string;
17161
17099
  /**
17162
- * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily symbols or pre-generating future ones.
17100
+ * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily readings or pre-generating future ones.
17163
17101
  */
17164
17102
  date?: string;
17165
17103
  };
@@ -17268,11 +17206,11 @@ export type PostDreamsDailyResponse = PostDreamsDailyResponses[keyof PostDreamsD
17268
17206
  export type PostIchingDailyData = {
17269
17207
  body?: {
17270
17208
  /**
17271
- * Optional seed for reproducible readings. Same seed + same date = same hexagram every time. Pass any unique identifier (userId, email hash, session token, device ID). Omit for anonymous daily readings.
17209
+ * Optional seed for reproducible readings. Same seed + same date = same hexagram every time. Pass any unique identifier (userId, email hash, session token). Omit for anonymous daily readings.
17272
17210
  */
17273
17211
  seed?: string;
17274
17212
  /**
17275
- * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily hexagrams or pre-generating future readings.
17213
+ * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily readings or pre-generating future ones.
17276
17214
  */
17277
17215
  date?: string;
17278
17216
  };
@@ -17431,11 +17369,11 @@ export type PostIchingDailyResponse = PostIchingDailyResponses[keyof PostIchingD
17431
17369
  export type PostIchingDailyCastData = {
17432
17370
  body?: {
17433
17371
  /**
17434
- * Optional seed for reproducible readings. Same seed + same date = same hexagram every time. Pass any unique identifier (userId, email hash, session token, device ID). Omit for anonymous daily readings.
17372
+ * Optional seed for reproducible readings. Same seed + same date = same hexagram every time. Pass any unique identifier (userId, email hash, session token). Omit for anonymous daily readings.
17435
17373
  */
17436
17374
  seed?: string;
17437
17375
  /**
17438
- * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily hexagrams or pre-generating future readings.
17376
+ * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily readings or pre-generating future ones.
17439
17377
  */
17440
17378
  date?: string;
17441
17379
  };
@@ -18230,13 +18168,13 @@ export type GetIchingTrigramsResponses = {
18230
18168
 
18231
18169
  export type GetIchingTrigramsResponse = GetIchingTrigramsResponses[keyof GetIchingTrigramsResponses];
18232
18170
 
18233
- export type GetIchingTrigramsByIdentifierData = {
18171
+ export type GetIchingTrigramsByIdData = {
18234
18172
  body?: never;
18235
18173
  path: {
18236
18174
  /**
18237
18175
  * Trigram number (1-8) or English name (Heaven, Earth, Thunder, Wind, Water, Fire, Mountain, Lake).
18238
18176
  */
18239
- identifier: string;
18177
+ id: string;
18240
18178
  };
18241
18179
  query?: {
18242
18180
  /**
@@ -18244,10 +18182,10 @@ export type GetIchingTrigramsByIdentifierData = {
18244
18182
  */
18245
18183
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
18246
18184
  };
18247
- url: '/iching/trigrams/{identifier}';
18185
+ url: '/iching/trigrams/{id}';
18248
18186
  };
18249
18187
 
18250
- export type GetIchingTrigramsByIdentifierErrors = {
18188
+ export type GetIchingTrigramsByIdErrors = {
18251
18189
  /**
18252
18190
  * Validation error (missing or invalid parameters)
18253
18191
  */
@@ -18315,16 +18253,16 @@ export type GetIchingTrigramsByIdentifierErrors = {
18315
18253
  };
18316
18254
  };
18317
18255
 
18318
- export type GetIchingTrigramsByIdentifierError = GetIchingTrigramsByIdentifierErrors[keyof GetIchingTrigramsByIdentifierErrors];
18256
+ export type GetIchingTrigramsByIdError = GetIchingTrigramsByIdErrors[keyof GetIchingTrigramsByIdErrors];
18319
18257
 
18320
- export type GetIchingTrigramsByIdentifierResponses = {
18258
+ export type GetIchingTrigramsByIdResponses = {
18321
18259
  /**
18322
18260
  * Trigram details.
18323
18261
  */
18324
18262
  200: Trigram;
18325
18263
  };
18326
18264
 
18327
- export type GetIchingTrigramsByIdentifierResponse = GetIchingTrigramsByIdentifierResponses[keyof GetIchingTrigramsByIdentifierResponses];
18265
+ export type GetIchingTrigramsByIdResponse = GetIchingTrigramsByIdResponses[keyof GetIchingTrigramsByIdResponses];
18328
18266
 
18329
18267
  export type GetCrystalsZodiacBySignData = {
18330
18268
  body?: never;
@@ -18340,7 +18278,7 @@ export type GetCrystalsZodiacBySignData = {
18340
18278
  */
18341
18279
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
18342
18280
  /**
18343
- * Maximum items to return per page. Range: 1-100, default 20.
18281
+ * Maximum items to return per page. Range: 1-30, default 20.
18344
18282
  */
18345
18283
  limit?: number;
18346
18284
  /**
@@ -18430,7 +18368,7 @@ export type GetCrystalsZodiacBySignResponses = {
18430
18368
  */
18431
18369
  offset: number;
18432
18370
  /**
18433
- * Crystal summaries for this zodiac sign. Call /crystals/:slug for full healing properties.
18371
+ * Crystal summaries for this zodiac sign. Call /crystals/:id for full healing properties.
18434
18372
  */
18435
18373
  crystals: Array<{
18436
18374
  /**
@@ -18440,7 +18378,7 @@ export type GetCrystalsZodiacBySignResponses = {
18440
18378
  /**
18441
18379
  * URL-safe crystal identifier for detail lookup.
18442
18380
  */
18443
- slug: string;
18381
+ id: string;
18444
18382
  /**
18445
18383
  * URL to crystal photograph for visual identification.
18446
18384
  */
@@ -18469,7 +18407,7 @@ export type GetCrystalsChakraByChakraData = {
18469
18407
  */
18470
18408
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
18471
18409
  /**
18472
- * Maximum items to return per page. Range: 1-100, default 20.
18410
+ * Maximum items to return per page. Range: 1-30, default 20.
18473
18411
  */
18474
18412
  limit?: number;
18475
18413
  /**
@@ -18559,7 +18497,7 @@ export type GetCrystalsChakraByChakraResponses = {
18559
18497
  */
18560
18498
  offset: number;
18561
18499
  /**
18562
- * Crystal summaries for this chakra. Call /crystals/:slug for full healing properties.
18500
+ * Crystal summaries for this chakra. Call /crystals/:id for full healing properties.
18563
18501
  */
18564
18502
  crystals: Array<{
18565
18503
  /**
@@ -18569,7 +18507,7 @@ export type GetCrystalsChakraByChakraResponses = {
18569
18507
  /**
18570
18508
  * URL-safe crystal identifier for detail lookup.
18571
18509
  */
18572
- slug: string;
18510
+ id: string;
18573
18511
  /**
18574
18512
  * URL to crystal photograph for visual identification.
18575
18513
  */
@@ -18598,7 +18536,7 @@ export type GetCrystalsElementByElementData = {
18598
18536
  */
18599
18537
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
18600
18538
  /**
18601
- * Maximum items to return per page. Range: 1-100, default 20.
18539
+ * Maximum items to return per page. Range: 1-30, default 20.
18602
18540
  */
18603
18541
  limit?: number;
18604
18542
  /**
@@ -18688,7 +18626,7 @@ export type GetCrystalsElementByElementResponses = {
18688
18626
  */
18689
18627
  offset: number;
18690
18628
  /**
18691
- * Crystal summaries for this element. Call /crystals/:slug for full healing properties.
18629
+ * Crystal summaries for this element. Call /crystals/:id for full healing properties.
18692
18630
  */
18693
18631
  crystals: Array<{
18694
18632
  /**
@@ -18698,7 +18636,7 @@ export type GetCrystalsElementByElementResponses = {
18698
18636
  /**
18699
18637
  * URL-safe crystal identifier for detail lookup.
18700
18638
  */
18701
- slug: string;
18639
+ id: string;
18702
18640
  /**
18703
18641
  * URL to crystal photograph for visual identification.
18704
18642
  */
@@ -18803,9 +18741,9 @@ export type GetCrystalsBirthstoneByMonthResponses = {
18803
18741
  /**
18804
18742
  * Number of birthstone crystals for this month.
18805
18743
  */
18806
- count: number;
18744
+ total: number;
18807
18745
  /**
18808
- * Birthstone crystals for this month. Call /crystals/:slug for full healing properties.
18746
+ * Birthstone crystals for this month. Call /crystals/:id for full healing properties.
18809
18747
  */
18810
18748
  crystals: Array<{
18811
18749
  /**
@@ -18815,9 +18753,9 @@ export type GetCrystalsBirthstoneByMonthResponses = {
18815
18753
  /**
18816
18754
  * URL-safe crystal identifier for detail lookup.
18817
18755
  */
18818
- slug: string;
18756
+ id: string;
18819
18757
  /**
18820
- * URL to crystal photograph.
18758
+ * URL to crystal photograph for visual identification.
18821
18759
  */
18822
18760
  imageUrl: string;
18823
18761
  /**
@@ -18843,7 +18781,7 @@ export type GetCrystalsSearchData = {
18843
18781
  */
18844
18782
  q: string;
18845
18783
  /**
18846
- * Maximum items to return per page. Range: 1-100, default 20.
18784
+ * Maximum items to return per page. Range: 1-50, default 20.
18847
18785
  */
18848
18786
  limit?: number;
18849
18787
  /**
@@ -18933,7 +18871,7 @@ export type GetCrystalsSearchResponses = {
18933
18871
  */
18934
18872
  offset: number;
18935
18873
  /**
18936
- * Matching crystal summaries. Call /crystals/:slug for full healing properties.
18874
+ * Matching crystal summaries. Call /crystals/:id for full healing properties.
18937
18875
  */
18938
18876
  crystals: Array<{
18939
18877
  /**
@@ -18943,9 +18881,9 @@ export type GetCrystalsSearchResponses = {
18943
18881
  /**
18944
18882
  * URL-safe crystal identifier for detail lookup.
18945
18883
  */
18946
- slug: string;
18884
+ id: string;
18947
18885
  /**
18948
- * URL to crystal photograph.
18886
+ * URL to crystal photograph for visual identification.
18949
18887
  */
18950
18888
  imageUrl: string;
18951
18889
  /**
@@ -18958,13 +18896,13 @@ export type GetCrystalsSearchResponses = {
18958
18896
 
18959
18897
  export type GetCrystalsSearchResponse = GetCrystalsSearchResponses[keyof GetCrystalsSearchResponses];
18960
18898
 
18961
- export type GetCrystalsPairingsBySlugData = {
18899
+ export type GetCrystalsPairingsByIdData = {
18962
18900
  body?: never;
18963
18901
  path: {
18964
18902
  /**
18965
18903
  * URL-safe crystal identifier to find pairings for (e.g., "amethyst", "rose-quartz").
18966
18904
  */
18967
- slug: string;
18905
+ id: string;
18968
18906
  };
18969
18907
  query?: {
18970
18908
  /**
@@ -18972,10 +18910,10 @@ export type GetCrystalsPairingsBySlugData = {
18972
18910
  */
18973
18911
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
18974
18912
  };
18975
- url: '/crystals/pairings/{slug}';
18913
+ url: '/crystals/pairings/{id}';
18976
18914
  };
18977
18915
 
18978
- export type GetCrystalsPairingsBySlugErrors = {
18916
+ export type GetCrystalsPairingsByIdErrors = {
18979
18917
  /**
18980
18918
  * Validation error (missing or invalid parameters)
18981
18919
  */
@@ -19043,15 +18981,15 @@ export type GetCrystalsPairingsBySlugErrors = {
19043
18981
  };
19044
18982
  };
19045
18983
 
19046
- export type GetCrystalsPairingsBySlugError = GetCrystalsPairingsBySlugErrors[keyof GetCrystalsPairingsBySlugErrors];
18984
+ export type GetCrystalsPairingsByIdError = GetCrystalsPairingsByIdErrors[keyof GetCrystalsPairingsByIdErrors];
19047
18985
 
19048
- export type GetCrystalsPairingsBySlugResponses = {
18986
+ export type GetCrystalsPairingsByIdResponses = {
19049
18987
  /**
19050
18988
  * Crystal pairing recommendations
19051
18989
  */
19052
18990
  200: {
19053
18991
  /**
19054
- * The crystal slug that pairings were requested for.
18992
+ * The crystal identifier that pairings were requested for.
19055
18993
  */
19056
18994
  crystal: string;
19057
18995
  /**
@@ -19073,7 +19011,7 @@ export type GetCrystalsPairingsBySlugResponses = {
19073
19011
  /**
19074
19012
  * URL-safe identifier for the paired crystal.
19075
19013
  */
19076
- slug: string;
19014
+ id: string;
19077
19015
  /**
19078
19016
  * URL to paired crystal photograph.
19079
19017
  */
@@ -19094,25 +19032,30 @@ export type GetCrystalsPairingsBySlugResponses = {
19094
19032
  };
19095
19033
  };
19096
19034
 
19097
- export type GetCrystalsPairingsBySlugResponse = GetCrystalsPairingsBySlugResponses[keyof GetCrystalsPairingsBySlugResponses];
19035
+ export type GetCrystalsPairingsByIdResponse = GetCrystalsPairingsByIdResponses[keyof GetCrystalsPairingsByIdResponses];
19098
19036
 
19099
- export type GetCrystalsDailyData = {
19100
- body?: never;
19037
+ export type PostCrystalsDailyData = {
19038
+ body?: {
19039
+ /**
19040
+ * Optional seed for reproducible readings. Same seed + same date = same crystal every time. Pass any unique identifier (userId, email hash, session token). Omit for anonymous daily readings.
19041
+ */
19042
+ seed?: string;
19043
+ /**
19044
+ * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily readings or pre-generating future ones.
19045
+ */
19046
+ date?: string;
19047
+ };
19101
19048
  path?: never;
19102
19049
  query?: {
19103
19050
  /**
19104
19051
  * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
19105
19052
  */
19106
19053
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
19107
- /**
19108
- * Date seed in YYYY-MM-DD format for deterministic selection. If omitted, uses the current UTC date. Same seed always returns the same crystal.
19109
- */
19110
- seed?: string;
19111
19054
  };
19112
19055
  url: '/crystals/daily';
19113
19056
  };
19114
19057
 
19115
- export type GetCrystalsDailyErrors = {
19058
+ export type PostCrystalsDailyErrors = {
19116
19059
  /**
19117
19060
  * Validation error (missing or invalid parameters)
19118
19061
  */
@@ -19167,9 +19110,9 @@ export type GetCrystalsDailyErrors = {
19167
19110
  };
19168
19111
  };
19169
19112
 
19170
- export type GetCrystalsDailyError = GetCrystalsDailyErrors[keyof GetCrystalsDailyErrors];
19113
+ export type PostCrystalsDailyError = PostCrystalsDailyErrors[keyof PostCrystalsDailyErrors];
19171
19114
 
19172
- export type GetCrystalsDailyResponses = {
19115
+ export type PostCrystalsDailyResponses = {
19173
19116
  /**
19174
19117
  * Daily crystal teaser with summary information
19175
19118
  */
@@ -19178,14 +19121,18 @@ export type GetCrystalsDailyResponses = {
19178
19121
  * The date used for crystal selection (UTC).
19179
19122
  */
19180
19123
  date: string;
19124
+ /**
19125
+ * Computed seed used for this reading. Same seed always produces the same crystal.
19126
+ */
19127
+ seed: string;
19181
19128
  /**
19182
19129
  * Display name of the crystal selected for this date.
19183
19130
  */
19184
19131
  name: string;
19185
19132
  /**
19186
- * URL-safe identifier. Call /crystals/:slug for full healing properties.
19133
+ * URL-safe identifier. Call /crystals/:id for full healing properties.
19187
19134
  */
19188
- slug: string;
19135
+ id: string;
19189
19136
  /**
19190
19137
  * URL to crystal photograph. Use for daily crystal card display and visual features.
19191
19138
  */
@@ -19209,7 +19156,7 @@ export type GetCrystalsDailyResponses = {
19209
19156
  };
19210
19157
  };
19211
19158
 
19212
- export type GetCrystalsDailyResponse = GetCrystalsDailyResponses[keyof GetCrystalsDailyResponses];
19159
+ export type PostCrystalsDailyResponse = PostCrystalsDailyResponses[keyof PostCrystalsDailyResponses];
19213
19160
 
19214
19161
  export type GetCrystalsRandomData = {
19215
19162
  body?: never;
@@ -19290,9 +19237,9 @@ export type GetCrystalsRandomResponses = {
19290
19237
  */
19291
19238
  name: string;
19292
19239
  /**
19293
- * URL-safe identifier. Call /crystals/:slug for full healing properties.
19240
+ * URL-safe identifier. Call /crystals/:id for full healing properties.
19294
19241
  */
19295
- slug: string;
19242
+ id: string;
19296
19243
  /**
19297
19244
  * URL to crystal photograph for visual display.
19298
19245
  */
@@ -19601,38 +19548,38 @@ export type GetCrystalsResponses = {
19601
19548
  */
19602
19549
  crystals: Array<{
19603
19550
  /**
19604
- * Display name of the crystal or healing stone.
19551
+ * Crystal display name.
19605
19552
  */
19606
19553
  name: string;
19607
19554
  /**
19608
- * URL-safe identifier for the crystal. Use this value in the detail endpoint path to retrieve full healing properties.
19555
+ * URL-safe crystal identifier for detail lookup.
19609
19556
  */
19610
- slug: string;
19557
+ id: string;
19611
19558
  /**
19612
- * URL to a high-quality crystal photograph. Use for visual crystal guides, product listings, and crystal identification features.
19559
+ * URL to crystal photograph for visual identification.
19613
19560
  */
19614
19561
  imageUrl: string;
19615
19562
  /**
19616
- * Chakra energy centers this crystal resonates with. One of: Root, Sacral, Solar Plexus, Heart, Throat, Third Eye, Crown.
19563
+ * Primary colors of this crystal variety. Null when color data is unavailable.
19617
19564
  */
19618
- chakras: Array<string>;
19565
+ colors: Array<string>;
19619
19566
  /**
19620
- * Primary colors of this crystal variety. Null when color data is unavailable. Useful for color-based crystal selection and visual display.
19567
+ * Chakra energy centers this crystal resonates with. One of: Root, Sacral, Solar Plexus, Heart, Throat, Third Eye, Crown.
19621
19568
  */
19622
- colors: Array<string>;
19569
+ chakras: Array<string>;
19623
19570
  }>;
19624
19571
  };
19625
19572
  };
19626
19573
 
19627
19574
  export type GetCrystalsResponse = GetCrystalsResponses[keyof GetCrystalsResponses];
19628
19575
 
19629
- export type GetCrystalsBySlugData = {
19576
+ export type GetCrystalsByIdData = {
19630
19577
  body?: never;
19631
19578
  path: {
19632
19579
  /**
19633
19580
  * URL-safe crystal identifier (e.g., "amethyst", "rose-quartz", "black-tourmaline"). Must match an entry in the database.
19634
19581
  */
19635
- slug: string;
19582
+ id: string;
19636
19583
  };
19637
19584
  query?: {
19638
19585
  /**
@@ -19640,10 +19587,10 @@ export type GetCrystalsBySlugData = {
19640
19587
  */
19641
19588
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
19642
19589
  };
19643
- url: '/crystals/{slug}';
19590
+ url: '/crystals/{id}';
19644
19591
  };
19645
19592
 
19646
- export type GetCrystalsBySlugErrors = {
19593
+ export type GetCrystalsByIdErrors = {
19647
19594
  /**
19648
19595
  * Validation error (missing or invalid parameters)
19649
19596
  */
@@ -19711,9 +19658,9 @@ export type GetCrystalsBySlugErrors = {
19711
19658
  };
19712
19659
  };
19713
19660
 
19714
- export type GetCrystalsBySlugError = GetCrystalsBySlugErrors[keyof GetCrystalsBySlugErrors];
19661
+ export type GetCrystalsByIdError = GetCrystalsByIdErrors[keyof GetCrystalsByIdErrors];
19715
19662
 
19716
- export type GetCrystalsBySlugResponses = {
19663
+ export type GetCrystalsByIdResponses = {
19717
19664
  /**
19718
19665
  * Complete crystal healing properties with all associations
19719
19666
  */
@@ -19725,7 +19672,7 @@ export type GetCrystalsBySlugResponses = {
19725
19672
  /**
19726
19673
  * URL-safe identifier for the crystal.
19727
19674
  */
19728
- slug: string;
19675
+ id: string;
19729
19676
  /**
19730
19677
  * URL to a high-quality crystal photograph. Use for visual crystal guides, product listings, and crystal identification features.
19731
19678
  */
@@ -19792,13 +19739,13 @@ export type GetCrystalsBySlugResponses = {
19792
19739
  */
19793
19740
  affirmation: string;
19794
19741
  /**
19795
- * Crystal slugs that pair well with this stone for enhanced healing combinations. Use for crystal grid and pairing recommendations.
19742
+ * Crystal identifiers that pair well with this stone for enhanced healing combinations. Use for crystal grid and pairing recommendations.
19796
19743
  */
19797
19744
  pairsWith: Array<string>;
19798
19745
  };
19799
19746
  };
19800
19747
 
19801
- export type GetCrystalsBySlugResponse = GetCrystalsBySlugResponses[keyof GetCrystalsBySlugResponses];
19748
+ export type GetCrystalsByIdResponse = GetCrystalsByIdResponses[keyof GetCrystalsByIdResponses];
19802
19749
 
19803
19750
  export type GetLocationSearchData = {
19804
19751
  body?: never;
@@ -19812,6 +19759,10 @@ export type GetLocationSearchData = {
19812
19759
  * Maximum items to return per page. Range: 1-50, default 10.
19813
19760
  */
19814
19761
  limit?: number;
19762
+ /**
19763
+ * Number of items to skip for pagination. Default 0.
19764
+ */
19765
+ offset?: number;
19815
19766
  };
19816
19767
  url: '/location/search';
19817
19768
  };
@@ -19877,44 +19828,61 @@ export type GetLocationSearchResponses = {
19877
19828
  /**
19878
19829
  * Matching cities sorted by relevance (prefix match first) then population
19879
19830
  */
19880
- 200: Array<{
19881
- /**
19882
- * City name as commonly used. Matches the local or internationally recognized name for the location.
19883
- */
19884
- city: string;
19885
- /**
19886
- * State, province, canton, or administrative region. Helps disambiguate cities with the same name across regions (e.g. Springfield IL vs Springfield MO).
19887
- */
19888
- province: string;
19889
- /**
19890
- * Full country name in English.
19891
- */
19892
- country: string;
19893
- /**
19894
- * ISO 3166-1 alpha-2 country code. Use for filtering cities by country or building country-specific location pickers.
19895
- */
19896
- iso2: string;
19897
- /**
19898
- * Geographic latitude in decimal degrees (-90 to 90). Pass directly to birth chart, natal chart, horoscope, synastry, transit, kundli, and panchang API endpoints as the latitude parameter.
19899
- */
19900
- latitude: number;
19831
+ 200: {
19901
19832
  /**
19902
- * Geographic longitude in decimal degrees (-180 to 180). Pass directly to astrology, horoscope, and panchang API endpoints alongside latitude.
19833
+ * Total number of cities matching the search query.
19903
19834
  */
19904
- longitude: number;
19835
+ total: number;
19905
19836
  /**
19906
- * IANA timezone identifier following the tz database standard (e.g. Europe/Berlin, America/New_York, Asia/Tokyo). Use with JavaScript Date, Luxon, day.js, or any date library for accurate local time conversion.
19837
+ * Page size used for this response.
19907
19838
  */
19908
- timezone: string;
19839
+ limit: number;
19909
19840
  /**
19910
- * Current UTC offset in decimal hours, automatically adjusted for daylight saving time. Pass directly as the timezone parameter in astrology API endpoints. Examples: 1 for CET, 2 for CEST, -5 for EST, 5.5 for IST, 5.75 for Nepal.
19841
+ * Number of cities skipped. Use with limit for pagination.
19911
19842
  */
19912
- utcOffset: number;
19843
+ offset: number;
19913
19844
  /**
19914
- * City population estimate from geographic databases. Larger cities rank higher in search results, ensuring major metropolitan areas appear first in autocomplete suggestions.
19845
+ * City results for the current page, sorted by relevance (prefix match first) then population.
19915
19846
  */
19916
- population: number;
19917
- }>;
19847
+ cities: Array<{
19848
+ /**
19849
+ * City name as commonly used. Matches the local or internationally recognized name for the location.
19850
+ */
19851
+ city: string;
19852
+ /**
19853
+ * State, province, canton, or administrative region. Helps disambiguate cities with the same name across regions (e.g. Springfield IL vs Springfield MO).
19854
+ */
19855
+ province: string;
19856
+ /**
19857
+ * Full country name in English.
19858
+ */
19859
+ country: string;
19860
+ /**
19861
+ * ISO 3166-1 alpha-2 country code. Use for filtering cities by country or building country-specific location pickers.
19862
+ */
19863
+ iso2: string;
19864
+ /**
19865
+ * Geographic latitude in decimal degrees (-90 to 90). Pass directly to birth chart, natal chart, horoscope, synastry, transit, kundli, and panchang API endpoints as the latitude parameter.
19866
+ */
19867
+ latitude: number;
19868
+ /**
19869
+ * Geographic longitude in decimal degrees (-180 to 180). Pass directly to astrology, horoscope, and panchang API endpoints alongside latitude.
19870
+ */
19871
+ longitude: number;
19872
+ /**
19873
+ * IANA timezone identifier following the tz database standard (e.g. Europe/Berlin, America/New_York, Asia/Tokyo). Use with JavaScript Date, Luxon, day.js, or any date library for accurate local time conversion.
19874
+ */
19875
+ timezone: string;
19876
+ /**
19877
+ * Current UTC offset in decimal hours, automatically adjusted for daylight saving time. Pass directly as the timezone parameter in astrology API endpoints. Examples: 1 for CET, 2 for CEST, -5 for EST, 5.5 for IST, 5.75 for Nepal.
19878
+ */
19879
+ utcOffset: number;
19880
+ /**
19881
+ * City population estimate from geographic databases. Larger cities rank higher in search results, ensuring major metropolitan areas appear first in autocomplete suggestions.
19882
+ */
19883
+ population: number;
19884
+ }>;
19885
+ };
19918
19886
  };
19919
19887
 
19920
19888
  export type GetLocationSearchResponse = GetLocationSearchResponses[keyof GetLocationSearchResponses];
@@ -19922,7 +19890,16 @@ export type GetLocationSearchResponse = GetLocationSearchResponses[keyof GetLoca
19922
19890
  export type GetLocationCountriesData = {
19923
19891
  body?: never;
19924
19892
  path?: never;
19925
- query?: never;
19893
+ query?: {
19894
+ /**
19895
+ * Maximum items to return per page. Range: 1-50, default 50.
19896
+ */
19897
+ limit?: number;
19898
+ /**
19899
+ * Number of items to skip for pagination. Default 0.
19900
+ */
19901
+ offset?: number;
19902
+ };
19926
19903
  url: '/location/countries';
19927
19904
  };
19928
19905
 
@@ -19987,24 +19964,41 @@ export type GetLocationCountriesResponses = {
19987
19964
  /**
19988
19965
  * Alphabetically sorted list of all 227 countries with ISO codes and city counts
19989
19966
  */
19990
- 200: Array<{
19967
+ 200: {
19991
19968
  /**
19992
- * Full country name in English. Use for display in location pickers and dropdown menus.
19969
+ * Total number of countries available.
19993
19970
  */
19994
- name: string;
19971
+ total: number;
19995
19972
  /**
19996
- * ISO 3166-1 alpha-2 country code. Use as the identifier when fetching cities for a specific country via the /countries/{iso2} endpoint.
19973
+ * Page size used for this response.
19997
19974
  */
19998
- iso2: string;
19975
+ limit: number;
19999
19976
  /**
20000
- * ISO 3166-1 alpha-3 country code. Three-letter standard used in international data exchange.
19977
+ * Number of countries skipped. Use with limit for pagination.
20001
19978
  */
20002
- iso3: string;
19979
+ offset: number;
20003
19980
  /**
20004
- * Number of searchable cities available for this country. Useful for showing coverage in UI or deciding whether to offer city search for a given country.
19981
+ * Countries for the current page, sorted alphabetically by name.
20005
19982
  */
20006
- cityCount: number;
20007
- }>;
19983
+ countries: Array<{
19984
+ /**
19985
+ * Full country name in English. Use for display in location pickers and dropdown menus.
19986
+ */
19987
+ name: string;
19988
+ /**
19989
+ * ISO 3166-1 alpha-2 country code. Use as the identifier when fetching cities for a specific country via the /countries/{iso2} endpoint.
19990
+ */
19991
+ iso2: string;
19992
+ /**
19993
+ * ISO 3166-1 alpha-3 country code. Three-letter standard used in international data exchange.
19994
+ */
19995
+ iso3: string;
19996
+ /**
19997
+ * Number of searchable cities available for this country. Useful for showing coverage in UI or deciding whether to offer city search for a given country.
19998
+ */
19999
+ cityCount: number;
20000
+ }>;
20001
+ };
20008
20002
  };
20009
20003
 
20010
20004
  export type GetLocationCountriesResponse = GetLocationCountriesResponses[keyof GetLocationCountriesResponses];
@@ -20022,6 +20016,10 @@ export type GetLocationCountriesByIso2Data = {
20022
20016
  * Maximum items to return per page. Range: 1-200, default 50.
20023
20017
  */
20024
20018
  limit?: number;
20019
+ /**
20020
+ * Number of items to skip for pagination. Default 0.
20021
+ */
20022
+ offset?: number;
20025
20023
  };
20026
20024
  url: '/location/countries/{iso2}';
20027
20025
  };
@@ -20087,44 +20085,61 @@ export type GetLocationCountriesByIso2Responses = {
20087
20085
  /**
20088
20086
  * Cities in the specified country, sorted by population (largest first)
20089
20087
  */
20090
- 200: Array<{
20091
- /**
20092
- * City name as commonly used. Matches the local or internationally recognized name for the location.
20093
- */
20094
- city: string;
20095
- /**
20096
- * State, province, canton, or administrative region. Helps disambiguate cities with the same name across regions (e.g. Springfield IL vs Springfield MO).
20097
- */
20098
- province: string;
20099
- /**
20100
- * Full country name in English.
20101
- */
20102
- country: string;
20103
- /**
20104
- * ISO 3166-1 alpha-2 country code. Use for filtering cities by country or building country-specific location pickers.
20105
- */
20106
- iso2: string;
20107
- /**
20108
- * Geographic latitude in decimal degrees (-90 to 90). Pass directly to birth chart, natal chart, horoscope, synastry, transit, kundli, and panchang API endpoints as the latitude parameter.
20109
- */
20110
- latitude: number;
20088
+ 200: {
20111
20089
  /**
20112
- * Geographic longitude in decimal degrees (-180 to 180). Pass directly to astrology, horoscope, and panchang API endpoints alongside latitude.
20090
+ * Total number of cities available for this country.
20113
20091
  */
20114
- longitude: number;
20092
+ total: number;
20115
20093
  /**
20116
- * IANA timezone identifier following the tz database standard (e.g. Europe/Berlin, America/New_York, Asia/Tokyo). Use with JavaScript Date, Luxon, day.js, or any date library for accurate local time conversion.
20094
+ * Page size used for this response.
20117
20095
  */
20118
- timezone: string;
20096
+ limit: number;
20119
20097
  /**
20120
- * Current UTC offset in decimal hours, automatically adjusted for daylight saving time. Pass directly as the timezone parameter in astrology API endpoints. Examples: 1 for CET, 2 for CEST, -5 for EST, 5.5 for IST, 5.75 for Nepal.
20098
+ * Number of cities skipped. Use with limit for pagination.
20121
20099
  */
20122
- utcOffset: number;
20100
+ offset: number;
20123
20101
  /**
20124
- * City population estimate from geographic databases. Larger cities rank higher in search results, ensuring major metropolitan areas appear first in autocomplete suggestions.
20102
+ * Cities for the current page, sorted by population (largest first).
20125
20103
  */
20126
- population: number;
20127
- }>;
20104
+ cities: Array<{
20105
+ /**
20106
+ * City name as commonly used. Matches the local or internationally recognized name for the location.
20107
+ */
20108
+ city: string;
20109
+ /**
20110
+ * State, province, canton, or administrative region. Helps disambiguate cities with the same name across regions (e.g. Springfield IL vs Springfield MO).
20111
+ */
20112
+ province: string;
20113
+ /**
20114
+ * Full country name in English.
20115
+ */
20116
+ country: string;
20117
+ /**
20118
+ * ISO 3166-1 alpha-2 country code. Use for filtering cities by country or building country-specific location pickers.
20119
+ */
20120
+ iso2: string;
20121
+ /**
20122
+ * Geographic latitude in decimal degrees (-90 to 90). Pass directly to birth chart, natal chart, horoscope, synastry, transit, kundli, and panchang API endpoints as the latitude parameter.
20123
+ */
20124
+ latitude: number;
20125
+ /**
20126
+ * Geographic longitude in decimal degrees (-180 to 180). Pass directly to astrology, horoscope, and panchang API endpoints alongside latitude.
20127
+ */
20128
+ longitude: number;
20129
+ /**
20130
+ * IANA timezone identifier following the tz database standard (e.g. Europe/Berlin, America/New_York, Asia/Tokyo). Use with JavaScript Date, Luxon, day.js, or any date library for accurate local time conversion.
20131
+ */
20132
+ timezone: string;
20133
+ /**
20134
+ * Current UTC offset in decimal hours, automatically adjusted for daylight saving time. Pass directly as the timezone parameter in astrology API endpoints. Examples: 1 for CET, 2 for CEST, -5 for EST, 5.5 for IST, 5.75 for Nepal.
20135
+ */
20136
+ utcOffset: number;
20137
+ /**
20138
+ * City population estimate from geographic databases. Larger cities rank higher in search results, ensuring major metropolitan areas appear first in autocomplete suggestions.
20139
+ */
20140
+ population: number;
20141
+ }>;
20142
+ };
20128
20143
  };
20129
20144
 
20130
20145
  export type GetLocationCountriesByIso2Response = GetLocationCountriesByIso2Responses[keyof GetLocationCountriesByIso2Responses];