Skip to content

Commit 9748a3e

Browse files
committed
Upgrade Java SDK to spec 1.20.8-nightly.7
1 parent 9972150 commit 9748a3e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/AgeVerificationStatus.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
## Enum
66

77

8-
* `hidden` (value: `"18+"`)
8+
* `plus18` (value: `"18+"`)
99

10-
* `plus18` (value: `"hidden"`)
10+
* `hidden` (value: `"hidden"`)
1111

1212
* `verified` (value: `"verified"`)
1313

openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6442,8 +6442,8 @@ components:
64426442
- hidden
64436443
- verified
64446444
x-enum-varnames:
6445-
- hidden
64466445
- plus18
6446+
- hidden
64476447
- verified
64486448
AgeVerified:
64496449
title: AgeVerified

src/main/java/io/github/vrchatapi/model/AgeVerificationStatus.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
@JsonAdapter(AgeVerificationStatus.Adapter.class)
3030
public enum AgeVerificationStatus {
3131

32-
hidden("18+"),
32+
plus18("18+"),
3333

34-
plus18("hidden"),
34+
hidden("hidden"),
3535

3636
verified("verified");
3737

0 commit comments

Comments
 (0)