@getanyapi/sdk 0.11.1 → 0.12.1
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/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +33 -29
- package/dist/index.d.ts +33 -29
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2876,12 +2876,12 @@ var InstagramNamespace = class {
|
|
|
2876
2876
|
/**
|
|
2877
2877
|
* Instagram Stories (full)
|
|
2878
2878
|
*
|
|
2879
|
-
* Fetch public Instagram
|
|
2879
|
+
* Fetch a public Instagram account's currently live stories with media, type, dimensions, posting time, and 24-hour expiry by username.
|
|
2880
2880
|
*
|
|
2881
|
-
* Price: $0.
|
|
2881
|
+
* Price: $0.002 per request.
|
|
2882
2882
|
*
|
|
2883
2883
|
* @example
|
|
2884
|
-
* const res = await client.instagram.storiesFull({
|
|
2884
|
+
* const res = await client.instagram.storiesFull({ username: "natgeo" });
|
|
2885
2885
|
*/
|
|
2886
2886
|
storiesFull(input, options) {
|
|
2887
2887
|
return this._core.run("instagram.stories_full", input, options);
|
|
@@ -3301,9 +3301,9 @@ var MapsNamespace = class {
|
|
|
3301
3301
|
/**
|
|
3302
3302
|
* Google Maps Place Lookup
|
|
3303
3303
|
*
|
|
3304
|
-
* Look up a place on Google Maps by name or search query (optionally scoped to a location) and get the best-matching place with
|
|
3304
|
+
* Look up a place on Google Maps by name or search query (optionally scoped to a location) and get the best-matching place with available address, contact, rating, and coordinate details as normalized JSON.
|
|
3305
3305
|
*
|
|
3306
|
-
* Price: $0.
|
|
3306
|
+
* Price: $0.00297 per request.
|
|
3307
3307
|
*
|
|
3308
3308
|
* @example
|
|
3309
3309
|
* const res = await client.maps.place({ query: "Blue Bottle Coffee", location: "San Francisco, CA", website: "withWebsite" });
|
|
@@ -3329,7 +3329,7 @@ var MapsNamespace = class {
|
|
|
3329
3329
|
*
|
|
3330
3330
|
* Search Google Maps for places matching a query and location: up to 20 normalized place records with ratings, addresses, and contact basics per request.
|
|
3331
3331
|
*
|
|
3332
|
-
* Price: $0.
|
|
3332
|
+
* Price: $0.00297 per request.
|
|
3333
3333
|
*
|
|
3334
3334
|
* @example
|
|
3335
3335
|
* const res = await client.maps.search({ location: "Austin, TX", query: "coffee", limit: 3, placeMinimumStars: "four", website: "withWebsite" });
|