@roxyapi/sdk 1.2.21 → 1.2.22

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/AGENTS.md CHANGED
@@ -32,6 +32,8 @@ const { latitude, longitude, timezone } = data.cities[0];
32
32
  // (5.5, -5, 9, ...) also works and produces identical charts.
33
33
  ```
34
34
 
35
+ `q` accepts bare city (`'Mumbai'`), city + country (`'Berlin Germany'`), or comma-qualified (`'Springfield, Illinois'`). Use the qualified form to disambiguate same-named cities.
36
+
35
37
  ## Domains
36
38
 
37
39
  Type `roxy.` to see all available namespaces. Type `roxy.{domain}.` to see every method in that domain.
package/dist/factory.cjs CHANGED
@@ -2821,7 +2821,7 @@ var Roxy = class _Roxy extends HeyApiClient {
2821
2821
  };
2822
2822
 
2823
2823
  // src/version.ts
2824
- var VERSION = "1.2.21";
2824
+ var VERSION = "1.2.22";
2825
2825
 
2826
2826
  // src/factory.ts
2827
2827
  function createRoxy(auth) {
package/dist/factory.js CHANGED
@@ -1986,7 +1986,7 @@ var Roxy = class _Roxy extends HeyApiClient {
1986
1986
  };
1987
1987
 
1988
1988
  // src/version.ts
1989
- var VERSION = "1.2.21";
1989
+ var VERSION = "1.2.22";
1990
1990
 
1991
1991
  // src/factory.ts
1992
1992
  function createRoxy(auth) {
@@ -27028,7 +27028,7 @@ export type GetLocationSearchData = {
27028
27028
  path?: never;
27029
27029
  query: {
27030
27030
  /**
27031
- * City name to search for. Matches against city name, province/state, or combined "city country" queries. Case-insensitive with partial matching (e.g. "ber" matches Berlin, Bern, Bergen).
27031
+ * City name to search for. Accepts bare city ("berlin"), city plus country ("berlin germany"), or comma-qualified ("berlin, germany", "springfield, illinois") for disambiguation. Matches against city name, province/state, or combined "city country" queries. Case-insensitive with partial matching (e.g. "ber" matches Berlin, Bern, Bergen).
27032
27032
  */
27033
27033
  q: string;
27034
27034
  /**
package/dist/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "1.2.21";
1
+ export declare const VERSION = "1.2.22";
2
2
  //# sourceMappingURL=version.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roxyapi/sdk",
3
- "version": "1.2.21",
3
+ "version": "1.2.22",
4
4
  "description": "TypeScript SDK for Roxy — the multi-domain spiritual intelligence API",
5
5
  "type": "module",
6
6
  "exports": {
package/src/types.gen.ts CHANGED
@@ -27720,7 +27720,7 @@ export type GetLocationSearchData = {
27720
27720
  path?: never;
27721
27721
  query: {
27722
27722
  /**
27723
- * City name to search for. Matches against city name, province/state, or combined "city country" queries. Case-insensitive with partial matching (e.g. "ber" matches Berlin, Bern, Bergen).
27723
+ * City name to search for. Accepts bare city ("berlin"), city plus country ("berlin germany"), or comma-qualified ("berlin, germany", "springfield, illinois") for disambiguation. Matches against city name, province/state, or combined "city country" queries. Case-insensitive with partial matching (e.g. "ber" matches Berlin, Bern, Bergen).
27724
27724
  */
27725
27725
  q: string;
27726
27726
  /**
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '1.2.21';
1
+ export const VERSION = '1.2.22';