Skip to content

Commit a60e052

Browse files
committed
Upgrade Java SDK to spec 1.16.4
1 parent 73d7c02 commit a60e052

File tree

163 files changed

+488
-172
lines changed

Some content is hidden

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

163 files changed

+488
-172
lines changed

.openapi-generator/FILES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ docs/GroupPermission.md
6060
docs/GroupPrivacy.md
6161
docs/GroupRole.md
6262
docs/GroupRoleTemplate.md
63+
docs/GroupSearchSort.md
6364
docs/GroupUserVisibility.md
6465
docs/GroupsApi.md
6566
docs/InfoPush.md
@@ -234,6 +235,7 @@ src/main/java/io/github/vrchatapi/model/GroupPermission.java
234235
src/main/java/io/github/vrchatapi/model/GroupPrivacy.java
235236
src/main/java/io/github/vrchatapi/model/GroupRole.java
236237
src/main/java/io/github/vrchatapi/model/GroupRoleTemplate.java
238+
src/main/java/io/github/vrchatapi/model/GroupSearchSort.java
237239
src/main/java/io/github/vrchatapi/model/GroupUserVisibility.java
238240
src/main/java/io/github/vrchatapi/model/InfoPush.java
239241
src/main/java/io/github/vrchatapi/model/InfoPushData.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.16.3'
7+
version = '1.16.4'
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.16.3",
5+
version := "1.16.4",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/GroupMember.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,16 @@
1313
|**isRepresenting** | **Boolean** | Whether the user is representing the group. This makes the group show up above the name tag in-game. | [optional] |
1414
|**user** | [**GroupMemberLimitedUser**](GroupMemberLimitedUser.md) | | [optional] |
1515
|**roleIds** | **List<String>** | | [optional] |
16+
|**mRoleIds** | **List<String>** | | [optional] |
1617
|**joinedAt** | **OffsetDateTime** | | [optional] |
1718
|**membershipStatus** | **String** | | [optional] |
1819
|**visibility** | **String** | | [optional] |
1920
|**isSubscribedToAnnouncements** | **Boolean** | | [optional] |
2021
|**createdAt** | **OffsetDateTime** | Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user. | [optional] |
2122
|**bannedAt** | **OffsetDateTime** | Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user. | [optional] |
2223
|**managerNotes** | **String** | Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user. | [optional] |
24+
|**lastPostReadAt** | **OffsetDateTime** | | [optional] |
25+
|**hasJoinedFromPurchase** | **Boolean** | | [optional] |
2326

2427

2528

docs/GroupMemberLimitedUser.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ Only visible via the /groups/:groupId/members endpoint, **not** when fetching a
1212
|**displayName** | **String** | | [optional] |
1313
|**thumbnailUrl** | **String** | | [optional] |
1414
|**iconUrl** | **String** | | [optional] |
15+
|**profilePicOverride** | **String** | | [optional] |
16+
|**currentAvatarThumbnailImageUrl** | **String** | | [optional] |
17+
|**currentAvatarTags** | **List<String>** | | [optional] |
1518

1619

1720

docs/GroupSearchSort.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
3+
# GroupSearchSort
4+
5+
## Enum
6+
7+
8+
* `ASC` (value: `"joinedAt:asc"`)
9+
10+
* `DESC` (value: `"joinedAt:desc"`)
11+
12+
13+

docs/GroupsApi.md

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

16591659
<a name="getGroupMembers"></a>
16601660
# **getGroupMembers**
1661-
> List&lt;GroupMember&gt; getGroupMembers(groupId, n, offset)
1661+
> List&lt;GroupMember&gt; getGroupMembers(groupId, n, offset, sort)
16621662
16631663
List Group Members
16641664

@@ -1689,8 +1689,9 @@ public class Example {
16891689
String groupId = "grp_00000000-0000-0000-0000-000000000000"; // String | Must be a valid group ID.
16901690
Integer n = 60; // Integer | The number of objects to return.
16911691
Integer offset = 56; // Integer | A zero-based offset from the default object sorting from where search results start.
1692+
GroupSearchSort sort = GroupSearchSort.fromValue("joinedAt:asc"); // GroupSearchSort | The sort order of Group Member results
16921693
try {
1693-
List<GroupMember> result = apiInstance.getGroupMembers(groupId, n, offset);
1694+
List<GroupMember> result = apiInstance.getGroupMembers(groupId, n, offset, sort);
16941695
System.out.println(result);
16951696
} catch (ApiException e) {
16961697
System.err.println("Exception when calling GroupsApi#getGroupMembers");
@@ -1710,6 +1711,7 @@ public class Example {
17101711
| **groupId** | **String**| Must be a valid group ID. | |
17111712
| **n** | **Integer**| The number of objects to return. | [optional] [default to 60] |
17121713
| **offset** | **Integer**| A zero-based offset from the default object sorting from where search results start. | [optional] |
1714+
| **sort** | [**GroupSearchSort**](.md)| The sort order of Group Member results | [optional] [enum: joinedAt:asc, joinedAt:desc] |
17131715

17141716
### Return type
17151717

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>vrchatapi</artifactId>
66
<packaging>jar</packaging>
77
<name>vrchatapi</name>
8-
<version>1.16.3</version>
8+
<version>1.16.4</version>
99
<url>https://github.com/openapitools/openapi-generator</url>
1010
<description>OpenAPI Java</description>
1111
<scm>

src/main/java/io/github/vrchatapi/ApiCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* VRChat API Documentation
33
*
4-
* The version of the OpenAPI document: 1.16.3
4+
* The version of the OpenAPI document: 1.16.4
55
* Contact: vrchatapi.lpv0t@aries.fyi
66
*
77
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/io/github/vrchatapi/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* VRChat API Documentation
33
*
4-
* The version of the OpenAPI document: 1.16.3
4+
* The version of the OpenAPI document: 1.16.4
55
* Contact: vrchatapi.lpv0t@aries.fyi
66
*
77
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

0 commit comments

Comments
 (0)