Skip to content

Commit e75a791

Browse files
feat(api): api update
1 parent 912f5a1 commit e75a791

4 files changed

Lines changed: 8 additions & 5 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 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-f688ec225c65653bb6ba3f51fe643fc69e329fa93cdc13117060d56de13823cc.yml
3-
openapi_spec_hash: 4ad185ef874409f7cd359beed23f448f
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/xquik/x-twitter-scraper-d5ea5609c8180c1340dd312fcb526d52953040de479617d4755673705d7c1334.yml
3+
openapi_spec_hash: 9b5ddbbd9ca6b21d24051d6b7cec9123
44
config_hash: 217d68ca6999ad03cfc4922e9658297e

x-twitter-scraper-java-core/src/main/kotlin/com/x_twitter_scraper/api/models/guestwallets/GuestWalletCreateParams.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ import java.util.Objects
2424

2525
/**
2626
* Create a one-use hosted checkout after the user confirms $10-$250 USD. The request creates no
27-
* charge. It returns a paid-read API key without an Xquik account. Replays return the same key.
27+
* charge. It returns a paid-read API key without an Xquik account. Idempotent replays return the
28+
* same key.
2829
*/
2930
class GuestWalletCreateParams
3031
private constructor(

x-twitter-scraper-java-core/src/main/kotlin/com/x_twitter_scraper/api/services/async/GuestWalletServiceAsync.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ interface GuestWalletServiceAsync {
3535

3636
/**
3737
* Create a one-use hosted checkout after the user confirms $10-$250 USD. The request creates no
38-
* charge. It returns a paid-read API key without an Xquik account. Replays return the same key.
38+
* charge. It returns a paid-read API key without an Xquik account. Idempotent replays return
39+
* the same key.
3940
*/
4041
fun create(params: GuestWalletCreateParams): CompletableFuture<GuestWalletCreateResponse> =
4142
create(params, RequestOptions.none())

x-twitter-scraper-java-core/src/main/kotlin/com/x_twitter_scraper/api/services/blocking/GuestWalletService.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ interface GuestWalletService {
3535

3636
/**
3737
* Create a one-use hosted checkout after the user confirms $10-$250 USD. The request creates no
38-
* charge. It returns a paid-read API key without an Xquik account. Replays return the same key.
38+
* charge. It returns a paid-read API key without an Xquik account. Idempotent replays return
39+
* the same key.
3940
*/
4041
fun create(params: GuestWalletCreateParams): GuestWalletCreateResponse =
4142
create(params, RequestOptions.none())

0 commit comments

Comments
 (0)