vrchat 1.7.1 → 1.7.4
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 +321 -74
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +244 -76
- package/dist/api.js +186 -25
- 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.7.
|
|
4
|
+
* The version of the OpenAPI document: 1.7.4
|
|
5
5
|
* Contact: me@ariesclark.com
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -503,13 +503,13 @@ export interface APIConfig {
|
|
|
503
503
|
* @type {string}
|
|
504
504
|
* @memberof APIConfig
|
|
505
505
|
*/
|
|
506
|
-
'
|
|
506
|
+
'player-url-resolver-hash': string;
|
|
507
507
|
/**
|
|
508
508
|
* Currently used youtube-dl.exe version
|
|
509
509
|
* @type {string}
|
|
510
510
|
* @memberof APIConfig
|
|
511
511
|
*/
|
|
512
|
-
'
|
|
512
|
+
'player-url-resolver-version': string;
|
|
513
513
|
}
|
|
514
514
|
/**
|
|
515
515
|
*
|
|
@@ -1993,7 +1993,13 @@ export interface Instance {
|
|
|
1993
1993
|
* @type {string}
|
|
1994
1994
|
* @memberof Instance
|
|
1995
1995
|
*/
|
|
1996
|
-
'
|
|
1996
|
+
'secureName': string;
|
|
1997
|
+
/**
|
|
1998
|
+
*
|
|
1999
|
+
* @type {string}
|
|
2000
|
+
* @memberof Instance
|
|
2001
|
+
*/
|
|
2002
|
+
'shortName'?: string;
|
|
1997
2003
|
/**
|
|
1998
2004
|
* The tags array on Instances usually contain the language tags of the people in the instance.
|
|
1999
2005
|
* @type {Array<string>}
|
|
@@ -2050,6 +2056,25 @@ export interface InstancePlatforms {
|
|
|
2050
2056
|
*/
|
|
2051
2057
|
'standalonewindows': number;
|
|
2052
2058
|
}
|
|
2059
|
+
/**
|
|
2060
|
+
*
|
|
2061
|
+
* @export
|
|
2062
|
+
* @interface InstanceShortNameResponse
|
|
2063
|
+
*/
|
|
2064
|
+
export interface InstanceShortNameResponse {
|
|
2065
|
+
/**
|
|
2066
|
+
*
|
|
2067
|
+
* @type {string}
|
|
2068
|
+
* @memberof InstanceShortNameResponse
|
|
2069
|
+
*/
|
|
2070
|
+
'secureName': string;
|
|
2071
|
+
/**
|
|
2072
|
+
*
|
|
2073
|
+
* @type {string}
|
|
2074
|
+
* @memberof InstanceShortNameResponse
|
|
2075
|
+
*/
|
|
2076
|
+
'shortName'?: string;
|
|
2077
|
+
}
|
|
2053
2078
|
/**
|
|
2054
2079
|
*
|
|
2055
2080
|
* @export
|
|
@@ -2842,6 +2867,61 @@ export interface Response {
|
|
|
2842
2867
|
*/
|
|
2843
2868
|
'status_code': number;
|
|
2844
2869
|
}
|
|
2870
|
+
/**
|
|
2871
|
+
*
|
|
2872
|
+
* @export
|
|
2873
|
+
* @interface SentNotification
|
|
2874
|
+
*/
|
|
2875
|
+
export interface SentNotification {
|
|
2876
|
+
/**
|
|
2877
|
+
*
|
|
2878
|
+
* @type {string}
|
|
2879
|
+
* @memberof SentNotification
|
|
2880
|
+
*/
|
|
2881
|
+
'created_at': string;
|
|
2882
|
+
/**
|
|
2883
|
+
* **NOTICE:** This is not a JSON object, this is a json **encoded** object, meaning you have to json-de-encode to get the NotificationDetail object depending on the NotificationType.
|
|
2884
|
+
* @type {string}
|
|
2885
|
+
* @memberof SentNotification
|
|
2886
|
+
*/
|
|
2887
|
+
'details': string;
|
|
2888
|
+
/**
|
|
2889
|
+
*
|
|
2890
|
+
* @type {string}
|
|
2891
|
+
* @memberof SentNotification
|
|
2892
|
+
*/
|
|
2893
|
+
'id': string;
|
|
2894
|
+
/**
|
|
2895
|
+
*
|
|
2896
|
+
* @type {string}
|
|
2897
|
+
* @memberof SentNotification
|
|
2898
|
+
*/
|
|
2899
|
+
'message': string;
|
|
2900
|
+
/**
|
|
2901
|
+
* 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.
|
|
2902
|
+
* @type {string}
|
|
2903
|
+
* @memberof SentNotification
|
|
2904
|
+
*/
|
|
2905
|
+
'recieverUserId': string;
|
|
2906
|
+
/**
|
|
2907
|
+
* 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.
|
|
2908
|
+
* @type {string}
|
|
2909
|
+
* @memberof SentNotification
|
|
2910
|
+
*/
|
|
2911
|
+
'senderUserId': string;
|
|
2912
|
+
/**
|
|
2913
|
+
*
|
|
2914
|
+
* @type {string}
|
|
2915
|
+
* @memberof SentNotification
|
|
2916
|
+
*/
|
|
2917
|
+
'senderUsername': string;
|
|
2918
|
+
/**
|
|
2919
|
+
*
|
|
2920
|
+
* @type {NotificationType}
|
|
2921
|
+
* @memberof SentNotification
|
|
2922
|
+
*/
|
|
2923
|
+
'type': NotificationType;
|
|
2924
|
+
}
|
|
2845
2925
|
/**
|
|
2846
2926
|
*
|
|
2847
2927
|
* @export
|
|
@@ -3544,6 +3624,12 @@ export interface User {
|
|
|
3544
3624
|
* @memberof User
|
|
3545
3625
|
*/
|
|
3546
3626
|
'friendKey': string;
|
|
3627
|
+
/**
|
|
3628
|
+
*
|
|
3629
|
+
* @type {string}
|
|
3630
|
+
* @memberof User
|
|
3631
|
+
*/
|
|
3632
|
+
'friendRequestStatus': string;
|
|
3547
3633
|
/**
|
|
3548
3634
|
* 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.
|
|
3549
3635
|
* @type {string}
|
|
@@ -3562,6 +3648,12 @@ export interface User {
|
|
|
3562
3648
|
* @memberof User
|
|
3563
3649
|
*/
|
|
3564
3650
|
'isFriend': boolean;
|
|
3651
|
+
/**
|
|
3652
|
+
* Either a date-time or empty string.
|
|
3653
|
+
* @type {string}
|
|
3654
|
+
* @memberof User
|
|
3655
|
+
*/
|
|
3656
|
+
'last_activity': string;
|
|
3565
3657
|
/**
|
|
3566
3658
|
* Either a date-time or empty string.
|
|
3567
3659
|
* @type {string}
|
|
@@ -3580,6 +3672,12 @@ export interface User {
|
|
|
3580
3672
|
* @memberof User
|
|
3581
3673
|
*/
|
|
3582
3674
|
'location'?: string;
|
|
3675
|
+
/**
|
|
3676
|
+
*
|
|
3677
|
+
* @type {string}
|
|
3678
|
+
* @memberof User
|
|
3679
|
+
*/
|
|
3680
|
+
'note'?: string;
|
|
3583
3681
|
/**
|
|
3584
3682
|
*
|
|
3585
3683
|
* @type {string}
|
|
@@ -3610,6 +3708,24 @@ export interface User {
|
|
|
3610
3708
|
* @memberof User
|
|
3611
3709
|
*/
|
|
3612
3710
|
'tags': Array<string>;
|
|
3711
|
+
/**
|
|
3712
|
+
*
|
|
3713
|
+
* @type {string}
|
|
3714
|
+
* @memberof User
|
|
3715
|
+
*/
|
|
3716
|
+
'travelingToInstance'?: string;
|
|
3717
|
+
/**
|
|
3718
|
+
*
|
|
3719
|
+
* @type {string}
|
|
3720
|
+
* @memberof User
|
|
3721
|
+
*/
|
|
3722
|
+
'travelingToLocation'?: string;
|
|
3723
|
+
/**
|
|
3724
|
+
*
|
|
3725
|
+
* @type {string}
|
|
3726
|
+
* @memberof User
|
|
3727
|
+
*/
|
|
3728
|
+
'travelingToWorld'?: string;
|
|
3613
3729
|
/**
|
|
3614
3730
|
*
|
|
3615
3731
|
* @type {string}
|
|
@@ -3805,12 +3921,6 @@ export interface World {
|
|
|
3805
3921
|
* @memberof World
|
|
3806
3922
|
*/
|
|
3807
3923
|
'assetUrl': string;
|
|
3808
|
-
/**
|
|
3809
|
-
*
|
|
3810
|
-
* @type {object}
|
|
3811
|
-
* @memberof World
|
|
3812
|
-
*/
|
|
3813
|
-
'assetUrlObject': object;
|
|
3814
3924
|
/**
|
|
3815
3925
|
* 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.
|
|
3816
3926
|
* @type {string}
|
|
@@ -3907,12 +4017,6 @@ export interface World {
|
|
|
3907
4017
|
* @memberof World
|
|
3908
4018
|
*/
|
|
3909
4019
|
'organization': string;
|
|
3910
|
-
/**
|
|
3911
|
-
*
|
|
3912
|
-
* @type {object}
|
|
3913
|
-
* @memberof World
|
|
3914
|
-
*/
|
|
3915
|
-
'pluginUrlObject': object;
|
|
3916
4020
|
/**
|
|
3917
4021
|
*
|
|
3918
4022
|
* @type {number}
|
|
@@ -3961,12 +4065,6 @@ export interface World {
|
|
|
3961
4065
|
* @memberof World
|
|
3962
4066
|
*/
|
|
3963
4067
|
'thumbnailImageUrl': string;
|
|
3964
|
-
/**
|
|
3965
|
-
*
|
|
3966
|
-
* @type {object}
|
|
3967
|
-
* @memberof World
|
|
3968
|
-
*/
|
|
3969
|
-
'unityPackageUrlObject': object;
|
|
3970
4068
|
/**
|
|
3971
4069
|
* Empty if unauthenticated.
|
|
3972
4070
|
* @type {Array<UnityPackage>}
|
|
@@ -4313,7 +4411,7 @@ export declare const AvatarsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4313
4411
|
/**
|
|
4314
4412
|
* Search and list favorited avatars by query filters.
|
|
4315
4413
|
* @summary List Favorited Avatars
|
|
4316
|
-
* @param {
|
|
4414
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
4317
4415
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
4318
4416
|
* @param {number} [n] The number of objects to return.
|
|
4319
4417
|
* @param {'ascending' | 'descending'} [order]
|
|
@@ -4329,11 +4427,11 @@ export declare const AvatarsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4329
4427
|
* @param {*} [options] Override http request option.
|
|
4330
4428
|
* @throws {RequiredError}
|
|
4331
4429
|
*/
|
|
4332
|
-
getFavoritedAvatars: (featured?:
|
|
4430
|
+
getFavoritedAvatars: (featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4333
4431
|
/**
|
|
4334
4432
|
* Search and list avatars by query filters. You can only search your own or featured avatars. It is not possible as a normal user to search other peoples avatars.
|
|
4335
4433
|
* @summary Search Avatars
|
|
4336
|
-
* @param {
|
|
4434
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
4337
4435
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
4338
4436
|
* @param {'me'} [user] Set to `me` for searching own avatars.
|
|
4339
4437
|
* @param {string} [userId] Filter by UserID.
|
|
@@ -4349,7 +4447,7 @@ export declare const AvatarsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4349
4447
|
* @param {*} [options] Override http request option.
|
|
4350
4448
|
* @throws {RequiredError}
|
|
4351
4449
|
*/
|
|
4352
|
-
searchAvatars: (featured?:
|
|
4450
|
+
searchAvatars: (featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4353
4451
|
/**
|
|
4354
4452
|
* Switches into that avatar.
|
|
4355
4453
|
* @summary Select Avatar
|
|
@@ -4408,7 +4506,7 @@ export declare const AvatarsApiFp: (configuration?: Configuration) => {
|
|
|
4408
4506
|
/**
|
|
4409
4507
|
* Search and list favorited avatars by query filters.
|
|
4410
4508
|
* @summary List Favorited Avatars
|
|
4411
|
-
* @param {
|
|
4509
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
4412
4510
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
4413
4511
|
* @param {number} [n] The number of objects to return.
|
|
4414
4512
|
* @param {'ascending' | 'descending'} [order]
|
|
@@ -4424,11 +4522,11 @@ export declare const AvatarsApiFp: (configuration?: Configuration) => {
|
|
|
4424
4522
|
* @param {*} [options] Override http request option.
|
|
4425
4523
|
* @throws {RequiredError}
|
|
4426
4524
|
*/
|
|
4427
|
-
getFavoritedAvatars(featured?:
|
|
4525
|
+
getFavoritedAvatars(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Avatar>>>;
|
|
4428
4526
|
/**
|
|
4429
4527
|
* Search and list avatars by query filters. You can only search your own or featured avatars. It is not possible as a normal user to search other peoples avatars.
|
|
4430
4528
|
* @summary Search Avatars
|
|
4431
|
-
* @param {
|
|
4529
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
4432
4530
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
4433
4531
|
* @param {'me'} [user] Set to `me` for searching own avatars.
|
|
4434
4532
|
* @param {string} [userId] Filter by UserID.
|
|
@@ -4444,7 +4542,7 @@ export declare const AvatarsApiFp: (configuration?: Configuration) => {
|
|
|
4444
4542
|
* @param {*} [options] Override http request option.
|
|
4445
4543
|
* @throws {RequiredError}
|
|
4446
4544
|
*/
|
|
4447
|
-
searchAvatars(featured?:
|
|
4545
|
+
searchAvatars(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Avatar>>>;
|
|
4448
4546
|
/**
|
|
4449
4547
|
* Switches into that avatar.
|
|
4450
4548
|
* @summary Select Avatar
|
|
@@ -4503,7 +4601,7 @@ export declare const AvatarsApiFactory: (configuration?: Configuration, basePath
|
|
|
4503
4601
|
/**
|
|
4504
4602
|
* Search and list favorited avatars by query filters.
|
|
4505
4603
|
* @summary List Favorited Avatars
|
|
4506
|
-
* @param {
|
|
4604
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
4507
4605
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
4508
4606
|
* @param {number} [n] The number of objects to return.
|
|
4509
4607
|
* @param {'ascending' | 'descending'} [order]
|
|
@@ -4519,11 +4617,11 @@ export declare const AvatarsApiFactory: (configuration?: Configuration, basePath
|
|
|
4519
4617
|
* @param {*} [options] Override http request option.
|
|
4520
4618
|
* @throws {RequiredError}
|
|
4521
4619
|
*/
|
|
4522
|
-
getFavoritedAvatars(featured?:
|
|
4620
|
+
getFavoritedAvatars(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: any): AxiosPromise<Array<Avatar>>;
|
|
4523
4621
|
/**
|
|
4524
4622
|
* Search and list avatars by query filters. You can only search your own or featured avatars. It is not possible as a normal user to search other peoples avatars.
|
|
4525
4623
|
* @summary Search Avatars
|
|
4526
|
-
* @param {
|
|
4624
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
4527
4625
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
4528
4626
|
* @param {'me'} [user] Set to `me` for searching own avatars.
|
|
4529
4627
|
* @param {string} [userId] Filter by UserID.
|
|
@@ -4539,7 +4637,7 @@ export declare const AvatarsApiFactory: (configuration?: Configuration, basePath
|
|
|
4539
4637
|
* @param {*} [options] Override http request option.
|
|
4540
4638
|
* @throws {RequiredError}
|
|
4541
4639
|
*/
|
|
4542
|
-
searchAvatars(featured?:
|
|
4640
|
+
searchAvatars(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: any): AxiosPromise<Array<Avatar>>;
|
|
4543
4641
|
/**
|
|
4544
4642
|
* Switches into that avatar.
|
|
4545
4643
|
* @summary Select Avatar
|
|
@@ -4603,7 +4701,7 @@ export declare class AvatarsApi extends BaseAPI {
|
|
|
4603
4701
|
/**
|
|
4604
4702
|
* Search and list favorited avatars by query filters.
|
|
4605
4703
|
* @summary List Favorited Avatars
|
|
4606
|
-
* @param {
|
|
4704
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
4607
4705
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
4608
4706
|
* @param {number} [n] The number of objects to return.
|
|
4609
4707
|
* @param {'ascending' | 'descending'} [order]
|
|
@@ -4620,11 +4718,11 @@ export declare class AvatarsApi extends BaseAPI {
|
|
|
4620
4718
|
* @throws {RequiredError}
|
|
4621
4719
|
* @memberof AvatarsApi
|
|
4622
4720
|
*/
|
|
4623
|
-
getFavoritedAvatars(featured?:
|
|
4721
|
+
getFavoritedAvatars(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Avatar[]>>;
|
|
4624
4722
|
/**
|
|
4625
4723
|
* Search and list avatars by query filters. You can only search your own or featured avatars. It is not possible as a normal user to search other peoples avatars.
|
|
4626
4724
|
* @summary Search Avatars
|
|
4627
|
-
* @param {
|
|
4725
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
4628
4726
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
4629
4727
|
* @param {'me'} [user] Set to `me` for searching own avatars.
|
|
4630
4728
|
* @param {string} [userId] Filter by UserID.
|
|
@@ -4641,7 +4739,7 @@ export declare class AvatarsApi extends BaseAPI {
|
|
|
4641
4739
|
* @throws {RequiredError}
|
|
4642
4740
|
* @memberof AvatarsApi
|
|
4643
4741
|
*/
|
|
4644
|
-
searchAvatars(featured?:
|
|
4742
|
+
searchAvatars(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Avatar[]>>;
|
|
4645
4743
|
/**
|
|
4646
4744
|
* Switches into that avatar.
|
|
4647
4745
|
* @summary Select Avatar
|
|
@@ -5817,6 +5915,14 @@ export declare const InstancesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
5817
5915
|
* @throws {RequiredError}
|
|
5818
5916
|
*/
|
|
5819
5917
|
getInstance: (worldId: string, instanceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5918
|
+
/**
|
|
5919
|
+
* Returns an instance. Please read [Instances Tutorial](https://vrchatapi.github.io/tutorials/instances/) for more information on Instances.
|
|
5920
|
+
* @summary Get Instance By Short Name
|
|
5921
|
+
* @param {string} shortName
|
|
5922
|
+
* @param {*} [options] Override http request option.
|
|
5923
|
+
* @throws {RequiredError}
|
|
5924
|
+
*/
|
|
5925
|
+
getInstanceByShortName: (shortName: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5820
5926
|
/**
|
|
5821
5927
|
* Returns an instance short name.
|
|
5822
5928
|
* @summary Get Instance Short Name
|
|
@@ -5850,6 +5956,14 @@ export declare const InstancesApiFp: (configuration?: Configuration) => {
|
|
|
5850
5956
|
* @throws {RequiredError}
|
|
5851
5957
|
*/
|
|
5852
5958
|
getInstance(worldId: string, instanceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Instance>>;
|
|
5959
|
+
/**
|
|
5960
|
+
* Returns an instance. Please read [Instances Tutorial](https://vrchatapi.github.io/tutorials/instances/) for more information on Instances.
|
|
5961
|
+
* @summary Get Instance By Short Name
|
|
5962
|
+
* @param {string} shortName
|
|
5963
|
+
* @param {*} [options] Override http request option.
|
|
5964
|
+
* @throws {RequiredError}
|
|
5965
|
+
*/
|
|
5966
|
+
getInstanceByShortName(shortName: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Instance>>;
|
|
5853
5967
|
/**
|
|
5854
5968
|
* Returns an instance short name.
|
|
5855
5969
|
* @summary Get Instance Short Name
|
|
@@ -5858,7 +5972,7 @@ export declare const InstancesApiFp: (configuration?: Configuration) => {
|
|
|
5858
5972
|
* @param {*} [options] Override http request option.
|
|
5859
5973
|
* @throws {RequiredError}
|
|
5860
5974
|
*/
|
|
5861
|
-
getShortName(worldId: string, instanceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5975
|
+
getShortName(worldId: string, instanceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InstanceShortNameResponse>>;
|
|
5862
5976
|
/**
|
|
5863
5977
|
* Sends an invite to the instance to yourself.
|
|
5864
5978
|
* @summary Send Self Invite
|
|
@@ -5883,6 +5997,14 @@ export declare const InstancesApiFactory: (configuration?: Configuration, basePa
|
|
|
5883
5997
|
* @throws {RequiredError}
|
|
5884
5998
|
*/
|
|
5885
5999
|
getInstance(worldId: string, instanceId: string, options?: any): AxiosPromise<Instance>;
|
|
6000
|
+
/**
|
|
6001
|
+
* Returns an instance. Please read [Instances Tutorial](https://vrchatapi.github.io/tutorials/instances/) for more information on Instances.
|
|
6002
|
+
* @summary Get Instance By Short Name
|
|
6003
|
+
* @param {string} shortName
|
|
6004
|
+
* @param {*} [options] Override http request option.
|
|
6005
|
+
* @throws {RequiredError}
|
|
6006
|
+
*/
|
|
6007
|
+
getInstanceByShortName(shortName: string, options?: any): AxiosPromise<Instance>;
|
|
5886
6008
|
/**
|
|
5887
6009
|
* Returns an instance short name.
|
|
5888
6010
|
* @summary Get Instance Short Name
|
|
@@ -5891,7 +6013,7 @@ export declare const InstancesApiFactory: (configuration?: Configuration, basePa
|
|
|
5891
6013
|
* @param {*} [options] Override http request option.
|
|
5892
6014
|
* @throws {RequiredError}
|
|
5893
6015
|
*/
|
|
5894
|
-
getShortName(worldId: string, instanceId: string, options?: any): AxiosPromise<
|
|
6016
|
+
getShortName(worldId: string, instanceId: string, options?: any): AxiosPromise<InstanceShortNameResponse>;
|
|
5895
6017
|
/**
|
|
5896
6018
|
* Sends an invite to the instance to yourself.
|
|
5897
6019
|
* @summary Send Self Invite
|
|
@@ -5919,6 +6041,15 @@ export declare class InstancesApi extends BaseAPI {
|
|
|
5919
6041
|
* @memberof InstancesApi
|
|
5920
6042
|
*/
|
|
5921
6043
|
getInstance(worldId: string, instanceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Instance>>;
|
|
6044
|
+
/**
|
|
6045
|
+
* Returns an instance. Please read [Instances Tutorial](https://vrchatapi.github.io/tutorials/instances/) for more information on Instances.
|
|
6046
|
+
* @summary Get Instance By Short Name
|
|
6047
|
+
* @param {string} shortName
|
|
6048
|
+
* @param {*} [options] Override http request option.
|
|
6049
|
+
* @throws {RequiredError}
|
|
6050
|
+
* @memberof InstancesApi
|
|
6051
|
+
*/
|
|
6052
|
+
getInstanceByShortName(shortName: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Instance>>;
|
|
5922
6053
|
/**
|
|
5923
6054
|
* Returns an instance short name.
|
|
5924
6055
|
* @summary Get Instance Short Name
|
|
@@ -5928,7 +6059,7 @@ export declare class InstancesApi extends BaseAPI {
|
|
|
5928
6059
|
* @throws {RequiredError}
|
|
5929
6060
|
* @memberof InstancesApi
|
|
5930
6061
|
*/
|
|
5931
|
-
getShortName(worldId: string, instanceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
6062
|
+
getShortName(worldId: string, instanceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InstanceShortNameResponse>>;
|
|
5932
6063
|
/**
|
|
5933
6064
|
* Sends an invite to the instance to yourself.
|
|
5934
6065
|
* @summary Send Self Invite
|
|
@@ -5964,6 +6095,15 @@ export declare const InviteApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
5964
6095
|
* @throws {RequiredError}
|
|
5965
6096
|
*/
|
|
5966
6097
|
getInviteMessages: (userId: string, messageType: 'message' | 'response' | 'request' | 'requestResponse', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6098
|
+
/**
|
|
6099
|
+
* Sends self an invite to an instance
|
|
6100
|
+
* @summary Invite Myself To Instance
|
|
6101
|
+
* @param {string} worldId
|
|
6102
|
+
* @param {string} instanceId
|
|
6103
|
+
* @param {*} [options] Override http request option.
|
|
6104
|
+
* @throws {RequiredError}
|
|
6105
|
+
*/
|
|
6106
|
+
inviteMyselfTo: (worldId: string, instanceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5967
6107
|
/**
|
|
5968
6108
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
5969
6109
|
* @summary Invite User
|
|
@@ -6037,6 +6177,15 @@ export declare const InviteApiFp: (configuration?: Configuration) => {
|
|
|
6037
6177
|
* @throws {RequiredError}
|
|
6038
6178
|
*/
|
|
6039
6179
|
getInviteMessages(userId: string, messageType: 'message' | 'response' | 'request' | 'requestResponse', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InviteMessage>>>;
|
|
6180
|
+
/**
|
|
6181
|
+
* Sends self an invite to an instance
|
|
6182
|
+
* @summary Invite Myself To Instance
|
|
6183
|
+
* @param {string} worldId
|
|
6184
|
+
* @param {string} instanceId
|
|
6185
|
+
* @param {*} [options] Override http request option.
|
|
6186
|
+
* @throws {RequiredError}
|
|
6187
|
+
*/
|
|
6188
|
+
inviteMyselfTo(worldId: string, instanceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SentNotification>>;
|
|
6040
6189
|
/**
|
|
6041
6190
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
6042
6191
|
* @summary Invite User
|
|
@@ -6045,7 +6194,7 @@ export declare const InviteApiFp: (configuration?: Configuration) => {
|
|
|
6045
6194
|
* @param {*} [options] Override http request option.
|
|
6046
6195
|
* @throws {RequiredError}
|
|
6047
6196
|
*/
|
|
6048
|
-
inviteUser(userId: string, inviteRequest?: InviteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6197
|
+
inviteUser(userId: string, inviteRequest?: InviteRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SentNotification>>;
|
|
6049
6198
|
/**
|
|
6050
6199
|
* Requests an invite from a user. Returns the Notification of type `requestInvite` that was sent.
|
|
6051
6200
|
* @summary Request Invite
|
|
@@ -6110,6 +6259,15 @@ export declare const InviteApiFactory: (configuration?: Configuration, basePath?
|
|
|
6110
6259
|
* @throws {RequiredError}
|
|
6111
6260
|
*/
|
|
6112
6261
|
getInviteMessages(userId: string, messageType: 'message' | 'response' | 'request' | 'requestResponse', options?: any): AxiosPromise<Array<InviteMessage>>;
|
|
6262
|
+
/**
|
|
6263
|
+
* Sends self an invite to an instance
|
|
6264
|
+
* @summary Invite Myself To Instance
|
|
6265
|
+
* @param {string} worldId
|
|
6266
|
+
* @param {string} instanceId
|
|
6267
|
+
* @param {*} [options] Override http request option.
|
|
6268
|
+
* @throws {RequiredError}
|
|
6269
|
+
*/
|
|
6270
|
+
inviteMyselfTo(worldId: string, instanceId: string, options?: any): AxiosPromise<SentNotification>;
|
|
6113
6271
|
/**
|
|
6114
6272
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
6115
6273
|
* @summary Invite User
|
|
@@ -6118,7 +6276,7 @@ export declare const InviteApiFactory: (configuration?: Configuration, basePath?
|
|
|
6118
6276
|
* @param {*} [options] Override http request option.
|
|
6119
6277
|
* @throws {RequiredError}
|
|
6120
6278
|
*/
|
|
6121
|
-
inviteUser(userId: string, inviteRequest?: InviteRequest, options?: any): AxiosPromise<
|
|
6279
|
+
inviteUser(userId: string, inviteRequest?: InviteRequest, options?: any): AxiosPromise<SentNotification>;
|
|
6122
6280
|
/**
|
|
6123
6281
|
* Requests an invite from a user. Returns the Notification of type `requestInvite` that was sent.
|
|
6124
6282
|
* @summary Request Invite
|
|
@@ -6187,6 +6345,16 @@ export declare class InviteApi extends BaseAPI {
|
|
|
6187
6345
|
* @memberof InviteApi
|
|
6188
6346
|
*/
|
|
6189
6347
|
getInviteMessages(userId: string, messageType: 'message' | 'response' | 'request' | 'requestResponse', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteMessage[]>>;
|
|
6348
|
+
/**
|
|
6349
|
+
* Sends self an invite to an instance
|
|
6350
|
+
* @summary Invite Myself To Instance
|
|
6351
|
+
* @param {string} worldId
|
|
6352
|
+
* @param {string} instanceId
|
|
6353
|
+
* @param {*} [options] Override http request option.
|
|
6354
|
+
* @throws {RequiredError}
|
|
6355
|
+
* @memberof InviteApi
|
|
6356
|
+
*/
|
|
6357
|
+
inviteMyselfTo(worldId: string, instanceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SentNotification>>;
|
|
6190
6358
|
/**
|
|
6191
6359
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
6192
6360
|
* @summary Invite User
|
|
@@ -6196,7 +6364,7 @@ export declare class InviteApi extends BaseAPI {
|
|
|
6196
6364
|
* @throws {RequiredError}
|
|
6197
6365
|
* @memberof InviteApi
|
|
6198
6366
|
*/
|
|
6199
|
-
inviteUser(userId: string, inviteRequest?: InviteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
6367
|
+
inviteUser(userId: string, inviteRequest?: InviteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SentNotification>>;
|
|
6200
6368
|
/**
|
|
6201
6369
|
* Requests an invite from a user. Returns the Notification of type `requestInvite` that was sent.
|
|
6202
6370
|
* @summary Request Invite
|
|
@@ -7215,7 +7383,7 @@ export declare const WorldsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7215
7383
|
/**
|
|
7216
7384
|
* Search and list currently Active worlds by query filters.
|
|
7217
7385
|
* @summary List Active Worlds
|
|
7218
|
-
* @param {
|
|
7386
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
7219
7387
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
7220
7388
|
* @param {number} [n] The number of objects to return.
|
|
7221
7389
|
* @param {'ascending' | 'descending'} [order]
|
|
@@ -7230,11 +7398,11 @@ export declare const WorldsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7230
7398
|
* @param {*} [options] Override http request option.
|
|
7231
7399
|
* @throws {RequiredError}
|
|
7232
7400
|
*/
|
|
7233
|
-
getActiveWorlds: (featured?:
|
|
7401
|
+
getActiveWorlds: (featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7234
7402
|
/**
|
|
7235
7403
|
* Search and list favorited worlds by query filters.
|
|
7236
7404
|
* @summary List Favorited Worlds
|
|
7237
|
-
* @param {
|
|
7405
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
7238
7406
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
7239
7407
|
* @param {number} [n] The number of objects to return.
|
|
7240
7408
|
* @param {'ascending' | 'descending'} [order]
|
|
@@ -7250,11 +7418,11 @@ export declare const WorldsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7250
7418
|
* @param {*} [options] Override http request option.
|
|
7251
7419
|
* @throws {RequiredError}
|
|
7252
7420
|
*/
|
|
7253
|
-
getFavoritedWorlds: (featured?:
|
|
7421
|
+
getFavoritedWorlds: (featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7254
7422
|
/**
|
|
7255
7423
|
* Search and list recently visited worlds by query filters.
|
|
7256
7424
|
* @summary List Recent Worlds
|
|
7257
|
-
* @param {
|
|
7425
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
7258
7426
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
7259
7427
|
* @param {number} [n] The number of objects to return.
|
|
7260
7428
|
* @param {'ascending' | 'descending'} [order]
|
|
@@ -7270,7 +7438,7 @@ export declare const WorldsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7270
7438
|
* @param {*} [options] Override http request option.
|
|
7271
7439
|
* @throws {RequiredError}
|
|
7272
7440
|
*/
|
|
7273
|
-
getRecentWorlds: (featured?:
|
|
7441
|
+
getRecentWorlds: (featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7274
7442
|
/**
|
|
7275
7443
|
* Get information about a specific World.
|
|
7276
7444
|
* @summary Get World by ID
|
|
@@ -7316,7 +7484,7 @@ export declare const WorldsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7316
7484
|
/**
|
|
7317
7485
|
* Search and list any worlds by query filters.
|
|
7318
7486
|
* @summary Search All Worlds
|
|
7319
|
-
* @param {
|
|
7487
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
7320
7488
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
7321
7489
|
* @param {'me'} [user] Set to `me` for searching own worlds.
|
|
7322
7490
|
* @param {string} [userId] Filter by UserID.
|
|
@@ -7333,7 +7501,7 @@ export declare const WorldsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7333
7501
|
* @param {*} [options] Override http request option.
|
|
7334
7502
|
* @throws {RequiredError}
|
|
7335
7503
|
*/
|
|
7336
|
-
searchWorlds: (featured?:
|
|
7504
|
+
searchWorlds: (featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7337
7505
|
/**
|
|
7338
7506
|
* Unpublish a world.
|
|
7339
7507
|
* @summary Unpublish World
|
|
@@ -7376,7 +7544,7 @@ export declare const WorldsApiFp: (configuration?: Configuration) => {
|
|
|
7376
7544
|
/**
|
|
7377
7545
|
* Search and list currently Active worlds by query filters.
|
|
7378
7546
|
* @summary List Active Worlds
|
|
7379
|
-
* @param {
|
|
7547
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
7380
7548
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
7381
7549
|
* @param {number} [n] The number of objects to return.
|
|
7382
7550
|
* @param {'ascending' | 'descending'} [order]
|
|
@@ -7391,11 +7559,11 @@ export declare const WorldsApiFp: (configuration?: Configuration) => {
|
|
|
7391
7559
|
* @param {*} [options] Override http request option.
|
|
7392
7560
|
* @throws {RequiredError}
|
|
7393
7561
|
*/
|
|
7394
|
-
getActiveWorlds(featured?:
|
|
7562
|
+
getActiveWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedWorld>>>;
|
|
7395
7563
|
/**
|
|
7396
7564
|
* Search and list favorited worlds by query filters.
|
|
7397
7565
|
* @summary List Favorited Worlds
|
|
7398
|
-
* @param {
|
|
7566
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
7399
7567
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
7400
7568
|
* @param {number} [n] The number of objects to return.
|
|
7401
7569
|
* @param {'ascending' | 'descending'} [order]
|
|
@@ -7411,11 +7579,11 @@ export declare const WorldsApiFp: (configuration?: Configuration) => {
|
|
|
7411
7579
|
* @param {*} [options] Override http request option.
|
|
7412
7580
|
* @throws {RequiredError}
|
|
7413
7581
|
*/
|
|
7414
|
-
getFavoritedWorlds(featured?:
|
|
7582
|
+
getFavoritedWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedWorld>>>;
|
|
7415
7583
|
/**
|
|
7416
7584
|
* Search and list recently visited worlds by query filters.
|
|
7417
7585
|
* @summary List Recent Worlds
|
|
7418
|
-
* @param {
|
|
7586
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
7419
7587
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
7420
7588
|
* @param {number} [n] The number of objects to return.
|
|
7421
7589
|
* @param {'ascending' | 'descending'} [order]
|
|
@@ -7431,7 +7599,7 @@ export declare const WorldsApiFp: (configuration?: Configuration) => {
|
|
|
7431
7599
|
* @param {*} [options] Override http request option.
|
|
7432
7600
|
* @throws {RequiredError}
|
|
7433
7601
|
*/
|
|
7434
|
-
getRecentWorlds(featured?:
|
|
7602
|
+
getRecentWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedWorld>>>;
|
|
7435
7603
|
/**
|
|
7436
7604
|
* Get information about a specific World.
|
|
7437
7605
|
* @summary Get World by ID
|
|
@@ -7477,7 +7645,7 @@ export declare const WorldsApiFp: (configuration?: Configuration) => {
|
|
|
7477
7645
|
/**
|
|
7478
7646
|
* Search and list any worlds by query filters.
|
|
7479
7647
|
* @summary Search All Worlds
|
|
7480
|
-
* @param {
|
|
7648
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
7481
7649
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
7482
7650
|
* @param {'me'} [user] Set to `me` for searching own worlds.
|
|
7483
7651
|
* @param {string} [userId] Filter by UserID.
|
|
@@ -7494,7 +7662,7 @@ export declare const WorldsApiFp: (configuration?: Configuration) => {
|
|
|
7494
7662
|
* @param {*} [options] Override http request option.
|
|
7495
7663
|
* @throws {RequiredError}
|
|
7496
7664
|
*/
|
|
7497
|
-
searchWorlds(featured?:
|
|
7665
|
+
searchWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedWorld>>>;
|
|
7498
7666
|
/**
|
|
7499
7667
|
* Unpublish a world.
|
|
7500
7668
|
* @summary Unpublish World
|
|
@@ -7537,7 +7705,7 @@ export declare const WorldsApiFactory: (configuration?: Configuration, basePath?
|
|
|
7537
7705
|
/**
|
|
7538
7706
|
* Search and list currently Active worlds by query filters.
|
|
7539
7707
|
* @summary List Active Worlds
|
|
7540
|
-
* @param {
|
|
7708
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
7541
7709
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
7542
7710
|
* @param {number} [n] The number of objects to return.
|
|
7543
7711
|
* @param {'ascending' | 'descending'} [order]
|
|
@@ -7552,11 +7720,11 @@ export declare const WorldsApiFactory: (configuration?: Configuration, basePath?
|
|
|
7552
7720
|
* @param {*} [options] Override http request option.
|
|
7553
7721
|
* @throws {RequiredError}
|
|
7554
7722
|
*/
|
|
7555
|
-
getActiveWorlds(featured?:
|
|
7723
|
+
getActiveWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: any): AxiosPromise<Array<LimitedWorld>>;
|
|
7556
7724
|
/**
|
|
7557
7725
|
* Search and list favorited worlds by query filters.
|
|
7558
7726
|
* @summary List Favorited Worlds
|
|
7559
|
-
* @param {
|
|
7727
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
7560
7728
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
7561
7729
|
* @param {number} [n] The number of objects to return.
|
|
7562
7730
|
* @param {'ascending' | 'descending'} [order]
|
|
@@ -7572,11 +7740,11 @@ export declare const WorldsApiFactory: (configuration?: Configuration, basePath?
|
|
|
7572
7740
|
* @param {*} [options] Override http request option.
|
|
7573
7741
|
* @throws {RequiredError}
|
|
7574
7742
|
*/
|
|
7575
|
-
getFavoritedWorlds(featured?:
|
|
7743
|
+
getFavoritedWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: any): AxiosPromise<Array<LimitedWorld>>;
|
|
7576
7744
|
/**
|
|
7577
7745
|
* Search and list recently visited worlds by query filters.
|
|
7578
7746
|
* @summary List Recent Worlds
|
|
7579
|
-
* @param {
|
|
7747
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
7580
7748
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
7581
7749
|
* @param {number} [n] The number of objects to return.
|
|
7582
7750
|
* @param {'ascending' | 'descending'} [order]
|
|
@@ -7592,7 +7760,7 @@ export declare const WorldsApiFactory: (configuration?: Configuration, basePath?
|
|
|
7592
7760
|
* @param {*} [options] Override http request option.
|
|
7593
7761
|
* @throws {RequiredError}
|
|
7594
7762
|
*/
|
|
7595
|
-
getRecentWorlds(featured?:
|
|
7763
|
+
getRecentWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: any): AxiosPromise<Array<LimitedWorld>>;
|
|
7596
7764
|
/**
|
|
7597
7765
|
* Get information about a specific World.
|
|
7598
7766
|
* @summary Get World by ID
|
|
@@ -7638,7 +7806,7 @@ export declare const WorldsApiFactory: (configuration?: Configuration, basePath?
|
|
|
7638
7806
|
/**
|
|
7639
7807
|
* Search and list any worlds by query filters.
|
|
7640
7808
|
* @summary Search All Worlds
|
|
7641
|
-
* @param {
|
|
7809
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
7642
7810
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
7643
7811
|
* @param {'me'} [user] Set to `me` for searching own worlds.
|
|
7644
7812
|
* @param {string} [userId] Filter by UserID.
|
|
@@ -7655,7 +7823,7 @@ export declare const WorldsApiFactory: (configuration?: Configuration, basePath?
|
|
|
7655
7823
|
* @param {*} [options] Override http request option.
|
|
7656
7824
|
* @throws {RequiredError}
|
|
7657
7825
|
*/
|
|
7658
|
-
searchWorlds(featured?:
|
|
7826
|
+
searchWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: any): AxiosPromise<Array<LimitedWorld>>;
|
|
7659
7827
|
/**
|
|
7660
7828
|
* Unpublish a world.
|
|
7661
7829
|
* @summary Unpublish World
|
|
@@ -7702,7 +7870,7 @@ export declare class WorldsApi extends BaseAPI {
|
|
|
7702
7870
|
/**
|
|
7703
7871
|
* Search and list currently Active worlds by query filters.
|
|
7704
7872
|
* @summary List Active Worlds
|
|
7705
|
-
* @param {
|
|
7873
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
7706
7874
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
7707
7875
|
* @param {number} [n] The number of objects to return.
|
|
7708
7876
|
* @param {'ascending' | 'descending'} [order]
|
|
@@ -7718,11 +7886,11 @@ export declare class WorldsApi extends BaseAPI {
|
|
|
7718
7886
|
* @throws {RequiredError}
|
|
7719
7887
|
* @memberof WorldsApi
|
|
7720
7888
|
*/
|
|
7721
|
-
getActiveWorlds(featured?:
|
|
7889
|
+
getActiveWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LimitedWorld[]>>;
|
|
7722
7890
|
/**
|
|
7723
7891
|
* Search and list favorited worlds by query filters.
|
|
7724
7892
|
* @summary List Favorited Worlds
|
|
7725
|
-
* @param {
|
|
7893
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
7726
7894
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
7727
7895
|
* @param {number} [n] The number of objects to return.
|
|
7728
7896
|
* @param {'ascending' | 'descending'} [order]
|
|
@@ -7739,11 +7907,11 @@ export declare class WorldsApi extends BaseAPI {
|
|
|
7739
7907
|
* @throws {RequiredError}
|
|
7740
7908
|
* @memberof WorldsApi
|
|
7741
7909
|
*/
|
|
7742
|
-
getFavoritedWorlds(featured?:
|
|
7910
|
+
getFavoritedWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LimitedWorld[]>>;
|
|
7743
7911
|
/**
|
|
7744
7912
|
* Search and list recently visited worlds by query filters.
|
|
7745
7913
|
* @summary List Recent Worlds
|
|
7746
|
-
* @param {
|
|
7914
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
7747
7915
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
7748
7916
|
* @param {number} [n] The number of objects to return.
|
|
7749
7917
|
* @param {'ascending' | 'descending'} [order]
|
|
@@ -7760,7 +7928,7 @@ export declare class WorldsApi extends BaseAPI {
|
|
|
7760
7928
|
* @throws {RequiredError}
|
|
7761
7929
|
* @memberof WorldsApi
|
|
7762
7930
|
*/
|
|
7763
|
-
getRecentWorlds(featured?:
|
|
7931
|
+
getRecentWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LimitedWorld[]>>;
|
|
7764
7932
|
/**
|
|
7765
7933
|
* Get information about a specific World.
|
|
7766
7934
|
* @summary Get World by ID
|
|
@@ -7811,7 +7979,7 @@ export declare class WorldsApi extends BaseAPI {
|
|
|
7811
7979
|
/**
|
|
7812
7980
|
* Search and list any worlds by query filters.
|
|
7813
7981
|
* @summary Search All Worlds
|
|
7814
|
-
* @param {
|
|
7982
|
+
* @param {boolean} [featured] Filters on featured results.
|
|
7815
7983
|
* @param {'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name'} [sort]
|
|
7816
7984
|
* @param {'me'} [user] Set to `me` for searching own worlds.
|
|
7817
7985
|
* @param {string} [userId] Filter by UserID.
|
|
@@ -7829,7 +7997,7 @@ export declare class WorldsApi extends BaseAPI {
|
|
|
7829
7997
|
* @throws {RequiredError}
|
|
7830
7998
|
* @memberof WorldsApi
|
|
7831
7999
|
*/
|
|
7832
|
-
searchWorlds(featured?:
|
|
8000
|
+
searchWorlds(featured?: boolean, sort?: 'popularity' | 'heat' | 'trust' | 'shuffle' | 'random' | 'favorites' | 'reportScore' | 'reportCount' | 'publicationDate' | 'labsPublicationDate' | 'created' | '_created_at' | 'updated' | '_updated_at' | 'order' | 'relevance' | 'magic' | 'name', user?: 'me', userId?: string, n?: number, order?: 'ascending' | 'descending', offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: 'public' | 'private' | 'hidden' | 'all', maxUnityVersion?: string, minUnityVersion?: string, platform?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LimitedWorld[]>>;
|
|
7833
8001
|
/**
|
|
7834
8002
|
* Unpublish a world.
|
|
7835
8003
|
* @summary Unpublish World
|