vrchat 1.16.3 → 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 CHANGED
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * VRChat API Documentation
5
5
  *
6
- * The version of the OpenAPI document: 1.16.3
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
@@ -10561,10 +10611,11 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
10561
10611
  * @param {string} groupId Must be a valid group ID.
10562
10612
  * @param {number} [n] The number of objects to return.
10563
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
10564
10615
  * @param {*} [options] Override http request option.
10565
10616
  * @throws {RequiredError}
10566
10617
  */
10567
- 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> => {
10568
10619
  // verify required parameter 'groupId' is not null or undefined
10569
10620
  assertParamExists('getGroupMembers', 'groupId', groupId)
10570
10621
  const localVarPath = `/groups/{groupId}/members`
@@ -10590,6 +10641,10 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
10590
10641
  localVarQueryParameter['offset'] = offset;
10591
10642
  }
10592
10643
 
10644
+ if (sort !== undefined) {
10645
+ localVarQueryParameter['sort'] = sort;
10646
+ }
10647
+
10593
10648
 
10594
10649
 
10595
10650
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -11450,11 +11505,12 @@ export const GroupsApiFp = function(configuration?: Configuration) {
11450
11505
  * @param {string} groupId Must be a valid group ID.
11451
11506
  * @param {number} [n] The number of objects to return.
11452
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
11453
11509
  * @param {*} [options] Override http request option.
11454
11510
  * @throws {RequiredError}
11455
11511
  */
11456
- async getGroupMembers(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>> {
11457
- 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);
11458
11514
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11459
11515
  },
11460
11516
  /**
@@ -11888,11 +11944,12 @@ export const GroupsApiFactory = function (configuration?: Configuration, basePat
11888
11944
  * @param {string} groupId Must be a valid group ID.
11889
11945
  * @param {number} [n] The number of objects to return.
11890
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
11891
11948
  * @param {*} [options] Override http request option.
11892
11949
  * @throws {RequiredError}
11893
11950
  */
11894
- getGroupMembers(groupId: string, n?: number, offset?: number, options?: any): AxiosPromise<Array<GroupMember>> {
11895
- 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));
11896
11953
  },
11897
11954
  /**
11898
11955
  * Returns a List of all possible/available permissions for a Group.
@@ -12355,12 +12412,13 @@ export class GroupsApi extends BaseAPI {
12355
12412
  * @param {string} groupId Must be a valid group ID.
12356
12413
  * @param {number} [n] The number of objects to return.
12357
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
12358
12416
  * @param {*} [options] Override http request option.
12359
12417
  * @throws {RequiredError}
12360
12418
  * @memberof GroupsApi
12361
12419
  */
12362
- public getGroupMembers(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig) {
12363
- 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));
12364
12422
  }
12365
12423
 
12366
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.3
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.3
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.3
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.3
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
@@ -7844,10 +7890,11 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
7844
7890
  * @param {string} groupId Must be a valid group ID.
7845
7891
  * @param {number} [n] The number of objects to return.
7846
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
7847
7894
  * @param {*} [options] Override http request option.
7848
7895
  * @throws {RequiredError}
7849
7896
  */
7850
- 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>;
7851
7898
  /**
7852
7899
  * Returns a List of all possible/available permissions for a Group.
7853
7900
  * @summary List Group Permissions
@@ -8189,10 +8236,11 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
8189
8236
  * @param {string} groupId Must be a valid group ID.
8190
8237
  * @param {number} [n] The number of objects to return.
8191
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
8192
8240
  * @param {*} [options] Override http request option.
8193
8241
  * @throws {RequiredError}
8194
8242
  */
8195
- 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>>>;
8196
8244
  /**
8197
8245
  * Returns a List of all possible/available permissions for a Group.
8198
8246
  * @summary List Group Permissions
@@ -8534,10 +8582,11 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
8534
8582
  * @param {string} groupId Must be a valid group ID.
8535
8583
  * @param {number} [n] The number of objects to return.
8536
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
8537
8586
  * @param {*} [options] Override http request option.
8538
8587
  * @throws {RequiredError}
8539
8588
  */
8540
- 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>>;
8541
8590
  /**
8542
8591
  * Returns a List of all possible/available permissions for a Group.
8543
8592
  * @summary List Group Permissions
@@ -8903,11 +8952,12 @@ export declare class GroupsApi extends BaseAPI {
8903
8952
  * @param {string} groupId Must be a valid group ID.
8904
8953
  * @param {number} [n] The number of objects to return.
8905
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
8906
8956
  * @param {*} [options] Override http request option.
8907
8957
  * @throws {RequiredError}
8908
8958
  * @memberof GroupsApi
8909
8959
  */
8910
- 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>>;
8911
8961
  /**
8912
8962
  * Returns a List of all possible/available permissions for a Group.
8913
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.3
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.FriendsApiFactory = 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.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 = 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
@@ -5290,10 +5299,11 @@ var GroupsApiAxiosParamCreator = function (configuration) {
5290
5299
  * @param {string} groupId Must be a valid group ID.
5291
5300
  * @param {number} [n] The number of objects to return.
5292
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
5293
5303
  * @param {*} [options] Override http request option.
5294
5304
  * @throws {RequiredError}
5295
5305
  */
5296
- getGroupMembers: function (groupId, n, offset, options) {
5306
+ getGroupMembers: function (groupId, n, offset, sort, options) {
5297
5307
  if (options === void 0) { options = {}; }
5298
5308
  return __awaiter(_this, void 0, void 0, function () {
5299
5309
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -5316,6 +5326,9 @@ var GroupsApiAxiosParamCreator = function (configuration) {
5316
5326
  if (offset !== undefined) {
5317
5327
  localVarQueryParameter['offset'] = offset;
5318
5328
  }
5329
+ if (sort !== undefined) {
5330
+ localVarQueryParameter['sort'] = sort;
5331
+ }
5319
5332
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
5320
5333
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
5321
5334
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -6338,15 +6351,16 @@ var GroupsApiFp = function (configuration) {
6338
6351
  * @param {string} groupId Must be a valid group ID.
6339
6352
  * @param {number} [n] The number of objects to return.
6340
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
6341
6355
  * @param {*} [options] Override http request option.
6342
6356
  * @throws {RequiredError}
6343
6357
  */
6344
- getGroupMembers: function (groupId, n, offset, options) {
6358
+ getGroupMembers: function (groupId, n, offset, sort, options) {
6345
6359
  return __awaiter(this, void 0, void 0, function () {
6346
6360
  var localVarAxiosArgs;
6347
6361
  return __generator(this, function (_a) {
6348
6362
  switch (_a.label) {
6349
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.getGroupMembers(groupId, n, offset, options)];
6363
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.getGroupMembers(groupId, n, offset, sort, options)];
6350
6364
  case 1:
6351
6365
  localVarAxiosArgs = _a.sent();
6352
6366
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -6911,11 +6925,12 @@ var GroupsApiFactory = function (configuration, basePath, axios) {
6911
6925
  * @param {string} groupId Must be a valid group ID.
6912
6926
  * @param {number} [n] The number of objects to return.
6913
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
6914
6929
  * @param {*} [options] Override http request option.
6915
6930
  * @throws {RequiredError}
6916
6931
  */
6917
- getGroupMembers: function (groupId, n, offset, options) {
6918
- 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); });
6919
6934
  },
6920
6935
  /**
6921
6936
  * Returns a List of all possible/available permissions for a Group.
@@ -7382,13 +7397,14 @@ var GroupsApi = /** @class */ (function (_super) {
7382
7397
  * @param {string} groupId Must be a valid group ID.
7383
7398
  * @param {number} [n] The number of objects to return.
7384
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
7385
7401
  * @param {*} [options] Override http request option.
7386
7402
  * @throws {RequiredError}
7387
7403
  * @memberof GroupsApi
7388
7404
  */
7389
- GroupsApi.prototype.getGroupMembers = function (groupId, n, offset, options) {
7405
+ GroupsApi.prototype.getGroupMembers = function (groupId, n, offset, sort, options) {
7390
7406
  var _this = this;
7391
- 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); });
7392
7408
  };
7393
7409
  /**
7394
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.3
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.3
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.3
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.3
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).
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRChat API Documentation
3
3
  *
4
- * The version of the OpenAPI document: 1.16.3
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).
@@ -4,7 +4,7 @@
4
4
  /**
5
5
  * VRChat API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.16.3
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.3
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.3
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.3
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vrchat",
3
- "version": "1.16.3",
3
+ "version": "1.16.4",
4
4
  "description": "🟡🔵 VRChat API Library for JavaScript and TypeScript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {