@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.
@@ -3267,6 +3267,14 @@ export type GetAngelNumbersNumbersData = {
3267
3267
  * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
3268
3268
  */
3269
3269
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
3270
+ /**
3271
+ * Maximum items to return per page. Range: 1-50, default 20.
3272
+ */
3273
+ limit?: number;
3274
+ /**
3275
+ * Number of items to skip for pagination. Default 0.
3276
+ */
3277
+ offset?: number;
3270
3278
  /**
3271
3279
  * 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.
3272
3280
  */
@@ -3333,36 +3341,53 @@ export type GetAngelNumbersNumbersResponses = {
3333
3341
  /**
3334
3342
  * List of angel numbers with summary information
3335
3343
  */
3336
- 200: Array<{
3337
- /**
3338
- * 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).
3339
- */
3340
- number: string;
3341
- /**
3342
- * Short descriptive title capturing the core theme and spiritual significance of this angel number.
3343
- */
3344
- title: string;
3345
- /**
3346
- * One to two sentence summary of the divine message. Ideal for push notifications, daily guidance widgets, and quick reference lookups.
3347
- */
3348
- coreMessage: string;
3344
+ 200: {
3349
3345
  /**
3350
- * 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).
3346
+ * Total number of angel numbers matching the applied filters. 43 for the full set, fewer when filtered by type.
3351
3347
  */
3352
- type: string;
3348
+ total: number;
3353
3349
  /**
3354
- * 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.
3350
+ * Maximum items returned per page.
3355
3351
  */
3356
- digitRoot: number;
3352
+ limit: number;
3357
3353
  /**
3358
- * Five to eight keywords capturing the spiritual themes and energy of this angel number. Useful for search, filtering, and content generation.
3354
+ * Number of items skipped from the start of the result set.
3359
3355
  */
3360
- keywords: Array<string>;
3356
+ offset: number;
3361
3357
  /**
3362
- * 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.
3358
+ * Array of angel number summaries for the current page.
3363
3359
  */
3364
- energy: string;
3365
- }>;
3360
+ numbers: Array<{
3361
+ /**
3362
+ * 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).
3363
+ */
3364
+ number: string;
3365
+ /**
3366
+ * Short descriptive title capturing the core theme and spiritual significance of this angel number.
3367
+ */
3368
+ title: string;
3369
+ /**
3370
+ * One to two sentence summary of the divine message. Ideal for push notifications, daily guidance widgets, and quick reference lookups.
3371
+ */
3372
+ coreMessage: string;
3373
+ /**
3374
+ * 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).
3375
+ */
3376
+ type: string;
3377
+ /**
3378
+ * 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.
3379
+ */
3380
+ digitRoot: number;
3381
+ /**
3382
+ * Five to eight keywords capturing the spiritual themes and energy of this angel number. Useful for search, filtering, and content generation.
3383
+ */
3384
+ keywords: Array<string>;
3385
+ /**
3386
+ * 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.
3387
+ */
3388
+ energy: string;
3389
+ }>;
3390
+ };
3366
3391
  };
3367
3392
  export type GetAngelNumbersNumbersResponse = GetAngelNumbersNumbersResponses[keyof GetAngelNumbersNumbersResponses];
3368
3393
  export type GetAngelNumbersNumbersByNumberData = {
@@ -3684,22 +3709,27 @@ export type GetAngelNumbersLookupResponses = {
3684
3709
  };
3685
3710
  };
3686
3711
  export type GetAngelNumbersLookupResponse = GetAngelNumbersLookupResponses[keyof GetAngelNumbersLookupResponses];
3687
- export type GetAngelNumbersDailyData = {
3688
- body?: never;
3712
+ export type PostAngelNumbersDailyData = {
3713
+ body?: {
3714
+ /**
3715
+ * 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.
3716
+ */
3717
+ seed?: string;
3718
+ /**
3719
+ * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily readings or pre-generating future ones.
3720
+ */
3721
+ date?: string;
3722
+ };
3689
3723
  path?: never;
3690
3724
  query?: {
3691
3725
  /**
3692
3726
  * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
3693
3727
  */
3694
3728
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
3695
- /**
3696
- * 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.
3697
- */
3698
- seed?: string;
3699
3729
  };
3700
3730
  url: '/angel-numbers/daily';
3701
3731
  };
3702
- export type GetAngelNumbersDailyErrors = {
3732
+ export type PostAngelNumbersDailyErrors = {
3703
3733
  /**
3704
3734
  * Validation error (missing or invalid parameters)
3705
3735
  */
@@ -3753,8 +3783,8 @@ export type GetAngelNumbersDailyErrors = {
3753
3783
  code: string;
3754
3784
  };
3755
3785
  };
3756
- export type GetAngelNumbersDailyError = GetAngelNumbersDailyErrors[keyof GetAngelNumbersDailyErrors];
3757
- export type GetAngelNumbersDailyResponses = {
3786
+ export type PostAngelNumbersDailyError = PostAngelNumbersDailyErrors[keyof PostAngelNumbersDailyErrors];
3787
+ export type PostAngelNumbersDailyResponses = {
3758
3788
  /**
3759
3789
  * Daily angel number with complete interpretation
3760
3790
  */
@@ -3763,6 +3793,10 @@ export type GetAngelNumbersDailyResponses = {
3763
3793
  * The date used for angel number selection (UTC).
3764
3794
  */
3765
3795
  date: string;
3796
+ /**
3797
+ * Computed seed used for this reading. Same seed always produces the same angel number.
3798
+ */
3799
+ seed: string;
3766
3800
  /**
3767
3801
  * Angel number sequence selected for today. Three or more digit repeating, sequential, or mirror pattern (e.g., 111, 444, 1212).
3768
3802
  */
@@ -3822,7 +3856,7 @@ export type GetAngelNumbersDailyResponses = {
3822
3856
  actionSteps: Array<string>;
3823
3857
  };
3824
3858
  };
3825
- export type GetAngelNumbersDailyResponse = GetAngelNumbersDailyResponses[keyof GetAngelNumbersDailyResponses];
3859
+ export type PostAngelNumbersDailyResponse = PostAngelNumbersDailyResponses[keyof PostAngelNumbersDailyResponses];
3826
3860
  export type GetAstrologySignsData = {
3827
3861
  body?: never;
3828
3862
  path?: never;
@@ -3930,13 +3964,13 @@ export type GetAstrologySignsResponses = {
3930
3964
  }>;
3931
3965
  };
3932
3966
  export type GetAstrologySignsResponse = GetAstrologySignsResponses[keyof GetAstrologySignsResponses];
3933
- export type GetAstrologySignsByIdentifierData = {
3967
+ export type GetAstrologySignsByIdData = {
3934
3968
  body?: never;
3935
3969
  path: {
3936
3970
  /**
3937
3971
  * Sign ID (lowercase, e.g., aries, taurus) or display name (case-insensitive, e.g., Aries, TAURUS).
3938
3972
  */
3939
- identifier: string;
3973
+ id: string;
3940
3974
  };
3941
3975
  query?: {
3942
3976
  /**
@@ -3944,9 +3978,9 @@ export type GetAstrologySignsByIdentifierData = {
3944
3978
  */
3945
3979
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
3946
3980
  };
3947
- url: '/astrology/signs/{identifier}';
3981
+ url: '/astrology/signs/{id}';
3948
3982
  };
3949
- export type GetAstrologySignsByIdentifierErrors = {
3983
+ export type GetAstrologySignsByIdErrors = {
3950
3984
  /**
3951
3985
  * Validation error (missing or invalid parameters)
3952
3986
  */
@@ -4013,8 +4047,8 @@ export type GetAstrologySignsByIdentifierErrors = {
4013
4047
  code: string;
4014
4048
  };
4015
4049
  };
4016
- export type GetAstrologySignsByIdentifierError = GetAstrologySignsByIdentifierErrors[keyof GetAstrologySignsByIdentifierErrors];
4017
- export type GetAstrologySignsByIdentifierResponses = {
4050
+ export type GetAstrologySignsByIdError = GetAstrologySignsByIdErrors[keyof GetAstrologySignsByIdErrors];
4051
+ export type GetAstrologySignsByIdResponses = {
4018
4052
  /**
4019
4053
  * Successfully retrieved zodiac sign
4020
4054
  */
@@ -4103,7 +4137,7 @@ export type GetAstrologySignsByIdentifierResponses = {
4103
4137
  weapon?: string;
4104
4138
  };
4105
4139
  };
4106
- export type GetAstrologySignsByIdentifierResponse = GetAstrologySignsByIdentifierResponses[keyof GetAstrologySignsByIdentifierResponses];
4140
+ export type GetAstrologySignsByIdResponse = GetAstrologySignsByIdResponses[keyof GetAstrologySignsByIdResponses];
4107
4141
  export type GetAstrologyPlanetMeaningsData = {
4108
4142
  body?: never;
4109
4143
  path?: never;
@@ -4206,13 +4240,13 @@ export type GetAstrologyPlanetMeaningsResponses = {
4206
4240
  }>;
4207
4241
  };
4208
4242
  export type GetAstrologyPlanetMeaningsResponse = GetAstrologyPlanetMeaningsResponses[keyof GetAstrologyPlanetMeaningsResponses];
4209
- export type GetAstrologyPlanetMeaningsByIdentifierData = {
4243
+ export type GetAstrologyPlanetMeaningsByIdData = {
4210
4244
  body?: never;
4211
4245
  path: {
4212
4246
  /**
4213
4247
  * Planet ID (lowercase, e.g., sun, moon, mercury) or display name (case-insensitive, e.g., Sun, MOON).
4214
4248
  */
4215
- identifier: string;
4249
+ id: string;
4216
4250
  };
4217
4251
  query?: {
4218
4252
  /**
@@ -4220,9 +4254,9 @@ export type GetAstrologyPlanetMeaningsByIdentifierData = {
4220
4254
  */
4221
4255
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
4222
4256
  };
4223
- url: '/astrology/planet-meanings/{identifier}';
4257
+ url: '/astrology/planet-meanings/{id}';
4224
4258
  };
4225
- export type GetAstrologyPlanetMeaningsByIdentifierErrors = {
4259
+ export type GetAstrologyPlanetMeaningsByIdErrors = {
4226
4260
  /**
4227
4261
  * Validation error (missing or invalid parameters)
4228
4262
  */
@@ -4289,8 +4323,8 @@ export type GetAstrologyPlanetMeaningsByIdentifierErrors = {
4289
4323
  code: string;
4290
4324
  };
4291
4325
  };
4292
- export type GetAstrologyPlanetMeaningsByIdentifierError = GetAstrologyPlanetMeaningsByIdentifierErrors[keyof GetAstrologyPlanetMeaningsByIdentifierErrors];
4293
- export type GetAstrologyPlanetMeaningsByIdentifierResponses = {
4326
+ export type GetAstrologyPlanetMeaningsByIdError = GetAstrologyPlanetMeaningsByIdErrors[keyof GetAstrologyPlanetMeaningsByIdErrors];
4327
+ export type GetAstrologyPlanetMeaningsByIdResponses = {
4294
4328
  /**
4295
4329
  * Successfully retrieved planet meaning
4296
4330
  */
@@ -4371,7 +4405,7 @@ export type GetAstrologyPlanetMeaningsByIdentifierResponses = {
4371
4405
  };
4372
4406
  };
4373
4407
  };
4374
- export type GetAstrologyPlanetMeaningsByIdentifierResponse = GetAstrologyPlanetMeaningsByIdentifierResponses[keyof GetAstrologyPlanetMeaningsByIdentifierResponses];
4408
+ export type GetAstrologyPlanetMeaningsByIdResponse = GetAstrologyPlanetMeaningsByIdResponses[keyof GetAstrologyPlanetMeaningsByIdResponses];
4375
4409
  export type PostAstrologyNatalChartData = {
4376
4410
  body?: NatalChartRequest;
4377
4411
  path?: never;
@@ -6959,6 +6993,10 @@ export type GetAstrologyHoroscopeBySignDailyData = {
6959
6993
  * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
6960
6994
  */
6961
6995
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
6996
+ /**
6997
+ * Forecast date in YYYY-MM-DD format. Defaults to today. Supports future and past dates for editorial scheduling.
6998
+ */
6999
+ date?: string;
6962
7000
  };
6963
7001
  url: '/astrology/horoscope/{sign}/daily';
6964
7002
  };
@@ -7031,15 +7069,15 @@ export type GetAstrologyHoroscopeBySignDailyResponses = {
7031
7069
  */
7032
7070
  date: string;
7033
7071
  /**
7034
- * General daily overview based on current planetary transits through the sign.
7072
+ * General daily overview based on Moon house activation and planetary transits. Unique per sign based on whole-sign house positions.
7035
7073
  */
7036
7074
  overview: string;
7037
7075
  /**
7038
- * Love and relationship forecast. Influenced by Venus and Moon transits.
7076
+ * Love and relationship forecast. Based on Venus house position relative to this sign, providing unique guidance per sign.
7039
7077
  */
7040
7078
  love: string;
7041
7079
  /**
7042
- * Career and professional outlook. Influenced by Saturn, Jupiter, and Mars transits.
7080
+ * Career and professional outlook. Based on Mars house position relative to this sign, with Saturn and Jupiter influences.
7043
7081
  */
7044
7082
  career: string;
7045
7083
  /**
@@ -7063,139 +7101,28 @@ export type GetAstrologyHoroscopeBySignDailyResponses = {
7063
7101
  */
7064
7102
  luckyColor: string;
7065
7103
  /**
7066
- * Most compatible zodiac signs today, based on elemental harmony.
7104
+ * Most compatible zodiac signs today. First sign is where Venus transits, second is the Moon sign, remainder from elemental harmony.
7067
7105
  */
7068
7106
  compatibleSigns: Array<string>;
7069
- };
7070
- };
7071
- export type GetAstrologyHoroscopeBySignDailyResponse = GetAstrologyHoroscopeBySignDailyResponses[keyof GetAstrologyHoroscopeBySignDailyResponses];
7072
- export type GetAstrologyHoroscopeDailyData = {
7073
- body?: never;
7074
- path?: never;
7075
- query?: {
7076
7107
  /**
7077
- * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
7108
+ * 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.
7078
7109
  */
7079
- lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
7080
- };
7081
- url: '/astrology/horoscope/daily';
7082
- };
7083
- export type GetAstrologyHoroscopeDailyErrors = {
7084
- /**
7085
- * Validation error (missing or invalid parameters)
7086
- */
7087
- 400: {
7088
- /**
7089
- * Human-readable error message. May change wording.
7090
- */
7091
- error: string;
7092
- /**
7093
- * Machine-readable error code. Stable identifier.
7094
- */
7095
- code: string;
7096
- };
7097
- /**
7098
- * Invalid or missing API key
7099
- */
7100
- 401: {
7101
- /**
7102
- * Human-readable error message. May change wording.
7103
- */
7104
- error: string;
7105
- /**
7106
- * Machine-readable error code. Stable identifier.
7107
- */
7108
- code: string;
7109
- };
7110
- /**
7111
- * Monthly rate limit exceeded
7112
- */
7113
- 429: {
7114
- /**
7115
- * Human-readable error message. May change wording.
7116
- */
7117
- error: string;
7118
- /**
7119
- * Machine-readable error code. Stable identifier.
7120
- */
7121
- code: string;
7122
- };
7123
- /**
7124
- * Internal server error
7125
- */
7126
- 500: {
7127
- /**
7128
- * Human-readable error message. May change wording.
7129
- */
7130
- error: string;
7110
+ activeTransits: Array<string>;
7131
7111
  /**
7132
- * Machine-readable error code. Stable identifier.
7112
+ * Current Moon sign. Changes every 2-3 days, sets the emotional tone for all signs.
7133
7113
  */
7134
- code: string;
7135
- };
7136
- };
7137
- export type GetAstrologyHoroscopeDailyError = GetAstrologyHoroscopeDailyErrors[keyof GetAstrologyHoroscopeDailyErrors];
7138
- export type GetAstrologyHoroscopeDailyResponses = {
7139
- /**
7140
- * Daily horoscopes retrieved successfully
7141
- */
7142
- 200: {
7114
+ moonSign: string;
7143
7115
  /**
7144
- * Date of these horoscope forecasts (YYYY-MM-DD).
7116
+ * Current lunar phase (New Moon, Waxing Crescent, First Quarter, Waxing Gibbous, Full Moon, Waning Gibbous, Last Quarter, Waning Crescent).
7145
7117
  */
7146
- date: string;
7118
+ moonPhase: string;
7147
7119
  /**
7148
- * Daily horoscope forecasts for all 12 zodiac signs (Aries through Pisces).
7120
+ * Overall energy intensity for this sign today (1-10). Higher when more transits activate this sign directly. Useful for content widgets and visual indicators.
7149
7121
  */
7150
- horoscopes: Array<{
7151
- /**
7152
- * Zodiac sign for this horoscope.
7153
- */
7154
- sign: string;
7155
- /**
7156
- * Date of this daily horoscope (YYYY-MM-DD).
7157
- */
7158
- date: string;
7159
- /**
7160
- * General daily overview based on current planetary transits through the sign.
7161
- */
7162
- overview: string;
7163
- /**
7164
- * Love and relationship forecast. Influenced by Venus and Moon transits.
7165
- */
7166
- love: string;
7167
- /**
7168
- * Career and professional outlook. Influenced by Saturn, Jupiter, and Mars transits.
7169
- */
7170
- career: string;
7171
- /**
7172
- * Health, energy, and wellness guidance for the day.
7173
- */
7174
- health: string;
7175
- /**
7176
- * Financial outlook and money-related guidance.
7177
- */
7178
- finance: string;
7179
- /**
7180
- * Actionable daily advice based on the dominant transit energy.
7181
- */
7182
- advice: string;
7183
- /**
7184
- * Lucky number for the day.
7185
- */
7186
- luckyNumber: number;
7187
- /**
7188
- * Lucky color for the day, derived from the sign element.
7189
- */
7190
- luckyColor: string;
7191
- /**
7192
- * Most compatible zodiac signs today, based on elemental harmony.
7193
- */
7194
- compatibleSigns: Array<string>;
7195
- }>;
7122
+ energyRating: number;
7196
7123
  };
7197
7124
  };
7198
- export type GetAstrologyHoroscopeDailyResponse = GetAstrologyHoroscopeDailyResponses[keyof GetAstrologyHoroscopeDailyResponses];
7125
+ export type GetAstrologyHoroscopeBySignDailyResponse = GetAstrologyHoroscopeBySignDailyResponses[keyof GetAstrologyHoroscopeBySignDailyResponses];
7199
7126
  export type GetAstrologyHoroscopeBySignWeeklyData = {
7200
7127
  body?: never;
7201
7128
  path: {
@@ -7424,7 +7351,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
7424
7351
  */
7425
7352
  finance: string;
7426
7353
  /**
7427
- * Week-by-week breakdown of the monthly forecast.
7354
+ * Week-by-week breakdown with sign-specific focus areas based on transit house positions.
7428
7355
  */
7429
7356
  weekByWeek: Array<{
7430
7357
  /**
@@ -7432,7 +7359,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
7432
7359
  */
7433
7360
  week: number;
7434
7361
  /**
7435
- * Primary focus area for this week.
7362
+ * Primary focus area for this week, derived from planetary house activations for this sign.
7436
7363
  */
7437
7364
  focus: string;
7438
7365
  /**
@@ -7441,7 +7368,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
7441
7368
  advice: string;
7442
7369
  }>;
7443
7370
  /**
7444
- * Key astrological dates this month (lunar phases, planetary ingresses, retrogrades).
7371
+ * Key astrological dates this month with actual New Moon, Full Moon, and retrograde dates calculated from ephemeris data.
7445
7372
  */
7446
7373
  keyDates: Array<{
7447
7374
  /**
@@ -7449,7 +7376,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
7449
7376
  */
7450
7377
  date: string;
7451
7378
  /**
7452
- * Astrological event or theme active on this date.
7379
+ * Astrological event active on this date (lunar phases, retrogrades, sign ingresses).
7453
7380
  */
7454
7381
  event: string;
7455
7382
  }>;
@@ -12729,6 +12656,14 @@ export type GetTarotCardsData = {
12729
12656
  * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
12730
12657
  */
12731
12658
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
12659
+ /**
12660
+ * Maximum items to return per page. Range: 1-100, default 20.
12661
+ */
12662
+ limit?: number;
12663
+ /**
12664
+ * Number of items to skip for pagination. Default 0.
12665
+ */
12666
+ offset?: number;
12732
12667
  /**
12733
12668
  * 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.
12734
12669
  */
@@ -12808,6 +12743,14 @@ export type GetTarotCardsResponses = {
12808
12743
  * 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.
12809
12744
  */
12810
12745
  total: number;
12746
+ /**
12747
+ * Maximum items returned per page.
12748
+ */
12749
+ limit: number;
12750
+ /**
12751
+ * Number of items skipped from the start of the result set.
12752
+ */
12753
+ offset: number;
12811
12754
  /**
12812
12755
  * Array of tarot cards with basic metadata. Use GET /cards/:id for full upright and reversed interpretations.
12813
12756
  */
@@ -13008,11 +12951,11 @@ export type PostTarotDrawResponse = PostTarotDrawResponses[keyof PostTarotDrawRe
13008
12951
  export type PostTarotDailyData = {
13009
12952
  body?: {
13010
12953
  /**
13011
- * 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.
12954
+ * 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.
13012
12955
  */
13013
12956
  seed?: string;
13014
12957
  /**
13015
- * 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.
12958
+ * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily readings or pre-generating future ones.
13016
12959
  */
13017
12960
  date?: string;
13018
12961
  };
@@ -16138,7 +16081,7 @@ export type PostNumerologyDailyData = {
16138
16081
  */
16139
16082
  seed?: string;
16140
16083
  /**
16141
- * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily numbers or pre-generating future readings.
16084
+ * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily readings or pre-generating future ones.
16142
16085
  */
16143
16086
  date?: string;
16144
16087
  };
@@ -16275,7 +16218,7 @@ export type GetDreamsSymbolsData = {
16275
16218
  /**
16276
16219
  * Search query to match against symbol names and meanings. Case-insensitive.
16277
16220
  */
16278
- search?: string;
16221
+ q?: string;
16279
16222
  /**
16280
16223
  * Filter symbols by starting letter (a-z). Case-insensitive.
16281
16224
  */
@@ -16613,11 +16556,11 @@ export type GetDreamsSymbolsByIdResponse = GetDreamsSymbolsByIdResponses[keyof G
16613
16556
  export type PostDreamsDailyData = {
16614
16557
  body?: {
16615
16558
  /**
16616
- * 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.
16559
+ * 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.
16617
16560
  */
16618
16561
  seed?: string;
16619
16562
  /**
16620
- * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily symbols or pre-generating future ones.
16563
+ * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily readings or pre-generating future ones.
16621
16564
  */
16622
16565
  date?: string;
16623
16566
  };
@@ -16721,11 +16664,11 @@ export type PostDreamsDailyResponse = PostDreamsDailyResponses[keyof PostDreamsD
16721
16664
  export type PostIchingDailyData = {
16722
16665
  body?: {
16723
16666
  /**
16724
- * 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.
16667
+ * 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.
16725
16668
  */
16726
16669
  seed?: string;
16727
16670
  /**
16728
- * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily hexagrams or pre-generating future readings.
16671
+ * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily readings or pre-generating future ones.
16729
16672
  */
16730
16673
  date?: string;
16731
16674
  };
@@ -16879,11 +16822,11 @@ export type PostIchingDailyResponse = PostIchingDailyResponses[keyof PostIchingD
16879
16822
  export type PostIchingDailyCastData = {
16880
16823
  body?: {
16881
16824
  /**
16882
- * 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.
16825
+ * 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.
16883
16826
  */
16884
16827
  seed?: string;
16885
16828
  /**
16886
- * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily hexagrams or pre-generating future readings.
16829
+ * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily readings or pre-generating future ones.
16887
16830
  */
16888
16831
  date?: string;
16889
16832
  };
@@ -17643,13 +17586,13 @@ export type GetIchingTrigramsResponses = {
17643
17586
  };
17644
17587
  };
17645
17588
  export type GetIchingTrigramsResponse = GetIchingTrigramsResponses[keyof GetIchingTrigramsResponses];
17646
- export type GetIchingTrigramsByIdentifierData = {
17589
+ export type GetIchingTrigramsByIdData = {
17647
17590
  body?: never;
17648
17591
  path: {
17649
17592
  /**
17650
17593
  * Trigram number (1-8) or English name (Heaven, Earth, Thunder, Wind, Water, Fire, Mountain, Lake).
17651
17594
  */
17652
- identifier: string;
17595
+ id: string;
17653
17596
  };
17654
17597
  query?: {
17655
17598
  /**
@@ -17657,9 +17600,9 @@ export type GetIchingTrigramsByIdentifierData = {
17657
17600
  */
17658
17601
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
17659
17602
  };
17660
- url: '/iching/trigrams/{identifier}';
17603
+ url: '/iching/trigrams/{id}';
17661
17604
  };
17662
- export type GetIchingTrigramsByIdentifierErrors = {
17605
+ export type GetIchingTrigramsByIdErrors = {
17663
17606
  /**
17664
17607
  * Validation error (missing or invalid parameters)
17665
17608
  */
@@ -17726,14 +17669,14 @@ export type GetIchingTrigramsByIdentifierErrors = {
17726
17669
  code: string;
17727
17670
  };
17728
17671
  };
17729
- export type GetIchingTrigramsByIdentifierError = GetIchingTrigramsByIdentifierErrors[keyof GetIchingTrigramsByIdentifierErrors];
17730
- export type GetIchingTrigramsByIdentifierResponses = {
17672
+ export type GetIchingTrigramsByIdError = GetIchingTrigramsByIdErrors[keyof GetIchingTrigramsByIdErrors];
17673
+ export type GetIchingTrigramsByIdResponses = {
17731
17674
  /**
17732
17675
  * Trigram details.
17733
17676
  */
17734
17677
  200: Trigram;
17735
17678
  };
17736
- export type GetIchingTrigramsByIdentifierResponse = GetIchingTrigramsByIdentifierResponses[keyof GetIchingTrigramsByIdentifierResponses];
17679
+ export type GetIchingTrigramsByIdResponse = GetIchingTrigramsByIdResponses[keyof GetIchingTrigramsByIdResponses];
17737
17680
  export type GetCrystalsZodiacBySignData = {
17738
17681
  body?: never;
17739
17682
  path: {
@@ -17748,7 +17691,7 @@ export type GetCrystalsZodiacBySignData = {
17748
17691
  */
17749
17692
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
17750
17693
  /**
17751
- * Maximum items to return per page. Range: 1-100, default 20.
17694
+ * Maximum items to return per page. Range: 1-30, default 20.
17752
17695
  */
17753
17696
  limit?: number;
17754
17697
  /**
@@ -17835,7 +17778,7 @@ export type GetCrystalsZodiacBySignResponses = {
17835
17778
  */
17836
17779
  offset: number;
17837
17780
  /**
17838
- * Crystal summaries for this zodiac sign. Call /crystals/:slug for full healing properties.
17781
+ * Crystal summaries for this zodiac sign. Call /crystals/:id for full healing properties.
17839
17782
  */
17840
17783
  crystals: Array<{
17841
17784
  /**
@@ -17845,7 +17788,7 @@ export type GetCrystalsZodiacBySignResponses = {
17845
17788
  /**
17846
17789
  * URL-safe crystal identifier for detail lookup.
17847
17790
  */
17848
- slug: string;
17791
+ id: string;
17849
17792
  /**
17850
17793
  * URL to crystal photograph for visual identification.
17851
17794
  */
@@ -17872,7 +17815,7 @@ export type GetCrystalsChakraByChakraData = {
17872
17815
  */
17873
17816
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
17874
17817
  /**
17875
- * Maximum items to return per page. Range: 1-100, default 20.
17818
+ * Maximum items to return per page. Range: 1-30, default 20.
17876
17819
  */
17877
17820
  limit?: number;
17878
17821
  /**
@@ -17959,7 +17902,7 @@ export type GetCrystalsChakraByChakraResponses = {
17959
17902
  */
17960
17903
  offset: number;
17961
17904
  /**
17962
- * Crystal summaries for this chakra. Call /crystals/:slug for full healing properties.
17905
+ * Crystal summaries for this chakra. Call /crystals/:id for full healing properties.
17963
17906
  */
17964
17907
  crystals: Array<{
17965
17908
  /**
@@ -17969,7 +17912,7 @@ export type GetCrystalsChakraByChakraResponses = {
17969
17912
  /**
17970
17913
  * URL-safe crystal identifier for detail lookup.
17971
17914
  */
17972
- slug: string;
17915
+ id: string;
17973
17916
  /**
17974
17917
  * URL to crystal photograph for visual identification.
17975
17918
  */
@@ -17996,7 +17939,7 @@ export type GetCrystalsElementByElementData = {
17996
17939
  */
17997
17940
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
17998
17941
  /**
17999
- * Maximum items to return per page. Range: 1-100, default 20.
17942
+ * Maximum items to return per page. Range: 1-30, default 20.
18000
17943
  */
18001
17944
  limit?: number;
18002
17945
  /**
@@ -18083,7 +18026,7 @@ export type GetCrystalsElementByElementResponses = {
18083
18026
  */
18084
18027
  offset: number;
18085
18028
  /**
18086
- * Crystal summaries for this element. Call /crystals/:slug for full healing properties.
18029
+ * Crystal summaries for this element. Call /crystals/:id for full healing properties.
18087
18030
  */
18088
18031
  crystals: Array<{
18089
18032
  /**
@@ -18093,7 +18036,7 @@ export type GetCrystalsElementByElementResponses = {
18093
18036
  /**
18094
18037
  * URL-safe crystal identifier for detail lookup.
18095
18038
  */
18096
- slug: string;
18039
+ id: string;
18097
18040
  /**
18098
18041
  * URL to crystal photograph for visual identification.
18099
18042
  */
@@ -18193,9 +18136,9 @@ export type GetCrystalsBirthstoneByMonthResponses = {
18193
18136
  /**
18194
18137
  * Number of birthstone crystals for this month.
18195
18138
  */
18196
- count: number;
18139
+ total: number;
18197
18140
  /**
18198
- * Birthstone crystals for this month. Call /crystals/:slug for full healing properties.
18141
+ * Birthstone crystals for this month. Call /crystals/:id for full healing properties.
18199
18142
  */
18200
18143
  crystals: Array<{
18201
18144
  /**
@@ -18205,9 +18148,9 @@ export type GetCrystalsBirthstoneByMonthResponses = {
18205
18148
  /**
18206
18149
  * URL-safe crystal identifier for detail lookup.
18207
18150
  */
18208
- slug: string;
18151
+ id: string;
18209
18152
  /**
18210
- * URL to crystal photograph.
18153
+ * URL to crystal photograph for visual identification.
18211
18154
  */
18212
18155
  imageUrl: string;
18213
18156
  /**
@@ -18231,7 +18174,7 @@ export type GetCrystalsSearchData = {
18231
18174
  */
18232
18175
  q: string;
18233
18176
  /**
18234
- * Maximum items to return per page. Range: 1-100, default 20.
18177
+ * Maximum items to return per page. Range: 1-50, default 20.
18235
18178
  */
18236
18179
  limit?: number;
18237
18180
  /**
@@ -18318,7 +18261,7 @@ export type GetCrystalsSearchResponses = {
18318
18261
  */
18319
18262
  offset: number;
18320
18263
  /**
18321
- * Matching crystal summaries. Call /crystals/:slug for full healing properties.
18264
+ * Matching crystal summaries. Call /crystals/:id for full healing properties.
18322
18265
  */
18323
18266
  crystals: Array<{
18324
18267
  /**
@@ -18328,9 +18271,9 @@ export type GetCrystalsSearchResponses = {
18328
18271
  /**
18329
18272
  * URL-safe crystal identifier for detail lookup.
18330
18273
  */
18331
- slug: string;
18274
+ id: string;
18332
18275
  /**
18333
- * URL to crystal photograph.
18276
+ * URL to crystal photograph for visual identification.
18334
18277
  */
18335
18278
  imageUrl: string;
18336
18279
  /**
@@ -18341,13 +18284,13 @@ export type GetCrystalsSearchResponses = {
18341
18284
  };
18342
18285
  };
18343
18286
  export type GetCrystalsSearchResponse = GetCrystalsSearchResponses[keyof GetCrystalsSearchResponses];
18344
- export type GetCrystalsPairingsBySlugData = {
18287
+ export type GetCrystalsPairingsByIdData = {
18345
18288
  body?: never;
18346
18289
  path: {
18347
18290
  /**
18348
18291
  * URL-safe crystal identifier to find pairings for (e.g., "amethyst", "rose-quartz").
18349
18292
  */
18350
- slug: string;
18293
+ id: string;
18351
18294
  };
18352
18295
  query?: {
18353
18296
  /**
@@ -18355,9 +18298,9 @@ export type GetCrystalsPairingsBySlugData = {
18355
18298
  */
18356
18299
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
18357
18300
  };
18358
- url: '/crystals/pairings/{slug}';
18301
+ url: '/crystals/pairings/{id}';
18359
18302
  };
18360
- export type GetCrystalsPairingsBySlugErrors = {
18303
+ export type GetCrystalsPairingsByIdErrors = {
18361
18304
  /**
18362
18305
  * Validation error (missing or invalid parameters)
18363
18306
  */
@@ -18424,14 +18367,14 @@ export type GetCrystalsPairingsBySlugErrors = {
18424
18367
  code: string;
18425
18368
  };
18426
18369
  };
18427
- export type GetCrystalsPairingsBySlugError = GetCrystalsPairingsBySlugErrors[keyof GetCrystalsPairingsBySlugErrors];
18428
- export type GetCrystalsPairingsBySlugResponses = {
18370
+ export type GetCrystalsPairingsByIdError = GetCrystalsPairingsByIdErrors[keyof GetCrystalsPairingsByIdErrors];
18371
+ export type GetCrystalsPairingsByIdResponses = {
18429
18372
  /**
18430
18373
  * Crystal pairing recommendations
18431
18374
  */
18432
18375
  200: {
18433
18376
  /**
18434
- * The crystal slug that pairings were requested for.
18377
+ * The crystal identifier that pairings were requested for.
18435
18378
  */
18436
18379
  crystal: string;
18437
18380
  /**
@@ -18453,7 +18396,7 @@ export type GetCrystalsPairingsBySlugResponses = {
18453
18396
  /**
18454
18397
  * URL-safe identifier for the paired crystal.
18455
18398
  */
18456
- slug: string;
18399
+ id: string;
18457
18400
  /**
18458
18401
  * URL to paired crystal photograph.
18459
18402
  */
@@ -18473,23 +18416,28 @@ export type GetCrystalsPairingsBySlugResponses = {
18473
18416
  }>;
18474
18417
  };
18475
18418
  };
18476
- export type GetCrystalsPairingsBySlugResponse = GetCrystalsPairingsBySlugResponses[keyof GetCrystalsPairingsBySlugResponses];
18477
- export type GetCrystalsDailyData = {
18478
- body?: never;
18419
+ export type GetCrystalsPairingsByIdResponse = GetCrystalsPairingsByIdResponses[keyof GetCrystalsPairingsByIdResponses];
18420
+ export type PostCrystalsDailyData = {
18421
+ body?: {
18422
+ /**
18423
+ * 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.
18424
+ */
18425
+ seed?: string;
18426
+ /**
18427
+ * Date for the reading in YYYY-MM-DD format. Defaults to today (UTC). Useful for viewing past daily readings or pre-generating future ones.
18428
+ */
18429
+ date?: string;
18430
+ };
18479
18431
  path?: never;
18480
18432
  query?: {
18481
18433
  /**
18482
18434
  * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
18483
18435
  */
18484
18436
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
18485
- /**
18486
- * Date seed in YYYY-MM-DD format for deterministic selection. If omitted, uses the current UTC date. Same seed always returns the same crystal.
18487
- */
18488
- seed?: string;
18489
18437
  };
18490
18438
  url: '/crystals/daily';
18491
18439
  };
18492
- export type GetCrystalsDailyErrors = {
18440
+ export type PostCrystalsDailyErrors = {
18493
18441
  /**
18494
18442
  * Validation error (missing or invalid parameters)
18495
18443
  */
@@ -18543,8 +18491,8 @@ export type GetCrystalsDailyErrors = {
18543
18491
  code: string;
18544
18492
  };
18545
18493
  };
18546
- export type GetCrystalsDailyError = GetCrystalsDailyErrors[keyof GetCrystalsDailyErrors];
18547
- export type GetCrystalsDailyResponses = {
18494
+ export type PostCrystalsDailyError = PostCrystalsDailyErrors[keyof PostCrystalsDailyErrors];
18495
+ export type PostCrystalsDailyResponses = {
18548
18496
  /**
18549
18497
  * Daily crystal teaser with summary information
18550
18498
  */
@@ -18553,14 +18501,18 @@ export type GetCrystalsDailyResponses = {
18553
18501
  * The date used for crystal selection (UTC).
18554
18502
  */
18555
18503
  date: string;
18504
+ /**
18505
+ * Computed seed used for this reading. Same seed always produces the same crystal.
18506
+ */
18507
+ seed: string;
18556
18508
  /**
18557
18509
  * Display name of the crystal selected for this date.
18558
18510
  */
18559
18511
  name: string;
18560
18512
  /**
18561
- * URL-safe identifier. Call /crystals/:slug for full healing properties.
18513
+ * URL-safe identifier. Call /crystals/:id for full healing properties.
18562
18514
  */
18563
- slug: string;
18515
+ id: string;
18564
18516
  /**
18565
18517
  * URL to crystal photograph. Use for daily crystal card display and visual features.
18566
18518
  */
@@ -18583,7 +18535,7 @@ export type GetCrystalsDailyResponses = {
18583
18535
  affirmation: string;
18584
18536
  };
18585
18537
  };
18586
- export type GetCrystalsDailyResponse = GetCrystalsDailyResponses[keyof GetCrystalsDailyResponses];
18538
+ export type PostCrystalsDailyResponse = PostCrystalsDailyResponses[keyof PostCrystalsDailyResponses];
18587
18539
  export type GetCrystalsRandomData = {
18588
18540
  body?: never;
18589
18541
  path?: never;
@@ -18660,9 +18612,9 @@ export type GetCrystalsRandomResponses = {
18660
18612
  */
18661
18613
  name: string;
18662
18614
  /**
18663
- * URL-safe identifier. Call /crystals/:slug for full healing properties.
18615
+ * URL-safe identifier. Call /crystals/:id for full healing properties.
18664
18616
  */
18665
- slug: string;
18617
+ id: string;
18666
18618
  /**
18667
18619
  * URL to crystal photograph for visual display.
18668
18620
  */
@@ -18956,36 +18908,36 @@ export type GetCrystalsResponses = {
18956
18908
  */
18957
18909
  crystals: Array<{
18958
18910
  /**
18959
- * Display name of the crystal or healing stone.
18911
+ * Crystal display name.
18960
18912
  */
18961
18913
  name: string;
18962
18914
  /**
18963
- * URL-safe identifier for the crystal. Use this value in the detail endpoint path to retrieve full healing properties.
18915
+ * URL-safe crystal identifier for detail lookup.
18964
18916
  */
18965
- slug: string;
18917
+ id: string;
18966
18918
  /**
18967
- * URL to a high-quality crystal photograph. Use for visual crystal guides, product listings, and crystal identification features.
18919
+ * URL to crystal photograph for visual identification.
18968
18920
  */
18969
18921
  imageUrl: string;
18970
18922
  /**
18971
- * Chakra energy centers this crystal resonates with. One of: Root, Sacral, Solar Plexus, Heart, Throat, Third Eye, Crown.
18923
+ * Primary colors of this crystal variety. Null when color data is unavailable.
18972
18924
  */
18973
- chakras: Array<string>;
18925
+ colors: Array<string>;
18974
18926
  /**
18975
- * Primary colors of this crystal variety. Null when color data is unavailable. Useful for color-based crystal selection and visual display.
18927
+ * Chakra energy centers this crystal resonates with. One of: Root, Sacral, Solar Plexus, Heart, Throat, Third Eye, Crown.
18976
18928
  */
18977
- colors: Array<string>;
18929
+ chakras: Array<string>;
18978
18930
  }>;
18979
18931
  };
18980
18932
  };
18981
18933
  export type GetCrystalsResponse = GetCrystalsResponses[keyof GetCrystalsResponses];
18982
- export type GetCrystalsBySlugData = {
18934
+ export type GetCrystalsByIdData = {
18983
18935
  body?: never;
18984
18936
  path: {
18985
18937
  /**
18986
18938
  * URL-safe crystal identifier (e.g., "amethyst", "rose-quartz", "black-tourmaline"). Must match an entry in the database.
18987
18939
  */
18988
- slug: string;
18940
+ id: string;
18989
18941
  };
18990
18942
  query?: {
18991
18943
  /**
@@ -18993,9 +18945,9 @@ export type GetCrystalsBySlugData = {
18993
18945
  */
18994
18946
  lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
18995
18947
  };
18996
- url: '/crystals/{slug}';
18948
+ url: '/crystals/{id}';
18997
18949
  };
18998
- export type GetCrystalsBySlugErrors = {
18950
+ export type GetCrystalsByIdErrors = {
18999
18951
  /**
19000
18952
  * Validation error (missing or invalid parameters)
19001
18953
  */
@@ -19062,8 +19014,8 @@ export type GetCrystalsBySlugErrors = {
19062
19014
  code: string;
19063
19015
  };
19064
19016
  };
19065
- export type GetCrystalsBySlugError = GetCrystalsBySlugErrors[keyof GetCrystalsBySlugErrors];
19066
- export type GetCrystalsBySlugResponses = {
19017
+ export type GetCrystalsByIdError = GetCrystalsByIdErrors[keyof GetCrystalsByIdErrors];
19018
+ export type GetCrystalsByIdResponses = {
19067
19019
  /**
19068
19020
  * Complete crystal healing properties with all associations
19069
19021
  */
@@ -19075,7 +19027,7 @@ export type GetCrystalsBySlugResponses = {
19075
19027
  /**
19076
19028
  * URL-safe identifier for the crystal.
19077
19029
  */
19078
- slug: string;
19030
+ id: string;
19079
19031
  /**
19080
19032
  * URL to a high-quality crystal photograph. Use for visual crystal guides, product listings, and crystal identification features.
19081
19033
  */
@@ -19142,12 +19094,12 @@ export type GetCrystalsBySlugResponses = {
19142
19094
  */
19143
19095
  affirmation: string;
19144
19096
  /**
19145
- * Crystal slugs that pair well with this stone for enhanced healing combinations. Use for crystal grid and pairing recommendations.
19097
+ * Crystal identifiers that pair well with this stone for enhanced healing combinations. Use for crystal grid and pairing recommendations.
19146
19098
  */
19147
19099
  pairsWith: Array<string>;
19148
19100
  };
19149
19101
  };
19150
- export type GetCrystalsBySlugResponse = GetCrystalsBySlugResponses[keyof GetCrystalsBySlugResponses];
19102
+ export type GetCrystalsByIdResponse = GetCrystalsByIdResponses[keyof GetCrystalsByIdResponses];
19151
19103
  export type GetLocationSearchData = {
19152
19104
  body?: never;
19153
19105
  path?: never;
@@ -19160,6 +19112,10 @@ export type GetLocationSearchData = {
19160
19112
  * Maximum items to return per page. Range: 1-50, default 10.
19161
19113
  */
19162
19114
  limit?: number;
19115
+ /**
19116
+ * Number of items to skip for pagination. Default 0.
19117
+ */
19118
+ offset?: number;
19163
19119
  };
19164
19120
  url: '/location/search';
19165
19121
  };
@@ -19222,50 +19178,76 @@ export type GetLocationSearchResponses = {
19222
19178
  /**
19223
19179
  * Matching cities sorted by relevance (prefix match first) then population
19224
19180
  */
19225
- 200: Array<{
19226
- /**
19227
- * City name as commonly used. Matches the local or internationally recognized name for the location.
19228
- */
19229
- city: string;
19230
- /**
19231
- * State, province, canton, or administrative region. Helps disambiguate cities with the same name across regions (e.g. Springfield IL vs Springfield MO).
19232
- */
19233
- province: string;
19234
- /**
19235
- * Full country name in English.
19236
- */
19237
- country: string;
19238
- /**
19239
- * ISO 3166-1 alpha-2 country code. Use for filtering cities by country or building country-specific location pickers.
19240
- */
19241
- iso2: string;
19242
- /**
19243
- * 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.
19244
- */
19245
- latitude: number;
19181
+ 200: {
19246
19182
  /**
19247
- * Geographic longitude in decimal degrees (-180 to 180). Pass directly to astrology, horoscope, and panchang API endpoints alongside latitude.
19183
+ * Total number of cities matching the search query.
19248
19184
  */
19249
- longitude: number;
19185
+ total: number;
19250
19186
  /**
19251
- * 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.
19187
+ * Page size used for this response.
19252
19188
  */
19253
- timezone: string;
19189
+ limit: number;
19254
19190
  /**
19255
- * 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.
19191
+ * Number of cities skipped. Use with limit for pagination.
19256
19192
  */
19257
- utcOffset: number;
19193
+ offset: number;
19258
19194
  /**
19259
- * City population estimate from geographic databases. Larger cities rank higher in search results, ensuring major metropolitan areas appear first in autocomplete suggestions.
19195
+ * City results for the current page, sorted by relevance (prefix match first) then population.
19260
19196
  */
19261
- population: number;
19262
- }>;
19197
+ cities: Array<{
19198
+ /**
19199
+ * City name as commonly used. Matches the local or internationally recognized name for the location.
19200
+ */
19201
+ city: string;
19202
+ /**
19203
+ * State, province, canton, or administrative region. Helps disambiguate cities with the same name across regions (e.g. Springfield IL vs Springfield MO).
19204
+ */
19205
+ province: string;
19206
+ /**
19207
+ * Full country name in English.
19208
+ */
19209
+ country: string;
19210
+ /**
19211
+ * ISO 3166-1 alpha-2 country code. Use for filtering cities by country or building country-specific location pickers.
19212
+ */
19213
+ iso2: string;
19214
+ /**
19215
+ * 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.
19216
+ */
19217
+ latitude: number;
19218
+ /**
19219
+ * Geographic longitude in decimal degrees (-180 to 180). Pass directly to astrology, horoscope, and panchang API endpoints alongside latitude.
19220
+ */
19221
+ longitude: number;
19222
+ /**
19223
+ * 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.
19224
+ */
19225
+ timezone: string;
19226
+ /**
19227
+ * 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.
19228
+ */
19229
+ utcOffset: number;
19230
+ /**
19231
+ * City population estimate from geographic databases. Larger cities rank higher in search results, ensuring major metropolitan areas appear first in autocomplete suggestions.
19232
+ */
19233
+ population: number;
19234
+ }>;
19235
+ };
19263
19236
  };
19264
19237
  export type GetLocationSearchResponse = GetLocationSearchResponses[keyof GetLocationSearchResponses];
19265
19238
  export type GetLocationCountriesData = {
19266
19239
  body?: never;
19267
19240
  path?: never;
19268
- query?: never;
19241
+ query?: {
19242
+ /**
19243
+ * Maximum items to return per page. Range: 1-50, default 50.
19244
+ */
19245
+ limit?: number;
19246
+ /**
19247
+ * Number of items to skip for pagination. Default 0.
19248
+ */
19249
+ offset?: number;
19250
+ };
19269
19251
  url: '/location/countries';
19270
19252
  };
19271
19253
  export type GetLocationCountriesErrors = {
@@ -19327,24 +19309,41 @@ export type GetLocationCountriesResponses = {
19327
19309
  /**
19328
19310
  * Alphabetically sorted list of all 227 countries with ISO codes and city counts
19329
19311
  */
19330
- 200: Array<{
19312
+ 200: {
19331
19313
  /**
19332
- * Full country name in English. Use for display in location pickers and dropdown menus.
19314
+ * Total number of countries available.
19333
19315
  */
19334
- name: string;
19316
+ total: number;
19335
19317
  /**
19336
- * ISO 3166-1 alpha-2 country code. Use as the identifier when fetching cities for a specific country via the /countries/{iso2} endpoint.
19318
+ * Page size used for this response.
19337
19319
  */
19338
- iso2: string;
19320
+ limit: number;
19339
19321
  /**
19340
- * ISO 3166-1 alpha-3 country code. Three-letter standard used in international data exchange.
19322
+ * Number of countries skipped. Use with limit for pagination.
19341
19323
  */
19342
- iso3: string;
19324
+ offset: number;
19343
19325
  /**
19344
- * 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.
19326
+ * Countries for the current page, sorted alphabetically by name.
19345
19327
  */
19346
- cityCount: number;
19347
- }>;
19328
+ countries: Array<{
19329
+ /**
19330
+ * Full country name in English. Use for display in location pickers and dropdown menus.
19331
+ */
19332
+ name: string;
19333
+ /**
19334
+ * ISO 3166-1 alpha-2 country code. Use as the identifier when fetching cities for a specific country via the /countries/{iso2} endpoint.
19335
+ */
19336
+ iso2: string;
19337
+ /**
19338
+ * ISO 3166-1 alpha-3 country code. Three-letter standard used in international data exchange.
19339
+ */
19340
+ iso3: string;
19341
+ /**
19342
+ * 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.
19343
+ */
19344
+ cityCount: number;
19345
+ }>;
19346
+ };
19348
19347
  };
19349
19348
  export type GetLocationCountriesResponse = GetLocationCountriesResponses[keyof GetLocationCountriesResponses];
19350
19349
  export type GetLocationCountriesByIso2Data = {
@@ -19360,6 +19359,10 @@ export type GetLocationCountriesByIso2Data = {
19360
19359
  * Maximum items to return per page. Range: 1-200, default 50.
19361
19360
  */
19362
19361
  limit?: number;
19362
+ /**
19363
+ * Number of items to skip for pagination. Default 0.
19364
+ */
19365
+ offset?: number;
19363
19366
  };
19364
19367
  url: '/location/countries/{iso2}';
19365
19368
  };
@@ -19422,44 +19425,61 @@ export type GetLocationCountriesByIso2Responses = {
19422
19425
  /**
19423
19426
  * Cities in the specified country, sorted by population (largest first)
19424
19427
  */
19425
- 200: Array<{
19426
- /**
19427
- * City name as commonly used. Matches the local or internationally recognized name for the location.
19428
- */
19429
- city: string;
19430
- /**
19431
- * State, province, canton, or administrative region. Helps disambiguate cities with the same name across regions (e.g. Springfield IL vs Springfield MO).
19432
- */
19433
- province: string;
19434
- /**
19435
- * Full country name in English.
19436
- */
19437
- country: string;
19438
- /**
19439
- * ISO 3166-1 alpha-2 country code. Use for filtering cities by country or building country-specific location pickers.
19440
- */
19441
- iso2: string;
19442
- /**
19443
- * 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.
19444
- */
19445
- latitude: number;
19428
+ 200: {
19446
19429
  /**
19447
- * Geographic longitude in decimal degrees (-180 to 180). Pass directly to astrology, horoscope, and panchang API endpoints alongside latitude.
19430
+ * Total number of cities available for this country.
19448
19431
  */
19449
- longitude: number;
19432
+ total: number;
19450
19433
  /**
19451
- * 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.
19434
+ * Page size used for this response.
19452
19435
  */
19453
- timezone: string;
19436
+ limit: number;
19454
19437
  /**
19455
- * 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.
19438
+ * Number of cities skipped. Use with limit for pagination.
19456
19439
  */
19457
- utcOffset: number;
19440
+ offset: number;
19458
19441
  /**
19459
- * City population estimate from geographic databases. Larger cities rank higher in search results, ensuring major metropolitan areas appear first in autocomplete suggestions.
19442
+ * Cities for the current page, sorted by population (largest first).
19460
19443
  */
19461
- population: number;
19462
- }>;
19444
+ cities: Array<{
19445
+ /**
19446
+ * City name as commonly used. Matches the local or internationally recognized name for the location.
19447
+ */
19448
+ city: string;
19449
+ /**
19450
+ * State, province, canton, or administrative region. Helps disambiguate cities with the same name across regions (e.g. Springfield IL vs Springfield MO).
19451
+ */
19452
+ province: string;
19453
+ /**
19454
+ * Full country name in English.
19455
+ */
19456
+ country: string;
19457
+ /**
19458
+ * ISO 3166-1 alpha-2 country code. Use for filtering cities by country or building country-specific location pickers.
19459
+ */
19460
+ iso2: string;
19461
+ /**
19462
+ * 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.
19463
+ */
19464
+ latitude: number;
19465
+ /**
19466
+ * Geographic longitude in decimal degrees (-180 to 180). Pass directly to astrology, horoscope, and panchang API endpoints alongside latitude.
19467
+ */
19468
+ longitude: number;
19469
+ /**
19470
+ * 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.
19471
+ */
19472
+ timezone: string;
19473
+ /**
19474
+ * 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.
19475
+ */
19476
+ utcOffset: number;
19477
+ /**
19478
+ * City population estimate from geographic databases. Larger cities rank higher in search results, ensuring major metropolitan areas appear first in autocomplete suggestions.
19479
+ */
19480
+ population: number;
19481
+ }>;
19482
+ };
19463
19483
  };
19464
19484
  export type GetLocationCountriesByIso2Response = GetLocationCountriesByIso2Responses[keyof GetLocationCountriesByIso2Responses];
19465
19485
  export type GetUsageData = {