Skip to content

Commit 8f41275

Browse files
committed
Upgrade Python SDK to spec 1.21.1.dev48
1 parent 7230684 commit 8f41275

415 files changed

Lines changed: 424 additions & 414 deletions

File tree

Some content is hidden

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

‎docs/AuthenticationApi.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,7 @@ Name | Type | Description | Notes
317317
| Status code | Description | Response headers |
318318
|-------------|-------------|------------------|
319319
**200** | Returns a single AvatarModerationCreated object | - |
320+
**400** | The request failed validation. VRChat validates the request before it looks up the resource, so this response is returned even when the ID in the path does not exist. The message names the offending field or parameter. | - |
320321
**401** | Error response due to missing auth cookie. | - |
321322

322323
[[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)

‎docs/AvatarsApi.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -879,6 +879,7 @@ Name | Type | Description | Notes
879879
| Status code | Description | Response headers |
880880
|-------------|-------------|------------------|
881881
**200** | Returns a list of Avatar objects. | - |
882+
**400** | The request failed validation. VRChat validates the request before it looks up the resource, so this response is returned even when the ID in the path does not exist. The message names the offending field or parameter. | - |
882883
**401** | Error response due to missing auth cookie. | - |
883884

884885
[[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)

‎docs/EconomyApi.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1860,6 +1860,7 @@ Name | Type | Description | Notes
18601860
| Status code | Description | Response headers |
18611861
|-------------|-------------|------------------|
18621862
**200** | Returns a list of ProductPurchase objects. | - |
1863+
**400** | The request failed validation. VRChat validates the request before it looks up the resource, so this response is returned even when the ID in the path does not exist. The message names the offending field or parameter. | - |
18631864
**401** | Error response due to missing auth cookie. | - |
18641865

18651866
[[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)

‎docs/WorldsApi.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1381,6 +1381,7 @@ Name | Type | Description | Notes
13811381
| Status code | Description | Response headers |
13821382
|-------------|-------------|------------------|
13831383
**200** | Returns a list of LimitedWorld objects. | - |
1384+
**400** | The request failed validation. VRChat validates the request before it looks up the resource, so this response is returned even when the ID in the path does not exist. The message names the offending field or parameter. | - |
13841385
**401** | Error response due to missing auth cookie. | - |
13851386

13861387
[[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)

‎setup.py‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
8484
Join the [Discord server](https://discord.gg/Ge2APMhPfD) to get in touch with us.
8585
86-
The version of the OpenAPI document: 1.21.1-nightly.44
86+
The version of the OpenAPI document: 1.21.1-nightly.48
8787
Contact: vrchatapi.lpv0t@aries.fyi
8888
Generated by: https://openapi-generator.tech
8989
"""
@@ -92,7 +92,7 @@
9292
from setuptools import setup, find_packages # noqa: H301
9393

9494
NAME = "vrchatapi"
95-
VERSION = "1.21.1.dev44"
95+
VERSION = "1.21.1.dev48"
9696
# To install the library, run the following
9797
#
9898
# 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.21.1-nightly.44
9+
The version of the OpenAPI document: 1.21.1-nightly.48
1010
Contact: vrchatapi.lpv0t@aries.fyi
1111
Generated by: https://openapi-generator.tech
1212
"""

‎vrchatapi/api/authentication_api.py‎

Lines changed: 2 additions & 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.21.1-nightly.44
7+
The version of the OpenAPI document: 1.21.1-nightly.48
88
Contact: vrchatapi.lpv0t@aries.fyi
99
Generated by: https://openapi-generator.tech
1010
"""
@@ -588,6 +588,7 @@ def create_global_avatar_moderation_with_http_info(self, create_avatar_moderatio
588588

589589
response_types_map = {
590590
200: "AvatarModerationCreated",
591+
400: "Error",
591592
401: "Error",
592593
}
593594

‎vrchatapi/api/avatars_api.py‎

Lines changed: 2 additions & 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.21.1-nightly.44
7+
The version of the OpenAPI document: 1.21.1-nightly.48
88
Contact: vrchatapi.lpv0t@aries.fyi
99
Generated by: https://openapi-generator.tech
1010
"""
@@ -1724,6 +1724,7 @@ def search_avatars_with_http_info(self, **kwargs): # noqa: E501
17241724

17251725
response_types_map = {
17261726
200: "list[Avatar]",
1727+
400: "Error",
17271728
401: "Error",
17281729
}
17291730

‎vrchatapi/api/calendar_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.21.1-nightly.44
7+
The version of the OpenAPI document: 1.21.1-nightly.48
88
Contact: vrchatapi.lpv0t@aries.fyi
99
Generated by: https://openapi-generator.tech
1010
"""

‎vrchatapi/api/economy_api.py‎

Lines changed: 2 additions & 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.21.1-nightly.44
7+
The version of the OpenAPI document: 1.21.1-nightly.48
88
Contact: vrchatapi.lpv0t@aries.fyi
99
Generated by: https://openapi-generator.tech
1010
"""
@@ -3512,6 +3512,7 @@ def get_product_purchases_with_http_info(self, **kwargs): # noqa: E501
35123512

35133513
response_types_map = {
35143514
200: "list[ProductPurchase]",
3515+
400: "Error",
35153516
401: "Error",
35163517
}
35173518

0 commit comments

Comments
 (0)