vrchat 1.6.10 → 1.7.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 +10 -8
- package/base.ts +2 -2
- package/common.ts +2 -2
- package/configuration.ts +2 -2
- package/dist/api.d.ts +10 -8
- package/dist/api.js +8 -6
- 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/api.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: me@
|
|
6
|
+
* The version of the OpenAPI document: 1.7.0
|
|
7
|
+
* Contact: me@ariesclark.com
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
10
|
* https://openapi-generator.tech
|
|
@@ -1251,7 +1251,7 @@ export interface CurrentUser {
|
|
|
1251
1251
|
* @type {string}
|
|
1252
1252
|
* @memberof CurrentUser
|
|
1253
1253
|
*/
|
|
1254
|
-
'twoFactorAuthEnabledDate'
|
|
1254
|
+
'twoFactorAuthEnabledDate'?: string;
|
|
1255
1255
|
/**
|
|
1256
1256
|
*
|
|
1257
1257
|
* @type {boolean}
|
|
@@ -2801,7 +2801,9 @@ export enum PlayerModerationType {
|
|
|
2801
2801
|
Block = 'block',
|
|
2802
2802
|
Unblock = 'unblock',
|
|
2803
2803
|
HideAvatar = 'hideAvatar',
|
|
2804
|
-
ShowAvatar = 'showAvatar'
|
|
2804
|
+
ShowAvatar = 'showAvatar',
|
|
2805
|
+
InteractOn = 'interactOn',
|
|
2806
|
+
InteractOff = 'interactOff'
|
|
2805
2807
|
}
|
|
2806
2808
|
|
|
2807
2809
|
/**
|
|
@@ -9392,7 +9394,7 @@ export const PlayermoderationApiAxiosParamCreator = function (configuration?: Co
|
|
|
9392
9394
|
};
|
|
9393
9395
|
},
|
|
9394
9396
|
/**
|
|
9395
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
9397
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
9396
9398
|
* @summary Moderate User
|
|
9397
9399
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
9398
9400
|
* @param {*} [options] Override http request option.
|
|
@@ -9522,7 +9524,7 @@ export const PlayermoderationApiFp = function(configuration?: Configuration) {
|
|
|
9522
9524
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
9523
9525
|
},
|
|
9524
9526
|
/**
|
|
9525
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
9527
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
9526
9528
|
* @summary Moderate User
|
|
9527
9529
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
9528
9530
|
* @param {*} [options] Override http request option.
|
|
@@ -9594,7 +9596,7 @@ export const PlayermoderationApiFactory = function (configuration?: Configuratio
|
|
|
9594
9596
|
return localVarFp.getPlayerModerations(type, targetUserId, options).then((request) => request(axios, basePath));
|
|
9595
9597
|
},
|
|
9596
9598
|
/**
|
|
9597
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
9599
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
9598
9600
|
* @summary Moderate User
|
|
9599
9601
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
9600
9602
|
* @param {*} [options] Override http request option.
|
|
@@ -9672,7 +9674,7 @@ export class PlayermoderationApi extends BaseAPI {
|
|
|
9672
9674
|
}
|
|
9673
9675
|
|
|
9674
9676
|
/**
|
|
9675
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
9677
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
9676
9678
|
* @summary Moderate User
|
|
9677
9679
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
9678
9680
|
* @param {*} [options] Override http request option.
|
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: me@
|
|
6
|
+
* The version of the OpenAPI document: 1.7.0
|
|
7
|
+
* Contact: me@ariesclark.com
|
|
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: me@
|
|
6
|
+
* The version of the OpenAPI document: 1.7.0
|
|
7
|
+
* Contact: me@ariesclark.com
|
|
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: me@
|
|
6
|
+
* The version of the OpenAPI document: 1.7.0
|
|
7
|
+
* Contact: me@ariesclark.com
|
|
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: me@
|
|
4
|
+
* The version of the OpenAPI document: 1.7.0
|
|
5
|
+
* Contact: me@ariesclark.com
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
8
|
* https://openapi-generator.tech
|
|
@@ -1241,7 +1241,7 @@ export interface CurrentUser {
|
|
|
1241
1241
|
* @type {string}
|
|
1242
1242
|
* @memberof CurrentUser
|
|
1243
1243
|
*/
|
|
1244
|
-
'twoFactorAuthEnabledDate'
|
|
1244
|
+
'twoFactorAuthEnabledDate'?: string;
|
|
1245
1245
|
/**
|
|
1246
1246
|
*
|
|
1247
1247
|
* @type {boolean}
|
|
@@ -2764,7 +2764,9 @@ export declare enum PlayerModerationType {
|
|
|
2764
2764
|
Block = "block",
|
|
2765
2765
|
Unblock = "unblock",
|
|
2766
2766
|
HideAvatar = "hideAvatar",
|
|
2767
|
-
ShowAvatar = "showAvatar"
|
|
2767
|
+
ShowAvatar = "showAvatar",
|
|
2768
|
+
InteractOn = "interactOn",
|
|
2769
|
+
InteractOff = "interactOff"
|
|
2768
2770
|
}
|
|
2769
2771
|
/**
|
|
2770
2772
|
* Public Announcement
|
|
@@ -6572,7 +6574,7 @@ export declare const PlayermoderationApiAxiosParamCreator: (configuration?: Conf
|
|
|
6572
6574
|
*/
|
|
6573
6575
|
getPlayerModerations: (type?: string, targetUserId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6574
6576
|
/**
|
|
6575
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
6577
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
6576
6578
|
* @summary Moderate User
|
|
6577
6579
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
6578
6580
|
* @param {*} [options] Override http request option.
|
|
@@ -6626,7 +6628,7 @@ export declare const PlayermoderationApiFp: (configuration?: Configuration) => {
|
|
|
6626
6628
|
*/
|
|
6627
6629
|
getPlayerModerations(type?: string, targetUserId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PlayerModeration>>>;
|
|
6628
6630
|
/**
|
|
6629
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
6631
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
6630
6632
|
* @summary Moderate User
|
|
6631
6633
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
6632
6634
|
* @param {*} [options] Override http request option.
|
|
@@ -6680,7 +6682,7 @@ export declare const PlayermoderationApiFactory: (configuration?: Configuration,
|
|
|
6680
6682
|
*/
|
|
6681
6683
|
getPlayerModerations(type?: string, targetUserId?: string, options?: any): AxiosPromise<Array<PlayerModeration>>;
|
|
6682
6684
|
/**
|
|
6683
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
6685
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
6684
6686
|
* @summary Moderate User
|
|
6685
6687
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
6686
6688
|
* @param {*} [options] Override http request option.
|
|
@@ -6740,7 +6742,7 @@ export declare class PlayermoderationApi extends BaseAPI {
|
|
|
6740
6742
|
*/
|
|
6741
6743
|
getPlayerModerations(type?: string, targetUserId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerModeration[]>>;
|
|
6742
6744
|
/**
|
|
6743
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
6745
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
6744
6746
|
* @summary Moderate User
|
|
6745
6747
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
6746
6748
|
* @param {*} [options] Override http request option.
|
package/dist/api.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
* Contact: me@
|
|
7
|
+
* The version of the OpenAPI document: 1.7.0
|
|
8
|
+
* Contact: me@ariesclark.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -258,6 +258,8 @@ var PlayerModerationType;
|
|
|
258
258
|
PlayerModerationType["Unblock"] = "unblock";
|
|
259
259
|
PlayerModerationType["HideAvatar"] = "hideAvatar";
|
|
260
260
|
PlayerModerationType["ShowAvatar"] = "showAvatar";
|
|
261
|
+
PlayerModerationType["InteractOn"] = "interactOn";
|
|
262
|
+
PlayerModerationType["InteractOff"] = "interactOff";
|
|
261
263
|
})(PlayerModerationType = exports.PlayerModerationType || (exports.PlayerModerationType = {}));
|
|
262
264
|
/**
|
|
263
265
|
* API/Photon region.
|
|
@@ -5969,7 +5971,7 @@ exports.PlayermoderationApiAxiosParamCreator = function (configuration) {
|
|
|
5969
5971
|
});
|
|
5970
5972
|
},
|
|
5971
5973
|
/**
|
|
5972
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
5974
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
5973
5975
|
* @summary Moderate User
|
|
5974
5976
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
5975
5977
|
* @param {*} [options] Override http request option.
|
|
@@ -6126,7 +6128,7 @@ exports.PlayermoderationApiFp = function (configuration) {
|
|
|
6126
6128
|
});
|
|
6127
6129
|
},
|
|
6128
6130
|
/**
|
|
6129
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
6131
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
6130
6132
|
* @summary Moderate User
|
|
6131
6133
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
6132
6134
|
* @param {*} [options] Override http request option.
|
|
@@ -6215,7 +6217,7 @@ exports.PlayermoderationApiFactory = function (configuration, basePath, axios) {
|
|
|
6215
6217
|
return localVarFp.getPlayerModerations(type, targetUserId, options).then(function (request) { return request(axios, basePath); });
|
|
6216
6218
|
},
|
|
6217
6219
|
/**
|
|
6218
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
6220
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
6219
6221
|
* @summary Moderate User
|
|
6220
6222
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
6221
6223
|
* @param {*} [options] Override http request option.
|
|
@@ -6296,7 +6298,7 @@ var PlayermoderationApi = /** @class */ (function (_super) {
|
|
|
6296
6298
|
return exports.PlayermoderationApiFp(this.configuration).getPlayerModerations(type, targetUserId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
6297
6299
|
};
|
|
6298
6300
|
/**
|
|
6299
|
-
* Moderate a user, e.g. unmute them or show their avatar.
|
|
6301
|
+
* Moderate a user, e.g. unmute them or show their avatar. Please see the [Player Moderation docs](https://vrchatapi.github.io/docs/api/#tag--playermoderation) on what playerModerations are, and how they differ from staff moderations.
|
|
6300
6302
|
* @summary Moderate User
|
|
6301
6303
|
* @param {ModerateUserRequest} [moderateUserRequest]
|
|
6302
6304
|
* @param {*} [options] Override http request option.
|
package/dist/base.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: me@
|
|
4
|
+
* The version of the OpenAPI document: 1.7.0
|
|
5
|
+
* Contact: me@ariesclark.com
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
8
|
* https://openapi-generator.tech
|
package/dist/base.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
* Contact: me@
|
|
7
|
+
* The version of the OpenAPI document: 1.7.0
|
|
8
|
+
* Contact: me@ariesclark.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/common.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: me@
|
|
4
|
+
* The version of the OpenAPI document: 1.7.0
|
|
5
|
+
* Contact: me@ariesclark.com
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
8
|
* https://openapi-generator.tech
|
package/dist/common.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
* Contact: me@
|
|
7
|
+
* The version of the OpenAPI document: 1.7.0
|
|
8
|
+
* Contact: me@ariesclark.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/configuration.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: me@
|
|
4
|
+
* The version of the OpenAPI document: 1.7.0
|
|
5
|
+
* Contact: me@ariesclark.com
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
8
|
* https://openapi-generator.tech
|
package/dist/configuration.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
* Contact: me@
|
|
7
|
+
* The version of the OpenAPI document: 1.7.0
|
|
8
|
+
* Contact: me@ariesclark.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/index.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: me@
|
|
4
|
+
* The version of the OpenAPI document: 1.7.0
|
|
5
|
+
* Contact: me@ariesclark.com
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
8
|
* https://openapi-generator.tech
|
package/dist/index.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
* Contact: me@
|
|
7
|
+
* The version of the OpenAPI document: 1.7.0
|
|
8
|
+
* Contact: me@ariesclark.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/index.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: me@
|
|
6
|
+
* The version of the OpenAPI document: 1.7.0
|
|
7
|
+
* Contact: me@ariesclark.com
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
10
|
* https://openapi-generator.tech
|