Skip to content

Commit

Permalink
Upgrade Java SDK to spec 1.16.7
Browse files Browse the repository at this point in the history
  • Loading branch information
VRCCat committed Mar 22, 2024
1 parent b9d5ba1 commit af096e2
Show file tree
Hide file tree
Showing 162 changed files with 229 additions and 189 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'java'
apply plugin: 'com.diffplug.spotless'

group = 'io.github.vrchatapi'
version = '1.16.6'
version = '1.16.7'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "io.github.vrchatapi",
name := "vrchatapi",
version := "1.16.6",
version := "1.16.7",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
16 changes: 12 additions & 4 deletions docs/GroupsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -1513,7 +1513,7 @@ public class Example {

<a name="getGroupInvites"></a>
# **getGroupInvites**
> List&lt;GroupMember&gt; getGroupInvites(groupId)
> List&lt;GroupMember&gt; getGroupInvites(groupId, n, offset)
Get Group Invites Sent

Expand Down Expand Up @@ -1542,8 +1542,10 @@ public class Example {

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

### Return type

Expand Down Expand Up @@ -1808,7 +1812,7 @@ public class Example {

<a name="getGroupRequests"></a>
# **getGroupRequests**
> List&lt;GroupMember&gt; getGroupRequests(groupId)
> List&lt;GroupMember&gt; getGroupRequests(groupId, n, offset)
Get Group Join Requests

Expand Down Expand Up @@ -1837,8 +1841,10 @@ public class Example {

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

### Return type

Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"dependencies": {
"@openapitools/openapi-generator-cli": "^2.9.0"
"@openapitools/openapi-generator-cli": "^2.13.1"
}
}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>vrchatapi</artifactId>
<packaging>jar</packaging>
<name>vrchatapi</name>
<version>1.16.6</version>
<version>1.16.7</version>
<url>https://github.com/openapitools/openapi-generator</url>
<description>OpenAPI Java</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/github/vrchatapi/ApiCallback.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/github/vrchatapi/ApiClient.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/github/vrchatapi/ApiException.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/github/vrchatapi/ApiResponse.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/github/vrchatapi/Configuration.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/github/vrchatapi/JSON.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/github/vrchatapi/Pair.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/github/vrchatapi/ProgressRequestBody.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/github/vrchatapi/StringUtil.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/github/vrchatapi/api/AvatarsApi.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/github/vrchatapi/api/EconomyApi.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/github/vrchatapi/api/FavoritesApi.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/github/vrchatapi/api/FilesApi.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/github/vrchatapi/api/FriendsApi.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* VRChat API Documentation
*
* The version of the OpenAPI document: 1.16.6
* The version of the OpenAPI document: 1.16.7
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Loading

0 comments on commit af096e2

Please sign in to comment.