3
3
/**
4
4
* VRChat API Documentation
5
5
*
6
- * The version of the OpenAPI document: 1.18.1
6
+ * The version of the OpenAPI document: 1.18.3
7
7
8
8
*
9
9
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1785,6 +1785,18 @@ export interface CurrentUser {
1785
1785
* @memberof CurrentUser
1786
1786
*/
1787
1787
'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;
1788
1800
/**
1789
1801
*
1790
1802
* @type {UserState}
@@ -1883,6 +1895,12 @@ export interface CurrentUserPresence {
1883
1895
* @memberof CurrentUserPresence
1884
1896
*/
1885
1897
'avatarThumbnail'?: string | null;
1898
+ /**
1899
+ *
1900
+ * @type {string}
1901
+ * @memberof CurrentUserPresence
1902
+ */
1903
+ 'currentAvatarTags'?: string;
1886
1904
/**
1887
1905
*
1888
1906
* @type {string}
@@ -1949,6 +1967,12 @@ export interface CurrentUserPresence {
1949
1967
* @memberof CurrentUserPresence
1950
1968
*/
1951
1969
'travelingToWorld'?: string;
1970
+ /**
1971
+ *
1972
+ * @type {string}
1973
+ * @memberof CurrentUserPresence
1974
+ */
1975
+ 'userIcon'?: string | null;
1952
1976
/**
1953
1977
* WorldID be \"offline\" on User profiles if you are not friends with that user.
1954
1978
* @type {string}
@@ -5905,6 +5929,12 @@ export interface UnityPackage {
5905
5929
* @memberof UnityPackage
5906
5930
*/
5907
5931
'created_at'?: string;
5932
+ /**
5933
+ *
5934
+ * @type {string}
5935
+ * @memberof UnityPackage
5936
+ */
5937
+ 'impostorizerVersion'?: string;
5908
5938
/**
5909
5939
* 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`.
5910
5940
* @type {string}
@@ -6503,6 +6533,12 @@ export interface User {
6503
6533
* @memberof User
6504
6534
*/
6505
6535
'last_login': string;
6536
+ /**
6537
+ *
6538
+ * @type {string}
6539
+ * @memberof User
6540
+ */
6541
+ 'last_mobile'?: string | null;
6506
6542
/**
6507
6543
* 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`.
6508
6544
* @type {string}
@@ -6526,7 +6562,7 @@ export interface User {
6526
6562
* @type {string}
6527
6563
* @memberof User
6528
6564
*/
6529
- 'platform': string;
6565
+ 'platform'? : string;
6530
6566
/**
6531
6567
*
6532
6568
* @type {string}
@@ -11833,10 +11869,11 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
11833
11869
* @param {number} [n] The number of objects to return.
11834
11870
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
11835
11871
* @param {GroupSearchSort} [sort] The sort order of Group Member results
11872
+ * @param {string} [roleId] Only returns members with a specific groupRoleId
11836
11873
* @param {*} [options] Override http request option.
11837
11874
* @throws {RequiredError}
11838
11875
*/
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> => {
11840
11877
// verify required parameter 'groupId' is not null or undefined
11841
11878
assertParamExists('getGroupMembers', 'groupId', groupId)
11842
11879
const localVarPath = `/groups/{groupId}/members`
@@ -11866,6 +11903,10 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
11866
11903
localVarQueryParameter['sort'] = sort;
11867
11904
}
11868
11905
11906
+ if (roleId !== undefined) {
11907
+ localVarQueryParameter['roleId'] = roleId;
11908
+ }
11909
+
11869
11910
11870
11911
11871
11912
setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -12878,11 +12919,12 @@ export const GroupsApiFp = function(configuration?: Configuration) {
12878
12919
* @param {number} [n] The number of objects to return.
12879
12920
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
12880
12921
* @param {GroupSearchSort} [sort] The sort order of Group Member results
12922
+ * @param {string} [roleId] Only returns members with a specific groupRoleId
12881
12923
* @param {*} [options] Override http request option.
12882
12924
* @throws {RequiredError}
12883
12925
*/
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);
12886
12928
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
12887
12929
},
12888
12930
/**
@@ -13381,11 +13423,12 @@ export const GroupsApiFactory = function (configuration?: Configuration, basePat
13381
13423
* @param {number} [n] The number of objects to return.
13382
13424
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13383
13425
* @param {GroupSearchSort} [sort] The sort order of Group Member results
13426
+ * @param {string} [roleId] Only returns members with a specific groupRoleId
13384
13427
* @param {*} [options] Override http request option.
13385
13428
* @throws {RequiredError}
13386
13429
*/
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));
13389
13432
},
13390
13433
/**
13391
13434
* Returns a List of all possible/available permissions for a Group.
@@ -13917,12 +13960,13 @@ export class GroupsApi extends BaseAPI {
13917
13960
* @param {number} [n] The number of objects to return.
13918
13961
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13919
13962
* @param {GroupSearchSort} [sort] The sort order of Group Member results
13963
+ * @param {string} [roleId] Only returns members with a specific groupRoleId
13920
13964
* @param {*} [options] Override http request option.
13921
13965
* @throws {RequiredError}
13922
13966
* @memberof GroupsApi
13923
13967
*/
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));
13926
13970
}
13927
13971
13928
13972
/**
0 commit comments