@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.cjs CHANGED
@@ -3658,7 +3658,7 @@ var InstagramNamespace = class {
3658
3658
  *
3659
3659
  * Fetch a single Instagram post or reel by URL (media URLs, like count, owner, type) as normalized JSON.
3660
3660
  *
3661
- * Price: $0.0012 per request.
3661
+ * Price: $0.0005 per request.
3662
3662
  *
3663
3663
  * @example
3664
3664
  * const res = await client.instagram.post({ url: "https://www.instagram.com/reel/DWzrfE2kaY8/" });
@@ -3737,12 +3737,12 @@ var InstagramNamespace = class {
3737
3737
  /**
3738
3738
  * Instagram Reel Transcript
3739
3739
  *
3740
- * Turn any public Instagram reel or video post into a full speech transcript, with optional word-level timestamps.
3740
+ * 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.
3741
3741
  *
3742
- * Price: $0.0055 per request plus $0.0253 per result (maximum $0.0308).
3742
+ * Price: $0.005 per request plus $0.006 per audio minute (maximum $0.05).
3743
3743
  *
3744
3744
  * @example
3745
- * const res = await client.instagram.reelTranscript({ url: "https://www.instagram.com/reel/DWzrfE2kaY8/", wordTimestamps: false });
3745
+ * const res = await client.instagram.reelTranscript({ url: "https://www.instagram.com/reel/CfY6jCIgH-P/", includeTranscript: true, wordTimestamps: false });
3746
3746
  */
3747
3747
  reelTranscript(input, options) {
3748
3748
  return this._core.run("instagram.reel_transcript", input, options);
@@ -6808,7 +6808,7 @@ var TwitterNamespace = class {
6808
6808
  *
6809
6809
  * 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.
6810
6810
  *
6811
- * Price: $0.00075 per request.
6811
+ * Price: $0.0005 per request.
6812
6812
  *
6813
6813
  * @example
6814
6814
  * const res = await client.twitter.followers({ username: "nasa", limit: 200 });