vrchat 1.15.0 → 1.16.2
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 +273 -8
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +230 -8
- package/dist/api.js +90 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.16.2
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1352,6 +1352,12 @@ export interface CurrentUser {
|
|
|
1352
1352
|
* @memberof CurrentUser
|
|
1353
1353
|
*/
|
|
1354
1354
|
'currentAvatarThumbnailImageUrl': string;
|
|
1355
|
+
/**
|
|
1356
|
+
*
|
|
1357
|
+
* @type {Array<string>}
|
|
1358
|
+
* @memberof CurrentUser
|
|
1359
|
+
*/
|
|
1360
|
+
'currentAvatarTags'?: Array<string>;
|
|
1355
1361
|
/**
|
|
1356
1362
|
*
|
|
1357
1363
|
* @type {string}
|
|
@@ -1407,6 +1413,24 @@ export interface CurrentUser {
|
|
|
1407
1413
|
* @memberof CurrentUser
|
|
1408
1414
|
*/
|
|
1409
1415
|
'hasBirthday': boolean;
|
|
1416
|
+
/**
|
|
1417
|
+
*
|
|
1418
|
+
* @type {boolean}
|
|
1419
|
+
* @memberof CurrentUser
|
|
1420
|
+
*/
|
|
1421
|
+
'hideContentFilterSettings'?: boolean;
|
|
1422
|
+
/**
|
|
1423
|
+
*
|
|
1424
|
+
* @type {string}
|
|
1425
|
+
* @memberof CurrentUser
|
|
1426
|
+
*/
|
|
1427
|
+
'userLanguage'?: string | null;
|
|
1428
|
+
/**
|
|
1429
|
+
*
|
|
1430
|
+
* @type {string}
|
|
1431
|
+
* @memberof CurrentUser
|
|
1432
|
+
*/
|
|
1433
|
+
'userLanguageCode'?: string | null;
|
|
1410
1434
|
/**
|
|
1411
1435
|
*
|
|
1412
1436
|
* @type {boolean}
|
|
@@ -1479,6 +1503,24 @@ export interface CurrentUser {
|
|
|
1479
1503
|
* @memberof CurrentUser
|
|
1480
1504
|
*/
|
|
1481
1505
|
'oculusId': string;
|
|
1506
|
+
/**
|
|
1507
|
+
*
|
|
1508
|
+
* @type {string}
|
|
1509
|
+
* @memberof CurrentUser
|
|
1510
|
+
*/
|
|
1511
|
+
'googleId'?: string;
|
|
1512
|
+
/**
|
|
1513
|
+
*
|
|
1514
|
+
* @type {string}
|
|
1515
|
+
* @memberof CurrentUser
|
|
1516
|
+
*/
|
|
1517
|
+
'picoId'?: string;
|
|
1518
|
+
/**
|
|
1519
|
+
*
|
|
1520
|
+
* @type {string}
|
|
1521
|
+
* @memberof CurrentUser
|
|
1522
|
+
*/
|
|
1523
|
+
'viveId'?: string;
|
|
1482
1524
|
/**
|
|
1483
1525
|
*
|
|
1484
1526
|
* @type {Array<string>}
|
|
@@ -3537,6 +3579,115 @@ export const LicenseType = {
|
|
|
3537
3579
|
export type LicenseType = typeof LicenseType[keyof typeof LicenseType];
|
|
3538
3580
|
|
|
3539
3581
|
|
|
3582
|
+
/**
|
|
3583
|
+
*
|
|
3584
|
+
* @export
|
|
3585
|
+
* @interface LimitedGroup
|
|
3586
|
+
*/
|
|
3587
|
+
export interface LimitedGroup {
|
|
3588
|
+
/**
|
|
3589
|
+
*
|
|
3590
|
+
* @type {string}
|
|
3591
|
+
* @memberof LimitedGroup
|
|
3592
|
+
*/
|
|
3593
|
+
'id'?: string;
|
|
3594
|
+
/**
|
|
3595
|
+
*
|
|
3596
|
+
* @type {string}
|
|
3597
|
+
* @memberof LimitedGroup
|
|
3598
|
+
*/
|
|
3599
|
+
'name'?: string;
|
|
3600
|
+
/**
|
|
3601
|
+
*
|
|
3602
|
+
* @type {string}
|
|
3603
|
+
* @memberof LimitedGroup
|
|
3604
|
+
*/
|
|
3605
|
+
'shortCode'?: string;
|
|
3606
|
+
/**
|
|
3607
|
+
*
|
|
3608
|
+
* @type {string}
|
|
3609
|
+
* @memberof LimitedGroup
|
|
3610
|
+
*/
|
|
3611
|
+
'discriminator'?: string;
|
|
3612
|
+
/**
|
|
3613
|
+
*
|
|
3614
|
+
* @type {string}
|
|
3615
|
+
* @memberof LimitedGroup
|
|
3616
|
+
*/
|
|
3617
|
+
'description'?: string;
|
|
3618
|
+
/**
|
|
3619
|
+
*
|
|
3620
|
+
* @type {string}
|
|
3621
|
+
* @memberof LimitedGroup
|
|
3622
|
+
*/
|
|
3623
|
+
'iconUrl'?: string | null;
|
|
3624
|
+
/**
|
|
3625
|
+
*
|
|
3626
|
+
* @type {string}
|
|
3627
|
+
* @memberof LimitedGroup
|
|
3628
|
+
*/
|
|
3629
|
+
'bannerUrl'?: string | null;
|
|
3630
|
+
/**
|
|
3631
|
+
* A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.
|
|
3632
|
+
* @type {string}
|
|
3633
|
+
* @memberof LimitedGroup
|
|
3634
|
+
*/
|
|
3635
|
+
'ownerId'?: string;
|
|
3636
|
+
/**
|
|
3637
|
+
*
|
|
3638
|
+
* @type {string}
|
|
3639
|
+
* @memberof LimitedGroup
|
|
3640
|
+
*/
|
|
3641
|
+
'rules'?: string | null;
|
|
3642
|
+
/**
|
|
3643
|
+
*
|
|
3644
|
+
* @type {string}
|
|
3645
|
+
* @memberof LimitedGroup
|
|
3646
|
+
*/
|
|
3647
|
+
'iconId'?: string | null;
|
|
3648
|
+
/**
|
|
3649
|
+
*
|
|
3650
|
+
* @type {string}
|
|
3651
|
+
* @memberof LimitedGroup
|
|
3652
|
+
*/
|
|
3653
|
+
'bannerId'?: string | null;
|
|
3654
|
+
/**
|
|
3655
|
+
*
|
|
3656
|
+
* @type {number}
|
|
3657
|
+
* @memberof LimitedGroup
|
|
3658
|
+
*/
|
|
3659
|
+
'memberCount'?: number;
|
|
3660
|
+
/**
|
|
3661
|
+
*
|
|
3662
|
+
* @type {Array<string>}
|
|
3663
|
+
* @memberof LimitedGroup
|
|
3664
|
+
*/
|
|
3665
|
+
'tags'?: Array<string>;
|
|
3666
|
+
/**
|
|
3667
|
+
*
|
|
3668
|
+
* @type {string}
|
|
3669
|
+
* @memberof LimitedGroup
|
|
3670
|
+
*/
|
|
3671
|
+
'createdAt'?: string;
|
|
3672
|
+
/**
|
|
3673
|
+
*
|
|
3674
|
+
* @type {GroupMemberStatus}
|
|
3675
|
+
* @memberof LimitedGroup
|
|
3676
|
+
*/
|
|
3677
|
+
'membershipStatus'?: GroupMemberStatus;
|
|
3678
|
+
/**
|
|
3679
|
+
*
|
|
3680
|
+
* @type {boolean}
|
|
3681
|
+
* @memberof LimitedGroup
|
|
3682
|
+
*/
|
|
3683
|
+
'isSearchable'?: boolean;
|
|
3684
|
+
/**
|
|
3685
|
+
*
|
|
3686
|
+
* @type {Array<GroupGallery>}
|
|
3687
|
+
* @memberof LimitedGroup
|
|
3688
|
+
*/
|
|
3689
|
+
'galleries'?: Array<GroupGallery>;
|
|
3690
|
+
}
|
|
3540
3691
|
/**
|
|
3541
3692
|
*
|
|
3542
3693
|
* @export
|
|
@@ -3690,6 +3841,12 @@ export interface LimitedWorld {
|
|
|
3690
3841
|
* @memberof LimitedWorld
|
|
3691
3842
|
*/
|
|
3692
3843
|
'capacity': number;
|
|
3844
|
+
/**
|
|
3845
|
+
*
|
|
3846
|
+
* @type {number}
|
|
3847
|
+
* @memberof LimitedWorld
|
|
3848
|
+
*/
|
|
3849
|
+
'recommendedCapacity'?: number;
|
|
3693
3850
|
/**
|
|
3694
3851
|
*
|
|
3695
3852
|
* @type {string}
|
|
@@ -3786,6 +3943,12 @@ export interface LimitedWorld {
|
|
|
3786
3943
|
* @memberof LimitedWorld
|
|
3787
3944
|
*/
|
|
3788
3945
|
'updated_at': string;
|
|
3946
|
+
/**
|
|
3947
|
+
*
|
|
3948
|
+
* @type {Array<string>}
|
|
3949
|
+
* @memberof LimitedWorld
|
|
3950
|
+
*/
|
|
3951
|
+
'udonProducts'?: Array<string>;
|
|
3789
3952
|
}
|
|
3790
3953
|
/**
|
|
3791
3954
|
*
|
|
@@ -4659,7 +4822,13 @@ export interface UnityPackage {
|
|
|
4659
4822
|
* @type {string}
|
|
4660
4823
|
* @memberof UnityPackage
|
|
4661
4824
|
*/
|
|
4662
|
-
'
|
|
4825
|
+
'id': string;
|
|
4826
|
+
/**
|
|
4827
|
+
*
|
|
4828
|
+
* @type {string}
|
|
4829
|
+
* @memberof UnityPackage
|
|
4830
|
+
*/
|
|
4831
|
+
'assetUrl'?: string | null;
|
|
4663
4832
|
/**
|
|
4664
4833
|
*
|
|
4665
4834
|
* @type {object}
|
|
@@ -4678,12 +4847,6 @@ export interface UnityPackage {
|
|
|
4678
4847
|
* @memberof UnityPackage
|
|
4679
4848
|
*/
|
|
4680
4849
|
'created_at'?: string;
|
|
4681
|
-
/**
|
|
4682
|
-
*
|
|
4683
|
-
* @type {string}
|
|
4684
|
-
* @memberof UnityPackage
|
|
4685
|
-
*/
|
|
4686
|
-
'id': string;
|
|
4687
4850
|
/**
|
|
4688
4851
|
* This can be `standalonewindows` or `android`, but can also pretty much be any random Unity verison such as `2019.2.4-801-Release` or `2019.2.2-772-Release` or even `unknownplatform`.
|
|
4689
4852
|
* @type {string}
|
|
@@ -4714,6 +4877,18 @@ export interface UnityPackage {
|
|
|
4714
4877
|
* @memberof UnityPackage
|
|
4715
4878
|
*/
|
|
4716
4879
|
'unityVersion': string;
|
|
4880
|
+
/**
|
|
4881
|
+
*
|
|
4882
|
+
* @type {string}
|
|
4883
|
+
* @memberof UnityPackage
|
|
4884
|
+
*/
|
|
4885
|
+
'impostorUrl'?: string | null;
|
|
4886
|
+
/**
|
|
4887
|
+
*
|
|
4888
|
+
* @type {string}
|
|
4889
|
+
* @memberof UnityPackage
|
|
4890
|
+
*/
|
|
4891
|
+
'scanStatus'?: string;
|
|
4717
4892
|
}
|
|
4718
4893
|
/**
|
|
4719
4894
|
*
|
|
@@ -5687,6 +5862,12 @@ export interface World {
|
|
|
5687
5862
|
* @memberof World
|
|
5688
5863
|
*/
|
|
5689
5864
|
'visits': number;
|
|
5865
|
+
/**
|
|
5866
|
+
*
|
|
5867
|
+
* @type {Array<string>}
|
|
5868
|
+
* @memberof World
|
|
5869
|
+
*/
|
|
5870
|
+
'udonProducts'?: Array<string>;
|
|
5690
5871
|
}
|
|
5691
5872
|
/**
|
|
5692
5873
|
*
|
|
@@ -10727,6 +10908,51 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10727
10908
|
options: localVarRequestOptions,
|
|
10728
10909
|
};
|
|
10729
10910
|
},
|
|
10911
|
+
/**
|
|
10912
|
+
* Searches Groups by name or shortCode
|
|
10913
|
+
* @summary Search Group
|
|
10914
|
+
* @param {string} [query] Query to search for, can be either Group Name or Group shortCode
|
|
10915
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
10916
|
+
* @param {number} [n] The number of objects to return.
|
|
10917
|
+
* @param {*} [options] Override http request option.
|
|
10918
|
+
* @throws {RequiredError}
|
|
10919
|
+
*/
|
|
10920
|
+
searchGroups: async (query?: string, offset?: number, n?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10921
|
+
const localVarPath = `/groups`;
|
|
10922
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
10923
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
10924
|
+
let baseOptions;
|
|
10925
|
+
if (configuration) {
|
|
10926
|
+
baseOptions = configuration.baseOptions;
|
|
10927
|
+
}
|
|
10928
|
+
|
|
10929
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
10930
|
+
const localVarHeaderParameter = {} as any;
|
|
10931
|
+
const localVarQueryParameter = {} as any;
|
|
10932
|
+
|
|
10933
|
+
if (query !== undefined) {
|
|
10934
|
+
localVarQueryParameter['query'] = query;
|
|
10935
|
+
}
|
|
10936
|
+
|
|
10937
|
+
if (offset !== undefined) {
|
|
10938
|
+
localVarQueryParameter['offset'] = offset;
|
|
10939
|
+
}
|
|
10940
|
+
|
|
10941
|
+
if (n !== undefined) {
|
|
10942
|
+
localVarQueryParameter['n'] = n;
|
|
10943
|
+
}
|
|
10944
|
+
|
|
10945
|
+
|
|
10946
|
+
|
|
10947
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
10948
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
10949
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
10950
|
+
|
|
10951
|
+
return {
|
|
10952
|
+
url: toPathString(localVarUrlObj),
|
|
10953
|
+
options: localVarRequestOptions,
|
|
10954
|
+
};
|
|
10955
|
+
},
|
|
10730
10956
|
/**
|
|
10731
10957
|
* Unbans a user from a Group.
|
|
10732
10958
|
* @summary Unban Group Member
|
|
@@ -11323,6 +11549,19 @@ export const GroupsApiFp = function(configuration?: Configuration) {
|
|
|
11323
11549
|
const localVarAxiosArgs = await localVarAxiosParamCreator.respondGroupJoinRequest(groupId, userId, respondGroupJoinRequest, options);
|
|
11324
11550
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11325
11551
|
},
|
|
11552
|
+
/**
|
|
11553
|
+
* Searches Groups by name or shortCode
|
|
11554
|
+
* @summary Search Group
|
|
11555
|
+
* @param {string} [query] Query to search for, can be either Group Name or Group shortCode
|
|
11556
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
11557
|
+
* @param {number} [n] The number of objects to return.
|
|
11558
|
+
* @param {*} [options] Override http request option.
|
|
11559
|
+
* @throws {RequiredError}
|
|
11560
|
+
*/
|
|
11561
|
+
async searchGroups(query?: string, offset?: number, n?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedGroup>>> {
|
|
11562
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchGroups(query, offset, n, options);
|
|
11563
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11564
|
+
},
|
|
11326
11565
|
/**
|
|
11327
11566
|
* Unbans a user from a Group.
|
|
11328
11567
|
* @summary Unban Group Member
|
|
@@ -11739,6 +11978,18 @@ export const GroupsApiFactory = function (configuration?: Configuration, basePat
|
|
|
11739
11978
|
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest?: RespondGroupJoinRequest, options?: any): AxiosPromise<void> {
|
|
11740
11979
|
return localVarFp.respondGroupJoinRequest(groupId, userId, respondGroupJoinRequest, options).then((request) => request(axios, basePath));
|
|
11741
11980
|
},
|
|
11981
|
+
/**
|
|
11982
|
+
* Searches Groups by name or shortCode
|
|
11983
|
+
* @summary Search Group
|
|
11984
|
+
* @param {string} [query] Query to search for, can be either Group Name or Group shortCode
|
|
11985
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
11986
|
+
* @param {number} [n] The number of objects to return.
|
|
11987
|
+
* @param {*} [options] Override http request option.
|
|
11988
|
+
* @throws {RequiredError}
|
|
11989
|
+
*/
|
|
11990
|
+
searchGroups(query?: string, offset?: number, n?: number, options?: any): AxiosPromise<Array<LimitedGroup>> {
|
|
11991
|
+
return localVarFp.searchGroups(query, offset, n, options).then((request) => request(axios, basePath));
|
|
11992
|
+
},
|
|
11742
11993
|
/**
|
|
11743
11994
|
* Unbans a user from a Group.
|
|
11744
11995
|
* @summary Unban Group Member
|
|
@@ -12212,6 +12463,20 @@ export class GroupsApi extends BaseAPI {
|
|
|
12212
12463
|
return GroupsApiFp(this.configuration).respondGroupJoinRequest(groupId, userId, respondGroupJoinRequest, options).then((request) => request(this.axios, this.basePath));
|
|
12213
12464
|
}
|
|
12214
12465
|
|
|
12466
|
+
/**
|
|
12467
|
+
* Searches Groups by name or shortCode
|
|
12468
|
+
* @summary Search Group
|
|
12469
|
+
* @param {string} [query] Query to search for, can be either Group Name or Group shortCode
|
|
12470
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
12471
|
+
* @param {number} [n] The number of objects to return.
|
|
12472
|
+
* @param {*} [options] Override http request option.
|
|
12473
|
+
* @throws {RequiredError}
|
|
12474
|
+
* @memberof GroupsApi
|
|
12475
|
+
*/
|
|
12476
|
+
public searchGroups(query?: string, offset?: number, n?: number, options?: AxiosRequestConfig) {
|
|
12477
|
+
return GroupsApiFp(this.configuration).searchGroups(query, offset, n, options).then((request) => request(this.axios, this.basePath));
|
|
12478
|
+
}
|
|
12479
|
+
|
|
12215
12480
|
/**
|
|
12216
12481
|
* Unbans a user from a Group.
|
|
12217
12482
|
* @summary Unban Group Member
|
package/base.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.16.2
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.16.2
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.16.2
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
4
|
+
* The version of the OpenAPI document: 1.16.2
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1342,6 +1342,12 @@ export interface CurrentUser {
|
|
|
1342
1342
|
* @memberof CurrentUser
|
|
1343
1343
|
*/
|
|
1344
1344
|
'currentAvatarThumbnailImageUrl': string;
|
|
1345
|
+
/**
|
|
1346
|
+
*
|
|
1347
|
+
* @type {Array<string>}
|
|
1348
|
+
* @memberof CurrentUser
|
|
1349
|
+
*/
|
|
1350
|
+
'currentAvatarTags'?: Array<string>;
|
|
1345
1351
|
/**
|
|
1346
1352
|
*
|
|
1347
1353
|
* @type {string}
|
|
@@ -1397,6 +1403,24 @@ export interface CurrentUser {
|
|
|
1397
1403
|
* @memberof CurrentUser
|
|
1398
1404
|
*/
|
|
1399
1405
|
'hasBirthday': boolean;
|
|
1406
|
+
/**
|
|
1407
|
+
*
|
|
1408
|
+
* @type {boolean}
|
|
1409
|
+
* @memberof CurrentUser
|
|
1410
|
+
*/
|
|
1411
|
+
'hideContentFilterSettings'?: boolean;
|
|
1412
|
+
/**
|
|
1413
|
+
*
|
|
1414
|
+
* @type {string}
|
|
1415
|
+
* @memberof CurrentUser
|
|
1416
|
+
*/
|
|
1417
|
+
'userLanguage'?: string | null;
|
|
1418
|
+
/**
|
|
1419
|
+
*
|
|
1420
|
+
* @type {string}
|
|
1421
|
+
* @memberof CurrentUser
|
|
1422
|
+
*/
|
|
1423
|
+
'userLanguageCode'?: string | null;
|
|
1400
1424
|
/**
|
|
1401
1425
|
*
|
|
1402
1426
|
* @type {boolean}
|
|
@@ -1469,6 +1493,24 @@ export interface CurrentUser {
|
|
|
1469
1493
|
* @memberof CurrentUser
|
|
1470
1494
|
*/
|
|
1471
1495
|
'oculusId': string;
|
|
1496
|
+
/**
|
|
1497
|
+
*
|
|
1498
|
+
* @type {string}
|
|
1499
|
+
* @memberof CurrentUser
|
|
1500
|
+
*/
|
|
1501
|
+
'googleId'?: string;
|
|
1502
|
+
/**
|
|
1503
|
+
*
|
|
1504
|
+
* @type {string}
|
|
1505
|
+
* @memberof CurrentUser
|
|
1506
|
+
*/
|
|
1507
|
+
'picoId'?: string;
|
|
1508
|
+
/**
|
|
1509
|
+
*
|
|
1510
|
+
* @type {string}
|
|
1511
|
+
* @memberof CurrentUser
|
|
1512
|
+
*/
|
|
1513
|
+
'viveId'?: string;
|
|
1472
1514
|
/**
|
|
1473
1515
|
*
|
|
1474
1516
|
* @type {Array<string>}
|
|
@@ -3465,6 +3507,115 @@ export declare const LicenseType: {
|
|
|
3465
3507
|
readonly Product: "product";
|
|
3466
3508
|
};
|
|
3467
3509
|
export type LicenseType = typeof LicenseType[keyof typeof LicenseType];
|
|
3510
|
+
/**
|
|
3511
|
+
*
|
|
3512
|
+
* @export
|
|
3513
|
+
* @interface LimitedGroup
|
|
3514
|
+
*/
|
|
3515
|
+
export interface LimitedGroup {
|
|
3516
|
+
/**
|
|
3517
|
+
*
|
|
3518
|
+
* @type {string}
|
|
3519
|
+
* @memberof LimitedGroup
|
|
3520
|
+
*/
|
|
3521
|
+
'id'?: string;
|
|
3522
|
+
/**
|
|
3523
|
+
*
|
|
3524
|
+
* @type {string}
|
|
3525
|
+
* @memberof LimitedGroup
|
|
3526
|
+
*/
|
|
3527
|
+
'name'?: string;
|
|
3528
|
+
/**
|
|
3529
|
+
*
|
|
3530
|
+
* @type {string}
|
|
3531
|
+
* @memberof LimitedGroup
|
|
3532
|
+
*/
|
|
3533
|
+
'shortCode'?: string;
|
|
3534
|
+
/**
|
|
3535
|
+
*
|
|
3536
|
+
* @type {string}
|
|
3537
|
+
* @memberof LimitedGroup
|
|
3538
|
+
*/
|
|
3539
|
+
'discriminator'?: string;
|
|
3540
|
+
/**
|
|
3541
|
+
*
|
|
3542
|
+
* @type {string}
|
|
3543
|
+
* @memberof LimitedGroup
|
|
3544
|
+
*/
|
|
3545
|
+
'description'?: string;
|
|
3546
|
+
/**
|
|
3547
|
+
*
|
|
3548
|
+
* @type {string}
|
|
3549
|
+
* @memberof LimitedGroup
|
|
3550
|
+
*/
|
|
3551
|
+
'iconUrl'?: string | null;
|
|
3552
|
+
/**
|
|
3553
|
+
*
|
|
3554
|
+
* @type {string}
|
|
3555
|
+
* @memberof LimitedGroup
|
|
3556
|
+
*/
|
|
3557
|
+
'bannerUrl'?: string | null;
|
|
3558
|
+
/**
|
|
3559
|
+
* A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.
|
|
3560
|
+
* @type {string}
|
|
3561
|
+
* @memberof LimitedGroup
|
|
3562
|
+
*/
|
|
3563
|
+
'ownerId'?: string;
|
|
3564
|
+
/**
|
|
3565
|
+
*
|
|
3566
|
+
* @type {string}
|
|
3567
|
+
* @memberof LimitedGroup
|
|
3568
|
+
*/
|
|
3569
|
+
'rules'?: string | null;
|
|
3570
|
+
/**
|
|
3571
|
+
*
|
|
3572
|
+
* @type {string}
|
|
3573
|
+
* @memberof LimitedGroup
|
|
3574
|
+
*/
|
|
3575
|
+
'iconId'?: string | null;
|
|
3576
|
+
/**
|
|
3577
|
+
*
|
|
3578
|
+
* @type {string}
|
|
3579
|
+
* @memberof LimitedGroup
|
|
3580
|
+
*/
|
|
3581
|
+
'bannerId'?: string | null;
|
|
3582
|
+
/**
|
|
3583
|
+
*
|
|
3584
|
+
* @type {number}
|
|
3585
|
+
* @memberof LimitedGroup
|
|
3586
|
+
*/
|
|
3587
|
+
'memberCount'?: number;
|
|
3588
|
+
/**
|
|
3589
|
+
*
|
|
3590
|
+
* @type {Array<string>}
|
|
3591
|
+
* @memberof LimitedGroup
|
|
3592
|
+
*/
|
|
3593
|
+
'tags'?: Array<string>;
|
|
3594
|
+
/**
|
|
3595
|
+
*
|
|
3596
|
+
* @type {string}
|
|
3597
|
+
* @memberof LimitedGroup
|
|
3598
|
+
*/
|
|
3599
|
+
'createdAt'?: string;
|
|
3600
|
+
/**
|
|
3601
|
+
*
|
|
3602
|
+
* @type {GroupMemberStatus}
|
|
3603
|
+
* @memberof LimitedGroup
|
|
3604
|
+
*/
|
|
3605
|
+
'membershipStatus'?: GroupMemberStatus;
|
|
3606
|
+
/**
|
|
3607
|
+
*
|
|
3608
|
+
* @type {boolean}
|
|
3609
|
+
* @memberof LimitedGroup
|
|
3610
|
+
*/
|
|
3611
|
+
'isSearchable'?: boolean;
|
|
3612
|
+
/**
|
|
3613
|
+
*
|
|
3614
|
+
* @type {Array<GroupGallery>}
|
|
3615
|
+
* @memberof LimitedGroup
|
|
3616
|
+
*/
|
|
3617
|
+
'galleries'?: Array<GroupGallery>;
|
|
3618
|
+
}
|
|
3468
3619
|
/**
|
|
3469
3620
|
*
|
|
3470
3621
|
* @export
|
|
@@ -3618,6 +3769,12 @@ export interface LimitedWorld {
|
|
|
3618
3769
|
* @memberof LimitedWorld
|
|
3619
3770
|
*/
|
|
3620
3771
|
'capacity': number;
|
|
3772
|
+
/**
|
|
3773
|
+
*
|
|
3774
|
+
* @type {number}
|
|
3775
|
+
* @memberof LimitedWorld
|
|
3776
|
+
*/
|
|
3777
|
+
'recommendedCapacity'?: number;
|
|
3621
3778
|
/**
|
|
3622
3779
|
*
|
|
3623
3780
|
* @type {string}
|
|
@@ -3714,6 +3871,12 @@ export interface LimitedWorld {
|
|
|
3714
3871
|
* @memberof LimitedWorld
|
|
3715
3872
|
*/
|
|
3716
3873
|
'updated_at': string;
|
|
3874
|
+
/**
|
|
3875
|
+
*
|
|
3876
|
+
* @type {Array<string>}
|
|
3877
|
+
* @memberof LimitedWorld
|
|
3878
|
+
*/
|
|
3879
|
+
'udonProducts'?: Array<string>;
|
|
3717
3880
|
}
|
|
3718
3881
|
/**
|
|
3719
3882
|
*
|
|
@@ -4551,7 +4714,13 @@ export interface UnityPackage {
|
|
|
4551
4714
|
* @type {string}
|
|
4552
4715
|
* @memberof UnityPackage
|
|
4553
4716
|
*/
|
|
4554
|
-
'
|
|
4717
|
+
'id': string;
|
|
4718
|
+
/**
|
|
4719
|
+
*
|
|
4720
|
+
* @type {string}
|
|
4721
|
+
* @memberof UnityPackage
|
|
4722
|
+
*/
|
|
4723
|
+
'assetUrl'?: string | null;
|
|
4555
4724
|
/**
|
|
4556
4725
|
*
|
|
4557
4726
|
* @type {object}
|
|
@@ -4570,12 +4739,6 @@ export interface UnityPackage {
|
|
|
4570
4739
|
* @memberof UnityPackage
|
|
4571
4740
|
*/
|
|
4572
4741
|
'created_at'?: string;
|
|
4573
|
-
/**
|
|
4574
|
-
*
|
|
4575
|
-
* @type {string}
|
|
4576
|
-
* @memberof UnityPackage
|
|
4577
|
-
*/
|
|
4578
|
-
'id': string;
|
|
4579
4742
|
/**
|
|
4580
4743
|
* This can be `standalonewindows` or `android`, but can also pretty much be any random Unity verison such as `2019.2.4-801-Release` or `2019.2.2-772-Release` or even `unknownplatform`.
|
|
4581
4744
|
* @type {string}
|
|
@@ -4606,6 +4769,18 @@ export interface UnityPackage {
|
|
|
4606
4769
|
* @memberof UnityPackage
|
|
4607
4770
|
*/
|
|
4608
4771
|
'unityVersion': string;
|
|
4772
|
+
/**
|
|
4773
|
+
*
|
|
4774
|
+
* @type {string}
|
|
4775
|
+
* @memberof UnityPackage
|
|
4776
|
+
*/
|
|
4777
|
+
'impostorUrl'?: string | null;
|
|
4778
|
+
/**
|
|
4779
|
+
*
|
|
4780
|
+
* @type {string}
|
|
4781
|
+
* @memberof UnityPackage
|
|
4782
|
+
*/
|
|
4783
|
+
'scanStatus'?: string;
|
|
4609
4784
|
}
|
|
4610
4785
|
/**
|
|
4611
4786
|
*
|
|
@@ -5571,6 +5746,12 @@ export interface World {
|
|
|
5571
5746
|
* @memberof World
|
|
5572
5747
|
*/
|
|
5573
5748
|
'visits': number;
|
|
5749
|
+
/**
|
|
5750
|
+
*
|
|
5751
|
+
* @type {Array<string>}
|
|
5752
|
+
* @memberof World
|
|
5753
|
+
*/
|
|
5754
|
+
'udonProducts'?: Array<string>;
|
|
5574
5755
|
}
|
|
5575
5756
|
/**
|
|
5576
5757
|
*
|
|
@@ -7735,6 +7916,16 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7735
7916
|
* @throws {RequiredError}
|
|
7736
7917
|
*/
|
|
7737
7918
|
respondGroupJoinRequest: (groupId: string, userId: string, respondGroupJoinRequest?: RespondGroupJoinRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7919
|
+
/**
|
|
7920
|
+
* Searches Groups by name or shortCode
|
|
7921
|
+
* @summary Search Group
|
|
7922
|
+
* @param {string} [query] Query to search for, can be either Group Name or Group shortCode
|
|
7923
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
7924
|
+
* @param {number} [n] The number of objects to return.
|
|
7925
|
+
* @param {*} [options] Override http request option.
|
|
7926
|
+
* @throws {RequiredError}
|
|
7927
|
+
*/
|
|
7928
|
+
searchGroups: (query?: string, offset?: number, n?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7738
7929
|
/**
|
|
7739
7930
|
* Unbans a user from a Group.
|
|
7740
7931
|
* @summary Unban Group Member
|
|
@@ -8070,6 +8261,16 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8070
8261
|
* @throws {RequiredError}
|
|
8071
8262
|
*/
|
|
8072
8263
|
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest?: RespondGroupJoinRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8264
|
+
/**
|
|
8265
|
+
* Searches Groups by name or shortCode
|
|
8266
|
+
* @summary Search Group
|
|
8267
|
+
* @param {string} [query] Query to search for, can be either Group Name or Group shortCode
|
|
8268
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8269
|
+
* @param {number} [n] The number of objects to return.
|
|
8270
|
+
* @param {*} [options] Override http request option.
|
|
8271
|
+
* @throws {RequiredError}
|
|
8272
|
+
*/
|
|
8273
|
+
searchGroups(query?: string, offset?: number, n?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedGroup>>>;
|
|
8073
8274
|
/**
|
|
8074
8275
|
* Unbans a user from a Group.
|
|
8075
8276
|
* @summary Unban Group Member
|
|
@@ -8405,6 +8606,16 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8405
8606
|
* @throws {RequiredError}
|
|
8406
8607
|
*/
|
|
8407
8608
|
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest?: RespondGroupJoinRequest, options?: any): AxiosPromise<void>;
|
|
8609
|
+
/**
|
|
8610
|
+
* Searches Groups by name or shortCode
|
|
8611
|
+
* @summary Search Group
|
|
8612
|
+
* @param {string} [query] Query to search for, can be either Group Name or Group shortCode
|
|
8613
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8614
|
+
* @param {number} [n] The number of objects to return.
|
|
8615
|
+
* @param {*} [options] Override http request option.
|
|
8616
|
+
* @throws {RequiredError}
|
|
8617
|
+
*/
|
|
8618
|
+
searchGroups(query?: string, offset?: number, n?: number, options?: any): AxiosPromise<Array<LimitedGroup>>;
|
|
8408
8619
|
/**
|
|
8409
8620
|
* Unbans a user from a Group.
|
|
8410
8621
|
* @summary Unban Group Member
|
|
@@ -8773,6 +8984,17 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
8773
8984
|
* @memberof GroupsApi
|
|
8774
8985
|
*/
|
|
8775
8986
|
respondGroupJoinRequest(groupId: string, userId: string, respondGroupJoinRequest?: RespondGroupJoinRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
8987
|
+
/**
|
|
8988
|
+
* Searches Groups by name or shortCode
|
|
8989
|
+
* @summary Search Group
|
|
8990
|
+
* @param {string} [query] Query to search for, can be either Group Name or Group shortCode
|
|
8991
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8992
|
+
* @param {number} [n] The number of objects to return.
|
|
8993
|
+
* @param {*} [options] Override http request option.
|
|
8994
|
+
* @throws {RequiredError}
|
|
8995
|
+
* @memberof GroupsApi
|
|
8996
|
+
*/
|
|
8997
|
+
searchGroups(query?: string, offset?: number, n?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LimitedGroup[], any>>;
|
|
8776
8998
|
/**
|
|
8777
8999
|
* Unbans a user from a Group.
|
|
8778
9000
|
* @summary Unban Group Member
|
package/dist/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.16.2
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5616,6 +5616,47 @@ var GroupsApiAxiosParamCreator = function (configuration) {
|
|
|
5616
5616
|
});
|
|
5617
5617
|
});
|
|
5618
5618
|
},
|
|
5619
|
+
/**
|
|
5620
|
+
* Searches Groups by name or shortCode
|
|
5621
|
+
* @summary Search Group
|
|
5622
|
+
* @param {string} [query] Query to search for, can be either Group Name or Group shortCode
|
|
5623
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
5624
|
+
* @param {number} [n] The number of objects to return.
|
|
5625
|
+
* @param {*} [options] Override http request option.
|
|
5626
|
+
* @throws {RequiredError}
|
|
5627
|
+
*/
|
|
5628
|
+
searchGroups: function (query, offset, n, options) {
|
|
5629
|
+
if (options === void 0) { options = {}; }
|
|
5630
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
5631
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
5632
|
+
return __generator(this, function (_a) {
|
|
5633
|
+
localVarPath = "/groups";
|
|
5634
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
5635
|
+
if (configuration) {
|
|
5636
|
+
baseOptions = configuration.baseOptions;
|
|
5637
|
+
}
|
|
5638
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
5639
|
+
localVarHeaderParameter = {};
|
|
5640
|
+
localVarQueryParameter = {};
|
|
5641
|
+
if (query !== undefined) {
|
|
5642
|
+
localVarQueryParameter['query'] = query;
|
|
5643
|
+
}
|
|
5644
|
+
if (offset !== undefined) {
|
|
5645
|
+
localVarQueryParameter['offset'] = offset;
|
|
5646
|
+
}
|
|
5647
|
+
if (n !== undefined) {
|
|
5648
|
+
localVarQueryParameter['n'] = n;
|
|
5649
|
+
}
|
|
5650
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
5651
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5652
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5653
|
+
return [2 /*return*/, {
|
|
5654
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
5655
|
+
options: localVarRequestOptions,
|
|
5656
|
+
}];
|
|
5657
|
+
});
|
|
5658
|
+
});
|
|
5659
|
+
},
|
|
5619
5660
|
/**
|
|
5620
5661
|
* Unbans a user from a Group.
|
|
5621
5662
|
* @summary Unban Group Member
|
|
@@ -6477,6 +6518,28 @@ var GroupsApiFp = function (configuration) {
|
|
|
6477
6518
|
});
|
|
6478
6519
|
});
|
|
6479
6520
|
},
|
|
6521
|
+
/**
|
|
6522
|
+
* Searches Groups by name or shortCode
|
|
6523
|
+
* @summary Search Group
|
|
6524
|
+
* @param {string} [query] Query to search for, can be either Group Name or Group shortCode
|
|
6525
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
6526
|
+
* @param {number} [n] The number of objects to return.
|
|
6527
|
+
* @param {*} [options] Override http request option.
|
|
6528
|
+
* @throws {RequiredError}
|
|
6529
|
+
*/
|
|
6530
|
+
searchGroups: function (query, offset, n, options) {
|
|
6531
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
6532
|
+
var localVarAxiosArgs;
|
|
6533
|
+
return __generator(this, function (_a) {
|
|
6534
|
+
switch (_a.label) {
|
|
6535
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.searchGroups(query, offset, n, options)];
|
|
6536
|
+
case 1:
|
|
6537
|
+
localVarAxiosArgs = _a.sent();
|
|
6538
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
6539
|
+
}
|
|
6540
|
+
});
|
|
6541
|
+
});
|
|
6542
|
+
},
|
|
6480
6543
|
/**
|
|
6481
6544
|
* Unbans a user from a Group.
|
|
6482
6545
|
* @summary Unban Group Member
|
|
@@ -6938,6 +7001,18 @@ var GroupsApiFactory = function (configuration, basePath, axios) {
|
|
|
6938
7001
|
respondGroupJoinRequest: function (groupId, userId, respondGroupJoinRequest, options) {
|
|
6939
7002
|
return localVarFp.respondGroupJoinRequest(groupId, userId, respondGroupJoinRequest, options).then(function (request) { return request(axios, basePath); });
|
|
6940
7003
|
},
|
|
7004
|
+
/**
|
|
7005
|
+
* Searches Groups by name or shortCode
|
|
7006
|
+
* @summary Search Group
|
|
7007
|
+
* @param {string} [query] Query to search for, can be either Group Name or Group shortCode
|
|
7008
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
7009
|
+
* @param {number} [n] The number of objects to return.
|
|
7010
|
+
* @param {*} [options] Override http request option.
|
|
7011
|
+
* @throws {RequiredError}
|
|
7012
|
+
*/
|
|
7013
|
+
searchGroups: function (query, offset, n, options) {
|
|
7014
|
+
return localVarFp.searchGroups(query, offset, n, options).then(function (request) { return request(axios, basePath); });
|
|
7015
|
+
},
|
|
6941
7016
|
/**
|
|
6942
7017
|
* Unbans a user from a Group.
|
|
6943
7018
|
* @summary Unban Group Member
|
|
@@ -7415,6 +7490,20 @@ var GroupsApi = /** @class */ (function (_super) {
|
|
|
7415
7490
|
var _this = this;
|
|
7416
7491
|
return (0, exports.GroupsApiFp)(this.configuration).respondGroupJoinRequest(groupId, userId, respondGroupJoinRequest, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7417
7492
|
};
|
|
7493
|
+
/**
|
|
7494
|
+
* Searches Groups by name or shortCode
|
|
7495
|
+
* @summary Search Group
|
|
7496
|
+
* @param {string} [query] Query to search for, can be either Group Name or Group shortCode
|
|
7497
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
7498
|
+
* @param {number} [n] The number of objects to return.
|
|
7499
|
+
* @param {*} [options] Override http request option.
|
|
7500
|
+
* @throws {RequiredError}
|
|
7501
|
+
* @memberof GroupsApi
|
|
7502
|
+
*/
|
|
7503
|
+
GroupsApi.prototype.searchGroups = function (query, offset, n, options) {
|
|
7504
|
+
var _this = this;
|
|
7505
|
+
return (0, exports.GroupsApiFp)(this.configuration).searchGroups(query, offset, n, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7506
|
+
};
|
|
7418
7507
|
/**
|
|
7419
7508
|
* Unbans a user from a Group.
|
|
7420
7509
|
* @summary Unban Group Member
|
package/dist/base.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
4
|
+
* The version of the OpenAPI document: 1.16.2
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.16.2
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
4
|
+
* The version of the OpenAPI document: 1.16.2
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.16.2
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
4
|
+
* The version of the OpenAPI document: 1.16.2
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.16.2
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.
|
|
4
|
+
* The version of the OpenAPI document: 1.16.2
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.16.2
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.16.2
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|