Skip to content

Commit 92364a5

Browse files
committed
Upgrade Python SDK to spec 1.20.8.dev7
1 parent 0e4790f commit 92364a5

File tree

4 files changed

+74
-74
lines changed

4 files changed

+74
-74
lines changed

package-lock.json

Lines changed: 69 additions & 69 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"dependencies": {
3-
"@openapitools/openapi-generator-cli": "^2.27.0"
3+
"@openapitools/openapi-generator-cli": "^2.28.2"
44
}
55
}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
from setuptools import setup, find_packages # noqa: H301
9393

9494
NAME = "vrchatapi"
95-
VERSION = "1.20.8.dev4"
95+
VERSION = "1.20.8.dev7"
9696
# To install the library, run the following
9797
#
9898
# python setup.py install

vrchatapi/models/age_verification_status.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ class AgeVerificationStatus(object):
3131
"""
3232
allowed enum values
3333
"""
34-
hidden = "18+"
35-
plus18 = "hidden"
34+
plus18 = "18+"
35+
hidden = "hidden"
3636
verified = "verified"
3737

38-
allowable_values = [hidden, plus18, verified] # noqa: E501
38+
allowable_values = [plus18, hidden, verified] # noqa: E501
3939

4040
"""
4141
Attributes:

0 commit comments

Comments
 (0)