Skip to content

Commit eacf703

Browse files
committed
Upgrade Node SDK to spec 1.18.3
1 parent d8367d0 commit eacf703

File tree

7 files changed

+60
-16
lines changed

7 files changed

+60
-16
lines changed

api.ts

Lines changed: 53 additions & 9 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.18.1
6+
* The version of the OpenAPI document: 1.18.3
77
* Contact: [email protected]
88
*
99
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1785,6 +1785,18 @@ export interface CurrentUser {
17851785
* @memberof CurrentUser
17861786
*/
17871787
'pronouns': string;
1788+
/**
1789+
*
1790+
* @type {string}
1791+
* @memberof CurrentUser
1792+
*/
1793+
'queuedInstance'?: string | null;
1794+
/**
1795+
*
1796+
* @type {boolean}
1797+
* @memberof CurrentUser
1798+
*/
1799+
'receiveMobileInvitations'?: boolean;
17881800
/**
17891801
*
17901802
* @type {UserState}
@@ -1883,6 +1895,12 @@ export interface CurrentUserPresence {
18831895
* @memberof CurrentUserPresence
18841896
*/
18851897
'avatarThumbnail'?: string | null;
1898+
/**
1899+
*
1900+
* @type {string}
1901+
* @memberof CurrentUserPresence
1902+
*/
1903+
'currentAvatarTags'?: string;
18861904
/**
18871905
*
18881906
* @type {string}
@@ -1949,6 +1967,12 @@ export interface CurrentUserPresence {
19491967
* @memberof CurrentUserPresence
19501968
*/
19511969
'travelingToWorld'?: string;
1970+
/**
1971+
*
1972+
* @type {string}
1973+
* @memberof CurrentUserPresence
1974+
*/
1975+
'userIcon'?: string | null;
19521976
/**
19531977
* WorldID be \"offline\" on User profiles if you are not friends with that user.
19541978
* @type {string}
@@ -5905,6 +5929,12 @@ export interface UnityPackage {
59055929
* @memberof UnityPackage
59065930
*/
59075931
'created_at'?: string;
5932+
/**
5933+
*
5934+
* @type {string}
5935+
* @memberof UnityPackage
5936+
*/
5937+
'impostorizerVersion'?: string;
59085938
/**
59095939
* This can be `standalonewindows` or `android`, but can also pretty much be any random Unity verison such as `2019.2.4-801-Release` or `2019.2.2-772-Release` or even `unknownplatform`.
59105940
* @type {string}
@@ -6503,6 +6533,12 @@ export interface User {
65036533
* @memberof User
65046534
*/
65056535
'last_login': string;
6536+
/**
6537+
*
6538+
* @type {string}
6539+
* @memberof User
6540+
*/
6541+
'last_mobile'?: string | null;
65066542
/**
65076543
* This can be `standalonewindows` or `android`, but can also pretty much be any random Unity verison such as `2019.2.4-801-Release` or `2019.2.2-772-Release` or even `unknownplatform`.
65086544
* @type {string}
@@ -6526,7 +6562,7 @@ export interface User {
65266562
* @type {string}
65276563
* @memberof User
65286564
*/
6529-
'platform': string;
6565+
'platform'?: string;
65306566
/**
65316567
*
65326568
* @type {string}
@@ -11833,10 +11869,11 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
1183311869
* @param {number} [n] The number of objects to return.
1183411870
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
1183511871
* @param {GroupSearchSort} [sort] The sort order of Group Member results
11872+
* @param {string} [roleId] Only returns members with a specific groupRoleId
1183611873
* @param {*} [options] Override http request option.
1183711874
* @throws {RequiredError}
1183811875
*/
11839-
getGroupMembers: async (groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
11876+
getGroupMembers: async (groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, roleId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1184011877
// verify required parameter 'groupId' is not null or undefined
1184111878
assertParamExists('getGroupMembers', 'groupId', groupId)
1184211879
const localVarPath = `/groups/{groupId}/members`
@@ -11866,6 +11903,10 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
1186611903
localVarQueryParameter['sort'] = sort;
1186711904
}
1186811905

11906+
if (roleId !== undefined) {
11907+
localVarQueryParameter['roleId'] = roleId;
11908+
}
11909+
1186911910

1187011911

1187111912
setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -12878,11 +12919,12 @@ export const GroupsApiFp = function(configuration?: Configuration) {
1287812919
* @param {number} [n] The number of objects to return.
1287912920
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
1288012921
* @param {GroupSearchSort} [sort] The sort order of Group Member results
12922+
* @param {string} [roleId] Only returns members with a specific groupRoleId
1288112923
* @param {*} [options] Override http request option.
1288212924
* @throws {RequiredError}
1288312925
*/
12884-
async getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>> {
12885-
const localVarAxiosArgs = await localVarAxiosParamCreator.getGroupMembers(groupId, n, offset, sort, options);
12926+
async getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, roleId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>> {
12927+
const localVarAxiosArgs = await localVarAxiosParamCreator.getGroupMembers(groupId, n, offset, sort, roleId, options);
1288612928
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1288712929
},
1288812930
/**
@@ -13381,11 +13423,12 @@ export const GroupsApiFactory = function (configuration?: Configuration, basePat
1338113423
* @param {number} [n] The number of objects to return.
1338213424
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
1338313425
* @param {GroupSearchSort} [sort] The sort order of Group Member results
13426+
* @param {string} [roleId] Only returns members with a specific groupRoleId
1338413427
* @param {*} [options] Override http request option.
1338513428
* @throws {RequiredError}
1338613429
*/
13387-
getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: any): AxiosPromise<Array<GroupMember>> {
13388-
return localVarFp.getGroupMembers(groupId, n, offset, sort, options).then((request) => request(axios, basePath));
13430+
getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, roleId?: string, options?: any): AxiosPromise<Array<GroupMember>> {
13431+
return localVarFp.getGroupMembers(groupId, n, offset, sort, roleId, options).then((request) => request(axios, basePath));
1338913432
},
1339013433
/**
1339113434
* Returns a List of all possible/available permissions for a Group.
@@ -13917,12 +13960,13 @@ export class GroupsApi extends BaseAPI {
1391713960
* @param {number} [n] The number of objects to return.
1391813961
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
1391913962
* @param {GroupSearchSort} [sort] The sort order of Group Member results
13963+
* @param {string} [roleId] Only returns members with a specific groupRoleId
1392013964
* @param {*} [options] Override http request option.
1392113965
* @throws {RequiredError}
1392213966
* @memberof GroupsApi
1392313967
*/
13924-
public getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: AxiosRequestConfig) {
13925-
return GroupsApiFp(this.configuration).getGroupMembers(groupId, n, offset, sort, options).then((request) => request(this.axios, this.basePath));
13968+
public getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, roleId?: string, options?: AxiosRequestConfig) {
13969+
return GroupsApiFp(this.configuration).getGroupMembers(groupId, n, offset, sort, roleId, options).then((request) => request(this.axios, this.basePath));
1392613970
}
1392713971

1392813972
/**

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.18.1
6+
* The version of the OpenAPI document: 1.18.3
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.18.1
6+
* The version of the OpenAPI document: 1.18.3
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.18.1
6+
* The version of the OpenAPI document: 1.18.3
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.18.1
6+
* The version of the OpenAPI document: 1.18.3
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.18.1",
3+
"version": "1.18.3",
44
"description": "🟡🔵 VRChat API Library for JavaScript and TypeScript",
55
"author": "OpenAPI-Generator Contributors",
66
"repository": {

0 commit comments

Comments
 (0)