@getanyapi/sdk 0.42.0 → 0.44.0

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.js CHANGED
@@ -3543,7 +3543,7 @@ var InstagramNamespace = class {
3543
3543
  *
3544
3544
  * Fetch a single Instagram post or reel by URL (media URLs, like count, owner, type) as normalized JSON.
3545
3545
  *
3546
- * Price: $0.0012 per request.
3546
+ * Price: $0.0005 per request.
3547
3547
  *
3548
3548
  * @example
3549
3549
  * const res = await client.instagram.post({ url: "https://www.instagram.com/reel/DWzrfE2kaY8/" });
@@ -3622,12 +3622,12 @@ var InstagramNamespace = class {
3622
3622
  /**
3623
3623
  * Instagram Reel Transcript
3624
3624
  *
3625
- * Turn any public Instagram reel or video post into a full speech transcript, with optional word-level timestamps.
3625
+ * Download any public Instagram reel or video post to a hosted MP4 link, with an optional full speech transcript, speaker labels, and word-level timestamps. Transcription runs on MAI-Transcribe-2, chosen for its accuracy and its speaker labels. If you only want the text and not the video file, instagram.media_transcript is the cheaper transcript-only option.
3626
3626
  *
3627
- * Price: $0.0055 per request plus $0.0253 per result (maximum $0.0308).
3627
+ * Price: $0.005 per request plus $0.006 per audio minute (maximum $0.05).
3628
3628
  *
3629
3629
  * @example
3630
- * const res = await client.instagram.reelTranscript({ url: "https://www.instagram.com/reel/DWzrfE2kaY8/", wordTimestamps: false });
3630
+ * const res = await client.instagram.reelTranscript({ url: "https://www.instagram.com/reel/CfY6jCIgH-P/", includeTranscript: true, wordTimestamps: false });
3631
3631
  */
3632
3632
  reelTranscript(input, options) {
3633
3633
  return this._core.run("instagram.reel_transcript", input, options);
@@ -6693,7 +6693,7 @@ var TwitterNamespace = class {
6693
6693
  *
6694
6694
  * Fetch the follower list of any public X (Twitter) account by username with cursor pagination. Limit is a per-page maximum and a native page holds up to 200 accounts; follow the response's nextCursor for more.
6695
6695
  *
6696
- * Price: $0.00075 per request.
6696
+ * Price: $0.0005 per request.
6697
6697
  *
6698
6698
  * @example
6699
6699
  * const res = await client.twitter.followers({ username: "nasa", limit: 200 });