Skip to content

Commit 4d068a1

Browse files
committed
Upgrade Java SDK to spec 1.20.0
1 parent 713c1e9 commit 4d068a1

File tree

257 files changed

+3049
-522
lines changed

Some content is hidden

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

257 files changed

+3049
-522
lines changed

.openapi-generator/FILES

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ docs/AddGroupGalleryImageRequest.md
3232
docs/AgeVerificationStatus.md
3333
docs/AuthenticationApi.md
3434
docs/Avatar.md
35+
docs/AvatarPerformance.md
3536
docs/AvatarPublishedListingsInner.md
3637
docs/AvatarStyles.md
3738
docs/AvatarUnityPackageUrlObject.md
@@ -133,8 +134,10 @@ docs/LicenseGroup.md
133134
docs/LicenseType.md
134135
docs/LimitedGroup.md
135136
docs/LimitedUnityPackage.md
136-
docs/LimitedUser.md
137+
docs/LimitedUserFriend.md
137138
docs/LimitedUserGroups.md
139+
docs/LimitedUserInstance.md
140+
docs/LimitedUserSearch.md
138141
docs/LimitedWorld.md
139142
docs/MIMEType.md
140143
docs/MiscellaneousApi.md
@@ -296,6 +299,7 @@ src/main/java/io/github/vrchatapi/model/AddFavoriteRequest.java
296299
src/main/java/io/github/vrchatapi/model/AddGroupGalleryImageRequest.java
297300
src/main/java/io/github/vrchatapi/model/AgeVerificationStatus.java
298301
src/main/java/io/github/vrchatapi/model/Avatar.java
302+
src/main/java/io/github/vrchatapi/model/AvatarPerformance.java
299303
src/main/java/io/github/vrchatapi/model/AvatarPublishedListingsInner.java
300304
src/main/java/io/github/vrchatapi/model/AvatarStyles.java
301305
src/main/java/io/github/vrchatapi/model/AvatarUnityPackageUrlObject.java
@@ -388,8 +392,10 @@ src/main/java/io/github/vrchatapi/model/LicenseGroup.java
388392
src/main/java/io/github/vrchatapi/model/LicenseType.java
389393
src/main/java/io/github/vrchatapi/model/LimitedGroup.java
390394
src/main/java/io/github/vrchatapi/model/LimitedUnityPackage.java
391-
src/main/java/io/github/vrchatapi/model/LimitedUser.java
395+
src/main/java/io/github/vrchatapi/model/LimitedUserFriend.java
392396
src/main/java/io/github/vrchatapi/model/LimitedUserGroups.java
397+
src/main/java/io/github/vrchatapi/model/LimitedUserInstance.java
398+
src/main/java/io/github/vrchatapi/model/LimitedUserSearch.java
393399
src/main/java/io/github/vrchatapi/model/LimitedWorld.java
394400
src/main/java/io/github/vrchatapi/model/MIMEType.java
395401
src/main/java/io/github/vrchatapi/model/ModelFile.java

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'java'
44
apply plugin: 'com.diffplug.spotless'
55

66
group = 'io.github.vrchatapi'
7-
version = '1.19.4'
7+
version = '1.20.0'
88

99
buildscript {
1010
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "io.github.vrchatapi",
44
name := "vrchatapi",
5-
version := "1.19.4",
5+
version := "1.20.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/Avatar.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
|**lock** | **Boolean** | | [optional] |
2323
|**lowestPrice** | **Integer** | | [optional] |
2424
|**name** | **String** | | |
25+
|**performance** | [**AvatarPerformance**](AvatarPerformance.md) | | |
2526
|**productId** | **String** | | [optional] |
2627
|**publishedListings** | [**List<AvatarPublishedListingsInner>**](AvatarPublishedListingsInner.md) | | [optional] |
2728
|**releaseStatus** | **ReleaseStatus** | | |

docs/AvatarPerformance.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
3+
# AvatarPerformance
4+
5+
6+
## Properties
7+
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**android** | **String** | | [optional] |
11+
|**androidSort** | **Integer** | | [optional] |
12+
|**ios** | **String** | | [optional] |
13+
|**iosSort** | **Integer** | | [optional] |
14+
|**standalonewindows** | **String** | | [optional] |
15+
|**standalonewindowsSort** | **Integer** | | [optional] |
16+
17+
18+

docs/CurrentUserPresence.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
|**avatarThumbnail** | **String** | | [optional] |
1111
|**currentAvatarTags** | **String** | | [optional] |
1212
|**displayName** | **String** | | [optional] |
13+
|**debugflag** | **String** | | [optional] |
1314
|**groups** | **List<String>** | | [optional] |
1415
|**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. | [optional] |
1516
|**instance** | **String** | | [optional] |

docs/FriendsApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ public class Example {
226226

227227
<a name="getFriends"></a>
228228
# **getFriends**
229-
> List&lt;LimitedUser&gt; getFriends(offset, n, offline)
229+
> List&lt;LimitedUserFriend&gt; getFriends(offset, n, offline)
230230
231231
List Friends
232232

@@ -258,7 +258,7 @@ public class Example {
258258
Integer n = 60; // Integer | The number of objects to return.
259259
Boolean offline = true; // Boolean | Returns *only* offline users if true, returns only online and active users if false
260260
try {
261-
List<LimitedUser> result = apiInstance.getFriends(offset, n, offline);
261+
List<LimitedUserFriend> result = apiInstance.getFriends(offset, n, offline);
262262
System.out.println(result);
263263
} catch (ApiException e) {
264264
System.err.println("Exception when calling FriendsApi#getFriends");
@@ -281,7 +281,7 @@ public class Example {
281281

282282
### Return type
283283

284-
[**List&lt;LimitedUser&gt;**](LimitedUser.md)
284+
[**List&lt;LimitedUserFriend&gt;**](LimitedUserFriend.md)
285285

286286
### Authorization
287287

@@ -295,7 +295,7 @@ public class Example {
295295
### HTTP response details
296296
| Status code | Description | Response headers |
297297
|-------------|-------------|------------------|
298-
| **200** | Returns a list of LimitedUser objects. | - |
298+
| **200** | Returns a list of LimitedUserFriend objects. | - |
299299
| **401** | Error response due to missing auth cookie. | - |
300300

301301
<a name="unfriend"></a>

docs/Instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
|**strict** | **Boolean** | | |
4545
|**userCount** | **Integer** | | |
4646
|**world** | [**World**](World.md) | | |
47-
|**users** | [**List&lt;LimitedUser&gt;**](LimitedUser.md) | The users field is present on instances created by the requesting user. | [optional] |
47+
|**users** | [**List&lt;LimitedUserInstance&gt;**](LimitedUserInstance.md) | The users field is present on instances created by the requesting user. | [optional] |
4848
|**groupAccessType** | **GroupAccessType** | | [optional] |
4949
|**hasCapacityForYou** | **Boolean** | | [optional] |
5050
|**nonce** | **String** | | [optional] |

docs/InstanceContentSettings.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Types of dynamic user content permitted in an instance
1313
|**pedestals** | **Boolean** | | [optional] |
1414
|**prints** | **Boolean** | | [optional] |
1515
|**stickers** | **Boolean** | | [optional] |
16+
|**props** | **Boolean** | | [optional] |
1617

1718

1819

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,36 @@
11

22

3-
# LimitedUser
4-
3+
# LimitedUserFriend
54

5+
User object received when querying your friends list
66

77
## Properties
88

99
| Name | Type | Description | Notes |
1010
|------------ | ------------- | ------------- | -------------|
1111
|**bio** | **String** | | [optional] |
1212
|**bioLinks** | **List&lt;String&gt;** | | [optional] |
13-
|**currentAvatarImageUrl** | **String** | When profilePicOverride is not empty, use it instead. | [optional] |
13+
|**currentAvatarImageUrl** | **String** | When profilePicOverride is not empty, use it instead. | |
1414
|**currentAvatarThumbnailImageUrl** | **String** | When profilePicOverride is not empty, use it instead. | [optional] |
1515
|**currentAvatarTags** | **List&lt;String&gt;** | | [optional] |
1616
|**developerType** | **DeveloperType** | | |
1717
|**displayName** | **String** | | |
18-
|**fallbackAvatar** | **String** | | [optional] |
18+
|**friendKey** | **String** | | |
1919
|**id** | **String** | A users unique ID, usually in the form of &#x60;usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469&#x60;. Legacy players can have old IDs in the form of &#x60;8JoV9XEdpo&#x60;. The ID can never be changed. | |
2020
|**isFriend** | **Boolean** | | |
21+
|**imageUrl** | **String** | | |
2122
|**lastPlatform** | **String** | This can be &#x60;standalonewindows&#x60; or &#x60;android&#x60;, but can also pretty much be any random Unity verison such as &#x60;2019.2.4-801-Release&#x60; or &#x60;2019.2.2-772-Release&#x60; or even &#x60;unknownplatform&#x60;. | |
22-
|**lastLogin** | **OffsetDateTime** | | [optional] |
23-
|**profilePicOverride** | **String** | | [optional] |
24-
|**pronouns** | **String** | | [optional] |
23+
|**location** | **String** | | |
24+
|**lastLogin** | **OffsetDateTime** | | |
25+
|**lastActivity** | **OffsetDateTime** | | |
26+
|**lastMobile** | **OffsetDateTime** | | |
27+
|**platform** | **String** | | |
28+
|**profilePicOverride** | **String** | | |
29+
|**profilePicOverrideThumbnail** | **String** | | |
2530
|**status** | **UserStatus** | | |
2631
|**statusDescription** | **String** | | |
2732
|**tags** | **List&lt;String&gt;** | &lt;- Always empty. | |
28-
|**userIcon** | **String** | | [optional] |
29-
|**username** | **String** | -| **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429). | [optional] |
30-
|**location** | **String** | | [optional] |
31-
|**friendKey** | **String** | | [optional] |
33+
|**userIcon** | **String** | | |
3234

3335

3436

0 commit comments

Comments
 (0)