vrchat 1.11.1 → 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 +17 -246
- package/base.ts +2 -2
- package/common.ts +2 -2
- package/configuration.ts +2 -2
- package/dist/api.d.ts +16 -9
- package/dist/api.js +4 -121
- 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
|
/**
|