33/**
44 * VRChat API Documentation
55 *
6- * The version of the OpenAPI document: 1.16.6
6+ * The version of the OpenAPI document: 1.16.7
77 * Contact: vrchatapi.lpv0t@aries.fyi
88 *
99 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2680,7 +2680,7 @@ export interface GroupLimitedMember {
26802680 * @type {string}
26812681 * @memberof GroupLimitedMember
26822682 */
2683- 'lastPostReadAt'?: string;
2683+ 'lastPostReadAt'?: string | null ;
26842684 /**
26852685 *
26862686 * @type {boolean}
@@ -2783,7 +2783,7 @@ export interface GroupMember {
27832783 * @type {string}
27842784 * @memberof GroupMember
27852785 */
2786- 'lastPostReadAt'?: string;
2786+ 'lastPostReadAt'?: string | null ;
27872787 /**
27882788 *
27892789 * @type {boolean}
@@ -10702,10 +10702,12 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
1070210702 * Returns a list of members that have been invited to the Group.
1070310703 * @summary Get Group Invites Sent
1070410704 * @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.
1070510707 * @param {*} [options] Override http request option.
1070610708 * @throws {RequiredError}
1070710709 */
10708- getGroupInvites: async (groupId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10710+ getGroupInvites: async (groupId: string, n?: number, offset?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1070910711 // verify required parameter 'groupId' is not null or undefined
1071010712 assertParamExists('getGroupInvites', 'groupId', groupId)
1071110713 const localVarPath = `/groups/{groupId}/invites`
@@ -10723,6 +10725,14 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
1072310725
1072410726 // authentication authCookie required
1072510727
10728+ if (n !== undefined) {
10729+ localVarQueryParameter['n'] = n;
10730+ }
10731+
10732+ if (offset !== undefined) {
10733+ localVarQueryParameter['offset'] = offset;
10734+ }
10735+
1072610736
1072710737
1072810738 setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -10865,10 +10875,12 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
1086510875 * Returns a list of members that have requested to join the Group.
1086610876 * @summary Get Group Join Requests
1086710877 * @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.
1086810880 * @param {*} [options] Override http request option.
1086910881 * @throws {RequiredError}
1087010882 */
10871- getGroupRequests: async (groupId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10883+ getGroupRequests: async (groupId: string, n?: number, offset?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1087210884 // verify required parameter 'groupId' is not null or undefined
1087310885 assertParamExists('getGroupRequests', 'groupId', groupId)
1087410886 const localVarPath = `/groups/{groupId}/requests`
@@ -10886,6 +10898,14 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
1088610898
1088710899 // authentication authCookie required
1088810900
10901+ if (n !== undefined) {
10902+ localVarQueryParameter['n'] = n;
10903+ }
10904+
10905+ if (offset !== undefined) {
10906+ localVarQueryParameter['offset'] = offset;
10907+ }
10908+
1088910909
1089010910
1089110911 setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -11649,11 +11669,13 @@ export const GroupsApiFp = function(configuration?: Configuration) {
1164911669 * Returns a list of members that have been invited to the Group.
1165011670 * @summary Get Group Invites Sent
1165111671 * @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.
1165211674 * @param {*} [options] Override http request option.
1165311675 * @throws {RequiredError}
1165411676 */
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);
1165711679 return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1165811680 },
1165911681 /**
@@ -11697,11 +11719,13 @@ export const GroupsApiFp = function(configuration?: Configuration) {
1169711719 * Returns a list of members that have requested to join the Group.
1169811720 * @summary Get Group Join Requests
1169911721 * @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.
1170011724 * @param {*} [options] Override http request option.
1170111725 * @throws {RequiredError}
1170211726 */
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);
1170511729 return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1170611730 },
1170711731 /**
@@ -12090,11 +12114,13 @@ export const GroupsApiFactory = function (configuration?: Configuration, basePat
1209012114 * Returns a list of members that have been invited to the Group.
1209112115 * @summary Get Group Invites Sent
1209212116 * @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.
1209312119 * @param {*} [options] Override http request option.
1209412120 * @throws {RequiredError}
1209512121 */
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));
1209812124 },
1209912125 /**
1210012126 * Returns a LimitedGroup Member.
@@ -12134,11 +12160,13 @@ export const GroupsApiFactory = function (configuration?: Configuration, basePat
1213412160 * Returns a list of members that have requested to join the Group.
1213512161 * @summary Get Group Join Requests
1213612162 * @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.
1213712165 * @param {*} [options] Override http request option.
1213812166 * @throws {RequiredError}
1213912167 */
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));
1214212170 },
1214312171 /**
1214412172 * Returns a Group Role by ID.
@@ -12554,12 +12582,14 @@ export class GroupsApi extends BaseAPI {
1255412582 * Returns a list of members that have been invited to the Group.
1255512583 * @summary Get Group Invites Sent
1255612584 * @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.
1255712587 * @param {*} [options] Override http request option.
1255812588 * @throws {RequiredError}
1255912589 * @memberof GroupsApi
1256012590 */
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));
1256312593 }
1256412594
1256512595 /**
@@ -12606,12 +12636,14 @@ export class GroupsApi extends BaseAPI {
1260612636 * Returns a list of members that have requested to join the Group.
1260712637 * @summary Get Group Join Requests
1260812638 * @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.
1260912641 * @param {*} [options] Override http request option.
1261012642 * @throws {RequiredError}
1261112643 * @memberof GroupsApi
1261212644 */
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));
1261512647 }
1261612648
1261712649 /**
0 commit comments