Skip to content

Commit af096e2

Browse files
committed
Upgrade Java SDK to spec 1.16.7
1 parent b9d5ba1 commit af096e2

File tree

162 files changed

+229
-189
lines changed

Some content is hidden

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

162 files changed

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

docs/GroupsApi.md

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

15141514
<a name="getGroupInvites"></a>
15151515
# **getGroupInvites**
1516-
> List&lt;GroupMember&gt; getGroupInvites(groupId)
1516+
> List&lt;GroupMember&gt; getGroupInvites(groupId, n, offset)
15171517
15181518
Get Group Invites Sent
15191519

@@ -1542,8 +1542,10 @@ public class Example {
15421542

15431543
GroupsApi apiInstance = new GroupsApi(defaultClient);
15441544
String groupId = "grp_00000000-0000-0000-0000-000000000000"; // String | Must be a valid group ID.
1545+
Integer n = 60; // Integer | The number of objects to return.
1546+
Integer offset = 56; // Integer | A zero-based offset from the default object sorting from where search results start.
15451547
try {
1546-
List<GroupMember> result = apiInstance.getGroupInvites(groupId);
1548+
List<GroupMember> result = apiInstance.getGroupInvites(groupId, n, offset);
15471549
System.out.println(result);
15481550
} catch (ApiException e) {
15491551
System.err.println("Exception when calling GroupsApi#getGroupInvites");
@@ -1561,6 +1563,8 @@ public class Example {
15611563
| Name | Type | Description | Notes |
15621564
|------------- | ------------- | ------------- | -------------|
15631565
| **groupId** | **String**| Must be a valid group ID. | |
1566+
| **n** | **Integer**| The number of objects to return. | [optional] [default to 60] |
1567+
| **offset** | **Integer**| A zero-based offset from the default object sorting from where search results start. | [optional] |
15641568

15651569
### Return type
15661570

@@ -1808,7 +1812,7 @@ public class Example {
18081812

18091813
<a name="getGroupRequests"></a>
18101814
# **getGroupRequests**
1811-
> List&lt;GroupMember&gt; getGroupRequests(groupId)
1815+
> List&lt;GroupMember&gt; getGroupRequests(groupId, n, offset)
18121816
18131817
Get Group Join Requests
18141818

@@ -1837,8 +1841,10 @@ public class Example {
18371841

18381842
GroupsApi apiInstance = new GroupsApi(defaultClient);
18391843
String groupId = "grp_00000000-0000-0000-0000-000000000000"; // String | Must be a valid group ID.
1844+
Integer n = 60; // Integer | The number of objects to return.
1845+
Integer offset = 56; // Integer | A zero-based offset from the default object sorting from where search results start.
18401846
try {
1841-
List<GroupMember> result = apiInstance.getGroupRequests(groupId);
1847+
List<GroupMember> result = apiInstance.getGroupRequests(groupId, n, offset);
18421848
System.out.println(result);
18431849
} catch (ApiException e) {
18441850
System.err.println("Exception when calling GroupsApi#getGroupRequests");
@@ -1856,6 +1862,8 @@ public class Example {
18561862
| Name | Type | Description | Notes |
18571863
|------------- | ------------- | ------------- | -------------|
18581864
| **groupId** | **String**| Must be a valid group ID. | |
1865+
| **n** | **Integer**| The number of objects to return. | [optional] [default to 60] |
1866+
| **offset** | **Integer**| A zero-based offset from the default object sorting from where search results start. | [optional] |
18591867

18601868
### Return type
18611869

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"dependencies": {
3-
"@openapitools/openapi-generator-cli": "^2.9.0"
3+
"@openapitools/openapi-generator-cli": "^2.13.1"
44
}
55
}

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.6</version>
8+
<version>1.16.7</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.6
4+
* The version of the OpenAPI document: 1.16.7
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.6
4+
* The version of the OpenAPI document: 1.16.7
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/ApiException.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.6
4+
* The version of the OpenAPI document: 1.16.7
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/ApiResponse.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.6
4+
* The version of the OpenAPI document: 1.16.7
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)