Skip to content

Commit 8b87501

Browse files
committed
Upgrade Java SDK to spec 1.18.3
1 parent 116e765 commit 8b87501

File tree

187 files changed

+488
-271
lines changed

Some content is hidden

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

187 files changed

+488
-271
lines changed

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.18.1'
7+
version = '1.18.3'
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.18.1",
5+
version := "1.18.3",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/CreateAvatarRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
|**tags** | **List<String>** | | [optional] |
1515
|**imageUrl** | **String** | | |
1616
|**releaseStatus** | **ReleaseStatus** | | [optional] |
17-
|**version** | **BigDecimal** | | [optional] |
17+
|**version** | **Integer** | | [optional] |
1818
|**unityPackageUrl** | **String** | | [optional] |
1919
|**unityVersion** | **String** | | [optional] |
2020

docs/CreateFileVersionRequest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
1010
|**signatureMd5** | **String** | | |
11-
|**signatureSizeInBytes** | **BigDecimal** | | |
11+
|**signatureSizeInBytes** | **Integer** | | |
1212
|**fileMd5** | **String** | | [optional] |
13-
|**fileSizeInBytes** | **BigDecimal** | | [optional] |
13+
|**fileSizeInBytes** | **Integer** | | [optional] |
1414

1515

1616

docs/CurrentUser.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@
5858
|**profilePicOverride** | **String** | | |
5959
|**profilePicOverrideThumbnail** | **String** | | |
6060
|**pronouns** | **String** | | |
61+
|**queuedInstance** | **String** | | [optional] |
62+
|**receiveMobileInvitations** | **Boolean** | | [optional] |
6163
|**state** | **UserState** | | |
6264
|**status** | **UserStatus** | | |
6365
|**statusDescription** | **String** | | |

docs/CurrentUserPresence.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
1010
|**avatarThumbnail** | **String** | | [optional] |
11+
|**currentAvatarTags** | **String** | | [optional] |
1112
|**displayName** | **String** | | [optional] |
1213
|**groups** | **List<String>** | | [optional] |
1314
|**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] |
@@ -19,6 +20,7 @@
1920
|**status** | **String** | either a UserStatus or empty string | [optional] |
2021
|**travelingToInstance** | **String** | | [optional] |
2122
|**travelingToWorld** | **String** | WorldID be \"offline\" on User profiles if you are not friends with that user. | [optional] |
23+
|**userIcon** | **String** | | [optional] |
2224
|**world** | **String** | WorldID be \"offline\" on User profiles if you are not friends with that user. | [optional] |
2325

2426

docs/FileVersionUploadStatus.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
|------------ | ------------- | ------------- | -------------|
1111
|**uploadId** | **String** | | |
1212
|**fileName** | **String** | | |
13-
|**nextPartNumber** | **BigDecimal** | | |
14-
|**maxParts** | **BigDecimal** | | |
13+
|**nextPartNumber** | **Integer** | | |
14+
|**maxParts** | **Integer** | | |
1515
|**parts** | **List<Object>** | | |
1616
|**etags** | **List<Object>** | Unknown | |
1717

docs/GroupsApi.md

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

18891889
<a name="getGroupMembers"></a>
18901890
# **getGroupMembers**
1891-
> List&lt;GroupMember&gt; getGroupMembers(groupId, n, offset, sort)
1891+
> List&lt;GroupMember&gt; getGroupMembers(groupId, n, offset, sort, roleId)
18921892
18931893
List Group Members
18941894

@@ -1920,8 +1920,9 @@ public class Example {
19201920
Integer n = 60; // Integer | The number of objects to return.
19211921
Integer offset = 56; // Integer | A zero-based offset from the default object sorting from where search results start.
19221922
GroupSearchSort sort = GroupSearchSort.fromValue("joinedAt:asc"); // GroupSearchSort | The sort order of Group Member results
1923+
String roleId = "roleId_example"; // String | Only returns members with a specific groupRoleId
19231924
try {
1924-
List<GroupMember> result = apiInstance.getGroupMembers(groupId, n, offset, sort);
1925+
List<GroupMember> result = apiInstance.getGroupMembers(groupId, n, offset, sort, roleId);
19251926
System.out.println(result);
19261927
} catch (ApiException e) {
19271928
System.err.println("Exception when calling GroupsApi#getGroupMembers");
@@ -1942,6 +1943,7 @@ public class Example {
19421943
| **n** | **Integer**| The number of objects to return. | [optional] [default to 60] |
19431944
| **offset** | **Integer**| A zero-based offset from the default object sorting from where search results start. | [optional] |
19441945
| **sort** | [**GroupSearchSort**](.md)| The sort order of Group Member results | [optional] [enum: joinedAt:asc, joinedAt:desc] |
1946+
| **roleId** | **String**| Only returns members with a specific groupRoleId | [optional] |
19451947

19461948
### Return type
19471949

docs/Subscription.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
|**amount** | **BigDecimal** | | |
1818
|**description** | **String** | | |
1919
|**period** | **SubscriptionPeriod** | | |
20-
|**tier** | **BigDecimal** | | |
20+
|**tier** | **Integer** | | |
2121

2222

2323

docs/TransactionAgreement.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ Represents a single Transaction, which is likely between VRChat and Steam.
99
| Name | Type | Description | Notes |
1010
|------------ | ------------- | ------------- | -------------|
1111
|**agreementId** | **String** | | |
12-
|**itemId** | **BigDecimal** | | |
12+
|**itemId** | **Integer** | | |
1313
|**agreement** | **String** | | |
1414
|**status** | **String** | This is NOT TransactionStatus, but whatever Steam return. | |
1515
|**period** | **String** | | |
16-
|**frequency** | **BigDecimal** | | |
16+
|**frequency** | **Integer** | | |
1717
|**billingType** | **String** | | |
1818
|**startDate** | **String** | | |
1919
|**endDate** | **String** | | |
@@ -24,8 +24,8 @@ Represents a single Transaction, which is likely between VRChat and Steam.
2424
|**lastPayment** | **String** | | |
2525
|**lastAmount** | **BigDecimal** | | |
2626
|**lastAmountVat** | **BigDecimal** | | |
27-
|**outstanding** | **BigDecimal** | | |
28-
|**failedAttempts** | **BigDecimal** | | |
27+
|**outstanding** | **Integer** | | |
28+
|**failedAttempts** | **Integer** | | |
2929

3030

3131

0 commit comments

Comments
 (0)