@getanyapi/sdk 0.7.0 → 0.7.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 CHANGED
@@ -4928,11 +4928,11 @@ var TwitterNamespace = class {
4928
4928
  return this._core.run("twitter.tweet_transcript", input, options);
4929
4929
  }
4930
4930
  /**
4931
- * Twitter User Tweets
4931
+ * X / Twitter User Tweets and Replies
4932
4932
  *
4933
- * Get an X (Twitter) account's latest tweets by handle, newest first (reverse-chronological, replies included), with engagement, views, language, and cursor pagination. Limit is a per-page maximum; native pages contain approximately 20 tweets unless requireSinglePage selects a bulk lane.
4933
+ * Get up to the requested limit of tweets and replies authored by an X (Twitter) account in one bulk call, with engagement, views, and language. The current lane returns nextCursor as null; cursor is reserved for future cursor-capable lanes.
4934
4934
  *
4935
- * Price: $0.00075 per request.
4935
+ * Price: $0 per request plus $0.0002 per result (maximum $0.2).
4936
4936
  *
4937
4937
  * @example
4938
4938
  * const res = await client.twitter.userTweets({ handle: "levelsio", limit: 20 });
@@ -4941,7 +4941,7 @@ var TwitterNamespace = class {
4941
4941
  return this._core.run("twitter.user_tweets", input, options);
4942
4942
  }
4943
4943
  /**
4944
- * Iterate every result of Twitter User Tweets across pages.
4944
+ * Iterate every result of X / Twitter User Tweets and Replies across pages.
4945
4945
  *
4946
4946
  * Yields items directly; call `.pages()` on the return value to walk whole
4947
4947
  * result pages instead (each carries its own costUsd).