vrchat 1.16.7 → 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 +224 -131
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +189 -130
- package/dist/api.js +104 -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.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}
|
|
@@ -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}
|
|
@@ -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
|
|
@@ -8132,11 +8191,11 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8132
8191
|
* @summary Respond Group Join request
|
|
8133
8192
|
* @param {string} groupId Must be a valid group ID.
|
|
8134
8193
|
* @param {string} userId Must be a valid user ID.
|
|
8135
|
-
* @param {RespondGroupJoinRequest}
|
|
8194
|
+
* @param {RespondGroupJoinRequest} respondGroupJoinRequest
|
|
8136
8195
|
* @param {*} [options] Override http request option.
|
|
8137
8196
|
* @throws {RequiredError}
|
|
8138
8197
|
*/
|
|
8139
|
-
respondGroupJoinRequest: (groupId: string, userId: string, respondGroupJoinRequest
|
|
8198
|
+
respondGroupJoinRequest: (groupId: string, userId: string, respondGroupJoinRequest: RespondGroupJoinRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8140
8199
|
/**
|
|
8141
8200
|
* Searches Groups by name or shortCode
|
|
8142
8201
|
* @summary Search Group
|
|
@@ -8206,11 +8265,11 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8206
8265
|
* @summary Add Group Gallery Image
|
|
8207
8266
|
* @param {string} groupId Must be a valid group ID.
|
|
8208
8267
|
* @param {string} groupGalleryId Must be a valid group gallery ID.
|
|
8209
|
-
* @param {AddGroupGalleryImageRequest}
|
|
8268
|
+
* @param {AddGroupGalleryImageRequest} addGroupGalleryImageRequest
|
|
8210
8269
|
* @param {*} [options] Override http request option.
|
|
8211
8270
|
* @throws {RequiredError}
|
|
8212
8271
|
*/
|
|
8213
|
-
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest
|
|
8272
|
+
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest: AddGroupGalleryImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupGalleryImage>>;
|
|
8214
8273
|
/**
|
|
8215
8274
|
* Adds a Role to a Group Member
|
|
8216
8275
|
* @summary Add Role to GroupMember
|
|
@@ -8225,11 +8284,11 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8225
8284
|
* Bans a user from a Group.
|
|
8226
8285
|
* @summary Ban Group Member
|
|
8227
8286
|
* @param {string} groupId Must be a valid group ID.
|
|
8228
|
-
* @param {BanGroupMemberRequest}
|
|
8287
|
+
* @param {BanGroupMemberRequest} banGroupMemberRequest
|
|
8229
8288
|
* @param {*} [options] Override http request option.
|
|
8230
8289
|
* @throws {RequiredError}
|
|
8231
8290
|
*/
|
|
8232
|
-
banGroupMember(groupId: string, banGroupMemberRequest
|
|
8291
|
+
banGroupMember(groupId: string, banGroupMemberRequest: BanGroupMemberRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupMember>>;
|
|
8233
8292
|
/**
|
|
8234
8293
|
* Cancels a request sent to join the group.
|
|
8235
8294
|
* @summary Cancel Group Join Request
|
|
@@ -8241,47 +8300,47 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8241
8300
|
/**
|
|
8242
8301
|
* Creates a Group and returns a Group object. **Requires VRC+ Subscription.**
|
|
8243
8302
|
* @summary Create Group
|
|
8244
|
-
* @param {CreateGroupRequest}
|
|
8303
|
+
* @param {CreateGroupRequest} createGroupRequest
|
|
8245
8304
|
* @param {*} [options] Override http request option.
|
|
8246
8305
|
* @throws {RequiredError}
|
|
8247
8306
|
*/
|
|
8248
|
-
createGroup(createGroupRequest
|
|
8307
|
+
createGroup(createGroupRequest: CreateGroupRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Group>>;
|
|
8249
8308
|
/**
|
|
8250
8309
|
* Creates an Announcement for a Group.
|
|
8251
8310
|
* @summary Create Group Announcement
|
|
8252
8311
|
* @param {string} groupId Must be a valid group ID.
|
|
8253
|
-
* @param {CreateGroupAnnouncementRequest}
|
|
8312
|
+
* @param {CreateGroupAnnouncementRequest} createGroupAnnouncementRequest
|
|
8254
8313
|
* @param {*} [options] Override http request option.
|
|
8255
8314
|
* @throws {RequiredError}
|
|
8256
8315
|
*/
|
|
8257
|
-
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest
|
|
8316
|
+
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest: CreateGroupAnnouncementRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupAnnouncement>>;
|
|
8258
8317
|
/**
|
|
8259
8318
|
* Creates a gallery for a Group.
|
|
8260
8319
|
* @summary Create Group Gallery
|
|
8261
8320
|
* @param {string} groupId Must be a valid group ID.
|
|
8262
|
-
* @param {CreateGroupGalleryRequest}
|
|
8321
|
+
* @param {CreateGroupGalleryRequest} createGroupGalleryRequest
|
|
8263
8322
|
* @param {*} [options] Override http request option.
|
|
8264
8323
|
* @throws {RequiredError}
|
|
8265
8324
|
*/
|
|
8266
|
-
createGroupGallery(groupId: string, createGroupGalleryRequest
|
|
8325
|
+
createGroupGallery(groupId: string, createGroupGalleryRequest: CreateGroupGalleryRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupGallery>>;
|
|
8267
8326
|
/**
|
|
8268
8327
|
* Sends an invite to a user to join the group.
|
|
8269
8328
|
* @summary Invite User to Group
|
|
8270
8329
|
* @param {string} groupId Must be a valid group ID.
|
|
8271
|
-
* @param {CreateGroupInviteRequest}
|
|
8330
|
+
* @param {CreateGroupInviteRequest} createGroupInviteRequest
|
|
8272
8331
|
* @param {*} [options] Override http request option.
|
|
8273
8332
|
* @throws {RequiredError}
|
|
8274
8333
|
*/
|
|
8275
|
-
createGroupInvite(groupId: string, createGroupInviteRequest
|
|
8334
|
+
createGroupInvite(groupId: string, createGroupInviteRequest: CreateGroupInviteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8276
8335
|
/**
|
|
8277
8336
|
* Create a Group role.
|
|
8278
8337
|
* @summary Create GroupRole
|
|
8279
8338
|
* @param {string} groupId Must be a valid group ID.
|
|
8280
|
-
* @param {CreateGroupRoleRequest}
|
|
8339
|
+
* @param {CreateGroupRoleRequest} createGroupRoleRequest
|
|
8281
8340
|
* @param {*} [options] Override http request option.
|
|
8282
8341
|
* @throws {RequiredError}
|
|
8283
8342
|
*/
|
|
8284
|
-
createGroupRole(groupId: string, createGroupRoleRequest
|
|
8343
|
+
createGroupRole(groupId: string, createGroupRoleRequest: CreateGroupRoleRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupRole>>;
|
|
8285
8344
|
/**
|
|
8286
8345
|
* Deletes a Group.
|
|
8287
8346
|
* @summary Delete Group
|
|
@@ -8482,11 +8541,11 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8482
8541
|
* @summary Respond Group Join request
|
|
8483
8542
|
* @param {string} groupId Must be a valid group ID.
|
|
8484
8543
|
* @param {string} userId Must be a valid user ID.
|
|
8485
|
-
* @param {RespondGroupJoinRequest}
|
|
8544
|
+
* @param {RespondGroupJoinRequest} respondGroupJoinRequest
|
|
8486
8545
|
* @param {*} [options] Override http request option.
|
|
8487
8546
|
* @throws {RequiredError}
|
|
8488
8547
|
*/
|
|
8489
|
-
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest
|
|
8548
|
+
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest: RespondGroupJoinRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8490
8549
|
/**
|
|
8491
8550
|
* Searches Groups by name or shortCode
|
|
8492
8551
|
* @summary Search Group
|
|
@@ -8556,11 +8615,11 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8556
8615
|
* @summary Add Group Gallery Image
|
|
8557
8616
|
* @param {string} groupId Must be a valid group ID.
|
|
8558
8617
|
* @param {string} groupGalleryId Must be a valid group gallery ID.
|
|
8559
|
-
* @param {AddGroupGalleryImageRequest}
|
|
8618
|
+
* @param {AddGroupGalleryImageRequest} addGroupGalleryImageRequest
|
|
8560
8619
|
* @param {*} [options] Override http request option.
|
|
8561
8620
|
* @throws {RequiredError}
|
|
8562
8621
|
*/
|
|
8563
|
-
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest
|
|
8622
|
+
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest: AddGroupGalleryImageRequest, options?: any): AxiosPromise<GroupGalleryImage>;
|
|
8564
8623
|
/**
|
|
8565
8624
|
* Adds a Role to a Group Member
|
|
8566
8625
|
* @summary Add Role to GroupMember
|
|
@@ -8575,11 +8634,11 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8575
8634
|
* Bans a user from a Group.
|
|
8576
8635
|
* @summary Ban Group Member
|
|
8577
8636
|
* @param {string} groupId Must be a valid group ID.
|
|
8578
|
-
* @param {BanGroupMemberRequest}
|
|
8637
|
+
* @param {BanGroupMemberRequest} banGroupMemberRequest
|
|
8579
8638
|
* @param {*} [options] Override http request option.
|
|
8580
8639
|
* @throws {RequiredError}
|
|
8581
8640
|
*/
|
|
8582
|
-
banGroupMember(groupId: string, banGroupMemberRequest
|
|
8641
|
+
banGroupMember(groupId: string, banGroupMemberRequest: BanGroupMemberRequest, options?: any): AxiosPromise<GroupMember>;
|
|
8583
8642
|
/**
|
|
8584
8643
|
* Cancels a request sent to join the group.
|
|
8585
8644
|
* @summary Cancel Group Join Request
|
|
@@ -8591,47 +8650,47 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8591
8650
|
/**
|
|
8592
8651
|
* Creates a Group and returns a Group object. **Requires VRC+ Subscription.**
|
|
8593
8652
|
* @summary Create Group
|
|
8594
|
-
* @param {CreateGroupRequest}
|
|
8653
|
+
* @param {CreateGroupRequest} createGroupRequest
|
|
8595
8654
|
* @param {*} [options] Override http request option.
|
|
8596
8655
|
* @throws {RequiredError}
|
|
8597
8656
|
*/
|
|
8598
|
-
createGroup(createGroupRequest
|
|
8657
|
+
createGroup(createGroupRequest: CreateGroupRequest, options?: any): AxiosPromise<Group>;
|
|
8599
8658
|
/**
|
|
8600
8659
|
* Creates an Announcement for a Group.
|
|
8601
8660
|
* @summary Create Group Announcement
|
|
8602
8661
|
* @param {string} groupId Must be a valid group ID.
|
|
8603
|
-
* @param {CreateGroupAnnouncementRequest}
|
|
8662
|
+
* @param {CreateGroupAnnouncementRequest} createGroupAnnouncementRequest
|
|
8604
8663
|
* @param {*} [options] Override http request option.
|
|
8605
8664
|
* @throws {RequiredError}
|
|
8606
8665
|
*/
|
|
8607
|
-
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest
|
|
8666
|
+
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest: CreateGroupAnnouncementRequest, options?: any): AxiosPromise<GroupAnnouncement>;
|
|
8608
8667
|
/**
|
|
8609
8668
|
* Creates a gallery for a Group.
|
|
8610
8669
|
* @summary Create Group Gallery
|
|
8611
8670
|
* @param {string} groupId Must be a valid group ID.
|
|
8612
|
-
* @param {CreateGroupGalleryRequest}
|
|
8671
|
+
* @param {CreateGroupGalleryRequest} createGroupGalleryRequest
|
|
8613
8672
|
* @param {*} [options] Override http request option.
|
|
8614
8673
|
* @throws {RequiredError}
|
|
8615
8674
|
*/
|
|
8616
|
-
createGroupGallery(groupId: string, createGroupGalleryRequest
|
|
8675
|
+
createGroupGallery(groupId: string, createGroupGalleryRequest: CreateGroupGalleryRequest, options?: any): AxiosPromise<GroupGallery>;
|
|
8617
8676
|
/**
|
|
8618
8677
|
* Sends an invite to a user to join the group.
|
|
8619
8678
|
* @summary Invite User to Group
|
|
8620
8679
|
* @param {string} groupId Must be a valid group ID.
|
|
8621
|
-
* @param {CreateGroupInviteRequest}
|
|
8680
|
+
* @param {CreateGroupInviteRequest} createGroupInviteRequest
|
|
8622
8681
|
* @param {*} [options] Override http request option.
|
|
8623
8682
|
* @throws {RequiredError}
|
|
8624
8683
|
*/
|
|
8625
|
-
createGroupInvite(groupId: string, createGroupInviteRequest
|
|
8684
|
+
createGroupInvite(groupId: string, createGroupInviteRequest: CreateGroupInviteRequest, options?: any): AxiosPromise<void>;
|
|
8626
8685
|
/**
|
|
8627
8686
|
* Create a Group role.
|
|
8628
8687
|
* @summary Create GroupRole
|
|
8629
8688
|
* @param {string} groupId Must be a valid group ID.
|
|
8630
|
-
* @param {CreateGroupRoleRequest}
|
|
8689
|
+
* @param {CreateGroupRoleRequest} createGroupRoleRequest
|
|
8631
8690
|
* @param {*} [options] Override http request option.
|
|
8632
8691
|
* @throws {RequiredError}
|
|
8633
8692
|
*/
|
|
8634
|
-
createGroupRole(groupId: string, createGroupRoleRequest
|
|
8693
|
+
createGroupRole(groupId: string, createGroupRoleRequest: CreateGroupRoleRequest, options?: any): AxiosPromise<GroupRole>;
|
|
8635
8694
|
/**
|
|
8636
8695
|
* Deletes a Group.
|
|
8637
8696
|
* @summary Delete Group
|
|
@@ -8832,11 +8891,11 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8832
8891
|
* @summary Respond Group Join request
|
|
8833
8892
|
* @param {string} groupId Must be a valid group ID.
|
|
8834
8893
|
* @param {string} userId Must be a valid user ID.
|
|
8835
|
-
* @param {RespondGroupJoinRequest}
|
|
8894
|
+
* @param {RespondGroupJoinRequest} respondGroupJoinRequest
|
|
8836
8895
|
* @param {*} [options] Override http request option.
|
|
8837
8896
|
* @throws {RequiredError}
|
|
8838
8897
|
*/
|
|
8839
|
-
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest
|
|
8898
|
+
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest: RespondGroupJoinRequest, options?: any): AxiosPromise<void>;
|
|
8840
8899
|
/**
|
|
8841
8900
|
* Searches Groups by name or shortCode
|
|
8842
8901
|
* @summary Search Group
|
|
@@ -8908,12 +8967,12 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
8908
8967
|
* @summary Add Group Gallery Image
|
|
8909
8968
|
* @param {string} groupId Must be a valid group ID.
|
|
8910
8969
|
* @param {string} groupGalleryId Must be a valid group gallery ID.
|
|
8911
|
-
* @param {AddGroupGalleryImageRequest}
|
|
8970
|
+
* @param {AddGroupGalleryImageRequest} addGroupGalleryImageRequest
|
|
8912
8971
|
* @param {*} [options] Override http request option.
|
|
8913
8972
|
* @throws {RequiredError}
|
|
8914
8973
|
* @memberof GroupsApi
|
|
8915
8974
|
*/
|
|
8916
|
-
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest
|
|
8975
|
+
addGroupGalleryImage(groupId: string, groupGalleryId: string, addGroupGalleryImageRequest: AddGroupGalleryImageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupGalleryImage, any>>;
|
|
8917
8976
|
/**
|
|
8918
8977
|
* Adds a Role to a Group Member
|
|
8919
8978
|
* @summary Add Role to GroupMember
|
|
@@ -8929,12 +8988,12 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
8929
8988
|
* Bans a user from a Group.
|
|
8930
8989
|
* @summary Ban Group Member
|
|
8931
8990
|
* @param {string} groupId Must be a valid group ID.
|
|
8932
|
-
* @param {BanGroupMemberRequest}
|
|
8991
|
+
* @param {BanGroupMemberRequest} banGroupMemberRequest
|
|
8933
8992
|
* @param {*} [options] Override http request option.
|
|
8934
8993
|
* @throws {RequiredError}
|
|
8935
8994
|
* @memberof GroupsApi
|
|
8936
8995
|
*/
|
|
8937
|
-
banGroupMember(groupId: string, banGroupMemberRequest
|
|
8996
|
+
banGroupMember(groupId: string, banGroupMemberRequest: BanGroupMemberRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember, any>>;
|
|
8938
8997
|
/**
|
|
8939
8998
|
* Cancels a request sent to join the group.
|
|
8940
8999
|
* @summary Cancel Group Join Request
|
|
@@ -8947,52 +9006,52 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
8947
9006
|
/**
|
|
8948
9007
|
* Creates a Group and returns a Group object. **Requires VRC+ Subscription.**
|
|
8949
9008
|
* @summary Create Group
|
|
8950
|
-
* @param {CreateGroupRequest}
|
|
9009
|
+
* @param {CreateGroupRequest} createGroupRequest
|
|
8951
9010
|
* @param {*} [options] Override http request option.
|
|
8952
9011
|
* @throws {RequiredError}
|
|
8953
9012
|
* @memberof GroupsApi
|
|
8954
9013
|
*/
|
|
8955
|
-
createGroup(createGroupRequest
|
|
9014
|
+
createGroup(createGroupRequest: CreateGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Group, any>>;
|
|
8956
9015
|
/**
|
|
8957
9016
|
* Creates an Announcement for a Group.
|
|
8958
9017
|
* @summary Create Group Announcement
|
|
8959
9018
|
* @param {string} groupId Must be a valid group ID.
|
|
8960
|
-
* @param {CreateGroupAnnouncementRequest}
|
|
9019
|
+
* @param {CreateGroupAnnouncementRequest} createGroupAnnouncementRequest
|
|
8961
9020
|
* @param {*} [options] Override http request option.
|
|
8962
9021
|
* @throws {RequiredError}
|
|
8963
9022
|
* @memberof GroupsApi
|
|
8964
9023
|
*/
|
|
8965
|
-
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest
|
|
9024
|
+
createGroupAnnouncement(groupId: string, createGroupAnnouncementRequest: CreateGroupAnnouncementRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupAnnouncement, any>>;
|
|
8966
9025
|
/**
|
|
8967
9026
|
* Creates a gallery for a Group.
|
|
8968
9027
|
* @summary Create Group Gallery
|
|
8969
9028
|
* @param {string} groupId Must be a valid group ID.
|
|
8970
|
-
* @param {CreateGroupGalleryRequest}
|
|
9029
|
+
* @param {CreateGroupGalleryRequest} createGroupGalleryRequest
|
|
8971
9030
|
* @param {*} [options] Override http request option.
|
|
8972
9031
|
* @throws {RequiredError}
|
|
8973
9032
|
* @memberof GroupsApi
|
|
8974
9033
|
*/
|
|
8975
|
-
createGroupGallery(groupId: string, createGroupGalleryRequest
|
|
9034
|
+
createGroupGallery(groupId: string, createGroupGalleryRequest: CreateGroupGalleryRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupGallery, any>>;
|
|
8976
9035
|
/**
|
|
8977
9036
|
* Sends an invite to a user to join the group.
|
|
8978
9037
|
* @summary Invite User to Group
|
|
8979
9038
|
* @param {string} groupId Must be a valid group ID.
|
|
8980
|
-
* @param {CreateGroupInviteRequest}
|
|
9039
|
+
* @param {CreateGroupInviteRequest} createGroupInviteRequest
|
|
8981
9040
|
* @param {*} [options] Override http request option.
|
|
8982
9041
|
* @throws {RequiredError}
|
|
8983
9042
|
* @memberof GroupsApi
|
|
8984
9043
|
*/
|
|
8985
|
-
createGroupInvite(groupId: string, createGroupInviteRequest
|
|
9044
|
+
createGroupInvite(groupId: string, createGroupInviteRequest: CreateGroupInviteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
8986
9045
|
/**
|
|
8987
9046
|
* Create a Group role.
|
|
8988
9047
|
* @summary Create GroupRole
|
|
8989
9048
|
* @param {string} groupId Must be a valid group ID.
|
|
8990
|
-
* @param {CreateGroupRoleRequest}
|
|
9049
|
+
* @param {CreateGroupRoleRequest} createGroupRoleRequest
|
|
8991
9050
|
* @param {*} [options] Override http request option.
|
|
8992
9051
|
* @throws {RequiredError}
|
|
8993
9052
|
* @memberof GroupsApi
|
|
8994
9053
|
*/
|
|
8995
|
-
createGroupRole(groupId: string, createGroupRoleRequest
|
|
9054
|
+
createGroupRole(groupId: string, createGroupRoleRequest: CreateGroupRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupRole, any>>;
|
|
8996
9055
|
/**
|
|
8997
9056
|
* Deletes a Group.
|
|
8998
9057
|
* @summary Delete Group
|
|
@@ -9214,12 +9273,12 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
9214
9273
|
* @summary Respond Group Join request
|
|
9215
9274
|
* @param {string} groupId Must be a valid group ID.
|
|
9216
9275
|
* @param {string} userId Must be a valid user ID.
|
|
9217
|
-
* @param {RespondGroupJoinRequest}
|
|
9276
|
+
* @param {RespondGroupJoinRequest} respondGroupJoinRequest
|
|
9218
9277
|
* @param {*} [options] Override http request option.
|
|
9219
9278
|
* @throws {RequiredError}
|
|
9220
9279
|
* @memberof GroupsApi
|
|
9221
9280
|
*/
|
|
9222
|
-
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest
|
|
9281
|
+
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest: RespondGroupJoinRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
9223
9282
|
/**
|
|
9224
9283
|
* Searches Groups by name or shortCode
|
|
9225
9284
|
* @summary Search Group
|
|
@@ -9492,11 +9551,11 @@ export declare const InviteApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
9492
9551
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
9493
9552
|
* @summary Invite User
|
|
9494
9553
|
* @param {string} userId Must be a valid user ID.
|
|
9495
|
-
* @param {InviteRequest}
|
|
9554
|
+
* @param {InviteRequest} inviteRequest Slot number of the Invite Message to use when inviting a user.
|
|
9496
9555
|
* @param {*} [options] Override http request option.
|
|
9497
9556
|
* @throws {RequiredError}
|
|
9498
9557
|
*/
|
|
9499
|
-
inviteUser: (userId: string, inviteRequest
|
|
9558
|
+
inviteUser: (userId: string, inviteRequest: InviteRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9500
9559
|
/**
|
|
9501
9560
|
* Requests an invite from a user. Returns the Notification of type `requestInvite` that was sent.
|
|
9502
9561
|
* @summary Request Invite
|
|
@@ -9520,11 +9579,11 @@ export declare const InviteApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
9520
9579
|
* Respond to an invite request by sending a world invite to the requesting user. `:notificationId` is the ID of the requesting notification.
|
|
9521
9580
|
* @summary Respond Invite
|
|
9522
9581
|
* @param {string} notificationId Must be a valid notification ID.
|
|
9523
|
-
* @param {InviteResponse}
|
|
9582
|
+
* @param {InviteResponse} inviteResponse Slot number of the Response Message to use when responding to a user.
|
|
9524
9583
|
* @param {*} [options] Override http request option.
|
|
9525
9584
|
* @throws {RequiredError}
|
|
9526
9585
|
*/
|
|
9527
|
-
respondInvite: (notificationId: string, inviteResponse
|
|
9586
|
+
respondInvite: (notificationId: string, inviteResponse: InviteResponse, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9528
9587
|
/**
|
|
9529
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
|
|
9530
9589
|
* @summary Update Invite Message
|
|
@@ -9574,11 +9633,11 @@ export declare const InviteApiFp: (configuration?: Configuration) => {
|
|
|
9574
9633
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
9575
9634
|
* @summary Invite User
|
|
9576
9635
|
* @param {string} userId Must be a valid user ID.
|
|
9577
|
-
* @param {InviteRequest}
|
|
9636
|
+
* @param {InviteRequest} inviteRequest Slot number of the Invite Message to use when inviting a user.
|
|
9578
9637
|
* @param {*} [options] Override http request option.
|
|
9579
9638
|
* @throws {RequiredError}
|
|
9580
9639
|
*/
|
|
9581
|
-
inviteUser(userId: string, inviteRequest
|
|
9640
|
+
inviteUser(userId: string, inviteRequest: InviteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SentNotification>>;
|
|
9582
9641
|
/**
|
|
9583
9642
|
* Requests an invite from a user. Returns the Notification of type `requestInvite` that was sent.
|
|
9584
9643
|
* @summary Request Invite
|
|
@@ -9602,11 +9661,11 @@ export declare const InviteApiFp: (configuration?: Configuration) => {
|
|
|
9602
9661
|
* Respond to an invite request by sending a world invite to the requesting user. `:notificationId` is the ID of the requesting notification.
|
|
9603
9662
|
* @summary Respond Invite
|
|
9604
9663
|
* @param {string} notificationId Must be a valid notification ID.
|
|
9605
|
-
* @param {InviteResponse}
|
|
9664
|
+
* @param {InviteResponse} inviteResponse Slot number of the Response Message to use when responding to a user.
|
|
9606
9665
|
* @param {*} [options] Override http request option.
|
|
9607
9666
|
* @throws {RequiredError}
|
|
9608
9667
|
*/
|
|
9609
|
-
respondInvite(notificationId: string, inviteResponse
|
|
9668
|
+
respondInvite(notificationId: string, inviteResponse: InviteResponse, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Notification>>;
|
|
9610
9669
|
/**
|
|
9611
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
|
|
9612
9671
|
* @summary Update Invite Message
|
|
@@ -9656,11 +9715,11 @@ export declare const InviteApiFactory: (configuration?: Configuration, basePath?
|
|
|
9656
9715
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
9657
9716
|
* @summary Invite User
|
|
9658
9717
|
* @param {string} userId Must be a valid user ID.
|
|
9659
|
-
* @param {InviteRequest}
|
|
9718
|
+
* @param {InviteRequest} inviteRequest Slot number of the Invite Message to use when inviting a user.
|
|
9660
9719
|
* @param {*} [options] Override http request option.
|
|
9661
9720
|
* @throws {RequiredError}
|
|
9662
9721
|
*/
|
|
9663
|
-
inviteUser(userId: string, inviteRequest
|
|
9722
|
+
inviteUser(userId: string, inviteRequest: InviteRequest, options?: any): AxiosPromise<SentNotification>;
|
|
9664
9723
|
/**
|
|
9665
9724
|
* Requests an invite from a user. Returns the Notification of type `requestInvite` that was sent.
|
|
9666
9725
|
* @summary Request Invite
|
|
@@ -9684,11 +9743,11 @@ export declare const InviteApiFactory: (configuration?: Configuration, basePath?
|
|
|
9684
9743
|
* Respond to an invite request by sending a world invite to the requesting user. `:notificationId` is the ID of the requesting notification.
|
|
9685
9744
|
* @summary Respond Invite
|
|
9686
9745
|
* @param {string} notificationId Must be a valid notification ID.
|
|
9687
|
-
* @param {InviteResponse}
|
|
9746
|
+
* @param {InviteResponse} inviteResponse Slot number of the Response Message to use when responding to a user.
|
|
9688
9747
|
* @param {*} [options] Override http request option.
|
|
9689
9748
|
* @throws {RequiredError}
|
|
9690
9749
|
*/
|
|
9691
|
-
respondInvite(notificationId: string, inviteResponse
|
|
9750
|
+
respondInvite(notificationId: string, inviteResponse: InviteResponse, options?: any): AxiosPromise<Notification>;
|
|
9692
9751
|
/**
|
|
9693
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
|
|
9694
9753
|
* @summary Update Invite Message
|
|
@@ -9743,12 +9802,12 @@ export declare class InviteApi extends BaseAPI {
|
|
|
9743
9802
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
9744
9803
|
* @summary Invite User
|
|
9745
9804
|
* @param {string} userId Must be a valid user ID.
|
|
9746
|
-
* @param {InviteRequest}
|
|
9805
|
+
* @param {InviteRequest} inviteRequest Slot number of the Invite Message to use when inviting a user.
|
|
9747
9806
|
* @param {*} [options] Override http request option.
|
|
9748
9807
|
* @throws {RequiredError}
|
|
9749
9808
|
* @memberof InviteApi
|
|
9750
9809
|
*/
|
|
9751
|
-
inviteUser(userId: string, inviteRequest
|
|
9810
|
+
inviteUser(userId: string, inviteRequest: InviteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SentNotification, any>>;
|
|
9752
9811
|
/**
|
|
9753
9812
|
* Requests an invite from a user. Returns the Notification of type `requestInvite` that was sent.
|
|
9754
9813
|
* @summary Request Invite
|
|
@@ -9774,12 +9833,12 @@ export declare class InviteApi extends BaseAPI {
|
|
|
9774
9833
|
* Respond to an invite request by sending a world invite to the requesting user. `:notificationId` is the ID of the requesting notification.
|
|
9775
9834
|
* @summary Respond Invite
|
|
9776
9835
|
* @param {string} notificationId Must be a valid notification ID.
|
|
9777
|
-
* @param {InviteResponse}
|
|
9836
|
+
* @param {InviteResponse} inviteResponse Slot number of the Response Message to use when responding to a user.
|
|
9778
9837
|
* @param {*} [options] Override http request option.
|
|
9779
9838
|
* @throws {RequiredError}
|
|
9780
9839
|
* @memberof InviteApi
|
|
9781
9840
|
*/
|
|
9782
|
-
respondInvite(notificationId: string, inviteResponse
|
|
9841
|
+
respondInvite(notificationId: string, inviteResponse: InviteResponse, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Notification, any>>;
|
|
9783
9842
|
/**
|
|
9784
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
|
|
9785
9844
|
* @summary Update Invite Message
|
|
@@ -10128,19 +10187,19 @@ export declare const PlayermoderationApiAxiosParamCreator: (configuration?: Conf
|
|
|
10128
10187
|
/**
|
|
10129
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.
|
|
10130
10189
|
* @summary Moderate User
|
|
10131
|
-
* @param {ModerateUserRequest}
|
|
10190
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10132
10191
|
* @param {*} [options] Override http request option.
|
|
10133
10192
|
* @throws {RequiredError}
|
|
10134
10193
|
*/
|
|
10135
|
-
moderateUser: (moderateUserRequest
|
|
10194
|
+
moderateUser: (moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10136
10195
|
/**
|
|
10137
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.
|
|
10138
10197
|
* @summary Unmoderate User
|
|
10139
|
-
* @param {ModerateUserRequest}
|
|
10198
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10140
10199
|
* @param {*} [options] Override http request option.
|
|
10141
10200
|
* @throws {RequiredError}
|
|
10142
10201
|
*/
|
|
10143
|
-
unmoderateUser: (moderateUserRequest
|
|
10202
|
+
unmoderateUser: (moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10144
10203
|
};
|
|
10145
10204
|
/**
|
|
10146
10205
|
* PlayermoderationApi - functional programming interface
|
|
@@ -10182,19 +10241,19 @@ export declare const PlayermoderationApiFp: (configuration?: Configuration) => {
|
|
|
10182
10241
|
/**
|
|
10183
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.
|
|
10184
10243
|
* @summary Moderate User
|
|
10185
|
-
* @param {ModerateUserRequest}
|
|
10244
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10186
10245
|
* @param {*} [options] Override http request option.
|
|
10187
10246
|
* @throws {RequiredError}
|
|
10188
10247
|
*/
|
|
10189
|
-
moderateUser(moderateUserRequest
|
|
10248
|
+
moderateUser(moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerModeration>>;
|
|
10190
10249
|
/**
|
|
10191
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.
|
|
10192
10251
|
* @summary Unmoderate User
|
|
10193
|
-
* @param {ModerateUserRequest}
|
|
10252
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10194
10253
|
* @param {*} [options] Override http request option.
|
|
10195
10254
|
* @throws {RequiredError}
|
|
10196
10255
|
*/
|
|
10197
|
-
unmoderateUser(moderateUserRequest
|
|
10256
|
+
unmoderateUser(moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Success>>;
|
|
10198
10257
|
};
|
|
10199
10258
|
/**
|
|
10200
10259
|
* PlayermoderationApi - factory interface
|
|
@@ -10236,19 +10295,19 @@ export declare const PlayermoderationApiFactory: (configuration?: Configuration,
|
|
|
10236
10295
|
/**
|
|
10237
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.
|
|
10238
10297
|
* @summary Moderate User
|
|
10239
|
-
* @param {ModerateUserRequest}
|
|
10298
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10240
10299
|
* @param {*} [options] Override http request option.
|
|
10241
10300
|
* @throws {RequiredError}
|
|
10242
10301
|
*/
|
|
10243
|
-
moderateUser(moderateUserRequest
|
|
10302
|
+
moderateUser(moderateUserRequest: ModerateUserRequest, options?: any): AxiosPromise<PlayerModeration>;
|
|
10244
10303
|
/**
|
|
10245
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.
|
|
10246
10305
|
* @summary Unmoderate User
|
|
10247
|
-
* @param {ModerateUserRequest}
|
|
10306
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10248
10307
|
* @param {*} [options] Override http request option.
|
|
10249
10308
|
* @throws {RequiredError}
|
|
10250
10309
|
*/
|
|
10251
|
-
unmoderateUser(moderateUserRequest
|
|
10310
|
+
unmoderateUser(moderateUserRequest: ModerateUserRequest, options?: any): AxiosPromise<Success>;
|
|
10252
10311
|
};
|
|
10253
10312
|
/**
|
|
10254
10313
|
* PlayermoderationApi - object-oriented interface
|
|
@@ -10296,21 +10355,21 @@ export declare class PlayermoderationApi extends BaseAPI {
|
|
|
10296
10355
|
/**
|
|
10297
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.
|
|
10298
10357
|
* @summary Moderate User
|
|
10299
|
-
* @param {ModerateUserRequest}
|
|
10358
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10300
10359
|
* @param {*} [options] Override http request option.
|
|
10301
10360
|
* @throws {RequiredError}
|
|
10302
10361
|
* @memberof PlayermoderationApi
|
|
10303
10362
|
*/
|
|
10304
|
-
moderateUser(moderateUserRequest
|
|
10363
|
+
moderateUser(moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerModeration, any>>;
|
|
10305
10364
|
/**
|
|
10306
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.
|
|
10307
10366
|
* @summary Unmoderate User
|
|
10308
|
-
* @param {ModerateUserRequest}
|
|
10367
|
+
* @param {ModerateUserRequest} moderateUserRequest
|
|
10309
10368
|
* @param {*} [options] Override http request option.
|
|
10310
10369
|
* @throws {RequiredError}
|
|
10311
10370
|
* @memberof PlayermoderationApi
|
|
10312
10371
|
*/
|
|
10313
|
-
unmoderateUser(moderateUserRequest
|
|
10372
|
+
unmoderateUser(moderateUserRequest: ModerateUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Success, any>>;
|
|
10314
10373
|
}
|
|
10315
10374
|
/**
|
|
10316
10375
|
* SystemApi - axios parameter creator
|