Skip to content

Commit

Permalink
Upgrade Node SDK to spec 1.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
VRCCat committed Sep 11, 2024
1 parent bfd3b8f commit d8367d0
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2505,7 +2505,7 @@ export interface Group {
*/
'joinState'?: GroupJoinState;
/**
*
*
* @type {Array<string>}
* @memberof Group
*/
Expand All @@ -2517,7 +2517,7 @@ export interface Group {
*/
'transferTargetId'?: string;
/**
*
*
* @type {Array<GroupGallery>}
* @memberof Group
*/
Expand All @@ -2539,7 +2539,7 @@ export interface Group {
* @type {string}
* @memberof Group
*/
'lastPostCreatedAt'?: string;
'lastPostCreatedAt'?: string | null;
/**
*
* @type {number}
Expand Down Expand Up @@ -3199,7 +3199,7 @@ export interface GroupMyMember {
* @type {string}
* @memberof GroupMyMember
*/
'acceptedByDisplayName'?: string;
'acceptedByDisplayName'?: string | null;
/**
* 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.
* @type {string}
Expand Down Expand Up @@ -3271,7 +3271,7 @@ export interface GroupMyMember {
* @type {string}
* @memberof GroupMyMember
*/
'lastPostReadAt'?: string;
'lastPostReadAt'?: string | null;
/**
*
* @type {Array<string>}
Expand Down Expand Up @@ -4001,7 +4001,8 @@ export const InstanceRegion = {
Us: 'us',
Use: 'use',
Eu: 'eu',
Jp: 'jp'
Jp: 'jp',
Unknown: 'unknown'
} as const;

export type InstanceRegion = typeof InstanceRegion[keyof typeof InstanceRegion];
Expand Down Expand Up @@ -6618,6 +6619,12 @@ export interface UserExists {
* @memberof UserExists
*/
'userExists': boolean;
/**
* Is the username valid?
* @type {boolean}
* @memberof UserExists
*/
'nameOk': boolean;
}
/**
* * \"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).
Expand Down

0 comments on commit d8367d0

Please sign in to comment.