diff --git a/build.gradle b/build.gradle index 4f720fbb..86ad375c 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ apply plugin: 'java' apply plugin: 'com.diffplug.spotless' group = 'io.github.vrchatapi' -version = '1.17.5' +version = '1.17.6' buildscript { repositories { diff --git a/build.sbt b/build.sbt index 70c78315..6ec4b066 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ lazy val root = (project in file(".")). settings( organization := "io.github.vrchatapi", name := "vrchatapi", - version := "1.17.5", + version := "1.17.6", scalaVersion := "2.11.4", scalacOptions ++= Seq("-feature"), javacOptions in compile ++= Seq("-Xlint:deprecation"), diff --git a/docs/CurrentUser.md b/docs/CurrentUser.md index 52256f26..c75b02da 100644 --- a/docs/CurrentUser.md +++ b/docs/CurrentUser.md @@ -38,6 +38,7 @@ |**hasPendingEmail** | **Boolean** | | | |**homeLocation** | **String** | WorldID be \"offline\" on User profiles if you are not friends with that user. | | |**id** | **String** | 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. | | +|**isBoopingEnabled** | **Boolean** | | [optional] | |**isFriend** | **Boolean** | | | |**lastActivity** | **OffsetDateTime** | | [optional] | |**lastLogin** | **OffsetDateTime** | | | @@ -55,6 +56,7 @@ |**pastDisplayNames** | [**List<PastDisplayName>**](PastDisplayName.md) | | | |**presence** | [**CurrentUserPresence**](CurrentUserPresence.md) | | [optional] | |**profilePicOverride** | **String** | | | +|**profilePicOverrideThumbnail** | **String** | | | |**pronouns** | **String** | | | |**state** | **UserState** | | | |**status** | **UserStatus** | | | diff --git a/docs/GroupMemberStatus.md b/docs/GroupMemberStatus.md index fde4e619..22d60f8c 100644 --- a/docs/GroupMemberStatus.md +++ b/docs/GroupMemberStatus.md @@ -15,5 +15,7 @@ * `BANNED` (value: `"banned"`) +* `USERBLOCKED` (value: `"userblocked"`) + diff --git a/docs/UpdateUserRequest.md b/docs/UpdateUserRequest.md index af317cf9..367be9d9 100644 --- a/docs/UpdateUserRequest.md +++ b/docs/UpdateUserRequest.md @@ -16,6 +16,7 @@ |**bio** | **String** | | [optional] | |**bioLinks** | **List<String>** | | [optional] | |**pronouns** | **String** | | [optional] | +|**isBoopingEnabled** | **Boolean** | | [optional] | |**userIcon** | **String** | MUST be a valid VRChat /file/ url. | [optional] | diff --git a/docs/User.md b/docs/User.md index ed8c0815..be40349a 100644 --- a/docs/User.md +++ b/docs/User.md @@ -28,6 +28,7 @@ |**location** | **String** | WorldID be \"offline\" on User profiles if you are not friends with that user. | [optional] | |**note** | **String** | | [optional] | |**profilePicOverride** | **String** | | | +|**profilePicOverrideThumbnail** | **String** | | | |**pronouns** | **String** | | | |**state** | **UserState** | | | |**status** | **UserStatus** | | | diff --git a/pom.xml b/pom.xml index 73d26811..48ffe1b9 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ vrchatapi jar vrchatapi - 1.17.5 + 1.17.6 https://github.com/openapitools/openapi-generator OpenAPI Java diff --git a/src/main/java/io/github/vrchatapi/ApiCallback.java b/src/main/java/io/github/vrchatapi/ApiCallback.java index 7e49d733..0cb93cf0 100644 --- a/src/main/java/io/github/vrchatapi/ApiCallback.java +++ b/src/main/java/io/github/vrchatapi/ApiCallback.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/ApiClient.java b/src/main/java/io/github/vrchatapi/ApiClient.java index 26007a31..fd3e2d0f 100644 --- a/src/main/java/io/github/vrchatapi/ApiClient.java +++ b/src/main/java/io/github/vrchatapi/ApiClient.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/ApiException.java b/src/main/java/io/github/vrchatapi/ApiException.java index 3ad6cc8a..9d6ab2b2 100644 --- a/src/main/java/io/github/vrchatapi/ApiException.java +++ b/src/main/java/io/github/vrchatapi/ApiException.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/ApiResponse.java b/src/main/java/io/github/vrchatapi/ApiResponse.java index 8bfddf43..55c962ba 100644 --- a/src/main/java/io/github/vrchatapi/ApiResponse.java +++ b/src/main/java/io/github/vrchatapi/ApiResponse.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/Configuration.java b/src/main/java/io/github/vrchatapi/Configuration.java index e6d72e98..099357b5 100644 --- a/src/main/java/io/github/vrchatapi/Configuration.java +++ b/src/main/java/io/github/vrchatapi/Configuration.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/GzipRequestInterceptor.java b/src/main/java/io/github/vrchatapi/GzipRequestInterceptor.java index 9bc79740..8856d99e 100644 --- a/src/main/java/io/github/vrchatapi/GzipRequestInterceptor.java +++ b/src/main/java/io/github/vrchatapi/GzipRequestInterceptor.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/JSON.java b/src/main/java/io/github/vrchatapi/JSON.java index 35dc33f5..1f7b2a67 100644 --- a/src/main/java/io/github/vrchatapi/JSON.java +++ b/src/main/java/io/github/vrchatapi/JSON.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/Pair.java b/src/main/java/io/github/vrchatapi/Pair.java index c6b9fcca..5583ec07 100644 --- a/src/main/java/io/github/vrchatapi/Pair.java +++ b/src/main/java/io/github/vrchatapi/Pair.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/ProgressRequestBody.java b/src/main/java/io/github/vrchatapi/ProgressRequestBody.java index 6a40f1da..aa54ff6e 100644 --- a/src/main/java/io/github/vrchatapi/ProgressRequestBody.java +++ b/src/main/java/io/github/vrchatapi/ProgressRequestBody.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/ProgressResponseBody.java b/src/main/java/io/github/vrchatapi/ProgressResponseBody.java index bb713edf..3928d7b6 100644 --- a/src/main/java/io/github/vrchatapi/ProgressResponseBody.java +++ b/src/main/java/io/github/vrchatapi/ProgressResponseBody.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/StringUtil.java b/src/main/java/io/github/vrchatapi/StringUtil.java index cdb18bcb..7ca923b3 100644 --- a/src/main/java/io/github/vrchatapi/StringUtil.java +++ b/src/main/java/io/github/vrchatapi/StringUtil.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/api/AuthenticationApi.java b/src/main/java/io/github/vrchatapi/api/AuthenticationApi.java index b7065c0b..8e4d5872 100644 --- a/src/main/java/io/github/vrchatapi/api/AuthenticationApi.java +++ b/src/main/java/io/github/vrchatapi/api/AuthenticationApi.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/api/AvatarsApi.java b/src/main/java/io/github/vrchatapi/api/AvatarsApi.java index dc04a38d..1690e3bf 100644 --- a/src/main/java/io/github/vrchatapi/api/AvatarsApi.java +++ b/src/main/java/io/github/vrchatapi/api/AvatarsApi.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/api/EconomyApi.java b/src/main/java/io/github/vrchatapi/api/EconomyApi.java index 794dc699..fe7509f4 100644 --- a/src/main/java/io/github/vrchatapi/api/EconomyApi.java +++ b/src/main/java/io/github/vrchatapi/api/EconomyApi.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/api/FavoritesApi.java b/src/main/java/io/github/vrchatapi/api/FavoritesApi.java index b86c80ee..5b5087bc 100644 --- a/src/main/java/io/github/vrchatapi/api/FavoritesApi.java +++ b/src/main/java/io/github/vrchatapi/api/FavoritesApi.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/api/FilesApi.java b/src/main/java/io/github/vrchatapi/api/FilesApi.java index 7c7c3bb1..686a2e57 100644 --- a/src/main/java/io/github/vrchatapi/api/FilesApi.java +++ b/src/main/java/io/github/vrchatapi/api/FilesApi.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/api/FriendsApi.java b/src/main/java/io/github/vrchatapi/api/FriendsApi.java index 087c1eea..20dde916 100644 --- a/src/main/java/io/github/vrchatapi/api/FriendsApi.java +++ b/src/main/java/io/github/vrchatapi/api/FriendsApi.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/api/GroupsApi.java b/src/main/java/io/github/vrchatapi/api/GroupsApi.java index c31f806f..2d7a137a 100644 --- a/src/main/java/io/github/vrchatapi/api/GroupsApi.java +++ b/src/main/java/io/github/vrchatapi/api/GroupsApi.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/api/InstancesApi.java b/src/main/java/io/github/vrchatapi/api/InstancesApi.java index ee39601d..a692cd5d 100644 --- a/src/main/java/io/github/vrchatapi/api/InstancesApi.java +++ b/src/main/java/io/github/vrchatapi/api/InstancesApi.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/api/InviteApi.java b/src/main/java/io/github/vrchatapi/api/InviteApi.java index ad1938d6..fb9bbf18 100644 --- a/src/main/java/io/github/vrchatapi/api/InviteApi.java +++ b/src/main/java/io/github/vrchatapi/api/InviteApi.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/api/NotificationsApi.java b/src/main/java/io/github/vrchatapi/api/NotificationsApi.java index 7f58d7c1..af22e634 100644 --- a/src/main/java/io/github/vrchatapi/api/NotificationsApi.java +++ b/src/main/java/io/github/vrchatapi/api/NotificationsApi.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/api/PermissionsApi.java b/src/main/java/io/github/vrchatapi/api/PermissionsApi.java index 82131994..71e36927 100644 --- a/src/main/java/io/github/vrchatapi/api/PermissionsApi.java +++ b/src/main/java/io/github/vrchatapi/api/PermissionsApi.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/api/PlayermoderationApi.java b/src/main/java/io/github/vrchatapi/api/PlayermoderationApi.java index 6876109d..8a479d49 100644 --- a/src/main/java/io/github/vrchatapi/api/PlayermoderationApi.java +++ b/src/main/java/io/github/vrchatapi/api/PlayermoderationApi.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/api/SystemApi.java b/src/main/java/io/github/vrchatapi/api/SystemApi.java index 5767d063..d9808fa1 100644 --- a/src/main/java/io/github/vrchatapi/api/SystemApi.java +++ b/src/main/java/io/github/vrchatapi/api/SystemApi.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/api/UsersApi.java b/src/main/java/io/github/vrchatapi/api/UsersApi.java index d1685d09..51caa009 100644 --- a/src/main/java/io/github/vrchatapi/api/UsersApi.java +++ b/src/main/java/io/github/vrchatapi/api/UsersApi.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/api/WorldsApi.java b/src/main/java/io/github/vrchatapi/api/WorldsApi.java index f22d1497..ed4aec3d 100644 --- a/src/main/java/io/github/vrchatapi/api/WorldsApi.java +++ b/src/main/java/io/github/vrchatapi/api/WorldsApi.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/auth/ApiKeyAuth.java b/src/main/java/io/github/vrchatapi/auth/ApiKeyAuth.java index 4dceebe5..ba9e686e 100644 --- a/src/main/java/io/github/vrchatapi/auth/ApiKeyAuth.java +++ b/src/main/java/io/github/vrchatapi/auth/ApiKeyAuth.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/auth/Authentication.java b/src/main/java/io/github/vrchatapi/auth/Authentication.java index a7ed4407..fd318441 100644 --- a/src/main/java/io/github/vrchatapi/auth/Authentication.java +++ b/src/main/java/io/github/vrchatapi/auth/Authentication.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/auth/HttpBasicAuth.java b/src/main/java/io/github/vrchatapi/auth/HttpBasicAuth.java index 92406b8a..8b9e5ec7 100644 --- a/src/main/java/io/github/vrchatapi/auth/HttpBasicAuth.java +++ b/src/main/java/io/github/vrchatapi/auth/HttpBasicAuth.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/auth/HttpBearerAuth.java b/src/main/java/io/github/vrchatapi/auth/HttpBearerAuth.java index ec721beb..47e93270 100644 --- a/src/main/java/io/github/vrchatapi/auth/HttpBearerAuth.java +++ b/src/main/java/io/github/vrchatapi/auth/HttpBearerAuth.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/APIConfig.java b/src/main/java/io/github/vrchatapi/model/APIConfig.java index 3e0a72ed..146e54bb 100644 --- a/src/main/java/io/github/vrchatapi/model/APIConfig.java +++ b/src/main/java/io/github/vrchatapi/model/APIConfig.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/APIConfigAnnouncement.java b/src/main/java/io/github/vrchatapi/model/APIConfigAnnouncement.java index ad598a78..f99cc828 100644 --- a/src/main/java/io/github/vrchatapi/model/APIConfigAnnouncement.java +++ b/src/main/java/io/github/vrchatapi/model/APIConfigAnnouncement.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/APIConfigDownloadURLList.java b/src/main/java/io/github/vrchatapi/model/APIConfigDownloadURLList.java index 5e3c71ac..69960766 100644 --- a/src/main/java/io/github/vrchatapi/model/APIConfigDownloadURLList.java +++ b/src/main/java/io/github/vrchatapi/model/APIConfigDownloadURLList.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/APIConfigEvents.java b/src/main/java/io/github/vrchatapi/model/APIConfigEvents.java index 2a0df216..3d678787 100644 --- a/src/main/java/io/github/vrchatapi/model/APIConfigEvents.java +++ b/src/main/java/io/github/vrchatapi/model/APIConfigEvents.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/APIHealth.java b/src/main/java/io/github/vrchatapi/model/APIHealth.java index 21e28fa1..5b21acc5 100644 --- a/src/main/java/io/github/vrchatapi/model/APIHealth.java +++ b/src/main/java/io/github/vrchatapi/model/APIHealth.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/AbstractOpenApiSchema.java b/src/main/java/io/github/vrchatapi/model/AbstractOpenApiSchema.java index 5a90f455..03e6879f 100644 --- a/src/main/java/io/github/vrchatapi/model/AbstractOpenApiSchema.java +++ b/src/main/java/io/github/vrchatapi/model/AbstractOpenApiSchema.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/AccountDeletionLog.java b/src/main/java/io/github/vrchatapi/model/AccountDeletionLog.java index d986d976..3a54cb2a 100644 --- a/src/main/java/io/github/vrchatapi/model/AccountDeletionLog.java +++ b/src/main/java/io/github/vrchatapi/model/AccountDeletionLog.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/AddFavoriteRequest.java b/src/main/java/io/github/vrchatapi/model/AddFavoriteRequest.java index 82d4b11f..c551dfb3 100644 --- a/src/main/java/io/github/vrchatapi/model/AddFavoriteRequest.java +++ b/src/main/java/io/github/vrchatapi/model/AddFavoriteRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/AddGroupGalleryImageRequest.java b/src/main/java/io/github/vrchatapi/model/AddGroupGalleryImageRequest.java index a3815c9e..b618eed1 100644 --- a/src/main/java/io/github/vrchatapi/model/AddGroupGalleryImageRequest.java +++ b/src/main/java/io/github/vrchatapi/model/AddGroupGalleryImageRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/Avatar.java b/src/main/java/io/github/vrchatapi/model/Avatar.java index 2b58260b..48fc9613 100644 --- a/src/main/java/io/github/vrchatapi/model/Avatar.java +++ b/src/main/java/io/github/vrchatapi/model/Avatar.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/AvatarUnityPackageUrlObject.java b/src/main/java/io/github/vrchatapi/model/AvatarUnityPackageUrlObject.java index 211ca0c4..5bba522a 100644 --- a/src/main/java/io/github/vrchatapi/model/AvatarUnityPackageUrlObject.java +++ b/src/main/java/io/github/vrchatapi/model/AvatarUnityPackageUrlObject.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/Badge.java b/src/main/java/io/github/vrchatapi/model/Badge.java index 838daff4..26ab8150 100644 --- a/src/main/java/io/github/vrchatapi/model/Badge.java +++ b/src/main/java/io/github/vrchatapi/model/Badge.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/BanGroupMemberRequest.java b/src/main/java/io/github/vrchatapi/model/BanGroupMemberRequest.java index cb7e4d73..998b1452 100644 --- a/src/main/java/io/github/vrchatapi/model/BanGroupMemberRequest.java +++ b/src/main/java/io/github/vrchatapi/model/BanGroupMemberRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/CreateAvatarRequest.java b/src/main/java/io/github/vrchatapi/model/CreateAvatarRequest.java index ec5a7f72..96eb582c 100644 --- a/src/main/java/io/github/vrchatapi/model/CreateAvatarRequest.java +++ b/src/main/java/io/github/vrchatapi/model/CreateAvatarRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/CreateFileRequest.java b/src/main/java/io/github/vrchatapi/model/CreateFileRequest.java index 40b40ce9..8e6075cf 100644 --- a/src/main/java/io/github/vrchatapi/model/CreateFileRequest.java +++ b/src/main/java/io/github/vrchatapi/model/CreateFileRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/CreateFileVersionRequest.java b/src/main/java/io/github/vrchatapi/model/CreateFileVersionRequest.java index 616f1c54..f251bd3e 100644 --- a/src/main/java/io/github/vrchatapi/model/CreateFileVersionRequest.java +++ b/src/main/java/io/github/vrchatapi/model/CreateFileVersionRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/CreateGroupAnnouncementRequest.java b/src/main/java/io/github/vrchatapi/model/CreateGroupAnnouncementRequest.java index c43d239e..87fd53ff 100644 --- a/src/main/java/io/github/vrchatapi/model/CreateGroupAnnouncementRequest.java +++ b/src/main/java/io/github/vrchatapi/model/CreateGroupAnnouncementRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/CreateGroupGalleryRequest.java b/src/main/java/io/github/vrchatapi/model/CreateGroupGalleryRequest.java index 6dfb7445..de75643d 100644 --- a/src/main/java/io/github/vrchatapi/model/CreateGroupGalleryRequest.java +++ b/src/main/java/io/github/vrchatapi/model/CreateGroupGalleryRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/CreateGroupInviteRequest.java b/src/main/java/io/github/vrchatapi/model/CreateGroupInviteRequest.java index b02a67b2..0a595c72 100644 --- a/src/main/java/io/github/vrchatapi/model/CreateGroupInviteRequest.java +++ b/src/main/java/io/github/vrchatapi/model/CreateGroupInviteRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/CreateGroupPostRequest.java b/src/main/java/io/github/vrchatapi/model/CreateGroupPostRequest.java index edb3832e..1f7db6a3 100644 --- a/src/main/java/io/github/vrchatapi/model/CreateGroupPostRequest.java +++ b/src/main/java/io/github/vrchatapi/model/CreateGroupPostRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/CreateGroupRequest.java b/src/main/java/io/github/vrchatapi/model/CreateGroupRequest.java index 2641d44e..ad962ae7 100644 --- a/src/main/java/io/github/vrchatapi/model/CreateGroupRequest.java +++ b/src/main/java/io/github/vrchatapi/model/CreateGroupRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/CreateGroupRoleRequest.java b/src/main/java/io/github/vrchatapi/model/CreateGroupRoleRequest.java index dcc7e5a5..a5a86b9a 100644 --- a/src/main/java/io/github/vrchatapi/model/CreateGroupRoleRequest.java +++ b/src/main/java/io/github/vrchatapi/model/CreateGroupRoleRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/CreateInstanceRequest.java b/src/main/java/io/github/vrchatapi/model/CreateInstanceRequest.java index 635afddb..97f71874 100644 --- a/src/main/java/io/github/vrchatapi/model/CreateInstanceRequest.java +++ b/src/main/java/io/github/vrchatapi/model/CreateInstanceRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/CreateWorldRequest.java b/src/main/java/io/github/vrchatapi/model/CreateWorldRequest.java index d4ef233e..9b7b408e 100644 --- a/src/main/java/io/github/vrchatapi/model/CreateWorldRequest.java +++ b/src/main/java/io/github/vrchatapi/model/CreateWorldRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/CurrentUser.java b/src/main/java/io/github/vrchatapi/model/CurrentUser.java index df620c57..75bdd4f3 100644 --- a/src/main/java/io/github/vrchatapi/model/CurrentUser.java +++ b/src/main/java/io/github/vrchatapi/model/CurrentUser.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -185,6 +185,10 @@ public class CurrentUser { @SerializedName(SERIALIZED_NAME_ID) private String id; + public static final String SERIALIZED_NAME_IS_BOOPING_ENABLED = "isBoopingEnabled"; + @SerializedName(SERIALIZED_NAME_IS_BOOPING_ENABLED) + private Boolean isBoopingEnabled = true; + public static final String SERIALIZED_NAME_IS_FRIEND = "isFriend"; @SerializedName(SERIALIZED_NAME_IS_FRIEND) private Boolean isFriend = false; @@ -253,6 +257,10 @@ public class CurrentUser { @SerializedName(SERIALIZED_NAME_PROFILE_PIC_OVERRIDE) private String profilePicOverride; + public static final String SERIALIZED_NAME_PROFILE_PIC_OVERRIDE_THUMBNAIL = "profilePicOverrideThumbnail"; + @SerializedName(SERIALIZED_NAME_PROFILE_PIC_OVERRIDE_THUMBNAIL) + private String profilePicOverrideThumbnail; + public static final String SERIALIZED_NAME_PRONOUNS = "pronouns"; @SerializedName(SERIALIZED_NAME_PRONOUNS) private String pronouns; @@ -1077,6 +1085,29 @@ public void setId(String id) { } + public CurrentUser isBoopingEnabled(Boolean isBoopingEnabled) { + + this.isBoopingEnabled = isBoopingEnabled; + return this; + } + + /** + * Get isBoopingEnabled + * @return isBoopingEnabled + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public Boolean getIsBoopingEnabled() { + return isBoopingEnabled; + } + + + public void setIsBoopingEnabled(Boolean isBoopingEnabled) { + this.isBoopingEnabled = isBoopingEnabled; + } + + public CurrentUser isFriend(Boolean isFriend) { this.isFriend = isFriend; @@ -1489,6 +1520,29 @@ public void setProfilePicOverride(String profilePicOverride) { } + public CurrentUser profilePicOverrideThumbnail(String profilePicOverrideThumbnail) { + + this.profilePicOverrideThumbnail = profilePicOverrideThumbnail; + return this; + } + + /** + * Get profilePicOverrideThumbnail + * @return profilePicOverrideThumbnail + **/ + @javax.annotation.Nonnull + @ApiModelProperty(required = true, value = "") + + public String getProfilePicOverrideThumbnail() { + return profilePicOverrideThumbnail; + } + + + public void setProfilePicOverrideThumbnail(String profilePicOverrideThumbnail) { + this.profilePicOverrideThumbnail = profilePicOverrideThumbnail; + } + + public CurrentUser pronouns(String pronouns) { this.pronouns = pronouns; @@ -1887,6 +1941,7 @@ public boolean equals(Object o) { Objects.equals(this.hasPendingEmail, currentUser.hasPendingEmail) && Objects.equals(this.homeLocation, currentUser.homeLocation) && Objects.equals(this.id, currentUser.id) && + Objects.equals(this.isBoopingEnabled, currentUser.isBoopingEnabled) && Objects.equals(this.isFriend, currentUser.isFriend) && Objects.equals(this.lastActivity, currentUser.lastActivity) && Objects.equals(this.lastLogin, currentUser.lastLogin) && @@ -1904,6 +1959,7 @@ public boolean equals(Object o) { Objects.equals(this.pastDisplayNames, currentUser.pastDisplayNames) && Objects.equals(this.presence, currentUser.presence) && Objects.equals(this.profilePicOverride, currentUser.profilePicOverride) && + Objects.equals(this.profilePicOverrideThumbnail, currentUser.profilePicOverrideThumbnail) && Objects.equals(this.pronouns, currentUser.pronouns) && Objects.equals(this.state, currentUser.state) && Objects.equals(this.status, currentUser.status) && @@ -1927,7 +1983,7 @@ private static boolean equalsNullable(JsonNullable a, JsonNullable b) @Override public int hashCode() { - return Objects.hash(acceptedTOSVersion, acceptedPrivacyVersion, accountDeletionDate, accountDeletionLog, activeFriends, allowAvatarCopying, badges, bio, bioLinks, currentAvatar, currentAvatarAssetUrl, currentAvatarImageUrl, currentAvatarThumbnailImageUrl, currentAvatarTags, dateJoined, developerType, displayName, emailVerified, fallbackAvatar, friendGroupNames, friendKey, friends, hasBirthday, hideContentFilterSettings, userLanguage, userLanguageCode, hasEmail, hasLoggedInFromClient, hasPendingEmail, homeLocation, id, isFriend, lastActivity, lastLogin, lastMobile, lastPlatform, obfuscatedEmail, obfuscatedPendingEmail, oculusId, googleId, googleDetails, picoId, viveId, offlineFriends, onlineFriends, pastDisplayNames, presence, profilePicOverride, pronouns, state, status, statusDescription, statusFirstTime, statusHistory, steamDetails, steamId, tags, twoFactorAuthEnabled, twoFactorAuthEnabledDate, unsubscribe, updatedAt, userIcon, username); + return Objects.hash(acceptedTOSVersion, acceptedPrivacyVersion, accountDeletionDate, accountDeletionLog, activeFriends, allowAvatarCopying, badges, bio, bioLinks, currentAvatar, currentAvatarAssetUrl, currentAvatarImageUrl, currentAvatarThumbnailImageUrl, currentAvatarTags, dateJoined, developerType, displayName, emailVerified, fallbackAvatar, friendGroupNames, friendKey, friends, hasBirthday, hideContentFilterSettings, userLanguage, userLanguageCode, hasEmail, hasLoggedInFromClient, hasPendingEmail, homeLocation, id, isBoopingEnabled, isFriend, lastActivity, lastLogin, lastMobile, lastPlatform, obfuscatedEmail, obfuscatedPendingEmail, oculusId, googleId, googleDetails, picoId, viveId, offlineFriends, onlineFriends, pastDisplayNames, presence, profilePicOverride, profilePicOverrideThumbnail, pronouns, state, status, statusDescription, statusFirstTime, statusHistory, steamDetails, steamId, tags, twoFactorAuthEnabled, twoFactorAuthEnabledDate, unsubscribe, updatedAt, userIcon, username); } private static int hashCodeNullable(JsonNullable a) { @@ -1972,6 +2028,7 @@ public String toString() { sb.append(" hasPendingEmail: ").append(toIndentedString(hasPendingEmail)).append("\n"); sb.append(" homeLocation: ").append(toIndentedString(homeLocation)).append("\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); + sb.append(" isBoopingEnabled: ").append(toIndentedString(isBoopingEnabled)).append("\n"); sb.append(" isFriend: ").append(toIndentedString(isFriend)).append("\n"); sb.append(" lastActivity: ").append(toIndentedString(lastActivity)).append("\n"); sb.append(" lastLogin: ").append(toIndentedString(lastLogin)).append("\n"); @@ -1989,6 +2046,7 @@ public String toString() { sb.append(" pastDisplayNames: ").append(toIndentedString(pastDisplayNames)).append("\n"); sb.append(" presence: ").append(toIndentedString(presence)).append("\n"); sb.append(" profilePicOverride: ").append(toIndentedString(profilePicOverride)).append("\n"); + sb.append(" profilePicOverrideThumbnail: ").append(toIndentedString(profilePicOverrideThumbnail)).append("\n"); sb.append(" pronouns: ").append(toIndentedString(pronouns)).append("\n"); sb.append(" state: ").append(toIndentedString(state)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); @@ -2057,6 +2115,7 @@ private String toIndentedString(Object o) { openapiFields.add("hasPendingEmail"); openapiFields.add("homeLocation"); openapiFields.add("id"); + openapiFields.add("isBoopingEnabled"); openapiFields.add("isFriend"); openapiFields.add("last_activity"); openapiFields.add("last_login"); @@ -2074,6 +2133,7 @@ private String toIndentedString(Object o) { openapiFields.add("pastDisplayNames"); openapiFields.add("presence"); openapiFields.add("profilePicOverride"); + openapiFields.add("profilePicOverrideThumbnail"); openapiFields.add("pronouns"); openapiFields.add("state"); openapiFields.add("status"); @@ -2123,6 +2183,7 @@ private String toIndentedString(Object o) { openapiRequiredFields.add("oculusId"); openapiRequiredFields.add("pastDisplayNames"); openapiRequiredFields.add("profilePicOverride"); + openapiRequiredFields.add("profilePicOverrideThumbnail"); openapiRequiredFields.add("pronouns"); openapiRequiredFields.add("state"); openapiRequiredFields.add("status"); @@ -2302,6 +2363,9 @@ public static void validateJsonObject(JsonObject jsonObj) throws IOException { if (!jsonObj.get("profilePicOverride").isJsonPrimitive()) { throw new IllegalArgumentException(String.format("Expected the field `profilePicOverride` to be a primitive type in the JSON string but got `%s`", jsonObj.get("profilePicOverride").toString())); } + if (!jsonObj.get("profilePicOverrideThumbnail").isJsonPrimitive()) { + throw new IllegalArgumentException(String.format("Expected the field `profilePicOverrideThumbnail` to be a primitive type in the JSON string but got `%s`", jsonObj.get("profilePicOverrideThumbnail").toString())); + } if (!jsonObj.get("pronouns").isJsonPrimitive()) { throw new IllegalArgumentException(String.format("Expected the field `pronouns` to be a primitive type in the JSON string but got `%s`", jsonObj.get("pronouns").toString())); } diff --git a/src/main/java/io/github/vrchatapi/model/CurrentUserPresence.java b/src/main/java/io/github/vrchatapi/model/CurrentUserPresence.java index dd6692ec..12046a8d 100644 --- a/src/main/java/io/github/vrchatapi/model/CurrentUserPresence.java +++ b/src/main/java/io/github/vrchatapi/model/CurrentUserPresence.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/DeploymentGroup.java b/src/main/java/io/github/vrchatapi/model/DeploymentGroup.java index 5a609a41..e22e2d0f 100644 --- a/src/main/java/io/github/vrchatapi/model/DeploymentGroup.java +++ b/src/main/java/io/github/vrchatapi/model/DeploymentGroup.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/DeveloperType.java b/src/main/java/io/github/vrchatapi/model/DeveloperType.java index 2ff2285b..5224e191 100644 --- a/src/main/java/io/github/vrchatapi/model/DeveloperType.java +++ b/src/main/java/io/github/vrchatapi/model/DeveloperType.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/DynamicContentRow.java b/src/main/java/io/github/vrchatapi/model/DynamicContentRow.java index 5e8e87f4..c61c87a5 100644 --- a/src/main/java/io/github/vrchatapi/model/DynamicContentRow.java +++ b/src/main/java/io/github/vrchatapi/model/DynamicContentRow.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/Error.java b/src/main/java/io/github/vrchatapi/model/Error.java index 5a8970c4..3e399c6d 100644 --- a/src/main/java/io/github/vrchatapi/model/Error.java +++ b/src/main/java/io/github/vrchatapi/model/Error.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/Favorite.java b/src/main/java/io/github/vrchatapi/model/Favorite.java index 4b180627..d4c9ca50 100644 --- a/src/main/java/io/github/vrchatapi/model/Favorite.java +++ b/src/main/java/io/github/vrchatapi/model/Favorite.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/FavoriteGroup.java b/src/main/java/io/github/vrchatapi/model/FavoriteGroup.java index 17fba679..d29ec4bc 100644 --- a/src/main/java/io/github/vrchatapi/model/FavoriteGroup.java +++ b/src/main/java/io/github/vrchatapi/model/FavoriteGroup.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/FavoriteGroupVisibility.java b/src/main/java/io/github/vrchatapi/model/FavoriteGroupVisibility.java index 4110dd59..718d58c5 100644 --- a/src/main/java/io/github/vrchatapi/model/FavoriteGroupVisibility.java +++ b/src/main/java/io/github/vrchatapi/model/FavoriteGroupVisibility.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/FavoriteType.java b/src/main/java/io/github/vrchatapi/model/FavoriteType.java index a05e1f24..145265d9 100644 --- a/src/main/java/io/github/vrchatapi/model/FavoriteType.java +++ b/src/main/java/io/github/vrchatapi/model/FavoriteType.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/FileData.java b/src/main/java/io/github/vrchatapi/model/FileData.java index 34a6428d..242940d5 100644 --- a/src/main/java/io/github/vrchatapi/model/FileData.java +++ b/src/main/java/io/github/vrchatapi/model/FileData.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/FileStatus.java b/src/main/java/io/github/vrchatapi/model/FileStatus.java index 28995a6c..1e7a3127 100644 --- a/src/main/java/io/github/vrchatapi/model/FileStatus.java +++ b/src/main/java/io/github/vrchatapi/model/FileStatus.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/FileUploadURL.java b/src/main/java/io/github/vrchatapi/model/FileUploadURL.java index 365e1d97..88b5a4e4 100644 --- a/src/main/java/io/github/vrchatapi/model/FileUploadURL.java +++ b/src/main/java/io/github/vrchatapi/model/FileUploadURL.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/FileVersion.java b/src/main/java/io/github/vrchatapi/model/FileVersion.java index db5268ba..7fa87491 100644 --- a/src/main/java/io/github/vrchatapi/model/FileVersion.java +++ b/src/main/java/io/github/vrchatapi/model/FileVersion.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/FileVersionUploadStatus.java b/src/main/java/io/github/vrchatapi/model/FileVersionUploadStatus.java index e9d5227d..85f3485f 100644 --- a/src/main/java/io/github/vrchatapi/model/FileVersionUploadStatus.java +++ b/src/main/java/io/github/vrchatapi/model/FileVersionUploadStatus.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/FinishFileDataUploadRequest.java b/src/main/java/io/github/vrchatapi/model/FinishFileDataUploadRequest.java index b1396469..55d571af 100644 --- a/src/main/java/io/github/vrchatapi/model/FinishFileDataUploadRequest.java +++ b/src/main/java/io/github/vrchatapi/model/FinishFileDataUploadRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/FriendStatus.java b/src/main/java/io/github/vrchatapi/model/FriendStatus.java index 8ffa3681..1ef4e53e 100644 --- a/src/main/java/io/github/vrchatapi/model/FriendStatus.java +++ b/src/main/java/io/github/vrchatapi/model/FriendStatus.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/Group.java b/src/main/java/io/github/vrchatapi/model/Group.java index 0d6423c1..f61e74f2 100644 --- a/src/main/java/io/github/vrchatapi/model/Group.java +++ b/src/main/java/io/github/vrchatapi/model/Group.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupAccessType.java b/src/main/java/io/github/vrchatapi/model/GroupAccessType.java index 97ff5369..88c5e805 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupAccessType.java +++ b/src/main/java/io/github/vrchatapi/model/GroupAccessType.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupAnnouncement.java b/src/main/java/io/github/vrchatapi/model/GroupAnnouncement.java index cbd85bca..9285dcf5 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupAnnouncement.java +++ b/src/main/java/io/github/vrchatapi/model/GroupAnnouncement.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupAuditLogEntry.java b/src/main/java/io/github/vrchatapi/model/GroupAuditLogEntry.java index 5dba6a02..7c793bfd 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupAuditLogEntry.java +++ b/src/main/java/io/github/vrchatapi/model/GroupAuditLogEntry.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupGallery.java b/src/main/java/io/github/vrchatapi/model/GroupGallery.java index 8583f4fe..d412524a 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupGallery.java +++ b/src/main/java/io/github/vrchatapi/model/GroupGallery.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupGalleryImage.java b/src/main/java/io/github/vrchatapi/model/GroupGalleryImage.java index 64aab7e8..88177023 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupGalleryImage.java +++ b/src/main/java/io/github/vrchatapi/model/GroupGalleryImage.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupInstance.java b/src/main/java/io/github/vrchatapi/model/GroupInstance.java index 34b4db9f..cf5b9a48 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupInstance.java +++ b/src/main/java/io/github/vrchatapi/model/GroupInstance.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupJoinRequestAction.java b/src/main/java/io/github/vrchatapi/model/GroupJoinRequestAction.java index 0c684047..7e7ca2c7 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupJoinRequestAction.java +++ b/src/main/java/io/github/vrchatapi/model/GroupJoinRequestAction.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupJoinState.java b/src/main/java/io/github/vrchatapi/model/GroupJoinState.java index 25d2d41b..973da2b4 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupJoinState.java +++ b/src/main/java/io/github/vrchatapi/model/GroupJoinState.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupLimitedMember.java b/src/main/java/io/github/vrchatapi/model/GroupLimitedMember.java index a6011fd9..a39cf47a 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupLimitedMember.java +++ b/src/main/java/io/github/vrchatapi/model/GroupLimitedMember.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupMember.java b/src/main/java/io/github/vrchatapi/model/GroupMember.java index 716559c2..1fc242a3 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupMember.java +++ b/src/main/java/io/github/vrchatapi/model/GroupMember.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupMemberLimitedUser.java b/src/main/java/io/github/vrchatapi/model/GroupMemberLimitedUser.java index 3461bc31..2a88e099 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupMemberLimitedUser.java +++ b/src/main/java/io/github/vrchatapi/model/GroupMemberLimitedUser.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupMemberStatus.java b/src/main/java/io/github/vrchatapi/model/GroupMemberStatus.java index 2067ba17..865e06c0 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupMemberStatus.java +++ b/src/main/java/io/github/vrchatapi/model/GroupMemberStatus.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -36,7 +36,9 @@ public enum GroupMemberStatus { INVITED("invited"), - BANNED("banned"); + BANNED("banned"), + + USERBLOCKED("userblocked"); private String value; diff --git a/src/main/java/io/github/vrchatapi/model/GroupMyMember.java b/src/main/java/io/github/vrchatapi/model/GroupMyMember.java index 8d964ef0..f36231ac 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupMyMember.java +++ b/src/main/java/io/github/vrchatapi/model/GroupMyMember.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupPermission.java b/src/main/java/io/github/vrchatapi/model/GroupPermission.java index 091b5de3..5cf6b5ff 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupPermission.java +++ b/src/main/java/io/github/vrchatapi/model/GroupPermission.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupPost.java b/src/main/java/io/github/vrchatapi/model/GroupPost.java index 54e7ec02..80f2f707 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupPost.java +++ b/src/main/java/io/github/vrchatapi/model/GroupPost.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupPostVisibility.java b/src/main/java/io/github/vrchatapi/model/GroupPostVisibility.java index 89e2365e..205f67b0 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupPostVisibility.java +++ b/src/main/java/io/github/vrchatapi/model/GroupPostVisibility.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupPrivacy.java b/src/main/java/io/github/vrchatapi/model/GroupPrivacy.java index 9204db00..0e8859db 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupPrivacy.java +++ b/src/main/java/io/github/vrchatapi/model/GroupPrivacy.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupRole.java b/src/main/java/io/github/vrchatapi/model/GroupRole.java index 925945e9..6242ecd9 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupRole.java +++ b/src/main/java/io/github/vrchatapi/model/GroupRole.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupRoleTemplate.java b/src/main/java/io/github/vrchatapi/model/GroupRoleTemplate.java index 5ad568e9..7c11ce28 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupRoleTemplate.java +++ b/src/main/java/io/github/vrchatapi/model/GroupRoleTemplate.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupSearchSort.java b/src/main/java/io/github/vrchatapi/model/GroupSearchSort.java index d7016de7..b33054ef 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupSearchSort.java +++ b/src/main/java/io/github/vrchatapi/model/GroupSearchSort.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/GroupUserVisibility.java b/src/main/java/io/github/vrchatapi/model/GroupUserVisibility.java index 89233a20..ce1e8ee5 100644 --- a/src/main/java/io/github/vrchatapi/model/GroupUserVisibility.java +++ b/src/main/java/io/github/vrchatapi/model/GroupUserVisibility.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/InfoPush.java b/src/main/java/io/github/vrchatapi/model/InfoPush.java index ed4efda7..f168fa40 100644 --- a/src/main/java/io/github/vrchatapi/model/InfoPush.java +++ b/src/main/java/io/github/vrchatapi/model/InfoPush.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/InfoPushData.java b/src/main/java/io/github/vrchatapi/model/InfoPushData.java index 1327bfd9..8d1be570 100644 --- a/src/main/java/io/github/vrchatapi/model/InfoPushData.java +++ b/src/main/java/io/github/vrchatapi/model/InfoPushData.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/InfoPushDataArticle.java b/src/main/java/io/github/vrchatapi/model/InfoPushDataArticle.java index 0abb7d2f..580afeff 100644 --- a/src/main/java/io/github/vrchatapi/model/InfoPushDataArticle.java +++ b/src/main/java/io/github/vrchatapi/model/InfoPushDataArticle.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/InfoPushDataArticleContent.java b/src/main/java/io/github/vrchatapi/model/InfoPushDataArticleContent.java index 15ed20a9..5a1e358e 100644 --- a/src/main/java/io/github/vrchatapi/model/InfoPushDataArticleContent.java +++ b/src/main/java/io/github/vrchatapi/model/InfoPushDataArticleContent.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/InfoPushDataClickable.java b/src/main/java/io/github/vrchatapi/model/InfoPushDataClickable.java index d8e5713d..9377a5e4 100644 --- a/src/main/java/io/github/vrchatapi/model/InfoPushDataClickable.java +++ b/src/main/java/io/github/vrchatapi/model/InfoPushDataClickable.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/Instance.java b/src/main/java/io/github/vrchatapi/model/Instance.java index 639d87e3..a6496ed4 100644 --- a/src/main/java/io/github/vrchatapi/model/Instance.java +++ b/src/main/java/io/github/vrchatapi/model/Instance.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/InstancePlatforms.java b/src/main/java/io/github/vrchatapi/model/InstancePlatforms.java index 21766f8b..fe3f8bd4 100644 --- a/src/main/java/io/github/vrchatapi/model/InstancePlatforms.java +++ b/src/main/java/io/github/vrchatapi/model/InstancePlatforms.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/InstanceRegion.java b/src/main/java/io/github/vrchatapi/model/InstanceRegion.java index 510b3051..0a324064 100644 --- a/src/main/java/io/github/vrchatapi/model/InstanceRegion.java +++ b/src/main/java/io/github/vrchatapi/model/InstanceRegion.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/InstanceShortNameResponse.java b/src/main/java/io/github/vrchatapi/model/InstanceShortNameResponse.java index 3cb8be99..99e29598 100644 --- a/src/main/java/io/github/vrchatapi/model/InstanceShortNameResponse.java +++ b/src/main/java/io/github/vrchatapi/model/InstanceShortNameResponse.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/InstanceType.java b/src/main/java/io/github/vrchatapi/model/InstanceType.java index 50fa02bd..d497bba0 100644 --- a/src/main/java/io/github/vrchatapi/model/InstanceType.java +++ b/src/main/java/io/github/vrchatapi/model/InstanceType.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/InviteMessage.java b/src/main/java/io/github/vrchatapi/model/InviteMessage.java index 7cec6ad9..c5e5ac8b 100644 --- a/src/main/java/io/github/vrchatapi/model/InviteMessage.java +++ b/src/main/java/io/github/vrchatapi/model/InviteMessage.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/InviteMessageType.java b/src/main/java/io/github/vrchatapi/model/InviteMessageType.java index fec3dd0c..d48ec63e 100644 --- a/src/main/java/io/github/vrchatapi/model/InviteMessageType.java +++ b/src/main/java/io/github/vrchatapi/model/InviteMessageType.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/InviteRequest.java b/src/main/java/io/github/vrchatapi/model/InviteRequest.java index a6841a7f..eb60ff9b 100644 --- a/src/main/java/io/github/vrchatapi/model/InviteRequest.java +++ b/src/main/java/io/github/vrchatapi/model/InviteRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/InviteResponse.java b/src/main/java/io/github/vrchatapi/model/InviteResponse.java index b2987169..8cf4856d 100644 --- a/src/main/java/io/github/vrchatapi/model/InviteResponse.java +++ b/src/main/java/io/github/vrchatapi/model/InviteResponse.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/License.java b/src/main/java/io/github/vrchatapi/model/License.java index cd652428..00679a36 100644 --- a/src/main/java/io/github/vrchatapi/model/License.java +++ b/src/main/java/io/github/vrchatapi/model/License.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/LicenseAction.java b/src/main/java/io/github/vrchatapi/model/LicenseAction.java index a04a0d97..6a4c6fae 100644 --- a/src/main/java/io/github/vrchatapi/model/LicenseAction.java +++ b/src/main/java/io/github/vrchatapi/model/LicenseAction.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/LicenseGroup.java b/src/main/java/io/github/vrchatapi/model/LicenseGroup.java index 18e558db..4dac25e8 100644 --- a/src/main/java/io/github/vrchatapi/model/LicenseGroup.java +++ b/src/main/java/io/github/vrchatapi/model/LicenseGroup.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/LicenseType.java b/src/main/java/io/github/vrchatapi/model/LicenseType.java index 5a762ef8..e00d37f5 100644 --- a/src/main/java/io/github/vrchatapi/model/LicenseType.java +++ b/src/main/java/io/github/vrchatapi/model/LicenseType.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/LimitedGroup.java b/src/main/java/io/github/vrchatapi/model/LimitedGroup.java index 4f756b48..91eb2c9e 100644 --- a/src/main/java/io/github/vrchatapi/model/LimitedGroup.java +++ b/src/main/java/io/github/vrchatapi/model/LimitedGroup.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/LimitedUnityPackage.java b/src/main/java/io/github/vrchatapi/model/LimitedUnityPackage.java index dbc5da5e..9688dcbf 100644 --- a/src/main/java/io/github/vrchatapi/model/LimitedUnityPackage.java +++ b/src/main/java/io/github/vrchatapi/model/LimitedUnityPackage.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/LimitedUser.java b/src/main/java/io/github/vrchatapi/model/LimitedUser.java index 690cbacb..22d9b59e 100644 --- a/src/main/java/io/github/vrchatapi/model/LimitedUser.java +++ b/src/main/java/io/github/vrchatapi/model/LimitedUser.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/LimitedUserGroups.java b/src/main/java/io/github/vrchatapi/model/LimitedUserGroups.java index 2c44b80f..9379d8ba 100644 --- a/src/main/java/io/github/vrchatapi/model/LimitedUserGroups.java +++ b/src/main/java/io/github/vrchatapi/model/LimitedUserGroups.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/LimitedWorld.java b/src/main/java/io/github/vrchatapi/model/LimitedWorld.java index 936a817d..b9beee27 100644 --- a/src/main/java/io/github/vrchatapi/model/LimitedWorld.java +++ b/src/main/java/io/github/vrchatapi/model/LimitedWorld.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/MIMEType.java b/src/main/java/io/github/vrchatapi/model/MIMEType.java index 03131ddc..fd0b6e53 100644 --- a/src/main/java/io/github/vrchatapi/model/MIMEType.java +++ b/src/main/java/io/github/vrchatapi/model/MIMEType.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/ModelFile.java b/src/main/java/io/github/vrchatapi/model/ModelFile.java index 7ef8716b..33f08ac9 100644 --- a/src/main/java/io/github/vrchatapi/model/ModelFile.java +++ b/src/main/java/io/github/vrchatapi/model/ModelFile.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/ModerateUserRequest.java b/src/main/java/io/github/vrchatapi/model/ModerateUserRequest.java index cf550fde..3612a848 100644 --- a/src/main/java/io/github/vrchatapi/model/ModerateUserRequest.java +++ b/src/main/java/io/github/vrchatapi/model/ModerateUserRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/Notification.java b/src/main/java/io/github/vrchatapi/model/Notification.java index e7543397..6c77ddfc 100644 --- a/src/main/java/io/github/vrchatapi/model/Notification.java +++ b/src/main/java/io/github/vrchatapi/model/Notification.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/NotificationDetailInvite.java b/src/main/java/io/github/vrchatapi/model/NotificationDetailInvite.java index 946bee1d..33032d65 100644 --- a/src/main/java/io/github/vrchatapi/model/NotificationDetailInvite.java +++ b/src/main/java/io/github/vrchatapi/model/NotificationDetailInvite.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/NotificationDetailInviteResponse.java b/src/main/java/io/github/vrchatapi/model/NotificationDetailInviteResponse.java index 628d983c..43290c7a 100644 --- a/src/main/java/io/github/vrchatapi/model/NotificationDetailInviteResponse.java +++ b/src/main/java/io/github/vrchatapi/model/NotificationDetailInviteResponse.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/NotificationDetailRequestInvite.java b/src/main/java/io/github/vrchatapi/model/NotificationDetailRequestInvite.java index b1423421..f94876dc 100644 --- a/src/main/java/io/github/vrchatapi/model/NotificationDetailRequestInvite.java +++ b/src/main/java/io/github/vrchatapi/model/NotificationDetailRequestInvite.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/NotificationDetailRequestInviteResponse.java b/src/main/java/io/github/vrchatapi/model/NotificationDetailRequestInviteResponse.java index fe97756f..afed26dd 100644 --- a/src/main/java/io/github/vrchatapi/model/NotificationDetailRequestInviteResponse.java +++ b/src/main/java/io/github/vrchatapi/model/NotificationDetailRequestInviteResponse.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/NotificationDetailVoteToKick.java b/src/main/java/io/github/vrchatapi/model/NotificationDetailVoteToKick.java index b513582e..1189f1cf 100644 --- a/src/main/java/io/github/vrchatapi/model/NotificationDetailVoteToKick.java +++ b/src/main/java/io/github/vrchatapi/model/NotificationDetailVoteToKick.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/NotificationType.java b/src/main/java/io/github/vrchatapi/model/NotificationType.java index a4d70e5d..31becf78 100644 --- a/src/main/java/io/github/vrchatapi/model/NotificationType.java +++ b/src/main/java/io/github/vrchatapi/model/NotificationType.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/OrderOption.java b/src/main/java/io/github/vrchatapi/model/OrderOption.java index 4f765a6f..4d543aa1 100644 --- a/src/main/java/io/github/vrchatapi/model/OrderOption.java +++ b/src/main/java/io/github/vrchatapi/model/OrderOption.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/PaginatedGroupAuditLogEntryList.java b/src/main/java/io/github/vrchatapi/model/PaginatedGroupAuditLogEntryList.java index cdc4a95a..5a890296 100644 --- a/src/main/java/io/github/vrchatapi/model/PaginatedGroupAuditLogEntryList.java +++ b/src/main/java/io/github/vrchatapi/model/PaginatedGroupAuditLogEntryList.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/PastDisplayName.java b/src/main/java/io/github/vrchatapi/model/PastDisplayName.java index c588ba51..997cb20f 100644 --- a/src/main/java/io/github/vrchatapi/model/PastDisplayName.java +++ b/src/main/java/io/github/vrchatapi/model/PastDisplayName.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/Permission.java b/src/main/java/io/github/vrchatapi/model/Permission.java index 73af3905..9114cfe2 100644 --- a/src/main/java/io/github/vrchatapi/model/Permission.java +++ b/src/main/java/io/github/vrchatapi/model/Permission.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/PlayerModeration.java b/src/main/java/io/github/vrchatapi/model/PlayerModeration.java index 64e4616f..aa0bcc4b 100644 --- a/src/main/java/io/github/vrchatapi/model/PlayerModeration.java +++ b/src/main/java/io/github/vrchatapi/model/PlayerModeration.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/PlayerModerationType.java b/src/main/java/io/github/vrchatapi/model/PlayerModerationType.java index c95eecec..549c5e74 100644 --- a/src/main/java/io/github/vrchatapi/model/PlayerModerationType.java +++ b/src/main/java/io/github/vrchatapi/model/PlayerModerationType.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/Region.java b/src/main/java/io/github/vrchatapi/model/Region.java index 508a6a8f..2ad38245 100644 --- a/src/main/java/io/github/vrchatapi/model/Region.java +++ b/src/main/java/io/github/vrchatapi/model/Region.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/ReleaseStatus.java b/src/main/java/io/github/vrchatapi/model/ReleaseStatus.java index ee3e0d2f..64e0347a 100644 --- a/src/main/java/io/github/vrchatapi/model/ReleaseStatus.java +++ b/src/main/java/io/github/vrchatapi/model/ReleaseStatus.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/RepresentedGroup.java b/src/main/java/io/github/vrchatapi/model/RepresentedGroup.java index 60bf3c8e..193ea243 100644 --- a/src/main/java/io/github/vrchatapi/model/RepresentedGroup.java +++ b/src/main/java/io/github/vrchatapi/model/RepresentedGroup.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/RequestInviteRequest.java b/src/main/java/io/github/vrchatapi/model/RequestInviteRequest.java index 3a0158ce..39314d31 100644 --- a/src/main/java/io/github/vrchatapi/model/RequestInviteRequest.java +++ b/src/main/java/io/github/vrchatapi/model/RequestInviteRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/RespondGroupJoinRequest.java b/src/main/java/io/github/vrchatapi/model/RespondGroupJoinRequest.java index 5f883976..dcb60f39 100644 --- a/src/main/java/io/github/vrchatapi/model/RespondGroupJoinRequest.java +++ b/src/main/java/io/github/vrchatapi/model/RespondGroupJoinRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/Response.java b/src/main/java/io/github/vrchatapi/model/Response.java index 2f137945..a5650e96 100644 --- a/src/main/java/io/github/vrchatapi/model/Response.java +++ b/src/main/java/io/github/vrchatapi/model/Response.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/SentNotification.java b/src/main/java/io/github/vrchatapi/model/SentNotification.java index 6e9822c7..ce595a9e 100644 --- a/src/main/java/io/github/vrchatapi/model/SentNotification.java +++ b/src/main/java/io/github/vrchatapi/model/SentNotification.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/SortOption.java b/src/main/java/io/github/vrchatapi/model/SortOption.java index 4bedefcc..6d58e951 100644 --- a/src/main/java/io/github/vrchatapi/model/SortOption.java +++ b/src/main/java/io/github/vrchatapi/model/SortOption.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/Subscription.java b/src/main/java/io/github/vrchatapi/model/Subscription.java index 43d30cdc..5437c7bd 100644 --- a/src/main/java/io/github/vrchatapi/model/Subscription.java +++ b/src/main/java/io/github/vrchatapi/model/Subscription.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/SubscriptionPeriod.java b/src/main/java/io/github/vrchatapi/model/SubscriptionPeriod.java index 2623e1e3..71616eab 100644 --- a/src/main/java/io/github/vrchatapi/model/SubscriptionPeriod.java +++ b/src/main/java/io/github/vrchatapi/model/SubscriptionPeriod.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/Success.java b/src/main/java/io/github/vrchatapi/model/Success.java index 6e478d34..d52aca31 100644 --- a/src/main/java/io/github/vrchatapi/model/Success.java +++ b/src/main/java/io/github/vrchatapi/model/Success.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/Transaction.java b/src/main/java/io/github/vrchatapi/model/Transaction.java index 94870d49..cb8b7279 100644 --- a/src/main/java/io/github/vrchatapi/model/Transaction.java +++ b/src/main/java/io/github/vrchatapi/model/Transaction.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/TransactionAgreement.java b/src/main/java/io/github/vrchatapi/model/TransactionAgreement.java index e713fa9b..09e9a333 100644 --- a/src/main/java/io/github/vrchatapi/model/TransactionAgreement.java +++ b/src/main/java/io/github/vrchatapi/model/TransactionAgreement.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/TransactionStatus.java b/src/main/java/io/github/vrchatapi/model/TransactionStatus.java index 6f6b73e5..afe974bf 100644 --- a/src/main/java/io/github/vrchatapi/model/TransactionStatus.java +++ b/src/main/java/io/github/vrchatapi/model/TransactionStatus.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/TransactionSteamInfo.java b/src/main/java/io/github/vrchatapi/model/TransactionSteamInfo.java index 16aa1017..0de94f42 100644 --- a/src/main/java/io/github/vrchatapi/model/TransactionSteamInfo.java +++ b/src/main/java/io/github/vrchatapi/model/TransactionSteamInfo.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/TransactionSteamWalletInfo.java b/src/main/java/io/github/vrchatapi/model/TransactionSteamWalletInfo.java index 59c800af..88209e52 100644 --- a/src/main/java/io/github/vrchatapi/model/TransactionSteamWalletInfo.java +++ b/src/main/java/io/github/vrchatapi/model/TransactionSteamWalletInfo.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/TwoFactorAuthCode.java b/src/main/java/io/github/vrchatapi/model/TwoFactorAuthCode.java index 10b9d700..7c7090d1 100644 --- a/src/main/java/io/github/vrchatapi/model/TwoFactorAuthCode.java +++ b/src/main/java/io/github/vrchatapi/model/TwoFactorAuthCode.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/TwoFactorEmailCode.java b/src/main/java/io/github/vrchatapi/model/TwoFactorEmailCode.java index 184cd498..b678c892 100644 --- a/src/main/java/io/github/vrchatapi/model/TwoFactorEmailCode.java +++ b/src/main/java/io/github/vrchatapi/model/TwoFactorEmailCode.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/UnityPackage.java b/src/main/java/io/github/vrchatapi/model/UnityPackage.java index 33392c58..81438dd3 100644 --- a/src/main/java/io/github/vrchatapi/model/UnityPackage.java +++ b/src/main/java/io/github/vrchatapi/model/UnityPackage.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/UpdateAvatarRequest.java b/src/main/java/io/github/vrchatapi/model/UpdateAvatarRequest.java index b81fc32e..6bee0c0d 100644 --- a/src/main/java/io/github/vrchatapi/model/UpdateAvatarRequest.java +++ b/src/main/java/io/github/vrchatapi/model/UpdateAvatarRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/UpdateFavoriteGroupRequest.java b/src/main/java/io/github/vrchatapi/model/UpdateFavoriteGroupRequest.java index d4883376..f11a112e 100644 --- a/src/main/java/io/github/vrchatapi/model/UpdateFavoriteGroupRequest.java +++ b/src/main/java/io/github/vrchatapi/model/UpdateFavoriteGroupRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/UpdateGroupGalleryRequest.java b/src/main/java/io/github/vrchatapi/model/UpdateGroupGalleryRequest.java index c0b82193..36ee3e38 100644 --- a/src/main/java/io/github/vrchatapi/model/UpdateGroupGalleryRequest.java +++ b/src/main/java/io/github/vrchatapi/model/UpdateGroupGalleryRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/UpdateGroupMemberRequest.java b/src/main/java/io/github/vrchatapi/model/UpdateGroupMemberRequest.java index 1bc77eaa..39f3ff42 100644 --- a/src/main/java/io/github/vrchatapi/model/UpdateGroupMemberRequest.java +++ b/src/main/java/io/github/vrchatapi/model/UpdateGroupMemberRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/UpdateGroupRequest.java b/src/main/java/io/github/vrchatapi/model/UpdateGroupRequest.java index eed43fd5..e9e8ec8c 100644 --- a/src/main/java/io/github/vrchatapi/model/UpdateGroupRequest.java +++ b/src/main/java/io/github/vrchatapi/model/UpdateGroupRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/UpdateGroupRoleRequest.java b/src/main/java/io/github/vrchatapi/model/UpdateGroupRoleRequest.java index 11279dda..0d74d298 100644 --- a/src/main/java/io/github/vrchatapi/model/UpdateGroupRoleRequest.java +++ b/src/main/java/io/github/vrchatapi/model/UpdateGroupRoleRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/UpdateInviteMessageRequest.java b/src/main/java/io/github/vrchatapi/model/UpdateInviteMessageRequest.java index 15b1b4f8..8949cae8 100644 --- a/src/main/java/io/github/vrchatapi/model/UpdateInviteMessageRequest.java +++ b/src/main/java/io/github/vrchatapi/model/UpdateInviteMessageRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/UpdateUserRequest.java b/src/main/java/io/github/vrchatapi/model/UpdateUserRequest.java index 2b8f0032..a256a968 100644 --- a/src/main/java/io/github/vrchatapi/model/UpdateUserRequest.java +++ b/src/main/java/io/github/vrchatapi/model/UpdateUserRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -90,6 +90,10 @@ public class UpdateUserRequest { @SerializedName(SERIALIZED_NAME_PRONOUNS) private String pronouns; + public static final String SERIALIZED_NAME_IS_BOOPING_ENABLED = "isBoopingEnabled"; + @SerializedName(SERIALIZED_NAME_IS_BOOPING_ENABLED) + private Boolean isBoopingEnabled; + public static final String SERIALIZED_NAME_USER_ICON = "userIcon"; @SerializedName(SERIALIZED_NAME_USER_ICON) private String userIcon; @@ -320,6 +324,29 @@ public void setPronouns(String pronouns) { } + public UpdateUserRequest isBoopingEnabled(Boolean isBoopingEnabled) { + + this.isBoopingEnabled = isBoopingEnabled; + return this; + } + + /** + * Get isBoopingEnabled + * @return isBoopingEnabled + **/ + @javax.annotation.Nullable + @ApiModelProperty(value = "") + + public Boolean getIsBoopingEnabled() { + return isBoopingEnabled; + } + + + public void setIsBoopingEnabled(Boolean isBoopingEnabled) { + this.isBoopingEnabled = isBoopingEnabled; + } + + public UpdateUserRequest userIcon(String userIcon) { this.userIcon = userIcon; @@ -362,12 +389,13 @@ public boolean equals(Object o) { Objects.equals(this.bio, updateUserRequest.bio) && Objects.equals(this.bioLinks, updateUserRequest.bioLinks) && Objects.equals(this.pronouns, updateUserRequest.pronouns) && + Objects.equals(this.isBoopingEnabled, updateUserRequest.isBoopingEnabled) && Objects.equals(this.userIcon, updateUserRequest.userIcon); } @Override public int hashCode() { - return Objects.hash(email, birthday, acceptedTOSVersion, tags, status, statusDescription, bio, bioLinks, pronouns, userIcon); + return Objects.hash(email, birthday, acceptedTOSVersion, tags, status, statusDescription, bio, bioLinks, pronouns, isBoopingEnabled, userIcon); } @Override @@ -383,6 +411,7 @@ public String toString() { sb.append(" bio: ").append(toIndentedString(bio)).append("\n"); sb.append(" bioLinks: ").append(toIndentedString(bioLinks)).append("\n"); sb.append(" pronouns: ").append(toIndentedString(pronouns)).append("\n"); + sb.append(" isBoopingEnabled: ").append(toIndentedString(isBoopingEnabled)).append("\n"); sb.append(" userIcon: ").append(toIndentedString(userIcon)).append("\n"); sb.append("}"); return sb.toString(); @@ -415,6 +444,7 @@ private String toIndentedString(Object o) { openapiFields.add("bio"); openapiFields.add("bioLinks"); openapiFields.add("pronouns"); + openapiFields.add("isBoopingEnabled"); openapiFields.add("userIcon"); // a set of required properties/fields (JSON key names) diff --git a/src/main/java/io/github/vrchatapi/model/UpdateWorldRequest.java b/src/main/java/io/github/vrchatapi/model/UpdateWorldRequest.java index caa7ec47..09c91b6d 100644 --- a/src/main/java/io/github/vrchatapi/model/UpdateWorldRequest.java +++ b/src/main/java/io/github/vrchatapi/model/UpdateWorldRequest.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/User.java b/src/main/java/io/github/vrchatapi/model/User.java index 96003f64..91199c70 100644 --- a/src/main/java/io/github/vrchatapi/model/User.java +++ b/src/main/java/io/github/vrchatapi/model/User.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -140,6 +140,10 @@ public class User { @SerializedName(SERIALIZED_NAME_PROFILE_PIC_OVERRIDE) private String profilePicOverride; + public static final String SERIALIZED_NAME_PROFILE_PIC_OVERRIDE_THUMBNAIL = "profilePicOverrideThumbnail"; + @SerializedName(SERIALIZED_NAME_PROFILE_PIC_OVERRIDE_THUMBNAIL) + private String profilePicOverrideThumbnail; + public static final String SERIALIZED_NAME_PRONOUNS = "pronouns"; @SerializedName(SERIALIZED_NAME_PRONOUNS) private String pronouns; @@ -688,6 +692,29 @@ public void setProfilePicOverride(String profilePicOverride) { } + public User profilePicOverrideThumbnail(String profilePicOverrideThumbnail) { + + this.profilePicOverrideThumbnail = profilePicOverrideThumbnail; + return this; + } + + /** + * Get profilePicOverrideThumbnail + * @return profilePicOverrideThumbnail + **/ + @javax.annotation.Nonnull + @ApiModelProperty(required = true, value = "") + + public String getProfilePicOverrideThumbnail() { + return profilePicOverrideThumbnail; + } + + + public void setProfilePicOverrideThumbnail(String profilePicOverrideThumbnail) { + this.profilePicOverrideThumbnail = profilePicOverrideThumbnail; + } + + public User pronouns(String pronouns) { this.pronouns = pronouns; @@ -979,6 +1006,7 @@ public boolean equals(Object o) { Objects.equals(this.location, user.location) && Objects.equals(this.note, user.note) && Objects.equals(this.profilePicOverride, user.profilePicOverride) && + Objects.equals(this.profilePicOverrideThumbnail, user.profilePicOverrideThumbnail) && Objects.equals(this.pronouns, user.pronouns) && Objects.equals(this.state, user.state) && Objects.equals(this.status, user.status) && @@ -994,7 +1022,7 @@ public boolean equals(Object o) { @Override public int hashCode() { - return Objects.hash(allowAvatarCopying, badges, bio, bioLinks, currentAvatarImageUrl, currentAvatarThumbnailImageUrl, currentAvatarTags, dateJoined, developerType, displayName, friendKey, friendRequestStatus, id, instanceId, isFriend, lastActivity, lastLogin, lastPlatform, location, note, profilePicOverride, pronouns, state, status, statusDescription, tags, travelingToInstance, travelingToLocation, travelingToWorld, userIcon, username, worldId); + return Objects.hash(allowAvatarCopying, badges, bio, bioLinks, currentAvatarImageUrl, currentAvatarThumbnailImageUrl, currentAvatarTags, dateJoined, developerType, displayName, friendKey, friendRequestStatus, id, instanceId, isFriend, lastActivity, lastLogin, lastPlatform, location, note, profilePicOverride, profilePicOverrideThumbnail, pronouns, state, status, statusDescription, tags, travelingToInstance, travelingToLocation, travelingToWorld, userIcon, username, worldId); } @Override @@ -1022,6 +1050,7 @@ public String toString() { sb.append(" location: ").append(toIndentedString(location)).append("\n"); sb.append(" note: ").append(toIndentedString(note)).append("\n"); sb.append(" profilePicOverride: ").append(toIndentedString(profilePicOverride)).append("\n"); + sb.append(" profilePicOverrideThumbnail: ").append(toIndentedString(profilePicOverrideThumbnail)).append("\n"); sb.append(" pronouns: ").append(toIndentedString(pronouns)).append("\n"); sb.append(" state: ").append(toIndentedString(state)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); @@ -1076,6 +1105,7 @@ private String toIndentedString(Object o) { openapiFields.add("location"); openapiFields.add("note"); openapiFields.add("profilePicOverride"); + openapiFields.add("profilePicOverrideThumbnail"); openapiFields.add("pronouns"); openapiFields.add("state"); openapiFields.add("status"); @@ -1106,6 +1136,7 @@ private String toIndentedString(Object o) { openapiRequiredFields.add("last_login"); openapiRequiredFields.add("last_platform"); openapiRequiredFields.add("profilePicOverride"); + openapiRequiredFields.add("profilePicOverrideThumbnail"); openapiRequiredFields.add("pronouns"); openapiRequiredFields.add("state"); openapiRequiredFields.add("status"); @@ -1209,6 +1240,9 @@ public static void validateJsonObject(JsonObject jsonObj) throws IOException { if (!jsonObj.get("profilePicOverride").isJsonPrimitive()) { throw new IllegalArgumentException(String.format("Expected the field `profilePicOverride` to be a primitive type in the JSON string but got `%s`", jsonObj.get("profilePicOverride").toString())); } + if (!jsonObj.get("profilePicOverrideThumbnail").isJsonPrimitive()) { + throw new IllegalArgumentException(String.format("Expected the field `profilePicOverrideThumbnail` to be a primitive type in the JSON string but got `%s`", jsonObj.get("profilePicOverrideThumbnail").toString())); + } if (!jsonObj.get("pronouns").isJsonPrimitive()) { throw new IllegalArgumentException(String.format("Expected the field `pronouns` to be a primitive type in the JSON string but got `%s`", jsonObj.get("pronouns").toString())); } diff --git a/src/main/java/io/github/vrchatapi/model/UserExists.java b/src/main/java/io/github/vrchatapi/model/UserExists.java index 118d5f6e..0a6a2a26 100644 --- a/src/main/java/io/github/vrchatapi/model/UserExists.java +++ b/src/main/java/io/github/vrchatapi/model/UserExists.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/UserState.java b/src/main/java/io/github/vrchatapi/model/UserState.java index df869d88..bb4eafe3 100644 --- a/src/main/java/io/github/vrchatapi/model/UserState.java +++ b/src/main/java/io/github/vrchatapi/model/UserState.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/UserStatus.java b/src/main/java/io/github/vrchatapi/model/UserStatus.java index 5a21b530..878f6284 100644 --- a/src/main/java/io/github/vrchatapi/model/UserStatus.java +++ b/src/main/java/io/github/vrchatapi/model/UserStatus.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/UserSubscription.java b/src/main/java/io/github/vrchatapi/model/UserSubscription.java index d8c4806f..f39f8acf 100644 --- a/src/main/java/io/github/vrchatapi/model/UserSubscription.java +++ b/src/main/java/io/github/vrchatapi/model/UserSubscription.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/Verify2FAEmailCodeResult.java b/src/main/java/io/github/vrchatapi/model/Verify2FAEmailCodeResult.java index 2f25ecf1..66ebd292 100644 --- a/src/main/java/io/github/vrchatapi/model/Verify2FAEmailCodeResult.java +++ b/src/main/java/io/github/vrchatapi/model/Verify2FAEmailCodeResult.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/Verify2FAResult.java b/src/main/java/io/github/vrchatapi/model/Verify2FAResult.java index 9d23dbcd..208f8af7 100644 --- a/src/main/java/io/github/vrchatapi/model/Verify2FAResult.java +++ b/src/main/java/io/github/vrchatapi/model/Verify2FAResult.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/VerifyAuthTokenResult.java b/src/main/java/io/github/vrchatapi/model/VerifyAuthTokenResult.java index 082fe3a7..76588263 100644 --- a/src/main/java/io/github/vrchatapi/model/VerifyAuthTokenResult.java +++ b/src/main/java/io/github/vrchatapi/model/VerifyAuthTokenResult.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/World.java b/src/main/java/io/github/vrchatapi/model/World.java index 5e9da7d3..9f60f936 100644 --- a/src/main/java/io/github/vrchatapi/model/World.java +++ b/src/main/java/io/github/vrchatapi/model/World.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/WorldMetadata.java b/src/main/java/io/github/vrchatapi/model/WorldMetadata.java index 7985d994..9d6e6271 100644 --- a/src/main/java/io/github/vrchatapi/model/WorldMetadata.java +++ b/src/main/java/io/github/vrchatapi/model/WorldMetadata.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/src/main/java/io/github/vrchatapi/model/WorldPublishStatus.java b/src/main/java/io/github/vrchatapi/model/WorldPublishStatus.java index 4312ed3e..8dceebd1 100644 --- a/src/main/java/io/github/vrchatapi/model/WorldPublishStatus.java +++ b/src/main/java/io/github/vrchatapi/model/WorldPublishStatus.java @@ -1,7 +1,7 @@ /* * VRChat API Documentation * - * The version of the OpenAPI document: 1.17.5 + * The version of the OpenAPI document: 1.17.6 * Contact: vrchatapi.lpv0t@aries.fyi * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).