Skip to content

Commit c448b0a

Browse files
release: v1.2.24
1 parent a7a13dc commit c448b0a

5 files changed

Lines changed: 21 additions & 21 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@roxyapi/sdk",
3-
"version": "1.2.23",
3+
"version": "1.2.24",
44
"description": "TypeScript SDK for Roxy — the multi-domain spiritual intelligence API",
55
"type": "module",
66
"exports": {

specs/openapi.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -55165,7 +55165,7 @@
5516555165
}
5516655166
],
5516755167
"summary": "Search cities worldwide - Geocoding autocomplete with coordinates and timezone",
55168-
"description": "City autocomplete and geocoding search across 7,000+ locations in 227 countries. Returns geographic coordinates (latitude, longitude), IANA timezone, and DST-aware UTC offset for each match. Built for birth chart location pickers, horoscope apps, event scheduling, and any feature requiring place-to-coordinates resolution. Partial name matching with intelligent ranking: exact prefix matches first, then sorted by population for relevance. Covers all major cities in Europe, Americas, Asia, Africa, and Oceania.",
55168+
"description": "City autocomplete and geocoding search across 23,000+ locations in 240+ countries, including deep coverage of Indian tier-2 and tier-3 cities. Returns geographic coordinates (latitude, longitude), IANA timezone, and DST-aware UTC offset for each match. Built for birth chart location pickers, horoscope apps, event scheduling, and any feature requiring place-to-coordinates resolution. Partial name matching with intelligent ranking: exact prefix matches first, then sorted by population for relevance. Common alternate names like Bombay, Calcutta, Madras, and Banaras transparently resolve to their canonical entries.",
5516955169
"parameters": [
5517055170
{
5517155171
"schema": {
@@ -55528,20 +55528,20 @@
5552855528
"apiKey": []
5552955529
}
5553055530
],
55531-
"summary": "List all 227 countries - ISO codes and city coverage",
55532-
"description": "Returns all 227 countries with ISO 3166-1 alpha-2 and alpha-3 codes, plus the number of searchable cities per country. Use this endpoint to build country dropdown menus, regional filters, or to check city coverage before querying. Sorted alphabetically by country name. Covers Europe, Americas, Asia, Middle East, Africa, and Oceania.",
55531+
"summary": "List all countries - ISO codes and city coverage",
55532+
"description": "Returns every country with ISO 3166-1 alpha-2 and alpha-3 codes, plus the number of searchable cities per country. Use this endpoint to build country dropdown menus, regional filters, or to check city coverage before querying. Sorted alphabetically by country name. Covers Europe, Americas, Asia, Middle East, Africa, and Oceania.",
5553355533
"parameters": [
5553455534
{
5553555535
"schema": {
5553655536
"type": "integer",
5553755537
"minimum": 1,
55538-
"maximum": 50,
55538+
"maximum": 250,
5553955539
"default": 50,
5554055540
"example": 50,
55541-
"description": "Maximum items to return per page. Range: 1-50, default 50."
55541+
"description": "Maximum items to return per page. Range: 1-250, default 50."
5554255542
},
5554355543
"required": false,
55544-
"description": "Maximum items to return per page. Range: 1-50, default 50.",
55544+
"description": "Maximum items to return per page. Range: 1-250, default 50.",
5554555545
"name": "limit",
5554655546
"in": "query"
5554755547
},
@@ -55562,15 +55562,15 @@
5556255562
],
5556355563
"responses": {
5556455564
"200": {
55565-
"description": "Alphabetically sorted list of all 227 countries with ISO codes and city counts",
55565+
"description": "Alphabetically sorted list of all countries with ISO codes and city counts",
5556655566
"content": {
5556755567
"application/json": {
5556855568
"schema": {
5556955569
"type": "object",
5557055570
"properties": {
5557155571
"total": {
5557255572
"type": "number",
55573-
"example": 227,
55573+
"example": 240,
5557455574
"description": "Total number of countries available."
5557555575
},
5557655576
"limit": {
@@ -55869,13 +55869,13 @@
5586955869
"schema": {
5587055870
"type": "integer",
5587155871
"minimum": 1,
55872-
"maximum": 200,
55873-
"default": 50,
55874-
"example": 50,
55875-
"description": "Maximum items to return per page. Range: 1-200, default 50."
55872+
"maximum": 100,
55873+
"default": 20,
55874+
"example": 20,
55875+
"description": "Maximum items to return per page. Range: 1-100, default 20."
5587655876
},
5587755877
"required": false,
55878-
"description": "Maximum items to return per page. Range: 1-200, default 50.",
55878+
"description": "Maximum items to return per page. Range: 1-100, default 20.",
5587955879
"name": "limit",
5588055880
"in": "query"
5588155881
},

src/sdk.gen.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2030,7 +2030,7 @@ export class Location extends HeyApiClient {
20302030
/**
20312031
* Search cities worldwide - Geocoding autocomplete with coordinates and timezone
20322032
*
2033-
* City autocomplete and geocoding search across 7,000+ locations in 227 countries. Returns geographic coordinates (latitude, longitude), IANA timezone, and DST-aware UTC offset for each match. Built for birth chart location pickers, horoscope apps, event scheduling, and any feature requiring place-to-coordinates resolution. Partial name matching with intelligent ranking: exact prefix matches first, then sorted by population for relevance. Covers all major cities in Europe, Americas, Asia, Africa, and Oceania.
2033+
* City autocomplete and geocoding search across 23,000+ locations in 240+ countries, including deep coverage of Indian tier-2 and tier-3 cities. Returns geographic coordinates (latitude, longitude), IANA timezone, and DST-aware UTC offset for each match. Built for birth chart location pickers, horoscope apps, event scheduling, and any feature requiring place-to-coordinates resolution. Partial name matching with intelligent ranking: exact prefix matches first, then sorted by population for relevance. Common alternate names like Bombay, Calcutta, Madras, and Banaras transparently resolve to their canonical entries.
20342034
*/
20352035
public searchCities<ThrowOnError extends boolean = false>(options: Options<GetLocationSearchData, ThrowOnError>) {
20362036
return (options.client ?? this.client).get<GetLocationSearchResponses, GetLocationSearchErrors, ThrowOnError>({
@@ -2041,9 +2041,9 @@ export class Location extends HeyApiClient {
20412041
}
20422042

20432043
/**
2044-
* List all 227 countries - ISO codes and city coverage
2044+
* List all countries - ISO codes and city coverage
20452045
*
2046-
* Returns all 227 countries with ISO 3166-1 alpha-2 and alpha-3 codes, plus the number of searchable cities per country. Use this endpoint to build country dropdown menus, regional filters, or to check city coverage before querying. Sorted alphabetically by country name. Covers Europe, Americas, Asia, Middle East, Africa, and Oceania.
2046+
* Returns every country with ISO 3166-1 alpha-2 and alpha-3 codes, plus the number of searchable cities per country. Use this endpoint to build country dropdown menus, regional filters, or to check city coverage before querying. Sorted alphabetically by country name. Covers Europe, Americas, Asia, Middle East, Africa, and Oceania.
20472047
*/
20482048
public listCountries<ThrowOnError extends boolean = false>(options?: Options<GetLocationCountriesData, ThrowOnError>) {
20492049
return (options?.client ?? this.client).get<GetLocationCountriesResponses, GetLocationCountriesErrors, ThrowOnError>({

src/types.gen.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27907,7 +27907,7 @@ export type GetLocationCountriesData = {
2790727907
path?: never;
2790827908
query?: {
2790927909
/**
27910-
* Maximum items to return per page. Range: 1-50, default 50.
27910+
* Maximum items to return per page. Range: 1-250, default 50.
2791127911
*/
2791227912
limit?: number;
2791327913
/**
@@ -28024,7 +28024,7 @@ export type GetLocationCountriesError = GetLocationCountriesErrors[keyof GetLoca
2802428024

2802528025
export type GetLocationCountriesResponses = {
2802628026
/**
28027-
* Alphabetically sorted list of all 227 countries with ISO codes and city counts
28027+
* Alphabetically sorted list of all countries with ISO codes and city counts
2802828028
*/
2802928029
200: {
2803028030
/**
@@ -28075,7 +28075,7 @@ export type GetLocationCountriesByIso2Data = {
2807528075
};
2807628076
query?: {
2807728077
/**
28078-
* Maximum items to return per page. Range: 1-200, default 50.
28078+
* Maximum items to return per page. Range: 1-100, default 20.
2807928079
*/
2808028080
limit?: number;
2808128081
/**

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '1.2.23';
1+
export const VERSION = '1.2.24';

0 commit comments

Comments
 (0)