Skip to content

Commit 97da778

Browse files
committed
Upgrade Node SDK to spec 1.17.6
1 parent 4ca5320 commit 97da778

File tree

7 files changed

+35
-10
lines changed

7 files changed

+35
-10
lines changed

api.ts

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* VRChat API Documentation
55
*
6-
* The version of the OpenAPI document: 1.17.5
6+
* The version of the OpenAPI document: 1.17.6
77
* Contact: [email protected]
88
*
99
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1644,6 +1644,12 @@ export interface CurrentUser {
16441644
* @memberof CurrentUser
16451645
*/
16461646
'id': string;
1647+
/**
1648+
*
1649+
* @type {boolean}
1650+
* @memberof CurrentUser
1651+
*/
1652+
'isBoopingEnabled'?: boolean;
16471653
/**
16481654
*
16491655
* @type {boolean}
@@ -1746,6 +1752,12 @@ export interface CurrentUser {
17461752
* @memberof CurrentUser
17471753
*/
17481754
'profilePicOverride': string;
1755+
/**
1756+
*
1757+
* @type {string}
1758+
* @memberof CurrentUser
1759+
*/
1760+
'profilePicOverrideThumbnail': string;
17491761
/**
17501762
*
17511763
* @type {string}
@@ -2893,7 +2905,7 @@ export interface GroupLimitedMember {
28932905
* @type {string}
28942906
* @memberof GroupLimitedMember
28952907
*/
2896-
'joinedAt'?: string;
2908+
'joinedAt'?: string | null;
28972909
/**
28982910
*
28992911
* @type {GroupMemberStatus}
@@ -3106,7 +3118,8 @@ export const GroupMemberStatus = {
31063118
Member: 'member',
31073119
Requested: 'requested',
31083120
Invited: 'invited',
3109-
Banned: 'banned'
3121+
Banned: 'banned',
3122+
Userblocked: 'userblocked'
31103123
} as const;
31113124

31123125
export type GroupMemberStatus = typeof GroupMemberStatus[keyof typeof GroupMemberStatus];
@@ -6196,6 +6209,12 @@ export interface UpdateUserRequest {
61966209
* @memberof UpdateUserRequest
61976210
*/
61986211
'pronouns'?: string;
6212+
/**
6213+
*
6214+
* @type {boolean}
6215+
* @memberof UpdateUserRequest
6216+
*/
6217+
'isBoopingEnabled'?: boolean;
61996218
/**
62006219
* MUST be a valid VRChat /file/ url.
62016220
* @type {string}
@@ -6420,6 +6439,12 @@ export interface User {
64206439
* @memberof User
64216440
*/
64226441
'profilePicOverride': string;
6442+
/**
6443+
*
6444+
* @type {string}
6445+
* @memberof User
6446+
*/
6447+
'profilePicOverrideThumbnail': string;
64236448
/**
64246449
*
64256450
* @type {string}

base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* VRChat API Documentation
55
*
6-
* The version of the OpenAPI document: 1.17.5
6+
* The version of the OpenAPI document: 1.17.6
77
* Contact: [email protected]
88
*
99
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* VRChat API Documentation
55
*
6-
* The version of the OpenAPI document: 1.17.5
6+
* The version of the OpenAPI document: 1.17.6
77
* Contact: [email protected]
88
*
99
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* VRChat API Documentation
55
*
6-
* The version of the OpenAPI document: 1.17.5
6+
* The version of the OpenAPI document: 1.17.6
77
* Contact: [email protected]
88
*
99
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* VRChat API Documentation
55
*
6-
* The version of the OpenAPI document: 1.17.5
6+
* The version of the OpenAPI document: 1.17.6
77
* Contact: [email protected]
88
*
99
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vrchat",
3-
"version": "1.17.5",
3+
"version": "1.17.6",
44
"description": "🟡🔵 VRChat API Library for JavaScript and TypeScript",
55
"author": "OpenAPI-Generator Contributors",
66
"repository": {

0 commit comments

Comments
 (0)