Skip to content

Commit c1b4560

Browse files
committed
Upgrade Python SDK to spec 1.16.8
1 parent 1e60e4a commit c1b4560

File tree

159 files changed

+743
-340
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+743
-340
lines changed

.openapi-generator/FILES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ docs/GroupAnnouncement.md
4848
docs/GroupAuditLogEntry.md
4949
docs/GroupGallery.md
5050
docs/GroupGalleryImage.md
51+
docs/GroupJoinRequestAction.md
5152
docs/GroupJoinState.md
5253
docs/GroupLimitedMember.md
5354
docs/GroupMember.md
@@ -209,6 +210,7 @@ vrchatapi/models/group_announcement.py
209210
vrchatapi/models/group_audit_log_entry.py
210211
vrchatapi/models/group_gallery.py
211212
vrchatapi/models/group_gallery_image.py
213+
vrchatapi/models/group_join_request_action.py
212214
vrchatapi/models/group_join_state.py
213215
vrchatapi/models/group_limited_member.py
214216
vrchatapi/models/group_member.py

docs/AuthenticationApi.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ This endpoint does not need any parameter.
408408
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
409409

410410
# **verify2_fa**
411-
> Verify2FAResult verify2_fa(two_factor_auth_code=two_factor_auth_code)
411+
> Verify2FAResult verify2_fa(two_factor_auth_code)
412412
413413
Verify 2FA code
414414

@@ -444,11 +444,11 @@ configuration.api_key['authCookie'] = 'YOUR_API_KEY'
444444
with vrchatapi.ApiClient(configuration) as api_client:
445445
# Create an instance of the API class
446446
api_instance = vrchatapi.AuthenticationApi(api_client)
447-
two_factor_auth_code = vrchatapi.TwoFactorAuthCode() # TwoFactorAuthCode | (optional)
447+
two_factor_auth_code = vrchatapi.TwoFactorAuthCode() # TwoFactorAuthCode |
448448

449449
try:
450450
# Verify 2FA code
451-
api_response = api_instance.verify2_fa(two_factor_auth_code=two_factor_auth_code)
451+
api_response = api_instance.verify2_fa(two_factor_auth_code)
452452
pprint(api_response)
453453
except ApiException as e:
454454
print("Exception when calling AuthenticationApi->verify2_fa: %s\n" % e)
@@ -458,7 +458,7 @@ with vrchatapi.ApiClient(configuration) as api_client:
458458

459459
Name | Type | Description | Notes
460460
------------- | ------------- | ------------- | -------------
461-
**two_factor_auth_code** | [**TwoFactorAuthCode**](TwoFactorAuthCode.md)| | [optional]
461+
**two_factor_auth_code** | [**TwoFactorAuthCode**](TwoFactorAuthCode.md)| |
462462

463463
### Return type
464464

@@ -482,7 +482,7 @@ Name | Type | Description | Notes
482482
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
483483

484484
# **verify2_fa_email_code**
485-
> Verify2FAEmailCodeResult verify2_fa_email_code(two_factor_email_code=two_factor_email_code)
485+
> Verify2FAEmailCodeResult verify2_fa_email_code(two_factor_email_code)
486486
487487
Verify 2FA email code
488488

@@ -518,11 +518,11 @@ configuration.api_key['authCookie'] = 'YOUR_API_KEY'
518518
with vrchatapi.ApiClient(configuration) as api_client:
519519
# Create an instance of the API class
520520
api_instance = vrchatapi.AuthenticationApi(api_client)
521-
two_factor_email_code = vrchatapi.TwoFactorEmailCode() # TwoFactorEmailCode | (optional)
521+
two_factor_email_code = vrchatapi.TwoFactorEmailCode() # TwoFactorEmailCode |
522522

523523
try:
524524
# Verify 2FA email code
525-
api_response = api_instance.verify2_fa_email_code(two_factor_email_code=two_factor_email_code)
525+
api_response = api_instance.verify2_fa_email_code(two_factor_email_code)
526526
pprint(api_response)
527527
except ApiException as e:
528528
print("Exception when calling AuthenticationApi->verify2_fa_email_code: %s\n" % e)
@@ -532,7 +532,7 @@ with vrchatapi.ApiClient(configuration) as api_client:
532532

533533
Name | Type | Description | Notes
534534
------------- | ------------- | ------------- | -------------
535-
**two_factor_email_code** | [**TwoFactorEmailCode**](TwoFactorEmailCode.md)| | [optional]
535+
**two_factor_email_code** | [**TwoFactorEmailCode**](TwoFactorEmailCode.md)| |
536536

537537
### Return type
538538

@@ -626,7 +626,7 @@ This endpoint does not need any parameter.
626626
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
627627

628628
# **verify_recovery_code**
629-
> Verify2FAResult verify_recovery_code(two_factor_auth_code=two_factor_auth_code)
629+
> Verify2FAResult verify_recovery_code(two_factor_auth_code)
630630
631631
Verify 2FA code with Recovery code
632632

@@ -662,11 +662,11 @@ configuration.api_key['authCookie'] = 'YOUR_API_KEY'
662662
with vrchatapi.ApiClient(configuration) as api_client:
663663
# Create an instance of the API class
664664
api_instance = vrchatapi.AuthenticationApi(api_client)
665-
two_factor_auth_code = vrchatapi.TwoFactorAuthCode() # TwoFactorAuthCode | (optional)
665+
two_factor_auth_code = vrchatapi.TwoFactorAuthCode() # TwoFactorAuthCode |
666666

667667
try:
668668
# Verify 2FA code with Recovery code
669-
api_response = api_instance.verify_recovery_code(two_factor_auth_code=two_factor_auth_code)
669+
api_response = api_instance.verify_recovery_code(two_factor_auth_code)
670670
pprint(api_response)
671671
except ApiException as e:
672672
print("Exception when calling AuthenticationApi->verify_recovery_code: %s\n" % e)
@@ -676,7 +676,7 @@ with vrchatapi.ApiClient(configuration) as api_client:
676676

677677
Name | Type | Description | Notes
678678
------------- | ------------- | ------------- | -------------
679-
**two_factor_auth_code** | [**TwoFactorAuthCode**](TwoFactorAuthCode.md)| | [optional]
679+
**two_factor_auth_code** | [**TwoFactorAuthCode**](TwoFactorAuthCode.md)| |
680680

681681
### Return type
682682

docs/GroupJoinRequestAction.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# GroupJoinRequestAction
2+
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
8+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
9+
10+

docs/GroupLimitedMember.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
1111
**role_ids** | **list[str]** | | [optional]
1212
**m_role_ids** | **list[str]** | | [optional]
1313
**joined_at** | **datetime** | | [optional]
14-
**membership_status** | **str** | | [optional]
14+
**membership_status** | [**GroupMemberStatus**](GroupMemberStatus.md) | | [optional]
1515
**visibility** | **str** | | [optional]
1616
**is_subscribed_to_announcements** | **bool** | | [optional] [default to False]
1717
**created_at** | **datetime** | Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user. | [optional]

docs/GroupMember.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
1212
**role_ids** | **list[str]** | | [optional]
1313
**m_role_ids** | **list[str]** | | [optional]
1414
**joined_at** | **datetime** | | [optional]
15-
**membership_status** | **str** | | [optional]
15+
**membership_status** | [**GroupMemberStatus**](GroupMemberStatus.md) | | [optional]
1616
**visibility** | **str** | | [optional]
1717
**is_subscribed_to_announcements** | **bool** | | [optional] [default to False]
1818
**created_at** | **datetime** | Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user. | [optional]

0 commit comments

Comments
 (0)