vrchat 1.17.0 → 1.17.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/api.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * VRChat API Documentation
5
5
  *
6
- * The version of the OpenAPI document: 1.17.0
6
+ * The version of the OpenAPI document: 1.17.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).
@@ -2590,6 +2590,37 @@ export interface GroupGalleryImage {
2590
2590
  */
2591
2591
  'approvedAt'?: string;
2592
2592
  }
2593
+ /**
2594
+ *
2595
+ * @export
2596
+ * @interface GroupInstance
2597
+ */
2598
+ export interface GroupInstance {
2599
+ /**
2600
+ *
2601
+ * @type {string}
2602
+ * @memberof GroupInstance
2603
+ */
2604
+ 'instanceId': string;
2605
+ /**
2606
+ * InstanceID can be \"offline\" on User profiles if you are not friends with that user and \"private\" if you are friends and user is in private instance.
2607
+ * @type {string}
2608
+ * @memberof GroupInstance
2609
+ */
2610
+ 'location': string;
2611
+ /**
2612
+ *
2613
+ * @type {World}
2614
+ * @memberof GroupInstance
2615
+ */
2616
+ 'world': World;
2617
+ /**
2618
+ *
2619
+ * @type {number}
2620
+ * @memberof GroupInstance
2621
+ */
2622
+ 'memberCount': number;
2623
+ }
2593
2624
  /**
2594
2625
  *
2595
2626
  * @export
@@ -2843,7 +2874,7 @@ export interface GroupMemberLimitedUser {
2843
2874
  * @type {string}
2844
2875
  * @memberof GroupMemberLimitedUser
2845
2876
  */
2846
- 'thumbnailUrl'?: string;
2877
+ 'thumbnailUrl'?: string | null;
2847
2878
  /**
2848
2879
  *
2849
2880
  * @type {string}
@@ -10817,6 +10848,42 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
10817
10848
 
10818
10849
 
10819
10850
 
10851
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
10852
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10853
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
10854
+
10855
+ return {
10856
+ url: toPathString(localVarUrlObj),
10857
+ options: localVarRequestOptions,
10858
+ };
10859
+ },
10860
+ /**
10861
+ * Returns a list of group instances
10862
+ * @summary Get Group Instances
10863
+ * @param {string} groupId Must be a valid group ID.
10864
+ * @param {*} [options] Override http request option.
10865
+ * @throws {RequiredError}
10866
+ */
10867
+ getGroupInstances: async (groupId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10868
+ // verify required parameter 'groupId' is not null or undefined
10869
+ assertParamExists('getGroupInstances', 'groupId', groupId)
10870
+ const localVarPath = `/groups/{groupId}/instances`
10871
+ .replace(`{${"groupId"}}`, encodeURIComponent(String(groupId)));
10872
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
10873
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
10874
+ let baseOptions;
10875
+ if (configuration) {
10876
+ baseOptions = configuration.baseOptions;
10877
+ }
10878
+
10879
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
10880
+ const localVarHeaderParameter = {} as any;
10881
+ const localVarQueryParameter = {} as any;
10882
+
10883
+ // authentication authCookie required
10884
+
10885
+
10886
+
10820
10887
  setSearchParams(localVarUrlObj, localVarQueryParameter);
10821
10888
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10822
10889
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -11795,6 +11862,17 @@ export const GroupsApiFp = function(configuration?: Configuration) {
11795
11862
  const localVarAxiosArgs = await localVarAxiosParamCreator.getGroupGalleryImages(groupId, groupGalleryId, n, offset, approved, options);
11796
11863
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11797
11864
  },
11865
+ /**
11866
+ * Returns a list of group instances
11867
+ * @summary Get Group Instances
11868
+ * @param {string} groupId Must be a valid group ID.
11869
+ * @param {*} [options] Override http request option.
11870
+ * @throws {RequiredError}
11871
+ */
11872
+ async getGroupInstances(groupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupInstance>>> {
11873
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getGroupInstances(groupId, options);
11874
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11875
+ },
11798
11876
  /**
11799
11877
  * Returns a list of members that have been invited to the Group.
11800
11878
  * @summary Get Group Invites Sent
@@ -12240,6 +12318,16 @@ export const GroupsApiFactory = function (configuration?: Configuration, basePat
12240
12318
  getGroupGalleryImages(groupId: string, groupGalleryId: string, n?: number, offset?: number, approved?: boolean, options?: any): AxiosPromise<Array<GroupGalleryImage>> {
12241
12319
  return localVarFp.getGroupGalleryImages(groupId, groupGalleryId, n, offset, approved, options).then((request) => request(axios, basePath));
12242
12320
  },
12321
+ /**
12322
+ * Returns a list of group instances
12323
+ * @summary Get Group Instances
12324
+ * @param {string} groupId Must be a valid group ID.
12325
+ * @param {*} [options] Override http request option.
12326
+ * @throws {RequiredError}
12327
+ */
12328
+ getGroupInstances(groupId: string, options?: any): AxiosPromise<Array<GroupInstance>> {
12329
+ return localVarFp.getGroupInstances(groupId, options).then((request) => request(axios, basePath));
12330
+ },
12243
12331
  /**
12244
12332
  * Returns a list of members that have been invited to the Group.
12245
12333
  * @summary Get Group Invites Sent
@@ -12708,6 +12796,18 @@ export class GroupsApi extends BaseAPI {
12708
12796
  return GroupsApiFp(this.configuration).getGroupGalleryImages(groupId, groupGalleryId, n, offset, approved, options).then((request) => request(this.axios, this.basePath));
12709
12797
  }
12710
12798
 
12799
+ /**
12800
+ * Returns a list of group instances
12801
+ * @summary Get Group Instances
12802
+ * @param {string} groupId Must be a valid group ID.
12803
+ * @param {*} [options] Override http request option.
12804
+ * @throws {RequiredError}
12805
+ * @memberof GroupsApi
12806
+ */
12807
+ public getGroupInstances(groupId: string, options?: AxiosRequestConfig) {
12808
+ return GroupsApiFp(this.configuration).getGroupInstances(groupId, options).then((request) => request(this.axios, this.basePath));
12809
+ }
12810
+
12711
12811
  /**
12712
12812
  * Returns a list of members that have been invited to the Group.
12713
12813
  * @summary Get Group Invites Sent
package/base.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * VRChat API Documentation
5
5
  *
6
- * The version of the OpenAPI document: 1.17.0
6
+ * The version of the OpenAPI document: 1.17.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/common.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * VRChat API Documentation
5
5
  *
6
- * The version of the OpenAPI document: 1.17.0
6
+ * The version of the OpenAPI document: 1.17.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/configuration.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * VRChat API Documentation
5
5
  *
6
- * The version of the OpenAPI document: 1.17.0
6
+ * The version of the OpenAPI document: 1.17.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/dist/api.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.0
4
+ * The version of the OpenAPI document: 1.17.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).
@@ -2553,6 +2553,37 @@ export interface GroupGalleryImage {
2553
2553
  */
2554
2554
  'approvedAt'?: string;
2555
2555
  }
2556
+ /**
2557
+ *
2558
+ * @export
2559
+ * @interface GroupInstance
2560
+ */
2561
+ export interface GroupInstance {
2562
+ /**
2563
+ *
2564
+ * @type {string}
2565
+ * @memberof GroupInstance
2566
+ */
2567
+ 'instanceId': string;
2568
+ /**
2569
+ * InstanceID can be \"offline\" on User profiles if you are not friends with that user and \"private\" if you are friends and user is in private instance.
2570
+ * @type {string}
2571
+ * @memberof GroupInstance
2572
+ */
2573
+ 'location': string;
2574
+ /**
2575
+ *
2576
+ * @type {World}
2577
+ * @memberof GroupInstance
2578
+ */
2579
+ 'world': World;
2580
+ /**
2581
+ *
2582
+ * @type {number}
2583
+ * @memberof GroupInstance
2584
+ */
2585
+ 'memberCount': number;
2586
+ }
2556
2587
  /**
2557
2588
  *
2558
2589
  * @export
@@ -2798,7 +2829,7 @@ export interface GroupMemberLimitedUser {
2798
2829
  * @type {string}
2799
2830
  * @memberof GroupMemberLimitedUser
2800
2831
  */
2801
- 'thumbnailUrl'?: string;
2832
+ 'thumbnailUrl'?: string | null;
2802
2833
  /**
2803
2834
  *
2804
2835
  * @type {string}
@@ -8136,6 +8167,14 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
8136
8167
  * @throws {RequiredError}
8137
8168
  */
8138
8169
  getGroupGalleryImages: (groupId: string, groupGalleryId: string, n?: number, offset?: number, approved?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8170
+ /**
8171
+ * Returns a list of group instances
8172
+ * @summary Get Group Instances
8173
+ * @param {string} groupId Must be a valid group ID.
8174
+ * @param {*} [options] Override http request option.
8175
+ * @throws {RequiredError}
8176
+ */
8177
+ getGroupInstances: (groupId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8139
8178
  /**
8140
8179
  * Returns a list of members that have been invited to the Group.
8141
8180
  * @summary Get Group Invites Sent
@@ -8486,6 +8525,14 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
8486
8525
  * @throws {RequiredError}
8487
8526
  */
8488
8527
  getGroupGalleryImages(groupId: string, groupGalleryId: string, n?: number, offset?: number, approved?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupGalleryImage>>>;
8528
+ /**
8529
+ * Returns a list of group instances
8530
+ * @summary Get Group Instances
8531
+ * @param {string} groupId Must be a valid group ID.
8532
+ * @param {*} [options] Override http request option.
8533
+ * @throws {RequiredError}
8534
+ */
8535
+ getGroupInstances(groupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupInstance>>>;
8489
8536
  /**
8490
8537
  * Returns a list of members that have been invited to the Group.
8491
8538
  * @summary Get Group Invites Sent
@@ -8836,6 +8883,14 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
8836
8883
  * @throws {RequiredError}
8837
8884
  */
8838
8885
  getGroupGalleryImages(groupId: string, groupGalleryId: string, n?: number, offset?: number, approved?: boolean, options?: any): AxiosPromise<Array<GroupGalleryImage>>;
8886
+ /**
8887
+ * Returns a list of group instances
8888
+ * @summary Get Group Instances
8889
+ * @param {string} groupId Must be a valid group ID.
8890
+ * @param {*} [options] Override http request option.
8891
+ * @throws {RequiredError}
8892
+ */
8893
+ getGroupInstances(groupId: string, options?: any): AxiosPromise<Array<GroupInstance>>;
8839
8894
  /**
8840
8895
  * Returns a list of members that have been invited to the Group.
8841
8896
  * @summary Get Group Invites Sent
@@ -9208,6 +9263,15 @@ export declare class GroupsApi extends BaseAPI {
9208
9263
  * @memberof GroupsApi
9209
9264
  */
9210
9265
  getGroupGalleryImages(groupId: string, groupGalleryId: string, n?: number, offset?: number, approved?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupGalleryImage[], any>>;
9266
+ /**
9267
+ * Returns a list of group instances
9268
+ * @summary Get Group Instances
9269
+ * @param {string} groupId Must be a valid group ID.
9270
+ * @param {*} [options] Override http request option.
9271
+ * @throws {RequiredError}
9272
+ * @memberof GroupsApi
9273
+ */
9274
+ getGroupInstances(groupId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupInstance[], any>>;
9211
9275
  /**
9212
9276
  * Returns a list of members that have been invited to the Group.
9213
9277
  * @summary Get Group Invites Sent
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.0
7
+ * The version of the OpenAPI document: 1.17.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).
@@ -5261,6 +5261,40 @@ var GroupsApiAxiosParamCreator = function (configuration) {
5261
5261
  });
5262
5262
  });
5263
5263
  },
5264
+ /**
5265
+ * Returns a list of group instances
5266
+ * @summary Get Group Instances
5267
+ * @param {string} groupId Must be a valid group ID.
5268
+ * @param {*} [options] Override http request option.
5269
+ * @throws {RequiredError}
5270
+ */
5271
+ getGroupInstances: function (groupId, options) {
5272
+ if (options === void 0) { options = {}; }
5273
+ return __awaiter(_this, void 0, void 0, function () {
5274
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
5275
+ return __generator(this, function (_a) {
5276
+ // verify required parameter 'groupId' is not null or undefined
5277
+ (0, common_1.assertParamExists)('getGroupInstances', 'groupId', groupId);
5278
+ localVarPath = "/groups/{groupId}/instances"
5279
+ .replace("{".concat("groupId", "}"), encodeURIComponent(String(groupId)));
5280
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
5281
+ if (configuration) {
5282
+ baseOptions = configuration.baseOptions;
5283
+ }
5284
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
5285
+ localVarHeaderParameter = {};
5286
+ localVarQueryParameter = {};
5287
+ // authentication authCookie required
5288
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
5289
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
5290
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
5291
+ return [2 /*return*/, {
5292
+ url: (0, common_1.toPathString)(localVarUrlObj),
5293
+ options: localVarRequestOptions,
5294
+ }];
5295
+ });
5296
+ });
5297
+ },
5264
5298
  /**
5265
5299
  * Returns a list of members that have been invited to the Group.
5266
5300
  * @summary Get Group Invites Sent
@@ -6362,6 +6396,26 @@ var GroupsApiFp = function (configuration) {
6362
6396
  });
6363
6397
  });
6364
6398
  },
6399
+ /**
6400
+ * Returns a list of group instances
6401
+ * @summary Get Group Instances
6402
+ * @param {string} groupId Must be a valid group ID.
6403
+ * @param {*} [options] Override http request option.
6404
+ * @throws {RequiredError}
6405
+ */
6406
+ getGroupInstances: function (groupId, options) {
6407
+ return __awaiter(this, void 0, void 0, function () {
6408
+ var localVarAxiosArgs;
6409
+ return __generator(this, function (_a) {
6410
+ switch (_a.label) {
6411
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.getGroupInstances(groupId, options)];
6412
+ case 1:
6413
+ localVarAxiosArgs = _a.sent();
6414
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
6415
+ }
6416
+ });
6417
+ });
6418
+ },
6365
6419
  /**
6366
6420
  * Returns a list of members that have been invited to the Group.
6367
6421
  * @summary Get Group Invites Sent
@@ -6960,6 +7014,16 @@ var GroupsApiFactory = function (configuration, basePath, axios) {
6960
7014
  getGroupGalleryImages: function (groupId, groupGalleryId, n, offset, approved, options) {
6961
7015
  return localVarFp.getGroupGalleryImages(groupId, groupGalleryId, n, offset, approved, options).then(function (request) { return request(axios, basePath); });
6962
7016
  },
7017
+ /**
7018
+ * Returns a list of group instances
7019
+ * @summary Get Group Instances
7020
+ * @param {string} groupId Must be a valid group ID.
7021
+ * @param {*} [options] Override http request option.
7022
+ * @throws {RequiredError}
7023
+ */
7024
+ getGroupInstances: function (groupId, options) {
7025
+ return localVarFp.getGroupInstances(groupId, options).then(function (request) { return request(axios, basePath); });
7026
+ },
6963
7027
  /**
6964
7028
  * Returns a list of members that have been invited to the Group.
6965
7029
  * @summary Get Group Invites Sent
@@ -7432,6 +7496,18 @@ var GroupsApi = /** @class */ (function (_super) {
7432
7496
  var _this = this;
7433
7497
  return (0, exports.GroupsApiFp)(this.configuration).getGroupGalleryImages(groupId, groupGalleryId, n, offset, approved, options).then(function (request) { return request(_this.axios, _this.basePath); });
7434
7498
  };
7499
+ /**
7500
+ * Returns a list of group instances
7501
+ * @summary Get Group Instances
7502
+ * @param {string} groupId Must be a valid group ID.
7503
+ * @param {*} [options] Override http request option.
7504
+ * @throws {RequiredError}
7505
+ * @memberof GroupsApi
7506
+ */
7507
+ GroupsApi.prototype.getGroupInstances = function (groupId, options) {
7508
+ var _this = this;
7509
+ return (0, exports.GroupsApiFp)(this.configuration).getGroupInstances(groupId, options).then(function (request) { return request(_this.axios, _this.basePath); });
7510
+ };
7435
7511
  /**
7436
7512
  * Returns a list of members that have been invited to the Group.
7437
7513
  * @summary Get Group Invites Sent
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.0
4
+ * The version of the OpenAPI document: 1.17.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.0
7
+ * The version of the OpenAPI document: 1.17.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.0
4
+ * The version of the OpenAPI document: 1.17.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.0
7
+ * The version of the OpenAPI document: 1.17.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.0
4
+ * The version of the OpenAPI document: 1.17.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.0
7
+ * The version of the OpenAPI document: 1.17.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.0
4
+ * The version of the OpenAPI document: 1.17.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.0
7
+ * The version of the OpenAPI document: 1.17.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.0
6
+ * The version of the OpenAPI document: 1.17.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.0",
3
+ "version": "1.17.1",
4
4
  "description": "🟡🔵 VRChat API Library for JavaScript and TypeScript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {