vrchat 1.7.7 → 1.8.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 +24 -15
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +24 -15
- package/dist/api.js +9 -5
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
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.
|
|
6
|
+
* The version of the OpenAPI document: 1.8.0
|
|
7
7
|
* Contact: me@ariesclark.com
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1265,11 +1265,12 @@ export interface CurrentUser {
|
|
|
1265
1265
|
*/
|
|
1266
1266
|
'userIcon': string;
|
|
1267
1267
|
/**
|
|
1268
|
-
*
|
|
1268
|
+
* -| **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429).
|
|
1269
1269
|
* @type {string}
|
|
1270
1270
|
* @memberof CurrentUser
|
|
1271
|
+
* @deprecated
|
|
1271
1272
|
*/
|
|
1272
|
-
'username'
|
|
1273
|
+
'username'?: string;
|
|
1273
1274
|
}
|
|
1274
1275
|
/**
|
|
1275
1276
|
* Used to identify which API deployment cluster is currently responding. `blue` and `green` are used by Production. `grape`and `cherry` are used during Development. [Blue Green Deployment by Martin Fowler](https://martinfowler.com/bliki/BlueGreenDeployment.html)
|
|
@@ -2402,11 +2403,12 @@ export interface LimitedUser {
|
|
|
2402
2403
|
*/
|
|
2403
2404
|
'userIcon': string;
|
|
2404
2405
|
/**
|
|
2405
|
-
*
|
|
2406
|
+
* -| **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429).
|
|
2406
2407
|
* @type {string}
|
|
2407
2408
|
* @memberof LimitedUser
|
|
2409
|
+
* @deprecated
|
|
2408
2410
|
*/
|
|
2409
|
-
'username'
|
|
2411
|
+
'username'?: string;
|
|
2410
2412
|
/**
|
|
2411
2413
|
*
|
|
2412
2414
|
* @type {string}
|
|
@@ -2688,11 +2690,12 @@ export interface Notification {
|
|
|
2688
2690
|
*/
|
|
2689
2691
|
'senderUserId': string;
|
|
2690
2692
|
/**
|
|
2691
|
-
*
|
|
2693
|
+
* -| **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429).
|
|
2692
2694
|
* @type {string}
|
|
2693
2695
|
* @memberof Notification
|
|
2696
|
+
* @deprecated
|
|
2694
2697
|
*/
|
|
2695
|
-
'senderUsername'
|
|
2698
|
+
'senderUsername'?: string;
|
|
2696
2699
|
/**
|
|
2697
2700
|
*
|
|
2698
2701
|
* @type {NotificationType}
|
|
@@ -2952,11 +2955,12 @@ export interface SentNotification {
|
|
|
2952
2955
|
*/
|
|
2953
2956
|
'senderUserId': string;
|
|
2954
2957
|
/**
|
|
2955
|
-
*
|
|
2958
|
+
* -| **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429).
|
|
2956
2959
|
* @type {string}
|
|
2957
2960
|
* @memberof SentNotification
|
|
2961
|
+
* @deprecated
|
|
2958
2962
|
*/
|
|
2959
|
-
'senderUsername'
|
|
2963
|
+
'senderUsername'?: string;
|
|
2960
2964
|
/**
|
|
2961
2965
|
*
|
|
2962
2966
|
* @type {NotificationType}
|
|
@@ -3779,11 +3783,12 @@ export interface User {
|
|
|
3779
3783
|
*/
|
|
3780
3784
|
'userIcon': string;
|
|
3781
3785
|
/**
|
|
3782
|
-
* A users unique name, used during login. This is different from `displayName` which is what shows up in-game. A users `username` can never be changed.
|
|
3786
|
+
* -| A users unique name, used during login. This is different from `displayName` which is what shows up in-game. A users `username` can never be changed.\' **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429).
|
|
3783
3787
|
* @type {string}
|
|
3784
3788
|
* @memberof User
|
|
3789
|
+
* @deprecated
|
|
3785
3790
|
*/
|
|
3786
|
-
'username'
|
|
3791
|
+
'username'?: string;
|
|
3787
3792
|
/**
|
|
3788
3793
|
* WorldID be \"offline\" on User profiles if you are not friends with that user.
|
|
3789
3794
|
* @type {string}
|
|
@@ -10495,10 +10500,11 @@ export const UsersApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
10495
10500
|
};
|
|
10496
10501
|
},
|
|
10497
10502
|
/**
|
|
10498
|
-
* Get public user information about a specific user using their name.
|
|
10503
|
+
* ~~Get public user information about a specific user using their name.~~ **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429). This endpoint now require Admin Credentials.
|
|
10499
10504
|
* @summary Get User by Username
|
|
10500
10505
|
* @param {string} username
|
|
10501
10506
|
* @param {*} [options] Override http request option.
|
|
10507
|
+
* @deprecated
|
|
10502
10508
|
* @throws {RequiredError}
|
|
10503
10509
|
*/
|
|
10504
10510
|
getUserByName: async (username: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -10650,10 +10656,11 @@ export const UsersApiFp = function(configuration?: Configuration) {
|
|
|
10650
10656
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
10651
10657
|
},
|
|
10652
10658
|
/**
|
|
10653
|
-
* Get public user information about a specific user using their name.
|
|
10659
|
+
* ~~Get public user information about a specific user using their name.~~ **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429). This endpoint now require Admin Credentials.
|
|
10654
10660
|
* @summary Get User by Username
|
|
10655
10661
|
* @param {string} username
|
|
10656
10662
|
* @param {*} [options] Override http request option.
|
|
10663
|
+
* @deprecated
|
|
10657
10664
|
* @throws {RequiredError}
|
|
10658
10665
|
*/
|
|
10659
10666
|
async getUserByName(username: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>> {
|
|
@@ -10707,10 +10714,11 @@ export const UsersApiFactory = function (configuration?: Configuration, basePath
|
|
|
10707
10714
|
return localVarFp.getUser(userId, options).then((request) => request(axios, basePath));
|
|
10708
10715
|
},
|
|
10709
10716
|
/**
|
|
10710
|
-
* Get public user information about a specific user using their name.
|
|
10717
|
+
* ~~Get public user information about a specific user using their name.~~ **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429). This endpoint now require Admin Credentials.
|
|
10711
10718
|
* @summary Get User by Username
|
|
10712
10719
|
* @param {string} username
|
|
10713
10720
|
* @param {*} [options] Override http request option.
|
|
10721
|
+
* @deprecated
|
|
10714
10722
|
* @throws {RequiredError}
|
|
10715
10723
|
*/
|
|
10716
10724
|
getUserByName(username: string, options?: any): AxiosPromise<User> {
|
|
@@ -10763,10 +10771,11 @@ export class UsersApi extends BaseAPI {
|
|
|
10763
10771
|
}
|
|
10764
10772
|
|
|
10765
10773
|
/**
|
|
10766
|
-
* Get public user information about a specific user using their name.
|
|
10774
|
+
* ~~Get public user information about a specific user using their name.~~ **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429). This endpoint now require Admin Credentials.
|
|
10767
10775
|
* @summary Get User by Username
|
|
10768
10776
|
* @param {string} username
|
|
10769
10777
|
* @param {*} [options] Override http request option.
|
|
10778
|
+
* @deprecated
|
|
10770
10779
|
* @throws {RequiredError}
|
|
10771
10780
|
* @memberof UsersApi
|
|
10772
10781
|
*/
|
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
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.
|
|
4
|
+
* The version of the OpenAPI document: 1.8.0
|
|
5
5
|
* Contact: me@ariesclark.com
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1255,11 +1255,12 @@ export interface CurrentUser {
|
|
|
1255
1255
|
*/
|
|
1256
1256
|
'userIcon': string;
|
|
1257
1257
|
/**
|
|
1258
|
-
*
|
|
1258
|
+
* -| **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429).
|
|
1259
1259
|
* @type {string}
|
|
1260
1260
|
* @memberof CurrentUser
|
|
1261
|
+
* @deprecated
|
|
1261
1262
|
*/
|
|
1262
|
-
'username'
|
|
1263
|
+
'username'?: string;
|
|
1263
1264
|
}
|
|
1264
1265
|
/**
|
|
1265
1266
|
* Used to identify which API deployment cluster is currently responding. `blue` and `green` are used by Production. `grape`and `cherry` are used during Development. [Blue Green Deployment by Martin Fowler](https://martinfowler.com/bliki/BlueGreenDeployment.html)
|
|
@@ -2370,11 +2371,12 @@ export interface LimitedUser {
|
|
|
2370
2371
|
*/
|
|
2371
2372
|
'userIcon': string;
|
|
2372
2373
|
/**
|
|
2373
|
-
*
|
|
2374
|
+
* -| **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429).
|
|
2374
2375
|
* @type {string}
|
|
2375
2376
|
* @memberof LimitedUser
|
|
2377
|
+
* @deprecated
|
|
2376
2378
|
*/
|
|
2377
|
-
'username'
|
|
2379
|
+
'username'?: string;
|
|
2378
2380
|
/**
|
|
2379
2381
|
*
|
|
2380
2382
|
* @type {string}
|
|
@@ -2654,11 +2656,12 @@ export interface Notification {
|
|
|
2654
2656
|
*/
|
|
2655
2657
|
'senderUserId': string;
|
|
2656
2658
|
/**
|
|
2657
|
-
*
|
|
2659
|
+
* -| **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429).
|
|
2658
2660
|
* @type {string}
|
|
2659
2661
|
* @memberof Notification
|
|
2662
|
+
* @deprecated
|
|
2660
2663
|
*/
|
|
2661
|
-
'senderUsername'
|
|
2664
|
+
'senderUsername'?: string;
|
|
2662
2665
|
/**
|
|
2663
2666
|
*
|
|
2664
2667
|
* @type {NotificationType}
|
|
@@ -2910,11 +2913,12 @@ export interface SentNotification {
|
|
|
2910
2913
|
*/
|
|
2911
2914
|
'senderUserId': string;
|
|
2912
2915
|
/**
|
|
2913
|
-
*
|
|
2916
|
+
* -| **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429).
|
|
2914
2917
|
* @type {string}
|
|
2915
2918
|
* @memberof SentNotification
|
|
2919
|
+
* @deprecated
|
|
2916
2920
|
*/
|
|
2917
|
-
'senderUsername'
|
|
2921
|
+
'senderUsername'?: string;
|
|
2918
2922
|
/**
|
|
2919
2923
|
*
|
|
2920
2924
|
* @type {NotificationType}
|
|
@@ -3733,11 +3737,12 @@ export interface User {
|
|
|
3733
3737
|
*/
|
|
3734
3738
|
'userIcon': string;
|
|
3735
3739
|
/**
|
|
3736
|
-
* A users unique name, used during login. This is different from `displayName` which is what shows up in-game. A users `username` can never be changed.
|
|
3740
|
+
* -| A users unique name, used during login. This is different from `displayName` which is what shows up in-game. A users `username` can never be changed.\' **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429).
|
|
3737
3741
|
* @type {string}
|
|
3738
3742
|
* @memberof User
|
|
3743
|
+
* @deprecated
|
|
3739
3744
|
*/
|
|
3740
|
-
'username'
|
|
3745
|
+
'username'?: string;
|
|
3741
3746
|
/**
|
|
3742
3747
|
* WorldID be \"offline\" on User profiles if you are not friends with that user.
|
|
3743
3748
|
* @type {string}
|
|
@@ -7193,10 +7198,11 @@ export declare const UsersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7193
7198
|
*/
|
|
7194
7199
|
getUser: (userId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7195
7200
|
/**
|
|
7196
|
-
* Get public user information about a specific user using their name.
|
|
7201
|
+
* ~~Get public user information about a specific user using their name.~~ **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429). This endpoint now require Admin Credentials.
|
|
7197
7202
|
* @summary Get User by Username
|
|
7198
7203
|
* @param {string} username
|
|
7199
7204
|
* @param {*} [options] Override http request option.
|
|
7205
|
+
* @deprecated
|
|
7200
7206
|
* @throws {RequiredError}
|
|
7201
7207
|
*/
|
|
7202
7208
|
getUserByName: (username: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -7235,10 +7241,11 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
7235
7241
|
*/
|
|
7236
7242
|
getUser(userId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
7237
7243
|
/**
|
|
7238
|
-
* Get public user information about a specific user using their name.
|
|
7244
|
+
* ~~Get public user information about a specific user using their name.~~ **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429). This endpoint now require Admin Credentials.
|
|
7239
7245
|
* @summary Get User by Username
|
|
7240
7246
|
* @param {string} username
|
|
7241
7247
|
* @param {*} [options] Override http request option.
|
|
7248
|
+
* @deprecated
|
|
7242
7249
|
* @throws {RequiredError}
|
|
7243
7250
|
*/
|
|
7244
7251
|
getUserByName(username: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
@@ -7277,10 +7284,11 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
7277
7284
|
*/
|
|
7278
7285
|
getUser(userId: string, options?: any): AxiosPromise<User>;
|
|
7279
7286
|
/**
|
|
7280
|
-
* Get public user information about a specific user using their name.
|
|
7287
|
+
* ~~Get public user information about a specific user using their name.~~ **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429). This endpoint now require Admin Credentials.
|
|
7281
7288
|
* @summary Get User by Username
|
|
7282
7289
|
* @param {string} username
|
|
7283
7290
|
* @param {*} [options] Override http request option.
|
|
7291
|
+
* @deprecated
|
|
7284
7292
|
* @throws {RequiredError}
|
|
7285
7293
|
*/
|
|
7286
7294
|
getUserByName(username: string, options?: any): AxiosPromise<User>;
|
|
@@ -7322,10 +7330,11 @@ export declare class UsersApi extends BaseAPI {
|
|
|
7322
7330
|
*/
|
|
7323
7331
|
getUser(userId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<User>>;
|
|
7324
7332
|
/**
|
|
7325
|
-
* Get public user information about a specific user using their name.
|
|
7333
|
+
* ~~Get public user information about a specific user using their name.~~ **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429). This endpoint now require Admin Credentials.
|
|
7326
7334
|
* @summary Get User by Username
|
|
7327
7335
|
* @param {string} username
|
|
7328
7336
|
* @param {*} [options] Override http request option.
|
|
7337
|
+
* @deprecated
|
|
7329
7338
|
* @throws {RequiredError}
|
|
7330
7339
|
* @memberof UsersApi
|
|
7331
7340
|
*/
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.8.0
|
|
8
8
|
* Contact: me@ariesclark.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -7091,10 +7091,11 @@ exports.UsersApiAxiosParamCreator = function (configuration) {
|
|
|
7091
7091
|
});
|
|
7092
7092
|
},
|
|
7093
7093
|
/**
|
|
7094
|
-
* Get public user information about a specific user using their name.
|
|
7094
|
+
* ~~Get public user information about a specific user using their name.~~ **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429). This endpoint now require Admin Credentials.
|
|
7095
7095
|
* @summary Get User by Username
|
|
7096
7096
|
* @param {string} username
|
|
7097
7097
|
* @param {*} [options] Override http request option.
|
|
7098
|
+
* @deprecated
|
|
7098
7099
|
* @throws {RequiredError}
|
|
7099
7100
|
*/
|
|
7100
7101
|
getUserByName: function (username, options) {
|
|
@@ -7240,10 +7241,11 @@ exports.UsersApiFp = function (configuration) {
|
|
|
7240
7241
|
});
|
|
7241
7242
|
},
|
|
7242
7243
|
/**
|
|
7243
|
-
* Get public user information about a specific user using their name.
|
|
7244
|
+
* ~~Get public user information about a specific user using their name.~~ **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429). This endpoint now require Admin Credentials.
|
|
7244
7245
|
* @summary Get User by Username
|
|
7245
7246
|
* @param {string} username
|
|
7246
7247
|
* @param {*} [options] Override http request option.
|
|
7248
|
+
* @deprecated
|
|
7247
7249
|
* @throws {RequiredError}
|
|
7248
7250
|
*/
|
|
7249
7251
|
getUserByName: function (username, options) {
|
|
@@ -7323,10 +7325,11 @@ exports.UsersApiFactory = function (configuration, basePath, axios) {
|
|
|
7323
7325
|
return localVarFp.getUser(userId, options).then(function (request) { return request(axios, basePath); });
|
|
7324
7326
|
},
|
|
7325
7327
|
/**
|
|
7326
|
-
* Get public user information about a specific user using their name.
|
|
7328
|
+
* ~~Get public user information about a specific user using their name.~~ **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429). This endpoint now require Admin Credentials.
|
|
7327
7329
|
* @summary Get User by Username
|
|
7328
7330
|
* @param {string} username
|
|
7329
7331
|
* @param {*} [options] Override http request option.
|
|
7332
|
+
* @deprecated
|
|
7330
7333
|
* @throws {RequiredError}
|
|
7331
7334
|
*/
|
|
7332
7335
|
getUserByName: function (username, options) {
|
|
@@ -7382,10 +7385,11 @@ var UsersApi = /** @class */ (function (_super) {
|
|
|
7382
7385
|
return exports.UsersApiFp(this.configuration).getUser(userId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7383
7386
|
};
|
|
7384
7387
|
/**
|
|
7385
|
-
* Get public user information about a specific user using their name.
|
|
7388
|
+
* ~~Get public user information about a specific user using their name.~~ **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429). This endpoint now require Admin Credentials.
|
|
7386
7389
|
* @summary Get User by Username
|
|
7387
7390
|
* @param {string} username
|
|
7388
7391
|
* @param {*} [options] Override http request option.
|
|
7392
|
+
* @deprecated
|
|
7389
7393
|
* @throws {RequiredError}
|
|
7390
7394
|
* @memberof UsersApi
|
|
7391
7395
|
*/
|
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/index.ts
CHANGED