Skip to content

Commit fe56b9a

Browse files
release: 0.10.0 (#46)
* feat(api): sync public contracts * release: 0.10.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 4179660 commit fe56b9a

33 files changed

Lines changed: 1552 additions & 61 deletions

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.9.1"
2+
".": "0.10.0"
33
}

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 124
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/xquik/x-twitter-scraper-d5ea5609c8180c1340dd312fcb526d52953040de479617d4755673705d7c1334.yml
3-
openapi_spec_hash: 9b5ddbbd9ca6b21d24051d6b7cec9123
4-
config_hash: 217d68ca6999ad03cfc4922e9658297e
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/xquik/x-twitter-scraper-878138bbf57021047ac2af87a490a147b1d41367ee7807cc188d3247cc4b255d.yml
3+
openapi_spec_hash: 1f50b417a17776f9f361f34552879e64
4+
config_hash: a4624963c7e5bdbdf085e64f3101d3b0

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.10.0 (2026-08-12)
4+
5+
Full Changelog: [v0.9.1...v0.10.0](https://github.com/Xquik-dev/x-twitter-scraper-ruby/compare/v0.9.1...v0.10.0)
6+
7+
### Features
8+
9+
* **api:** sync public contracts ([b7fafe0](https://github.com/Xquik-dev/x-twitter-scraper-ruby/commit/b7fafe0efcf6b27464565ca4c54159c2276cb58a))
10+
311
## 0.9.1 (2026-08-11)
412

513
Full Changelog: [v0.9.0...v0.9.1](https://github.com/Xquik-dev/x-twitter-scraper-ruby/compare/v0.9.0...v0.9.1)

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GIT
1111
PATH
1212
remote: .
1313
specs:
14-
x-twitter-scraper (0.9.1)
14+
x-twitter-scraper (0.10.0)
1515
base64
1616
cgi
1717
connection_pool

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Add the gem to your `Gemfile`:
3535
<!-- x-release-please-start-version -->
3636

3737
```ruby
38-
gem "x-twitter-scraper", "~> 0.9.1"
38+
gem "x-twitter-scraper", "~> 0.10.0"
3939
```
4040

4141
<!-- x-release-please-end -->

lib/x_twitter_scraper/models/error.rb

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,17 @@ module LegacyErrorCode
118118
IDEMPOTENCY_CONFLICT = :idempotency_conflict
119119
IDEMPOTENCY_KEY_CONFLICT = :idempotency_key_conflict
120120
INVALID_COMMUNITY_ID = :invalid_community_id
121+
INVALID_COMPLETE_REPLIES_REQUEST = :invalid_complete_replies_request
121122
INVALID_COVERAGE_CURSOR = :invalid_coverage_cursor
123+
INVALID_COVERAGE_REQUEST = :invalid_coverage_request
122124
INVALID_IDEMPOTENCY_KEY = :invalid_idempotency_key
123125
INVALID_LIST_ID = :invalid_list_id
126+
INVALID_OUTPUT_OPTIONS = :invalid_output_options
124127
INVALID_PAYMENT_AMOUNT = :invalid_payment_amount
125128
INVALID_RANGE = :invalid_range
129+
INVALID_REPLY_OPTIONS = :invalid_reply_options
126130
LOGIN_RATE_LIMITED = :login_rate_limited
131+
LOGIN_SERVICE_UNAVAILABLE = :login_service_unavailable
127132
MISSING_IDEMPOTENCY_KEY = :missing_idempotency_key
128133
MISSING_IDS = :missing_ids
129134
NO_CACHED_STYLE = :no_cached_style
@@ -134,6 +139,7 @@ module LegacyErrorCode
134139
SUPPORT_MEDIA_RATE_LIMIT = :support_media_rate_limit
135140
SUPPORT_REQUEST_RATE_LIMIT = :support_request_rate_limit
136141
TOO_MANY_IDS = :too_many_ids
142+
TOO_MANY_TWEETS = :too_many_tweets
137143
UNKNOWN_FIELD = :unknown_field
138144
UNSUPPORTED_MEDIA_TYPE = :unsupported_media_type
139145
WEBHOOK_INACTIVE = :webhook_inactive
@@ -251,12 +257,17 @@ module Code
251257
IDEMPOTENCY_CONFLICT = :idempotency_conflict
252258
IDEMPOTENCY_KEY_CONFLICT = :idempotency_key_conflict
253259
INVALID_COMMUNITY_ID = :invalid_community_id
260+
INVALID_COMPLETE_REPLIES_REQUEST = :invalid_complete_replies_request
254261
INVALID_COVERAGE_CURSOR = :invalid_coverage_cursor
262+
INVALID_COVERAGE_REQUEST = :invalid_coverage_request
255263
INVALID_IDEMPOTENCY_KEY = :invalid_idempotency_key
256264
INVALID_LIST_ID = :invalid_list_id
265+
INVALID_OUTPUT_OPTIONS = :invalid_output_options
257266
INVALID_PAYMENT_AMOUNT = :invalid_payment_amount
258267
INVALID_RANGE = :invalid_range
268+
INVALID_REPLY_OPTIONS = :invalid_reply_options
259269
LOGIN_RATE_LIMITED = :login_rate_limited
270+
LOGIN_SERVICE_UNAVAILABLE = :login_service_unavailable
260271
MISSING_IDEMPOTENCY_KEY = :missing_idempotency_key
261272
MISSING_IDS = :missing_ids
262273
NO_CACHED_STYLE = :no_cached_style
@@ -267,6 +278,7 @@ module Code
267278
SUPPORT_MEDIA_RATE_LIMIT = :support_media_rate_limit
268279
SUPPORT_REQUEST_RATE_LIMIT = :support_request_rate_limit
269280
TOO_MANY_IDS = :too_many_ids
281+
TOO_MANY_TWEETS = :too_many_tweets
270282
UNKNOWN_FIELD = :unknown_field
271283
UNSUPPORTED_MEDIA_TYPE = :unsupported_media_type
272284
WEBHOOK_INACTIVE = :webhook_inactive

lib/x_twitter_scraper/models/x/tweet_get_quotes_params.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ class TweetGetQuotesParams < XTwitterScraper::Internal::Type::BaseModel
157157
optional :min_bookmarks, Integer
158158

159159
# @!attribute min_faves
160-
# Minimum likes threshold.
160+
# Minimum likes threshold. minLikes is also accepted.
161161
#
162162
# @return [Integer, nil]
163163
optional :min_faves, Integer
@@ -366,7 +366,7 @@ class TweetGetQuotesParams < XTwitterScraper::Internal::Type::BaseModel
366366
#
367367
# @param min_bookmarks [Integer] Minimum bookmark count threshold.
368368
#
369-
# @param min_faves [Integer] Minimum likes threshold.
369+
# @param min_faves [Integer] Minimum likes threshold. minLikes is also accepted.
370370
#
371371
# @param min_quotes [Integer] Minimum quote count threshold.
372372
#

lib/x_twitter_scraper/models/x/tweet_get_replies_params.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ class TweetGetRepliesParams < XTwitterScraper::Internal::Type::BaseModel
184184
optional :min_bookmarks, Integer
185185

186186
# @!attribute min_faves
187-
# Minimum likes threshold.
187+
# Minimum likes threshold. minLikes is also accepted.
188188
#
189189
# @return [Integer, nil]
190190
optional :min_faves, Integer
@@ -421,7 +421,7 @@ class TweetGetRepliesParams < XTwitterScraper::Internal::Type::BaseModel
421421
#
422422
# @param min_bookmarks [Integer] Minimum bookmark count threshold.
423423
#
424-
# @param min_faves [Integer] Minimum likes threshold.
424+
# @param min_faves [Integer] Minimum likes threshold. minLikes is also accepted.
425425
#
426426
# @param min_quotes [Integer] Minimum quote count threshold.
427427
#

0 commit comments

Comments
 (0)