@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 +2 -0
- package/dist/factory.cjs +1 -1
- package/dist/factory.js +1 -1
- package/dist/types.gen.d.ts +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/types.gen.ts +1 -1
- package/src/version.ts +1 -1
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
package/dist/factory.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -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.
|
|
1
|
+
export declare const VERSION = "1.2.22";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
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.
|
|
1
|
+
export const VERSION = '1.2.22';
|