Skip to content

Commit a9f585e

Browse files
committed
Upgrade Java SDK to spec 1.21.1-nightly.25
1 parent 6daeeb6 commit a9f585e

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

‎docs/AuthenticationApi.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ No authorization required
165165
|-------------|-------------|------------------|
166166
| **200** | Returns a response if a user exists or not. | - |
167167
| **400** | Error response when missing at least 1 of the required parameters. | - |
168+
| **429** | Error response when checking for users faster than the caller is allowed to. Carries no body. | - |
168169

169170
<a id="confirmEmail"></a>
170171
# **confirmEmail**

‎src/main/java/io/github/vrchatapi/api/AuthenticationApi.java‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@ public okhttp3.Call cancelPending2FAAsync(final ApiCallback<Disable2FAResult> _c
231231
<tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
232232
<tr><td> 200 </td><td> Returns a response if a user exists or not. </td><td> - </td></tr>
233233
<tr><td> 400 </td><td> Error response when missing at least 1 of the required parameters. </td><td> - </td></tr>
234+
<tr><td> 429 </td><td> Error response when checking for users faster than the caller is allowed to. Carries no body. </td><td> - </td></tr>
234235
</table>
235236
*/
236237
public okhttp3.Call checkUserExistsCall(@javax.annotation.Nullable String email, @javax.annotation.Nullable String displayName, @javax.annotation.Nullable String username, @javax.annotation.Nullable String excludeUserId, final ApiCallback _callback) throws ApiException {
@@ -314,6 +315,7 @@ private okhttp3.Call checkUserExistsValidateBeforeCall(@javax.annotation.Nullabl
314315
<tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
315316
<tr><td> 200 </td><td> Returns a response if a user exists or not. </td><td> - </td></tr>
316317
<tr><td> 400 </td><td> Error response when missing at least 1 of the required parameters. </td><td> - </td></tr>
318+
<tr><td> 429 </td><td> Error response when checking for users faster than the caller is allowed to. Carries no body. </td><td> - </td></tr>
317319
</table>
318320
*/
319321
public UserExists checkUserExists(@javax.annotation.Nullable String email, @javax.annotation.Nullable String displayName, @javax.annotation.Nullable String username, @javax.annotation.Nullable String excludeUserId) throws ApiException {
@@ -336,6 +338,7 @@ public UserExists checkUserExists(@javax.annotation.Nullable String email, @java
336338
<tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
337339
<tr><td> 200 </td><td> Returns a response if a user exists or not. </td><td> - </td></tr>
338340
<tr><td> 400 </td><td> Error response when missing at least 1 of the required parameters. </td><td> - </td></tr>
341+
<tr><td> 429 </td><td> Error response when checking for users faster than the caller is allowed to. Carries no body. </td><td> - </td></tr>
339342
</table>
340343
*/
341344
public ApiResponse<UserExists> checkUserExistsWithHttpInfo(@javax.annotation.Nullable String email, @javax.annotation.Nullable String displayName, @javax.annotation.Nullable String username, @javax.annotation.Nullable String excludeUserId) throws ApiException {
@@ -360,6 +363,7 @@ public ApiResponse<UserExists> checkUserExistsWithHttpInfo(@javax.annotation.Nul
360363
<tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
361364
<tr><td> 200 </td><td> Returns a response if a user exists or not. </td><td> - </td></tr>
362365
<tr><td> 400 </td><td> Error response when missing at least 1 of the required parameters. </td><td> - </td></tr>
366+
<tr><td> 429 </td><td> Error response when checking for users faster than the caller is allowed to. Carries no body. </td><td> - </td></tr>
363367
</table>
364368
*/
365369
public okhttp3.Call checkUserExistsAsync(@javax.annotation.Nullable String email, @javax.annotation.Nullable String displayName, @javax.annotation.Nullable String username, @javax.annotation.Nullable String excludeUserId, final ApiCallback<UserExists> _callback) throws ApiException {

0 commit comments

Comments
 (0)