Skip to content

Commit 19f3d06

Browse files
committed
Upgrade Java SDK to spec 1.18.8
1 parent e3814bb commit 19f3d06

File tree

207 files changed

+1364
-211
lines changed

Some content is hidden

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

207 files changed

+1364
-211
lines changed

.openapi-generator/FILES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ build.gradle
44
build.sbt
55
docs/APIConfig.md
66
docs/APIConfigAnnouncement.md
7+
docs/APIConfigAvatarPerfLimiter.md
78
docs/APIConfigConstants.md
89
docs/APIConfigConstantsGROUPS.md
910
docs/APIConfigConstantsINSTANCE.md
@@ -126,6 +127,7 @@ docs/NotificationsApi.md
126127
docs/OrderOption.md
127128
docs/PaginatedGroupAuditLogEntryList.md
128129
docs/PastDisplayName.md
130+
docs/PerformanceLimiterInfo.md
129131
docs/PerformanceRatings.md
130132
docs/Permission.md
131133
docs/PermissionsApi.md
@@ -222,6 +224,7 @@ src/main/java/io/github/vrchatapi/auth/HttpBasicAuth.java
222224
src/main/java/io/github/vrchatapi/auth/HttpBearerAuth.java
223225
src/main/java/io/github/vrchatapi/model/APIConfig.java
224226
src/main/java/io/github/vrchatapi/model/APIConfigAnnouncement.java
227+
src/main/java/io/github/vrchatapi/model/APIConfigAvatarPerfLimiter.java
225228
src/main/java/io/github/vrchatapi/model/APIConfigConstants.java
226229
src/main/java/io/github/vrchatapi/model/APIConfigConstantsGROUPS.java
227230
src/main/java/io/github/vrchatapi/model/APIConfigConstantsINSTANCE.java
@@ -334,6 +337,7 @@ src/main/java/io/github/vrchatapi/model/NotificationType.java
334337
src/main/java/io/github/vrchatapi/model/OrderOption.java
335338
src/main/java/io/github/vrchatapi/model/PaginatedGroupAuditLogEntryList.java
336339
src/main/java/io/github/vrchatapi/model/PastDisplayName.java
340+
src/main/java/io/github/vrchatapi/model/PerformanceLimiterInfo.java
337341
src/main/java/io/github/vrchatapi/model/PerformanceRatings.java
338342
src/main/java/io/github/vrchatapi/model/Permission.java
339343
src/main/java/io/github/vrchatapi/model/PlatformBuildInfo.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.18.7'
7+
version = '1.18.8'
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.7",
5+
version := "1.18.8",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/APIConfig.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,15 @@
1111
|**voiceEnableDegradation** | **Boolean** | Unknown, probably voice optimization testing | |
1212
|**voiceEnableReceiverLimiting** | **Boolean** | Unknown, probably voice optimization testing | |
1313
|**address** | **String** | VRChat's office address | |
14+
|**ageVerificationP** | **Boolean** | | |
15+
|**ageVerificationStatusVisible** | **Boolean** | | |
1416
|**announcements** | [**Set<APIConfigAnnouncement>**](APIConfigAnnouncement.md) | Public Announcements | |
1517
|**analyticsSegmentNewUIPctOfUsers** | **Integer** | Unknown | |
1618
|**analyticsSegmentNewUISalt** | **String** | Unknown | |
1719
|**appName** | **String** | Game name | |
1820
|**availableLanguageCodes** | **List<String>** | List of supported Languages | |
1921
|**availableLanguages** | **List<String>** | List of supported Languages | |
22+
|**avatarPerfLimiter** | [**APIConfigAvatarPerfLimiter**](APIConfigAvatarPerfLimiter.md) | | |
2023
|**buildVersionTag** | **String** | Build tag of the API server | |
2124
|**chatboxLogBufferSeconds** | **Integer** | Unknown | |
2225
|**clientApiKey** | **String** | apiKey to be used for all other requests | |
@@ -41,6 +44,7 @@
4144
|**currentPrivacyVersion** | **Integer** | Current version number of the Privacy Agreement | [optional] |
4245
|**currentTOSVersion** | **Integer** | Current version number of the Terms of Service | |
4346
|**defaultAvatar** | **String** | | |
47+
|**defaultStickerSet** | **String** | | |
4448
|**deploymentGroup** | **DeploymentGroup** | | |
4549
|**devLanguageCodes** | **List<String>** | Unknown | [optional] |
4650
|**devSdkUrl** | **String** | Link to download the development SDK, use downloadUrls instead | |
@@ -95,6 +99,7 @@
9599
|**serverName** | **String** | Server name of the API server currently responding | |
96100
|**stringHostUrlList** | **List<String>** | A list of explicitly allowed origins that worlds can request strings from via the Udon's [VRCStringDownloader.LoadUrl](https://creators.vrchat.com/worlds/udon/string-loading/#ivrcstringdownload). | |
97101
|**supportEmail** | **String** | VRChat's support email | |
102+
|**supportFormUrl** | **String** | VRChat's support form | |
98103
|**timekeeping** | **Boolean** | Unknown | |
99104
|**timeOutWorldId** | **String** | WorldID be \"offline\" on User profiles if you are not friends with that user. | |
100105
|**tutorialWorldId** | **String** | WorldID be \"offline\" on User profiles if you are not friends with that user. | |

docs/APIConfigAvatarPerfLimiter.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
3+
# APIConfigAvatarPerfLimiter
4+
5+
6+
## Properties
7+
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**androidMobile** | [**PerformanceLimiterInfo**](PerformanceLimiterInfo.md) | | |
11+
|**PC** | [**PerformanceLimiterInfo**](PerformanceLimiterInfo.md) | | |
12+
|**pico** | [**PerformanceLimiterInfo**](PerformanceLimiterInfo.md) | | |
13+
|**quest** | [**PerformanceLimiterInfo**](PerformanceLimiterInfo.md) | | |
14+
|**xrElite** | [**PerformanceLimiterInfo**](PerformanceLimiterInfo.md) | | |
15+
|**iOSMobile** | [**PerformanceLimiterInfo**](PerformanceLimiterInfo.md) | | |
16+
17+
18+

docs/APIConfigReportCategories.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ Categories available for reporting objectionable content
1111
|**avatar** | [**ReportCategory**](ReportCategory.md) | | |
1212
|**behavior** | [**ReportCategory**](ReportCategory.md) | | |
1313
|**chat** | [**ReportCategory**](ReportCategory.md) | | |
14+
|**emoji** | [**ReportCategory**](ReportCategory.md) | | [optional] |
1415
|**environment** | [**ReportCategory**](ReportCategory.md) | | |
1516
|**groupstore** | [**ReportCategory**](ReportCategory.md) | | |
1617
|**image** | [**ReportCategory**](ReportCategory.md) | | |
1718
|**text** | [**ReportCategory**](ReportCategory.md) | | |
19+
|**sticker** | [**ReportCategory**](ReportCategory.md) | | [optional] |
1820
|**warnings** | [**ReportCategory**](ReportCategory.md) | | |
1921
|**worldimage** | [**ReportCategory**](ReportCategory.md) | | |
2022
|**worldstore** | [**ReportCategory**](ReportCategory.md) | | |

docs/CurrentUser.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
|**accountDeletionDate** | **LocalDate** | | [optional] |
1313
|**accountDeletionLog** | [**List<AccountDeletionLog>**](AccountDeletionLog.md) | | [optional] |
1414
|**activeFriends** | **List<String>** | | [optional] |
15+
|**ageVerificationStatus** | **String** | | |
16+
|**ageVerified** | **Boolean** | | |
1517
|**allowAvatarCopying** | **Boolean** | | |
1618
|**badges** | [**List<Badge>**](Badge.md) | | [optional] |
1719
|**bio** | **String** | | |
@@ -38,6 +40,7 @@
3840
|**hasPendingEmail** | **Boolean** | | |
3941
|**homeLocation** | **String** | WorldID be \"offline\" on User profiles if you are not friends with that user. | |
4042
|**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. | |
43+
|**isAdult** | **Boolean** | | |
4144
|**isBoopingEnabled** | **Boolean** | | [optional] |
4245
|**isFriend** | **Boolean** | | |
4346
|**lastActivity** | **OffsetDateTime** | | [optional] |

docs/FavoritedWorld.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
|**thumbnailImageUrl** | **String** | | |
3535
|**unityPackages** | [**List<UnityPackage>**](UnityPackage.md) | | |
3636
|**updatedAt** | **OffsetDateTime** | | |
37+
|**urlList** | **List<String>** | | |
3738
|**udonProducts** | **List<String>** | | [optional] |
3839
|**version** | **Integer** | | |
3940

docs/Instance.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
| Name | Type | Description | Notes |
1010
|------------ | ------------- | ------------- | -------------|
1111
|**active** | **Boolean** | | |
12+
|**ageGate** | **String** | | [optional] |
1213
|**canRequestInvite** | **Boolean** | | |
1314
|**capacity** | **Integer** | | |
1415
|**clientNumber** | **String** | Always returns \"unknown\". | |
@@ -25,7 +26,7 @@
2526
|**permanent** | **Boolean** | | |
2627
|**photonRegion** | **Region** | | |
2728
|**platforms** | [**InstancePlatforms**](InstancePlatforms.md) | | |
28-
|**playerPersistenceEnabled** | **String** | | |
29+
|**playerPersistenceEnabled** | **Boolean** | | |
2930
|**region** | **InstanceRegion** | | |
3031
|**secureName** | **String** | | |
3132
|**shortName** | **String** | | [optional] |

docs/PerformanceLimiterInfo.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
3+
# PerformanceLimiterInfo
4+
5+
Info about the performance limits on a platform
6+
7+
## Properties
8+
9+
| Name | Type | Description | Notes |
10+
|------------ | ------------- | ------------- | -------------|
11+
|**allowed** | **Boolean** | | |
12+
|**maxSeats** | **Integer** | Maximum amount of seats. -1 means no limit. | |
13+
14+
15+

0 commit comments

Comments
 (0)