vrchat 1.6.10 → 1.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/api.ts CHANGED
@@ -3,8 +3,8 @@
3
3
  /**
4
4
  * VRChat API Documentation
5
5
  *
6
- * The version of the OpenAPI document: 1.6.10
7
- * Contact: me@ruby.js.org
6
+ * The version of the OpenAPI document: 1.7.2
7
+ * Contact: me@ariesclark.com
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
10
  * https://openapi-generator.tech
@@ -1251,7 +1251,7 @@ export interface CurrentUser {
1251
1251
  * @type {string}
1252
1252
  * @memberof CurrentUser
1253
1253
  */
1254
- 'twoFactorAuthEnabledDate': string;
1254
+ 'twoFactorAuthEnabledDate'?: string | null;
1255
1255
  /**
1256
1256
  *
1257
1257
  * @type {boolean}
@@ -2801,7 +2801,9 @@ export enum PlayerModerationType {
2801
2801
  Block = 'block',
2802
2802
  Unblock = 'unblock',
2803
2803
  HideAvatar = 'hideAvatar',
2804
- ShowAvatar = 'showAvatar'
2804
+ ShowAvatar = 'showAvatar',
2805
+ InteractOn = 'interactOn',
2806
+ InteractOff = 'interactOff'
2805
2807
  }
2806
2808
 
2807
2809
  /**
@@ -4729,7 +4731,7 @@ export const AvatarsApiAxiosParamCreator = function (configuration?: Configurati
4729
4731
  /**
4730
4732
  * Search and list favorited avatars by query filters.
4731
4733
  * @summary List Favorited Avatars
4732
- * @param {string} [featured] Filters on featured results.
4734
+ * @param {boolean} [featured] Filters on featured results.
4733
4735
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
4734
4736
  * @param {number} [n] The number of objects to return.
4735
4737
  * @param {'ascending' | 'descending'} [order]
@@ -4745,7 +4747,7 @@ export const AvatarsApiAxiosParamCreator = function (configuration?: Configurati
4745
4747
  * @param {*} [options] Override http request option.
4746
4748
  * @throws {RequiredError}
4747
4749
  */
4748
- getFavoritedAvatars: async (featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4750
+ getFavoritedAvatars: async (featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4749
4751
  const localVarPath = `/avatars/favorites`;
4750
4752
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4751
4753
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -4828,7 +4830,7 @@ export const AvatarsApiAxiosParamCreator = function (configuration?: Configurati
4828
4830
  /**
4829
4831
  * Search and list avatars by query filters. You can only search your own or featured avatars. It is not possible as a normal user to search other peoples avatars.
4830
4832
  * @summary Search Avatars
4831
- * @param {string} [featured] Filters on featured results.
4833
+ * @param {boolean} [featured] Filters on featured results.
4832
4834
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
4833
4835
  * @param {'me'} [user] Set to &#x60;me&#x60; for searching own avatars.
4834
4836
  * @param {string} [userId] Filter by UserID.
@@ -4844,7 +4846,7 @@ export const AvatarsApiAxiosParamCreator = function (configuration?: Configurati
4844
4846
  * @param {*} [options] Override http request option.
4845
4847
  * @throws {RequiredError}
4846
4848
  */
4847
- searchAvatars: async (featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4849
+ searchAvatars: async (featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4848
4850
  const localVarPath = `/avatars`;
4849
4851
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4850
4852
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -5088,7 +5090,7 @@ export const AvatarsApiFp = function(configuration?: Configuration) {
5088
5090
  /**
5089
5091
  * Search and list favorited avatars by query filters.
5090
5092
  * @summary List Favorited Avatars
5091
- * @param {string} [featured] Filters on featured results.
5093
+ * @param {boolean} [featured] Filters on featured results.
5092
5094
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
5093
5095
  * @param {number} [n] The number of objects to return.
5094
5096
  * @param {'ascending' | 'descending'} [order]
@@ -5104,14 +5106,14 @@ export const AvatarsApiFp = function(configuration?: Configuration) {
5104
5106
  * @param {*} [options] Override http request option.
5105
5107
  * @throws {RequiredError}
5106
5108
  */
5107
- async getFavoritedAvatars(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Avatar>>> {
5109
+ async getFavoritedAvatars(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Avatar>>> {
5108
5110
  const localVarAxiosArgs = await localVarAxiosParamCreator.getFavoritedAvatars(featured, sort, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, userId, options);
5109
5111
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5110
5112
  },
5111
5113
  /**
5112
5114
  * Search and list avatars by query filters. You can only search your own or featured avatars. It is not possible as a normal user to search other peoples avatars.
5113
5115
  * @summary Search Avatars
5114
- * @param {string} [featured] Filters on featured results.
5116
+ * @param {boolean} [featured] Filters on featured results.
5115
5117
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
5116
5118
  * @param {'me'} [user] Set to &#x60;me&#x60; for searching own avatars.
5117
5119
  * @param {string} [userId] Filter by UserID.
@@ -5127,7 +5129,7 @@ export const AvatarsApiFp = function(configuration?: Configuration) {
5127
5129
  * @param {*} [options] Override http request option.
5128
5130
  * @throws {RequiredError}
5129
5131
  */
5130
- async searchAvatars(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Avatar>>> {
5132
+ async searchAvatars(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Avatar>>> {
5131
5133
  const localVarAxiosArgs = await localVarAxiosParamCreator.searchAvatars(featured, sort, user, userId, n, order, offset, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options);
5132
5134
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5133
5135
  },
@@ -5208,7 +5210,7 @@ export const AvatarsApiFactory = function (configuration?: Configuration, basePa
5208
5210
  /**
5209
5211
  * Search and list favorited avatars by query filters.
5210
5212
  * @summary List Favorited Avatars
5211
- * @param {string} [featured] Filters on featured results.
5213
+ * @param {boolean} [featured] Filters on featured results.
5212
5214
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
5213
5215
  * @param {number} [n] The number of objects to return.
5214
5216
  * @param {'ascending' | 'descending'} [order]
@@ -5224,13 +5226,13 @@ export const AvatarsApiFactory = function (configuration?: Configuration, basePa
5224
5226
  * @param {*} [options] Override http request option.
5225
5227
  * @throws {RequiredError}
5226
5228
  */
5227
- getFavoritedAvatars(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: any): AxiosPromise<Array<Avatar>> {
5229
+ getFavoritedAvatars(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: any): AxiosPromise<Array<Avatar>> {
5228
5230
  return localVarFp.getFavoritedAvatars(featured, sort, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, userId, options).then((request) => request(axios, basePath));
5229
5231
  },
5230
5232
  /**
5231
5233
  * Search and list avatars by query filters. You can only search your own or featured avatars. It is not possible as a normal user to search other peoples avatars.
5232
5234
  * @summary Search Avatars
5233
- * @param {string} [featured] Filters on featured results.
5235
+ * @param {boolean} [featured] Filters on featured results.
5234
5236
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
5235
5237
  * @param {'me'} [user] Set to &#x60;me&#x60; for searching own avatars.
5236
5238
  * @param {string} [userId] Filter by UserID.
@@ -5246,7 +5248,7 @@ export const AvatarsApiFactory = function (configuration?: Configuration, basePa
5246
5248
  * @param {*} [options] Override http request option.
5247
5249
  * @throws {RequiredError}
5248
5250
  */
5249
- searchAvatars(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: any): AxiosPromise<Array<Avatar>> {
5251
+ searchAvatars(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: any): AxiosPromise<Array<Avatar>> {
5250
5252
  return localVarFp.searchAvatars(featured, sort, user, userId, n, order, offset, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options).then((request) => request(axios, basePath));
5251
5253
  },
5252
5254
  /**
@@ -5329,7 +5331,7 @@ export class AvatarsApi extends BaseAPI {
5329
5331
  /**
5330
5332
  * Search and list favorited avatars by query filters.
5331
5333
  * @summary List Favorited Avatars
5332
- * @param {string} [featured] Filters on featured results.
5334
+ * @param {boolean} [featured] Filters on featured results.
5333
5335
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
5334
5336
  * @param {number} [n] The number of objects to return.
5335
5337
  * @param {'ascending' | 'descending'} [order]
@@ -5346,14 +5348,14 @@ export class AvatarsApi extends BaseAPI {
5346
5348
  * @throws {RequiredError}
5347
5349
  * @memberof AvatarsApi
5348
5350
  */
5349
- public getFavoritedAvatars(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig) {
5351
+ public getFavoritedAvatars(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig) {
5350
5352
  return AvatarsApiFp(this.configuration).getFavoritedAvatars(featured, sort, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, userId, options).then((request) => request(this.axios, this.basePath));
5351
5353
  }
5352
5354
 
5353
5355
  /**
5354
5356
  * Search and list avatars by query filters. You can only search your own or featured avatars. It is not possible as a normal user to search other peoples avatars.
5355
5357
  * @summary Search Avatars
5356
- * @param {string} [featured] Filters on featured results.
5358
+ * @param {boolean} [featured] Filters on featured results.
5357
5359
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
5358
5360
  * @param {'me'} [user] Set to &#x60;me&#x60; for searching own avatars.
5359
5361
  * @param {string} [userId] Filter by UserID.
@@ -5370,7 +5372,7 @@ export class AvatarsApi extends BaseAPI {
5370
5372
  * @throws {RequiredError}
5371
5373
  * @memberof AvatarsApi
5372
5374
  */
5373
- public searchAvatars(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig) {
5375
+ public searchAvatars(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig) {
5374
5376
  return AvatarsApiFp(this.configuration).searchAvatars(featured, sort, user, userId, n, order, offset, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options).then((request) => request(this.axios, this.basePath));
5375
5377
  }
5376
5378
 
@@ -9392,7 +9394,7 @@ export const PlayermoderationApiAxiosParamCreator = function (configuration?: Co
9392
9394
  };
9393
9395
  },
9394
9396
  /**
9395
- * Moderate a user, e.g. unmute them or show their avatar.
9397
+ * Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
9396
9398
  * @summary Moderate User
9397
9399
  * @param {ModerateUserRequest} [moderateUserRequest]
9398
9400
  * @param {*} [options] Override http request option.
@@ -9522,7 +9524,7 @@ export const PlayermoderationApiFp = function(configuration?: Configuration) {
9522
9524
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
9523
9525
  },
9524
9526
  /**
9525
- * Moderate a user, e.g. unmute them or show their avatar.
9527
+ * Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
9526
9528
  * @summary Moderate User
9527
9529
  * @param {ModerateUserRequest} [moderateUserRequest]
9528
9530
  * @param {*} [options] Override http request option.
@@ -9594,7 +9596,7 @@ export const PlayermoderationApiFactory = function (configuration?: Configuratio
9594
9596
  return localVarFp.getPlayerModerations(type, targetUserId, options).then((request) => request(axios, basePath));
9595
9597
  },
9596
9598
  /**
9597
- * Moderate a user, e.g. unmute them or show their avatar.
9599
+ * Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
9598
9600
  * @summary Moderate User
9599
9601
  * @param {ModerateUserRequest} [moderateUserRequest]
9600
9602
  * @param {*} [options] Override http request option.
@@ -9672,7 +9674,7 @@ export class PlayermoderationApi extends BaseAPI {
9672
9674
  }
9673
9675
 
9674
9676
  /**
9675
- * Moderate a user, e.g. unmute them or show their avatar.
9677
+ * Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
9676
9678
  * @summary Moderate User
9677
9679
  * @param {ModerateUserRequest} [moderateUserRequest]
9678
9680
  * @param {*} [options] Override http request option.
@@ -10642,7 +10644,7 @@ export const WorldsApiAxiosParamCreator = function (configuration?: Configuratio
10642
10644
  /**
10643
10645
  * Search and list currently Active worlds by query filters.
10644
10646
  * @summary List Active Worlds
10645
- * @param {string} [featured] Filters on featured results.
10647
+ * @param {boolean} [featured] Filters on featured results.
10646
10648
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
10647
10649
  * @param {number} [n] The number of objects to return.
10648
10650
  * @param {'ascending' | 'descending'} [order]
@@ -10657,7 +10659,7 @@ export const WorldsApiAxiosParamCreator = function (configuration?: Configuratio
10657
10659
  * @param {*} [options] Override http request option.
10658
10660
  * @throws {RequiredError}
10659
10661
  */
10660
- getActiveWorlds: async (featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10662
+ getActiveWorlds: async (featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10661
10663
  const localVarPath = `/worlds/active`;
10662
10664
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
10663
10665
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -10736,7 +10738,7 @@ export const WorldsApiAxiosParamCreator = function (configuration?: Configuratio
10736
10738
  /**
10737
10739
  * Search and list favorited worlds by query filters.
10738
10740
  * @summary List Favorited Worlds
10739
- * @param {string} [featured] Filters on featured results.
10741
+ * @param {boolean} [featured] Filters on featured results.
10740
10742
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
10741
10743
  * @param {number} [n] The number of objects to return.
10742
10744
  * @param {'ascending' | 'descending'} [order]
@@ -10752,7 +10754,7 @@ export const WorldsApiAxiosParamCreator = function (configuration?: Configuratio
10752
10754
  * @param {*} [options] Override http request option.
10753
10755
  * @throws {RequiredError}
10754
10756
  */
10755
- getFavoritedWorlds: async (featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10757
+ getFavoritedWorlds: async (featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10756
10758
  const localVarPath = `/worlds/favorites`;
10757
10759
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
10758
10760
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -10835,7 +10837,7 @@ export const WorldsApiAxiosParamCreator = function (configuration?: Configuratio
10835
10837
  /**
10836
10838
  * Search and list recently visited worlds by query filters.
10837
10839
  * @summary List Recent Worlds
10838
- * @param {string} [featured] Filters on featured results.
10840
+ * @param {boolean} [featured] Filters on featured results.
10839
10841
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
10840
10842
  * @param {number} [n] The number of objects to return.
10841
10843
  * @param {'ascending' | 'descending'} [order]
@@ -10851,7 +10853,7 @@ export const WorldsApiAxiosParamCreator = function (configuration?: Configuratio
10851
10853
  * @param {*} [options] Override http request option.
10852
10854
  * @throws {RequiredError}
10853
10855
  */
10854
- getRecentWorlds: async (featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10856
+ getRecentWorlds: async (featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10855
10857
  const localVarPath = `/worlds/recent`;
10856
10858
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
10857
10859
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -11127,7 +11129,7 @@ export const WorldsApiAxiosParamCreator = function (configuration?: Configuratio
11127
11129
  /**
11128
11130
  * Search and list any worlds by query filters.
11129
11131
  * @summary Search All Worlds
11130
- * @param {string} [featured] Filters on featured results.
11132
+ * @param {boolean} [featured] Filters on featured results.
11131
11133
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
11132
11134
  * @param {'me'} [user] Set to &#x60;me&#x60; for searching own worlds.
11133
11135
  * @param {string} [userId] Filter by UserID.
@@ -11144,7 +11146,7 @@ export const WorldsApiAxiosParamCreator = function (configuration?: Configuratio
11144
11146
  * @param {*} [options] Override http request option.
11145
11147
  * @throws {RequiredError}
11146
11148
  */
11147
- searchWorlds: async (featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
11149
+ searchWorlds: async (featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
11148
11150
  const localVarPath = `/worlds`;
11149
11151
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
11150
11152
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -11343,7 +11345,7 @@ export const WorldsApiFp = function(configuration?: Configuration) {
11343
11345
  /**
11344
11346
  * Search and list currently Active worlds by query filters.
11345
11347
  * @summary List Active Worlds
11346
- * @param {string} [featured] Filters on featured results.
11348
+ * @param {boolean} [featured] Filters on featured results.
11347
11349
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
11348
11350
  * @param {number} [n] The number of objects to return.
11349
11351
  * @param {'ascending' | 'descending'} [order]
@@ -11358,14 +11360,14 @@ export const WorldsApiFp = function(configuration?: Configuration) {
11358
11360
  * @param {*} [options] Override http request option.
11359
11361
  * @throws {RequiredError}
11360
11362
  */
11361
- async getActiveWorlds(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedWorld>>> {
11363
+ async getActiveWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedWorld>>> {
11362
11364
  const localVarAxiosArgs = await localVarAxiosParamCreator.getActiveWorlds(featured, sort, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options);
11363
11365
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11364
11366
  },
11365
11367
  /**
11366
11368
  * Search and list favorited worlds by query filters.
11367
11369
  * @summary List Favorited Worlds
11368
- * @param {string} [featured] Filters on featured results.
11370
+ * @param {boolean} [featured] Filters on featured results.
11369
11371
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
11370
11372
  * @param {number} [n] The number of objects to return.
11371
11373
  * @param {'ascending' | 'descending'} [order]
@@ -11381,14 +11383,14 @@ export const WorldsApiFp = function(configuration?: Configuration) {
11381
11383
  * @param {*} [options] Override http request option.
11382
11384
  * @throws {RequiredError}
11383
11385
  */
11384
- async getFavoritedWorlds(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedWorld>>> {
11386
+ async getFavoritedWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedWorld>>> {
11385
11387
  const localVarAxiosArgs = await localVarAxiosParamCreator.getFavoritedWorlds(featured, sort, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, userId, options);
11386
11388
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11387
11389
  },
11388
11390
  /**
11389
11391
  * Search and list recently visited worlds by query filters.
11390
11392
  * @summary List Recent Worlds
11391
- * @param {string} [featured] Filters on featured results.
11393
+ * @param {boolean} [featured] Filters on featured results.
11392
11394
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
11393
11395
  * @param {number} [n] The number of objects to return.
11394
11396
  * @param {'ascending' | 'descending'} [order]
@@ -11404,7 +11406,7 @@ export const WorldsApiFp = function(configuration?: Configuration) {
11404
11406
  * @param {*} [options] Override http request option.
11405
11407
  * @throws {RequiredError}
11406
11408
  */
11407
- async getRecentWorlds(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedWorld>>> {
11409
+ async getRecentWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedWorld>>> {
11408
11410
  const localVarAxiosArgs = await localVarAxiosParamCreator.getRecentWorlds(featured, sort, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, userId, options);
11409
11411
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11410
11412
  },
@@ -11468,7 +11470,7 @@ export const WorldsApiFp = function(configuration?: Configuration) {
11468
11470
  /**
11469
11471
  * Search and list any worlds by query filters.
11470
11472
  * @summary Search All Worlds
11471
- * @param {string} [featured] Filters on featured results.
11473
+ * @param {boolean} [featured] Filters on featured results.
11472
11474
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
11473
11475
  * @param {'me'} [user] Set to &#x60;me&#x60; for searching own worlds.
11474
11476
  * @param {string} [userId] Filter by UserID.
@@ -11485,7 +11487,7 @@ export const WorldsApiFp = function(configuration?: Configuration) {
11485
11487
  * @param {*} [options] Override http request option.
11486
11488
  * @throws {RequiredError}
11487
11489
  */
11488
- async searchWorlds(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedWorld>>> {
11490
+ async searchWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedWorld>>> {
11489
11491
  const localVarAxiosArgs = await localVarAxiosParamCreator.searchWorlds(featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options);
11490
11492
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11491
11493
  },
@@ -11545,7 +11547,7 @@ export const WorldsApiFactory = function (configuration?: Configuration, basePat
11545
11547
  /**
11546
11548
  * Search and list currently Active worlds by query filters.
11547
11549
  * @summary List Active Worlds
11548
- * @param {string} [featured] Filters on featured results.
11550
+ * @param {boolean} [featured] Filters on featured results.
11549
11551
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
11550
11552
  * @param {number} [n] The number of objects to return.
11551
11553
  * @param {'ascending' | 'descending'} [order]
@@ -11560,13 +11562,13 @@ export const WorldsApiFactory = function (configuration?: Configuration, basePat
11560
11562
  * @param {*} [options] Override http request option.
11561
11563
  * @throws {RequiredError}
11562
11564
  */
11563
- getActiveWorlds(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: any): AxiosPromise<Array<LimitedWorld>> {
11565
+ getActiveWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: any): AxiosPromise<Array<LimitedWorld>> {
11564
11566
  return localVarFp.getActiveWorlds(featured, sort, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options).then((request) => request(axios, basePath));
11565
11567
  },
11566
11568
  /**
11567
11569
  * Search and list favorited worlds by query filters.
11568
11570
  * @summary List Favorited Worlds
11569
- * @param {string} [featured] Filters on featured results.
11571
+ * @param {boolean} [featured] Filters on featured results.
11570
11572
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
11571
11573
  * @param {number} [n] The number of objects to return.
11572
11574
  * @param {'ascending' | 'descending'} [order]
@@ -11582,13 +11584,13 @@ export const WorldsApiFactory = function (configuration?: Configuration, basePat
11582
11584
  * @param {*} [options] Override http request option.
11583
11585
  * @throws {RequiredError}
11584
11586
  */
11585
- getFavoritedWorlds(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: any): AxiosPromise<Array<LimitedWorld>> {
11587
+ getFavoritedWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: any): AxiosPromise<Array<LimitedWorld>> {
11586
11588
  return localVarFp.getFavoritedWorlds(featured, sort, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, userId, options).then((request) => request(axios, basePath));
11587
11589
  },
11588
11590
  /**
11589
11591
  * Search and list recently visited worlds by query filters.
11590
11592
  * @summary List Recent Worlds
11591
- * @param {string} [featured] Filters on featured results.
11593
+ * @param {boolean} [featured] Filters on featured results.
11592
11594
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
11593
11595
  * @param {number} [n] The number of objects to return.
11594
11596
  * @param {'ascending' | 'descending'} [order]
@@ -11604,7 +11606,7 @@ export const WorldsApiFactory = function (configuration?: Configuration, basePat
11604
11606
  * @param {*} [options] Override http request option.
11605
11607
  * @throws {RequiredError}
11606
11608
  */
11607
- getRecentWorlds(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: any): AxiosPromise<Array<LimitedWorld>> {
11609
+ getRecentWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: any): AxiosPromise<Array<LimitedWorld>> {
11608
11610
  return localVarFp.getRecentWorlds(featured, sort, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, userId, options).then((request) => request(axios, basePath));
11609
11611
  },
11610
11612
  /**
@@ -11662,7 +11664,7 @@ export const WorldsApiFactory = function (configuration?: Configuration, basePat
11662
11664
  /**
11663
11665
  * Search and list any worlds by query filters.
11664
11666
  * @summary Search All Worlds
11665
- * @param {string} [featured] Filters on featured results.
11667
+ * @param {boolean} [featured] Filters on featured results.
11666
11668
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
11667
11669
  * @param {'me'} [user] Set to &#x60;me&#x60; for searching own worlds.
11668
11670
  * @param {string} [userId] Filter by UserID.
@@ -11679,7 +11681,7 @@ export const WorldsApiFactory = function (configuration?: Configuration, basePat
11679
11681
  * @param {*} [options] Override http request option.
11680
11682
  * @throws {RequiredError}
11681
11683
  */
11682
- searchWorlds(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: any): AxiosPromise<Array<LimitedWorld>> {
11684
+ searchWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: any): AxiosPromise<Array<LimitedWorld>> {
11683
11685
  return localVarFp.searchWorlds(featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options).then((request) => request(axios, basePath));
11684
11686
  },
11685
11687
  /**
@@ -11740,7 +11742,7 @@ export class WorldsApi extends BaseAPI {
11740
11742
  /**
11741
11743
  * Search and list currently Active worlds by query filters.
11742
11744
  * @summary List Active Worlds
11743
- * @param {string} [featured] Filters on featured results.
11745
+ * @param {boolean} [featured] Filters on featured results.
11744
11746
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
11745
11747
  * @param {number} [n] The number of objects to return.
11746
11748
  * @param {'ascending' | 'descending'} [order]
@@ -11756,14 +11758,14 @@ export class WorldsApi extends BaseAPI {
11756
11758
  * @throws {RequiredError}
11757
11759
  * @memberof WorldsApi
11758
11760
  */
11759
- public getActiveWorlds(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig) {
11761
+ public getActiveWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig) {
11760
11762
  return WorldsApiFp(this.configuration).getActiveWorlds(featured, sort, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options).then((request) => request(this.axios, this.basePath));
11761
11763
  }
11762
11764
 
11763
11765
  /**
11764
11766
  * Search and list favorited worlds by query filters.
11765
11767
  * @summary List Favorited Worlds
11766
- * @param {string} [featured] Filters on featured results.
11768
+ * @param {boolean} [featured] Filters on featured results.
11767
11769
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
11768
11770
  * @param {number} [n] The number of objects to return.
11769
11771
  * @param {'ascending' | 'descending'} [order]
@@ -11780,14 +11782,14 @@ export class WorldsApi extends BaseAPI {
11780
11782
  * @throws {RequiredError}
11781
11783
  * @memberof WorldsApi
11782
11784
  */
11783
- public getFavoritedWorlds(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig) {
11785
+ public getFavoritedWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig) {
11784
11786
  return WorldsApiFp(this.configuration).getFavoritedWorlds(featured, sort, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, userId, options).then((request) => request(this.axios, this.basePath));
11785
11787
  }
11786
11788
 
11787
11789
  /**
11788
11790
  * Search and list recently visited worlds by query filters.
11789
11791
  * @summary List Recent Worlds
11790
- * @param {string} [featured] Filters on featured results.
11792
+ * @param {boolean} [featured] Filters on featured results.
11791
11793
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
11792
11794
  * @param {number} [n] The number of objects to return.
11793
11795
  * @param {'ascending' | 'descending'} [order]
@@ -11804,7 +11806,7 @@ export class WorldsApi extends BaseAPI {
11804
11806
  * @throws {RequiredError}
11805
11807
  * @memberof WorldsApi
11806
11808
  */
11807
- public getRecentWorlds(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig) {
11809
+ public getRecentWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig) {
11808
11810
  return WorldsApiFp(this.configuration).getRecentWorlds(featured, sort, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, userId, options).then((request) => request(this.axios, this.basePath));
11809
11811
  }
11810
11812
 
@@ -11873,7 +11875,7 @@ export class WorldsApi extends BaseAPI {
11873
11875
  /**
11874
11876
  * Search and list any worlds by query filters.
11875
11877
  * @summary Search All Worlds
11876
- * @param {string} [featured] Filters on featured results.
11878
+ * @param {boolean} [featured] Filters on featured results.
11877
11879
  * @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
11878
11880
  * @param {'me'} [user] Set to &#x60;me&#x60; for searching own worlds.
11879
11881
  * @param {string} [userId] Filter by UserID.
@@ -11891,7 +11893,7 @@ export class WorldsApi extends BaseAPI {
11891
11893
  * @throws {RequiredError}
11892
11894
  * @memberof WorldsApi
11893
11895
  */
11894
- public searchWorlds(featured?: string, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig) {
11896
+ public searchWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig) {
11895
11897
  return WorldsApiFp(this.configuration).searchWorlds(featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options).then((request) => request(this.axios, this.basePath));
11896
11898
  }
11897
11899
 
package/base.ts CHANGED
@@ -3,8 +3,8 @@
3
3
  /**
4
4
  * VRChat API Documentation
5
5
  *
6
- * The version of the OpenAPI document: 1.6.10
7
- * Contact: me@ruby.js.org
6
+ * The version of the OpenAPI document: 1.7.2
7
+ * Contact: me@ariesclark.com
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
10
  * https://openapi-generator.tech
package/common.ts CHANGED
@@ -3,8 +3,8 @@
3
3
  /**
4
4
  * VRChat API Documentation
5
5
  *
6
- * The version of the OpenAPI document: 1.6.10
7
- * Contact: me@ruby.js.org
6
+ * The version of the OpenAPI document: 1.7.2
7
+ * Contact: me@ariesclark.com
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
10
  * https://openapi-generator.tech
package/configuration.ts CHANGED
@@ -3,8 +3,8 @@
3
3
  /**
4
4
  * VRChat API Documentation
5
5
  *
6
- * The version of the OpenAPI document: 1.6.10
7
- * Contact: me@ruby.js.org
6
+ * The version of the OpenAPI document: 1.7.2
7
+ * Contact: me@ariesclark.com
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
10
  * https://openapi-generator.tech