vrchat 1.18.5 → 1.18.7
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 +663 -176
- package/base.ts +2 -2
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +489 -87
- package/dist/api.js +350 -154
- package/dist/base.d.ts +1 -1
- package/dist/base.js +2 -2
- 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.18.
|
|
4
|
+
* The version of the OpenAPI document: 1.18.7
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2759,6 +2759,181 @@ export declare const FavoriteType: {
|
|
|
2759
2759
|
readonly Avatar: "avatar";
|
|
2760
2760
|
};
|
|
2761
2761
|
export type FavoriteType = typeof FavoriteType[keyof typeof FavoriteType];
|
|
2762
|
+
/**
|
|
2763
|
+
*
|
|
2764
|
+
* @export
|
|
2765
|
+
* @interface FavoritedWorld
|
|
2766
|
+
*/
|
|
2767
|
+
export interface FavoritedWorld {
|
|
2768
|
+
/**
|
|
2769
|
+
* 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.
|
|
2770
|
+
* @type {string}
|
|
2771
|
+
* @memberof FavoritedWorld
|
|
2772
|
+
*/
|
|
2773
|
+
'authorId': string;
|
|
2774
|
+
/**
|
|
2775
|
+
*
|
|
2776
|
+
* @type {string}
|
|
2777
|
+
* @memberof FavoritedWorld
|
|
2778
|
+
*/
|
|
2779
|
+
'authorName': string;
|
|
2780
|
+
/**
|
|
2781
|
+
*
|
|
2782
|
+
* @type {number}
|
|
2783
|
+
* @memberof FavoritedWorld
|
|
2784
|
+
*/
|
|
2785
|
+
'capacity': number;
|
|
2786
|
+
/**
|
|
2787
|
+
*
|
|
2788
|
+
* @type {string}
|
|
2789
|
+
* @memberof FavoritedWorld
|
|
2790
|
+
*/
|
|
2791
|
+
'description': string;
|
|
2792
|
+
/**
|
|
2793
|
+
*
|
|
2794
|
+
* @type {number}
|
|
2795
|
+
* @memberof FavoritedWorld
|
|
2796
|
+
*/
|
|
2797
|
+
'recommendedCapacity'?: number;
|
|
2798
|
+
/**
|
|
2799
|
+
*
|
|
2800
|
+
* @type {string}
|
|
2801
|
+
* @memberof FavoritedWorld
|
|
2802
|
+
*/
|
|
2803
|
+
'created_at': string;
|
|
2804
|
+
/**
|
|
2805
|
+
*
|
|
2806
|
+
* @type {number}
|
|
2807
|
+
* @memberof FavoritedWorld
|
|
2808
|
+
*/
|
|
2809
|
+
'favorites': number;
|
|
2810
|
+
/**
|
|
2811
|
+
*
|
|
2812
|
+
* @type {string}
|
|
2813
|
+
* @memberof FavoritedWorld
|
|
2814
|
+
*/
|
|
2815
|
+
'favoriteGroup': string;
|
|
2816
|
+
/**
|
|
2817
|
+
*
|
|
2818
|
+
* @type {string}
|
|
2819
|
+
* @memberof FavoritedWorld
|
|
2820
|
+
*/
|
|
2821
|
+
'favoriteId': string;
|
|
2822
|
+
/**
|
|
2823
|
+
*
|
|
2824
|
+
* @type {boolean}
|
|
2825
|
+
* @memberof FavoritedWorld
|
|
2826
|
+
*/
|
|
2827
|
+
'featured': boolean;
|
|
2828
|
+
/**
|
|
2829
|
+
*
|
|
2830
|
+
* @type {number}
|
|
2831
|
+
* @memberof FavoritedWorld
|
|
2832
|
+
*/
|
|
2833
|
+
'visits'?: number;
|
|
2834
|
+
/**
|
|
2835
|
+
*
|
|
2836
|
+
* @type {number}
|
|
2837
|
+
* @memberof FavoritedWorld
|
|
2838
|
+
*/
|
|
2839
|
+
'heat': number;
|
|
2840
|
+
/**
|
|
2841
|
+
* WorldID be \"offline\" on User profiles if you are not friends with that user.
|
|
2842
|
+
* @type {string}
|
|
2843
|
+
* @memberof FavoritedWorld
|
|
2844
|
+
*/
|
|
2845
|
+
'id': string;
|
|
2846
|
+
/**
|
|
2847
|
+
*
|
|
2848
|
+
* @type {string}
|
|
2849
|
+
* @memberof FavoritedWorld
|
|
2850
|
+
*/
|
|
2851
|
+
'imageUrl': string;
|
|
2852
|
+
/**
|
|
2853
|
+
*
|
|
2854
|
+
* @type {string}
|
|
2855
|
+
* @memberof FavoritedWorld
|
|
2856
|
+
*/
|
|
2857
|
+
'labsPublicationDate': string;
|
|
2858
|
+
/**
|
|
2859
|
+
*
|
|
2860
|
+
* @type {string}
|
|
2861
|
+
* @memberof FavoritedWorld
|
|
2862
|
+
*/
|
|
2863
|
+
'name': string;
|
|
2864
|
+
/**
|
|
2865
|
+
*
|
|
2866
|
+
* @type {number}
|
|
2867
|
+
* @memberof FavoritedWorld
|
|
2868
|
+
*/
|
|
2869
|
+
'occupants': number;
|
|
2870
|
+
/**
|
|
2871
|
+
*
|
|
2872
|
+
* @type {string}
|
|
2873
|
+
* @memberof FavoritedWorld
|
|
2874
|
+
*/
|
|
2875
|
+
'organization': string;
|
|
2876
|
+
/**
|
|
2877
|
+
*
|
|
2878
|
+
* @type {number}
|
|
2879
|
+
* @memberof FavoritedWorld
|
|
2880
|
+
*/
|
|
2881
|
+
'popularity': number;
|
|
2882
|
+
/**
|
|
2883
|
+
*
|
|
2884
|
+
* @type {string}
|
|
2885
|
+
* @memberof FavoritedWorld
|
|
2886
|
+
*/
|
|
2887
|
+
'previewYoutubeId'?: string | null;
|
|
2888
|
+
/**
|
|
2889
|
+
*
|
|
2890
|
+
* @type {string}
|
|
2891
|
+
* @memberof FavoritedWorld
|
|
2892
|
+
*/
|
|
2893
|
+
'publicationDate': string;
|
|
2894
|
+
/**
|
|
2895
|
+
*
|
|
2896
|
+
* @type {ReleaseStatus}
|
|
2897
|
+
* @memberof FavoritedWorld
|
|
2898
|
+
*/
|
|
2899
|
+
'releaseStatus': ReleaseStatus;
|
|
2900
|
+
/**
|
|
2901
|
+
*
|
|
2902
|
+
* @type {Array<string>}
|
|
2903
|
+
* @memberof FavoritedWorld
|
|
2904
|
+
*/
|
|
2905
|
+
'tags': Array<string>;
|
|
2906
|
+
/**
|
|
2907
|
+
*
|
|
2908
|
+
* @type {string}
|
|
2909
|
+
* @memberof FavoritedWorld
|
|
2910
|
+
*/
|
|
2911
|
+
'thumbnailImageUrl': string;
|
|
2912
|
+
/**
|
|
2913
|
+
*
|
|
2914
|
+
* @type {Array<UnityPackage>}
|
|
2915
|
+
* @memberof FavoritedWorld
|
|
2916
|
+
*/
|
|
2917
|
+
'unityPackages': Array<UnityPackage>;
|
|
2918
|
+
/**
|
|
2919
|
+
*
|
|
2920
|
+
* @type {string}
|
|
2921
|
+
* @memberof FavoritedWorld
|
|
2922
|
+
*/
|
|
2923
|
+
'updated_at': string;
|
|
2924
|
+
/**
|
|
2925
|
+
*
|
|
2926
|
+
* @type {Array<string>}
|
|
2927
|
+
* @memberof FavoritedWorld
|
|
2928
|
+
*/
|
|
2929
|
+
'udonProducts'?: Array<string>;
|
|
2930
|
+
/**
|
|
2931
|
+
*
|
|
2932
|
+
* @type {number}
|
|
2933
|
+
* @memberof FavoritedWorld
|
|
2934
|
+
*/
|
|
2935
|
+
'version': number;
|
|
2936
|
+
}
|
|
2762
2937
|
/**
|
|
2763
2938
|
*
|
|
2764
2939
|
* @export
|
|
@@ -3592,13 +3767,13 @@ export interface GroupMember {
|
|
|
3592
3767
|
* @type {string}
|
|
3593
3768
|
* @memberof GroupMember
|
|
3594
3769
|
*/
|
|
3595
|
-
'acceptedByDisplayName'?: string;
|
|
3770
|
+
'acceptedByDisplayName'?: string | null;
|
|
3596
3771
|
/**
|
|
3597
|
-
*
|
|
3772
|
+
*
|
|
3598
3773
|
* @type {string}
|
|
3599
3774
|
* @memberof GroupMember
|
|
3600
3775
|
*/
|
|
3601
|
-
'acceptedById'?: string;
|
|
3776
|
+
'acceptedById'?: string | null;
|
|
3602
3777
|
/**
|
|
3603
3778
|
*
|
|
3604
3779
|
* @type {string}
|
|
@@ -3796,11 +3971,11 @@ export interface GroupMyMember {
|
|
|
3796
3971
|
*/
|
|
3797
3972
|
'acceptedByDisplayName'?: string | null;
|
|
3798
3973
|
/**
|
|
3799
|
-
*
|
|
3974
|
+
*
|
|
3800
3975
|
* @type {string}
|
|
3801
3976
|
* @memberof GroupMyMember
|
|
3802
3977
|
*/
|
|
3803
|
-
'acceptedById'?: string;
|
|
3978
|
+
'acceptedById'?: string | null;
|
|
3804
3979
|
/**
|
|
3805
3980
|
*
|
|
3806
3981
|
* @type {string}
|
|
@@ -4731,6 +4906,104 @@ export interface InviteResponse {
|
|
|
4731
4906
|
*/
|
|
4732
4907
|
'responseSlot': number;
|
|
4733
4908
|
}
|
|
4909
|
+
/**
|
|
4910
|
+
*
|
|
4911
|
+
* @export
|
|
4912
|
+
* @interface Jam
|
|
4913
|
+
*/
|
|
4914
|
+
export interface Jam {
|
|
4915
|
+
/**
|
|
4916
|
+
*
|
|
4917
|
+
* @type {string}
|
|
4918
|
+
* @memberof Jam
|
|
4919
|
+
*/
|
|
4920
|
+
'description': string;
|
|
4921
|
+
/**
|
|
4922
|
+
*
|
|
4923
|
+
* @type {string}
|
|
4924
|
+
* @memberof Jam
|
|
4925
|
+
*/
|
|
4926
|
+
'id': string;
|
|
4927
|
+
/**
|
|
4928
|
+
*
|
|
4929
|
+
* @type {boolean}
|
|
4930
|
+
* @memberof Jam
|
|
4931
|
+
*/
|
|
4932
|
+
'isVisible': boolean;
|
|
4933
|
+
/**
|
|
4934
|
+
*
|
|
4935
|
+
* @type {string}
|
|
4936
|
+
* @memberof Jam
|
|
4937
|
+
*/
|
|
4938
|
+
'moreInfo': string;
|
|
4939
|
+
/**
|
|
4940
|
+
* One of: - submissions_open - closed
|
|
4941
|
+
* @type {string}
|
|
4942
|
+
* @memberof Jam
|
|
4943
|
+
*/
|
|
4944
|
+
'state': string;
|
|
4945
|
+
/**
|
|
4946
|
+
*
|
|
4947
|
+
* @type {JamStateChangeDates}
|
|
4948
|
+
* @memberof Jam
|
|
4949
|
+
*/
|
|
4950
|
+
'stateChangeDates': JamStateChangeDates;
|
|
4951
|
+
/**
|
|
4952
|
+
*
|
|
4953
|
+
* @type {string}
|
|
4954
|
+
* @memberof Jam
|
|
4955
|
+
*/
|
|
4956
|
+
'submissionContentGateDate': string | null;
|
|
4957
|
+
/**
|
|
4958
|
+
*
|
|
4959
|
+
* @type {boolean}
|
|
4960
|
+
* @memberof Jam
|
|
4961
|
+
*/
|
|
4962
|
+
'submissionContentGated': boolean;
|
|
4963
|
+
/**
|
|
4964
|
+
*
|
|
4965
|
+
* @type {string}
|
|
4966
|
+
* @memberof Jam
|
|
4967
|
+
*/
|
|
4968
|
+
'title': string;
|
|
4969
|
+
/**
|
|
4970
|
+
*
|
|
4971
|
+
* @type {string}
|
|
4972
|
+
* @memberof Jam
|
|
4973
|
+
*/
|
|
4974
|
+
'updated_at': string;
|
|
4975
|
+
}
|
|
4976
|
+
/**
|
|
4977
|
+
*
|
|
4978
|
+
* @export
|
|
4979
|
+
* @interface JamStateChangeDates
|
|
4980
|
+
*/
|
|
4981
|
+
export interface JamStateChangeDates {
|
|
4982
|
+
/**
|
|
4983
|
+
*
|
|
4984
|
+
* @type {string}
|
|
4985
|
+
* @memberof JamStateChangeDates
|
|
4986
|
+
*/
|
|
4987
|
+
'closed'?: string | null;
|
|
4988
|
+
/**
|
|
4989
|
+
*
|
|
4990
|
+
* @type {string}
|
|
4991
|
+
* @memberof JamStateChangeDates
|
|
4992
|
+
*/
|
|
4993
|
+
'submissionsClosed'?: string | null;
|
|
4994
|
+
/**
|
|
4995
|
+
*
|
|
4996
|
+
* @type {string}
|
|
4997
|
+
* @memberof JamStateChangeDates
|
|
4998
|
+
*/
|
|
4999
|
+
'submissionsOpened'?: string | null;
|
|
5000
|
+
/**
|
|
5001
|
+
*
|
|
5002
|
+
* @type {string}
|
|
5003
|
+
* @memberof JamStateChangeDates
|
|
5004
|
+
*/
|
|
5005
|
+
'winnersSelected'?: string | null;
|
|
5006
|
+
}
|
|
4734
5007
|
/**
|
|
4735
5008
|
*
|
|
4736
5009
|
* @export
|
|
@@ -5306,12 +5579,6 @@ export interface LimitedWorld {
|
|
|
5306
5579
|
* @memberof LimitedWorld
|
|
5307
5580
|
*/
|
|
5308
5581
|
'releaseStatus': ReleaseStatus;
|
|
5309
|
-
/**
|
|
5310
|
-
*
|
|
5311
|
-
* @type {string}
|
|
5312
|
-
* @memberof LimitedWorld
|
|
5313
|
-
*/
|
|
5314
|
-
'storeId': string | null;
|
|
5315
5582
|
/**
|
|
5316
5583
|
*
|
|
5317
5584
|
* @type {Array<string>}
|
|
@@ -6118,6 +6385,55 @@ export declare const SortOption: {
|
|
|
6118
6385
|
readonly Name: "name";
|
|
6119
6386
|
};
|
|
6120
6387
|
export type SortOption = typeof SortOption[keyof typeof SortOption];
|
|
6388
|
+
/**
|
|
6389
|
+
*
|
|
6390
|
+
* @export
|
|
6391
|
+
* @interface Submission
|
|
6392
|
+
*/
|
|
6393
|
+
export interface Submission {
|
|
6394
|
+
/**
|
|
6395
|
+
* Either world ID or avatar ID
|
|
6396
|
+
* @type {string}
|
|
6397
|
+
* @memberof Submission
|
|
6398
|
+
*/
|
|
6399
|
+
'contentId': string;
|
|
6400
|
+
/**
|
|
6401
|
+
*
|
|
6402
|
+
* @type {string}
|
|
6403
|
+
* @memberof Submission
|
|
6404
|
+
*/
|
|
6405
|
+
'created_at': string;
|
|
6406
|
+
/**
|
|
6407
|
+
*
|
|
6408
|
+
* @type {string}
|
|
6409
|
+
* @memberof Submission
|
|
6410
|
+
*/
|
|
6411
|
+
'description': string;
|
|
6412
|
+
/**
|
|
6413
|
+
*
|
|
6414
|
+
* @type {string}
|
|
6415
|
+
* @memberof Submission
|
|
6416
|
+
*/
|
|
6417
|
+
'id': string;
|
|
6418
|
+
/**
|
|
6419
|
+
*
|
|
6420
|
+
* @type {string}
|
|
6421
|
+
* @memberof Submission
|
|
6422
|
+
*/
|
|
6423
|
+
'jamId': string;
|
|
6424
|
+
/**
|
|
6425
|
+
*
|
|
6426
|
+
* @type {number}
|
|
6427
|
+
* @memberof Submission
|
|
6428
|
+
*/
|
|
6429
|
+
'ratingScore'?: number;
|
|
6430
|
+
/**
|
|
6431
|
+
* 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.
|
|
6432
|
+
* @type {string}
|
|
6433
|
+
* @memberof Submission
|
|
6434
|
+
*/
|
|
6435
|
+
'submitterId': string;
|
|
6436
|
+
}
|
|
6121
6437
|
/**
|
|
6122
6438
|
*
|
|
6123
6439
|
* @export
|
|
@@ -7614,12 +7930,6 @@ export interface World {
|
|
|
7614
7930
|
* @memberof World
|
|
7615
7931
|
*/
|
|
7616
7932
|
'releaseStatus': ReleaseStatus;
|
|
7617
|
-
/**
|
|
7618
|
-
*
|
|
7619
|
-
* @type {string}
|
|
7620
|
-
* @memberof World
|
|
7621
|
-
*/
|
|
7622
|
-
'storeId': string | null;
|
|
7623
7933
|
/**
|
|
7624
7934
|
*
|
|
7625
7935
|
* @type {Array<string>}
|
|
@@ -11729,6 +12039,131 @@ export declare class InviteApi extends BaseAPI {
|
|
|
11729
12039
|
*/
|
|
11730
12040
|
updateInviteMessage(userId: string, messageType: InviteMessageType, slot: number, updateInviteMessageRequest?: UpdateInviteMessageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteMessage[], any>>;
|
|
11731
12041
|
}
|
|
12042
|
+
/**
|
|
12043
|
+
* JamsApi - axios parameter creator
|
|
12044
|
+
* @export
|
|
12045
|
+
*/
|
|
12046
|
+
export declare const JamsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12047
|
+
/**
|
|
12048
|
+
* Returns a jam.
|
|
12049
|
+
* @summary Show jam information
|
|
12050
|
+
* @param {string} jamId Must be a valid query ID.
|
|
12051
|
+
* @param {*} [options] Override http request option.
|
|
12052
|
+
* @throws {RequiredError}
|
|
12053
|
+
*/
|
|
12054
|
+
getJam: (jamId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12055
|
+
/**
|
|
12056
|
+
* Returns all submissions of a jam.
|
|
12057
|
+
* @summary Show jam submissions
|
|
12058
|
+
* @param {string} jamId Must be a valid query ID.
|
|
12059
|
+
* @param {*} [options] Override http request option.
|
|
12060
|
+
* @throws {RequiredError}
|
|
12061
|
+
*/
|
|
12062
|
+
getJamSubmissions: (jamId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12063
|
+
/**
|
|
12064
|
+
* Lists World Jams or Avatar Jams, both currently running and ones that have ended. `isActive` is used to select only active or already ended jams. `type` is used to select only world or avatar jams, and can only take `world` or `avatar`. ``
|
|
12065
|
+
* @summary Show jams list
|
|
12066
|
+
* @param {string} [type] Only show jams of this type (`avatar` or `world`).
|
|
12067
|
+
* @param {*} [options] Override http request option.
|
|
12068
|
+
* @throws {RequiredError}
|
|
12069
|
+
*/
|
|
12070
|
+
getJams: (type?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12071
|
+
};
|
|
12072
|
+
/**
|
|
12073
|
+
* JamsApi - functional programming interface
|
|
12074
|
+
* @export
|
|
12075
|
+
*/
|
|
12076
|
+
export declare const JamsApiFp: (configuration?: Configuration) => {
|
|
12077
|
+
/**
|
|
12078
|
+
* Returns a jam.
|
|
12079
|
+
* @summary Show jam information
|
|
12080
|
+
* @param {string} jamId Must be a valid query ID.
|
|
12081
|
+
* @param {*} [options] Override http request option.
|
|
12082
|
+
* @throws {RequiredError}
|
|
12083
|
+
*/
|
|
12084
|
+
getJam(jamId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Jam>>;
|
|
12085
|
+
/**
|
|
12086
|
+
* Returns all submissions of a jam.
|
|
12087
|
+
* @summary Show jam submissions
|
|
12088
|
+
* @param {string} jamId Must be a valid query ID.
|
|
12089
|
+
* @param {*} [options] Override http request option.
|
|
12090
|
+
* @throws {RequiredError}
|
|
12091
|
+
*/
|
|
12092
|
+
getJamSubmissions(jamId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Submission>>>;
|
|
12093
|
+
/**
|
|
12094
|
+
* Lists World Jams or Avatar Jams, both currently running and ones that have ended. `isActive` is used to select only active or already ended jams. `type` is used to select only world or avatar jams, and can only take `world` or `avatar`. ``
|
|
12095
|
+
* @summary Show jams list
|
|
12096
|
+
* @param {string} [type] Only show jams of this type (`avatar` or `world`).
|
|
12097
|
+
* @param {*} [options] Override http request option.
|
|
12098
|
+
* @throws {RequiredError}
|
|
12099
|
+
*/
|
|
12100
|
+
getJams(type?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Jam>>>;
|
|
12101
|
+
};
|
|
12102
|
+
/**
|
|
12103
|
+
* JamsApi - factory interface
|
|
12104
|
+
* @export
|
|
12105
|
+
*/
|
|
12106
|
+
export declare const JamsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12107
|
+
/**
|
|
12108
|
+
* Returns a jam.
|
|
12109
|
+
* @summary Show jam information
|
|
12110
|
+
* @param {string} jamId Must be a valid query ID.
|
|
12111
|
+
* @param {*} [options] Override http request option.
|
|
12112
|
+
* @throws {RequiredError}
|
|
12113
|
+
*/
|
|
12114
|
+
getJam(jamId: string, options?: any): AxiosPromise<Jam>;
|
|
12115
|
+
/**
|
|
12116
|
+
* Returns all submissions of a jam.
|
|
12117
|
+
* @summary Show jam submissions
|
|
12118
|
+
* @param {string} jamId Must be a valid query ID.
|
|
12119
|
+
* @param {*} [options] Override http request option.
|
|
12120
|
+
* @throws {RequiredError}
|
|
12121
|
+
*/
|
|
12122
|
+
getJamSubmissions(jamId: string, options?: any): AxiosPromise<Array<Submission>>;
|
|
12123
|
+
/**
|
|
12124
|
+
* Lists World Jams or Avatar Jams, both currently running and ones that have ended. `isActive` is used to select only active or already ended jams. `type` is used to select only world or avatar jams, and can only take `world` or `avatar`. ``
|
|
12125
|
+
* @summary Show jams list
|
|
12126
|
+
* @param {string} [type] Only show jams of this type (`avatar` or `world`).
|
|
12127
|
+
* @param {*} [options] Override http request option.
|
|
12128
|
+
* @throws {RequiredError}
|
|
12129
|
+
*/
|
|
12130
|
+
getJams(type?: string, options?: any): AxiosPromise<Array<Jam>>;
|
|
12131
|
+
};
|
|
12132
|
+
/**
|
|
12133
|
+
* JamsApi - object-oriented interface
|
|
12134
|
+
* @export
|
|
12135
|
+
* @class JamsApi
|
|
12136
|
+
* @extends {BaseAPI}
|
|
12137
|
+
*/
|
|
12138
|
+
export declare class JamsApi extends BaseAPI {
|
|
12139
|
+
/**
|
|
12140
|
+
* Returns a jam.
|
|
12141
|
+
* @summary Show jam information
|
|
12142
|
+
* @param {string} jamId Must be a valid query ID.
|
|
12143
|
+
* @param {*} [options] Override http request option.
|
|
12144
|
+
* @throws {RequiredError}
|
|
12145
|
+
* @memberof JamsApi
|
|
12146
|
+
*/
|
|
12147
|
+
getJam(jamId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Jam, any>>;
|
|
12148
|
+
/**
|
|
12149
|
+
* Returns all submissions of a jam.
|
|
12150
|
+
* @summary Show jam submissions
|
|
12151
|
+
* @param {string} jamId Must be a valid query ID.
|
|
12152
|
+
* @param {*} [options] Override http request option.
|
|
12153
|
+
* @throws {RequiredError}
|
|
12154
|
+
* @memberof JamsApi
|
|
12155
|
+
*/
|
|
12156
|
+
getJamSubmissions(jamId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Submission[], any>>;
|
|
12157
|
+
/**
|
|
12158
|
+
* Lists World Jams or Avatar Jams, both currently running and ones that have ended. `isActive` is used to select only active or already ended jams. `type` is used to select only world or avatar jams, and can only take `world` or `avatar`. ``
|
|
12159
|
+
* @summary Show jams list
|
|
12160
|
+
* @param {string} [type] Only show jams of this type (`avatar` or `world`).
|
|
12161
|
+
* @param {*} [options] Override http request option.
|
|
12162
|
+
* @throws {RequiredError}
|
|
12163
|
+
* @memberof JamsApi
|
|
12164
|
+
*/
|
|
12165
|
+
getJams(type?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Jam[], any>>;
|
|
12166
|
+
}
|
|
11732
12167
|
/**
|
|
11733
12168
|
* NotificationsApi - axios parameter creator
|
|
11734
12169
|
* @export
|
|
@@ -11757,6 +12192,14 @@ export declare const NotificationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
11757
12192
|
* @throws {RequiredError}
|
|
11758
12193
|
*/
|
|
11759
12194
|
deleteNotification: (notificationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12195
|
+
/**
|
|
12196
|
+
* Get a notification by notification `not_` ID.
|
|
12197
|
+
* @summary Show notification
|
|
12198
|
+
* @param {string} notificationId Must be a valid notification ID.
|
|
12199
|
+
* @param {*} [options] Override http request option.
|
|
12200
|
+
* @throws {RequiredError}
|
|
12201
|
+
*/
|
|
12202
|
+
getNotification: (notificationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11760
12203
|
/**
|
|
11761
12204
|
* Retrieve all of the current user\'s notifications.
|
|
11762
12205
|
* @summary List Notifications
|
|
@@ -11807,6 +12250,14 @@ export declare const NotificationsApiFp: (configuration?: Configuration) => {
|
|
|
11807
12250
|
* @throws {RequiredError}
|
|
11808
12251
|
*/
|
|
11809
12252
|
deleteNotification(notificationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Notification>>;
|
|
12253
|
+
/**
|
|
12254
|
+
* Get a notification by notification `not_` ID.
|
|
12255
|
+
* @summary Show notification
|
|
12256
|
+
* @param {string} notificationId Must be a valid notification ID.
|
|
12257
|
+
* @param {*} [options] Override http request option.
|
|
12258
|
+
* @throws {RequiredError}
|
|
12259
|
+
*/
|
|
12260
|
+
getNotification(notificationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Notification>>;
|
|
11810
12261
|
/**
|
|
11811
12262
|
* Retrieve all of the current user\'s notifications.
|
|
11812
12263
|
* @summary List Notifications
|
|
@@ -11857,6 +12308,14 @@ export declare const NotificationsApiFactory: (configuration?: Configuration, ba
|
|
|
11857
12308
|
* @throws {RequiredError}
|
|
11858
12309
|
*/
|
|
11859
12310
|
deleteNotification(notificationId: string, options?: any): AxiosPromise<Notification>;
|
|
12311
|
+
/**
|
|
12312
|
+
* Get a notification by notification `not_` ID.
|
|
12313
|
+
* @summary Show notification
|
|
12314
|
+
* @param {string} notificationId Must be a valid notification ID.
|
|
12315
|
+
* @param {*} [options] Override http request option.
|
|
12316
|
+
* @throws {RequiredError}
|
|
12317
|
+
*/
|
|
12318
|
+
getNotification(notificationId: string, options?: any): AxiosPromise<Notification>;
|
|
11860
12319
|
/**
|
|
11861
12320
|
* Retrieve all of the current user\'s notifications.
|
|
11862
12321
|
* @summary List Notifications
|
|
@@ -11912,6 +12371,15 @@ export declare class NotificationsApi extends BaseAPI {
|
|
|
11912
12371
|
* @memberof NotificationsApi
|
|
11913
12372
|
*/
|
|
11914
12373
|
deleteNotification(notificationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Notification, any>>;
|
|
12374
|
+
/**
|
|
12375
|
+
* Get a notification by notification `not_` ID.
|
|
12376
|
+
* @summary Show notification
|
|
12377
|
+
* @param {string} notificationId Must be a valid notification ID.
|
|
12378
|
+
* @param {*} [options] Override http request option.
|
|
12379
|
+
* @throws {RequiredError}
|
|
12380
|
+
* @memberof NotificationsApi
|
|
12381
|
+
*/
|
|
12382
|
+
getNotification(notificationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Notification, any>>;
|
|
11915
12383
|
/**
|
|
11916
12384
|
* Retrieve all of the current user\'s notifications.
|
|
11917
12385
|
* @summary List Notifications
|
|
@@ -12036,22 +12504,6 @@ export declare const PlayermoderationApiAxiosParamCreator: (configuration?: Conf
|
|
|
12036
12504
|
* @throws {RequiredError}
|
|
12037
12505
|
*/
|
|
12038
12506
|
clearAllPlayerModerations: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12039
|
-
/**
|
|
12040
|
-
* Deletes a specific player moderation based on it\'s `pmod_` ID. The website uses `unmoderateUser` instead. You can delete the same player moderation multiple times successfully.
|
|
12041
|
-
* @summary Delete Player Moderation
|
|
12042
|
-
* @param {string} playerModerationId Must be a valid `pmod_` ID.
|
|
12043
|
-
* @param {*} [options] Override http request option.
|
|
12044
|
-
* @throws {RequiredError}
|
|
12045
|
-
*/
|
|
12046
|
-
deletePlayerModeration: (playerModerationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12047
|
-
/**
|
|
12048
|
-
* Returns a single Player Moderation. This returns the exact same amount of information as the more generalised `getPlayerModerations`.
|
|
12049
|
-
* @summary Get Player Moderation
|
|
12050
|
-
* @param {string} playerModerationId Must be a valid `pmod_` ID.
|
|
12051
|
-
* @param {*} [options] Override http request option.
|
|
12052
|
-
* @throws {RequiredError}
|
|
12053
|
-
*/
|
|
12054
|
-
getPlayerModeration: (playerModerationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12055
12507
|
/**
|
|
12056
12508
|
* Returns a list of all player moderations made by **you**. This endpoint does not have pagination, and will return *all* results. Use query parameters to limit your query if needed.
|
|
12057
12509
|
* @summary Search Player Moderations
|
|
@@ -12090,22 +12542,6 @@ export declare const PlayermoderationApiFp: (configuration?: Configuration) => {
|
|
|
12090
12542
|
* @throws {RequiredError}
|
|
12091
12543
|
*/
|
|
12092
12544
|
clearAllPlayerModerations(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Success>>;
|
|
12093
|
-
/**
|
|
12094
|
-
* Deletes a specific player moderation based on it\'s `pmod_` ID. The website uses `unmoderateUser` instead. You can delete the same player moderation multiple times successfully.
|
|
12095
|
-
* @summary Delete Player Moderation
|
|
12096
|
-
* @param {string} playerModerationId Must be a valid `pmod_` ID.
|
|
12097
|
-
* @param {*} [options] Override http request option.
|
|
12098
|
-
* @throws {RequiredError}
|
|
12099
|
-
*/
|
|
12100
|
-
deletePlayerModeration(playerModerationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Success>>;
|
|
12101
|
-
/**
|
|
12102
|
-
* Returns a single Player Moderation. This returns the exact same amount of information as the more generalised `getPlayerModerations`.
|
|
12103
|
-
* @summary Get Player Moderation
|
|
12104
|
-
* @param {string} playerModerationId Must be a valid `pmod_` ID.
|
|
12105
|
-
* @param {*} [options] Override http request option.
|
|
12106
|
-
* @throws {RequiredError}
|
|
12107
|
-
*/
|
|
12108
|
-
getPlayerModeration(playerModerationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerModeration>>;
|
|
12109
12545
|
/**
|
|
12110
12546
|
* Returns a list of all player moderations made by **you**. This endpoint does not have pagination, and will return *all* results. Use query parameters to limit your query if needed.
|
|
12111
12547
|
* @summary Search Player Moderations
|
|
@@ -12144,22 +12580,6 @@ export declare const PlayermoderationApiFactory: (configuration?: Configuration,
|
|
|
12144
12580
|
* @throws {RequiredError}
|
|
12145
12581
|
*/
|
|
12146
12582
|
clearAllPlayerModerations(options?: any): AxiosPromise<Success>;
|
|
12147
|
-
/**
|
|
12148
|
-
* Deletes a specific player moderation based on it\'s `pmod_` ID. The website uses `unmoderateUser` instead. You can delete the same player moderation multiple times successfully.
|
|
12149
|
-
* @summary Delete Player Moderation
|
|
12150
|
-
* @param {string} playerModerationId Must be a valid `pmod_` ID.
|
|
12151
|
-
* @param {*} [options] Override http request option.
|
|
12152
|
-
* @throws {RequiredError}
|
|
12153
|
-
*/
|
|
12154
|
-
deletePlayerModeration(playerModerationId: string, options?: any): AxiosPromise<Success>;
|
|
12155
|
-
/**
|
|
12156
|
-
* Returns a single Player Moderation. This returns the exact same amount of information as the more generalised `getPlayerModerations`.
|
|
12157
|
-
* @summary Get Player Moderation
|
|
12158
|
-
* @param {string} playerModerationId Must be a valid `pmod_` ID.
|
|
12159
|
-
* @param {*} [options] Override http request option.
|
|
12160
|
-
* @throws {RequiredError}
|
|
12161
|
-
*/
|
|
12162
|
-
getPlayerModeration(playerModerationId: string, options?: any): AxiosPromise<PlayerModeration>;
|
|
12163
12583
|
/**
|
|
12164
12584
|
* Returns a list of all player moderations made by **you**. This endpoint does not have pagination, and will return *all* results. Use query parameters to limit your query if needed.
|
|
12165
12585
|
* @summary Search Player Moderations
|
|
@@ -12201,24 +12621,6 @@ export declare class PlayermoderationApi extends BaseAPI {
|
|
|
12201
12621
|
* @memberof PlayermoderationApi
|
|
12202
12622
|
*/
|
|
12203
12623
|
clearAllPlayerModerations(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Success, any>>;
|
|
12204
|
-
/**
|
|
12205
|
-
* Deletes a specific player moderation based on it\'s `pmod_` ID. The website uses `unmoderateUser` instead. You can delete the same player moderation multiple times successfully.
|
|
12206
|
-
* @summary Delete Player Moderation
|
|
12207
|
-
* @param {string} playerModerationId Must be a valid `pmod_` ID.
|
|
12208
|
-
* @param {*} [options] Override http request option.
|
|
12209
|
-
* @throws {RequiredError}
|
|
12210
|
-
* @memberof PlayermoderationApi
|
|
12211
|
-
*/
|
|
12212
|
-
deletePlayerModeration(playerModerationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Success, any>>;
|
|
12213
|
-
/**
|
|
12214
|
-
* Returns a single Player Moderation. This returns the exact same amount of information as the more generalised `getPlayerModerations`.
|
|
12215
|
-
* @summary Get Player Moderation
|
|
12216
|
-
* @param {string} playerModerationId Must be a valid `pmod_` ID.
|
|
12217
|
-
* @param {*} [options] Override http request option.
|
|
12218
|
-
* @throws {RequiredError}
|
|
12219
|
-
* @memberof PlayermoderationApi
|
|
12220
|
-
*/
|
|
12221
|
-
getPlayerModeration(playerModerationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerModeration, any>>;
|
|
12222
12624
|
/**
|
|
12223
12625
|
* Returns a list of all player moderations made by **you**. This endpoint does not have pagination, and will return *all* results. Use query parameters to limit your query if needed.
|
|
12224
12626
|
* @summary Search Player Moderations
|
|
@@ -13003,7 +13405,7 @@ export declare const WorldsApiFp: (configuration?: Configuration) => {
|
|
|
13003
13405
|
* @param {*} [options] Override http request option.
|
|
13004
13406
|
* @throws {RequiredError}
|
|
13005
13407
|
*/
|
|
13006
|
-
getFavoritedWorlds(featured?: boolean, sort?: SortOption, n?: number, order?: OrderOption, offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: ReleaseStatus, maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
13408
|
+
getFavoritedWorlds(featured?: boolean, sort?: SortOption, n?: number, order?: OrderOption, offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: ReleaseStatus, maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FavoritedWorld>>>;
|
|
13007
13409
|
/**
|
|
13008
13410
|
* Search and list recently visited worlds by query filters.
|
|
13009
13411
|
* @summary List Recent Worlds
|
|
@@ -13165,7 +13567,7 @@ export declare const WorldsApiFactory: (configuration?: Configuration, basePath?
|
|
|
13165
13567
|
* @param {*} [options] Override http request option.
|
|
13166
13568
|
* @throws {RequiredError}
|
|
13167
13569
|
*/
|
|
13168
|
-
getFavoritedWorlds(featured?: boolean, sort?: SortOption, n?: number, order?: OrderOption, offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: ReleaseStatus, maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: any): AxiosPromise<Array<
|
|
13570
|
+
getFavoritedWorlds(featured?: boolean, sort?: SortOption, n?: number, order?: OrderOption, offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: ReleaseStatus, maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: any): AxiosPromise<Array<FavoritedWorld>>;
|
|
13169
13571
|
/**
|
|
13170
13572
|
* Search and list recently visited worlds by query filters.
|
|
13171
13573
|
* @summary List Recent Worlds
|
|
@@ -13333,7 +13735,7 @@ export declare class WorldsApi extends BaseAPI {
|
|
|
13333
13735
|
* @throws {RequiredError}
|
|
13334
13736
|
* @memberof WorldsApi
|
|
13335
13737
|
*/
|
|
13336
|
-
getFavoritedWorlds(featured?: boolean, sort?: SortOption, n?: number, order?: OrderOption, offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: ReleaseStatus, maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
13738
|
+
getFavoritedWorlds(featured?: boolean, sort?: SortOption, n?: number, order?: OrderOption, offset?: number, search?: string, tag?: string, notag?: string, releaseStatus?: ReleaseStatus, maxUnityVersion?: string, minUnityVersion?: string, platform?: string, userId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FavoritedWorld[], any>>;
|
|
13337
13739
|
/**
|
|
13338
13740
|
* Search and list recently visited worlds by query filters.
|
|
13339
13741
|
* @summary List Recent Worlds
|