vrchat 1.16.2 → 1.16.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 +71 -12
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +60 -9
- package/dist/api.js +27 -10
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.16.
|
|
6
|
+
* The version of the OpenAPI document: 1.16.4
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2658,6 +2658,12 @@ export interface GroupMember {
|
|
|
2658
2658
|
* @memberof GroupMember
|
|
2659
2659
|
*/
|
|
2660
2660
|
'roleIds'?: Array<string>;
|
|
2661
|
+
/**
|
|
2662
|
+
*
|
|
2663
|
+
* @type {Array<string>}
|
|
2664
|
+
* @memberof GroupMember
|
|
2665
|
+
*/
|
|
2666
|
+
'mRoleIds'?: Array<string>;
|
|
2661
2667
|
/**
|
|
2662
2668
|
*
|
|
2663
2669
|
* @type {string}
|
|
@@ -2700,6 +2706,18 @@ export interface GroupMember {
|
|
|
2700
2706
|
* @memberof GroupMember
|
|
2701
2707
|
*/
|
|
2702
2708
|
'managerNotes'?: string | null;
|
|
2709
|
+
/**
|
|
2710
|
+
*
|
|
2711
|
+
* @type {string}
|
|
2712
|
+
* @memberof GroupMember
|
|
2713
|
+
*/
|
|
2714
|
+
'lastPostReadAt'?: string;
|
|
2715
|
+
/**
|
|
2716
|
+
*
|
|
2717
|
+
* @type {boolean}
|
|
2718
|
+
* @memberof GroupMember
|
|
2719
|
+
*/
|
|
2720
|
+
'hasJoinedFromPurchase'?: boolean;
|
|
2703
2721
|
}
|
|
2704
2722
|
/**
|
|
2705
2723
|
* Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user.
|
|
@@ -2731,6 +2749,24 @@ export interface GroupMemberLimitedUser {
|
|
|
2731
2749
|
* @memberof GroupMemberLimitedUser
|
|
2732
2750
|
*/
|
|
2733
2751
|
'iconUrl'?: string;
|
|
2752
|
+
/**
|
|
2753
|
+
*
|
|
2754
|
+
* @type {string}
|
|
2755
|
+
* @memberof GroupMemberLimitedUser
|
|
2756
|
+
*/
|
|
2757
|
+
'profilePicOverride'?: string;
|
|
2758
|
+
/**
|
|
2759
|
+
*
|
|
2760
|
+
* @type {string}
|
|
2761
|
+
* @memberof GroupMemberLimitedUser
|
|
2762
|
+
*/
|
|
2763
|
+
'currentAvatarThumbnailImageUrl'?: string;
|
|
2764
|
+
/**
|
|
2765
|
+
*
|
|
2766
|
+
* @type {Array<string>}
|
|
2767
|
+
* @memberof GroupMemberLimitedUser
|
|
2768
|
+
*/
|
|
2769
|
+
'currentAvatarTags'?: Array<string>;
|
|
2734
2770
|
}
|
|
2735
2771
|
/**
|
|
2736
2772
|
*
|
|
@@ -2979,6 +3015,20 @@ export const GroupRoleTemplate = {
|
|
|
2979
3015
|
export type GroupRoleTemplate = typeof GroupRoleTemplate[keyof typeof GroupRoleTemplate];
|
|
2980
3016
|
|
|
2981
3017
|
|
|
3018
|
+
/**
|
|
3019
|
+
*
|
|
3020
|
+
* @export
|
|
3021
|
+
* @enum {string}
|
|
3022
|
+
*/
|
|
3023
|
+
|
|
3024
|
+
export const GroupSearchSort = {
|
|
3025
|
+
Asc: 'joinedAt:asc',
|
|
3026
|
+
Desc: 'joinedAt:desc'
|
|
3027
|
+
} as const;
|
|
3028
|
+
|
|
3029
|
+
export type GroupSearchSort = typeof GroupSearchSort[keyof typeof GroupSearchSort];
|
|
3030
|
+
|
|
3031
|
+
|
|
2982
3032
|
/**
|
|
2983
3033
|
*
|
|
2984
3034
|
* @export
|
|
@@ -3724,13 +3774,13 @@ export interface LimitedUser {
|
|
|
3724
3774
|
* @type {string}
|
|
3725
3775
|
* @memberof LimitedUser
|
|
3726
3776
|
*/
|
|
3727
|
-
'currentAvatarImageUrl'
|
|
3777
|
+
'currentAvatarImageUrl'?: string;
|
|
3728
3778
|
/**
|
|
3729
3779
|
* When profilePicOverride is not empty, use it instead.
|
|
3730
3780
|
* @type {string}
|
|
3731
3781
|
* @memberof LimitedUser
|
|
3732
3782
|
*/
|
|
3733
|
-
'currentAvatarThumbnailImageUrl'
|
|
3783
|
+
'currentAvatarThumbnailImageUrl'?: string;
|
|
3734
3784
|
/**
|
|
3735
3785
|
*
|
|
3736
3786
|
* @type {DeveloperType}
|
|
@@ -3772,7 +3822,7 @@ export interface LimitedUser {
|
|
|
3772
3822
|
* @type {string}
|
|
3773
3823
|
* @memberof LimitedUser
|
|
3774
3824
|
*/
|
|
3775
|
-
'profilePicOverride'
|
|
3825
|
+
'profilePicOverride'?: string;
|
|
3776
3826
|
/**
|
|
3777
3827
|
*
|
|
3778
3828
|
* @type {UserStatus}
|
|
@@ -3796,7 +3846,7 @@ export interface LimitedUser {
|
|
|
3796
3846
|
* @type {string}
|
|
3797
3847
|
* @memberof LimitedUser
|
|
3798
3848
|
*/
|
|
3799
|
-
'userIcon'
|
|
3849
|
+
'userIcon'?: string;
|
|
3800
3850
|
/**
|
|
3801
3851
|
* -| **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429).
|
|
3802
3852
|
* @type {string}
|
|
@@ -4129,6 +4179,7 @@ export const NotificationType = {
|
|
|
4129
4179
|
FriendRequest: 'friendRequest',
|
|
4130
4180
|
Invite: 'invite',
|
|
4131
4181
|
InviteResponse: 'inviteResponse',
|
|
4182
|
+
Message: 'message',
|
|
4132
4183
|
RequestInvite: 'requestInvite',
|
|
4133
4184
|
RequestInviteResponse: 'requestInviteResponse',
|
|
4134
4185
|
Votetokick: 'votetokick'
|
|
@@ -10560,10 +10611,11 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10560
10611
|
* @param {string} groupId Must be a valid group ID.
|
|
10561
10612
|
* @param {number} [n] The number of objects to return.
|
|
10562
10613
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
10614
|
+
* @param {GroupSearchSort} [sort] The sort order of Group Member results
|
|
10563
10615
|
* @param {*} [options] Override http request option.
|
|
10564
10616
|
* @throws {RequiredError}
|
|
10565
10617
|
*/
|
|
10566
|
-
getGroupMembers: async (groupId: string, n?: number, offset?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10618
|
+
getGroupMembers: async (groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10567
10619
|
// verify required parameter 'groupId' is not null or undefined
|
|
10568
10620
|
assertParamExists('getGroupMembers', 'groupId', groupId)
|
|
10569
10621
|
const localVarPath = `/groups/{groupId}/members`
|
|
@@ -10589,6 +10641,10 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10589
10641
|
localVarQueryParameter['offset'] = offset;
|
|
10590
10642
|
}
|
|
10591
10643
|
|
|
10644
|
+
if (sort !== undefined) {
|
|
10645
|
+
localVarQueryParameter['sort'] = sort;
|
|
10646
|
+
}
|
|
10647
|
+
|
|
10592
10648
|
|
|
10593
10649
|
|
|
10594
10650
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -11449,11 +11505,12 @@ export const GroupsApiFp = function(configuration?: Configuration) {
|
|
|
11449
11505
|
* @param {string} groupId Must be a valid group ID.
|
|
11450
11506
|
* @param {number} [n] The number of objects to return.
|
|
11451
11507
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
11508
|
+
* @param {GroupSearchSort} [sort] The sort order of Group Member results
|
|
11452
11509
|
* @param {*} [options] Override http request option.
|
|
11453
11510
|
* @throws {RequiredError}
|
|
11454
11511
|
*/
|
|
11455
|
-
async getGroupMembers(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>> {
|
|
11456
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getGroupMembers(groupId, n, offset, options);
|
|
11512
|
+
async getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>> {
|
|
11513
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getGroupMembers(groupId, n, offset, sort, options);
|
|
11457
11514
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11458
11515
|
},
|
|
11459
11516
|
/**
|
|
@@ -11887,11 +11944,12 @@ export const GroupsApiFactory = function (configuration?: Configuration, basePat
|
|
|
11887
11944
|
* @param {string} groupId Must be a valid group ID.
|
|
11888
11945
|
* @param {number} [n] The number of objects to return.
|
|
11889
11946
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
11947
|
+
* @param {GroupSearchSort} [sort] The sort order of Group Member results
|
|
11890
11948
|
* @param {*} [options] Override http request option.
|
|
11891
11949
|
* @throws {RequiredError}
|
|
11892
11950
|
*/
|
|
11893
|
-
getGroupMembers(groupId: string, n?: number, offset?: number, options?: any): AxiosPromise<Array<GroupMember>> {
|
|
11894
|
-
return localVarFp.getGroupMembers(groupId, n, offset, options).then((request) => request(axios, basePath));
|
|
11951
|
+
getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: any): AxiosPromise<Array<GroupMember>> {
|
|
11952
|
+
return localVarFp.getGroupMembers(groupId, n, offset, sort, options).then((request) => request(axios, basePath));
|
|
11895
11953
|
},
|
|
11896
11954
|
/**
|
|
11897
11955
|
* Returns a List of all possible/available permissions for a Group.
|
|
@@ -12354,12 +12412,13 @@ export class GroupsApi extends BaseAPI {
|
|
|
12354
12412
|
* @param {string} groupId Must be a valid group ID.
|
|
12355
12413
|
* @param {number} [n] The number of objects to return.
|
|
12356
12414
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
12415
|
+
* @param {GroupSearchSort} [sort] The sort order of Group Member results
|
|
12357
12416
|
* @param {*} [options] Override http request option.
|
|
12358
12417
|
* @throws {RequiredError}
|
|
12359
12418
|
* @memberof GroupsApi
|
|
12360
12419
|
*/
|
|
12361
|
-
public getGroupMembers(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig) {
|
|
12362
|
-
return GroupsApiFp(this.configuration).getGroupMembers(groupId, n, offset, options).then((request) => request(this.axios, this.basePath));
|
|
12420
|
+
public getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: AxiosRequestConfig) {
|
|
12421
|
+
return GroupsApiFp(this.configuration).getGroupMembers(groupId, n, offset, sort, options).then((request) => request(this.axios, this.basePath));
|
|
12363
12422
|
}
|
|
12364
12423
|
|
|
12365
12424
|
/**
|
package/base.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.16.
|
|
6
|
+
* The version of the OpenAPI document: 1.16.4
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.16.
|
|
6
|
+
* The version of the OpenAPI document: 1.16.4
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.16.
|
|
6
|
+
* The version of the OpenAPI document: 1.16.4
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.16.
|
|
4
|
+
* The version of the OpenAPI document: 1.16.4
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2621,6 +2621,12 @@ export interface GroupMember {
|
|
|
2621
2621
|
* @memberof GroupMember
|
|
2622
2622
|
*/
|
|
2623
2623
|
'roleIds'?: Array<string>;
|
|
2624
|
+
/**
|
|
2625
|
+
*
|
|
2626
|
+
* @type {Array<string>}
|
|
2627
|
+
* @memberof GroupMember
|
|
2628
|
+
*/
|
|
2629
|
+
'mRoleIds'?: Array<string>;
|
|
2624
2630
|
/**
|
|
2625
2631
|
*
|
|
2626
2632
|
* @type {string}
|
|
@@ -2663,6 +2669,18 @@ export interface GroupMember {
|
|
|
2663
2669
|
* @memberof GroupMember
|
|
2664
2670
|
*/
|
|
2665
2671
|
'managerNotes'?: string | null;
|
|
2672
|
+
/**
|
|
2673
|
+
*
|
|
2674
|
+
* @type {string}
|
|
2675
|
+
* @memberof GroupMember
|
|
2676
|
+
*/
|
|
2677
|
+
'lastPostReadAt'?: string;
|
|
2678
|
+
/**
|
|
2679
|
+
*
|
|
2680
|
+
* @type {boolean}
|
|
2681
|
+
* @memberof GroupMember
|
|
2682
|
+
*/
|
|
2683
|
+
'hasJoinedFromPurchase'?: boolean;
|
|
2666
2684
|
}
|
|
2667
2685
|
/**
|
|
2668
2686
|
* Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user.
|
|
@@ -2694,6 +2712,24 @@ export interface GroupMemberLimitedUser {
|
|
|
2694
2712
|
* @memberof GroupMemberLimitedUser
|
|
2695
2713
|
*/
|
|
2696
2714
|
'iconUrl'?: string;
|
|
2715
|
+
/**
|
|
2716
|
+
*
|
|
2717
|
+
* @type {string}
|
|
2718
|
+
* @memberof GroupMemberLimitedUser
|
|
2719
|
+
*/
|
|
2720
|
+
'profilePicOverride'?: string;
|
|
2721
|
+
/**
|
|
2722
|
+
*
|
|
2723
|
+
* @type {string}
|
|
2724
|
+
* @memberof GroupMemberLimitedUser
|
|
2725
|
+
*/
|
|
2726
|
+
'currentAvatarThumbnailImageUrl'?: string;
|
|
2727
|
+
/**
|
|
2728
|
+
*
|
|
2729
|
+
* @type {Array<string>}
|
|
2730
|
+
* @memberof GroupMemberLimitedUser
|
|
2731
|
+
*/
|
|
2732
|
+
'currentAvatarTags'?: Array<string>;
|
|
2697
2733
|
}
|
|
2698
2734
|
/**
|
|
2699
2735
|
*
|
|
@@ -2930,6 +2966,16 @@ export declare const GroupRoleTemplate: {
|
|
|
2930
2966
|
readonly ManagedRequest: "managedRequest";
|
|
2931
2967
|
};
|
|
2932
2968
|
export type GroupRoleTemplate = typeof GroupRoleTemplate[keyof typeof GroupRoleTemplate];
|
|
2969
|
+
/**
|
|
2970
|
+
*
|
|
2971
|
+
* @export
|
|
2972
|
+
* @enum {string}
|
|
2973
|
+
*/
|
|
2974
|
+
export declare const GroupSearchSort: {
|
|
2975
|
+
readonly Asc: "joinedAt:asc";
|
|
2976
|
+
readonly Desc: "joinedAt:desc";
|
|
2977
|
+
};
|
|
2978
|
+
export type GroupSearchSort = typeof GroupSearchSort[keyof typeof GroupSearchSort];
|
|
2933
2979
|
/**
|
|
2934
2980
|
*
|
|
2935
2981
|
* @export
|
|
@@ -3652,13 +3698,13 @@ export interface LimitedUser {
|
|
|
3652
3698
|
* @type {string}
|
|
3653
3699
|
* @memberof LimitedUser
|
|
3654
3700
|
*/
|
|
3655
|
-
'currentAvatarImageUrl'
|
|
3701
|
+
'currentAvatarImageUrl'?: string;
|
|
3656
3702
|
/**
|
|
3657
3703
|
* When profilePicOverride is not empty, use it instead.
|
|
3658
3704
|
* @type {string}
|
|
3659
3705
|
* @memberof LimitedUser
|
|
3660
3706
|
*/
|
|
3661
|
-
'currentAvatarThumbnailImageUrl'
|
|
3707
|
+
'currentAvatarThumbnailImageUrl'?: string;
|
|
3662
3708
|
/**
|
|
3663
3709
|
*
|
|
3664
3710
|
* @type {DeveloperType}
|
|
@@ -3700,7 +3746,7 @@ export interface LimitedUser {
|
|
|
3700
3746
|
* @type {string}
|
|
3701
3747
|
* @memberof LimitedUser
|
|
3702
3748
|
*/
|
|
3703
|
-
'profilePicOverride'
|
|
3749
|
+
'profilePicOverride'?: string;
|
|
3704
3750
|
/**
|
|
3705
3751
|
*
|
|
3706
3752
|
* @type {UserStatus}
|
|
@@ -3724,7 +3770,7 @@ export interface LimitedUser {
|
|
|
3724
3770
|
* @type {string}
|
|
3725
3771
|
* @memberof LimitedUser
|
|
3726
3772
|
*/
|
|
3727
|
-
'userIcon'
|
|
3773
|
+
'userIcon'?: string;
|
|
3728
3774
|
/**
|
|
3729
3775
|
* -| **DEPRECATED:** VRChat API no longer return usernames of other users. [See issue by Tupper for more information](https://github.com/pypy-vrc/VRCX/issues/429).
|
|
3730
3776
|
* @type {string}
|
|
@@ -4052,6 +4098,7 @@ export declare const NotificationType: {
|
|
|
4052
4098
|
readonly FriendRequest: "friendRequest";
|
|
4053
4099
|
readonly Invite: "invite";
|
|
4054
4100
|
readonly InviteResponse: "inviteResponse";
|
|
4101
|
+
readonly Message: "message";
|
|
4055
4102
|
readonly RequestInvite: "requestInvite";
|
|
4056
4103
|
readonly RequestInviteResponse: "requestInviteResponse";
|
|
4057
4104
|
readonly Votetokick: "votetokick";
|
|
@@ -7843,10 +7890,11 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7843
7890
|
* @param {string} groupId Must be a valid group ID.
|
|
7844
7891
|
* @param {number} [n] The number of objects to return.
|
|
7845
7892
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
7893
|
+
* @param {GroupSearchSort} [sort] The sort order of Group Member results
|
|
7846
7894
|
* @param {*} [options] Override http request option.
|
|
7847
7895
|
* @throws {RequiredError}
|
|
7848
7896
|
*/
|
|
7849
|
-
getGroupMembers: (groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7897
|
+
getGroupMembers: (groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7850
7898
|
/**
|
|
7851
7899
|
* Returns a List of all possible/available permissions for a Group.
|
|
7852
7900
|
* @summary List Group Permissions
|
|
@@ -8188,10 +8236,11 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8188
8236
|
* @param {string} groupId Must be a valid group ID.
|
|
8189
8237
|
* @param {number} [n] The number of objects to return.
|
|
8190
8238
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8239
|
+
* @param {GroupSearchSort} [sort] The sort order of Group Member results
|
|
8191
8240
|
* @param {*} [options] Override http request option.
|
|
8192
8241
|
* @throws {RequiredError}
|
|
8193
8242
|
*/
|
|
8194
|
-
getGroupMembers(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>>;
|
|
8243
|
+
getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>>;
|
|
8195
8244
|
/**
|
|
8196
8245
|
* Returns a List of all possible/available permissions for a Group.
|
|
8197
8246
|
* @summary List Group Permissions
|
|
@@ -8533,10 +8582,11 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8533
8582
|
* @param {string} groupId Must be a valid group ID.
|
|
8534
8583
|
* @param {number} [n] The number of objects to return.
|
|
8535
8584
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8585
|
+
* @param {GroupSearchSort} [sort] The sort order of Group Member results
|
|
8536
8586
|
* @param {*} [options] Override http request option.
|
|
8537
8587
|
* @throws {RequiredError}
|
|
8538
8588
|
*/
|
|
8539
|
-
getGroupMembers(groupId: string, n?: number, offset?: number, options?: any): AxiosPromise<Array<GroupMember>>;
|
|
8589
|
+
getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: any): AxiosPromise<Array<GroupMember>>;
|
|
8540
8590
|
/**
|
|
8541
8591
|
* Returns a List of all possible/available permissions for a Group.
|
|
8542
8592
|
* @summary List Group Permissions
|
|
@@ -8902,11 +8952,12 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
8902
8952
|
* @param {string} groupId Must be a valid group ID.
|
|
8903
8953
|
* @param {number} [n] The number of objects to return.
|
|
8904
8954
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8955
|
+
* @param {GroupSearchSort} [sort] The sort order of Group Member results
|
|
8905
8956
|
* @param {*} [options] Override http request option.
|
|
8906
8957
|
* @throws {RequiredError}
|
|
8907
8958
|
* @memberof GroupsApi
|
|
8908
8959
|
*/
|
|
8909
|
-
getGroupMembers(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember[], any>>;
|
|
8960
|
+
getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember[], any>>;
|
|
8910
8961
|
/**
|
|
8911
8962
|
* Returns a List of all possible/available permissions for a Group.
|
|
8912
8963
|
* @summary List Group Permissions
|
package/dist/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.16.
|
|
7
|
+
* The version of the OpenAPI document: 1.16.4
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -74,8 +74,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
74
74
|
}
|
|
75
75
|
};
|
|
76
76
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
77
|
-
exports.
|
|
78
|
-
exports.WorldsApi = exports.WorldsApiFactory = exports.WorldsApiFp = exports.WorldsApiAxiosParamCreator = exports.UsersApi = exports.UsersApiFactory = exports.UsersApiFp = exports.UsersApiAxiosParamCreator = exports.SystemApi = exports.SystemApiFactory = exports.SystemApiFp = exports.SystemApiAxiosParamCreator = exports.PlayermoderationApi = exports.PlayermoderationApiFactory = exports.PlayermoderationApiFp = exports.PlayermoderationApiAxiosParamCreator = exports.PermissionsApi = exports.PermissionsApiFactory = exports.PermissionsApiFp = exports.PermissionsApiAxiosParamCreator = exports.NotificationsApi = exports.NotificationsApiFactory = exports.NotificationsApiFp = exports.NotificationsApiAxiosParamCreator = exports.InviteApi = exports.InviteApiFactory = exports.InviteApiFp = exports.InviteApiAxiosParamCreator = exports.InstancesApi = exports.InstancesApiFactory = exports.InstancesApiFp = exports.InstancesApiAxiosParamCreator = exports.GroupsApi = exports.GroupsApiFactory = exports.GroupsApiFp = exports.GroupsApiAxiosParamCreator = exports.FriendsApi = void 0;
|
|
77
|
+
exports.FriendsApiFp = exports.FriendsApiAxiosParamCreator = exports.FilesApi = exports.FilesApiFactory = exports.FilesApiFp = exports.FilesApiAxiosParamCreator = exports.FavoritesApi = exports.FavoritesApiFactory = exports.FavoritesApiFp = exports.FavoritesApiAxiosParamCreator = exports.EconomyApi = exports.EconomyApiFactory = exports.EconomyApiFp = exports.EconomyApiAxiosParamCreator = exports.AvatarsApi = exports.AvatarsApiFactory = exports.AvatarsApiFp = exports.AvatarsApiAxiosParamCreator = exports.AuthenticationApi = exports.AuthenticationApiFactory = exports.AuthenticationApiFp = exports.AuthenticationApiAxiosParamCreator = exports.UserStatus = exports.UserState = exports.TransactionStatus = exports.SubscriptionPeriod = exports.SortOption = exports.ReleaseStatus = exports.Region = exports.PlayerModerationType = exports.OrderOption = exports.NotificationType = exports.MIMEType = exports.LicenseType = exports.LicenseAction = exports.InviteMessageType = exports.InstanceType = exports.InfoPushDataClickableCommandEnum = exports.GroupUserVisibility = exports.GroupSearchSort = exports.GroupRoleTemplate = exports.GroupPrivacy = exports.GroupMemberStatus = exports.GroupJoinState = exports.FileStatus = exports.FileDataCategoryEnum = exports.FavoriteType = exports.FavoriteGroupVisibility = exports.DeveloperType = exports.DeploymentGroup = void 0;
|
|
78
|
+
exports.WorldsApi = exports.WorldsApiFactory = exports.WorldsApiFp = exports.WorldsApiAxiosParamCreator = exports.UsersApi = exports.UsersApiFactory = exports.UsersApiFp = exports.UsersApiAxiosParamCreator = exports.SystemApi = exports.SystemApiFactory = exports.SystemApiFp = exports.SystemApiAxiosParamCreator = exports.PlayermoderationApi = exports.PlayermoderationApiFactory = exports.PlayermoderationApiFp = exports.PlayermoderationApiAxiosParamCreator = exports.PermissionsApi = exports.PermissionsApiFactory = exports.PermissionsApiFp = exports.PermissionsApiAxiosParamCreator = exports.NotificationsApi = exports.NotificationsApiFactory = exports.NotificationsApiFp = exports.NotificationsApiAxiosParamCreator = exports.InviteApi = exports.InviteApiFactory = exports.InviteApiFp = exports.InviteApiAxiosParamCreator = exports.InstancesApi = exports.InstancesApiFactory = exports.InstancesApiFp = exports.InstancesApiAxiosParamCreator = exports.GroupsApi = exports.GroupsApiFactory = exports.GroupsApiFp = exports.GroupsApiAxiosParamCreator = exports.FriendsApi = exports.FriendsApiFactory = void 0;
|
|
79
79
|
var axios_1 = require("axios");
|
|
80
80
|
// Some imports not used depending on template conditions
|
|
81
81
|
// @ts-ignore
|
|
@@ -187,6 +187,15 @@ exports.GroupRoleTemplate = {
|
|
|
187
187
|
ManagedInvite: 'managedInvite',
|
|
188
188
|
ManagedRequest: 'managedRequest'
|
|
189
189
|
};
|
|
190
|
+
/**
|
|
191
|
+
*
|
|
192
|
+
* @export
|
|
193
|
+
* @enum {string}
|
|
194
|
+
*/
|
|
195
|
+
exports.GroupSearchSort = {
|
|
196
|
+
Asc: 'joinedAt:asc',
|
|
197
|
+
Desc: 'joinedAt:desc'
|
|
198
|
+
};
|
|
190
199
|
/**
|
|
191
200
|
*
|
|
192
201
|
* @export
|
|
@@ -276,6 +285,7 @@ exports.NotificationType = {
|
|
|
276
285
|
FriendRequest: 'friendRequest',
|
|
277
286
|
Invite: 'invite',
|
|
278
287
|
InviteResponse: 'inviteResponse',
|
|
288
|
+
Message: 'message',
|
|
279
289
|
RequestInvite: 'requestInvite',
|
|
280
290
|
RequestInviteResponse: 'requestInviteResponse',
|
|
281
291
|
Votetokick: 'votetokick'
|
|
@@ -5289,10 +5299,11 @@ var GroupsApiAxiosParamCreator = function (configuration) {
|
|
|
5289
5299
|
* @param {string} groupId Must be a valid group ID.
|
|
5290
5300
|
* @param {number} [n] The number of objects to return.
|
|
5291
5301
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
5302
|
+
* @param {GroupSearchSort} [sort] The sort order of Group Member results
|
|
5292
5303
|
* @param {*} [options] Override http request option.
|
|
5293
5304
|
* @throws {RequiredError}
|
|
5294
5305
|
*/
|
|
5295
|
-
getGroupMembers: function (groupId, n, offset, options) {
|
|
5306
|
+
getGroupMembers: function (groupId, n, offset, sort, options) {
|
|
5296
5307
|
if (options === void 0) { options = {}; }
|
|
5297
5308
|
return __awaiter(_this, void 0, void 0, function () {
|
|
5298
5309
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -5315,6 +5326,9 @@ var GroupsApiAxiosParamCreator = function (configuration) {
|
|
|
5315
5326
|
if (offset !== undefined) {
|
|
5316
5327
|
localVarQueryParameter['offset'] = offset;
|
|
5317
5328
|
}
|
|
5329
|
+
if (sort !== undefined) {
|
|
5330
|
+
localVarQueryParameter['sort'] = sort;
|
|
5331
|
+
}
|
|
5318
5332
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
5319
5333
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5320
5334
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -6337,15 +6351,16 @@ var GroupsApiFp = function (configuration) {
|
|
|
6337
6351
|
* @param {string} groupId Must be a valid group ID.
|
|
6338
6352
|
* @param {number} [n] The number of objects to return.
|
|
6339
6353
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
6354
|
+
* @param {GroupSearchSort} [sort] The sort order of Group Member results
|
|
6340
6355
|
* @param {*} [options] Override http request option.
|
|
6341
6356
|
* @throws {RequiredError}
|
|
6342
6357
|
*/
|
|
6343
|
-
getGroupMembers: function (groupId, n, offset, options) {
|
|
6358
|
+
getGroupMembers: function (groupId, n, offset, sort, options) {
|
|
6344
6359
|
return __awaiter(this, void 0, void 0, function () {
|
|
6345
6360
|
var localVarAxiosArgs;
|
|
6346
6361
|
return __generator(this, function (_a) {
|
|
6347
6362
|
switch (_a.label) {
|
|
6348
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getGroupMembers(groupId, n, offset, options)];
|
|
6363
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getGroupMembers(groupId, n, offset, sort, options)];
|
|
6349
6364
|
case 1:
|
|
6350
6365
|
localVarAxiosArgs = _a.sent();
|
|
6351
6366
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -6910,11 +6925,12 @@ var GroupsApiFactory = function (configuration, basePath, axios) {
|
|
|
6910
6925
|
* @param {string} groupId Must be a valid group ID.
|
|
6911
6926
|
* @param {number} [n] The number of objects to return.
|
|
6912
6927
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
6928
|
+
* @param {GroupSearchSort} [sort] The sort order of Group Member results
|
|
6913
6929
|
* @param {*} [options] Override http request option.
|
|
6914
6930
|
* @throws {RequiredError}
|
|
6915
6931
|
*/
|
|
6916
|
-
getGroupMembers: function (groupId, n, offset, options) {
|
|
6917
|
-
return localVarFp.getGroupMembers(groupId, n, offset, options).then(function (request) { return request(axios, basePath); });
|
|
6932
|
+
getGroupMembers: function (groupId, n, offset, sort, options) {
|
|
6933
|
+
return localVarFp.getGroupMembers(groupId, n, offset, sort, options).then(function (request) { return request(axios, basePath); });
|
|
6918
6934
|
},
|
|
6919
6935
|
/**
|
|
6920
6936
|
* Returns a List of all possible/available permissions for a Group.
|
|
@@ -7381,13 +7397,14 @@ var GroupsApi = /** @class */ (function (_super) {
|
|
|
7381
7397
|
* @param {string} groupId Must be a valid group ID.
|
|
7382
7398
|
* @param {number} [n] The number of objects to return.
|
|
7383
7399
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
7400
|
+
* @param {GroupSearchSort} [sort] The sort order of Group Member results
|
|
7384
7401
|
* @param {*} [options] Override http request option.
|
|
7385
7402
|
* @throws {RequiredError}
|
|
7386
7403
|
* @memberof GroupsApi
|
|
7387
7404
|
*/
|
|
7388
|
-
GroupsApi.prototype.getGroupMembers = function (groupId, n, offset, options) {
|
|
7405
|
+
GroupsApi.prototype.getGroupMembers = function (groupId, n, offset, sort, options) {
|
|
7389
7406
|
var _this = this;
|
|
7390
|
-
return (0, exports.GroupsApiFp)(this.configuration).getGroupMembers(groupId, n, offset, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7407
|
+
return (0, exports.GroupsApiFp)(this.configuration).getGroupMembers(groupId, n, offset, sort, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7391
7408
|
};
|
|
7392
7409
|
/**
|
|
7393
7410
|
* Returns a List of all possible/available permissions for a Group.
|
package/dist/base.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.16.
|
|
4
|
+
* The version of the OpenAPI document: 1.16.4
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.16.
|
|
7
|
+
* The version of the OpenAPI document: 1.16.4
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.16.
|
|
4
|
+
* The version of the OpenAPI document: 1.16.4
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.16.
|
|
7
|
+
* The version of the OpenAPI document: 1.16.4
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.16.
|
|
4
|
+
* The version of the OpenAPI document: 1.16.4
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.16.
|
|
7
|
+
* The version of the OpenAPI document: 1.16.4
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRChat API Documentation
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 1.16.
|
|
4
|
+
* The version of the OpenAPI document: 1.16.4
|
|
5
5
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
6
6
|
*
|
|
7
7
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* VRChat API Documentation
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.16.
|
|
7
|
+
* The version of the OpenAPI document: 1.16.4
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/index.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.16.
|
|
6
|
+
* The version of the OpenAPI document: 1.16.4
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|