Skip to content

Commit d8367d0

Browse files
committed
Upgrade Node SDK to spec 1.18.1
1 parent bfd3b8f commit d8367d0

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

api.ts

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2505,7 +2505,7 @@ export interface Group {
25052505
*/
25062506
'joinState'?: GroupJoinState;
25072507
/**
2508-
*
2508+
*
25092509
* @type {Array<string>}
25102510
* @memberof Group
25112511
*/
@@ -2517,7 +2517,7 @@ export interface Group {
25172517
*/
25182518
'transferTargetId'?: string;
25192519
/**
2520-
*
2520+
*
25212521
* @type {Array<GroupGallery>}
25222522
* @memberof Group
25232523
*/
@@ -2539,7 +2539,7 @@ export interface Group {
25392539
* @type {string}
25402540
* @memberof Group
25412541
*/
2542-
'lastPostCreatedAt'?: string;
2542+
'lastPostCreatedAt'?: string | null;
25432543
/**
25442544
*
25452545
* @type {number}
@@ -3199,7 +3199,7 @@ export interface GroupMyMember {
31993199
* @type {string}
32003200
* @memberof GroupMyMember
32013201
*/
3202-
'acceptedByDisplayName'?: string;
3202+
'acceptedByDisplayName'?: string | null;
32033203
/**
32043204
* 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.
32053205
* @type {string}
@@ -3271,7 +3271,7 @@ export interface GroupMyMember {
32713271
* @type {string}
32723272
* @memberof GroupMyMember
32733273
*/
3274-
'lastPostReadAt'?: string;
3274+
'lastPostReadAt'?: string | null;
32753275
/**
32763276
*
32773277
* @type {Array<string>}
@@ -4001,7 +4001,8 @@ export const InstanceRegion = {
40014001
Us: 'us',
40024002
Use: 'use',
40034003
Eu: 'eu',
4004-
Jp: 'jp'
4004+
Jp: 'jp',
4005+
Unknown: 'unknown'
40054006
} as const;
40064007

40074008
export type InstanceRegion = typeof InstanceRegion[keyof typeof InstanceRegion];
@@ -6618,6 +6619,12 @@ export interface UserExists {
66186619
* @memberof UserExists
66196620
*/
66206621
'userExists': boolean;
6622+
/**
6623+
* Is the username valid?
6624+
* @type {boolean}
6625+
* @memberof UserExists
6626+
*/
6627+
'nameOk': boolean;
66216628
}
66226629
/**
66236630
* * \"online\" User is online in VRChat * \"active\" User is online, but not in VRChat * \"offline\" User is offline Always offline when returned through `getCurrentUser` (/auth/user).

0 commit comments

Comments
 (0)