vrchat 1.11.0 → 1.12.0
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 +23 -252
- package/base.ts +2 -2
- package/common.ts +2 -2
- package/configuration.ts +2 -2
- package/dist/api.d.ts +23 -16
- package/dist/api.js +8 -125
- package/dist/base.d.ts +2 -2
- package/dist/base.js +2 -2
- package/dist/common.d.ts +2 -2
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +2 -2
- package/dist/configuration.js +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/index.ts +2 -2
- package/package.json +1 -1
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.
|
|
7
|
-
* Contact:
|
|
6
|
+
* The version of the OpenAPI document: 1.12.0
|
|
7
|
+
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
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.
|
|
7
|
-
* Contact:
|
|
6
|
+
* The version of the OpenAPI document: 1.12.0
|
|
7
|
+
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
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.
|
|
7
|
-
* Contact:
|
|
6
|
+
* The version of the OpenAPI document: 1.12.0
|
|
7
|
+
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
10
|
* https://openapi-generator.tech
|
package/dist/api.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
-
* Contact:
|
|
4
|
+
* The version of the OpenAPI document: 1.12.0
|
|
5
|
+
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
8
|
* https://openapi-generator.tech
|
|
@@ -41,12 +41,6 @@ export interface APIConfig {
|
|
|
41
41
|
* @memberof APIConfig
|
|
42
42
|
*/
|
|
43
43
|
'announcements': Set<APIConfigAnnouncement>;
|
|
44
|
-
/**
|
|
45
|
-
* apiKey to be used for all other requests
|
|
46
|
-
* @type {string}
|
|
47
|
-
* @memberof APIConfig
|
|
48
|
-
*/
|
|
49
|
-
'apiKey': string;
|
|
50
44
|
/**
|
|
51
45
|
* Game name
|
|
52
46
|
* @type {string}
|
|
@@ -555,6 +549,18 @@ export interface APIConfigDownloadURLList {
|
|
|
555
549
|
* @memberof APIConfigDownloadURLList
|
|
556
550
|
*/
|
|
557
551
|
'sdk3-worlds': string;
|
|
552
|
+
/**
|
|
553
|
+
* Download link for the Creator Companion
|
|
554
|
+
* @type {string}
|
|
555
|
+
* @memberof APIConfigDownloadURLList
|
|
556
|
+
*/
|
|
557
|
+
'vcc': string;
|
|
558
|
+
/**
|
|
559
|
+
* Download link for ???
|
|
560
|
+
* @type {string}
|
|
561
|
+
* @memberof APIConfigDownloadURLList
|
|
562
|
+
*/
|
|
563
|
+
'bootstrap': string;
|
|
558
564
|
}
|
|
559
565
|
/**
|
|
560
566
|
*
|
|
@@ -1281,7 +1287,7 @@ export interface CurrentUser {
|
|
|
1281
1287
|
* @type {Array<AccountDeletionLog>}
|
|
1282
1288
|
* @memberof CurrentUser
|
|
1283
1289
|
*/
|
|
1284
|
-
'accountDeletionLog'?: Array<AccountDeletionLog
|
|
1290
|
+
'accountDeletionLog'?: Array<AccountDeletionLog> | null;
|
|
1285
1291
|
/**
|
|
1286
1292
|
*
|
|
1287
1293
|
* @type {Array<string>}
|
|
@@ -3949,6 +3955,7 @@ export declare const ReleaseStatus: {
|
|
|
3949
3955
|
readonly Public: "public";
|
|
3950
3956
|
readonly Private: "private";
|
|
3951
3957
|
readonly Hidden: "hidden";
|
|
3958
|
+
readonly All: "all";
|
|
3952
3959
|
};
|
|
3953
3960
|
export type ReleaseStatus = typeof ReleaseStatus[keyof typeof ReleaseStatus];
|
|
3954
3961
|
/**
|
|
@@ -7568,7 +7575,7 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7568
7575
|
*/
|
|
7569
7576
|
getGroupRoles: (groupId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7570
7577
|
/**
|
|
7571
|
-
* Join a Group by ID and returns the
|
|
7578
|
+
* Join a Group by ID and returns the member object.
|
|
7572
7579
|
* @summary Join Group
|
|
7573
7580
|
* @param {string} groupId Must be a valid group ID.
|
|
7574
7581
|
* @param {*} [options] Override http request option.
|
|
@@ -7903,13 +7910,13 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
7903
7910
|
*/
|
|
7904
7911
|
getGroupRoles(groupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupRole>>>;
|
|
7905
7912
|
/**
|
|
7906
|
-
* Join a Group by ID and returns the
|
|
7913
|
+
* Join a Group by ID and returns the member object.
|
|
7907
7914
|
* @summary Join Group
|
|
7908
7915
|
* @param {string} groupId Must be a valid group ID.
|
|
7909
7916
|
* @param {*} [options] Override http request option.
|
|
7910
7917
|
* @throws {RequiredError}
|
|
7911
7918
|
*/
|
|
7912
|
-
joinGroup(groupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
7919
|
+
joinGroup(groupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupMember>>;
|
|
7913
7920
|
/**
|
|
7914
7921
|
* Kicks a Group Member from the Group. The current user must have the \"Remove Group Members\" permission.
|
|
7915
7922
|
* @summary Kick Group Member
|
|
@@ -8238,13 +8245,13 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8238
8245
|
*/
|
|
8239
8246
|
getGroupRoles(groupId: string, options?: any): AxiosPromise<Array<GroupRole>>;
|
|
8240
8247
|
/**
|
|
8241
|
-
* Join a Group by ID and returns the
|
|
8248
|
+
* Join a Group by ID and returns the member object.
|
|
8242
8249
|
* @summary Join Group
|
|
8243
8250
|
* @param {string} groupId Must be a valid group ID.
|
|
8244
8251
|
* @param {*} [options] Override http request option.
|
|
8245
8252
|
* @throws {RequiredError}
|
|
8246
8253
|
*/
|
|
8247
|
-
joinGroup(groupId: string, options?: any): AxiosPromise<
|
|
8254
|
+
joinGroup(groupId: string, options?: any): AxiosPromise<GroupMember>;
|
|
8248
8255
|
/**
|
|
8249
8256
|
* Kicks a Group Member from the Group. The current user must have the \"Remove Group Members\" permission.
|
|
8250
8257
|
* @summary Kick Group Member
|
|
@@ -8601,14 +8608,14 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
8601
8608
|
*/
|
|
8602
8609
|
getGroupRoles(groupId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupRole[], any>>;
|
|
8603
8610
|
/**
|
|
8604
|
-
* Join a Group by ID and returns the
|
|
8611
|
+
* Join a Group by ID and returns the member object.
|
|
8605
8612
|
* @summary Join Group
|
|
8606
8613
|
* @param {string} groupId Must be a valid group ID.
|
|
8607
8614
|
* @param {*} [options] Override http request option.
|
|
8608
8615
|
* @throws {RequiredError}
|
|
8609
8616
|
* @memberof GroupsApi
|
|
8610
8617
|
*/
|
|
8611
|
-
joinGroup(groupId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
8618
|
+
joinGroup(groupId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember, any>>;
|
|
8612
8619
|
/**
|
|
8613
8620
|
* Kicks a Group Member from the Group. The current user must have the \"Remove Group Members\" permission.
|
|
8614
8621
|
* @summary Kick Group Member
|