Skip to content

Commit 4653a5c

Browse files
committed
Upgrade Python SDK to spec 1.7.7
1 parent 94f2583 commit 4653a5c

File tree

125 files changed

+141
-141
lines changed

Some content is hidden

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

125 files changed

+141
-141
lines changed

docs/NotificationsApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ configuration.api_key['authCookie'] = 'YOUR_API_KEY'
315315
with vrchatapi.ApiClient(configuration) as api_client:
316316
# Create an instance of the API class
317317
api_instance = notifications_api.NotificationsApi(api_client)
318-
type = "all" # str | Only send notifications of this type (can use `all` for all). (optional)
318+
type = "all" # str | Only send notifications of this type (can use `all` for all). This parameter no longer does anything, and is deprecated. (optional)
319319
sent = True # bool | Return notifications sent by the user. Must be false or omitted. (optional)
320320
hidden = True # bool | Whether to return hidden or non-hidden notifications. True only allowed on type `friendRequest`. (optional)
321321
after = "five_minutes_ago" # str | Only return notifications sent after this Date. Ignored if type is `friendRequest`. (optional)
@@ -337,7 +337,7 @@ with vrchatapi.ApiClient(configuration) as api_client:
337337

338338
Name | Type | Description | Notes
339339
------------- | ------------- | ------------- | -------------
340-
**type** | **str**| Only send notifications of this type (can use `all` for all). | [optional]
340+
**type** | **str**| Only send notifications of this type (can use `all` for all). This parameter no longer does anything, and is deprecated. | [optional]
341341
**sent** | **bool**| Return notifications sent by the user. Must be false or omitted. | [optional]
342342
**hidden** | **bool**| Whether to return hidden or non-hidden notifications. True only allowed on type `friendRequest`. | [optional]
343343
**after** | **str**| Only return notifications sent after this Date. Ignored if type is `friendRequest`. | [optional]

docs/World.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ Name | Type | Description | Notes
2727
**version** | **int** | | defaults to 0
2828
**visits** | **int** | | defaults to 0
2929
**favorites** | **int** | | [optional] if omitted the server will use the default value of 0
30-
**instances** | **[[bool, date, datetime, dict, float, int, list, str, none_type]]** | | [optional]
31-
**occupants** | **int** | | [optional] if omitted the server will use the default value of 0
30+
**instances** | **[[bool, date, datetime, dict, float, int, list, str, none_type]]** | Will always be an empty list when unauthenticated. | [optional]
31+
**occupants** | **int** | Will always be `0` when unauthenticated. | [optional] if omitted the server will use the default value of 0
3232
**preview_youtube_id** | **str, none_type** | | [optional]
33-
**private_occupants** | **int** | | [optional] if omitted the server will use the default value of 0
34-
**public_occupants** | **int** | | [optional] if omitted the server will use the default value of 0
33+
**private_occupants** | **int** | Will always be `0` when unauthenticated. | [optional] if omitted the server will use the default value of 0
34+
**public_occupants** | **int** | Will always be `0` when unauthenticated. | [optional] if omitted the server will use the default value of 0
3535
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
3636

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

docs/WorldsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ Name | Type | Description | Notes
535535
536536
Get World by ID
537537

538-
Get information about a specific World.
538+
Get information about a specific World. Works unauthenticated but when so will always return `0` for certain fields.
539539

540540
### Example
541541

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
6565
Join the [Discord server](https://discord.gg/Ge2APMhPfD) to get in touch with us.
6666
67-
The version of the OpenAPI document: 1.7.6
67+
The version of the OpenAPI document: 1.7.7
6868
Contact: me@ariesclark.com
6969
Generated by: https://openapi-generator.tech
7070
"""
@@ -73,7 +73,7 @@
7373
from setuptools import setup, find_packages # noqa: H301
7474

7575
NAME = "vrchatapi"
76-
VERSION = "1.7.6"
76+
VERSION = "1.7.7"
7777
# To install the library, run the following
7878
#
7979
# python setup.py install

vrchatapi/__init__.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.7.6
7+
The version of the OpenAPI document: 1.7.7
88
Contact: me@ariesclark.com
99
Generated by: https://openapi-generator.tech
1010
"""

vrchatapi/api/authentication_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
VRChat API Documentation
33
44
5-
The version of the OpenAPI document: 1.7.6
5+
The version of the OpenAPI document: 1.7.7
66
Contact: me@ariesclark.com
77
Generated by: https://openapi-generator.tech
88
"""

vrchatapi/api/avatars_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
VRChat API Documentation
33
44
5-
The version of the OpenAPI document: 1.7.6
5+
The version of the OpenAPI document: 1.7.7
66
Contact: me@ariesclark.com
77
Generated by: https://openapi-generator.tech
88
"""

vrchatapi/api/economy_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
VRChat API Documentation
33
44
5-
The version of the OpenAPI document: 1.7.6
5+
The version of the OpenAPI document: 1.7.7
66
Contact: me@ariesclark.com
77
Generated by: https://openapi-generator.tech
88
"""

vrchatapi/api/favorites_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
VRChat API Documentation
33
44
5-
The version of the OpenAPI document: 1.7.6
5+
The version of the OpenAPI document: 1.7.7
66
Contact: me@ariesclark.com
77
Generated by: https://openapi-generator.tech
88
"""

vrchatapi/api/files_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
VRChat API Documentation
33
44
5-
The version of the OpenAPI document: 1.7.6
5+
The version of the OpenAPI document: 1.7.7
66
Contact: me@ariesclark.com
77
Generated by: https://openapi-generator.tech
88
"""

0 commit comments

Comments
 (0)