vrchat 1.16.6 → 1.16.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 +49 -17
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +27 -11
- package/dist/api.js +43 -15
- 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.7
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2680,7 +2680,7 @@ export interface GroupLimitedMember {
|
|
|
2680
2680
|
* @type {string}
|
|
2681
2681
|
* @memberof GroupLimitedMember
|
|
2682
2682
|
*/
|
|
2683
|
-
'lastPostReadAt'?: string;
|
|
2683
|
+
'lastPostReadAt'?: string | null;
|
|
2684
2684
|
/**
|
|
2685
2685
|
*
|
|
2686
2686
|
* @type {boolean}
|
|
@@ -2783,7 +2783,7 @@ export interface GroupMember {
|
|
|
2783
2783
|
* @type {string}
|
|
2784
2784
|
* @memberof GroupMember
|
|
2785
2785
|
*/
|
|
2786
|
-
'lastPostReadAt'?: string;
|
|
2786
|
+
'lastPostReadAt'?: string | null;
|
|
2787
2787
|
/**
|
|
2788
2788
|
*
|
|
2789
2789
|
* @type {boolean}
|
|
@@ -10702,10 +10702,12 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10702
10702
|
* Returns a list of members that have been invited to the Group.
|
|
10703
10703
|
* @summary Get Group Invites Sent
|
|
10704
10704
|
* @param {string} groupId Must be a valid group ID.
|
|
10705
|
+
* @param {number} [n] The number of objects to return.
|
|
10706
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
10705
10707
|
* @param {*} [options] Override http request option.
|
|
10706
10708
|
* @throws {RequiredError}
|
|
10707
10709
|
*/
|
|
10708
|
-
getGroupInvites: async (groupId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10710
|
+
getGroupInvites: async (groupId: string, n?: number, offset?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10709
10711
|
// verify required parameter 'groupId' is not null or undefined
|
|
10710
10712
|
assertParamExists('getGroupInvites', 'groupId', groupId)
|
|
10711
10713
|
const localVarPath = `/groups/{groupId}/invites`
|
|
@@ -10723,6 +10725,14 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10723
10725
|
|
|
10724
10726
|
// authentication authCookie required
|
|
10725
10727
|
|
|
10728
|
+
if (n !== undefined) {
|
|
10729
|
+
localVarQueryParameter['n'] = n;
|
|
10730
|
+
}
|
|
10731
|
+
|
|
10732
|
+
if (offset !== undefined) {
|
|
10733
|
+
localVarQueryParameter['offset'] = offset;
|
|
10734
|
+
}
|
|
10735
|
+
|
|
10726
10736
|
|
|
10727
10737
|
|
|
10728
10738
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -10865,10 +10875,12 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10865
10875
|
* Returns a list of members that have requested to join the Group.
|
|
10866
10876
|
* @summary Get Group Join Requests
|
|
10867
10877
|
* @param {string} groupId Must be a valid group ID.
|
|
10878
|
+
* @param {number} [n] The number of objects to return.
|
|
10879
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
10868
10880
|
* @param {*} [options] Override http request option.
|
|
10869
10881
|
* @throws {RequiredError}
|
|
10870
10882
|
*/
|
|
10871
|
-
getGroupRequests: async (groupId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10883
|
+
getGroupRequests: async (groupId: string, n?: number, offset?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10872
10884
|
// verify required parameter 'groupId' is not null or undefined
|
|
10873
10885
|
assertParamExists('getGroupRequests', 'groupId', groupId)
|
|
10874
10886
|
const localVarPath = `/groups/{groupId}/requests`
|
|
@@ -10886,6 +10898,14 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
10886
10898
|
|
|
10887
10899
|
// authentication authCookie required
|
|
10888
10900
|
|
|
10901
|
+
if (n !== undefined) {
|
|
10902
|
+
localVarQueryParameter['n'] = n;
|
|
10903
|
+
}
|
|
10904
|
+
|
|
10905
|
+
if (offset !== undefined) {
|
|
10906
|
+
localVarQueryParameter['offset'] = offset;
|
|
10907
|
+
}
|
|
10908
|
+
|
|
10889
10909
|
|
|
10890
10910
|
|
|
10891
10911
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -11649,11 +11669,13 @@ export const GroupsApiFp = function(configuration?: Configuration) {
|
|
|
11649
11669
|
* Returns a list of members that have been invited to the Group.
|
|
11650
11670
|
* @summary Get Group Invites Sent
|
|
11651
11671
|
* @param {string} groupId Must be a valid group ID.
|
|
11672
|
+
* @param {number} [n] The number of objects to return.
|
|
11673
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
11652
11674
|
* @param {*} [options] Override http request option.
|
|
11653
11675
|
* @throws {RequiredError}
|
|
11654
11676
|
*/
|
|
11655
|
-
async getGroupInvites(groupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>> {
|
|
11656
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getGroupInvites(groupId, options);
|
|
11677
|
+
async getGroupInvites(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>> {
|
|
11678
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getGroupInvites(groupId, n, offset, options);
|
|
11657
11679
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11658
11680
|
},
|
|
11659
11681
|
/**
|
|
@@ -11697,11 +11719,13 @@ export const GroupsApiFp = function(configuration?: Configuration) {
|
|
|
11697
11719
|
* Returns a list of members that have requested to join the Group.
|
|
11698
11720
|
* @summary Get Group Join Requests
|
|
11699
11721
|
* @param {string} groupId Must be a valid group ID.
|
|
11722
|
+
* @param {number} [n] The number of objects to return.
|
|
11723
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
11700
11724
|
* @param {*} [options] Override http request option.
|
|
11701
11725
|
* @throws {RequiredError}
|
|
11702
11726
|
*/
|
|
11703
|
-
async getGroupRequests(groupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>> {
|
|
11704
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getGroupRequests(groupId, options);
|
|
11727
|
+
async getGroupRequests(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>> {
|
|
11728
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getGroupRequests(groupId, n, offset, options);
|
|
11705
11729
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
11706
11730
|
},
|
|
11707
11731
|
/**
|
|
@@ -12090,11 +12114,13 @@ export const GroupsApiFactory = function (configuration?: Configuration, basePat
|
|
|
12090
12114
|
* Returns a list of members that have been invited to the Group.
|
|
12091
12115
|
* @summary Get Group Invites Sent
|
|
12092
12116
|
* @param {string} groupId Must be a valid group ID.
|
|
12117
|
+
* @param {number} [n] The number of objects to return.
|
|
12118
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
12093
12119
|
* @param {*} [options] Override http request option.
|
|
12094
12120
|
* @throws {RequiredError}
|
|
12095
12121
|
*/
|
|
12096
|
-
getGroupInvites(groupId: string, options?: any): AxiosPromise<Array<GroupMember>> {
|
|
12097
|
-
return localVarFp.getGroupInvites(groupId, options).then((request) => request(axios, basePath));
|
|
12122
|
+
getGroupInvites(groupId: string, n?: number, offset?: number, options?: any): AxiosPromise<Array<GroupMember>> {
|
|
12123
|
+
return localVarFp.getGroupInvites(groupId, n, offset, options).then((request) => request(axios, basePath));
|
|
12098
12124
|
},
|
|
12099
12125
|
/**
|
|
12100
12126
|
* Returns a LimitedGroup Member.
|
|
@@ -12134,11 +12160,13 @@ export const GroupsApiFactory = function (configuration?: Configuration, basePat
|
|
|
12134
12160
|
* Returns a list of members that have requested to join the Group.
|
|
12135
12161
|
* @summary Get Group Join Requests
|
|
12136
12162
|
* @param {string} groupId Must be a valid group ID.
|
|
12163
|
+
* @param {number} [n] The number of objects to return.
|
|
12164
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
12137
12165
|
* @param {*} [options] Override http request option.
|
|
12138
12166
|
* @throws {RequiredError}
|
|
12139
12167
|
*/
|
|
12140
|
-
getGroupRequests(groupId: string, options?: any): AxiosPromise<Array<GroupMember>> {
|
|
12141
|
-
return localVarFp.getGroupRequests(groupId, options).then((request) => request(axios, basePath));
|
|
12168
|
+
getGroupRequests(groupId: string, n?: number, offset?: number, options?: any): AxiosPromise<Array<GroupMember>> {
|
|
12169
|
+
return localVarFp.getGroupRequests(groupId, n, offset, options).then((request) => request(axios, basePath));
|
|
12142
12170
|
},
|
|
12143
12171
|
/**
|
|
12144
12172
|
* Returns a Group Role by ID.
|
|
@@ -12554,12 +12582,14 @@ export class GroupsApi extends BaseAPI {
|
|
|
12554
12582
|
* Returns a list of members that have been invited to the Group.
|
|
12555
12583
|
* @summary Get Group Invites Sent
|
|
12556
12584
|
* @param {string} groupId Must be a valid group ID.
|
|
12585
|
+
* @param {number} [n] The number of objects to return.
|
|
12586
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
12557
12587
|
* @param {*} [options] Override http request option.
|
|
12558
12588
|
* @throws {RequiredError}
|
|
12559
12589
|
* @memberof GroupsApi
|
|
12560
12590
|
*/
|
|
12561
|
-
public getGroupInvites(groupId: string, options?: AxiosRequestConfig) {
|
|
12562
|
-
return GroupsApiFp(this.configuration).getGroupInvites(groupId, options).then((request) => request(this.axios, this.basePath));
|
|
12591
|
+
public getGroupInvites(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig) {
|
|
12592
|
+
return GroupsApiFp(this.configuration).getGroupInvites(groupId, n, offset, options).then((request) => request(this.axios, this.basePath));
|
|
12563
12593
|
}
|
|
12564
12594
|
|
|
12565
12595
|
/**
|
|
@@ -12606,12 +12636,14 @@ export class GroupsApi extends BaseAPI {
|
|
|
12606
12636
|
* Returns a list of members that have requested to join the Group.
|
|
12607
12637
|
* @summary Get Group Join Requests
|
|
12608
12638
|
* @param {string} groupId Must be a valid group ID.
|
|
12639
|
+
* @param {number} [n] The number of objects to return.
|
|
12640
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
12609
12641
|
* @param {*} [options] Override http request option.
|
|
12610
12642
|
* @throws {RequiredError}
|
|
12611
12643
|
* @memberof GroupsApi
|
|
12612
12644
|
*/
|
|
12613
|
-
public getGroupRequests(groupId: string, options?: AxiosRequestConfig) {
|
|
12614
|
-
return GroupsApiFp(this.configuration).getGroupRequests(groupId, options).then((request) => request(this.axios, this.basePath));
|
|
12645
|
+
public getGroupRequests(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig) {
|
|
12646
|
+
return GroupsApiFp(this.configuration).getGroupRequests(groupId, n, offset, options).then((request) => request(this.axios, this.basePath));
|
|
12615
12647
|
}
|
|
12616
12648
|
|
|
12617
12649
|
/**
|
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.7
|
|
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.7
|
|
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.7
|
|
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.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).
|
|
@@ -2643,7 +2643,7 @@ export interface GroupLimitedMember {
|
|
|
2643
2643
|
* @type {string}
|
|
2644
2644
|
* @memberof GroupLimitedMember
|
|
2645
2645
|
*/
|
|
2646
|
-
'lastPostReadAt'?: string;
|
|
2646
|
+
'lastPostReadAt'?: string | null;
|
|
2647
2647
|
/**
|
|
2648
2648
|
*
|
|
2649
2649
|
* @type {boolean}
|
|
@@ -2746,7 +2746,7 @@ export interface GroupMember {
|
|
|
2746
2746
|
* @type {string}
|
|
2747
2747
|
* @memberof GroupMember
|
|
2748
2748
|
*/
|
|
2749
|
-
'lastPostReadAt'?: string;
|
|
2749
|
+
'lastPostReadAt'?: string | null;
|
|
2750
2750
|
/**
|
|
2751
2751
|
*
|
|
2752
2752
|
* @type {boolean}
|
|
@@ -8040,10 +8040,12 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8040
8040
|
* Returns a list of members that have been invited to the Group.
|
|
8041
8041
|
* @summary Get Group Invites Sent
|
|
8042
8042
|
* @param {string} groupId Must be a valid group ID.
|
|
8043
|
+
* @param {number} [n] The number of objects to return.
|
|
8044
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8043
8045
|
* @param {*} [options] Override http request option.
|
|
8044
8046
|
* @throws {RequiredError}
|
|
8045
8047
|
*/
|
|
8046
|
-
getGroupInvites: (groupId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8048
|
+
getGroupInvites: (groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8047
8049
|
/**
|
|
8048
8050
|
* Returns a LimitedGroup Member.
|
|
8049
8051
|
* @summary Get Group Member
|
|
@@ -8076,10 +8078,12 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8076
8078
|
* Returns a list of members that have requested to join the Group.
|
|
8077
8079
|
* @summary Get Group Join Requests
|
|
8078
8080
|
* @param {string} groupId Must be a valid group ID.
|
|
8081
|
+
* @param {number} [n] The number of objects to return.
|
|
8082
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8079
8083
|
* @param {*} [options] Override http request option.
|
|
8080
8084
|
* @throws {RequiredError}
|
|
8081
8085
|
*/
|
|
8082
|
-
getGroupRequests: (groupId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8086
|
+
getGroupRequests: (groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8083
8087
|
/**
|
|
8084
8088
|
* Returns a Group Role by ID.
|
|
8085
8089
|
* @summary Get Group Roles
|
|
@@ -8386,10 +8390,12 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8386
8390
|
* Returns a list of members that have been invited to the Group.
|
|
8387
8391
|
* @summary Get Group Invites Sent
|
|
8388
8392
|
* @param {string} groupId Must be a valid group ID.
|
|
8393
|
+
* @param {number} [n] The number of objects to return.
|
|
8394
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8389
8395
|
* @param {*} [options] Override http request option.
|
|
8390
8396
|
* @throws {RequiredError}
|
|
8391
8397
|
*/
|
|
8392
|
-
getGroupInvites(groupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>>;
|
|
8398
|
+
getGroupInvites(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>>;
|
|
8393
8399
|
/**
|
|
8394
8400
|
* Returns a LimitedGroup Member.
|
|
8395
8401
|
* @summary Get Group Member
|
|
@@ -8422,10 +8428,12 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8422
8428
|
* Returns a list of members that have requested to join the Group.
|
|
8423
8429
|
* @summary Get Group Join Requests
|
|
8424
8430
|
* @param {string} groupId Must be a valid group ID.
|
|
8431
|
+
* @param {number} [n] The number of objects to return.
|
|
8432
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8425
8433
|
* @param {*} [options] Override http request option.
|
|
8426
8434
|
* @throws {RequiredError}
|
|
8427
8435
|
*/
|
|
8428
|
-
getGroupRequests(groupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>>;
|
|
8436
|
+
getGroupRequests(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>>;
|
|
8429
8437
|
/**
|
|
8430
8438
|
* Returns a Group Role by ID.
|
|
8431
8439
|
* @summary Get Group Roles
|
|
@@ -8732,10 +8740,12 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8732
8740
|
* Returns a list of members that have been invited to the Group.
|
|
8733
8741
|
* @summary Get Group Invites Sent
|
|
8734
8742
|
* @param {string} groupId Must be a valid group ID.
|
|
8743
|
+
* @param {number} [n] The number of objects to return.
|
|
8744
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8735
8745
|
* @param {*} [options] Override http request option.
|
|
8736
8746
|
* @throws {RequiredError}
|
|
8737
8747
|
*/
|
|
8738
|
-
getGroupInvites(groupId: string, options?: any): AxiosPromise<Array<GroupMember>>;
|
|
8748
|
+
getGroupInvites(groupId: string, n?: number, offset?: number, options?: any): AxiosPromise<Array<GroupMember>>;
|
|
8739
8749
|
/**
|
|
8740
8750
|
* Returns a LimitedGroup Member.
|
|
8741
8751
|
* @summary Get Group Member
|
|
@@ -8768,10 +8778,12 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
8768
8778
|
* Returns a list of members that have requested to join the Group.
|
|
8769
8779
|
* @summary Get Group Join Requests
|
|
8770
8780
|
* @param {string} groupId Must be a valid group ID.
|
|
8781
|
+
* @param {number} [n] The number of objects to return.
|
|
8782
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8771
8783
|
* @param {*} [options] Override http request option.
|
|
8772
8784
|
* @throws {RequiredError}
|
|
8773
8785
|
*/
|
|
8774
|
-
getGroupRequests(groupId: string, options?: any): AxiosPromise<Array<GroupMember>>;
|
|
8786
|
+
getGroupRequests(groupId: string, n?: number, offset?: number, options?: any): AxiosPromise<Array<GroupMember>>;
|
|
8775
8787
|
/**
|
|
8776
8788
|
* Returns a Group Role by ID.
|
|
8777
8789
|
* @summary Get Group Roles
|
|
@@ -9100,11 +9112,13 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
9100
9112
|
* Returns a list of members that have been invited to the Group.
|
|
9101
9113
|
* @summary Get Group Invites Sent
|
|
9102
9114
|
* @param {string} groupId Must be a valid group ID.
|
|
9115
|
+
* @param {number} [n] The number of objects to return.
|
|
9116
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
9103
9117
|
* @param {*} [options] Override http request option.
|
|
9104
9118
|
* @throws {RequiredError}
|
|
9105
9119
|
* @memberof GroupsApi
|
|
9106
9120
|
*/
|
|
9107
|
-
getGroupInvites(groupId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember[], any>>;
|
|
9121
|
+
getGroupInvites(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember[], any>>;
|
|
9108
9122
|
/**
|
|
9109
9123
|
* Returns a LimitedGroup Member.
|
|
9110
9124
|
* @summary Get Group Member
|
|
@@ -9140,11 +9154,13 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
9140
9154
|
* Returns a list of members that have requested to join the Group.
|
|
9141
9155
|
* @summary Get Group Join Requests
|
|
9142
9156
|
* @param {string} groupId Must be a valid group ID.
|
|
9157
|
+
* @param {number} [n] The number of objects to return.
|
|
9158
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
9143
9159
|
* @param {*} [options] Override http request option.
|
|
9144
9160
|
* @throws {RequiredError}
|
|
9145
9161
|
* @memberof GroupsApi
|
|
9146
9162
|
*/
|
|
9147
|
-
getGroupRequests(groupId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember[], any>>;
|
|
9163
|
+
getGroupRequests(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember[], any>>;
|
|
9148
9164
|
/**
|
|
9149
9165
|
* Returns a Group Role by ID.
|
|
9150
9166
|
* @summary Get Group Roles
|
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.7
|
|
8
8
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5225,10 +5225,12 @@ var GroupsApiAxiosParamCreator = function (configuration) {
|
|
|
5225
5225
|
* Returns a list of members that have been invited to the Group.
|
|
5226
5226
|
* @summary Get Group Invites Sent
|
|
5227
5227
|
* @param {string} groupId Must be a valid group ID.
|
|
5228
|
+
* @param {number} [n] The number of objects to return.
|
|
5229
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
5228
5230
|
* @param {*} [options] Override http request option.
|
|
5229
5231
|
* @throws {RequiredError}
|
|
5230
5232
|
*/
|
|
5231
|
-
getGroupInvites: function (groupId, options) {
|
|
5233
|
+
getGroupInvites: function (groupId, n, offset, options) {
|
|
5232
5234
|
if (options === void 0) { options = {}; }
|
|
5233
5235
|
return __awaiter(_this, void 0, void 0, function () {
|
|
5234
5236
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -5245,6 +5247,12 @@ var GroupsApiAxiosParamCreator = function (configuration) {
|
|
|
5245
5247
|
localVarHeaderParameter = {};
|
|
5246
5248
|
localVarQueryParameter = {};
|
|
5247
5249
|
// authentication authCookie required
|
|
5250
|
+
if (n !== undefined) {
|
|
5251
|
+
localVarQueryParameter['n'] = n;
|
|
5252
|
+
}
|
|
5253
|
+
if (offset !== undefined) {
|
|
5254
|
+
localVarQueryParameter['offset'] = offset;
|
|
5255
|
+
}
|
|
5248
5256
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
5249
5257
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5250
5258
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -5377,10 +5385,12 @@ var GroupsApiAxiosParamCreator = function (configuration) {
|
|
|
5377
5385
|
* Returns a list of members that have requested to join the Group.
|
|
5378
5386
|
* @summary Get Group Join Requests
|
|
5379
5387
|
* @param {string} groupId Must be a valid group ID.
|
|
5388
|
+
* @param {number} [n] The number of objects to return.
|
|
5389
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
5380
5390
|
* @param {*} [options] Override http request option.
|
|
5381
5391
|
* @throws {RequiredError}
|
|
5382
5392
|
*/
|
|
5383
|
-
getGroupRequests: function (groupId, options) {
|
|
5393
|
+
getGroupRequests: function (groupId, n, offset, options) {
|
|
5384
5394
|
if (options === void 0) { options = {}; }
|
|
5385
5395
|
return __awaiter(_this, void 0, void 0, function () {
|
|
5386
5396
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -5397,6 +5407,12 @@ var GroupsApiAxiosParamCreator = function (configuration) {
|
|
|
5397
5407
|
localVarHeaderParameter = {};
|
|
5398
5408
|
localVarQueryParameter = {};
|
|
5399
5409
|
// authentication authCookie required
|
|
5410
|
+
if (n !== undefined) {
|
|
5411
|
+
localVarQueryParameter['n'] = n;
|
|
5412
|
+
}
|
|
5413
|
+
if (offset !== undefined) {
|
|
5414
|
+
localVarQueryParameter['offset'] = offset;
|
|
5415
|
+
}
|
|
5400
5416
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
5401
5417
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5402
5418
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -6308,15 +6324,17 @@ var GroupsApiFp = function (configuration) {
|
|
|
6308
6324
|
* Returns a list of members that have been invited to the Group.
|
|
6309
6325
|
* @summary Get Group Invites Sent
|
|
6310
6326
|
* @param {string} groupId Must be a valid group ID.
|
|
6327
|
+
* @param {number} [n] The number of objects to return.
|
|
6328
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
6311
6329
|
* @param {*} [options] Override http request option.
|
|
6312
6330
|
* @throws {RequiredError}
|
|
6313
6331
|
*/
|
|
6314
|
-
getGroupInvites: function (groupId, options) {
|
|
6332
|
+
getGroupInvites: function (groupId, n, offset, options) {
|
|
6315
6333
|
return __awaiter(this, void 0, void 0, function () {
|
|
6316
6334
|
var localVarAxiosArgs;
|
|
6317
6335
|
return __generator(this, function (_a) {
|
|
6318
6336
|
switch (_a.label) {
|
|
6319
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getGroupInvites(groupId, options)];
|
|
6337
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getGroupInvites(groupId, n, offset, options)];
|
|
6320
6338
|
case 1:
|
|
6321
6339
|
localVarAxiosArgs = _a.sent();
|
|
6322
6340
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -6392,15 +6410,17 @@ var GroupsApiFp = function (configuration) {
|
|
|
6392
6410
|
* Returns a list of members that have requested to join the Group.
|
|
6393
6411
|
* @summary Get Group Join Requests
|
|
6394
6412
|
* @param {string} groupId Must be a valid group ID.
|
|
6413
|
+
* @param {number} [n] The number of objects to return.
|
|
6414
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
6395
6415
|
* @param {*} [options] Override http request option.
|
|
6396
6416
|
* @throws {RequiredError}
|
|
6397
6417
|
*/
|
|
6398
|
-
getGroupRequests: function (groupId, options) {
|
|
6418
|
+
getGroupRequests: function (groupId, n, offset, options) {
|
|
6399
6419
|
return __awaiter(this, void 0, void 0, function () {
|
|
6400
6420
|
var localVarAxiosArgs;
|
|
6401
6421
|
return __generator(this, function (_a) {
|
|
6402
6422
|
switch (_a.label) {
|
|
6403
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getGroupRequests(groupId, options)];
|
|
6423
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getGroupRequests(groupId, n, offset, options)];
|
|
6404
6424
|
case 1:
|
|
6405
6425
|
localVarAxiosArgs = _a.sent();
|
|
6406
6426
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -6902,11 +6922,13 @@ var GroupsApiFactory = function (configuration, basePath, axios) {
|
|
|
6902
6922
|
* Returns a list of members that have been invited to the Group.
|
|
6903
6923
|
* @summary Get Group Invites Sent
|
|
6904
6924
|
* @param {string} groupId Must be a valid group ID.
|
|
6925
|
+
* @param {number} [n] The number of objects to return.
|
|
6926
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
6905
6927
|
* @param {*} [options] Override http request option.
|
|
6906
6928
|
* @throws {RequiredError}
|
|
6907
6929
|
*/
|
|
6908
|
-
getGroupInvites: function (groupId, options) {
|
|
6909
|
-
return localVarFp.getGroupInvites(groupId, options).then(function (request) { return request(axios, basePath); });
|
|
6930
|
+
getGroupInvites: function (groupId, n, offset, options) {
|
|
6931
|
+
return localVarFp.getGroupInvites(groupId, n, offset, options).then(function (request) { return request(axios, basePath); });
|
|
6910
6932
|
},
|
|
6911
6933
|
/**
|
|
6912
6934
|
* Returns a LimitedGroup Member.
|
|
@@ -6946,11 +6968,13 @@ var GroupsApiFactory = function (configuration, basePath, axios) {
|
|
|
6946
6968
|
* Returns a list of members that have requested to join the Group.
|
|
6947
6969
|
* @summary Get Group Join Requests
|
|
6948
6970
|
* @param {string} groupId Must be a valid group ID.
|
|
6971
|
+
* @param {number} [n] The number of objects to return.
|
|
6972
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
6949
6973
|
* @param {*} [options] Override http request option.
|
|
6950
6974
|
* @throws {RequiredError}
|
|
6951
6975
|
*/
|
|
6952
|
-
getGroupRequests: function (groupId, options) {
|
|
6953
|
-
return localVarFp.getGroupRequests(groupId, options).then(function (request) { return request(axios, basePath); });
|
|
6976
|
+
getGroupRequests: function (groupId, n, offset, options) {
|
|
6977
|
+
return localVarFp.getGroupRequests(groupId, n, offset, options).then(function (request) { return request(axios, basePath); });
|
|
6954
6978
|
},
|
|
6955
6979
|
/**
|
|
6956
6980
|
* Returns a Group Role by ID.
|
|
@@ -7370,13 +7394,15 @@ var GroupsApi = /** @class */ (function (_super) {
|
|
|
7370
7394
|
* Returns a list of members that have been invited to the Group.
|
|
7371
7395
|
* @summary Get Group Invites Sent
|
|
7372
7396
|
* @param {string} groupId Must be a valid group ID.
|
|
7397
|
+
* @param {number} [n] The number of objects to return.
|
|
7398
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
7373
7399
|
* @param {*} [options] Override http request option.
|
|
7374
7400
|
* @throws {RequiredError}
|
|
7375
7401
|
* @memberof GroupsApi
|
|
7376
7402
|
*/
|
|
7377
|
-
GroupsApi.prototype.getGroupInvites = function (groupId, options) {
|
|
7403
|
+
GroupsApi.prototype.getGroupInvites = function (groupId, n, offset, options) {
|
|
7378
7404
|
var _this = this;
|
|
7379
|
-
return (0, exports.GroupsApiFp)(this.configuration).getGroupInvites(groupId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7405
|
+
return (0, exports.GroupsApiFp)(this.configuration).getGroupInvites(groupId, n, offset, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7380
7406
|
};
|
|
7381
7407
|
/**
|
|
7382
7408
|
* Returns a LimitedGroup Member.
|
|
@@ -7422,13 +7448,15 @@ var GroupsApi = /** @class */ (function (_super) {
|
|
|
7422
7448
|
* Returns a list of members that have requested to join the Group.
|
|
7423
7449
|
* @summary Get Group Join Requests
|
|
7424
7450
|
* @param {string} groupId Must be a valid group ID.
|
|
7451
|
+
* @param {number} [n] The number of objects to return.
|
|
7452
|
+
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
7425
7453
|
* @param {*} [options] Override http request option.
|
|
7426
7454
|
* @throws {RequiredError}
|
|
7427
7455
|
* @memberof GroupsApi
|
|
7428
7456
|
*/
|
|
7429
|
-
GroupsApi.prototype.getGroupRequests = function (groupId, options) {
|
|
7457
|
+
GroupsApi.prototype.getGroupRequests = function (groupId, n, offset, options) {
|
|
7430
7458
|
var _this = this;
|
|
7431
|
-
return (0, exports.GroupsApiFp)(this.configuration).getGroupRequests(groupId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7459
|
+
return (0, exports.GroupsApiFp)(this.configuration).getGroupRequests(groupId, n, offset, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7432
7460
|
};
|
|
7433
7461
|
/**
|
|
7434
7462
|
* Returns a Group Role by ID.
|
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.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).
|
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.7
|
|
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.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).
|
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.7
|
|
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.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).
|
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.7
|
|
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.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).
|
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.7
|
|
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.7
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|