vrchat 1.16.7 → 1.17.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 +356 -134
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +274 -133
- package/dist/api.js +204 -64
- 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/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.17.0
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2286,6 +2286,17 @@ export interface Group {
|
|
|
2286
2286
|
*/
|
|
2287
2287
|
'roles'?: Array<GroupRole> | null;
|
|
2288
2288
|
}
|
|
2289
|
+
/**
|
|
2290
|
+
* Group access type when the instance type is \"group\"
|
|
2291
|
+
* @export
|
|
2292
|
+
* @enum {string}
|
|
2293
|
+
*/
|
|
2294
|
+
export declare const GroupAccessType: {
|
|
2295
|
+
readonly Public: "public";
|
|
2296
|
+
readonly Plus: "plus";
|
|
2297
|
+
readonly Member: "member";
|
|
2298
|
+
};
|
|
2299
|
+
export type GroupAccessType = typeof GroupAccessType[keyof typeof GroupAccessType];
|
|
2289
2300
|
/**
|
|
2290
2301
|
*
|
|
2291
2302
|
* @export
|
|
@@ -2542,6 +2553,16 @@ export interface GroupGalleryImage {
|
|
|
2542
2553
|
*/
|
|
2543
2554
|
'approvedAt'?: string;
|
|
2544
2555
|
}
|
|
2556
|
+
/**
|
|
2557
|
+
*
|
|
2558
|
+
* @export
|
|
2559
|
+
* @enum {string}
|
|
2560
|
+
*/
|
|
2561
|
+
export declare const GroupJoinRequestAction: {
|
|
2562
|
+
readonly Accept: "accept";
|
|
2563
|
+
readonly Reject: "reject";
|
|
2564
|
+
};
|
|
2565
|
+
export type GroupJoinRequestAction = typeof GroupJoinRequestAction[keyof typeof GroupJoinRequestAction];
|
|
2545
2566
|
/**
|
|
2546
2567
|
*
|
|
2547
2568
|
* @export
|
|
@@ -2604,10 +2625,10 @@ export interface GroupLimitedMember {
|
|
|
2604
2625
|
'joinedAt'?: string;
|
|
2605
2626
|
/**
|
|
2606
2627
|
*
|
|
2607
|
-
* @type {
|
|
2628
|
+
* @type {GroupMemberStatus}
|
|
2608
2629
|
* @memberof GroupLimitedMember
|
|
2609
2630
|
*/
|
|
2610
|
-
'membershipStatus'?:
|
|
2631
|
+
'membershipStatus'?: GroupMemberStatus;
|
|
2611
2632
|
/**
|
|
2612
2633
|
*
|
|
2613
2634
|
* @type {string}
|
|
@@ -2704,13 +2725,13 @@ export interface GroupMember {
|
|
|
2704
2725
|
* @type {string}
|
|
2705
2726
|
* @memberof GroupMember
|
|
2706
2727
|
*/
|
|
2707
|
-
'joinedAt'?: string;
|
|
2728
|
+
'joinedAt'?: string | null;
|
|
2708
2729
|
/**
|
|
2709
2730
|
*
|
|
2710
|
-
* @type {
|
|
2731
|
+
* @type {GroupMemberStatus}
|
|
2711
2732
|
* @memberof GroupMember
|
|
2712
2733
|
*/
|
|
2713
|
-
'membershipStatus'?:
|
|
2734
|
+
'membershipStatus'?: GroupMemberStatus;
|
|
2714
2735
|
/**
|
|
2715
2736
|
*
|
|
2716
2737
|
* @type {string}
|
|
@@ -2795,7 +2816,7 @@ export interface GroupMemberLimitedUser {
|
|
|
2795
2816
|
* @type {string}
|
|
2796
2817
|
* @memberof GroupMemberLimitedUser
|
|
2797
2818
|
*/
|
|
2798
|
-
'currentAvatarThumbnailImageUrl'?: string;
|
|
2819
|
+
'currentAvatarThumbnailImageUrl'?: string | null;
|
|
2799
2820
|
/**
|
|
2800
2821
|
*
|
|
2801
2822
|
* @type {Array<string>}
|
|
@@ -2813,6 +2834,7 @@ export declare const GroupMemberStatus: {
|
|
|
2813
2834
|
readonly Member: "member";
|
|
2814
2835
|
readonly Requested: "requested";
|
|
2815
2836
|
readonly Invited: "invited";
|
|
2837
|
+
readonly Banned: "banned";
|
|
2816
2838
|
};
|
|
2817
2839
|
export type GroupMemberStatus = typeof GroupMemberStatus[keyof typeof GroupMemberStatus];
|
|
2818
2840
|
/**
|
|
@@ -3319,11 +3341,11 @@ export interface Instance {
|
|
|
3319
3341
|
*/
|
|
3320
3342
|
'name': string;
|
|
3321
3343
|
/**
|
|
3322
|
-
* A
|
|
3344
|
+
* A groupId if the instance type is \"group\", null if instance type is public, or a userId otherwise
|
|
3323
3345
|
* @type {string}
|
|
3324
3346
|
* @memberof Instance
|
|
3325
3347
|
*/
|
|
3326
|
-
'ownerId'?: string;
|
|
3348
|
+
'ownerId'?: string | null;
|
|
3327
3349
|
/**
|
|
3328
3350
|
*
|
|
3329
3351
|
* @type {boolean}
|
|
@@ -3359,7 +3381,7 @@ export interface Instance {
|
|
|
3359
3381
|
* @type {string}
|
|
3360
3382
|
* @memberof Instance
|
|
3361
3383
|
*/
|
|
3362
|
-
'shortName'?: string;
|
|
3384
|
+
'shortName'?: string | null;
|
|
3363
3385
|
/**
|
|
3364
3386
|
* The tags array on Instances usually contain the language tags of the people in the instance.
|
|
3365
3387
|
* @type {Array<string>}
|
|
@@ -3396,6 +3418,84 @@ export interface Instance {
|
|
|
3396
3418
|
* @memberof Instance
|
|
3397
3419
|
*/
|
|
3398
3420
|
'private'?: string;
|
|
3421
|
+
/**
|
|
3422
|
+
*
|
|
3423
|
+
* @type {boolean}
|
|
3424
|
+
* @memberof Instance
|
|
3425
|
+
*/
|
|
3426
|
+
'queueEnabled': boolean;
|
|
3427
|
+
/**
|
|
3428
|
+
*
|
|
3429
|
+
* @type {number}
|
|
3430
|
+
* @memberof Instance
|
|
3431
|
+
*/
|
|
3432
|
+
'queueSize': number;
|
|
3433
|
+
/**
|
|
3434
|
+
*
|
|
3435
|
+
* @type {number}
|
|
3436
|
+
* @memberof Instance
|
|
3437
|
+
*/
|
|
3438
|
+
'recommendedCapacity': number;
|
|
3439
|
+
/**
|
|
3440
|
+
*
|
|
3441
|
+
* @type {boolean}
|
|
3442
|
+
* @memberof Instance
|
|
3443
|
+
*/
|
|
3444
|
+
'roleRestricted'?: boolean;
|
|
3445
|
+
/**
|
|
3446
|
+
*
|
|
3447
|
+
* @type {boolean}
|
|
3448
|
+
* @memberof Instance
|
|
3449
|
+
*/
|
|
3450
|
+
'strict': boolean;
|
|
3451
|
+
/**
|
|
3452
|
+
*
|
|
3453
|
+
* @type {number}
|
|
3454
|
+
* @memberof Instance
|
|
3455
|
+
*/
|
|
3456
|
+
'userCount': number;
|
|
3457
|
+
/**
|
|
3458
|
+
*
|
|
3459
|
+
* @type {World}
|
|
3460
|
+
* @memberof Instance
|
|
3461
|
+
*/
|
|
3462
|
+
'world': World;
|
|
3463
|
+
/**
|
|
3464
|
+
* The users field is present on instances created by the requesting user.
|
|
3465
|
+
* @type {Array<LimitedUser>}
|
|
3466
|
+
* @memberof Instance
|
|
3467
|
+
*/
|
|
3468
|
+
'users'?: Array<LimitedUser>;
|
|
3469
|
+
/**
|
|
3470
|
+
*
|
|
3471
|
+
* @type {GroupAccessType}
|
|
3472
|
+
* @memberof Instance
|
|
3473
|
+
*/
|
|
3474
|
+
'groupAccessType'?: GroupAccessType;
|
|
3475
|
+
/**
|
|
3476
|
+
*
|
|
3477
|
+
* @type {boolean}
|
|
3478
|
+
* @memberof Instance
|
|
3479
|
+
*/
|
|
3480
|
+
'hasCapacityForYou'?: boolean;
|
|
3481
|
+
/**
|
|
3482
|
+
*
|
|
3483
|
+
* @type {string}
|
|
3484
|
+
* @memberof Instance
|
|
3485
|
+
*/
|
|
3486
|
+
'nonce'?: string;
|
|
3487
|
+
/**
|
|
3488
|
+
*
|
|
3489
|
+
* @type {string}
|
|
3490
|
+
* @memberof Instance
|
|
3491
|
+
*/
|
|
3492
|
+
'closedAt'?: string | null;
|
|
3493
|
+
/**
|
|
3494
|
+
*
|
|
3495
|
+
* @type {boolean}
|
|
3496
|
+
* @memberof Instance
|
|
3497
|
+
*/
|
|
3498
|
+
'hardClose'?: boolean | null;
|
|
3399
3499
|
}
|
|
3400
3500
|
/**
|
|
3401
3501
|
*
|
|
@@ -4462,10 +4562,10 @@ export interface RequestInviteRequest {
|
|
|
4462
4562
|
export interface RespondGroupJoinRequest {
|
|
4463
4563
|
/**
|
|
4464
4564
|
*
|
|
4465
|
-
* @type {
|
|
4565
|
+
* @type {GroupJoinRequestAction}
|
|
4466
4566
|
* @memberof RespondGroupJoinRequest
|
|
4467
4567
|
*/
|
|
4468
|
-
'action'
|
|
4568
|
+
'action': GroupJoinRequestAction;
|
|
4469
4569
|
}
|
|
4470
4570
|
/**
|
|
4471
4571
|
*
|
|
@@ -5877,7 +5977,7 @@ export interface World {
|
|
|
5877
5977
|
* @type {string}
|
|
5878
5978
|
* @memberof World
|
|
5879
5979
|
*/
|
|
5880
|
-
'namespace'
|
|
5980
|
+
'namespace'?: string;
|
|
5881
5981
|
/**
|
|
5882
5982
|
* Will always be `0` when unauthenticated.
|
|
5883
5983
|
* @type {number}
|
|
@@ -6042,19 +6142,19 @@ export declare const AuthenticationApiAxiosParamCreator: (configuration?: Config
|
|
|
6042
6142
|
/**
|
|
6043
6143
|
* Finishes the login sequence with a normal 2FA-generated code for accounts with 2FA-protection enabled.
|
|
6044
6144
|
* @summary Verify 2FA code
|
|
6045
|
-
* @param {TwoFactorAuthCode}
|
|
6145
|
+
* @param {TwoFactorAuthCode} twoFactorAuthCode
|
|
6046
6146
|
* @param {*} [options] Override http request option.
|
|
6047
6147
|
* @throws {RequiredError}
|
|
6048
6148
|
*/
|
|
6049
|
-
verify2FA: (twoFactorAuthCode
|
|
6149
|
+
verify2FA: (twoFactorAuthCode: TwoFactorAuthCode, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6050
6150
|
/**
|
|
6051
6151
|
* Finishes the login sequence with an 2FA email code.
|
|
6052
6152
|
* @summary Verify 2FA email code
|
|
6053
|
-
* @param {TwoFactorEmailCode}
|
|
6153
|
+
* @param {TwoFactorEmailCode} twoFactorEmailCode
|
|
6054
6154
|
* @param {*} [options] Override http request option.
|
|
6055
6155
|
* @throws {RequiredError}
|
|
6056
6156
|
*/
|
|
6057
|
-
verify2FAEmailCode: (twoFactorEmailCode
|
|
6157
|
+
verify2FAEmailCode: (twoFactorEmailCode: TwoFactorEmailCode, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6058
6158
|
/**
|
|
6059
6159
|
* Verify whether the currently provided Auth Token is valid.
|
|
6060
6160
|
* @summary Verify Auth Token
|
|
@@ -6065,11 +6165,11 @@ export declare const AuthenticationApiAxiosParamCreator: (configuration?: Config
|
|
|
6065
6165
|
/**
|
|
6066
6166
|
* Finishes the login sequence with an OTP (One Time Password) recovery code for accounts with 2FA-protection enabled.
|
|
6067
6167
|
* @summary Verify 2FA code with Recovery code
|
|
6068
|
-
* @param {TwoFactorAuthCode}
|
|
6168
|
+
* @param {TwoFactorAuthCode} twoFactorAuthCode
|
|
6069
6169
|
* @param {*} [options] Override http request option.
|
|
6070
6170
|
* @throws {RequiredError}
|
|
6071
6171
|
*/
|
|
6072
|
-
verifyRecoveryCode: (twoFactorAuthCode
|
|
6172
|
+
verifyRecoveryCode: (twoFactorAuthCode: TwoFactorAuthCode, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6073
6173
|
};
|
|
6074
6174
|
/**
|
|
6075
6175
|
* AuthenticationApi - functional programming interface
|
|
@@ -6112,19 +6212,19 @@ export declare const AuthenticationApiFp: (configuration?: Configuration) => {
|
|
|
6112
6212
|
/**
|
|
6113
6213
|
* Finishes the login sequence with a normal 2FA-generated code for accounts with 2FA-protection enabled.
|
|
6114
6214
|
* @summary Verify 2FA code
|
|
6115
|
-
* @param {TwoFactorAuthCode}
|
|
6215
|
+
* @param {TwoFactorAuthCode} twoFactorAuthCode
|
|
6116
6216
|
* @param {*} [options] Override http request option.
|
|
6117
6217
|
* @throws {RequiredError}
|
|
6118
6218
|
*/
|
|
6119
|
-
verify2FA(twoFactorAuthCode
|
|
6219
|
+
verify2FA(twoFactorAuthCode: TwoFactorAuthCode, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Verify2FAResult>>;
|
|
6120
6220
|
/**
|
|
6121
6221
|
* Finishes the login sequence with an 2FA email code.
|
|
6122
6222
|
* @summary Verify 2FA email code
|
|
6123
|
-
* @param {TwoFactorEmailCode}
|
|
6223
|
+
* @param {TwoFactorEmailCode} twoFactorEmailCode
|
|
6124
6224
|
* @param {*} [options] Override http request option.
|
|
6125
6225
|
* @throws {RequiredError}
|
|
6126
6226
|
*/
|
|
6127
|
-
verify2FAEmailCode(twoFactorEmailCode
|
|
6227
|
+
verify2FAEmailCode(twoFactorEmailCode: TwoFactorEmailCode, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Verify2FAEmailCodeResult>>;
|
|
6128
6228
|
/**
|
|
6129
6229
|
* Verify whether the currently provided Auth Token is valid.
|
|
6130
6230
|
* @summary Verify Auth Token
|
|
@@ -6135,11 +6235,11 @@ export declare const AuthenticationApiFp: (configuration?: Configuration) => {
|
|
|
6135
6235
|
/**
|
|
6136
6236
|
* Finishes the login sequence with an OTP (One Time Password) recovery code for accounts with 2FA-protection enabled.
|
|
6137
6237
|
* @summary Verify 2FA code with Recovery code
|
|
6138
|
-
* @param {TwoFactorAuthCode}
|
|
6238
|
+
* @param {TwoFactorAuthCode} twoFactorAuthCode
|
|
6139
6239
|
* @param {*} [options] Override http request option.
|
|
6140
6240
|
* @throws {RequiredError}
|
|
6141
6241
|
*/
|
|
6142
|
-
verifyRecoveryCode(twoFactorAuthCode
|
|
6242
|
+
verifyRecoveryCode(twoFactorAuthCode: TwoFactorAuthCode, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Verify2FAResult>>;
|
|
6143
6243
|
};
|
|
6144
6244
|
/**
|
|
6145
6245
|
* AuthenticationApi - factory interface
|
|
@@ -6182,19 +6282,19 @@ export declare const AuthenticationApiFactory: (configuration?: Configuration, b
|
|
|
6182
6282
|
/**
|
|
6183
6283
|
* Finishes the login sequence with a normal 2FA-generated code for accounts with 2FA-protection enabled.
|
|
6184
6284
|
* @summary Verify 2FA code
|
|
6185
|
-
* @param {TwoFactorAuthCode}
|
|
6285
|
+
* @param {TwoFactorAuthCode} twoFactorAuthCode
|
|
6186
6286
|
* @param {*} [options] Override http request option.
|
|
6187
6287
|
* @throws {RequiredError}
|
|
6188
6288
|
*/
|
|
6189
|
-
verify2FA(twoFactorAuthCode
|
|
6289
|
+
verify2FA(twoFactorAuthCode: TwoFactorAuthCode, options?: any): AxiosPromise<Verify2FAResult>;
|
|
6190
6290
|
/**
|
|
6191
6291
|
* Finishes the login sequence with an 2FA email code.
|
|
6192
6292
|
* @summary Verify 2FA email code
|
|
6193
|
-
* @param {TwoFactorEmailCode}
|
|
6293
|
+
* @param {TwoFactorEmailCode} twoFactorEmailCode
|
|
6194
6294
|
* @param {*} [options] Override http request option.
|
|
6195
6295
|
* @throws {RequiredError}
|
|
6196
6296
|
*/
|
|
6197
|
-
verify2FAEmailCode(twoFactorEmailCode
|
|
6297
|
+
verify2FAEmailCode(twoFactorEmailCode: TwoFactorEmailCode, options?: any): AxiosPromise<Verify2FAEmailCodeResult>;
|
|
6198
6298
|
/**
|
|
6199
6299
|
* Verify whether the currently provided Auth Token is valid.
|
|
6200
6300
|
* @summary Verify Auth Token
|
|
@@ -6205,11 +6305,11 @@ export declare const AuthenticationApiFactory: (configuration?: Configuration, b
|
|
|
6205
6305
|
/**
|
|
6206
6306
|
* Finishes the login sequence with an OTP (One Time Password) recovery code for accounts with 2FA-protection enabled.
|
|
6207
6307
|
* @summary Verify 2FA code with Recovery code
|
|
6208
|
-
* @param {TwoFactorAuthCode}
|
|
6308
|
+
* @param {TwoFactorAuthCode} twoFactorAuthCode
|
|
6209
6309
|
* @param {*} [options] Override http request option.
|
|
6210
6310
|
* @throws {RequiredError}
|
|
6211
6311
|
*/
|
|
6212
|
-
verifyRecoveryCode(twoFactorAuthCode
|
|
6312
|
+
verifyRecoveryCode(twoFactorAuthCode: TwoFactorAuthCode, options?: any): AxiosPromise<Verify2FAResult>;
|
|
6213
6313
|
};
|
|
6214
6314
|
/**
|
|
6215
6315
|
* AuthenticationApi - object-oriented interface
|
|
@@ -6258,21 +6358,21 @@ export declare class AuthenticationApi extends BaseAPI {
|
|
|
6258
6358
|
/**
|
|
6259
6359
|
* Finishes the login sequence with a normal 2FA-generated code for accounts with 2FA-protection enabled.
|
|
6260
6360
|
* @summary Verify 2FA code
|
|
6261
|
-
* @param {TwoFactorAuthCode}
|
|
6361
|
+
* @param {TwoFactorAuthCode} twoFactorAuthCode
|
|
6262
6362
|
* @param {*} [options] Override http request option.
|
|
6263
6363
|
* @throws {RequiredError}
|
|
6264
6364
|
* @memberof AuthenticationApi
|
|
6265
6365
|
*/
|
|
6266
|
-
verify2FA(twoFactorAuthCode
|
|
6366
|
+
verify2FA(twoFactorAuthCode: TwoFactorAuthCode, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Verify2FAResult, any>>;
|
|
6267
6367
|
/**
|
|
6268
6368
|
* Finishes the login sequence with an 2FA email code.
|
|
6269
6369
|
* @summary Verify 2FA email code
|
|
6270
|
-
* @param {TwoFactorEmailCode}
|
|
6370
|
+
* @param {TwoFactorEmailCode} twoFactorEmailCode
|
|
6271
6371
|
* @param {*} [options] Override http request option.
|
|
6272
6372
|
* @throws {RequiredError}
|
|
6273
6373
|
* @memberof AuthenticationApi
|
|
6274
6374
|
*/
|
|
6275
|
-
verify2FAEmailCode(twoFactorEmailCode
|
|
6375
|
+
verify2FAEmailCode(twoFactorEmailCode: TwoFactorEmailCode, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Verify2FAEmailCodeResult, any>>;
|
|
6276
6376
|
/**
|
|
6277
6377
|
* Verify whether the currently provided Auth Token is valid.
|
|
6278
6378
|
* @summary Verify Auth Token
|
|
@@ -6284,12 +6384,12 @@ export declare class AuthenticationApi extends BaseAPI {
|
|
|
6284
6384
|
/**
|
|
6285
6385
|
* Finishes the login sequence with an OTP (One Time Password) recovery code for accounts with 2FA-protection enabled.
|
|
6286
6386
|
* @summary Verify 2FA code with Recovery code
|
|
6287
|
-
* @param {TwoFactorAuthCode}
|
|
6387
|
+
* @param {TwoFactorAuthCode} twoFactorAuthCode
|
|
6288
6388
|
* @param {*} [options] Override http request option.
|
|
6289
6389
|
* @throws {RequiredError}
|
|
6290
6390
|
* @memberof AuthenticationApi
|
|
6291
6391
|
*/
|
|
6292
|
-
verifyRecoveryCode(twoFactorAuthCode
|
|
6392
|
+
verifyRecoveryCode(twoFactorAuthCode: TwoFactorAuthCode, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Verify2FAResult, any>>;
|
|
6293
6393
|
}
|
|
6294
6394
|
/**
|
|
6295
6395
|
* AvatarsApi - axios parameter creator
|
|
@@ -7856,11 +7956,11 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7856
7956
|
* @summary Add Group Gallery Image
|
|
7857
7957
|
* @param {string} groupId Must be a valid group ID.
|
|
7858
7958
|
* @param {string} groupGalleryId Must be a valid group gallery ID.
|
|
7859
|
-
* @param {AddGroupGalleryImageRequest}
|
|
7959
|
+
* @param {AddGroupGalleryImageRequest} addGroupGalleryImageRequest
|
|
7860
7960
|
* @param {*} [options] Override http request option.
|
|
7861
7961
|
* @throws {RequiredError}
|
|
7862
7962
|
*/
|
|
7863
|
-
addGroupGalleryImage: (groupId: string, groupGalleryId: string, addGroupGalleryImageRequest
|
|
7963
|
+
addGroupGalleryImage: (groupId: string, groupGalleryId: string, addGroupGalleryImageRequest: AddGroupGalleryImageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7864
7964
|
/**
|
|
7865
7965
|
* Adds a Role to a Group Member
|
|
7866
7966
|
* @summary Add Role to GroupMember
|
|
@@ -7875,11 +7975,11 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7875
7975
|
* Bans a user from a Group.
|
|
7876
7976
|
* @summary Ban Group Member
|
|
7877
7977
|
* @param {string} groupId Must be a valid group ID.
|
|
7878
|
-
* @param {BanGroupMemberRequest}
|
|
7978
|
+
* @param {BanGroupMemberRequest} banGroupMemberRequest
|
|
7879
7979
|
* @param {*} [options] Override http request option.
|
|
7880
7980
|
* @throws {RequiredError}
|
|
7881
7981
|
*/
|
|
7882
|
-
banGroupMember: (groupId: string, banGroupMemberRequest
|
|
7982
|
+
banGroupMember: (groupId: string, banGroupMemberRequest: BanGroupMemberRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7883
7983
|
/**
|
|
7884
7984
|
* Cancels a request sent to join the group.
|
|
7885
7985
|
* @summary Cancel Group Join Request
|
|
@@ -7891,47 +7991,47 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7891
7991
|
/**
|
|
7892
7992
|
* Creates a Group and returns a Group object. **Requires VRC+ Subscription.**
|
|
7893
7993
|
* @summary Create Group
|
|
7894
|
-
* @param {CreateGroupRequest}
|
|
7994
|
+
* @param {CreateGroupRequest} createGroupRequest
|
|
7895
7995
|
* @param {*} [options] Override http request option.
|
|
7896
7996
|
* @throws {RequiredError}
|
|
7897
7997
|
*/
|
|
7898
|
-
createGroup: (createGroupRequest
|
|
7998
|
+
createGroup: (createGroupRequest: CreateGroupRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7899
7999
|
/**
|
|
7900
8000
|
* Creates an Announcement for a Group.
|
|
7901
8001
|
* @summary Create Group Announcement
|
|
7902
8002
|
* @param {string} groupId Must be a valid group ID.
|
|
7903
|
-
* @param {CreateGroupAnnouncementRequest}
|
|
8003
|
+
* @param {CreateGroupAnnouncementRequest} createGroupAnnouncementRequest
|
|
7904
8004
|
* @param {*} [options] Override http request option.
|
|
7905
8005
|
* @throws {RequiredError}
|
|
7906
8006
|
*/
|
|
7907
|
-
createGroupAnnouncement: (groupId: string, createGroupAnnouncementRequest
|
|
8007
|
+
createGroupAnnouncement: (groupId: string, createGroupAnnouncementRequest: CreateGroupAnnouncementRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7908
8008
|
/**
|
|
7909
8009
|
* Creates a gallery for a Group.
|
|
7910
8010
|
* @summary Create Group Gallery
|
|
7911
8011
|
* @param {string} groupId Must be a valid group ID.
|
|
7912
|
-
* @param {CreateGroupGalleryRequest}
|
|
8012
|
+
* @param {CreateGroupGalleryRequest} createGroupGalleryRequest
|
|
7913
8013
|
* @param {*} [options] Override http request option.
|
|
7914
8014
|
* @throws {RequiredError}
|
|
7915
8015
|
*/
|
|
7916
|
-
createGroupGallery: (groupId: string, createGroupGalleryRequest
|
|
8016
|
+
createGroupGallery: (groupId: string, createGroupGalleryRequest: CreateGroupGalleryRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7917
8017
|
/**
|
|
7918
8018
|
* Sends an invite to a user to join the group.
|
|
7919
8019
|
* @summary Invite User to Group
|
|
7920
8020
|
* @param {string} groupId Must be a valid group ID.
|
|
7921
|
-
* @param {CreateGroupInviteRequest}
|
|
8021
|
+
* @param {CreateGroupInviteRequest} createGroupInviteRequest
|
|
7922
8022
|
* @param {*} [options] Override http request option.
|
|
7923
8023
|
* @throws {RequiredError}
|
|
7924
8024
|
*/
|
|
7925
|
-
createGroupInvite: (groupId: string, createGroupInviteRequest
|
|
8025
|
+
createGroupInvite: (groupId: string, createGroupInviteRequest: CreateGroupInviteRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7926
8026
|
/**
|
|
7927
8027
|
* Create a Group role.
|
|
7928
8028
|
* @summary Create GroupRole
|
|
7929
8029
|
* @param {string} groupId Must be a valid group ID.
|
|
7930
|
-
* @param {CreateGroupRoleRequest}
|
|
8030
|
+
* @param {CreateGroupRoleRequest} createGroupRoleRequest
|
|
7931
8031
|
* @param {*} [options] Override http request option.
|
|
7932
8032
|
* @throws {RequiredError}
|
|
7933
8033
|
*/
|
|
7934
|
-
createGroupRole: (groupId: string, createGroupRoleRequest
|
|
8034
|
+
createGroupRole: (groupId: string, createGroupRoleRequest: CreateGroupRoleRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7935
8035
|
/**
|
|
7936
8036
|
* Deletes a Group.
|
|
7937
8037
|
* @summary Delete Group
|
|
@@ -8132,11 +8232,11 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8132
8232
|
* @summary Respond Group Join request
|
|
8133
8233
|
* @param {string} groupId Must be a valid group ID.
|
|
8134
8234
|
* @param {string} userId Must be a valid user ID.
|
|
8135
|
-
* @param {RespondGroupJoinRequest}
|
|
8235
|
+
* @param {RespondGroupJoinRequest} respondGroupJoinRequest
|
|
8136
8236
|
* @param {*} [options] Override http request option.
|
|
8137
8237
|
* @throws {RequiredError}
|
|
8138
8238
|
*/
|
|
8139
|
-
respondGroupJoinRequest: (groupId: string, userId: string, respondGroupJoinRequest
|
|
8239
|
+
respondGroupJoinRequest: (groupId: string, userId: string, respondGroupJoinRequest: RespondGroupJoinRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8140
8240
|
/**
|
|
8141
8241
|
* Searches Groups by name or shortCode
|
|
8142
8242
|
* @summary Search Group
|
|
@@ -8206,11 +8306,11 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8206
8306
|
* @summary Add Group Gallery Image
|
|
8207
8307
|
* @param {string} groupId Must be a valid group ID.
|
|
8208
8308
|
* @param {string} groupGalleryId Must be a valid group gallery ID.
|
|
8209
|
-
* @param {AddGroupGalleryImageRequest}
|
|
8309
|
+
* @param {AddGroupGalleryImageRequest} addGroupGalleryImageRequest
|
|
8210
8310
|
* @param {*} [options] Override http request option.
|
|
8211
8311
|
* @throws {RequiredError}
|
|
8212
8312
|
*/
|
|
8213
|
-
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest
|
|
8313
|
+
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest: AddGroupGalleryImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupGalleryImage>>;
|
|
8214
8314
|
/**
|
|
8215
8315
|
* Adds a Role to a Group Member
|
|
8216
8316
|
* @summary Add Role to GroupMember
|
|
@@ -8225,11 +8325,11 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8225
8325
|
* Bans a user from a Group.
|
|
8226
8326
|
* @summary Ban Group Member
|
|
8227
8327
|
* @param {string} groupId Must be a valid group ID.
|
|
8228
|
-
* @param {BanGroupMemberRequest}
|
|
8328
|
+
* @param {BanGroupMemberRequest} banGroupMemberRequest
|
|
8229
8329
|
* @param {*} [options] Override http request option.
|
|
8230
8330
|
* @throws {RequiredError}
|
|
8231
8331
|
*/
|
|
8232
|
-
banGroupMember(groupId: string, banGroupMemberRequest
|
|
8332
|
+
banGroupMember(groupId: string, banGroupMemberRequest: BanGroupMemberRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupMember>>;
|
|
8233
8333
|
/**
|
|
8234
8334
|
* Cancels a request sent to join the group.
|
|
8235
8335
|
* @summary Cancel Group Join Request
|
|
@@ -8241,47 +8341,47 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8241
8341
|
/**
|
|
8242
8342
|
* Creates a Group and returns a Group object. **Requires VRC+ Subscription.**
|
|
8243
8343
|
* @summary Create Group
|
|
8244
|
-
* @param {CreateGroupRequest}
|
|
8344
|
+
* @param {CreateGroupRequest} createGroupRequest
|
|
8245
8345
|
* @param {*} [options] Override http request option.
|
|
8246
8346
|
* @throws {RequiredError}
|
|
8247
8347
|
*/
|
|
8248
|
-
createGroup(createGroupRequest
|
|
8348
|
+
createGroup(createGroupRequest: CreateGroupRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Group>>;
|
|
8249
8349
|
/**
|
|
8250
8350
|
* Creates an Announcement for a Group.
|
|
8251
8351
|
* @summary Create Group Announcement
|
|
8252
8352
|
* @param {string} groupId Must be a valid group ID.
|
|
8253
|
-
* @param {CreateGroupAnnouncementRequest}
|
|
8353
|
+
* @param {CreateGroupAnnouncementRequest} createGroupAnnouncementRequest
|
|
8254
8354
|
* @param {*} [options] Override http request option.
|
|
8255
8355
|
* @throws {RequiredError}
|
|
8256
8356
|
*/
|
|
8257
|
-
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest
|
|
8357
|
+
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest: CreateGroupAnnouncementRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupAnnouncement>>;
|
|
8258
8358
|
/**
|
|
8259
8359
|
* Creates a gallery for a Group.
|
|
8260
8360
|
* @summary Create Group Gallery
|
|
8261
8361
|
* @param {string} groupId Must be a valid group ID.
|
|
8262
|
-
* @param {CreateGroupGalleryRequest}
|
|
8362
|
+
* @param {CreateGroupGalleryRequest} createGroupGalleryRequest
|
|
8263
8363
|
* @param {*} [options] Override http request option.
|
|
8264
8364
|
* @throws {RequiredError}
|
|
8265
8365
|
*/
|
|
8266
|
-
createGroupGallery(groupId: string, createGroupGalleryRequest
|
|
8366
|
+
createGroupGallery(groupId: string, createGroupGalleryRequest: CreateGroupGalleryRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupGallery>>;
|
|
8267
8367
|
/**
|
|
8268
8368
|
* Sends an invite to a user to join the group.
|
|
8269
8369
|
* @summary Invite User to Group
|
|
8270
8370
|
* @param {string} groupId Must be a valid group ID.
|
|
8271
|
-
* @param {CreateGroupInviteRequest}
|
|
8371
|
+
* @param {CreateGroupInviteRequest} createGroupInviteRequest
|
|
8272
8372
|
* @param {*} [options] Override http request option.
|
|
8273
8373
|
* @throws {RequiredError}
|
|
8274
8374
|
*/
|
|
8275
|
-
createGroupInvite(groupId: string, createGroupInviteRequest
|
|
8375
|
+
createGroupInvite(groupId: string, createGroupInviteRequest: CreateGroupInviteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8276
8376
|
/**
|
|
8277
8377
|
* Create a Group role.
|
|
8278
8378
|
* @summary Create GroupRole
|
|
8279
8379
|
* @param {string} groupId Must be a valid group ID.
|
|
8280
|
-
* @param {CreateGroupRoleRequest}
|
|
8380
|
+
* @param {CreateGroupRoleRequest} createGroupRoleRequest
|
|
8281
8381
|
* @param {*} [options] Override http request option.
|
|
8282
8382
|
* @throws {RequiredError}
|
|
8283
8383
|
*/
|
|
8284
|
-
createGroupRole(groupId: string, createGroupRoleRequest
|
|
8384
|
+
createGroupRole(groupId: string, createGroupRoleRequest: CreateGroupRoleRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupRole>>;
|
|
8285
8385
|
/**
|
|
8286
8386
|
* Deletes a Group.
|
|
8287
8387
|
* @summary Delete Group
|
|
@@ -8482,11 +8582,11 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8482
8582
|
* @summary Respond Group Join request
|
|
8483
8583
|
* @param {string} groupId Must be a valid group ID.
|
|
8484
8584
|
* @param {string} userId Must be a valid user ID.
|
|
8485
|
-
* @param {RespondGroupJoinRequest}
|
|
8585
|
+
* @param {RespondGroupJoinRequest} respondGroupJoinRequest
|
|
8486
8586
|
* @param {*} [options] Override http request option.
|
|
8487
8587
|
* @throws {RequiredError}
|
|
8488
8588
|
*/
|
|
8489
|
-
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest
|
|
8589
|
+
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest: RespondGroupJoinRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8490
8590
|
/**
|
|
8491
8591
|
* Searches Groups by name or shortCode
|
|
8492
8592
|
* @summary Search Group
|
|
@@ -8556,11 +8656,11 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8556
8656
|
* @summary Add Group Gallery Image
|
|
8557
8657
|
* @param {string} groupId Must be a valid group ID.
|
|
8558
8658
|
* @param {string} groupGalleryId Must be a valid group gallery ID.
|
|
8559
|
-
* @param {AddGroupGalleryImageRequest}
|
|
8659
|
+
* @param {AddGroupGalleryImageRequest} addGroupGalleryImageRequest
|
|
8560
8660
|
* @param {*} [options] Override http request option.
|
|
8561
8661
|
* @throws {RequiredError}
|
|
8562
8662
|
*/
|
|
8563
|
-
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest
|
|
8663
|
+
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest: AddGroupGalleryImageRequest, options?: any): AxiosPromise<GroupGalleryImage>;
|
|
8564
8664
|
/**
|
|
8565
8665
|
* Adds a Role to a Group Member
|
|
8566
8666
|
* @summary Add Role to GroupMember
|
|
@@ -8575,11 +8675,11 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8575
8675
|
* Bans a user from a Group.
|
|
8576
8676
|
* @summary Ban Group Member
|
|
8577
8677
|
* @param {string} groupId Must be a valid group ID.
|
|
8578
|
-
* @param {BanGroupMemberRequest}
|
|
8678
|
+
* @param {BanGroupMemberRequest} banGroupMemberRequest
|
|
8579
8679
|
* @param {*} [options] Override http request option.
|
|
8580
8680
|
* @throws {RequiredError}
|
|
8581
8681
|
*/
|
|
8582
|
-
banGroupMember(groupId: string, banGroupMemberRequest
|
|
8682
|
+
banGroupMember(groupId: string, banGroupMemberRequest: BanGroupMemberRequest, options?: any): AxiosPromise<GroupMember>;
|
|
8583
8683
|
/**
|
|
8584
8684
|
* Cancels a request sent to join the group.
|
|
8585
8685
|
* @summary Cancel Group Join Request
|
|
@@ -8591,47 +8691,47 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8591
8691
|
/**
|
|
8592
8692
|
* Creates a Group and returns a Group object. **Requires VRC+ Subscription.**
|
|
8593
8693
|
* @summary Create Group
|
|
8594
|
-
* @param {CreateGroupRequest}
|
|
8694
|
+
* @param {CreateGroupRequest} createGroupRequest
|
|
8595
8695
|
* @param {*} [options] Override http request option.
|
|
8596
8696
|
* @throws {RequiredError}
|
|
8597
8697
|
*/
|
|
8598
|
-
createGroup(createGroupRequest
|
|
8698
|
+
createGroup(createGroupRequest: CreateGroupRequest, options?: any): AxiosPromise<Group>;
|
|
8599
8699
|
/**
|
|
8600
8700
|
* Creates an Announcement for a Group.
|
|
8601
8701
|
* @summary Create Group Announcement
|
|
8602
8702
|
* @param {string} groupId Must be a valid group ID.
|
|
8603
|
-
* @param {CreateGroupAnnouncementRequest}
|
|
8703
|
+
* @param {CreateGroupAnnouncementRequest} createGroupAnnouncementRequest
|
|
8604
8704
|
* @param {*} [options] Override http request option.
|
|
8605
8705
|
* @throws {RequiredError}
|
|
8606
8706
|
*/
|
|
8607
|
-
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest
|
|
8707
|
+
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest: CreateGroupAnnouncementRequest, options?: any): AxiosPromise<GroupAnnouncement>;
|
|
8608
8708
|
/**
|
|
8609
8709
|
* Creates a gallery for a Group.
|
|
8610
8710
|
* @summary Create Group Gallery
|
|
8611
8711
|
* @param {string} groupId Must be a valid group ID.
|
|
8612
|
-
* @param {CreateGroupGalleryRequest}
|
|
8712
|
+
* @param {CreateGroupGalleryRequest} createGroupGalleryRequest
|
|
8613
8713
|
* @param {*} [options] Override http request option.
|
|
8614
8714
|
* @throws {RequiredError}
|
|
8615
8715
|
*/
|
|
8616
|
-
createGroupGallery(groupId: string, createGroupGalleryRequest
|
|
8716
|
+
createGroupGallery(groupId: string, createGroupGalleryRequest: CreateGroupGalleryRequest, options?: any): AxiosPromise<GroupGallery>;
|
|
8617
8717
|
/**
|
|
8618
8718
|
* Sends an invite to a user to join the group.
|
|
8619
8719
|
* @summary Invite User to Group
|
|
8620
8720
|
* @param {string} groupId Must be a valid group ID.
|
|
8621
|
-
* @param {CreateGroupInviteRequest}
|
|
8721
|
+
* @param {CreateGroupInviteRequest} createGroupInviteRequest
|
|
8622
8722
|
* @param {*} [options] Override http request option.
|
|
8623
8723
|
* @throws {RequiredError}
|
|
8624
8724
|
*/
|
|
8625
|
-
createGroupInvite(groupId: string, createGroupInviteRequest
|
|
8725
|
+
createGroupInvite(groupId: string, createGroupInviteRequest: CreateGroupInviteRequest, options?: any): AxiosPromise<void>;
|
|
8626
8726
|
/**
|
|
8627
8727
|
* Create a Group role.
|
|
8628
8728
|
* @summary Create GroupRole
|
|
8629
8729
|
* @param {string} groupId Must be a valid group ID.
|
|
8630
|
-
* @param {CreateGroupRoleRequest}
|
|
8730
|
+
* @param {CreateGroupRoleRequest} createGroupRoleRequest
|
|
8631
8731
|
* @param {*} [options] Override http request option.
|
|
8632
8732
|
* @throws {RequiredError}
|
|
8633
8733
|
*/
|
|
8634
|
-
createGroupRole(groupId: string, createGroupRoleRequest
|
|
8734
|
+
createGroupRole(groupId: string, createGroupRoleRequest: CreateGroupRoleRequest, options?: any): AxiosPromise<GroupRole>;
|
|
8635
8735
|
/**
|
|
8636
8736
|
* Deletes a Group.
|
|
8637
8737
|
* @summary Delete Group
|
|
@@ -8832,11 +8932,11 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8832
8932
|
* @summary Respond Group Join request
|
|
8833
8933
|
* @param {string} groupId Must be a valid group ID.
|
|
8834
8934
|
* @param {string} userId Must be a valid user ID.
|
|
8835
|
-
* @param {RespondGroupJoinRequest}
|
|
8935
|
+
* @param {RespondGroupJoinRequest} respondGroupJoinRequest
|
|
8836
8936
|
* @param {*} [options] Override http request option.
|
|
8837
8937
|
* @throws {RequiredError}
|
|
8838
8938
|
*/
|
|
8839
|
-
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest
|
|
8939
|
+
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest: RespondGroupJoinRequest, options?: any): AxiosPromise<void>;
|
|
8840
8940
|
/**
|
|
8841
8941
|
* Searches Groups by name or shortCode
|
|
8842
8942
|
* @summary Search Group
|
|
@@ -8908,12 +9008,12 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
8908
9008
|
* @summary Add Group Gallery Image
|
|
8909
9009
|
* @param {string} groupId Must be a valid group ID.
|
|
8910
9010
|
* @param {string} groupGalleryId Must be a valid group gallery ID.
|
|
8911
|
-
* @param {AddGroupGalleryImageRequest}
|
|
9011
|
+
* @param {AddGroupGalleryImageRequest} addGroupGalleryImageRequest
|
|
8912
9012
|
* @param {*} [options] Override http request option.
|
|
8913
9013
|
* @throws {RequiredError}
|
|
8914
9014
|
* @memberof GroupsApi
|
|
8915
9015
|
*/
|
|
8916
|
-
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest
|
|
9016
|
+
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest: AddGroupGalleryImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupGalleryImage, any>>;
|
|
8917
9017
|
/**
|
|
8918
9018
|
* Adds a Role to a Group Member
|
|
8919
9019
|
* @summary Add Role to GroupMember
|
|
@@ -8929,12 +9029,12 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
8929
9029
|
* Bans a user from a Group.
|
|
8930
9030
|
* @summary Ban Group Member
|
|
8931
9031
|
* @param {string} groupId Must be a valid group ID.
|
|
8932
|
-
* @param {BanGroupMemberRequest}
|
|
9032
|
+
* @param {BanGroupMemberRequest} banGroupMemberRequest
|
|
8933
9033
|
* @param {*} [options] Override http request option.
|
|
8934
9034
|
* @throws {RequiredError}
|
|
8935
9035
|
* @memberof GroupsApi
|
|
8936
9036
|
*/
|
|
8937
|
-
banGroupMember(groupId: string, banGroupMemberRequest
|
|
9037
|
+
banGroupMember(groupId: string, banGroupMemberRequest: BanGroupMemberRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember, any>>;
|
|
8938
9038
|
/**
|
|
8939
9039
|
* Cancels a request sent to join the group.
|
|
8940
9040
|
* @summary Cancel Group Join Request
|
|
@@ -8947,52 +9047,52 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
8947
9047
|
/**
|
|
8948
9048
|
* Creates a Group and returns a Group object. **Requires VRC+ Subscription.**
|
|
8949
9049
|
* @summary Create Group
|
|
8950
|
-
* @param {CreateGroupRequest}
|
|
9050
|
+
* @param {CreateGroupRequest} createGroupRequest
|
|
8951
9051
|
* @param {*} [options] Override http request option.
|
|
8952
9052
|
* @throws {RequiredError}
|
|
8953
9053
|
* @memberof GroupsApi
|
|
8954
9054
|
*/
|
|
8955
|
-
createGroup(createGroupRequest
|
|
9055
|
+
createGroup(createGroupRequest: CreateGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Group, any>>;
|
|
8956
9056
|
/**
|
|
8957
9057
|
* Creates an Announcement for a Group.
|
|
8958
9058
|
* @summary Create Group Announcement
|
|
8959
9059
|
* @param {string} groupId Must be a valid group ID.
|
|
8960
|
-
* @param {CreateGroupAnnouncementRequest}
|
|
9060
|
+
* @param {CreateGroupAnnouncementRequest} createGroupAnnouncementRequest
|
|
8961
9061
|
* @param {*} [options] Override http request option.
|
|
8962
9062
|
* @throws {RequiredError}
|
|
8963
9063
|
* @memberof GroupsApi
|
|
8964
9064
|
*/
|
|
8965
|
-
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest
|
|
9065
|
+
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest: CreateGroupAnnouncementRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupAnnouncement, any>>;
|
|
8966
9066
|
/**
|
|
8967
9067
|
* Creates a gallery for a Group.
|
|
8968
9068
|
* @summary Create Group Gallery
|
|
8969
9069
|
* @param {string} groupId Must be a valid group ID.
|
|
8970
|
-
* @param {CreateGroupGalleryRequest}
|
|
9070
|
+
* @param {CreateGroupGalleryRequest} createGroupGalleryRequest
|
|
8971
9071
|
* @param {*} [options] Override http request option.
|
|
8972
9072
|
* @throws {RequiredError}
|
|
8973
9073
|
* @memberof GroupsApi
|
|
8974
9074
|
*/
|
|
8975
|
-
createGroupGallery(groupId: string, createGroupGalleryRequest
|
|
9075
|
+
createGroupGallery(groupId: string, createGroupGalleryRequest: CreateGroupGalleryRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupGallery, any>>;
|
|
8976
9076
|
/**
|
|
8977
9077
|
* Sends an invite to a user to join the group.
|
|
8978
9078
|
* @summary Invite User to Group
|
|
8979
9079
|
* @param {string} groupId Must be a valid group ID.
|
|
8980
|
-
* @param {CreateGroupInviteRequest}
|
|
9080
|
+
* @param {CreateGroupInviteRequest} createGroupInviteRequest
|
|
8981
9081
|
* @param {*} [options] Override http request option.
|
|
8982
9082
|
* @throws {RequiredError}
|
|
8983
9083
|
* @memberof GroupsApi
|
|
8984
9084
|
*/
|
|
8985
|
-
createGroupInvite(groupId: string, createGroupInviteRequest
|
|
9085
|
+
createGroupInvite(groupId: string, createGroupInviteRequest: CreateGroupInviteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
8986
9086
|
/**
|
|
8987
9087
|
* Create a Group role.
|
|
8988
9088
|
* @summary Create GroupRole
|
|
8989
9089
|
* @param {string} groupId Must be a valid group ID.
|
|
8990
|
-
* @param {CreateGroupRoleRequest}
|
|
9090
|
+
* @param {CreateGroupRoleRequest} createGroupRoleRequest
|
|
8991
9091
|
* @param {*} [options] Override http request option.
|
|
8992
9092
|
* @throws {RequiredError}
|
|
8993
9093
|
* @memberof GroupsApi
|
|
8994
9094
|
*/
|
|
8995
|
-
createGroupRole(groupId: string, createGroupRoleRequest
|
|
9095
|
+
createGroupRole(groupId: string, createGroupRoleRequest: CreateGroupRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupRole, any>>;
|
|
8996
9096
|
/**
|
|
8997
9097
|
* Deletes a Group.
|
|
8998
9098
|
* @summary Delete Group
|
|
@@ -9214,12 +9314,12 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
9214
9314
|
* @summary Respond Group Join request
|
|
9215
9315
|
* @param {string} groupId Must be a valid group ID.
|
|
9216
9316
|
* @param {string} userId Must be a valid user ID.
|
|
9217
|
-
* @param {RespondGroupJoinRequest}
|
|
9317
|
+
* @param {RespondGroupJoinRequest} respondGroupJoinRequest
|
|
9218
9318
|
* @param {*} [options] Override http request option.
|
|
9219
9319
|
* @throws {RequiredError}
|
|
9220
9320
|
* @memberof GroupsApi
|
|
9221
9321
|
*/
|
|
9222
|
-
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest
|
|
9322
|
+
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest: RespondGroupJoinRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
9223
9323
|
/**
|
|
9224
9324
|
* Searches Groups by name or shortCode
|
|
9225
9325
|
* @summary Search Group
|
|
@@ -9290,6 +9390,16 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
9290
9390
|
* @export
|
|
9291
9391
|
*/
|
|
9292
9392
|
export declare const InstancesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
9393
|
+
/**
|
|
9394
|
+
* Close an instance. You can only close an instance if the ownerId is yourself or if the instance owner is a group and you have the `group-instance-moderate` permission.
|
|
9395
|
+
* @summary Close Instance
|
|
9396
|
+
* @param {string} worldId Must be a valid world ID.
|
|
9397
|
+
* @param {string} instanceId Must be a valid instance ID.
|
|
9398
|
+
* @param {boolean} [hardClose] Whether to hard close the instance. Defaults to false.
|
|
9399
|
+
* @param {*} [options] Override http request option.
|
|
9400
|
+
* @throws {RequiredError}
|
|
9401
|
+
*/
|
|
9402
|
+
closeInstance: (worldId: string, instanceId: string, hardClose?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9293
9403
|
/**
|
|
9294
9404
|
* Returns an instance. Please read [Instances Tutorial](https://vrchatapi.github.io/tutorials/instances/) for more information on Instances. If an invalid instanceId is provided, this endpoint will simply return \"null\"!
|
|
9295
9405
|
* @summary Get Instance
|
|
@@ -9331,6 +9441,16 @@ export declare const InstancesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
9331
9441
|
* @export
|
|
9332
9442
|
*/
|
|
9333
9443
|
export declare const InstancesApiFp: (configuration?: Configuration) => {
|
|
9444
|
+
/**
|
|
9445
|
+
* Close an instance. You can only close an instance if the ownerId is yourself or if the instance owner is a group and you have the `group-instance-moderate` permission.
|
|
9446
|
+
* @summary Close Instance
|
|
9447
|
+
* @param {string} worldId Must be a valid world ID.
|
|
9448
|
+
* @param {string} instanceId Must be a valid instance ID.
|
|
9449
|
+
* @param {boolean} [hardClose] Whether to hard close the instance. Defaults to false.
|
|
9450
|
+
* @param {*} [options] Override http request option.
|
|
9451
|
+
* @throws {RequiredError}
|
|
9452
|
+
*/
|
|
9453
|
+
closeInstance(worldId: string, instanceId: string, hardClose?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Instance>>;
|
|
9334
9454
|
/**
|
|
9335
9455
|
* Returns an instance. Please read [Instances Tutorial](https://vrchatapi.github.io/tutorials/instances/) for more information on Instances. If an invalid instanceId is provided, this endpoint will simply return \"null\"!
|
|
9336
9456
|
* @summary Get Instance
|
|
@@ -9372,6 +9492,16 @@ export declare const InstancesApiFp: (configuration?: Configuration) => {
|
|
|
9372
9492
|
* @export
|
|
9373
9493
|
*/
|
|
9374
9494
|
export declare const InstancesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
9495
|
+
/**
|
|
9496
|
+
* Close an instance. You can only close an instance if the ownerId is yourself or if the instance owner is a group and you have the `group-instance-moderate` permission.
|
|
9497
|
+
* @summary Close Instance
|
|
9498
|
+
* @param {string} worldId Must be a valid world ID.
|
|
9499
|
+
* @param {string} instanceId Must be a valid instance ID.
|
|
9500
|
+
* @param {boolean} [hardClose] Whether to hard close the instance. Defaults to false.
|
|
9501
|
+
* @param {*} [options] Override http request option.
|
|
9502
|
+
* @throws {RequiredError}
|
|
9503
|
+
*/
|
|
9504
|
+
closeInstance(worldId: string, instanceId: string, hardClose?: boolean, options?: any): AxiosPromise<Instance>;
|
|
9375
9505
|
/**
|
|
9376
9506
|
* Returns an instance. Please read [Instances Tutorial](https://vrchatapi.github.io/tutorials/instances/) for more information on Instances. If an invalid instanceId is provided, this endpoint will simply return \"null\"!
|
|
9377
9507
|
* @summary Get Instance
|
|
@@ -9415,6 +9545,17 @@ export declare const InstancesApiFactory: (configuration?: Configuration, basePa
|
|
|
9415
9545
|
* @extends {BaseAPI}
|
|
9416
9546
|
*/
|
|
9417
9547
|
export declare class InstancesApi extends BaseAPI {
|
|
9548
|
+
/**
|
|
9549
|
+
* Close an instance. You can only close an instance if the ownerId is yourself or if the instance owner is a group and you have the `group-instance-moderate` permission.
|
|
9550
|
+
* @summary Close Instance
|
|
9551
|
+
* @param {string} worldId Must be a valid world ID.
|
|
9552
|
+
* @param {string} instanceId Must be a valid instance ID.
|
|
9553
|
+
* @param {boolean} [hardClose] Whether to hard close the instance. Defaults to false.
|
|
9554
|
+
* @param {*} [options] Override http request option.
|
|
9555
|
+
* @throws {RequiredError}
|
|
9556
|
+
* @memberof InstancesApi
|
|
9557
|
+
*/
|
|
9558
|
+
closeInstance(worldId: string, instanceId: string, hardClose?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Instance, any>>;
|
|
9418
9559
|
/**
|
|
9419
9560
|
* Returns an instance. Please read [Instances Tutorial](https://vrchatapi.github.io/tutorials/instances/) for more information on Instances. If an invalid instanceId is provided, this endpoint will simply return \"null\"!
|
|
9420
9561
|
* @summary Get Instance
|
|
@@ -9492,11 +9633,11 @@ export declare const InviteApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
9492
9633
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
9493
9634
|
* @summary Invite User
|
|
9494
9635
|
* @param {string} userId Must be a valid user ID.
|
|
9495
|
-
* @param {InviteRequest}
|
|
9636
|
+
* @param {InviteRequest} inviteRequest Slot number of the Invite Message to use when inviting a user.
|
|
9496
9637
|
* @param {*} [options] Override http request option.
|
|
9497
9638
|
* @throws {RequiredError}
|
|
9498
9639
|
*/
|
|
9499
|
-
inviteUser: (userId: string, inviteRequest
|
|
9640
|
+
inviteUser: (userId: string, inviteRequest: InviteRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9500
9641
|
/**
|
|
9501
9642
|
* Requests an invite from a user. Returns the Notification of type `requestInvite` that was sent.
|
|
9502
9643
|
* @summary Request Invite
|
|
@@ -9520,11 +9661,11 @@ export declare const InviteApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
9520
9661
|
* Respond to an invite request by sending a world invite to the requesting user. `:notificationId` is the ID of the requesting notification.
|
|
9521
9662
|
* @summary Respond Invite
|
|
9522
9663
|
* @param {string} notificationId Must be a valid notification ID.
|
|
9523
|
-
* @param {InviteResponse}
|
|
9664
|
+
* @param {InviteResponse} inviteResponse Slot number of the Response Message to use when responding to a user.
|
|
9524
9665
|
* @param {*} [options] Override http request option.
|
|
9525
9666
|
* @throws {RequiredError}
|
|
9526
9667
|
*/
|
|
9527
|
-
respondInvite: (notificationId: string, inviteResponse
|
|
9668
|
+
respondInvite: (notificationId: string, inviteResponse: InviteResponse, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9528
9669
|
/**
|
|
9529
9670
|
* Updates a single Invite Message and then returns a list of all of them. Admin Credentials are required to update messages of other users! Updating a message automatically sets the cooldown timer to 60 minutes. Trying to edit a message before the cooldown timer expires results in a 429 \"Too Fast Error\". Message type refers to a different collection of messages, used during different types of responses. * `message` = Message during a normal invite * `response` = Message when replying to a message * `request` = Message when requesting an invite * `requestResponse` = Message when replying to a request for invite
|
|
9530
9671
|
* @summary Update Invite Message
|
|
@@ -9574,11 +9715,11 @@ export declare const InviteApiFp: (configuration?: Configuration) => {
|
|
|
9574
9715
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
9575
9716
|
* @summary Invite User
|
|
9576
9717
|
* @param {string} userId Must be a valid user ID.
|
|
9577
|
-
* @param {InviteRequest}
|
|
9718
|
+
* @param {InviteRequest} inviteRequest Slot number of the Invite Message to use when inviting a user.
|
|
9578
9719
|
* @param {*} [options] Override http request option.
|
|
9579
9720
|
* @throws {RequiredError}
|
|
9580
9721
|
*/
|
|
9581
|
-
inviteUser(userId: string, inviteRequest
|
|
9722
|
+
inviteUser(userId: string, inviteRequest: InviteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SentNotification>>;
|
|
9582
9723
|
/**
|
|
9583
9724
|
* Requests an invite from a user. Returns the Notification of type `requestInvite` that was sent.
|
|
9584
9725
|
* @summary Request Invite
|
|
@@ -9602,11 +9743,11 @@ export declare const InviteApiFp: (configuration?: Configuration) => {
|
|
|
9602
9743
|
* Respond to an invite request by sending a world invite to the requesting user. `:notificationId` is the ID of the requesting notification.
|
|
9603
9744
|
* @summary Respond Invite
|
|
9604
9745
|
* @param {string} notificationId Must be a valid notification ID.
|
|
9605
|
-
* @param {InviteResponse}
|
|
9746
|
+
* @param {InviteResponse} inviteResponse Slot number of the Response Message to use when responding to a user.
|
|
9606
9747
|
* @param {*} [options] Override http request option.
|
|
9607
9748
|
* @throws {RequiredError}
|
|
9608
9749
|
*/
|
|
9609
|
-
respondInvite(notificationId: string, inviteResponse
|
|
9750
|
+
respondInvite(notificationId: string, inviteResponse: InviteResponse, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Notification>>;
|
|
9610
9751
|
/**
|
|
9611
9752
|
* Updates a single Invite Message and then returns a list of all of them. Admin Credentials are required to update messages of other users! Updating a message automatically sets the cooldown timer to 60 minutes. Trying to edit a message before the cooldown timer expires results in a 429 \"Too Fast Error\". Message type refers to a different collection of messages, used during different types of responses. * `message` = Message during a normal invite * `response` = Message when replying to a message * `request` = Message when requesting an invite * `requestResponse` = Message when replying to a request for invite
|
|
9612
9753
|
* @summary Update Invite Message
|
|
@@ -9656,11 +9797,11 @@ export declare const InviteApiFactory: (configuration?: Configuration, basePath?
|
|
|
9656
9797
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
9657
9798
|
* @summary Invite User
|
|
9658
9799
|
* @param {string} userId Must be a valid user ID.
|
|
9659
|
-
* @param {InviteRequest}
|
|
9800
|
+
* @param {InviteRequest} inviteRequest Slot number of the Invite Message to use when inviting a user.
|
|
9660
9801
|
* @param {*} [options] Override http request option.
|
|
9661
9802
|
* @throws {RequiredError}
|
|
9662
9803
|
*/
|
|
9663
|
-
inviteUser(userId: string, inviteRequest
|
|
9804
|
+
inviteUser(userId: string, inviteRequest: InviteRequest, options?: any): AxiosPromise<SentNotification>;
|
|
9664
9805
|
/**
|
|
9665
9806
|
* Requests an invite from a user. Returns the Notification of type `requestInvite` that was sent.
|
|
9666
9807
|
* @summary Request Invite
|
|
@@ -9684,11 +9825,11 @@ export declare const InviteApiFactory: (configuration?: Configuration, basePath?
|
|
|
9684
9825
|
* Respond to an invite request by sending a world invite to the requesting user. `:notificationId` is the ID of the requesting notification.
|
|
9685
9826
|
* @summary Respond Invite
|
|
9686
9827
|
* @param {string} notificationId Must be a valid notification ID.
|
|
9687
|
-
* @param {InviteResponse}
|
|
9828
|
+
* @param {InviteResponse} inviteResponse Slot number of the Response Message to use when responding to a user.
|
|
9688
9829
|
* @param {*} [options] Override http request option.
|
|
9689
9830
|
* @throws {RequiredError}
|
|
9690
9831
|
*/
|
|
9691
|
-
respondInvite(notificationId: string, inviteResponse
|
|
9832
|
+
respondInvite(notificationId: string, inviteResponse: InviteResponse, options?: any): AxiosPromise<Notification>;
|
|
9692
9833
|
/**
|
|
9693
9834
|
* Updates a single Invite Message and then returns a list of all of them. Admin Credentials are required to update messages of other users! Updating a message automatically sets the cooldown timer to 60 minutes. Trying to edit a message before the cooldown timer expires results in a 429 \"Too Fast Error\". Message type refers to a different collection of messages, used during different types of responses. * `message` = Message during a normal invite * `response` = Message when replying to a message * `request` = Message when requesting an invite * `requestResponse` = Message when replying to a request for invite
|
|
9694
9835
|
* @summary Update Invite Message
|
|
@@ -9743,12 +9884,12 @@ export declare class InviteApi extends BaseAPI {
|
|
|
9743
9884
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
9744
9885
|
* @summary Invite User
|
|
9745
9886
|
* @param {string} userId Must be a valid user ID.
|
|
9746
|
-
* @param {InviteRequest}
|
|
9887
|
+
* @param {InviteRequest} inviteRequest Slot number of the Invite Message to use when inviting a user.
|
|
9747
9888
|
* @param {*} [options] Override http request option.
|
|
9748
9889
|
* @throws {RequiredError}
|
|
9749
9890
|
* @memberof InviteApi
|
|
9750
9891
|
*/
|
|
9751
|
-
inviteUser(userId: string, inviteRequest
|
|
9892
|
+
inviteUser(userId: string, inviteRequest: InviteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SentNotification, any>>;
|
|
9752
9893
|
/**
|
|
9753
9894
|
* Requests an invite from a user. Returns the Notification of type `requestInvite` that was sent.
|
|
9754
9895
|
* @summary Request Invite
|
|
@@ -9774,12 +9915,12 @@ export declare class InviteApi extends BaseAPI {
|
|
|
9774
9915
|
* Respond to an invite request by sending a world invite to the requesting user. `:notificationId` is the ID of the requesting notification.
|
|
9775
9916
|
* @summary Respond Invite
|
|
9776
9917
|
* @param {string} notificationId Must be a valid notification ID.
|
|
9777
|
-
* @param {InviteResponse}
|
|
9918
|
+
* @param {InviteResponse} inviteResponse Slot number of the Response Message to use when responding to a user.
|
|
9778
9919
|
* @param {*} [options] Override http request option.
|
|
9779
9920
|
* @throws {RequiredError}
|
|
9780
9921
|
* @memberof InviteApi
|
|
9781
9922
|
*/
|
|
9782
|
-
respondInvite(notificationId: string, inviteResponse
|
|
9923
|
+
respondInvite(notificationId: string, inviteResponse: InviteResponse, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Notification, any>>;
|
|
9783
9924
|
/**
|
|
9784
9925
|
* Updates a single Invite Message and then returns a list of all of them. Admin Credentials are required to update messages of other users! Updating a message automatically sets the cooldown timer to 60 minutes. Trying to edit a message before the cooldown timer expires results in a 429 \"Too Fast Error\". Message type refers to a different collection of messages, used during different types of responses. * `message` = Message during a normal invite * `response` = Message when replying to a message * `request` = Message when requesting an invite * `requestResponse` = Message when replying to a request for invite
|
|
9785
9926
|
* @summary Update Invite Message
|
|
@@ -10128,19 +10269,19 @@ export declare const PlayermoderationApiAxiosParamCreator: (configuration?: Conf
|
|
|
10128
10269
|
/**
|
|
10129
10270
|
* 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.
|
|
10130
10271
|
* @summary Moderate User
|
|
10131
|
-
* @param {ModerateUserRequest}
|
|
10272
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10132
10273
|
* @param {*} [options] Override http request option.
|
|
10133
10274
|
* @throws {RequiredError}
|
|
10134
10275
|
*/
|
|
10135
|
-
moderateUser: (moderateUserRequest
|
|
10276
|
+
moderateUser: (moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10136
10277
|
/**
|
|
10137
10278
|
* Removes a player moderation previously added through `moderateUser`. E.g if you previously have shown their avatar, but now want to reset it to default.
|
|
10138
10279
|
* @summary Unmoderate User
|
|
10139
|
-
* @param {ModerateUserRequest}
|
|
10280
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10140
10281
|
* @param {*} [options] Override http request option.
|
|
10141
10282
|
* @throws {RequiredError}
|
|
10142
10283
|
*/
|
|
10143
|
-
unmoderateUser: (moderateUserRequest
|
|
10284
|
+
unmoderateUser: (moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10144
10285
|
};
|
|
10145
10286
|
/**
|
|
10146
10287
|
* PlayermoderationApi - functional programming interface
|
|
@@ -10182,19 +10323,19 @@ export declare const PlayermoderationApiFp: (configuration?: Configuration) => {
|
|
|
10182
10323
|
/**
|
|
10183
10324
|
* 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.
|
|
10184
10325
|
* @summary Moderate User
|
|
10185
|
-
* @param {ModerateUserRequest}
|
|
10326
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10186
10327
|
* @param {*} [options] Override http request option.
|
|
10187
10328
|
* @throws {RequiredError}
|
|
10188
10329
|
*/
|
|
10189
|
-
moderateUser(moderateUserRequest
|
|
10330
|
+
moderateUser(moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerModeration>>;
|
|
10190
10331
|
/**
|
|
10191
10332
|
* Removes a player moderation previously added through `moderateUser`. E.g if you previously have shown their avatar, but now want to reset it to default.
|
|
10192
10333
|
* @summary Unmoderate User
|
|
10193
|
-
* @param {ModerateUserRequest}
|
|
10334
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10194
10335
|
* @param {*} [options] Override http request option.
|
|
10195
10336
|
* @throws {RequiredError}
|
|
10196
10337
|
*/
|
|
10197
|
-
unmoderateUser(moderateUserRequest
|
|
10338
|
+
unmoderateUser(moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Success>>;
|
|
10198
10339
|
};
|
|
10199
10340
|
/**
|
|
10200
10341
|
* PlayermoderationApi - factory interface
|
|
@@ -10236,19 +10377,19 @@ export declare const PlayermoderationApiFactory: (configuration?: Configuration,
|
|
|
10236
10377
|
/**
|
|
10237
10378
|
* 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.
|
|
10238
10379
|
* @summary Moderate User
|
|
10239
|
-
* @param {ModerateUserRequest}
|
|
10380
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10240
10381
|
* @param {*} [options] Override http request option.
|
|
10241
10382
|
* @throws {RequiredError}
|
|
10242
10383
|
*/
|
|
10243
|
-
moderateUser(moderateUserRequest
|
|
10384
|
+
moderateUser(moderateUserRequest: ModerateUserRequest, options?: any): AxiosPromise<PlayerModeration>;
|
|
10244
10385
|
/**
|
|
10245
10386
|
* Removes a player moderation previously added through `moderateUser`. E.g if you previously have shown their avatar, but now want to reset it to default.
|
|
10246
10387
|
* @summary Unmoderate User
|
|
10247
|
-
* @param {ModerateUserRequest}
|
|
10388
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10248
10389
|
* @param {*} [options] Override http request option.
|
|
10249
10390
|
* @throws {RequiredError}
|
|
10250
10391
|
*/
|
|
10251
|
-
unmoderateUser(moderateUserRequest
|
|
10392
|
+
unmoderateUser(moderateUserRequest: ModerateUserRequest, options?: any): AxiosPromise<Success>;
|
|
10252
10393
|
};
|
|
10253
10394
|
/**
|
|
10254
10395
|
* PlayermoderationApi - object-oriented interface
|
|
@@ -10296,21 +10437,21 @@ export declare class PlayermoderationApi extends BaseAPI {
|
|
|
10296
10437
|
/**
|
|
10297
10438
|
* 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.
|
|
10298
10439
|
* @summary Moderate User
|
|
10299
|
-
* @param {ModerateUserRequest}
|
|
10440
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10300
10441
|
* @param {*} [options] Override http request option.
|
|
10301
10442
|
* @throws {RequiredError}
|
|
10302
10443
|
* @memberof PlayermoderationApi
|
|
10303
10444
|
*/
|
|
10304
|
-
moderateUser(moderateUserRequest
|
|
10445
|
+
moderateUser(moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerModeration, any>>;
|
|
10305
10446
|
/**
|
|
10306
10447
|
* Removes a player moderation previously added through `moderateUser`. E.g if you previously have shown their avatar, but now want to reset it to default.
|
|
10307
10448
|
* @summary Unmoderate User
|
|
10308
|
-
* @param {ModerateUserRequest}
|
|
10449
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10309
10450
|
* @param {*} [options] Override http request option.
|
|
10310
10451
|
* @throws {RequiredError}
|
|
10311
10452
|
* @memberof PlayermoderationApi
|
|
10312
10453
|
*/
|
|
10313
|
-
unmoderateUser(moderateUserRequest
|
|
10454
|
+
unmoderateUser(moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Success, any>>;
|
|
10314
10455
|
}
|
|
10315
10456
|
/**
|
|
10316
10457
|
* SystemApi - axios parameter creator
|