diff --git a/docs/CreateAvatarRequest.md b/docs/CreateAvatarRequest.md index bdbb34c6..fd13fa65 100644 --- a/docs/CreateAvatarRequest.md +++ b/docs/CreateAvatarRequest.md @@ -11,7 +11,7 @@ Name | Type | Description | Notes **tags** | **list[str]** | | [optional] **image_url** | **str** | | **release_status** | [**ReleaseStatus**](ReleaseStatus.md) | | [optional] -**version** | **float** | | [optional] [default to 1] +**version** | **int** | | [optional] [default to 1] **unity_package_url** | **str** | | [optional] **unity_version** | **str** | | [optional] [default to '5.3.4p1'] diff --git a/docs/CreateFileVersionRequest.md b/docs/CreateFileVersionRequest.md index ecd8d416..3ad87dc1 100644 --- a/docs/CreateFileVersionRequest.md +++ b/docs/CreateFileVersionRequest.md @@ -5,9 +5,9 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **signature_md5** | **str** | | -**signature_size_in_bytes** | **float** | | +**signature_size_in_bytes** | **int** | | **file_md5** | **str** | | [optional] -**file_size_in_bytes** | **float** | | [optional] +**file_size_in_bytes** | **int** | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/docs/CurrentUser.md b/docs/CurrentUser.md index 24f7b1af..94865c2c 100644 --- a/docs/CurrentUser.md +++ b/docs/CurrentUser.md @@ -55,6 +55,8 @@ Name | Type | Description | Notes **profile_pic_override** | **str** | | **profile_pic_override_thumbnail** | **str** | | **pronouns** | **str** | | +**queued_instance** | **str** | | [optional] +**receive_mobile_invitations** | **bool** | | [optional] **state** | [**UserState**](UserState.md) | | **status** | [**UserStatus**](UserStatus.md) | | **status_description** | **str** | | diff --git a/docs/CurrentUserPresence.md b/docs/CurrentUserPresence.md index d54d9292..255f7f68 100644 --- a/docs/CurrentUserPresence.md +++ b/docs/CurrentUserPresence.md @@ -5,6 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **avatar_thumbnail** | **str** | | [optional] +**current_avatar_tags** | **str** | | [optional] **display_name** | **str** | | [optional] **groups** | **list[str]** | | [optional] **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. | [optional] @@ -16,6 +17,7 @@ Name | Type | Description | Notes **status** | **str** | either a UserStatus or empty string | [optional] **traveling_to_instance** | **str** | | [optional] **traveling_to_world** | **str** | WorldID be \"offline\" on User profiles if you are not friends with that user. | [optional] +**user_icon** | **str** | | [optional] **world** | **str** | WorldID be \"offline\" on User profiles if you are not friends with that user. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/docs/FileVersionUploadStatus.md b/docs/FileVersionUploadStatus.md index d3c4bdf3..9a74e8e5 100644 --- a/docs/FileVersionUploadStatus.md +++ b/docs/FileVersionUploadStatus.md @@ -7,8 +7,8 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **upload_id** | **str** | | **file_name** | **str** | | -**next_part_number** | **float** | | -**max_parts** | **float** | | +**next_part_number** | **int** | | +**max_parts** | **int** | | **parts** | **list[object]** | | **etags** | **list[object]** | Unknown | diff --git a/docs/GroupsApi.md b/docs/GroupsApi.md index dafe40c8..6418b63c 100644 --- a/docs/GroupsApi.md +++ b/docs/GroupsApi.md @@ -1987,7 +1987,7 @@ Name | Type | Description | Notes [[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) # **get_group_members** -> list[GroupMember] get_group_members(group_id, n=n, offset=offset, sort=sort) +> list[GroupMember] get_group_members(group_id, n=n, offset=offset, sort=sort, role_id=role_id) List Group Members @@ -2027,10 +2027,11 @@ with vrchatapi.ApiClient(configuration) as api_client: n = 60 # int | The number of objects to return. (optional) (default to 60) offset = 56 # int | A zero-based offset from the default object sorting from where search results start. (optional) sort = vrchatapi.GroupSearchSort() # GroupSearchSort | The sort order of Group Member results (optional) +role_id = 'role_id_example' # str | Only returns members with a specific groupRoleId (optional) try: # List Group Members - api_response = api_instance.get_group_members(group_id, n=n, offset=offset, sort=sort) + api_response = api_instance.get_group_members(group_id, n=n, offset=offset, sort=sort, role_id=role_id) pprint(api_response) except ApiException as e: print("Exception when calling GroupsApi->get_group_members: %s\n" % e) @@ -2044,6 +2045,7 @@ Name | Type | Description | Notes **n** | **int**| The number of objects to return. | [optional] [default to 60] **offset** | **int**| A zero-based offset from the default object sorting from where search results start. | [optional] **sort** | [**GroupSearchSort**](.md)| The sort order of Group Member results | [optional] + **role_id** | **str**| Only returns members with a specific groupRoleId | [optional] ### Return type diff --git a/docs/Subscription.md b/docs/Subscription.md index f6fb374e..c49839b0 100644 --- a/docs/Subscription.md +++ b/docs/Subscription.md @@ -14,7 +14,7 @@ Name | Type | Description | Notes **amount** | **float** | | **description** | **str** | | **period** | [**SubscriptionPeriod**](SubscriptionPeriod.md) | | -**tier** | **float** | | +**tier** | **int** | | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/docs/TransactionAgreement.md b/docs/TransactionAgreement.md index 79e18604..3e952af7 100644 --- a/docs/TransactionAgreement.md +++ b/docs/TransactionAgreement.md @@ -6,11 +6,11 @@ Represents a single Transaction, which is likely between VRChat and Steam. Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **agreement_id** | **str** | | -**item_id** | **float** | | +**item_id** | **int** | | **agreement** | **str** | | **status** | **str** | This is NOT TransactionStatus, but whatever Steam return. | **period** | **str** | | -**frequency** | **float** | | +**frequency** | **int** | | **billing_type** | **str** | | **start_date** | **str** | | **end_date** | **str** | | @@ -21,8 +21,8 @@ Name | Type | Description | Notes **last_payment** | **str** | | **last_amount** | **float** | | **last_amount_vat** | **float** | | -**outstanding** | **float** | | -**failed_attempts** | **float** | | +**outstanding** | **int** | | +**failed_attempts** | **int** | | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/docs/UnityPackage.md b/docs/UnityPackage.md index afcf0758..bbb74a70 100644 --- a/docs/UnityPackage.md +++ b/docs/UnityPackage.md @@ -10,6 +10,7 @@ Name | Type | Description | Notes **asset_url_object** | **object** | | [optional] **asset_version** | **int** | | **created_at** | **datetime** | | [optional] +**impostorizer_version** | **str** | | [optional] **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`. | **plugin_url** | **str** | | [optional] **plugin_url_object** | **object** | | [optional] diff --git a/docs/UpdateAvatarRequest.md b/docs/UpdateAvatarRequest.md index b5008386..7b0b5b5b 100644 --- a/docs/UpdateAvatarRequest.md +++ b/docs/UpdateAvatarRequest.md @@ -11,7 +11,7 @@ Name | Type | Description | Notes **tags** | **list[str]** | | [optional] **image_url** | **str** | | [optional] **release_status** | [**ReleaseStatus**](ReleaseStatus.md) | | [optional] -**version** | **float** | | [optional] [default to 1] +**version** | **int** | | [optional] [default to 1] **unity_package_url** | **str** | | [optional] **unity_version** | **str** | | [optional] [default to '5.3.4p1'] diff --git a/docs/UpdateUserRequest.md b/docs/UpdateUserRequest.md index 48cca608..680ded9a 100644 --- a/docs/UpdateUserRequest.md +++ b/docs/UpdateUserRequest.md @@ -6,7 +6,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **email** | **str** | | [optional] **birthday** | **date** | | [optional] -**accepted_tos_version** | **float** | | [optional] +**accepted_tos_version** | **int** | | [optional] **tags** | **list[str]** | | [optional] **status** | [**UserStatus**](UserStatus.md) | | [optional] **status_description** | **str** | | [optional] diff --git a/docs/User.md b/docs/User.md index 3249ee7a..d1bf3169 100644 --- a/docs/User.md +++ b/docs/User.md @@ -21,10 +21,11 @@ Name | Type | Description | Notes **is_friend** | **bool** | Either their `friendKey`, or empty string if you are not friends. Unknown usage. | **last_activity** | **str** | Either a date-time or empty string. | **last_login** | **str** | Either a date-time or empty string. | +**last_mobile** | **str** | | [optional] **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`. | **location** | **str** | WorldID be \"offline\" on User profiles if you are not friends with that user. | [optional] **note** | **str** | | [optional] -**platform** | **str** | | +**platform** | **str** | | [optional] **profile_pic_override** | **str** | | **profile_pic_override_thumbnail** | **str** | | **pronouns** | **str** | | diff --git a/docs/UserSubscription.md b/docs/UserSubscription.md index 3474550a..3d3ddf79 100644 --- a/docs/UserSubscription.md +++ b/docs/UserSubscription.md @@ -12,7 +12,7 @@ Name | Type | Description | Notes **amount** | **float** | | **description** | **str** | | **period** | [**SubscriptionPeriod**](SubscriptionPeriod.md) | | -**tier** | **float** | | +**tier** | **int** | | **active** | **bool** | | [default to True] **status** | [**TransactionStatus**](TransactionStatus.md) | | **starts** | **str** | | [optional] diff --git a/package-lock.json b/package-lock.json index 9abfd703..27ac41ff 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5,7 +5,7 @@ "packages": { "": { "dependencies": { - "@openapitools/openapi-generator-cli": "^2.13.5" + "@openapitools/openapi-generator-cli": "^2.13.9" } }, "node_modules/@lukeed/csprng": { @@ -17,9 +17,9 @@ } }, "node_modules/@nestjs/axios": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@nestjs/axios/-/axios-3.0.2.tgz", - "integrity": "sha512-Z6GuOUdNQjP7FX+OuV2Ybyamse+/e0BFdTWBX5JxpBDKA+YkdLynDgG6HTF04zy6e9zPa19UX0WA2VDoehwhXQ==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@nestjs/axios/-/axios-3.0.3.tgz", + "integrity": "sha512-h6TCn3yJwD6OKqqqfmtRS5Zo4E46Ip2n+gK1sqwzNBC+qxQ9xpCu+ODVRFur6V3alHSCSBxb3nNtt73VEdluyA==", "peerDependencies": { "@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0", "axios": "^1.3.1", @@ -27,12 +27,12 @@ } }, "node_modules/@nestjs/common": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/@nestjs/common/-/common-10.3.0.tgz", - "integrity": "sha512-DGv34UHsZBxCM3H5QGE2XE/+oLJzz5+714JQjBhjD9VccFlQs3LRxo/epso4l7nJIiNlZkPyIUC8WzfU/5RTsQ==", + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/@nestjs/common/-/common-10.4.3.tgz", + "integrity": "sha512-4hbLd3XIJubHSylYd/1WSi4VQvG68KM/ECYpMDqA3k3J1/T17SAg40sDoq3ZoO5OZgU0xuNyjuISdOTjs11qVg==", "dependencies": { "iterare": "1.2.1", - "tslib": "2.6.2", + "tslib": "2.7.0", "uid": "2.0.2" }, "funding": { @@ -42,7 +42,7 @@ "peerDependencies": { "class-transformer": "*", "class-validator": "*", - "reflect-metadata": "^0.1.12", + "reflect-metadata": "^0.1.12 || ^0.2.0", "rxjs": "^7.1.0" }, "peerDependenciesMeta": { @@ -54,17 +54,22 @@ } } }, + "node_modules/@nestjs/common/node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" + }, "node_modules/@nestjs/core": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/@nestjs/core/-/core-10.3.0.tgz", - "integrity": "sha512-N06P5ncknW/Pm8bj964WvLIZn2gNhHliCBoAO1LeBvNImYkecqKcrmLbY49Fa1rmMfEM3MuBHeDys3edeuYAOA==", + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/@nestjs/core/-/core-10.4.3.tgz", + "integrity": "sha512-6OQz+5C8mT8yRtfvE5pPCq+p6w5jDot+oQku1KzQ24ABn+lay1KGuJwcKZhdVNuselx+8xhdMxknZTA8wrGLIg==", "hasInstallScript": true, "dependencies": { "@nuxtjs/opencollective": "0.3.2", "fast-safe-stringify": "2.1.1", "iterare": "1.2.1", - "path-to-regexp": "3.2.0", - "tslib": "2.6.2", + "path-to-regexp": "3.3.0", + "tslib": "2.7.0", "uid": "2.0.2" }, "funding": { @@ -76,7 +81,7 @@ "@nestjs/microservices": "^10.0.0", "@nestjs/platform-express": "^10.0.0", "@nestjs/websockets": "^10.0.0", - "reflect-metadata": "^0.1.12", + "reflect-metadata": "^0.1.12 || ^0.2.0", "rxjs": "^7.1.0" }, "peerDependenciesMeta": { @@ -91,6 +96,11 @@ } } }, + "node_modules/@nestjs/core/node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" + }, "node_modules/@nuxtjs/opencollective": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/@nuxtjs/opencollective/-/opencollective-0.3.2.tgz", @@ -109,14 +119,14 @@ } }, "node_modules/@openapitools/openapi-generator-cli": { - "version": "2.13.5", - "resolved": "https://registry.npmjs.org/@openapitools/openapi-generator-cli/-/openapi-generator-cli-2.13.5.tgz", - "integrity": "sha512-9VgeKOTiiatKSwZDKKB3C86cW8tN9eDcFohotD4eisdK38UQswk/4Ysoq9KChRCbymjoMp6AIDHPtK1DQ2fTgw==", + "version": "2.13.9", + "resolved": "https://registry.npmjs.org/@openapitools/openapi-generator-cli/-/openapi-generator-cli-2.13.9.tgz", + "integrity": "sha512-GJaWGcHmLsvj/G1mRDytm9PTDwRGSYUDTf1uA/2FYxQAb5sq4nkZz1tD4Z7qDlZ3xTYSTw4Z8BQUdlsnrA8rcw==", "hasInstallScript": true, "dependencies": { - "@nestjs/axios": "3.0.2", - "@nestjs/common": "10.3.0", - "@nestjs/core": "10.3.0", + "@nestjs/axios": "3.0.3", + "@nestjs/common": "10.4.3", + "@nestjs/core": "10.4.3", "@nuxtjs/opencollective": "0.3.2", "axios": "1.7.4", "chalk": "4.1.2", @@ -558,9 +568,9 @@ } }, "node_modules/follow-redirects": { - "version": "1.15.6", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", - "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", "funding": [ { "type": "individual", @@ -935,9 +945,9 @@ } }, "node_modules/path-to-regexp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.2.0.tgz", - "integrity": "sha512-jczvQbCUS7XmS7o+y1aEO9OBVFeZBQ1MDSEqmO7xSoPgOPoowY/SxLpZ6Vh97/8qHZOteiCKb7gkG9gA2ZUxJA==" + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.3.0.tgz", + "integrity": "sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==" }, "node_modules/proxy-from-env": { "version": "1.1.0", @@ -1228,32 +1238,46 @@ "integrity": "sha512-Z7C/xXCiGWsg0KuKsHTKJxbWhpI3Vs5GwLfOean7MGyVFGqdRgBbAjOCh6u4bbjPc/8MJ2pZmK/0DLdCbivLDA==" }, "@nestjs/axios": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@nestjs/axios/-/axios-3.0.2.tgz", - "integrity": "sha512-Z6GuOUdNQjP7FX+OuV2Ybyamse+/e0BFdTWBX5JxpBDKA+YkdLynDgG6HTF04zy6e9zPa19UX0WA2VDoehwhXQ==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@nestjs/axios/-/axios-3.0.3.tgz", + "integrity": "sha512-h6TCn3yJwD6OKqqqfmtRS5Zo4E46Ip2n+gK1sqwzNBC+qxQ9xpCu+ODVRFur6V3alHSCSBxb3nNtt73VEdluyA==", "requires": {} }, "@nestjs/common": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/@nestjs/common/-/common-10.3.0.tgz", - "integrity": "sha512-DGv34UHsZBxCM3H5QGE2XE/+oLJzz5+714JQjBhjD9VccFlQs3LRxo/epso4l7nJIiNlZkPyIUC8WzfU/5RTsQ==", + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/@nestjs/common/-/common-10.4.3.tgz", + "integrity": "sha512-4hbLd3XIJubHSylYd/1WSi4VQvG68KM/ECYpMDqA3k3J1/T17SAg40sDoq3ZoO5OZgU0xuNyjuISdOTjs11qVg==", "requires": { "iterare": "1.2.1", - "tslib": "2.6.2", + "tslib": "2.7.0", "uid": "2.0.2" + }, + "dependencies": { + "tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" + } } }, "@nestjs/core": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/@nestjs/core/-/core-10.3.0.tgz", - "integrity": "sha512-N06P5ncknW/Pm8bj964WvLIZn2gNhHliCBoAO1LeBvNImYkecqKcrmLbY49Fa1rmMfEM3MuBHeDys3edeuYAOA==", + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/@nestjs/core/-/core-10.4.3.tgz", + "integrity": "sha512-6OQz+5C8mT8yRtfvE5pPCq+p6w5jDot+oQku1KzQ24ABn+lay1KGuJwcKZhdVNuselx+8xhdMxknZTA8wrGLIg==", "requires": { "@nuxtjs/opencollective": "0.3.2", "fast-safe-stringify": "2.1.1", "iterare": "1.2.1", - "path-to-regexp": "3.2.0", - "tslib": "2.6.2", + "path-to-regexp": "3.3.0", + "tslib": "2.7.0", "uid": "2.0.2" + }, + "dependencies": { + "tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" + } } }, "@nuxtjs/opencollective": { @@ -1267,13 +1291,13 @@ } }, "@openapitools/openapi-generator-cli": { - "version": "2.13.5", - "resolved": "https://registry.npmjs.org/@openapitools/openapi-generator-cli/-/openapi-generator-cli-2.13.5.tgz", - "integrity": "sha512-9VgeKOTiiatKSwZDKKB3C86cW8tN9eDcFohotD4eisdK38UQswk/4Ysoq9KChRCbymjoMp6AIDHPtK1DQ2fTgw==", + "version": "2.13.9", + "resolved": "https://registry.npmjs.org/@openapitools/openapi-generator-cli/-/openapi-generator-cli-2.13.9.tgz", + "integrity": "sha512-GJaWGcHmLsvj/G1mRDytm9PTDwRGSYUDTf1uA/2FYxQAb5sq4nkZz1tD4Z7qDlZ3xTYSTw4Z8BQUdlsnrA8rcw==", "requires": { - "@nestjs/axios": "3.0.2", - "@nestjs/common": "10.3.0", - "@nestjs/core": "10.3.0", + "@nestjs/axios": "3.0.3", + "@nestjs/common": "10.4.3", + "@nestjs/core": "10.4.3", "@nuxtjs/opencollective": "0.3.2", "axios": "1.7.4", "chalk": "4.1.2", @@ -1580,9 +1604,9 @@ } }, "follow-redirects": { - "version": "1.15.6", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", - "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==" + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==" }, "form-data": { "version": "4.0.0", @@ -1837,9 +1861,9 @@ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" }, "path-to-regexp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.2.0.tgz", - "integrity": "sha512-jczvQbCUS7XmS7o+y1aEO9OBVFeZBQ1MDSEqmO7xSoPgOPoowY/SxLpZ6Vh97/8qHZOteiCKb7gkG9gA2ZUxJA==" + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.3.0.tgz", + "integrity": "sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==" }, "proxy-from-env": { "version": "1.1.0", diff --git a/package.json b/package.json index b3ec07c5..db198dad 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { "dependencies": { - "@openapitools/openapi-generator-cli": "^2.13.5" + "@openapitools/openapi-generator-cli": "^2.13.9" } } diff --git a/setup.py b/setup.py index 98496ad2..e91e398b 100644 --- a/setup.py +++ b/setup.py @@ -83,7 +83,7 @@ Join the [Discord server](https://discord.gg/Ge2APMhPfD) to get in touch with us. - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ @@ -92,7 +92,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "vrchatapi" -VERSION = "1.18.1" +VERSION = "1.18.4" # To install the library, run the following # # python setup.py install diff --git a/vrchatapi/__init__.py b/vrchatapi/__init__.py index d2baa11e..100a52d6 100644 --- a/vrchatapi/__init__.py +++ b/vrchatapi/__init__.py @@ -6,7 +6,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/api/authentication_api.py b/vrchatapi/api/authentication_api.py index 80cab402..07ea76d2 100644 --- a/vrchatapi/api/authentication_api.py +++ b/vrchatapi/api/authentication_api.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/api/avatars_api.py b/vrchatapi/api/avatars_api.py index f59c683c..49ddcf06 100644 --- a/vrchatapi/api/avatars_api.py +++ b/vrchatapi/api/avatars_api.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/api/economy_api.py b/vrchatapi/api/economy_api.py index dbd3d1e7..a8d1aaea 100644 --- a/vrchatapi/api/economy_api.py +++ b/vrchatapi/api/economy_api.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/api/favorites_api.py b/vrchatapi/api/favorites_api.py index e94b17d5..451e356e 100644 --- a/vrchatapi/api/favorites_api.py +++ b/vrchatapi/api/favorites_api.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/api/files_api.py b/vrchatapi/api/files_api.py index e6d6b662..4a2ecd5a 100644 --- a/vrchatapi/api/files_api.py +++ b/vrchatapi/api/files_api.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/api/friends_api.py b/vrchatapi/api/friends_api.py index 61c2e814..45e2c335 100644 --- a/vrchatapi/api/friends_api.py +++ b/vrchatapi/api/friends_api.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/api/groups_api.py b/vrchatapi/api/groups_api.py index 9e5ba04d..4290ff0f 100644 --- a/vrchatapi/api/groups_api.py +++ b/vrchatapi/api/groups_api.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ @@ -3872,6 +3872,8 @@ def get_group_members(self, group_id, **kwargs): # noqa: E501 :type offset: int :param sort: The sort order of Group Member results :type sort: GroupSearchSort + :param role_id: Only returns members with a specific groupRoleId + :type role_id: str :param async_req: Whether to execute the request asynchronously. :type async_req: bool, optional :param _preload_content: if False, the urllib3.HTTPResponse object will @@ -3908,6 +3910,8 @@ def get_group_members_with_http_info(self, group_id, **kwargs): # noqa: E501 :type offset: int :param sort: The sort order of Group Member results :type sort: GroupSearchSort + :param role_id: Only returns members with a specific groupRoleId + :type role_id: str :param async_req: Whether to execute the request asynchronously. :type async_req: bool, optional :param _return_http_data_only: response data without head status code @@ -3938,7 +3942,8 @@ def get_group_members_with_http_info(self, group_id, **kwargs): # noqa: E501 'group_id', 'n', 'offset', - 'sort' + 'sort', + 'role_id' ] all_params.extend( [ @@ -3983,6 +3988,8 @@ def get_group_members_with_http_info(self, group_id, **kwargs): # noqa: E501 query_params.append(('offset', local_var_params['offset'])) # noqa: E501 if local_var_params.get('sort') is not None: # noqa: E501 query_params.append(('sort', local_var_params['sort'])) # noqa: E501 + if local_var_params.get('role_id') is not None: # noqa: E501 + query_params.append(('roleId', local_var_params['role_id'])) # noqa: E501 header_params = dict(local_var_params.get('_headers', {})) diff --git a/vrchatapi/api/instances_api.py b/vrchatapi/api/instances_api.py index c4063d10..bf0697a0 100644 --- a/vrchatapi/api/instances_api.py +++ b/vrchatapi/api/instances_api.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/api/invite_api.py b/vrchatapi/api/invite_api.py index 589a4c27..67ebf721 100644 --- a/vrchatapi/api/invite_api.py +++ b/vrchatapi/api/invite_api.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/api/notifications_api.py b/vrchatapi/api/notifications_api.py index d72aea9a..a2a0432c 100644 --- a/vrchatapi/api/notifications_api.py +++ b/vrchatapi/api/notifications_api.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/api/permissions_api.py b/vrchatapi/api/permissions_api.py index f6b4e14c..ee48a166 100644 --- a/vrchatapi/api/permissions_api.py +++ b/vrchatapi/api/permissions_api.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/api/playermoderation_api.py b/vrchatapi/api/playermoderation_api.py index 11535bc2..bd699852 100644 --- a/vrchatapi/api/playermoderation_api.py +++ b/vrchatapi/api/playermoderation_api.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/api/system_api.py b/vrchatapi/api/system_api.py index 4a301e7f..32b75e49 100644 --- a/vrchatapi/api/system_api.py +++ b/vrchatapi/api/system_api.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/api/users_api.py b/vrchatapi/api/users_api.py index 567ba3f5..894ad77e 100644 --- a/vrchatapi/api/users_api.py +++ b/vrchatapi/api/users_api.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/api/worlds_api.py b/vrchatapi/api/worlds_api.py index 1e2b24cc..40130843 100644 --- a/vrchatapi/api/worlds_api.py +++ b/vrchatapi/api/worlds_api.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/api_client.py b/vrchatapi/api_client.py index 9c54cb58..6373709c 100644 --- a/vrchatapi/api_client.py +++ b/vrchatapi/api_client.py @@ -3,7 +3,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/configuration.py b/vrchatapi/configuration.py index 8f0ddb45..b1ca6a4c 100644 --- a/vrchatapi/configuration.py +++ b/vrchatapi/configuration.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ @@ -441,7 +441,7 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 1.18.1\n"\ + "Version of the API: 1.18.4\n"\ "SDK Package Version: 1.0.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/vrchatapi/exceptions.py b/vrchatapi/exceptions.py index be441a2a..fd919dea 100644 --- a/vrchatapi/exceptions.py +++ b/vrchatapi/exceptions.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/__init__.py b/vrchatapi/models/__init__.py index b44fdc93..43e859d9 100644 --- a/vrchatapi/models/__init__.py +++ b/vrchatapi/models/__init__.py @@ -5,7 +5,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/account_deletion_log.py b/vrchatapi/models/account_deletion_log.py index ee2380a3..d6e8e5e6 100644 --- a/vrchatapi/models/account_deletion_log.py +++ b/vrchatapi/models/account_deletion_log.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/add_favorite_request.py b/vrchatapi/models/add_favorite_request.py index dd109de4..0c12674a 100644 --- a/vrchatapi/models/add_favorite_request.py +++ b/vrchatapi/models/add_favorite_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/add_group_gallery_image_request.py b/vrchatapi/models/add_group_gallery_image_request.py index 6fe92df1..124ae7d7 100644 --- a/vrchatapi/models/add_group_gallery_image_request.py +++ b/vrchatapi/models/add_group_gallery_image_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/api_config.py b/vrchatapi/models/api_config.py index 3ff20347..e1fa98f5 100644 --- a/vrchatapi/models/api_config.py +++ b/vrchatapi/models/api_config.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/api_config_announcement.py b/vrchatapi/models/api_config_announcement.py index cbb8680b..5e315964 100644 --- a/vrchatapi/models/api_config_announcement.py +++ b/vrchatapi/models/api_config_announcement.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/api_config_download_url_list.py b/vrchatapi/models/api_config_download_url_list.py index 22b5826e..426ba3d8 100644 --- a/vrchatapi/models/api_config_download_url_list.py +++ b/vrchatapi/models/api_config_download_url_list.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/api_config_events.py b/vrchatapi/models/api_config_events.py index b9d4f88b..4833931c 100644 --- a/vrchatapi/models/api_config_events.py +++ b/vrchatapi/models/api_config_events.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/api_health.py b/vrchatapi/models/api_health.py index 89c2ae9d..726fe55f 100644 --- a/vrchatapi/models/api_health.py +++ b/vrchatapi/models/api_health.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/avatar.py b/vrchatapi/models/avatar.py index cb6f8647..d9ee3fa6 100644 --- a/vrchatapi/models/avatar.py +++ b/vrchatapi/models/avatar.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/avatar_unity_package_url_object.py b/vrchatapi/models/avatar_unity_package_url_object.py index fb375570..1af23117 100644 --- a/vrchatapi/models/avatar_unity_package_url_object.py +++ b/vrchatapi/models/avatar_unity_package_url_object.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/badge.py b/vrchatapi/models/badge.py index 859a4fd4..ab621739 100644 --- a/vrchatapi/models/badge.py +++ b/vrchatapi/models/badge.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/ban_group_member_request.py b/vrchatapi/models/ban_group_member_request.py index 6f930cc4..e6c2d859 100644 --- a/vrchatapi/models/ban_group_member_request.py +++ b/vrchatapi/models/ban_group_member_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/create_avatar_request.py b/vrchatapi/models/create_avatar_request.py index 10fd1bcd..4aecb3f1 100644 --- a/vrchatapi/models/create_avatar_request.py +++ b/vrchatapi/models/create_avatar_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ @@ -43,7 +43,7 @@ class CreateAvatarRequest(object): 'tags': 'list[str]', 'image_url': 'str', 'release_status': 'ReleaseStatus', - 'version': 'float', + 'version': 'int', 'unity_package_url': 'str', 'unity_version': 'str' } @@ -266,7 +266,7 @@ def version(self): :return: The version of this CreateAvatarRequest. # noqa: E501 - :rtype: float + :rtype: int """ return self._version @@ -276,7 +276,7 @@ def version(self, version): :param version: The version of this CreateAvatarRequest. # noqa: E501 - :type version: float + :type version: int """ if (self.local_vars_configuration.client_side_validation and version is not None and version < 0): # noqa: E501 diff --git a/vrchatapi/models/create_file_request.py b/vrchatapi/models/create_file_request.py index 91816a94..46fab192 100644 --- a/vrchatapi/models/create_file_request.py +++ b/vrchatapi/models/create_file_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/create_file_version_request.py b/vrchatapi/models/create_file_version_request.py index 1828bb3c..f94c354b 100644 --- a/vrchatapi/models/create_file_version_request.py +++ b/vrchatapi/models/create_file_version_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ @@ -37,9 +37,9 @@ class CreateFileVersionRequest(object): """ openapi_types = { 'signature_md5': 'str', - 'signature_size_in_bytes': 'float', + 'signature_size_in_bytes': 'int', 'file_md5': 'str', - 'file_size_in_bytes': 'float' + 'file_size_in_bytes': 'int' } attribute_map = { @@ -100,7 +100,7 @@ def signature_size_in_bytes(self): :return: The signature_size_in_bytes of this CreateFileVersionRequest. # noqa: E501 - :rtype: float + :rtype: int """ return self._signature_size_in_bytes @@ -110,7 +110,7 @@ def signature_size_in_bytes(self, signature_size_in_bytes): :param signature_size_in_bytes: The signature_size_in_bytes of this CreateFileVersionRequest. # noqa: E501 - :type signature_size_in_bytes: float + :type signature_size_in_bytes: int """ if self.local_vars_configuration.client_side_validation and signature_size_in_bytes is None: # noqa: E501 raise ValueError("Invalid value for `signature_size_in_bytes`, must not be `None`") # noqa: E501 @@ -147,7 +147,7 @@ def file_size_in_bytes(self): :return: The file_size_in_bytes of this CreateFileVersionRequest. # noqa: E501 - :rtype: float + :rtype: int """ return self._file_size_in_bytes @@ -157,7 +157,7 @@ def file_size_in_bytes(self, file_size_in_bytes): :param file_size_in_bytes: The file_size_in_bytes of this CreateFileVersionRequest. # noqa: E501 - :type file_size_in_bytes: float + :type file_size_in_bytes: int """ self._file_size_in_bytes = file_size_in_bytes diff --git a/vrchatapi/models/create_group_announcement_request.py b/vrchatapi/models/create_group_announcement_request.py index 747aab74..c879f1bf 100644 --- a/vrchatapi/models/create_group_announcement_request.py +++ b/vrchatapi/models/create_group_announcement_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/create_group_gallery_request.py b/vrchatapi/models/create_group_gallery_request.py index 164e752a..f9c1af42 100644 --- a/vrchatapi/models/create_group_gallery_request.py +++ b/vrchatapi/models/create_group_gallery_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/create_group_invite_request.py b/vrchatapi/models/create_group_invite_request.py index ba66b3c2..f479012b 100644 --- a/vrchatapi/models/create_group_invite_request.py +++ b/vrchatapi/models/create_group_invite_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/create_group_post_request.py b/vrchatapi/models/create_group_post_request.py index 9d9cedbd..2a4a6489 100644 --- a/vrchatapi/models/create_group_post_request.py +++ b/vrchatapi/models/create_group_post_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/create_group_request.py b/vrchatapi/models/create_group_request.py index 07883b44..24e66b84 100644 --- a/vrchatapi/models/create_group_request.py +++ b/vrchatapi/models/create_group_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/create_group_role_request.py b/vrchatapi/models/create_group_role_request.py index 586584ca..1c0fa680 100644 --- a/vrchatapi/models/create_group_role_request.py +++ b/vrchatapi/models/create_group_role_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/create_instance_request.py b/vrchatapi/models/create_instance_request.py index 818882e1..7569b524 100644 --- a/vrchatapi/models/create_instance_request.py +++ b/vrchatapi/models/create_instance_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/create_world_request.py b/vrchatapi/models/create_world_request.py index 78d45fc4..72ae32b0 100644 --- a/vrchatapi/models/create_world_request.py +++ b/vrchatapi/models/create_world_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/current_user.py b/vrchatapi/models/current_user.py index 4474e358..e801e578 100644 --- a/vrchatapi/models/current_user.py +++ b/vrchatapi/models/current_user.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ @@ -87,6 +87,8 @@ class CurrentUser(object): 'profile_pic_override': 'str', 'profile_pic_override_thumbnail': 'str', 'pronouns': 'str', + 'queued_instance': 'str', + 'receive_mobile_invitations': 'bool', 'state': 'UserState', 'status': 'UserStatus', 'status_description': 'str', @@ -155,6 +157,8 @@ class CurrentUser(object): 'profile_pic_override': 'profilePicOverride', 'profile_pic_override_thumbnail': 'profilePicOverrideThumbnail', 'pronouns': 'pronouns', + 'queued_instance': 'queuedInstance', + 'receive_mobile_invitations': 'receiveMobileInvitations', 'state': 'state', 'status': 'status', 'status_description': 'statusDescription', @@ -171,7 +175,7 @@ class CurrentUser(object): 'username': 'username' } - def __init__(self, accepted_tos_version=None, accepted_privacy_version=None, account_deletion_date=None, account_deletion_log=None, active_friends=None, allow_avatar_copying=None, badges=None, bio=None, bio_links=None, current_avatar=None, current_avatar_asset_url=None, current_avatar_image_url=None, current_avatar_thumbnail_image_url=None, current_avatar_tags=None, date_joined=None, developer_type=None, display_name=None, email_verified=None, fallback_avatar=None, friend_group_names=None, friend_key=None, friends=None, has_birthday=None, hide_content_filter_settings=None, user_language=None, user_language_code=None, has_email=None, has_logged_in_from_client=None, has_pending_email=None, home_location=None, id=None, is_booping_enabled=True, is_friend=False, last_activity=None, last_login=None, last_mobile=None, last_platform=None, obfuscated_email=None, obfuscated_pending_email=None, oculus_id=None, google_id=None, google_details=None, pico_id=None, vive_id=None, offline_friends=None, online_friends=None, past_display_names=None, presence=None, profile_pic_override=None, profile_pic_override_thumbnail=None, pronouns=None, state=None, status=None, status_description=None, status_first_time=None, status_history=None, steam_details=None, steam_id=None, tags=None, two_factor_auth_enabled=None, two_factor_auth_enabled_date=None, unsubscribe=None, updated_at=None, user_icon=None, username=None, local_vars_configuration=None): # noqa: E501 + def __init__(self, accepted_tos_version=None, accepted_privacy_version=None, account_deletion_date=None, account_deletion_log=None, active_friends=None, allow_avatar_copying=None, badges=None, bio=None, bio_links=None, current_avatar=None, current_avatar_asset_url=None, current_avatar_image_url=None, current_avatar_thumbnail_image_url=None, current_avatar_tags=None, date_joined=None, developer_type=None, display_name=None, email_verified=None, fallback_avatar=None, friend_group_names=None, friend_key=None, friends=None, has_birthday=None, hide_content_filter_settings=None, user_language=None, user_language_code=None, has_email=None, has_logged_in_from_client=None, has_pending_email=None, home_location=None, id=None, is_booping_enabled=True, is_friend=False, last_activity=None, last_login=None, last_mobile=None, last_platform=None, obfuscated_email=None, obfuscated_pending_email=None, oculus_id=None, google_id=None, google_details=None, pico_id=None, vive_id=None, offline_friends=None, online_friends=None, past_display_names=None, presence=None, profile_pic_override=None, profile_pic_override_thumbnail=None, pronouns=None, queued_instance=None, receive_mobile_invitations=None, state=None, status=None, status_description=None, status_first_time=None, status_history=None, steam_details=None, steam_id=None, tags=None, two_factor_auth_enabled=None, two_factor_auth_enabled_date=None, unsubscribe=None, updated_at=None, user_icon=None, username=None, local_vars_configuration=None): # noqa: E501 """CurrentUser - a model defined in OpenAPI""" # noqa: E501 if local_vars_configuration is None: local_vars_configuration = Configuration.get_default_copy() @@ -228,6 +232,8 @@ def __init__(self, accepted_tos_version=None, accepted_privacy_version=None, acc self._profile_pic_override = None self._profile_pic_override_thumbnail = None self._pronouns = None + self._queued_instance = None + self._receive_mobile_invitations = None self._state = None self._status = None self._status_description = None @@ -309,6 +315,9 @@ def __init__(self, accepted_tos_version=None, accepted_privacy_version=None, acc self.profile_pic_override = profile_pic_override self.profile_pic_override_thumbnail = profile_pic_override_thumbnail self.pronouns = pronouns + self.queued_instance = queued_instance + if receive_mobile_invitations is not None: + self.receive_mobile_invitations = receive_mobile_invitations self.state = state self.status = status self.status_description = status_description @@ -1489,6 +1498,48 @@ def pronouns(self, pronouns): self._pronouns = pronouns + @property + def queued_instance(self): + """Gets the queued_instance of this CurrentUser. # noqa: E501 + + + :return: The queued_instance of this CurrentUser. # noqa: E501 + :rtype: str + """ + return self._queued_instance + + @queued_instance.setter + def queued_instance(self, queued_instance): + """Sets the queued_instance of this CurrentUser. + + + :param queued_instance: The queued_instance of this CurrentUser. # noqa: E501 + :type queued_instance: str + """ + + self._queued_instance = queued_instance + + @property + def receive_mobile_invitations(self): + """Gets the receive_mobile_invitations of this CurrentUser. # noqa: E501 + + + :return: The receive_mobile_invitations of this CurrentUser. # noqa: E501 + :rtype: bool + """ + return self._receive_mobile_invitations + + @receive_mobile_invitations.setter + def receive_mobile_invitations(self, receive_mobile_invitations): + """Sets the receive_mobile_invitations of this CurrentUser. + + + :param receive_mobile_invitations: The receive_mobile_invitations of this CurrentUser. # noqa: E501 + :type receive_mobile_invitations: bool + """ + + self._receive_mobile_invitations = receive_mobile_invitations + @property def state(self): """Gets the state of this CurrentUser. # noqa: E501 diff --git a/vrchatapi/models/current_user_presence.py b/vrchatapi/models/current_user_presence.py index 76cc41a6..8e5f6944 100644 --- a/vrchatapi/models/current_user_presence.py +++ b/vrchatapi/models/current_user_presence.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ @@ -37,6 +37,7 @@ class CurrentUserPresence(object): """ openapi_types = { 'avatar_thumbnail': 'str', + 'current_avatar_tags': 'str', 'display_name': 'str', 'groups': 'list[str]', 'id': 'str', @@ -48,11 +49,13 @@ class CurrentUserPresence(object): 'status': 'str', 'traveling_to_instance': 'str', 'traveling_to_world': 'str', + 'user_icon': 'str', 'world': 'str' } attribute_map = { 'avatar_thumbnail': 'avatarThumbnail', + 'current_avatar_tags': 'currentAvatarTags', 'display_name': 'displayName', 'groups': 'groups', 'id': 'id', @@ -64,16 +67,18 @@ class CurrentUserPresence(object): 'status': 'status', 'traveling_to_instance': 'travelingToInstance', 'traveling_to_world': 'travelingToWorld', + 'user_icon': 'userIcon', 'world': 'world' } - def __init__(self, avatar_thumbnail=None, display_name=None, groups=None, id=None, instance=None, instance_type=None, is_rejoining=None, platform=None, profile_pic_override=None, status=None, traveling_to_instance=None, traveling_to_world=None, world=None, local_vars_configuration=None): # noqa: E501 + def __init__(self, avatar_thumbnail=None, current_avatar_tags=None, display_name=None, groups=None, id=None, instance=None, instance_type=None, is_rejoining=None, platform=None, profile_pic_override=None, status=None, traveling_to_instance=None, traveling_to_world=None, user_icon=None, world=None, local_vars_configuration=None): # noqa: E501 """CurrentUserPresence - a model defined in OpenAPI""" # noqa: E501 if local_vars_configuration is None: local_vars_configuration = Configuration.get_default_copy() self.local_vars_configuration = local_vars_configuration self._avatar_thumbnail = None + self._current_avatar_tags = None self._display_name = None self._groups = None self._id = None @@ -85,10 +90,13 @@ def __init__(self, avatar_thumbnail=None, display_name=None, groups=None, id=Non self._status = None self._traveling_to_instance = None self._traveling_to_world = None + self._user_icon = None self._world = None self.discriminator = None self.avatar_thumbnail = avatar_thumbnail + if current_avatar_tags is not None: + self.current_avatar_tags = current_avatar_tags if display_name is not None: self.display_name = display_name self.groups = groups @@ -103,6 +111,7 @@ def __init__(self, avatar_thumbnail=None, display_name=None, groups=None, id=Non self.traveling_to_instance = traveling_to_instance if traveling_to_world is not None: self.traveling_to_world = traveling_to_world + self.user_icon = user_icon if world is not None: self.world = world @@ -127,6 +136,27 @@ def avatar_thumbnail(self, avatar_thumbnail): self._avatar_thumbnail = avatar_thumbnail + @property + def current_avatar_tags(self): + """Gets the current_avatar_tags of this CurrentUserPresence. # noqa: E501 + + + :return: The current_avatar_tags of this CurrentUserPresence. # noqa: E501 + :rtype: str + """ + return self._current_avatar_tags + + @current_avatar_tags.setter + def current_avatar_tags(self, current_avatar_tags): + """Sets the current_avatar_tags of this CurrentUserPresence. + + + :param current_avatar_tags: The current_avatar_tags of this CurrentUserPresence. # noqa: E501 + :type current_avatar_tags: str + """ + + self._current_avatar_tags = current_avatar_tags + @property def display_name(self): """Gets the display_name of this CurrentUserPresence. # noqa: E501 @@ -368,6 +398,27 @@ def traveling_to_world(self, traveling_to_world): self._traveling_to_world = traveling_to_world + @property + def user_icon(self): + """Gets the user_icon of this CurrentUserPresence. # noqa: E501 + + + :return: The user_icon of this CurrentUserPresence. # noqa: E501 + :rtype: str + """ + return self._user_icon + + @user_icon.setter + def user_icon(self, user_icon): + """Sets the user_icon of this CurrentUserPresence. + + + :param user_icon: The user_icon of this CurrentUserPresence. # noqa: E501 + :type user_icon: str + """ + + self._user_icon = user_icon + @property def world(self): """Gets the world of this CurrentUserPresence. # noqa: E501 diff --git a/vrchatapi/models/deployment_group.py b/vrchatapi/models/deployment_group.py index 3130d6a0..5411fd94 100644 --- a/vrchatapi/models/deployment_group.py +++ b/vrchatapi/models/deployment_group.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/developer_type.py b/vrchatapi/models/developer_type.py index 67bb7ad2..f8194484 100644 --- a/vrchatapi/models/developer_type.py +++ b/vrchatapi/models/developer_type.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/dynamic_content_row.py b/vrchatapi/models/dynamic_content_row.py index 5206f04c..64dcf2c9 100644 --- a/vrchatapi/models/dynamic_content_row.py +++ b/vrchatapi/models/dynamic_content_row.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/error.py b/vrchatapi/models/error.py index f6f9b98a..efe9221d 100644 --- a/vrchatapi/models/error.py +++ b/vrchatapi/models/error.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/favorite.py b/vrchatapi/models/favorite.py index d36e5162..42cfb165 100644 --- a/vrchatapi/models/favorite.py +++ b/vrchatapi/models/favorite.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/favorite_group.py b/vrchatapi/models/favorite_group.py index 748d1d42..72cab995 100644 --- a/vrchatapi/models/favorite_group.py +++ b/vrchatapi/models/favorite_group.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/favorite_group_visibility.py b/vrchatapi/models/favorite_group_visibility.py index ca4fe8ec..a826e9c8 100644 --- a/vrchatapi/models/favorite_group_visibility.py +++ b/vrchatapi/models/favorite_group_visibility.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/favorite_type.py b/vrchatapi/models/favorite_type.py index bea9c62b..e0d5aba6 100644 --- a/vrchatapi/models/favorite_type.py +++ b/vrchatapi/models/favorite_type.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/file.py b/vrchatapi/models/file.py index ed4b50e2..e5500b4a 100644 --- a/vrchatapi/models/file.py +++ b/vrchatapi/models/file.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/file_data.py b/vrchatapi/models/file_data.py index 52310e6e..116d09ad 100644 --- a/vrchatapi/models/file_data.py +++ b/vrchatapi/models/file_data.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/file_status.py b/vrchatapi/models/file_status.py index c9fffb1f..f5c704f9 100644 --- a/vrchatapi/models/file_status.py +++ b/vrchatapi/models/file_status.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/file_upload_url.py b/vrchatapi/models/file_upload_url.py index 27c5b818..00311e59 100644 --- a/vrchatapi/models/file_upload_url.py +++ b/vrchatapi/models/file_upload_url.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/file_version.py b/vrchatapi/models/file_version.py index b6195262..caebc811 100644 --- a/vrchatapi/models/file_version.py +++ b/vrchatapi/models/file_version.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/file_version_upload_status.py b/vrchatapi/models/file_version_upload_status.py index 5bab29e5..49e65d45 100644 --- a/vrchatapi/models/file_version_upload_status.py +++ b/vrchatapi/models/file_version_upload_status.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ @@ -38,8 +38,8 @@ class FileVersionUploadStatus(object): openapi_types = { 'upload_id': 'str', 'file_name': 'str', - 'next_part_number': 'float', - 'max_parts': 'float', + 'next_part_number': 'int', + 'max_parts': 'int', 'parts': 'list[object]', 'etags': 'list[object]' } @@ -132,7 +132,7 @@ def next_part_number(self): :return: The next_part_number of this FileVersionUploadStatus. # noqa: E501 - :rtype: float + :rtype: int """ return self._next_part_number @@ -142,7 +142,7 @@ def next_part_number(self, next_part_number): :param next_part_number: The next_part_number of this FileVersionUploadStatus. # noqa: E501 - :type next_part_number: float + :type next_part_number: int """ if self.local_vars_configuration.client_side_validation and next_part_number is None: # noqa: E501 raise ValueError("Invalid value for `next_part_number`, must not be `None`") # noqa: E501 @@ -158,7 +158,7 @@ def max_parts(self): :return: The max_parts of this FileVersionUploadStatus. # noqa: E501 - :rtype: float + :rtype: int """ return self._max_parts @@ -168,7 +168,7 @@ def max_parts(self, max_parts): :param max_parts: The max_parts of this FileVersionUploadStatus. # noqa: E501 - :type max_parts: float + :type max_parts: int """ if self.local_vars_configuration.client_side_validation and max_parts is None: # noqa: E501 raise ValueError("Invalid value for `max_parts`, must not be `None`") # noqa: E501 diff --git a/vrchatapi/models/finish_file_data_upload_request.py b/vrchatapi/models/finish_file_data_upload_request.py index d72e2062..1e1a6644 100644 --- a/vrchatapi/models/finish_file_data_upload_request.py +++ b/vrchatapi/models/finish_file_data_upload_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/friend_status.py b/vrchatapi/models/friend_status.py index 74dbc260..9835c61c 100644 --- a/vrchatapi/models/friend_status.py +++ b/vrchatapi/models/friend_status.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group.py b/vrchatapi/models/group.py index 408dd6ba..b9558e75 100644 --- a/vrchatapi/models/group.py +++ b/vrchatapi/models/group.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_access_type.py b/vrchatapi/models/group_access_type.py index 81c57e6a..742bf6d7 100644 --- a/vrchatapi/models/group_access_type.py +++ b/vrchatapi/models/group_access_type.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_announcement.py b/vrchatapi/models/group_announcement.py index fa4743c8..7a39389f 100644 --- a/vrchatapi/models/group_announcement.py +++ b/vrchatapi/models/group_announcement.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_audit_log_entry.py b/vrchatapi/models/group_audit_log_entry.py index b4b25b06..d831a1f0 100644 --- a/vrchatapi/models/group_audit_log_entry.py +++ b/vrchatapi/models/group_audit_log_entry.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_gallery.py b/vrchatapi/models/group_gallery.py index 2b0e7c79..385d9a21 100644 --- a/vrchatapi/models/group_gallery.py +++ b/vrchatapi/models/group_gallery.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_gallery_image.py b/vrchatapi/models/group_gallery_image.py index ba41d508..56ded69e 100644 --- a/vrchatapi/models/group_gallery_image.py +++ b/vrchatapi/models/group_gallery_image.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_instance.py b/vrchatapi/models/group_instance.py index b83e788b..5c9a2bbc 100644 --- a/vrchatapi/models/group_instance.py +++ b/vrchatapi/models/group_instance.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_join_request_action.py b/vrchatapi/models/group_join_request_action.py index 38a0d5c9..c7416716 100644 --- a/vrchatapi/models/group_join_request_action.py +++ b/vrchatapi/models/group_join_request_action.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_join_state.py b/vrchatapi/models/group_join_state.py index 4a25d08b..8e8f8e80 100644 --- a/vrchatapi/models/group_join_state.py +++ b/vrchatapi/models/group_join_state.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_limited_member.py b/vrchatapi/models/group_limited_member.py index 6bd54aac..5e103184 100644 --- a/vrchatapi/models/group_limited_member.py +++ b/vrchatapi/models/group_limited_member.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_member.py b/vrchatapi/models/group_member.py index 8d02a7b2..3f42fca8 100644 --- a/vrchatapi/models/group_member.py +++ b/vrchatapi/models/group_member.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_member_limited_user.py b/vrchatapi/models/group_member_limited_user.py index 5ece8e17..3966048f 100644 --- a/vrchatapi/models/group_member_limited_user.py +++ b/vrchatapi/models/group_member_limited_user.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_member_status.py b/vrchatapi/models/group_member_status.py index 77fc854c..340080eb 100644 --- a/vrchatapi/models/group_member_status.py +++ b/vrchatapi/models/group_member_status.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_my_member.py b/vrchatapi/models/group_my_member.py index f71e5d69..5b9460e8 100644 --- a/vrchatapi/models/group_my_member.py +++ b/vrchatapi/models/group_my_member.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_permission.py b/vrchatapi/models/group_permission.py index fd890d53..362a239e 100644 --- a/vrchatapi/models/group_permission.py +++ b/vrchatapi/models/group_permission.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_post.py b/vrchatapi/models/group_post.py index 2e4e3659..d7a86804 100644 --- a/vrchatapi/models/group_post.py +++ b/vrchatapi/models/group_post.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_post_visibility.py b/vrchatapi/models/group_post_visibility.py index ca7dd033..d14b6b28 100644 --- a/vrchatapi/models/group_post_visibility.py +++ b/vrchatapi/models/group_post_visibility.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_privacy.py b/vrchatapi/models/group_privacy.py index 02fbeb98..5dbec0cf 100644 --- a/vrchatapi/models/group_privacy.py +++ b/vrchatapi/models/group_privacy.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_role.py b/vrchatapi/models/group_role.py index 07d48d23..aa51b144 100644 --- a/vrchatapi/models/group_role.py +++ b/vrchatapi/models/group_role.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_role_template.py b/vrchatapi/models/group_role_template.py index 55da4f6a..220b2628 100644 --- a/vrchatapi/models/group_role_template.py +++ b/vrchatapi/models/group_role_template.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_search_sort.py b/vrchatapi/models/group_search_sort.py index 56b5bd2c..f800a1d4 100644 --- a/vrchatapi/models/group_search_sort.py +++ b/vrchatapi/models/group_search_sort.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/group_user_visibility.py b/vrchatapi/models/group_user_visibility.py index f135dc49..336bff37 100644 --- a/vrchatapi/models/group_user_visibility.py +++ b/vrchatapi/models/group_user_visibility.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/info_push.py b/vrchatapi/models/info_push.py index 52caab9e..b07122d7 100644 --- a/vrchatapi/models/info_push.py +++ b/vrchatapi/models/info_push.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/info_push_data.py b/vrchatapi/models/info_push_data.py index 9a2e880a..aa302a65 100644 --- a/vrchatapi/models/info_push_data.py +++ b/vrchatapi/models/info_push_data.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/info_push_data_article.py b/vrchatapi/models/info_push_data_article.py index cdaad161..733a12e7 100644 --- a/vrchatapi/models/info_push_data_article.py +++ b/vrchatapi/models/info_push_data_article.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/info_push_data_article_content.py b/vrchatapi/models/info_push_data_article_content.py index 7d93d5cc..e91fc959 100644 --- a/vrchatapi/models/info_push_data_article_content.py +++ b/vrchatapi/models/info_push_data_article_content.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/info_push_data_clickable.py b/vrchatapi/models/info_push_data_clickable.py index 2b34d531..02249e74 100644 --- a/vrchatapi/models/info_push_data_clickable.py +++ b/vrchatapi/models/info_push_data_clickable.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/instance.py b/vrchatapi/models/instance.py index abb01937..b59f5b34 100644 --- a/vrchatapi/models/instance.py +++ b/vrchatapi/models/instance.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/instance_platforms.py b/vrchatapi/models/instance_platforms.py index fbad9f37..f5b9026c 100644 --- a/vrchatapi/models/instance_platforms.py +++ b/vrchatapi/models/instance_platforms.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/instance_region.py b/vrchatapi/models/instance_region.py index 90fd11f0..bd6d6141 100644 --- a/vrchatapi/models/instance_region.py +++ b/vrchatapi/models/instance_region.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/instance_short_name_response.py b/vrchatapi/models/instance_short_name_response.py index f541e808..f2baf757 100644 --- a/vrchatapi/models/instance_short_name_response.py +++ b/vrchatapi/models/instance_short_name_response.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/instance_type.py b/vrchatapi/models/instance_type.py index dfc44c24..6c0a2fb4 100644 --- a/vrchatapi/models/instance_type.py +++ b/vrchatapi/models/instance_type.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/invite_message.py b/vrchatapi/models/invite_message.py index f5aa4f81..6f1b0bcb 100644 --- a/vrchatapi/models/invite_message.py +++ b/vrchatapi/models/invite_message.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/invite_message_type.py b/vrchatapi/models/invite_message_type.py index 1d86244e..a9dba079 100644 --- a/vrchatapi/models/invite_message_type.py +++ b/vrchatapi/models/invite_message_type.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/invite_request.py b/vrchatapi/models/invite_request.py index 6a10e53d..480b75ef 100644 --- a/vrchatapi/models/invite_request.py +++ b/vrchatapi/models/invite_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/invite_response.py b/vrchatapi/models/invite_response.py index 4ebe559e..2bb4d2f3 100644 --- a/vrchatapi/models/invite_response.py +++ b/vrchatapi/models/invite_response.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/license.py b/vrchatapi/models/license.py index fff992d3..09bc424f 100644 --- a/vrchatapi/models/license.py +++ b/vrchatapi/models/license.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/license_action.py b/vrchatapi/models/license_action.py index 059b162a..1b97192b 100644 --- a/vrchatapi/models/license_action.py +++ b/vrchatapi/models/license_action.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/license_group.py b/vrchatapi/models/license_group.py index 5dee72af..74e8c04e 100644 --- a/vrchatapi/models/license_group.py +++ b/vrchatapi/models/license_group.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/license_type.py b/vrchatapi/models/license_type.py index fb8e05b3..37007d8e 100644 --- a/vrchatapi/models/license_type.py +++ b/vrchatapi/models/license_type.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/limited_group.py b/vrchatapi/models/limited_group.py index 7fa40279..da53f2d9 100644 --- a/vrchatapi/models/limited_group.py +++ b/vrchatapi/models/limited_group.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/limited_unity_package.py b/vrchatapi/models/limited_unity_package.py index dfaf4b12..e824afbc 100644 --- a/vrchatapi/models/limited_unity_package.py +++ b/vrchatapi/models/limited_unity_package.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/limited_user.py b/vrchatapi/models/limited_user.py index 7bd441e9..b2be821d 100644 --- a/vrchatapi/models/limited_user.py +++ b/vrchatapi/models/limited_user.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/limited_user_groups.py b/vrchatapi/models/limited_user_groups.py index 19d731c6..fa846ad1 100644 --- a/vrchatapi/models/limited_user_groups.py +++ b/vrchatapi/models/limited_user_groups.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/limited_world.py b/vrchatapi/models/limited_world.py index 225fb874..e2065d61 100644 --- a/vrchatapi/models/limited_world.py +++ b/vrchatapi/models/limited_world.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/mime_type.py b/vrchatapi/models/mime_type.py index a65271b9..489e3b6a 100644 --- a/vrchatapi/models/mime_type.py +++ b/vrchatapi/models/mime_type.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/moderate_user_request.py b/vrchatapi/models/moderate_user_request.py index 5d56b079..cdcc5ded 100644 --- a/vrchatapi/models/moderate_user_request.py +++ b/vrchatapi/models/moderate_user_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/notification.py b/vrchatapi/models/notification.py index a0a5d74a..24aab85d 100644 --- a/vrchatapi/models/notification.py +++ b/vrchatapi/models/notification.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/notification_detail_invite.py b/vrchatapi/models/notification_detail_invite.py index e75e118c..73659550 100644 --- a/vrchatapi/models/notification_detail_invite.py +++ b/vrchatapi/models/notification_detail_invite.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/notification_detail_invite_response.py b/vrchatapi/models/notification_detail_invite_response.py index 9cf205b0..341d957e 100644 --- a/vrchatapi/models/notification_detail_invite_response.py +++ b/vrchatapi/models/notification_detail_invite_response.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/notification_detail_request_invite.py b/vrchatapi/models/notification_detail_request_invite.py index 4467b378..d2c861da 100644 --- a/vrchatapi/models/notification_detail_request_invite.py +++ b/vrchatapi/models/notification_detail_request_invite.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/notification_detail_request_invite_response.py b/vrchatapi/models/notification_detail_request_invite_response.py index a7f03ce3..f47a33a1 100644 --- a/vrchatapi/models/notification_detail_request_invite_response.py +++ b/vrchatapi/models/notification_detail_request_invite_response.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/notification_detail_vote_to_kick.py b/vrchatapi/models/notification_detail_vote_to_kick.py index 4aa2b112..f4050e17 100644 --- a/vrchatapi/models/notification_detail_vote_to_kick.py +++ b/vrchatapi/models/notification_detail_vote_to_kick.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/notification_type.py b/vrchatapi/models/notification_type.py index b3419d8d..150c1af6 100644 --- a/vrchatapi/models/notification_type.py +++ b/vrchatapi/models/notification_type.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/order_option.py b/vrchatapi/models/order_option.py index cfdbd17e..b6a97585 100644 --- a/vrchatapi/models/order_option.py +++ b/vrchatapi/models/order_option.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/paginated_group_audit_log_entry_list.py b/vrchatapi/models/paginated_group_audit_log_entry_list.py index dfb68e40..9d5cf710 100644 --- a/vrchatapi/models/paginated_group_audit_log_entry_list.py +++ b/vrchatapi/models/paginated_group_audit_log_entry_list.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/past_display_name.py b/vrchatapi/models/past_display_name.py index 39e63a19..b8e09462 100644 --- a/vrchatapi/models/past_display_name.py +++ b/vrchatapi/models/past_display_name.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/permission.py b/vrchatapi/models/permission.py index 47f1eb6c..e4d7e252 100644 --- a/vrchatapi/models/permission.py +++ b/vrchatapi/models/permission.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/player_moderation.py b/vrchatapi/models/player_moderation.py index 8676c83a..924c8451 100644 --- a/vrchatapi/models/player_moderation.py +++ b/vrchatapi/models/player_moderation.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/player_moderation_type.py b/vrchatapi/models/player_moderation_type.py index 9fcfa9b9..53d4d605 100644 --- a/vrchatapi/models/player_moderation_type.py +++ b/vrchatapi/models/player_moderation_type.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/region.py b/vrchatapi/models/region.py index ecd661bc..455f7220 100644 --- a/vrchatapi/models/region.py +++ b/vrchatapi/models/region.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ @@ -34,11 +34,12 @@ class Region(object): US = "us" USE = "use" USW = "usw" + USX = "usx" EU = "eu" JP = "jp" UNKNOWN = "unknown" - allowable_values = [US, USE, USW, EU, JP, UNKNOWN] # noqa: E501 + allowable_values = [US, USE, USW, USX, EU, JP, UNKNOWN] # noqa: E501 """ Attributes: diff --git a/vrchatapi/models/release_status.py b/vrchatapi/models/release_status.py index 93dfb906..34ac8d6e 100644 --- a/vrchatapi/models/release_status.py +++ b/vrchatapi/models/release_status.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/represented_group.py b/vrchatapi/models/represented_group.py index d1e04957..e70f24a6 100644 --- a/vrchatapi/models/represented_group.py +++ b/vrchatapi/models/represented_group.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/request_invite_request.py b/vrchatapi/models/request_invite_request.py index 03c92301..8c8c46cc 100644 --- a/vrchatapi/models/request_invite_request.py +++ b/vrchatapi/models/request_invite_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/respond_group_join_request.py b/vrchatapi/models/respond_group_join_request.py index 9c58bd3d..35eedee6 100644 --- a/vrchatapi/models/respond_group_join_request.py +++ b/vrchatapi/models/respond_group_join_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/response.py b/vrchatapi/models/response.py index bc412881..1a2f3ad6 100644 --- a/vrchatapi/models/response.py +++ b/vrchatapi/models/response.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/sent_notification.py b/vrchatapi/models/sent_notification.py index f22bb530..7c8e2e47 100644 --- a/vrchatapi/models/sent_notification.py +++ b/vrchatapi/models/sent_notification.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/sort_option.py b/vrchatapi/models/sort_option.py index e1e3b14c..52fd1876 100644 --- a/vrchatapi/models/sort_option.py +++ b/vrchatapi/models/sort_option.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/subscription.py b/vrchatapi/models/subscription.py index 3af2316d..275fde53 100644 --- a/vrchatapi/models/subscription.py +++ b/vrchatapi/models/subscription.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ @@ -45,7 +45,7 @@ class Subscription(object): 'amount': 'float', 'description': 'str', 'period': 'SubscriptionPeriod', - 'tier': 'float' + 'tier': 'int' } attribute_map = { @@ -314,7 +314,7 @@ def tier(self): :return: The tier of this Subscription. # noqa: E501 - :rtype: float + :rtype: int """ return self._tier @@ -324,7 +324,7 @@ def tier(self, tier): :param tier: The tier of this Subscription. # noqa: E501 - :type tier: float + :type tier: int """ if self.local_vars_configuration.client_side_validation and tier is None: # noqa: E501 raise ValueError("Invalid value for `tier`, must not be `None`") # noqa: E501 diff --git a/vrchatapi/models/subscription_period.py b/vrchatapi/models/subscription_period.py index 70f87fae..c349f09b 100644 --- a/vrchatapi/models/subscription_period.py +++ b/vrchatapi/models/subscription_period.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/success.py b/vrchatapi/models/success.py index c03a2b07..19560ad3 100644 --- a/vrchatapi/models/success.py +++ b/vrchatapi/models/success.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/transaction.py b/vrchatapi/models/transaction.py index 35285a03..797b5fe5 100644 --- a/vrchatapi/models/transaction.py +++ b/vrchatapi/models/transaction.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/transaction_agreement.py b/vrchatapi/models/transaction_agreement.py index d4f02d9a..7afcf8ae 100644 --- a/vrchatapi/models/transaction_agreement.py +++ b/vrchatapi/models/transaction_agreement.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ @@ -37,11 +37,11 @@ class TransactionAgreement(object): """ openapi_types = { 'agreement_id': 'str', - 'item_id': 'float', + 'item_id': 'int', 'agreement': 'str', 'status': 'str', 'period': 'str', - 'frequency': 'float', + 'frequency': 'int', 'billing_type': 'str', 'start_date': 'str', 'end_date': 'str', @@ -52,8 +52,8 @@ class TransactionAgreement(object): 'last_payment': 'str', 'last_amount': 'float', 'last_amount_vat': 'float', - 'outstanding': 'float', - 'failed_attempts': 'float' + 'outstanding': 'int', + 'failed_attempts': 'int' } attribute_map = { @@ -154,7 +154,7 @@ def item_id(self): :return: The item_id of this TransactionAgreement. # noqa: E501 - :rtype: float + :rtype: int """ return self._item_id @@ -164,7 +164,7 @@ def item_id(self, item_id): :param item_id: The item_id of this TransactionAgreement. # noqa: E501 - :type item_id: float + :type item_id: int """ if self.local_vars_configuration.client_side_validation and item_id is None: # noqa: E501 raise ValueError("Invalid value for `item_id`, must not be `None`") # noqa: E501 @@ -254,7 +254,7 @@ def frequency(self): :return: The frequency of this TransactionAgreement. # noqa: E501 - :rtype: float + :rtype: int """ return self._frequency @@ -264,7 +264,7 @@ def frequency(self, frequency): :param frequency: The frequency of this TransactionAgreement. # noqa: E501 - :type frequency: float + :type frequency: int """ if self.local_vars_configuration.client_side_validation and frequency is None: # noqa: E501 raise ValueError("Invalid value for `frequency`, must not be `None`") # noqa: E501 @@ -528,7 +528,7 @@ def outstanding(self): :return: The outstanding of this TransactionAgreement. # noqa: E501 - :rtype: float + :rtype: int """ return self._outstanding @@ -538,7 +538,7 @@ def outstanding(self, outstanding): :param outstanding: The outstanding of this TransactionAgreement. # noqa: E501 - :type outstanding: float + :type outstanding: int """ if self.local_vars_configuration.client_side_validation and outstanding is None: # noqa: E501 raise ValueError("Invalid value for `outstanding`, must not be `None`") # noqa: E501 @@ -551,7 +551,7 @@ def failed_attempts(self): :return: The failed_attempts of this TransactionAgreement. # noqa: E501 - :rtype: float + :rtype: int """ return self._failed_attempts @@ -561,7 +561,7 @@ def failed_attempts(self, failed_attempts): :param failed_attempts: The failed_attempts of this TransactionAgreement. # noqa: E501 - :type failed_attempts: float + :type failed_attempts: int """ if self.local_vars_configuration.client_side_validation and failed_attempts is None: # noqa: E501 raise ValueError("Invalid value for `failed_attempts`, must not be `None`") # noqa: E501 diff --git a/vrchatapi/models/transaction_status.py b/vrchatapi/models/transaction_status.py index e874b84d..744541f5 100644 --- a/vrchatapi/models/transaction_status.py +++ b/vrchatapi/models/transaction_status.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/transaction_steam_info.py b/vrchatapi/models/transaction_steam_info.py index 14e2a33d..224109f3 100644 --- a/vrchatapi/models/transaction_steam_info.py +++ b/vrchatapi/models/transaction_steam_info.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/transaction_steam_wallet_info.py b/vrchatapi/models/transaction_steam_wallet_info.py index e4da9a25..e48ea018 100644 --- a/vrchatapi/models/transaction_steam_wallet_info.py +++ b/vrchatapi/models/transaction_steam_wallet_info.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/two_factor_auth_code.py b/vrchatapi/models/two_factor_auth_code.py index 82b0730c..c9813b7f 100644 --- a/vrchatapi/models/two_factor_auth_code.py +++ b/vrchatapi/models/two_factor_auth_code.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/two_factor_email_code.py b/vrchatapi/models/two_factor_email_code.py index 992c15b4..43677df0 100644 --- a/vrchatapi/models/two_factor_email_code.py +++ b/vrchatapi/models/two_factor_email_code.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/unity_package.py b/vrchatapi/models/unity_package.py index bd95ce66..0d4fec68 100644 --- a/vrchatapi/models/unity_package.py +++ b/vrchatapi/models/unity_package.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ @@ -41,6 +41,7 @@ class UnityPackage(object): 'asset_url_object': 'object', 'asset_version': 'int', 'created_at': 'datetime', + 'impostorizer_version': 'str', 'platform': 'str', 'plugin_url': 'str', 'plugin_url_object': 'object', @@ -57,6 +58,7 @@ class UnityPackage(object): 'asset_url_object': 'assetUrlObject', 'asset_version': 'assetVersion', 'created_at': 'created_at', + 'impostorizer_version': 'impostorizerVersion', 'platform': 'platform', 'plugin_url': 'pluginUrl', 'plugin_url_object': 'pluginUrlObject', @@ -67,7 +69,7 @@ class UnityPackage(object): 'variant': 'variant' } - def __init__(self, id=None, asset_url=None, asset_url_object=None, asset_version=None, created_at=None, platform=None, plugin_url=None, plugin_url_object=None, unity_sort_number=None, unity_version='5.3.4p1', impostor_url=None, scan_status=None, variant=None, local_vars_configuration=None): # noqa: E501 + def __init__(self, id=None, asset_url=None, asset_url_object=None, asset_version=None, created_at=None, impostorizer_version=None, platform=None, plugin_url=None, plugin_url_object=None, unity_sort_number=None, unity_version='5.3.4p1', impostor_url=None, scan_status=None, variant=None, local_vars_configuration=None): # noqa: E501 """UnityPackage - a model defined in OpenAPI""" # noqa: E501 if local_vars_configuration is None: local_vars_configuration = Configuration.get_default_copy() @@ -78,6 +80,7 @@ def __init__(self, id=None, asset_url=None, asset_url_object=None, asset_version self._asset_url_object = None self._asset_version = None self._created_at = None + self._impostorizer_version = None self._platform = None self._plugin_url = None self._plugin_url_object = None @@ -95,6 +98,8 @@ def __init__(self, id=None, asset_url=None, asset_url_object=None, asset_version self.asset_version = asset_version if created_at is not None: self.created_at = created_at + if impostorizer_version is not None: + self.impostorizer_version = impostorizer_version self.platform = platform if plugin_url is not None: self.plugin_url = plugin_url @@ -221,6 +226,27 @@ def created_at(self, created_at): self._created_at = created_at + @property + def impostorizer_version(self): + """Gets the impostorizer_version of this UnityPackage. # noqa: E501 + + + :return: The impostorizer_version of this UnityPackage. # noqa: E501 + :rtype: str + """ + return self._impostorizer_version + + @impostorizer_version.setter + def impostorizer_version(self, impostorizer_version): + """Sets the impostorizer_version of this UnityPackage. + + + :param impostorizer_version: The impostorizer_version of this UnityPackage. # noqa: E501 + :type impostorizer_version: str + """ + + self._impostorizer_version = impostorizer_version + @property def platform(self): """Gets the platform of this UnityPackage. # noqa: E501 diff --git a/vrchatapi/models/update_avatar_request.py b/vrchatapi/models/update_avatar_request.py index a6d3e0c2..fddb9ff3 100644 --- a/vrchatapi/models/update_avatar_request.py +++ b/vrchatapi/models/update_avatar_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ @@ -43,7 +43,7 @@ class UpdateAvatarRequest(object): 'tags': 'list[str]', 'image_url': 'str', 'release_status': 'ReleaseStatus', - 'version': 'float', + 'version': 'int', 'unity_package_url': 'str', 'unity_version': 'str' } @@ -264,7 +264,7 @@ def version(self): :return: The version of this UpdateAvatarRequest. # noqa: E501 - :rtype: float + :rtype: int """ return self._version @@ -274,7 +274,7 @@ def version(self, version): :param version: The version of this UpdateAvatarRequest. # noqa: E501 - :type version: float + :type version: int """ if (self.local_vars_configuration.client_side_validation and version is not None and version < 0): # noqa: E501 diff --git a/vrchatapi/models/update_favorite_group_request.py b/vrchatapi/models/update_favorite_group_request.py index 6d2d5f18..40bd6bd6 100644 --- a/vrchatapi/models/update_favorite_group_request.py +++ b/vrchatapi/models/update_favorite_group_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/update_group_gallery_request.py b/vrchatapi/models/update_group_gallery_request.py index 73d6a8a3..917ee16a 100644 --- a/vrchatapi/models/update_group_gallery_request.py +++ b/vrchatapi/models/update_group_gallery_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/update_group_member_request.py b/vrchatapi/models/update_group_member_request.py index d0721e05..c9accc70 100644 --- a/vrchatapi/models/update_group_member_request.py +++ b/vrchatapi/models/update_group_member_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/update_group_request.py b/vrchatapi/models/update_group_request.py index 4e028859..553dc61c 100644 --- a/vrchatapi/models/update_group_request.py +++ b/vrchatapi/models/update_group_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/update_group_role_request.py b/vrchatapi/models/update_group_role_request.py index 6e7a5f33..7bf3ec13 100644 --- a/vrchatapi/models/update_group_role_request.py +++ b/vrchatapi/models/update_group_role_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/update_invite_message_request.py b/vrchatapi/models/update_invite_message_request.py index 25a8ab3b..b4c5c22e 100644 --- a/vrchatapi/models/update_invite_message_request.py +++ b/vrchatapi/models/update_invite_message_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/update_user_request.py b/vrchatapi/models/update_user_request.py index 3412f4a1..9f712224 100644 --- a/vrchatapi/models/update_user_request.py +++ b/vrchatapi/models/update_user_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ @@ -38,7 +38,7 @@ class UpdateUserRequest(object): openapi_types = { 'email': 'str', 'birthday': 'date', - 'accepted_tos_version': 'float', + 'accepted_tos_version': 'int', 'tags': 'list[str]', 'status': 'UserStatus', 'status_description': 'str', @@ -153,7 +153,7 @@ def accepted_tos_version(self): :return: The accepted_tos_version of this UpdateUserRequest. # noqa: E501 - :rtype: float + :rtype: int """ return self._accepted_tos_version @@ -163,7 +163,7 @@ def accepted_tos_version(self, accepted_tos_version): :param accepted_tos_version: The accepted_tos_version of this UpdateUserRequest. # noqa: E501 - :type accepted_tos_version: float + :type accepted_tos_version: int """ self._accepted_tos_version = accepted_tos_version diff --git a/vrchatapi/models/update_world_request.py b/vrchatapi/models/update_world_request.py index 1e25c609..4952ba93 100644 --- a/vrchatapi/models/update_world_request.py +++ b/vrchatapi/models/update_world_request.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/user.py b/vrchatapi/models/user.py index 8202f3ab..7fcc6efc 100644 --- a/vrchatapi/models/user.py +++ b/vrchatapi/models/user.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ @@ -53,6 +53,7 @@ class User(object): 'is_friend': 'bool', 'last_activity': 'str', 'last_login': 'str', + 'last_mobile': 'str', 'last_platform': 'str', 'location': 'str', 'note': 'str', @@ -90,6 +91,7 @@ class User(object): 'is_friend': 'isFriend', 'last_activity': 'last_activity', 'last_login': 'last_login', + 'last_mobile': 'last_mobile', 'last_platform': 'last_platform', 'location': 'location', 'note': 'note', @@ -109,7 +111,7 @@ class User(object): 'world_id': 'worldId' } - def __init__(self, allow_avatar_copying=True, badges=None, bio=None, bio_links=None, current_avatar_image_url=None, current_avatar_thumbnail_image_url=None, current_avatar_tags=None, date_joined=None, developer_type=None, display_name=None, friend_key=None, friend_request_status=None, id=None, instance_id=None, is_friend=None, last_activity=None, last_login=None, last_platform=None, location=None, note=None, platform=None, profile_pic_override=None, profile_pic_override_thumbnail=None, pronouns=None, state=None, status=None, status_description=None, tags=None, traveling_to_instance=None, traveling_to_location=None, traveling_to_world=None, user_icon=None, username=None, world_id=None, local_vars_configuration=None): # noqa: E501 + def __init__(self, allow_avatar_copying=True, badges=None, bio=None, bio_links=None, current_avatar_image_url=None, current_avatar_thumbnail_image_url=None, current_avatar_tags=None, date_joined=None, developer_type=None, display_name=None, friend_key=None, friend_request_status=None, id=None, instance_id=None, is_friend=None, last_activity=None, last_login=None, last_mobile=None, last_platform=None, location=None, note=None, platform=None, profile_pic_override=None, profile_pic_override_thumbnail=None, pronouns=None, state=None, status=None, status_description=None, tags=None, traveling_to_instance=None, traveling_to_location=None, traveling_to_world=None, user_icon=None, username=None, world_id=None, local_vars_configuration=None): # noqa: E501 """User - a model defined in OpenAPI""" # noqa: E501 if local_vars_configuration is None: local_vars_configuration = Configuration.get_default_copy() @@ -132,6 +134,7 @@ def __init__(self, allow_avatar_copying=True, badges=None, bio=None, bio_links=N self._is_friend = None self._last_activity = None self._last_login = None + self._last_mobile = None self._last_platform = None self._location = None self._note = None @@ -171,12 +174,14 @@ def __init__(self, allow_avatar_copying=True, badges=None, bio=None, bio_links=N self.is_friend = is_friend self.last_activity = last_activity self.last_login = last_login + self.last_mobile = last_mobile self.last_platform = last_platform if location is not None: self.location = location if note is not None: self.note = note - self.platform = platform + if platform is not None: + self.platform = platform self.profile_pic_override = profile_pic_override self.profile_pic_override_thumbnail = profile_pic_override_thumbnail self.pronouns = pronouns @@ -605,6 +610,27 @@ def last_login(self, last_login): self._last_login = last_login + @property + def last_mobile(self): + """Gets the last_mobile of this User. # noqa: E501 + + + :return: The last_mobile of this User. # noqa: E501 + :rtype: str + """ + return self._last_mobile + + @last_mobile.setter + def last_mobile(self, last_mobile): + """Sets the last_mobile of this User. + + + :param last_mobile: The last_mobile of this User. # noqa: E501 + :type last_mobile: str + """ + + self._last_mobile = last_mobile + @property def last_platform(self): """Gets the last_platform of this User. # noqa: E501 @@ -692,8 +718,6 @@ def platform(self, platform): :param platform: The platform of this User. # noqa: E501 :type platform: str """ - if self.local_vars_configuration.client_side_validation and platform is None: # noqa: E501 - raise ValueError("Invalid value for `platform`, must not be `None`") # noqa: E501 self._platform = platform diff --git a/vrchatapi/models/user_exists.py b/vrchatapi/models/user_exists.py index 9b9989aa..4148cb97 100644 --- a/vrchatapi/models/user_exists.py +++ b/vrchatapi/models/user_exists.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/user_state.py b/vrchatapi/models/user_state.py index cca3a74a..a3c9c5e6 100644 --- a/vrchatapi/models/user_state.py +++ b/vrchatapi/models/user_state.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/user_status.py b/vrchatapi/models/user_status.py index c3806dc0..3f8114cb 100644 --- a/vrchatapi/models/user_status.py +++ b/vrchatapi/models/user_status.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/user_subscription.py b/vrchatapi/models/user_subscription.py index 3c64f8ee..d3d5e23c 100644 --- a/vrchatapi/models/user_subscription.py +++ b/vrchatapi/models/user_subscription.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ @@ -43,7 +43,7 @@ class UserSubscription(object): 'amount': 'float', 'description': 'str', 'period': 'SubscriptionPeriod', - 'tier': 'float', + 'tier': 'int', 'active': 'bool', 'status': 'TransactionStatus', 'starts': 'str', @@ -292,7 +292,7 @@ def tier(self): :return: The tier of this UserSubscription. # noqa: E501 - :rtype: float + :rtype: int """ return self._tier @@ -302,7 +302,7 @@ def tier(self, tier): :param tier: The tier of this UserSubscription. # noqa: E501 - :type tier: float + :type tier: int """ if self.local_vars_configuration.client_side_validation and tier is None: # noqa: E501 raise ValueError("Invalid value for `tier`, must not be `None`") # noqa: E501 diff --git a/vrchatapi/models/verify2_fa_email_code_result.py b/vrchatapi/models/verify2_fa_email_code_result.py index 2c169db0..50dbb7f7 100644 --- a/vrchatapi/models/verify2_fa_email_code_result.py +++ b/vrchatapi/models/verify2_fa_email_code_result.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/verify2_fa_result.py b/vrchatapi/models/verify2_fa_result.py index f43c8e45..bb8a3d20 100644 --- a/vrchatapi/models/verify2_fa_result.py +++ b/vrchatapi/models/verify2_fa_result.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/verify_auth_token_result.py b/vrchatapi/models/verify_auth_token_result.py index 6b0e2b07..055ed4a7 100644 --- a/vrchatapi/models/verify_auth_token_result.py +++ b/vrchatapi/models/verify_auth_token_result.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/world.py b/vrchatapi/models/world.py index eec62d73..7ad741a0 100644 --- a/vrchatapi/models/world.py +++ b/vrchatapi/models/world.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/world_metadata.py b/vrchatapi/models/world_metadata.py index 1d363af1..ae648050 100644 --- a/vrchatapi/models/world_metadata.py +++ b/vrchatapi/models/world_metadata.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/models/world_publish_status.py b/vrchatapi/models/world_publish_status.py index 86e3f457..9bbec366 100644 --- a/vrchatapi/models/world_publish_status.py +++ b/vrchatapi/models/world_publish_status.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """ diff --git a/vrchatapi/rest.py b/vrchatapi/rest.py index f9d61fca..08e1db9f 100644 --- a/vrchatapi/rest.py +++ b/vrchatapi/rest.py @@ -4,7 +4,7 @@ VRChat API Documentation - The version of the OpenAPI document: 1.18.1 + The version of the OpenAPI document: 1.18.4 Contact: vrchatapi.lpv0t@aries.fyi Generated by: https://openapi-generator.tech """