Skip to content

Commit 055c9bd

Browse files
committed
Upgrade Python SDK to spec 1.16.4
1 parent 7dae883 commit 055c9bd

File tree

154 files changed

+675
-375
lines changed

Some content is hidden

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

154 files changed

+675
-375
lines changed

.openapi-generator/FILES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ docs/GroupPermission.md
5858
docs/GroupPrivacy.md
5959
docs/GroupRole.md
6060
docs/GroupRoleTemplate.md
61+
docs/GroupSearchSort.md
6162
docs/GroupUserVisibility.md
6263
docs/GroupsApi.md
6364
docs/InfoPush.md
@@ -217,6 +218,7 @@ vrchatapi/models/group_permission.py
217218
vrchatapi/models/group_privacy.py
218219
vrchatapi/models/group_role.py
219220
vrchatapi/models/group_role_template.py
221+
vrchatapi/models/group_search_sort.py
220222
vrchatapi/models/group_user_visibility.py
221223
vrchatapi/models/info_push.py
222224
vrchatapi/models/info_push_data.py

docs/GroupMember.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,16 @@ Name | Type | Description | Notes
1010
**is_representing** | **bool** | Whether the user is representing the group. This makes the group show up above the name tag in-game. | [optional] [default to False]
1111
**user** | [**GroupMemberLimitedUser**](GroupMemberLimitedUser.md) | | [optional]
1212
**role_ids** | **list[str]** | | [optional]
13+
**m_role_ids** | **list[str]** | | [optional]
1314
**joined_at** | **datetime** | | [optional]
1415
**membership_status** | **str** | | [optional]
1516
**visibility** | **str** | | [optional]
1617
**is_subscribed_to_announcements** | **bool** | | [optional] [default to False]
1718
**created_at** | **datetime** | Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user. | [optional]
1819
**banned_at** | **datetime** | Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user. | [optional]
1920
**manager_notes** | **str** | Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user. | [optional]
21+
**last_post_read_at** | **datetime** | | [optional]
22+
**has_joined_from_purchase** | **bool** | | [optional]
2023

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

docs/GroupMemberLimitedUser.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ Name | Type | Description | Notes
99
**display_name** | **str** | | [optional]
1010
**thumbnail_url** | **str** | | [optional]
1111
**icon_url** | **str** | | [optional]
12+
**profile_pic_override** | **str** | | [optional]
13+
**current_avatar_thumbnail_image_url** | **str** | | [optional]
14+
**current_avatar_tags** | **list[str]** | | [optional]
1215

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

docs/GroupSearchSort.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# GroupSearchSort
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/GroupsApi.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1745,7 +1745,7 @@ Name | Type | Description | Notes
17451745
[[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)
17461746

17471747
# **get_group_members**
1748-
> list[GroupMember] get_group_members(group_id, n=n, offset=offset)
1748+
> list[GroupMember] get_group_members(group_id, n=n, offset=offset, sort=sort)
17491749
17501750
List Group Members
17511751

@@ -1784,10 +1784,11 @@ with vrchatapi.ApiClient(configuration) as api_client:
17841784
group_id = 'grp_00000000-0000-0000-0000-000000000000' # str | Must be a valid group ID.
17851785
n = 60 # int | The number of objects to return. (optional) (default to 60)
17861786
offset = 56 # int | A zero-based offset from the default object sorting from where search results start. (optional)
1787+
sort = vrchatapi.GroupSearchSort() # GroupSearchSort | The sort order of Group Member results (optional)
17871788

17881789
try:
17891790
# List Group Members
1790-
api_response = api_instance.get_group_members(group_id, n=n, offset=offset)
1791+
api_response = api_instance.get_group_members(group_id, n=n, offset=offset, sort=sort)
17911792
pprint(api_response)
17921793
except ApiException as e:
17931794
print("Exception when calling GroupsApi->get_group_members: %s\n" % e)
@@ -1800,6 +1801,7 @@ Name | Type | Description | Notes
18001801
**group_id** | **str**| Must be a valid group ID. |
18011802
**n** | **int**| The number of objects to return. | [optional] [default to 60]
18021803
**offset** | **int**| A zero-based offset from the default object sorting from where search results start. | [optional]
1804+
**sort** | [**GroupSearchSort**](.md)| The sort order of Group Member results | [optional]
18031805

18041806
### Return type
18051807

docs/LimitedUser.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**bio** | **str** | | [optional]
9-
**current_avatar_image_url** | **str** | When profilePicOverride is not empty, use it instead. |
10-
**current_avatar_thumbnail_image_url** | **str** | When profilePicOverride is not empty, use it instead. |
9+
**current_avatar_image_url** | **str** | When profilePicOverride is not empty, use it instead. | [optional]
10+
**current_avatar_thumbnail_image_url** | **str** | When profilePicOverride is not empty, use it instead. | [optional]
1111
**developer_type** | [**DeveloperType**](DeveloperType.md) | |
1212
**display_name** | **str** | |
1313
**fallback_avatar** | **str** | | [optional]
1414
**id** | **str** | A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed. |
1515
**is_friend** | **bool** | |
1616
**last_platform** | **str** | This can be `standalonewindows` or `android`, but can also pretty much be any random Unity verison such as `2019.2.4-801-Release` or `2019.2.2-772-Release` or even `unknownplatform`. |
17-
**profile_pic_override** | **str** | |
17+
**profile_pic_override** | **str** | | [optional]
1818
**status** | [**UserStatus**](UserStatus.md) | |
1919
**status_description** | **str** | |
2020
**tags** | **list[str]** | <- Always empty. |
21-
**user_icon** | **str** | |
21+
**user_icon** | **str** | | [optional]
2222
**username** | **str** | -| **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429). | [optional]
2323
**location** | **str** | | [optional]
2424
**friend_key** | **str** | | [optional]

0 commit comments

Comments
 (0)