vrchat 1.17.6 → 1.18.1

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/dist/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  /**
5
5
  * VRChat API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.17.6
7
+ * The version of the OpenAPI document: 1.18.1
8
8
  * Contact: vrchatapi.lpv0t@aries.fyi
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -459,12 +459,12 @@ var AuthenticationApiAxiosParamCreator = function (configuration) {
459
459
  * @summary Check User Exists
460
460
  * @param {string} [email] Filter by email.
461
461
  * @param {string} [displayName] Filter by displayName.
462
- * @param {string} [userId] Filter by UserID.
462
+ * @param {string} [username] Filter by Username.
463
463
  * @param {string} [excludeUserId] Exclude by UserID.
464
464
  * @param {*} [options] Override http request option.
465
465
  * @throws {RequiredError}
466
466
  */
467
- checkUserExists: function (email, displayName, userId, excludeUserId, options) {
467
+ checkUserExists: function (email, displayName, username, excludeUserId, options) {
468
468
  if (options === void 0) { options = {}; }
469
469
  return __awaiter(_this, void 0, void 0, function () {
470
470
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -483,8 +483,8 @@ var AuthenticationApiAxiosParamCreator = function (configuration) {
483
483
  if (displayName !== undefined) {
484
484
  localVarQueryParameter['displayName'] = displayName;
485
485
  }
486
- if (userId !== undefined) {
487
- localVarQueryParameter['userId'] = userId;
486
+ if (username !== undefined) {
487
+ localVarQueryParameter['username'] = username;
488
488
  }
489
489
  if (excludeUserId !== undefined) {
490
490
  localVarQueryParameter['excludeUserId'] = excludeUserId;
@@ -747,17 +747,17 @@ var AuthenticationApiFp = function (configuration) {
747
747
  * @summary Check User Exists
748
748
  * @param {string} [email] Filter by email.
749
749
  * @param {string} [displayName] Filter by displayName.
750
- * @param {string} [userId] Filter by UserID.
750
+ * @param {string} [username] Filter by Username.
751
751
  * @param {string} [excludeUserId] Exclude by UserID.
752
752
  * @param {*} [options] Override http request option.
753
753
  * @throws {RequiredError}
754
754
  */
755
- checkUserExists: function (email, displayName, userId, excludeUserId, options) {
755
+ checkUserExists: function (email, displayName, username, excludeUserId, options) {
756
756
  return __awaiter(this, void 0, void 0, function () {
757
757
  var localVarAxiosArgs;
758
758
  return __generator(this, function (_a) {
759
759
  switch (_a.label) {
760
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.checkUserExists(email, displayName, userId, excludeUserId, options)];
760
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.checkUserExists(email, displayName, username, excludeUserId, options)];
761
761
  case 1:
762
762
  localVarAxiosArgs = _a.sent();
763
763
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -917,13 +917,13 @@ var AuthenticationApiFactory = function (configuration, basePath, axios) {
917
917
  * @summary Check User Exists
918
918
  * @param {string} [email] Filter by email.
919
919
  * @param {string} [displayName] Filter by displayName.
920
- * @param {string} [userId] Filter by UserID.
920
+ * @param {string} [username] Filter by Username.
921
921
  * @param {string} [excludeUserId] Exclude by UserID.
922
922
  * @param {*} [options] Override http request option.
923
923
  * @throws {RequiredError}
924
924
  */
925
- checkUserExists: function (email, displayName, userId, excludeUserId, options) {
926
- return localVarFp.checkUserExists(email, displayName, userId, excludeUserId, options).then(function (request) { return request(axios, basePath); });
925
+ checkUserExists: function (email, displayName, username, excludeUserId, options) {
926
+ return localVarFp.checkUserExists(email, displayName, username, excludeUserId, options).then(function (request) { return request(axios, basePath); });
927
927
  },
928
928
  /**
929
929
  * Deletes the account with given ID. Normal users only have permission to delete their own account. Account deletion is 14 days from this request, and will be cancelled if you do an authenticated request with the account afterwards. **VRC+ NOTE:** Despite the 14-days cooldown, any VRC+ subscription will be cancelled **immediately**. **METHOD NOTE:** Despite this being a Delete action, the method type required is PUT.
@@ -1011,15 +1011,15 @@ var AuthenticationApi = /** @class */ (function (_super) {
1011
1011
  * @summary Check User Exists
1012
1012
  * @param {string} [email] Filter by email.
1013
1013
  * @param {string} [displayName] Filter by displayName.
1014
- * @param {string} [userId] Filter by UserID.
1014
+ * @param {string} [username] Filter by Username.
1015
1015
  * @param {string} [excludeUserId] Exclude by UserID.
1016
1016
  * @param {*} [options] Override http request option.
1017
1017
  * @throws {RequiredError}
1018
1018
  * @memberof AuthenticationApi
1019
1019
  */
1020
- AuthenticationApi.prototype.checkUserExists = function (email, displayName, userId, excludeUserId, options) {
1020
+ AuthenticationApi.prototype.checkUserExists = function (email, displayName, username, excludeUserId, options) {
1021
1021
  var _this = this;
1022
- return (0, exports.AuthenticationApiFp)(this.configuration).checkUserExists(email, displayName, userId, excludeUserId, options).then(function (request) { return request(_this.axios, _this.basePath); });
1022
+ return (0, exports.AuthenticationApiFp)(this.configuration).checkUserExists(email, displayName, username, excludeUserId, options).then(function (request) { return request(_this.axios, _this.basePath); });
1023
1023
  };
1024
1024
  /**
1025
1025
  * Deletes the account with given ID. Normal users only have permission to delete their own account. Account deletion is 14 days from this request, and will be cancelled if you do an authenticated request with the account afterwards. **VRC+ NOTE:** Despite the 14-days cooldown, any VRC+ subscription will be cancelled **immediately**. **METHOD NOTE:** Despite this being a Delete action, the method type required is PUT.
@@ -12224,10 +12224,11 @@ var WorldsApiAxiosParamCreator = function (configuration) {
12224
12224
  * @param {string} [maxUnityVersion] The maximum Unity version supported by the asset.
12225
12225
  * @param {string} [minUnityVersion] The minimum Unity version supported by the asset.
12226
12226
  * @param {string} [platform] The platform the asset supports.
12227
+ * @param {boolean} [fuzzy]
12227
12228
  * @param {*} [options] Override http request option.
12228
12229
  * @throws {RequiredError}
12229
12230
  */
12230
- searchWorlds: function (featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options) {
12231
+ searchWorlds: function (featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, fuzzy, options) {
12231
12232
  if (options === void 0) { options = {}; }
12232
12233
  return __awaiter(_this, void 0, void 0, function () {
12233
12234
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -12283,6 +12284,9 @@ var WorldsApiAxiosParamCreator = function (configuration) {
12283
12284
  if (platform !== undefined) {
12284
12285
  localVarQueryParameter['platform'] = platform;
12285
12286
  }
12287
+ if (fuzzy !== undefined) {
12288
+ localVarQueryParameter['fuzzy'] = fuzzy;
12289
+ }
12286
12290
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
12287
12291
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
12288
12292
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -12628,15 +12632,16 @@ var WorldsApiFp = function (configuration) {
12628
12632
  * @param {string} [maxUnityVersion] The maximum Unity version supported by the asset.
12629
12633
  * @param {string} [minUnityVersion] The minimum Unity version supported by the asset.
12630
12634
  * @param {string} [platform] The platform the asset supports.
12635
+ * @param {boolean} [fuzzy]
12631
12636
  * @param {*} [options] Override http request option.
12632
12637
  * @throws {RequiredError}
12633
12638
  */
12634
- searchWorlds: function (featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options) {
12639
+ searchWorlds: function (featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, fuzzy, options) {
12635
12640
  return __awaiter(this, void 0, void 0, function () {
12636
12641
  var localVarAxiosArgs;
12637
12642
  return __generator(this, function (_a) {
12638
12643
  switch (_a.label) {
12639
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.searchWorlds(featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options)];
12644
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.searchWorlds(featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, fuzzy, options)];
12640
12645
  case 1:
12641
12646
  localVarAxiosArgs = _a.sent();
12642
12647
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -12849,11 +12854,12 @@ var WorldsApiFactory = function (configuration, basePath, axios) {
12849
12854
  * @param {string} [maxUnityVersion] The maximum Unity version supported by the asset.
12850
12855
  * @param {string} [minUnityVersion] The minimum Unity version supported by the asset.
12851
12856
  * @param {string} [platform] The platform the asset supports.
12857
+ * @param {boolean} [fuzzy]
12852
12858
  * @param {*} [options] Override http request option.
12853
12859
  * @throws {RequiredError}
12854
12860
  */
12855
- searchWorlds: function (featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options) {
12856
- return localVarFp.searchWorlds(featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options).then(function (request) { return request(axios, basePath); });
12861
+ searchWorlds: function (featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, fuzzy, options) {
12862
+ return localVarFp.searchWorlds(featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, fuzzy, options).then(function (request) { return request(axios, basePath); });
12857
12863
  },
12858
12864
  /**
12859
12865
  * Unpublish a world.
@@ -13064,13 +13070,14 @@ var WorldsApi = /** @class */ (function (_super) {
13064
13070
  * @param {string} [maxUnityVersion] The maximum Unity version supported by the asset.
13065
13071
  * @param {string} [minUnityVersion] The minimum Unity version supported by the asset.
13066
13072
  * @param {string} [platform] The platform the asset supports.
13073
+ * @param {boolean} [fuzzy]
13067
13074
  * @param {*} [options] Override http request option.
13068
13075
  * @throws {RequiredError}
13069
13076
  * @memberof WorldsApi
13070
13077
  */
13071
- WorldsApi.prototype.searchWorlds = function (featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options) {
13078
+ WorldsApi.prototype.searchWorlds = function (featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, fuzzy, options) {
13072
13079
  var _this = this;
13073
- return (0, exports.WorldsApiFp)(this.configuration).searchWorlds(featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, options).then(function (request) { return request(_this.axios, _this.basePath); });
13080
+ return (0, exports.WorldsApiFp)(this.configuration).searchWorlds(featured, sort, user, userId, n, order, offset, search, tag, notag, releaseStatus, maxUnityVersion, minUnityVersion, platform, fuzzy, options).then(function (request) { return request(_this.axios, _this.basePath); });
13074
13081
  };
13075
13082
  /**
13076
13083
  * Unpublish a world.
package/dist/base.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRChat API Documentation
3
3
  *
4
- * The version of the OpenAPI document: 1.17.6
4
+ * The version of the OpenAPI document: 1.18.1
5
5
  * Contact: vrchatapi.lpv0t@aries.fyi
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -4,7 +4,7 @@
4
4
  /**
5
5
  * VRChat API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.17.6
7
+ * The version of the OpenAPI document: 1.18.1
8
8
  * Contact: vrchatapi.lpv0t@aries.fyi
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRChat API Documentation
3
3
  *
4
- * The version of the OpenAPI document: 1.17.6
4
+ * The version of the OpenAPI document: 1.18.1
5
5
  * Contact: vrchatapi.lpv0t@aries.fyi
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -4,7 +4,7 @@
4
4
  /**
5
5
  * VRChat API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.17.6
7
+ * The version of the OpenAPI document: 1.18.1
8
8
  * Contact: vrchatapi.lpv0t@aries.fyi
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRChat API Documentation
3
3
  *
4
- * The version of the OpenAPI document: 1.17.6
4
+ * The version of the OpenAPI document: 1.18.1
5
5
  * Contact: vrchatapi.lpv0t@aries.fyi
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  /**
5
5
  * VRChat API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.17.6
7
+ * The version of the OpenAPI document: 1.18.1
8
8
  * Contact: vrchatapi.lpv0t@aries.fyi
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRChat API Documentation
3
3
  *
4
- * The version of the OpenAPI document: 1.17.6
4
+ * The version of the OpenAPI document: 1.18.1
5
5
  * Contact: vrchatapi.lpv0t@aries.fyi
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  /**
5
5
  * VRChat API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.17.6
7
+ * The version of the OpenAPI document: 1.18.1
8
8
  * Contact: vrchatapi.lpv0t@aries.fyi
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/index.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * VRChat API Documentation
5
5
  *
6
- * The version of the OpenAPI document: 1.17.6
6
+ * The version of the OpenAPI document: 1.18.1
7
7
  * Contact: vrchatapi.lpv0t@aries.fyi
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vrchat",
3
- "version": "1.17.6",
3
+ "version": "1.18.1",
4
4
  "description": "🟡🔵 VRChat API Library for JavaScript and TypeScript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {