Skip to content

Commit b0746de

Browse files
committed
Upgrade Python SDK to spec 1.11.1
1 parent 1df6163 commit b0746de

File tree

144 files changed

+154
-154
lines changed

Some content is hidden

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

144 files changed

+154
-154
lines changed

docs/GroupsApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3375,11 +3375,11 @@ Name | Type | Description | Notes
33753375
[[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)
33763376

33773377
# **join_group**
3378-
> Group join_group(group_id)
3378+
> GroupMember join_group(group_id)
33793379
33803380
Join Group
33813381

3382-
Join a Group by ID and returns the joined Group.
3382+
Join a Group by ID and returns the member object.
33833383

33843384
### Example
33853385

@@ -3479,7 +3479,7 @@ Name | Type | Description | Notes
34793479

34803480
### Return type
34813481

3482-
[**Group**](Group.md)
3482+
[**GroupMember**](GroupMember.md)
34833483

34843484
### Authorization
34853485

@@ -3493,7 +3493,7 @@ Name | Type | Description | Notes
34933493
### HTTP response details
34943494
| Status code | Description | Response headers |
34953495
|-------------|-------------|------------------|
3496-
**200** | Returns a single Group object. | - |
3496+
**200** | Returns a list of GroupMember objects. | - |
34973497
**400** | Error response when trying to join a group that the user is already a member of. | - |
34983498
**401** | Error response due to missing apiKey or auth cookie. | - |
34993499
**404** | Error response when trying to perform operations on a non-existing group. | - |

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
7777
Join the [Discord server](https://discord.gg/Ge2APMhPfD) to get in touch with us.
7878
79-
The version of the OpenAPI document: 1.11.0
79+
The version of the OpenAPI document: 1.11.1
8080
Contact: me@ariesclark.com
8181
Generated by: https://openapi-generator.tech
8282
"""
@@ -85,7 +85,7 @@
8585
from setuptools import setup, find_packages # noqa: H301
8686

8787
NAME = "vrchatapi"
88-
VERSION = "1.11.0"
88+
VERSION = "1.11.1"
8989
# To install the library, run the following
9090
#
9191
# python setup.py install

vrchatapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
VRChat API Documentation
77
88
9-
The version of the OpenAPI document: 1.11.0
9+
The version of the OpenAPI document: 1.11.1
1010
Contact: me@ariesclark.com
1111
Generated by: https://openapi-generator.tech
1212
"""

vrchatapi/api/authentication_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
VRChat API Documentation
55
66
7-
The version of the OpenAPI document: 1.11.0
7+
The version of the OpenAPI document: 1.11.1
88
Contact: me@ariesclark.com
99
Generated by: https://openapi-generator.tech
1010
"""

vrchatapi/api/avatars_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
VRChat API Documentation
55
66
7-
The version of the OpenAPI document: 1.11.0
7+
The version of the OpenAPI document: 1.11.1
88
Contact: me@ariesclark.com
99
Generated by: https://openapi-generator.tech
1010
"""

vrchatapi/api/economy_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
VRChat API Documentation
55
66
7-
The version of the OpenAPI document: 1.11.0
7+
The version of the OpenAPI document: 1.11.1
88
Contact: me@ariesclark.com
99
Generated by: https://openapi-generator.tech
1010
"""

vrchatapi/api/favorites_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
VRChat API Documentation
55
66
7-
The version of the OpenAPI document: 1.11.0
7+
The version of the OpenAPI document: 1.11.1
88
Contact: me@ariesclark.com
99
Generated by: https://openapi-generator.tech
1010
"""

vrchatapi/api/files_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
VRChat API Documentation
55
66
7-
The version of the OpenAPI document: 1.11.0
7+
The version of the OpenAPI document: 1.11.1
88
Contact: me@ariesclark.com
99
Generated by: https://openapi-generator.tech
1010
"""

vrchatapi/api/friends_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
VRChat API Documentation
55
66
7-
The version of the OpenAPI document: 1.11.0
7+
The version of the OpenAPI document: 1.11.1
88
Contact: me@ariesclark.com
99
Generated by: https://openapi-generator.tech
1010
"""

vrchatapi/api/groups_api.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
VRChat API Documentation
55
66
7-
The version of the OpenAPI document: 1.11.0
7+
The version of the OpenAPI document: 1.11.1
88
Contact: me@ariesclark.com
99
Generated by: https://openapi-generator.tech
1010
"""
@@ -4011,7 +4011,7 @@ def get_group_roles_with_http_info(self, group_id, **kwargs): # noqa: E501
40114011
def join_group(self, group_id, **kwargs): # noqa: E501
40124012
"""Join Group # noqa: E501
40134013
4014-
Join a Group by ID and returns the joined Group. # noqa: E501
4014+
Join a Group by ID and returns the member object. # noqa: E501
40154015
This method makes a synchronous HTTP request by default. To make an
40164016
asynchronous HTTP request, please pass async_req=True
40174017
@@ -4033,15 +4033,15 @@ def join_group(self, group_id, **kwargs): # noqa: E501
40334033
:return: Returns the result object.
40344034
If the method is called asynchronously,
40354035
returns the request thread.
4036-
:rtype: Group
4036+
:rtype: GroupMember
40374037
"""
40384038
kwargs['_return_http_data_only'] = True
40394039
return self.join_group_with_http_info(group_id, **kwargs) # noqa: E501
40404040

40414041
def join_group_with_http_info(self, group_id, **kwargs): # noqa: E501
40424042
"""Join Group # noqa: E501
40434043
4044-
Join a Group by ID and returns the joined Group. # noqa: E501
4044+
Join a Group by ID and returns the member object. # noqa: E501
40454045
This method makes a synchronous HTTP request by default. To make an
40464046
asynchronous HTTP request, please pass async_req=True
40474047
@@ -4071,7 +4071,7 @@ def join_group_with_http_info(self, group_id, **kwargs): # noqa: E501
40714071
:return: Returns the result object.
40724072
If the method is called asynchronously,
40734073
returns the request thread.
4074-
:rtype: tuple(Group, status_code(int), headers(HTTPHeaderDict))
4074+
:rtype: tuple(GroupMember, status_code(int), headers(HTTPHeaderDict))
40754075
"""
40764076

40774077
local_var_params = locals()
@@ -4127,7 +4127,7 @@ def join_group_with_http_info(self, group_id, **kwargs): # noqa: E501
41274127
auth_settings = ['apiKeyCookie', 'authCookie'] # noqa: E501
41284128

41294129
response_types_map = {
4130-
200: "Group",
4130+
200: "GroupMember",
41314131
400: "Error",
41324132
401: "Error",
41334133
404: "Error",

0 commit comments

Comments
 (0)