vrchat 1.16.6 → 1.16.8
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 +272 -147
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +215 -140
- package/dist/api.js +146 -78
- 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.16.
|
|
4
|
+
* The version of the OpenAPI document: 1.16.8
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2542,6 +2542,16 @@ export interface GroupGalleryImage {
|
|
|
2542
2542
|
*/
|
|
2543
2543
|
'approvedAt'?: string;
|
|
2544
2544
|
}
|
|
2545
|
+
/**
|
|
2546
|
+
*
|
|
2547
|
+
* @export
|
|
2548
|
+
* @enum {string}
|
|
2549
|
+
*/
|
|
2550
|
+
export declare const GroupJoinRequestAction: {
|
|
2551
|
+
readonly Accept: "accept";
|
|
2552
|
+
readonly Reject: "reject";
|
|
2553
|
+
};
|
|
2554
|
+
export type GroupJoinRequestAction = typeof GroupJoinRequestAction[keyof typeof GroupJoinRequestAction];
|
|
2545
2555
|
/**
|
|
2546
2556
|
*
|
|
2547
2557
|
* @export
|
|
@@ -2604,10 +2614,10 @@ export interface GroupLimitedMember {
|
|
|
2604
2614
|
'joinedAt'?: string;
|
|
2605
2615
|
/**
|
|
2606
2616
|
*
|
|
2607
|
-
* @type {
|
|
2617
|
+
* @type {GroupMemberStatus}
|
|
2608
2618
|
* @memberof GroupLimitedMember
|
|
2609
2619
|
*/
|
|
2610
|
-
'membershipStatus'?:
|
|
2620
|
+
'membershipStatus'?: GroupMemberStatus;
|
|
2611
2621
|
/**
|
|
2612
2622
|
*
|
|
2613
2623
|
* @type {string}
|
|
@@ -2643,7 +2653,7 @@ export interface GroupLimitedMember {
|
|
|
2643
2653
|
* @type {string}
|
|
2644
2654
|
* @memberof GroupLimitedMember
|
|
2645
2655
|
*/
|
|
2646
|
-
'lastPostReadAt'?: string;
|
|
2656
|
+
'lastPostReadAt'?: string | null;
|
|
2647
2657
|
/**
|
|
2648
2658
|
*
|
|
2649
2659
|
* @type {boolean}
|
|
@@ -2704,13 +2714,13 @@ export interface GroupMember {
|
|
|
2704
2714
|
* @type {string}
|
|
2705
2715
|
* @memberof GroupMember
|
|
2706
2716
|
*/
|
|
2707
|
-
'joinedAt'?: string;
|
|
2717
|
+
'joinedAt'?: string | null;
|
|
2708
2718
|
/**
|
|
2709
2719
|
*
|
|
2710
|
-
* @type {
|
|
2720
|
+
* @type {GroupMemberStatus}
|
|
2711
2721
|
* @memberof GroupMember
|
|
2712
2722
|
*/
|
|
2713
|
-
'membershipStatus'?:
|
|
2723
|
+
'membershipStatus'?: GroupMemberStatus;
|
|
2714
2724
|
/**
|
|
2715
2725
|
*
|
|
2716
2726
|
* @type {string}
|
|
@@ -2746,7 +2756,7 @@ export interface GroupMember {
|
|
|
2746
2756
|
* @type {string}
|
|
2747
2757
|
* @memberof GroupMember
|
|
2748
2758
|
*/
|
|
2749
|
-
'lastPostReadAt'?: string;
|
|
2759
|
+
'lastPostReadAt'?: string | null;
|
|
2750
2760
|
/**
|
|
2751
2761
|
*
|
|
2752
2762
|
* @type {boolean}
|
|
@@ -2795,7 +2805,7 @@ export interface GroupMemberLimitedUser {
|
|
|
2795
2805
|
* @type {string}
|
|
2796
2806
|
* @memberof GroupMemberLimitedUser
|
|
2797
2807
|
*/
|
|
2798
|
-
'currentAvatarThumbnailImageUrl'?: string;
|
|
2808
|
+
'currentAvatarThumbnailImageUrl'?: string | null;
|
|
2799
2809
|
/**
|
|
2800
2810
|
*
|
|
2801
2811
|
* @type {Array<string>}
|
|
@@ -2813,6 +2823,7 @@ export declare const GroupMemberStatus: {
|
|
|
2813
2823
|
readonly Member: "member";
|
|
2814
2824
|
readonly Requested: "requested";
|
|
2815
2825
|
readonly Invited: "invited";
|
|
2826
|
+
readonly Banned: "banned";
|
|
2816
2827
|
};
|
|
2817
2828
|
export type GroupMemberStatus = typeof GroupMemberStatus[keyof typeof GroupMemberStatus];
|
|
2818
2829
|
/**
|
|
@@ -3396,6 +3407,54 @@ export interface Instance {
|
|
|
3396
3407
|
* @memberof Instance
|
|
3397
3408
|
*/
|
|
3398
3409
|
'private'?: string;
|
|
3410
|
+
/**
|
|
3411
|
+
*
|
|
3412
|
+
* @type {boolean}
|
|
3413
|
+
* @memberof Instance
|
|
3414
|
+
*/
|
|
3415
|
+
'queueEnabled': boolean;
|
|
3416
|
+
/**
|
|
3417
|
+
*
|
|
3418
|
+
* @type {number}
|
|
3419
|
+
* @memberof Instance
|
|
3420
|
+
*/
|
|
3421
|
+
'queueSize': number;
|
|
3422
|
+
/**
|
|
3423
|
+
*
|
|
3424
|
+
* @type {number}
|
|
3425
|
+
* @memberof Instance
|
|
3426
|
+
*/
|
|
3427
|
+
'recommendedCapacity': number;
|
|
3428
|
+
/**
|
|
3429
|
+
*
|
|
3430
|
+
* @type {boolean}
|
|
3431
|
+
* @memberof Instance
|
|
3432
|
+
*/
|
|
3433
|
+
'roleRestricted': boolean;
|
|
3434
|
+
/**
|
|
3435
|
+
*
|
|
3436
|
+
* @type {boolean}
|
|
3437
|
+
* @memberof Instance
|
|
3438
|
+
*/
|
|
3439
|
+
'strict': boolean;
|
|
3440
|
+
/**
|
|
3441
|
+
*
|
|
3442
|
+
* @type {number}
|
|
3443
|
+
* @memberof Instance
|
|
3444
|
+
*/
|
|
3445
|
+
'userCount': number;
|
|
3446
|
+
/**
|
|
3447
|
+
*
|
|
3448
|
+
* @type {World}
|
|
3449
|
+
* @memberof Instance
|
|
3450
|
+
*/
|
|
3451
|
+
'world': World;
|
|
3452
|
+
/**
|
|
3453
|
+
* The users field is present on instances created by the requesting user.
|
|
3454
|
+
* @type {Array<LimitedUser>}
|
|
3455
|
+
* @memberof Instance
|
|
3456
|
+
*/
|
|
3457
|
+
'users'?: Array<LimitedUser>;
|
|
3399
3458
|
}
|
|
3400
3459
|
/**
|
|
3401
3460
|
*
|
|
@@ -4462,10 +4521,10 @@ export interface RequestInviteRequest {
|
|
|
4462
4521
|
export interface RespondGroupJoinRequest {
|
|
4463
4522
|
/**
|
|
4464
4523
|
*
|
|
4465
|
-
* @type {
|
|
4524
|
+
* @type {GroupJoinRequestAction}
|
|
4466
4525
|
* @memberof RespondGroupJoinRequest
|
|
4467
4526
|
*/
|
|
4468
|
-
'action'
|
|
4527
|
+
'action': GroupJoinRequestAction;
|
|
4469
4528
|
}
|
|
4470
4529
|
/**
|
|
4471
4530
|
*
|
|
@@ -5877,7 +5936,7 @@ export interface World {
|
|
|
5877
5936
|
* @type {string}
|
|
5878
5937
|
* @memberof World
|
|
5879
5938
|
*/
|
|
5880
|
-
'namespace'
|
|
5939
|
+
'namespace'?: string;
|
|
5881
5940
|
/**
|
|
5882
5941
|
* Will always be `0` when unauthenticated.
|
|
5883
5942
|
* @type {number}
|
|
@@ -6042,19 +6101,19 @@ export declare const AuthenticationApiAxiosParamCreator: (configuration?: Config
|
|
|
6042
6101
|
/**
|
|
6043
6102
|
* Finishes the login sequence with a normal 2FA-generated code for accounts with 2FA-protection enabled.
|
|
6044
6103
|
* @summary Verify 2FA code
|
|
6045
|
-
* @param {TwoFactorAuthCode}
|
|
6104
|
+
* @param {TwoFactorAuthCode} twoFactorAuthCode
|
|
6046
6105
|
* @param {*} [options] Override http request option.
|
|
6047
6106
|
* @throws {RequiredError}
|
|
6048
6107
|
*/
|
|
6049
|
-
verify2FA: (twoFactorAuthCode
|
|
6108
|
+
verify2FA: (twoFactorAuthCode: TwoFactorAuthCode, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6050
6109
|
/**
|
|
6051
6110
|
* Finishes the login sequence with an 2FA email code.
|
|
6052
6111
|
* @summary Verify 2FA email code
|
|
6053
|
-
* @param {TwoFactorEmailCode}
|
|
6112
|
+
* @param {TwoFactorEmailCode} twoFactorEmailCode
|
|
6054
6113
|
* @param {*} [options] Override http request option.
|
|
6055
6114
|
* @throws {RequiredError}
|
|
6056
6115
|
*/
|
|
6057
|
-
verify2FAEmailCode: (twoFactorEmailCode
|
|
6116
|
+
verify2FAEmailCode: (twoFactorEmailCode: TwoFactorEmailCode, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6058
6117
|
/**
|
|
6059
6118
|
* Verify whether the currently provided Auth Token is valid.
|
|
6060
6119
|
* @summary Verify Auth Token
|
|
@@ -6065,11 +6124,11 @@ export declare const AuthenticationApiAxiosParamCreator: (configuration?: Config
|
|
|
6065
6124
|
/**
|
|
6066
6125
|
* Finishes the login sequence with an OTP (One Time Password) recovery code for accounts with 2FA-protection enabled.
|
|
6067
6126
|
* @summary Verify 2FA code with Recovery code
|
|
6068
|
-
* @param {TwoFactorAuthCode}
|
|
6127
|
+
* @param {TwoFactorAuthCode} twoFactorAuthCode
|
|
6069
6128
|
* @param {*} [options] Override http request option.
|
|
6070
6129
|
* @throws {RequiredError}
|
|
6071
6130
|
*/
|
|
6072
|
-
verifyRecoveryCode: (twoFactorAuthCode
|
|
6131
|
+
verifyRecoveryCode: (twoFactorAuthCode: TwoFactorAuthCode, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6073
6132
|
};
|
|
6074
6133
|
/**
|
|
6075
6134
|
* AuthenticationApi - functional programming interface
|
|
@@ -6112,19 +6171,19 @@ export declare const AuthenticationApiFp: (configuration?: Configuration) => {
|
|
|
6112
6171
|
/**
|
|
6113
6172
|
* Finishes the login sequence with a normal 2FA-generated code for accounts with 2FA-protection enabled.
|
|
6114
6173
|
* @summary Verify 2FA code
|
|
6115
|
-
* @param {TwoFactorAuthCode}
|
|
6174
|
+
* @param {TwoFactorAuthCode} twoFactorAuthCode
|
|
6116
6175
|
* @param {*} [options] Override http request option.
|
|
6117
6176
|
* @throws {RequiredError}
|
|
6118
6177
|
*/
|
|
6119
|
-
verify2FA(twoFactorAuthCode
|
|
6178
|
+
verify2FA(twoFactorAuthCode: TwoFactorAuthCode, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Verify2FAResult>>;
|
|
6120
6179
|
/**
|
|
6121
6180
|
* Finishes the login sequence with an 2FA email code.
|
|
6122
6181
|
* @summary Verify 2FA email code
|
|
6123
|
-
* @param {TwoFactorEmailCode}
|
|
6182
|
+
* @param {TwoFactorEmailCode} twoFactorEmailCode
|
|
6124
6183
|
* @param {*} [options] Override http request option.
|
|
6125
6184
|
* @throws {RequiredError}
|
|
6126
6185
|
*/
|
|
6127
|
-
verify2FAEmailCode(twoFactorEmailCode
|
|
6186
|
+
verify2FAEmailCode(twoFactorEmailCode: TwoFactorEmailCode, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Verify2FAEmailCodeResult>>;
|
|
6128
6187
|
/**
|
|
6129
6188
|
* Verify whether the currently provided Auth Token is valid.
|
|
6130
6189
|
* @summary Verify Auth Token
|
|
@@ -6135,11 +6194,11 @@ export declare const AuthenticationApiFp: (configuration?: Configuration) => {
|
|
|
6135
6194
|
/**
|
|
6136
6195
|
* Finishes the login sequence with an OTP (One Time Password) recovery code for accounts with 2FA-protection enabled.
|
|
6137
6196
|
* @summary Verify 2FA code with Recovery code
|
|
6138
|
-
* @param {TwoFactorAuthCode}
|
|
6197
|
+
* @param {TwoFactorAuthCode} twoFactorAuthCode
|
|
6139
6198
|
* @param {*} [options] Override http request option.
|
|
6140
6199
|
* @throws {RequiredError}
|
|
6141
6200
|
*/
|
|
6142
|
-
verifyRecoveryCode(twoFactorAuthCode
|
|
6201
|
+
verifyRecoveryCode(twoFactorAuthCode: TwoFactorAuthCode, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Verify2FAResult>>;
|
|
6143
6202
|
};
|
|
6144
6203
|
/**
|
|
6145
6204
|
* AuthenticationApi - factory interface
|
|
@@ -6182,19 +6241,19 @@ export declare const AuthenticationApiFactory: (configuration?: Configuration, b
|
|
|
6182
6241
|
/**
|
|
6183
6242
|
* Finishes the login sequence with a normal 2FA-generated code for accounts with 2FA-protection enabled.
|
|
6184
6243
|
* @summary Verify 2FA code
|
|
6185
|
-
* @param {TwoFactorAuthCode}
|
|
6244
|
+
* @param {TwoFactorAuthCode} twoFactorAuthCode
|
|
6186
6245
|
* @param {*} [options] Override http request option.
|
|
6187
6246
|
* @throws {RequiredError}
|
|
6188
6247
|
*/
|
|
6189
|
-
verify2FA(twoFactorAuthCode
|
|
6248
|
+
verify2FA(twoFactorAuthCode: TwoFactorAuthCode, options?: any): AxiosPromise<Verify2FAResult>;
|
|
6190
6249
|
/**
|
|
6191
6250
|
* Finishes the login sequence with an 2FA email code.
|
|
6192
6251
|
* @summary Verify 2FA email code
|
|
6193
|
-
* @param {TwoFactorEmailCode}
|
|
6252
|
+
* @param {TwoFactorEmailCode} twoFactorEmailCode
|
|
6194
6253
|
* @param {*} [options] Override http request option.
|
|
6195
6254
|
* @throws {RequiredError}
|
|
6196
6255
|
*/
|
|
6197
|
-
verify2FAEmailCode(twoFactorEmailCode
|
|
6256
|
+
verify2FAEmailCode(twoFactorEmailCode: TwoFactorEmailCode, options?: any): AxiosPromise<Verify2FAEmailCodeResult>;
|
|
6198
6257
|
/**
|
|
6199
6258
|
* Verify whether the currently provided Auth Token is valid.
|
|
6200
6259
|
* @summary Verify Auth Token
|
|
@@ -6205,11 +6264,11 @@ export declare const AuthenticationApiFactory: (configuration?: Configuration, b
|
|
|
6205
6264
|
/**
|
|
6206
6265
|
* Finishes the login sequence with an OTP (One Time Password) recovery code for accounts with 2FA-protection enabled.
|
|
6207
6266
|
* @summary Verify 2FA code with Recovery code
|
|
6208
|
-
* @param {TwoFactorAuthCode}
|
|
6267
|
+
* @param {TwoFactorAuthCode} twoFactorAuthCode
|
|
6209
6268
|
* @param {*} [options] Override http request option.
|
|
6210
6269
|
* @throws {RequiredError}
|
|
6211
6270
|
*/
|
|
6212
|
-
verifyRecoveryCode(twoFactorAuthCode
|
|
6271
|
+
verifyRecoveryCode(twoFactorAuthCode: TwoFactorAuthCode, options?: any): AxiosPromise<Verify2FAResult>;
|
|
6213
6272
|
};
|
|
6214
6273
|
/**
|
|
6215
6274
|
* AuthenticationApi - object-oriented interface
|
|
@@ -6258,21 +6317,21 @@ export declare class AuthenticationApi extends BaseAPI {
|
|
|
6258
6317
|
/**
|
|
6259
6318
|
* Finishes the login sequence with a normal 2FA-generated code for accounts with 2FA-protection enabled.
|
|
6260
6319
|
* @summary Verify 2FA code
|
|
6261
|
-
* @param {TwoFactorAuthCode}
|
|
6320
|
+
* @param {TwoFactorAuthCode} twoFactorAuthCode
|
|
6262
6321
|
* @param {*} [options] Override http request option.
|
|
6263
6322
|
* @throws {RequiredError}
|
|
6264
6323
|
* @memberof AuthenticationApi
|
|
6265
6324
|
*/
|
|
6266
|
-
verify2FA(twoFactorAuthCode
|
|
6325
|
+
verify2FA(twoFactorAuthCode: TwoFactorAuthCode, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Verify2FAResult, any>>;
|
|
6267
6326
|
/**
|
|
6268
6327
|
* Finishes the login sequence with an 2FA email code.
|
|
6269
6328
|
* @summary Verify 2FA email code
|
|
6270
|
-
* @param {TwoFactorEmailCode}
|
|
6329
|
+
* @param {TwoFactorEmailCode} twoFactorEmailCode
|
|
6271
6330
|
* @param {*} [options] Override http request option.
|
|
6272
6331
|
* @throws {RequiredError}
|
|
6273
6332
|
* @memberof AuthenticationApi
|
|
6274
6333
|
*/
|
|
6275
|
-
verify2FAEmailCode(twoFactorEmailCode
|
|
6334
|
+
verify2FAEmailCode(twoFactorEmailCode: TwoFactorEmailCode, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Verify2FAEmailCodeResult, any>>;
|
|
6276
6335
|
/**
|
|
6277
6336
|
* Verify whether the currently provided Auth Token is valid.
|
|
6278
6337
|
* @summary Verify Auth Token
|
|
@@ -6284,12 +6343,12 @@ export declare class AuthenticationApi extends BaseAPI {
|
|
|
6284
6343
|
/**
|
|
6285
6344
|
* Finishes the login sequence with an OTP (One Time Password) recovery code for accounts with 2FA-protection enabled.
|
|
6286
6345
|
* @summary Verify 2FA code with Recovery code
|
|
6287
|
-
* @param {TwoFactorAuthCode}
|
|
6346
|
+
* @param {TwoFactorAuthCode} twoFactorAuthCode
|
|
6288
6347
|
* @param {*} [options] Override http request option.
|
|
6289
6348
|
* @throws {RequiredError}
|
|
6290
6349
|
* @memberof AuthenticationApi
|
|
6291
6350
|
*/
|
|
6292
|
-
verifyRecoveryCode(twoFactorAuthCode
|
|
6351
|
+
verifyRecoveryCode(twoFactorAuthCode: TwoFactorAuthCode, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Verify2FAResult, any>>;
|
|
6293
6352
|
}
|
|
6294
6353
|
/**
|
|
6295
6354
|
* AvatarsApi - axios parameter creator
|
|
@@ -7856,11 +7915,11 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7856
7915
|
* @summary Add Group Gallery Image
|
|
7857
7916
|
* @param {string} groupId Must be a valid group ID.
|
|
7858
7917
|
* @param {string} groupGalleryId Must be a valid group gallery ID.
|
|
7859
|
-
* @param {AddGroupGalleryImageRequest}
|
|
7918
|
+
* @param {AddGroupGalleryImageRequest} addGroupGalleryImageRequest
|
|
7860
7919
|
* @param {*} [options] Override http request option.
|
|
7861
7920
|
* @throws {RequiredError}
|
|
7862
7921
|
*/
|
|
7863
|
-
addGroupGalleryImage: (groupId: string, groupGalleryId: string, addGroupGalleryImageRequest
|
|
7922
|
+
addGroupGalleryImage: (groupId: string, groupGalleryId: string, addGroupGalleryImageRequest: AddGroupGalleryImageRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7864
7923
|
/**
|
|
7865
7924
|
* Adds a Role to a Group Member
|
|
7866
7925
|
* @summary Add Role to GroupMember
|
|
@@ -7875,11 +7934,11 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7875
7934
|
* Bans a user from a Group.
|
|
7876
7935
|
* @summary Ban Group Member
|
|
7877
7936
|
* @param {string} groupId Must be a valid group ID.
|
|
7878
|
-
* @param {BanGroupMemberRequest}
|
|
7937
|
+
* @param {BanGroupMemberRequest} banGroupMemberRequest
|
|
7879
7938
|
* @param {*} [options] Override http request option.
|
|
7880
7939
|
* @throws {RequiredError}
|
|
7881
7940
|
*/
|
|
7882
|
-
banGroupMember: (groupId: string, banGroupMemberRequest
|
|
7941
|
+
banGroupMember: (groupId: string, banGroupMemberRequest: BanGroupMemberRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7883
7942
|
/**
|
|
7884
7943
|
* Cancels a request sent to join the group.
|
|
7885
7944
|
* @summary Cancel Group Join Request
|
|
@@ -7891,47 +7950,47 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7891
7950
|
/**
|
|
7892
7951
|
* Creates a Group and returns a Group object. **Requires VRC+ Subscription.**
|
|
7893
7952
|
* @summary Create Group
|
|
7894
|
-
* @param {CreateGroupRequest}
|
|
7953
|
+
* @param {CreateGroupRequest} createGroupRequest
|
|
7895
7954
|
* @param {*} [options] Override http request option.
|
|
7896
7955
|
* @throws {RequiredError}
|
|
7897
7956
|
*/
|
|
7898
|
-
createGroup: (createGroupRequest
|
|
7957
|
+
createGroup: (createGroupRequest: CreateGroupRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7899
7958
|
/**
|
|
7900
7959
|
* Creates an Announcement for a Group.
|
|
7901
7960
|
* @summary Create Group Announcement
|
|
7902
7961
|
* @param {string} groupId Must be a valid group ID.
|
|
7903
|
-
* @param {CreateGroupAnnouncementRequest}
|
|
7962
|
+
* @param {CreateGroupAnnouncementRequest} createGroupAnnouncementRequest
|
|
7904
7963
|
* @param {*} [options] Override http request option.
|
|
7905
7964
|
* @throws {RequiredError}
|
|
7906
7965
|
*/
|
|
7907
|
-
createGroupAnnouncement: (groupId: string, createGroupAnnouncementRequest
|
|
7966
|
+
createGroupAnnouncement: (groupId: string, createGroupAnnouncementRequest: CreateGroupAnnouncementRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7908
7967
|
/**
|
|
7909
7968
|
* Creates a gallery for a Group.
|
|
7910
7969
|
* @summary Create Group Gallery
|
|
7911
7970
|
* @param {string} groupId Must be a valid group ID.
|
|
7912
|
-
* @param {CreateGroupGalleryRequest}
|
|
7971
|
+
* @param {CreateGroupGalleryRequest} createGroupGalleryRequest
|
|
7913
7972
|
* @param {*} [options] Override http request option.
|
|
7914
7973
|
* @throws {RequiredError}
|
|
7915
7974
|
*/
|
|
7916
|
-
createGroupGallery: (groupId: string, createGroupGalleryRequest
|
|
7975
|
+
createGroupGallery: (groupId: string, createGroupGalleryRequest: CreateGroupGalleryRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7917
7976
|
/**
|
|
7918
7977
|
* Sends an invite to a user to join the group.
|
|
7919
7978
|
* @summary Invite User to Group
|
|
7920
7979
|
* @param {string} groupId Must be a valid group ID.
|
|
7921
|
-
* @param {CreateGroupInviteRequest}
|
|
7980
|
+
* @param {CreateGroupInviteRequest} createGroupInviteRequest
|
|
7922
7981
|
* @param {*} [options] Override http request option.
|
|
7923
7982
|
* @throws {RequiredError}
|
|
7924
7983
|
*/
|
|
7925
|
-
createGroupInvite: (groupId: string, createGroupInviteRequest
|
|
7984
|
+
createGroupInvite: (groupId: string, createGroupInviteRequest: CreateGroupInviteRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7926
7985
|
/**
|
|
7927
7986
|
* Create a Group role.
|
|
7928
7987
|
* @summary Create GroupRole
|
|
7929
7988
|
* @param {string} groupId Must be a valid group ID.
|
|
7930
|
-
* @param {CreateGroupRoleRequest}
|
|
7989
|
+
* @param {CreateGroupRoleRequest} createGroupRoleRequest
|
|
7931
7990
|
* @param {*} [options] Override http request option.
|
|
7932
7991
|
* @throws {RequiredError}
|
|
7933
7992
|
*/
|
|
7934
|
-
createGroupRole: (groupId: string, createGroupRoleRequest
|
|
7993
|
+
createGroupRole: (groupId: string, createGroupRoleRequest: CreateGroupRoleRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7935
7994
|
/**
|
|
7936
7995
|
* Deletes a Group.
|
|
7937
7996
|
* @summary Delete Group
|
|
@@ -8040,10 +8099,12 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8040
8099
|
* Returns a list of members that have been invited to the Group.
|
|
8041
8100
|
* @summary Get Group Invites Sent
|
|
8042
8101
|
* @param {string} groupId Must be a valid group ID.
|
|
8102
|
+
* @param {number} [n] The number of objects to return.
|
|
8103
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8043
8104
|
* @param {*} [options] Override http request option.
|
|
8044
8105
|
* @throws {RequiredError}
|
|
8045
8106
|
*/
|
|
8046
|
-
getGroupInvites: (groupId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8107
|
+
getGroupInvites: (groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8047
8108
|
/**
|
|
8048
8109
|
* Returns a LimitedGroup Member.
|
|
8049
8110
|
* @summary Get Group Member
|
|
@@ -8076,10 +8137,12 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8076
8137
|
* Returns a list of members that have requested to join the Group.
|
|
8077
8138
|
* @summary Get Group Join Requests
|
|
8078
8139
|
* @param {string} groupId Must be a valid group ID.
|
|
8140
|
+
* @param {number} [n] The number of objects to return.
|
|
8141
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8079
8142
|
* @param {*} [options] Override http request option.
|
|
8080
8143
|
* @throws {RequiredError}
|
|
8081
8144
|
*/
|
|
8082
|
-
getGroupRequests: (groupId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8145
|
+
getGroupRequests: (groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8083
8146
|
/**
|
|
8084
8147
|
* Returns a Group Role by ID.
|
|
8085
8148
|
* @summary Get Group Roles
|
|
@@ -8128,11 +8191,11 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8128
8191
|
* @summary Respond Group Join request
|
|
8129
8192
|
* @param {string} groupId Must be a valid group ID.
|
|
8130
8193
|
* @param {string} userId Must be a valid user ID.
|
|
8131
|
-
* @param {RespondGroupJoinRequest}
|
|
8194
|
+
* @param {RespondGroupJoinRequest} respondGroupJoinRequest
|
|
8132
8195
|
* @param {*} [options] Override http request option.
|
|
8133
8196
|
* @throws {RequiredError}
|
|
8134
8197
|
*/
|
|
8135
|
-
respondGroupJoinRequest: (groupId: string, userId: string, respondGroupJoinRequest
|
|
8198
|
+
respondGroupJoinRequest: (groupId: string, userId: string, respondGroupJoinRequest: RespondGroupJoinRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8136
8199
|
/**
|
|
8137
8200
|
* Searches Groups by name or shortCode
|
|
8138
8201
|
* @summary Search Group
|
|
@@ -8202,11 +8265,11 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8202
8265
|
* @summary Add Group Gallery Image
|
|
8203
8266
|
* @param {string} groupId Must be a valid group ID.
|
|
8204
8267
|
* @param {string} groupGalleryId Must be a valid group gallery ID.
|
|
8205
|
-
* @param {AddGroupGalleryImageRequest}
|
|
8268
|
+
* @param {AddGroupGalleryImageRequest} addGroupGalleryImageRequest
|
|
8206
8269
|
* @param {*} [options] Override http request option.
|
|
8207
8270
|
* @throws {RequiredError}
|
|
8208
8271
|
*/
|
|
8209
|
-
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest
|
|
8272
|
+
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest: AddGroupGalleryImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupGalleryImage>>;
|
|
8210
8273
|
/**
|
|
8211
8274
|
* Adds a Role to a Group Member
|
|
8212
8275
|
* @summary Add Role to GroupMember
|
|
@@ -8221,11 +8284,11 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8221
8284
|
* Bans a user from a Group.
|
|
8222
8285
|
* @summary Ban Group Member
|
|
8223
8286
|
* @param {string} groupId Must be a valid group ID.
|
|
8224
|
-
* @param {BanGroupMemberRequest}
|
|
8287
|
+
* @param {BanGroupMemberRequest} banGroupMemberRequest
|
|
8225
8288
|
* @param {*} [options] Override http request option.
|
|
8226
8289
|
* @throws {RequiredError}
|
|
8227
8290
|
*/
|
|
8228
|
-
banGroupMember(groupId: string, banGroupMemberRequest
|
|
8291
|
+
banGroupMember(groupId: string, banGroupMemberRequest: BanGroupMemberRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupMember>>;
|
|
8229
8292
|
/**
|
|
8230
8293
|
* Cancels a request sent to join the group.
|
|
8231
8294
|
* @summary Cancel Group Join Request
|
|
@@ -8237,47 +8300,47 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8237
8300
|
/**
|
|
8238
8301
|
* Creates a Group and returns a Group object. **Requires VRC+ Subscription.**
|
|
8239
8302
|
* @summary Create Group
|
|
8240
|
-
* @param {CreateGroupRequest}
|
|
8303
|
+
* @param {CreateGroupRequest} createGroupRequest
|
|
8241
8304
|
* @param {*} [options] Override http request option.
|
|
8242
8305
|
* @throws {RequiredError}
|
|
8243
8306
|
*/
|
|
8244
|
-
createGroup(createGroupRequest
|
|
8307
|
+
createGroup(createGroupRequest: CreateGroupRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Group>>;
|
|
8245
8308
|
/**
|
|
8246
8309
|
* Creates an Announcement for a Group.
|
|
8247
8310
|
* @summary Create Group Announcement
|
|
8248
8311
|
* @param {string} groupId Must be a valid group ID.
|
|
8249
|
-
* @param {CreateGroupAnnouncementRequest}
|
|
8312
|
+
* @param {CreateGroupAnnouncementRequest} createGroupAnnouncementRequest
|
|
8250
8313
|
* @param {*} [options] Override http request option.
|
|
8251
8314
|
* @throws {RequiredError}
|
|
8252
8315
|
*/
|
|
8253
|
-
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest
|
|
8316
|
+
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest: CreateGroupAnnouncementRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupAnnouncement>>;
|
|
8254
8317
|
/**
|
|
8255
8318
|
* Creates a gallery for a Group.
|
|
8256
8319
|
* @summary Create Group Gallery
|
|
8257
8320
|
* @param {string} groupId Must be a valid group ID.
|
|
8258
|
-
* @param {CreateGroupGalleryRequest}
|
|
8321
|
+
* @param {CreateGroupGalleryRequest} createGroupGalleryRequest
|
|
8259
8322
|
* @param {*} [options] Override http request option.
|
|
8260
8323
|
* @throws {RequiredError}
|
|
8261
8324
|
*/
|
|
8262
|
-
createGroupGallery(groupId: string, createGroupGalleryRequest
|
|
8325
|
+
createGroupGallery(groupId: string, createGroupGalleryRequest: CreateGroupGalleryRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupGallery>>;
|
|
8263
8326
|
/**
|
|
8264
8327
|
* Sends an invite to a user to join the group.
|
|
8265
8328
|
* @summary Invite User to Group
|
|
8266
8329
|
* @param {string} groupId Must be a valid group ID.
|
|
8267
|
-
* @param {CreateGroupInviteRequest}
|
|
8330
|
+
* @param {CreateGroupInviteRequest} createGroupInviteRequest
|
|
8268
8331
|
* @param {*} [options] Override http request option.
|
|
8269
8332
|
* @throws {RequiredError}
|
|
8270
8333
|
*/
|
|
8271
|
-
createGroupInvite(groupId: string, createGroupInviteRequest
|
|
8334
|
+
createGroupInvite(groupId: string, createGroupInviteRequest: CreateGroupInviteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8272
8335
|
/**
|
|
8273
8336
|
* Create a Group role.
|
|
8274
8337
|
* @summary Create GroupRole
|
|
8275
8338
|
* @param {string} groupId Must be a valid group ID.
|
|
8276
|
-
* @param {CreateGroupRoleRequest}
|
|
8339
|
+
* @param {CreateGroupRoleRequest} createGroupRoleRequest
|
|
8277
8340
|
* @param {*} [options] Override http request option.
|
|
8278
8341
|
* @throws {RequiredError}
|
|
8279
8342
|
*/
|
|
8280
|
-
createGroupRole(groupId: string, createGroupRoleRequest
|
|
8343
|
+
createGroupRole(groupId: string, createGroupRoleRequest: CreateGroupRoleRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupRole>>;
|
|
8281
8344
|
/**
|
|
8282
8345
|
* Deletes a Group.
|
|
8283
8346
|
* @summary Delete Group
|
|
@@ -8386,10 +8449,12 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8386
8449
|
* Returns a list of members that have been invited to the Group.
|
|
8387
8450
|
* @summary Get Group Invites Sent
|
|
8388
8451
|
* @param {string} groupId Must be a valid group ID.
|
|
8452
|
+
* @param {number} [n] The number of objects to return.
|
|
8453
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8389
8454
|
* @param {*} [options] Override http request option.
|
|
8390
8455
|
* @throws {RequiredError}
|
|
8391
8456
|
*/
|
|
8392
|
-
getGroupInvites(groupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>>;
|
|
8457
|
+
getGroupInvites(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>>;
|
|
8393
8458
|
/**
|
|
8394
8459
|
* Returns a LimitedGroup Member.
|
|
8395
8460
|
* @summary Get Group Member
|
|
@@ -8422,10 +8487,12 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8422
8487
|
* Returns a list of members that have requested to join the Group.
|
|
8423
8488
|
* @summary Get Group Join Requests
|
|
8424
8489
|
* @param {string} groupId Must be a valid group ID.
|
|
8490
|
+
* @param {number} [n] The number of objects to return.
|
|
8491
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8425
8492
|
* @param {*} [options] Override http request option.
|
|
8426
8493
|
* @throws {RequiredError}
|
|
8427
8494
|
*/
|
|
8428
|
-
getGroupRequests(groupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>>;
|
|
8495
|
+
getGroupRequests(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>>;
|
|
8429
8496
|
/**
|
|
8430
8497
|
* Returns a Group Role by ID.
|
|
8431
8498
|
* @summary Get Group Roles
|
|
@@ -8474,11 +8541,11 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8474
8541
|
* @summary Respond Group Join request
|
|
8475
8542
|
* @param {string} groupId Must be a valid group ID.
|
|
8476
8543
|
* @param {string} userId Must be a valid user ID.
|
|
8477
|
-
* @param {RespondGroupJoinRequest}
|
|
8544
|
+
* @param {RespondGroupJoinRequest} respondGroupJoinRequest
|
|
8478
8545
|
* @param {*} [options] Override http request option.
|
|
8479
8546
|
* @throws {RequiredError}
|
|
8480
8547
|
*/
|
|
8481
|
-
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest
|
|
8548
|
+
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest: RespondGroupJoinRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8482
8549
|
/**
|
|
8483
8550
|
* Searches Groups by name or shortCode
|
|
8484
8551
|
* @summary Search Group
|
|
@@ -8548,11 +8615,11 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8548
8615
|
* @summary Add Group Gallery Image
|
|
8549
8616
|
* @param {string} groupId Must be a valid group ID.
|
|
8550
8617
|
* @param {string} groupGalleryId Must be a valid group gallery ID.
|
|
8551
|
-
* @param {AddGroupGalleryImageRequest}
|
|
8618
|
+
* @param {AddGroupGalleryImageRequest} addGroupGalleryImageRequest
|
|
8552
8619
|
* @param {*} [options] Override http request option.
|
|
8553
8620
|
* @throws {RequiredError}
|
|
8554
8621
|
*/
|
|
8555
|
-
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest
|
|
8622
|
+
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest: AddGroupGalleryImageRequest, options?: any): AxiosPromise<GroupGalleryImage>;
|
|
8556
8623
|
/**
|
|
8557
8624
|
* Adds a Role to a Group Member
|
|
8558
8625
|
* @summary Add Role to GroupMember
|
|
@@ -8567,11 +8634,11 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8567
8634
|
* Bans a user from a Group.
|
|
8568
8635
|
* @summary Ban Group Member
|
|
8569
8636
|
* @param {string} groupId Must be a valid group ID.
|
|
8570
|
-
* @param {BanGroupMemberRequest}
|
|
8637
|
+
* @param {BanGroupMemberRequest} banGroupMemberRequest
|
|
8571
8638
|
* @param {*} [options] Override http request option.
|
|
8572
8639
|
* @throws {RequiredError}
|
|
8573
8640
|
*/
|
|
8574
|
-
banGroupMember(groupId: string, banGroupMemberRequest
|
|
8641
|
+
banGroupMember(groupId: string, banGroupMemberRequest: BanGroupMemberRequest, options?: any): AxiosPromise<GroupMember>;
|
|
8575
8642
|
/**
|
|
8576
8643
|
* Cancels a request sent to join the group.
|
|
8577
8644
|
* @summary Cancel Group Join Request
|
|
@@ -8583,47 +8650,47 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8583
8650
|
/**
|
|
8584
8651
|
* Creates a Group and returns a Group object. **Requires VRC+ Subscription.**
|
|
8585
8652
|
* @summary Create Group
|
|
8586
|
-
* @param {CreateGroupRequest}
|
|
8653
|
+
* @param {CreateGroupRequest} createGroupRequest
|
|
8587
8654
|
* @param {*} [options] Override http request option.
|
|
8588
8655
|
* @throws {RequiredError}
|
|
8589
8656
|
*/
|
|
8590
|
-
createGroup(createGroupRequest
|
|
8657
|
+
createGroup(createGroupRequest: CreateGroupRequest, options?: any): AxiosPromise<Group>;
|
|
8591
8658
|
/**
|
|
8592
8659
|
* Creates an Announcement for a Group.
|
|
8593
8660
|
* @summary Create Group Announcement
|
|
8594
8661
|
* @param {string} groupId Must be a valid group ID.
|
|
8595
|
-
* @param {CreateGroupAnnouncementRequest}
|
|
8662
|
+
* @param {CreateGroupAnnouncementRequest} createGroupAnnouncementRequest
|
|
8596
8663
|
* @param {*} [options] Override http request option.
|
|
8597
8664
|
* @throws {RequiredError}
|
|
8598
8665
|
*/
|
|
8599
|
-
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest
|
|
8666
|
+
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest: CreateGroupAnnouncementRequest, options?: any): AxiosPromise<GroupAnnouncement>;
|
|
8600
8667
|
/**
|
|
8601
8668
|
* Creates a gallery for a Group.
|
|
8602
8669
|
* @summary Create Group Gallery
|
|
8603
8670
|
* @param {string} groupId Must be a valid group ID.
|
|
8604
|
-
* @param {CreateGroupGalleryRequest}
|
|
8671
|
+
* @param {CreateGroupGalleryRequest} createGroupGalleryRequest
|
|
8605
8672
|
* @param {*} [options] Override http request option.
|
|
8606
8673
|
* @throws {RequiredError}
|
|
8607
8674
|
*/
|
|
8608
|
-
createGroupGallery(groupId: string, createGroupGalleryRequest
|
|
8675
|
+
createGroupGallery(groupId: string, createGroupGalleryRequest: CreateGroupGalleryRequest, options?: any): AxiosPromise<GroupGallery>;
|
|
8609
8676
|
/**
|
|
8610
8677
|
* Sends an invite to a user to join the group.
|
|
8611
8678
|
* @summary Invite User to Group
|
|
8612
8679
|
* @param {string} groupId Must be a valid group ID.
|
|
8613
|
-
* @param {CreateGroupInviteRequest}
|
|
8680
|
+
* @param {CreateGroupInviteRequest} createGroupInviteRequest
|
|
8614
8681
|
* @param {*} [options] Override http request option.
|
|
8615
8682
|
* @throws {RequiredError}
|
|
8616
8683
|
*/
|
|
8617
|
-
createGroupInvite(groupId: string, createGroupInviteRequest
|
|
8684
|
+
createGroupInvite(groupId: string, createGroupInviteRequest: CreateGroupInviteRequest, options?: any): AxiosPromise<void>;
|
|
8618
8685
|
/**
|
|
8619
8686
|
* Create a Group role.
|
|
8620
8687
|
* @summary Create GroupRole
|
|
8621
8688
|
* @param {string} groupId Must be a valid group ID.
|
|
8622
|
-
* @param {CreateGroupRoleRequest}
|
|
8689
|
+
* @param {CreateGroupRoleRequest} createGroupRoleRequest
|
|
8623
8690
|
* @param {*} [options] Override http request option.
|
|
8624
8691
|
* @throws {RequiredError}
|
|
8625
8692
|
*/
|
|
8626
|
-
createGroupRole(groupId: string, createGroupRoleRequest
|
|
8693
|
+
createGroupRole(groupId: string, createGroupRoleRequest: CreateGroupRoleRequest, options?: any): AxiosPromise<GroupRole>;
|
|
8627
8694
|
/**
|
|
8628
8695
|
* Deletes a Group.
|
|
8629
8696
|
* @summary Delete Group
|
|
@@ -8732,10 +8799,12 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8732
8799
|
* Returns a list of members that have been invited to the Group.
|
|
8733
8800
|
* @summary Get Group Invites Sent
|
|
8734
8801
|
* @param {string} groupId Must be a valid group ID.
|
|
8802
|
+
* @param {number} [n] The number of objects to return.
|
|
8803
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8735
8804
|
* @param {*} [options] Override http request option.
|
|
8736
8805
|
* @throws {RequiredError}
|
|
8737
8806
|
*/
|
|
8738
|
-
getGroupInvites(groupId: string, options?: any): AxiosPromise<Array<GroupMember>>;
|
|
8807
|
+
getGroupInvites(groupId: string, n?: number, offset?: number, options?: any): AxiosPromise<Array<GroupMember>>;
|
|
8739
8808
|
/**
|
|
8740
8809
|
* Returns a LimitedGroup Member.
|
|
8741
8810
|
* @summary Get Group Member
|
|
@@ -8768,10 +8837,12 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8768
8837
|
* Returns a list of members that have requested to join the Group.
|
|
8769
8838
|
* @summary Get Group Join Requests
|
|
8770
8839
|
* @param {string} groupId Must be a valid group ID.
|
|
8840
|
+
* @param {number} [n] The number of objects to return.
|
|
8841
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8771
8842
|
* @param {*} [options] Override http request option.
|
|
8772
8843
|
* @throws {RequiredError}
|
|
8773
8844
|
*/
|
|
8774
|
-
getGroupRequests(groupId: string, options?: any): AxiosPromise<Array<GroupMember>>;
|
|
8845
|
+
getGroupRequests(groupId: string, n?: number, offset?: number, options?: any): AxiosPromise<Array<GroupMember>>;
|
|
8775
8846
|
/**
|
|
8776
8847
|
* Returns a Group Role by ID.
|
|
8777
8848
|
* @summary Get Group Roles
|
|
@@ -8820,11 +8891,11 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8820
8891
|
* @summary Respond Group Join request
|
|
8821
8892
|
* @param {string} groupId Must be a valid group ID.
|
|
8822
8893
|
* @param {string} userId Must be a valid user ID.
|
|
8823
|
-
* @param {RespondGroupJoinRequest}
|
|
8894
|
+
* @param {RespondGroupJoinRequest} respondGroupJoinRequest
|
|
8824
8895
|
* @param {*} [options] Override http request option.
|
|
8825
8896
|
* @throws {RequiredError}
|
|
8826
8897
|
*/
|
|
8827
|
-
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest
|
|
8898
|
+
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest: RespondGroupJoinRequest, options?: any): AxiosPromise<void>;
|
|
8828
8899
|
/**
|
|
8829
8900
|
* Searches Groups by name or shortCode
|
|
8830
8901
|
* @summary Search Group
|
|
@@ -8896,12 +8967,12 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
8896
8967
|
* @summary Add Group Gallery Image
|
|
8897
8968
|
* @param {string} groupId Must be a valid group ID.
|
|
8898
8969
|
* @param {string} groupGalleryId Must be a valid group gallery ID.
|
|
8899
|
-
* @param {AddGroupGalleryImageRequest}
|
|
8970
|
+
* @param {AddGroupGalleryImageRequest} addGroupGalleryImageRequest
|
|
8900
8971
|
* @param {*} [options] Override http request option.
|
|
8901
8972
|
* @throws {RequiredError}
|
|
8902
8973
|
* @memberof GroupsApi
|
|
8903
8974
|
*/
|
|
8904
|
-
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest
|
|
8975
|
+
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest: AddGroupGalleryImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupGalleryImage, any>>;
|
|
8905
8976
|
/**
|
|
8906
8977
|
* Adds a Role to a Group Member
|
|
8907
8978
|
* @summary Add Role to GroupMember
|
|
@@ -8917,12 +8988,12 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
8917
8988
|
* Bans a user from a Group.
|
|
8918
8989
|
* @summary Ban Group Member
|
|
8919
8990
|
* @param {string} groupId Must be a valid group ID.
|
|
8920
|
-
* @param {BanGroupMemberRequest}
|
|
8991
|
+
* @param {BanGroupMemberRequest} banGroupMemberRequest
|
|
8921
8992
|
* @param {*} [options] Override http request option.
|
|
8922
8993
|
* @throws {RequiredError}
|
|
8923
8994
|
* @memberof GroupsApi
|
|
8924
8995
|
*/
|
|
8925
|
-
banGroupMember(groupId: string, banGroupMemberRequest
|
|
8996
|
+
banGroupMember(groupId: string, banGroupMemberRequest: BanGroupMemberRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember, any>>;
|
|
8926
8997
|
/**
|
|
8927
8998
|
* Cancels a request sent to join the group.
|
|
8928
8999
|
* @summary Cancel Group Join Request
|
|
@@ -8935,52 +9006,52 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
8935
9006
|
/**
|
|
8936
9007
|
* Creates a Group and returns a Group object. **Requires VRC+ Subscription.**
|
|
8937
9008
|
* @summary Create Group
|
|
8938
|
-
* @param {CreateGroupRequest}
|
|
9009
|
+
* @param {CreateGroupRequest} createGroupRequest
|
|
8939
9010
|
* @param {*} [options] Override http request option.
|
|
8940
9011
|
* @throws {RequiredError}
|
|
8941
9012
|
* @memberof GroupsApi
|
|
8942
9013
|
*/
|
|
8943
|
-
createGroup(createGroupRequest
|
|
9014
|
+
createGroup(createGroupRequest: CreateGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Group, any>>;
|
|
8944
9015
|
/**
|
|
8945
9016
|
* Creates an Announcement for a Group.
|
|
8946
9017
|
* @summary Create Group Announcement
|
|
8947
9018
|
* @param {string} groupId Must be a valid group ID.
|
|
8948
|
-
* @param {CreateGroupAnnouncementRequest}
|
|
9019
|
+
* @param {CreateGroupAnnouncementRequest} createGroupAnnouncementRequest
|
|
8949
9020
|
* @param {*} [options] Override http request option.
|
|
8950
9021
|
* @throws {RequiredError}
|
|
8951
9022
|
* @memberof GroupsApi
|
|
8952
9023
|
*/
|
|
8953
|
-
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest
|
|
9024
|
+
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest: CreateGroupAnnouncementRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupAnnouncement, any>>;
|
|
8954
9025
|
/**
|
|
8955
9026
|
* Creates a gallery for a Group.
|
|
8956
9027
|
* @summary Create Group Gallery
|
|
8957
9028
|
* @param {string} groupId Must be a valid group ID.
|
|
8958
|
-
* @param {CreateGroupGalleryRequest}
|
|
9029
|
+
* @param {CreateGroupGalleryRequest} createGroupGalleryRequest
|
|
8959
9030
|
* @param {*} [options] Override http request option.
|
|
8960
9031
|
* @throws {RequiredError}
|
|
8961
9032
|
* @memberof GroupsApi
|
|
8962
9033
|
*/
|
|
8963
|
-
createGroupGallery(groupId: string, createGroupGalleryRequest
|
|
9034
|
+
createGroupGallery(groupId: string, createGroupGalleryRequest: CreateGroupGalleryRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupGallery, any>>;
|
|
8964
9035
|
/**
|
|
8965
9036
|
* Sends an invite to a user to join the group.
|
|
8966
9037
|
* @summary Invite User to Group
|
|
8967
9038
|
* @param {string} groupId Must be a valid group ID.
|
|
8968
|
-
* @param {CreateGroupInviteRequest}
|
|
9039
|
+
* @param {CreateGroupInviteRequest} createGroupInviteRequest
|
|
8969
9040
|
* @param {*} [options] Override http request option.
|
|
8970
9041
|
* @throws {RequiredError}
|
|
8971
9042
|
* @memberof GroupsApi
|
|
8972
9043
|
*/
|
|
8973
|
-
createGroupInvite(groupId: string, createGroupInviteRequest
|
|
9044
|
+
createGroupInvite(groupId: string, createGroupInviteRequest: CreateGroupInviteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
8974
9045
|
/**
|
|
8975
9046
|
* Create a Group role.
|
|
8976
9047
|
* @summary Create GroupRole
|
|
8977
9048
|
* @param {string} groupId Must be a valid group ID.
|
|
8978
|
-
* @param {CreateGroupRoleRequest}
|
|
9049
|
+
* @param {CreateGroupRoleRequest} createGroupRoleRequest
|
|
8979
9050
|
* @param {*} [options] Override http request option.
|
|
8980
9051
|
* @throws {RequiredError}
|
|
8981
9052
|
* @memberof GroupsApi
|
|
8982
9053
|
*/
|
|
8983
|
-
createGroupRole(groupId: string, createGroupRoleRequest
|
|
9054
|
+
createGroupRole(groupId: string, createGroupRoleRequest: CreateGroupRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupRole, any>>;
|
|
8984
9055
|
/**
|
|
8985
9056
|
* Deletes a Group.
|
|
8986
9057
|
* @summary Delete Group
|
|
@@ -9100,11 +9171,13 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
9100
9171
|
* Returns a list of members that have been invited to the Group.
|
|
9101
9172
|
* @summary Get Group Invites Sent
|
|
9102
9173
|
* @param {string} groupId Must be a valid group ID.
|
|
9174
|
+
* @param {number} [n] The number of objects to return.
|
|
9175
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
9103
9176
|
* @param {*} [options] Override http request option.
|
|
9104
9177
|
* @throws {RequiredError}
|
|
9105
9178
|
* @memberof GroupsApi
|
|
9106
9179
|
*/
|
|
9107
|
-
getGroupInvites(groupId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember[], any>>;
|
|
9180
|
+
getGroupInvites(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember[], any>>;
|
|
9108
9181
|
/**
|
|
9109
9182
|
* Returns a LimitedGroup Member.
|
|
9110
9183
|
* @summary Get Group Member
|
|
@@ -9140,11 +9213,13 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
9140
9213
|
* Returns a list of members that have requested to join the Group.
|
|
9141
9214
|
* @summary Get Group Join Requests
|
|
9142
9215
|
* @param {string} groupId Must be a valid group ID.
|
|
9216
|
+
* @param {number} [n] The number of objects to return.
|
|
9217
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
9143
9218
|
* @param {*} [options] Override http request option.
|
|
9144
9219
|
* @throws {RequiredError}
|
|
9145
9220
|
* @memberof GroupsApi
|
|
9146
9221
|
*/
|
|
9147
|
-
getGroupRequests(groupId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember[], any>>;
|
|
9222
|
+
getGroupRequests(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember[], any>>;
|
|
9148
9223
|
/**
|
|
9149
9224
|
* Returns a Group Role by ID.
|
|
9150
9225
|
* @summary Get Group Roles
|
|
@@ -9198,12 +9273,12 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
9198
9273
|
* @summary Respond Group Join request
|
|
9199
9274
|
* @param {string} groupId Must be a valid group ID.
|
|
9200
9275
|
* @param {string} userId Must be a valid user ID.
|
|
9201
|
-
* @param {RespondGroupJoinRequest}
|
|
9276
|
+
* @param {RespondGroupJoinRequest} respondGroupJoinRequest
|
|
9202
9277
|
* @param {*} [options] Override http request option.
|
|
9203
9278
|
* @throws {RequiredError}
|
|
9204
9279
|
* @memberof GroupsApi
|
|
9205
9280
|
*/
|
|
9206
|
-
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest
|
|
9281
|
+
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest: RespondGroupJoinRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
9207
9282
|
/**
|
|
9208
9283
|
* Searches Groups by name or shortCode
|
|
9209
9284
|
* @summary Search Group
|
|
@@ -9476,11 +9551,11 @@ export declare const InviteApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
9476
9551
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
9477
9552
|
* @summary Invite User
|
|
9478
9553
|
* @param {string} userId Must be a valid user ID.
|
|
9479
|
-
* @param {InviteRequest}
|
|
9554
|
+
* @param {InviteRequest} inviteRequest Slot number of the Invite Message to use when inviting a user.
|
|
9480
9555
|
* @param {*} [options] Override http request option.
|
|
9481
9556
|
* @throws {RequiredError}
|
|
9482
9557
|
*/
|
|
9483
|
-
inviteUser: (userId: string, inviteRequest
|
|
9558
|
+
inviteUser: (userId: string, inviteRequest: InviteRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9484
9559
|
/**
|
|
9485
9560
|
* Requests an invite from a user. Returns the Notification of type `requestInvite` that was sent.
|
|
9486
9561
|
* @summary Request Invite
|
|
@@ -9504,11 +9579,11 @@ export declare const InviteApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
9504
9579
|
* Respond to an invite request by sending a world invite to the requesting user. `:notificationId` is the ID of the requesting notification.
|
|
9505
9580
|
* @summary Respond Invite
|
|
9506
9581
|
* @param {string} notificationId Must be a valid notification ID.
|
|
9507
|
-
* @param {InviteResponse}
|
|
9582
|
+
* @param {InviteResponse} inviteResponse Slot number of the Response Message to use when responding to a user.
|
|
9508
9583
|
* @param {*} [options] Override http request option.
|
|
9509
9584
|
* @throws {RequiredError}
|
|
9510
9585
|
*/
|
|
9511
|
-
respondInvite: (notificationId: string, inviteResponse
|
|
9586
|
+
respondInvite: (notificationId: string, inviteResponse: InviteResponse, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9512
9587
|
/**
|
|
9513
9588
|
* 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
|
|
9514
9589
|
* @summary Update Invite Message
|
|
@@ -9558,11 +9633,11 @@ export declare const InviteApiFp: (configuration?: Configuration) => {
|
|
|
9558
9633
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
9559
9634
|
* @summary Invite User
|
|
9560
9635
|
* @param {string} userId Must be a valid user ID.
|
|
9561
|
-
* @param {InviteRequest}
|
|
9636
|
+
* @param {InviteRequest} inviteRequest Slot number of the Invite Message to use when inviting a user.
|
|
9562
9637
|
* @param {*} [options] Override http request option.
|
|
9563
9638
|
* @throws {RequiredError}
|
|
9564
9639
|
*/
|
|
9565
|
-
inviteUser(userId: string, inviteRequest
|
|
9640
|
+
inviteUser(userId: string, inviteRequest: InviteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SentNotification>>;
|
|
9566
9641
|
/**
|
|
9567
9642
|
* Requests an invite from a user. Returns the Notification of type `requestInvite` that was sent.
|
|
9568
9643
|
* @summary Request Invite
|
|
@@ -9586,11 +9661,11 @@ export declare const InviteApiFp: (configuration?: Configuration) => {
|
|
|
9586
9661
|
* Respond to an invite request by sending a world invite to the requesting user. `:notificationId` is the ID of the requesting notification.
|
|
9587
9662
|
* @summary Respond Invite
|
|
9588
9663
|
* @param {string} notificationId Must be a valid notification ID.
|
|
9589
|
-
* @param {InviteResponse}
|
|
9664
|
+
* @param {InviteResponse} inviteResponse Slot number of the Response Message to use when responding to a user.
|
|
9590
9665
|
* @param {*} [options] Override http request option.
|
|
9591
9666
|
* @throws {RequiredError}
|
|
9592
9667
|
*/
|
|
9593
|
-
respondInvite(notificationId: string, inviteResponse
|
|
9668
|
+
respondInvite(notificationId: string, inviteResponse: InviteResponse, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Notification>>;
|
|
9594
9669
|
/**
|
|
9595
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
|
|
9596
9671
|
* @summary Update Invite Message
|
|
@@ -9640,11 +9715,11 @@ export declare const InviteApiFactory: (configuration?: Configuration, basePath?
|
|
|
9640
9715
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
9641
9716
|
* @summary Invite User
|
|
9642
9717
|
* @param {string} userId Must be a valid user ID.
|
|
9643
|
-
* @param {InviteRequest}
|
|
9718
|
+
* @param {InviteRequest} inviteRequest Slot number of the Invite Message to use when inviting a user.
|
|
9644
9719
|
* @param {*} [options] Override http request option.
|
|
9645
9720
|
* @throws {RequiredError}
|
|
9646
9721
|
*/
|
|
9647
|
-
inviteUser(userId: string, inviteRequest
|
|
9722
|
+
inviteUser(userId: string, inviteRequest: InviteRequest, options?: any): AxiosPromise<SentNotification>;
|
|
9648
9723
|
/**
|
|
9649
9724
|
* Requests an invite from a user. Returns the Notification of type `requestInvite` that was sent.
|
|
9650
9725
|
* @summary Request Invite
|
|
@@ -9668,11 +9743,11 @@ export declare const InviteApiFactory: (configuration?: Configuration, basePath?
|
|
|
9668
9743
|
* Respond to an invite request by sending a world invite to the requesting user. `:notificationId` is the ID of the requesting notification.
|
|
9669
9744
|
* @summary Respond Invite
|
|
9670
9745
|
* @param {string} notificationId Must be a valid notification ID.
|
|
9671
|
-
* @param {InviteResponse}
|
|
9746
|
+
* @param {InviteResponse} inviteResponse Slot number of the Response Message to use when responding to a user.
|
|
9672
9747
|
* @param {*} [options] Override http request option.
|
|
9673
9748
|
* @throws {RequiredError}
|
|
9674
9749
|
*/
|
|
9675
|
-
respondInvite(notificationId: string, inviteResponse
|
|
9750
|
+
respondInvite(notificationId: string, inviteResponse: InviteResponse, options?: any): AxiosPromise<Notification>;
|
|
9676
9751
|
/**
|
|
9677
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
|
|
9678
9753
|
* @summary Update Invite Message
|
|
@@ -9727,12 +9802,12 @@ export declare class InviteApi extends BaseAPI {
|
|
|
9727
9802
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
9728
9803
|
* @summary Invite User
|
|
9729
9804
|
* @param {string} userId Must be a valid user ID.
|
|
9730
|
-
* @param {InviteRequest}
|
|
9805
|
+
* @param {InviteRequest} inviteRequest Slot number of the Invite Message to use when inviting a user.
|
|
9731
9806
|
* @param {*} [options] Override http request option.
|
|
9732
9807
|
* @throws {RequiredError}
|
|
9733
9808
|
* @memberof InviteApi
|
|
9734
9809
|
*/
|
|
9735
|
-
inviteUser(userId: string, inviteRequest
|
|
9810
|
+
inviteUser(userId: string, inviteRequest: InviteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SentNotification, any>>;
|
|
9736
9811
|
/**
|
|
9737
9812
|
* Requests an invite from a user. Returns the Notification of type `requestInvite` that was sent.
|
|
9738
9813
|
* @summary Request Invite
|
|
@@ -9758,12 +9833,12 @@ export declare class InviteApi extends BaseAPI {
|
|
|
9758
9833
|
* Respond to an invite request by sending a world invite to the requesting user. `:notificationId` is the ID of the requesting notification.
|
|
9759
9834
|
* @summary Respond Invite
|
|
9760
9835
|
* @param {string} notificationId Must be a valid notification ID.
|
|
9761
|
-
* @param {InviteResponse}
|
|
9836
|
+
* @param {InviteResponse} inviteResponse Slot number of the Response Message to use when responding to a user.
|
|
9762
9837
|
* @param {*} [options] Override http request option.
|
|
9763
9838
|
* @throws {RequiredError}
|
|
9764
9839
|
* @memberof InviteApi
|
|
9765
9840
|
*/
|
|
9766
|
-
respondInvite(notificationId: string, inviteResponse
|
|
9841
|
+
respondInvite(notificationId: string, inviteResponse: InviteResponse, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Notification, any>>;
|
|
9767
9842
|
/**
|
|
9768
9843
|
* 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
|
|
9769
9844
|
* @summary Update Invite Message
|
|
@@ -10112,19 +10187,19 @@ export declare const PlayermoderationApiAxiosParamCreator: (configuration?: Conf
|
|
|
10112
10187
|
/**
|
|
10113
10188
|
* 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.
|
|
10114
10189
|
* @summary Moderate User
|
|
10115
|
-
* @param {ModerateUserRequest}
|
|
10190
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10116
10191
|
* @param {*} [options] Override http request option.
|
|
10117
10192
|
* @throws {RequiredError}
|
|
10118
10193
|
*/
|
|
10119
|
-
moderateUser: (moderateUserRequest
|
|
10194
|
+
moderateUser: (moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10120
10195
|
/**
|
|
10121
10196
|
* 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.
|
|
10122
10197
|
* @summary Unmoderate User
|
|
10123
|
-
* @param {ModerateUserRequest}
|
|
10198
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10124
10199
|
* @param {*} [options] Override http request option.
|
|
10125
10200
|
* @throws {RequiredError}
|
|
10126
10201
|
*/
|
|
10127
|
-
unmoderateUser: (moderateUserRequest
|
|
10202
|
+
unmoderateUser: (moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10128
10203
|
};
|
|
10129
10204
|
/**
|
|
10130
10205
|
* PlayermoderationApi - functional programming interface
|
|
@@ -10166,19 +10241,19 @@ export declare const PlayermoderationApiFp: (configuration?: Configuration) => {
|
|
|
10166
10241
|
/**
|
|
10167
10242
|
* 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.
|
|
10168
10243
|
* @summary Moderate User
|
|
10169
|
-
* @param {ModerateUserRequest}
|
|
10244
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10170
10245
|
* @param {*} [options] Override http request option.
|
|
10171
10246
|
* @throws {RequiredError}
|
|
10172
10247
|
*/
|
|
10173
|
-
moderateUser(moderateUserRequest
|
|
10248
|
+
moderateUser(moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerModeration>>;
|
|
10174
10249
|
/**
|
|
10175
10250
|
* 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.
|
|
10176
10251
|
* @summary Unmoderate User
|
|
10177
|
-
* @param {ModerateUserRequest}
|
|
10252
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10178
10253
|
* @param {*} [options] Override http request option.
|
|
10179
10254
|
* @throws {RequiredError}
|
|
10180
10255
|
*/
|
|
10181
|
-
unmoderateUser(moderateUserRequest
|
|
10256
|
+
unmoderateUser(moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Success>>;
|
|
10182
10257
|
};
|
|
10183
10258
|
/**
|
|
10184
10259
|
* PlayermoderationApi - factory interface
|
|
@@ -10220,19 +10295,19 @@ export declare const PlayermoderationApiFactory: (configuration?: Configuration,
|
|
|
10220
10295
|
/**
|
|
10221
10296
|
* 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.
|
|
10222
10297
|
* @summary Moderate User
|
|
10223
|
-
* @param {ModerateUserRequest}
|
|
10298
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10224
10299
|
* @param {*} [options] Override http request option.
|
|
10225
10300
|
* @throws {RequiredError}
|
|
10226
10301
|
*/
|
|
10227
|
-
moderateUser(moderateUserRequest
|
|
10302
|
+
moderateUser(moderateUserRequest: ModerateUserRequest, options?: any): AxiosPromise<PlayerModeration>;
|
|
10228
10303
|
/**
|
|
10229
10304
|
* 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.
|
|
10230
10305
|
* @summary Unmoderate User
|
|
10231
|
-
* @param {ModerateUserRequest}
|
|
10306
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10232
10307
|
* @param {*} [options] Override http request option.
|
|
10233
10308
|
* @throws {RequiredError}
|
|
10234
10309
|
*/
|
|
10235
|
-
unmoderateUser(moderateUserRequest
|
|
10310
|
+
unmoderateUser(moderateUserRequest: ModerateUserRequest, options?: any): AxiosPromise<Success>;
|
|
10236
10311
|
};
|
|
10237
10312
|
/**
|
|
10238
10313
|
* PlayermoderationApi - object-oriented interface
|
|
@@ -10280,21 +10355,21 @@ export declare class PlayermoderationApi extends BaseAPI {
|
|
|
10280
10355
|
/**
|
|
10281
10356
|
* 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.
|
|
10282
10357
|
* @summary Moderate User
|
|
10283
|
-
* @param {ModerateUserRequest}
|
|
10358
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10284
10359
|
* @param {*} [options] Override http request option.
|
|
10285
10360
|
* @throws {RequiredError}
|
|
10286
10361
|
* @memberof PlayermoderationApi
|
|
10287
10362
|
*/
|
|
10288
|
-
moderateUser(moderateUserRequest
|
|
10363
|
+
moderateUser(moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerModeration, any>>;
|
|
10289
10364
|
/**
|
|
10290
10365
|
* 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.
|
|
10291
10366
|
* @summary Unmoderate User
|
|
10292
|
-
* @param {ModerateUserRequest}
|
|
10367
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10293
10368
|
* @param {*} [options] Override http request option.
|
|
10294
10369
|
* @throws {RequiredError}
|
|
10295
10370
|
* @memberof PlayermoderationApi
|
|
10296
10371
|
*/
|
|
10297
|
-
unmoderateUser(moderateUserRequest
|
|
10372
|
+
unmoderateUser(moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Success, any>>;
|
|
10298
10373
|
}
|
|
10299
10374
|
/**
|
|
10300
10375
|
* SystemApi - axios parameter creator
|