Skip to content

Commit

Permalink
Upgrade Python SDK to spec 1.16.8
Browse files Browse the repository at this point in the history
  • Loading branch information
VRCCat committed Apr 14, 2024
1 parent 1e60e4a commit c1b4560
Show file tree
Hide file tree
Showing 159 changed files with 743 additions and 340 deletions.
2 changes: 2 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ docs/GroupAnnouncement.md
docs/GroupAuditLogEntry.md
docs/GroupGallery.md
docs/GroupGalleryImage.md
docs/GroupJoinRequestAction.md
docs/GroupJoinState.md
docs/GroupLimitedMember.md
docs/GroupMember.md
Expand Down Expand Up @@ -209,6 +210,7 @@ vrchatapi/models/group_announcement.py
vrchatapi/models/group_audit_log_entry.py
vrchatapi/models/group_gallery.py
vrchatapi/models/group_gallery_image.py
vrchatapi/models/group_join_request_action.py
vrchatapi/models/group_join_state.py
vrchatapi/models/group_limited_member.py
vrchatapi/models/group_member.py
Expand Down
24 changes: 12 additions & 12 deletions docs/AuthenticationApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ This endpoint does not need any parameter.
[[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)

# **verify2_fa**
> Verify2FAResult verify2_fa(two_factor_auth_code=two_factor_auth_code)
> Verify2FAResult verify2_fa(two_factor_auth_code)
Verify 2FA code

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

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

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**two_factor_auth_code** | [**TwoFactorAuthCode**](TwoFactorAuthCode.md)| | [optional]
**two_factor_auth_code** | [**TwoFactorAuthCode**](TwoFactorAuthCode.md)| |

### Return type

Expand All @@ -482,7 +482,7 @@ Name | Type | Description | Notes
[[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)

# **verify2_fa_email_code**
> Verify2FAEmailCodeResult verify2_fa_email_code(two_factor_email_code=two_factor_email_code)
> Verify2FAEmailCodeResult verify2_fa_email_code(two_factor_email_code)
Verify 2FA email code

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

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

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**two_factor_email_code** | [**TwoFactorEmailCode**](TwoFactorEmailCode.md)| | [optional]
**two_factor_email_code** | [**TwoFactorEmailCode**](TwoFactorEmailCode.md)| |

### Return type

Expand Down Expand Up @@ -626,7 +626,7 @@ This endpoint does not need any parameter.
[[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)

# **verify_recovery_code**
> Verify2FAResult verify_recovery_code(two_factor_auth_code=two_factor_auth_code)
> Verify2FAResult verify_recovery_code(two_factor_auth_code)
Verify 2FA code with Recovery code

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

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

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**two_factor_auth_code** | [**TwoFactorAuthCode**](TwoFactorAuthCode.md)| | [optional]
**two_factor_auth_code** | [**TwoFactorAuthCode**](TwoFactorAuthCode.md)| |

### Return type

Expand Down
10 changes: 10 additions & 0 deletions docs/GroupJoinRequestAction.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# GroupJoinRequestAction


## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


2 changes: 1 addition & 1 deletion docs/GroupLimitedMember.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Name | Type | Description | Notes
**role_ids** | **list[str]** | | [optional]
**m_role_ids** | **list[str]** | | [optional]
**joined_at** | **datetime** | | [optional]
**membership_status** | **str** | | [optional]
**membership_status** | [**GroupMemberStatus**](GroupMemberStatus.md) | | [optional]
**visibility** | **str** | | [optional]
**is_subscribed_to_announcements** | **bool** | | [optional] [default to False]
**created_at** | **datetime** | Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user. | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/GroupMember.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Name | Type | Description | Notes
**role_ids** | **list[str]** | | [optional]
**m_role_ids** | **list[str]** | | [optional]
**joined_at** | **datetime** | | [optional]
**membership_status** | **str** | | [optional]
**membership_status** | [**GroupMemberStatus**](GroupMemberStatus.md) | | [optional]
**visibility** | **str** | | [optional]
**is_subscribed_to_announcements** | **bool** | | [optional] [default to False]
**created_at** | **datetime** | Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user. | [optional]
Expand Down
Loading

0 comments on commit c1b4560

Please sign in to comment.