vrchat 1.11.0 → 1.11.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.11.0
6
+ * The version of the OpenAPI document: 1.11.1
7
7
  * Contact: me@ariesclark.com
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -10535,7 +10535,7 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
10535
10535
  };
10536
10536
  },
10537
10537
  /**
10538
- * Join a Group by ID and returns the joined Group.
10538
+ * Join a Group by ID and returns the member object.
10539
10539
  * @summary Join Group
10540
10540
  * @param {string} groupId Must be a valid group ID.
10541
10541
  * @param {*} [options] Override http request option.
@@ -11291,13 +11291,13 @@ export const GroupsApiFp = function(configuration?: Configuration) {
11291
11291
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11292
11292
  },
11293
11293
  /**
11294
- * Join a Group by ID and returns the joined Group.
11294
+ * Join a Group by ID and returns the member object.
11295
11295
  * @summary Join Group
11296
11296
  * @param {string} groupId Must be a valid group ID.
11297
11297
  * @param {*} [options] Override http request option.
11298
11298
  * @throws {RequiredError}
11299
11299
  */
11300
- async joinGroup(groupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Group>> {
11300
+ async joinGroup(groupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupMember>> {
11301
11301
  const localVarAxiosArgs = await localVarAxiosParamCreator.joinGroup(groupId, options);
11302
11302
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11303
11303
  },
@@ -11712,13 +11712,13 @@ export const GroupsApiFactory = function (configuration?: Configuration, basePat
11712
11712
  return localVarFp.getGroupRoles(groupId, options).then((request) => request(axios, basePath));
11713
11713
  },
11714
11714
  /**
11715
- * Join a Group by ID and returns the joined Group.
11715
+ * Join a Group by ID and returns the member object.
11716
11716
  * @summary Join Group
11717
11717
  * @param {string} groupId Must be a valid group ID.
11718
11718
  * @param {*} [options] Override http request option.
11719
11719
  * @throws {RequiredError}
11720
11720
  */
11721
- joinGroup(groupId: string, options?: any): AxiosPromise<Group> {
11721
+ joinGroup(groupId: string, options?: any): AxiosPromise<GroupMember> {
11722
11722
  return localVarFp.joinGroup(groupId, options).then((request) => request(axios, basePath));
11723
11723
  },
11724
11724
  /**
@@ -12175,7 +12175,7 @@ export class GroupsApi extends BaseAPI {
12175
12175
  }
12176
12176
 
12177
12177
  /**
12178
- * Join a Group by ID and returns the joined Group.
12178
+ * Join a Group by ID and returns the member object.
12179
12179
  * @summary Join Group
12180
12180
  * @param {string} groupId Must be a valid group ID.
12181
12181
  * @param {*} [options] Override http request option.
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.11.0
6
+ * The version of the OpenAPI document: 1.11.1
7
7
  * Contact: me@ariesclark.com
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.11.0
6
+ * The version of the OpenAPI document: 1.11.1
7
7
  * Contact: me@ariesclark.com
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.11.0
6
+ * The version of the OpenAPI document: 1.11.1
7
7
  * Contact: me@ariesclark.com
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.11.0
4
+ * The version of the OpenAPI document: 1.11.1
5
5
  * Contact: me@ariesclark.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -7568,7 +7568,7 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
7568
7568
  */
7569
7569
  getGroupRoles: (groupId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7570
7570
  /**
7571
- * Join a Group by ID and returns the joined Group.
7571
+ * Join a Group by ID and returns the member object.
7572
7572
  * @summary Join Group
7573
7573
  * @param {string} groupId Must be a valid group ID.
7574
7574
  * @param {*} [options] Override http request option.
@@ -7903,13 +7903,13 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
7903
7903
  */
7904
7904
  getGroupRoles(groupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupRole>>>;
7905
7905
  /**
7906
- * Join a Group by ID and returns the joined Group.
7906
+ * Join a Group by ID and returns the member object.
7907
7907
  * @summary Join Group
7908
7908
  * @param {string} groupId Must be a valid group ID.
7909
7909
  * @param {*} [options] Override http request option.
7910
7910
  * @throws {RequiredError}
7911
7911
  */
7912
- joinGroup(groupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Group>>;
7912
+ joinGroup(groupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupMember>>;
7913
7913
  /**
7914
7914
  * Kicks a Group Member from the Group. The current user must have the \"Remove Group Members\" permission.
7915
7915
  * @summary Kick Group Member
@@ -8238,13 +8238,13 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
8238
8238
  */
8239
8239
  getGroupRoles(groupId: string, options?: any): AxiosPromise<Array<GroupRole>>;
8240
8240
  /**
8241
- * Join a Group by ID and returns the joined Group.
8241
+ * Join a Group by ID and returns the member object.
8242
8242
  * @summary Join Group
8243
8243
  * @param {string} groupId Must be a valid group ID.
8244
8244
  * @param {*} [options] Override http request option.
8245
8245
  * @throws {RequiredError}
8246
8246
  */
8247
- joinGroup(groupId: string, options?: any): AxiosPromise<Group>;
8247
+ joinGroup(groupId: string, options?: any): AxiosPromise<GroupMember>;
8248
8248
  /**
8249
8249
  * Kicks a Group Member from the Group. The current user must have the \"Remove Group Members\" permission.
8250
8250
  * @summary Kick Group Member
@@ -8601,14 +8601,14 @@ export declare class GroupsApi extends BaseAPI {
8601
8601
  */
8602
8602
  getGroupRoles(groupId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupRole[], any>>;
8603
8603
  /**
8604
- * Join a Group by ID and returns the joined Group.
8604
+ * Join a Group by ID and returns the member object.
8605
8605
  * @summary Join Group
8606
8606
  * @param {string} groupId Must be a valid group ID.
8607
8607
  * @param {*} [options] Override http request option.
8608
8608
  * @throws {RequiredError}
8609
8609
  * @memberof GroupsApi
8610
8610
  */
8611
- joinGroup(groupId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Group, any>>;
8611
+ joinGroup(groupId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember, any>>;
8612
8612
  /**
8613
8613
  * Kicks a Group Member from the Group. The current user must have the \"Remove Group Members\" permission.
8614
8614
  * @summary Kick Group Member
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.11.0
7
+ * The version of the OpenAPI document: 1.11.1
8
8
  * Contact: me@ariesclark.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5491,7 +5491,7 @@ var GroupsApiAxiosParamCreator = function (configuration) {
5491
5491
  });
5492
5492
  },
5493
5493
  /**
5494
- * Join a Group by ID and returns the joined Group.
5494
+ * Join a Group by ID and returns the member object.
5495
5495
  * @summary Join Group
5496
5496
  * @param {string} groupId Must be a valid group ID.
5497
5497
  * @param {*} [options] Override http request option.
@@ -6446,7 +6446,7 @@ var GroupsApiFp = function (configuration) {
6446
6446
  });
6447
6447
  },
6448
6448
  /**
6449
- * Join a Group by ID and returns the joined Group.
6449
+ * Join a Group by ID and returns the member object.
6450
6450
  * @summary Join Group
6451
6451
  * @param {string} groupId Must be a valid group ID.
6452
6452
  * @param {*} [options] Override http request option.
@@ -6957,7 +6957,7 @@ var GroupsApiFactory = function (configuration, basePath, axios) {
6957
6957
  return localVarFp.getGroupRoles(groupId, options).then(function (request) { return request(axios, basePath); });
6958
6958
  },
6959
6959
  /**
6960
- * Join a Group by ID and returns the joined Group.
6960
+ * Join a Group by ID and returns the member object.
6961
6961
  * @summary Join Group
6962
6962
  * @param {string} groupId Must be a valid group ID.
6963
6963
  * @param {*} [options] Override http request option.
@@ -7424,7 +7424,7 @@ var GroupsApi = /** @class */ (function (_super) {
7424
7424
  return (0, exports.GroupsApiFp)(this.configuration).getGroupRoles(groupId, options).then(function (request) { return request(_this.axios, _this.basePath); });
7425
7425
  };
7426
7426
  /**
7427
- * Join a Group by ID and returns the joined Group.
7427
+ * Join a Group by ID and returns the member object.
7428
7428
  * @summary Join Group
7429
7429
  * @param {string} groupId Must be a valid group ID.
7430
7430
  * @param {*} [options] Override http request option.
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.11.0
4
+ * The version of the OpenAPI document: 1.11.1
5
5
  * Contact: me@ariesclark.com
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.11.0
7
+ * The version of the OpenAPI document: 1.11.1
8
8
  * Contact: me@ariesclark.com
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.11.0
4
+ * The version of the OpenAPI document: 1.11.1
5
5
  * Contact: me@ariesclark.com
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.11.0
7
+ * The version of the OpenAPI document: 1.11.1
8
8
  * Contact: me@ariesclark.com
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.11.0
4
+ * The version of the OpenAPI document: 1.11.1
5
5
  * Contact: me@ariesclark.com
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.11.0
7
+ * The version of the OpenAPI document: 1.11.1
8
8
  * Contact: me@ariesclark.com
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.11.0
4
+ * The version of the OpenAPI document: 1.11.1
5
5
  * Contact: me@ariesclark.com
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.11.0
7
+ * The version of the OpenAPI document: 1.11.1
8
8
  * Contact: me@ariesclark.com
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.11.0
6
+ * The version of the OpenAPI document: 1.11.1
7
7
  * Contact: me@ariesclark.com
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.11.0",
3
+ "version": "1.11.1",
4
4
  "description": "🟡🔵 VRChat API Library for JavaScript and TypeScript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {