vrchat 1.16.3 → 1.16.5

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.5
7
7
  * Contact: vrchatapi.lpv0t@aries.fyi
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2610,11 +2610,77 @@ export interface GroupLimitedMember {
2610
2610
  */
2611
2611
  'userId'?: string;
2612
2612
  /**
2613
- *
2613
+ * Whether the user is representing the group. This makes the group show up above the name tag in-game.
2614
2614
  * @type {boolean}
2615
2615
  * @memberof GroupLimitedMember
2616
2616
  */
2617
2617
  'isRepresenting'?: boolean;
2618
+ /**
2619
+ *
2620
+ * @type {Array<string>}
2621
+ * @memberof GroupLimitedMember
2622
+ */
2623
+ 'roleIds'?: Array<string>;
2624
+ /**
2625
+ *
2626
+ * @type {Array<string>}
2627
+ * @memberof GroupLimitedMember
2628
+ */
2629
+ 'mRoleIds'?: Array<string>;
2630
+ /**
2631
+ *
2632
+ * @type {string}
2633
+ * @memberof GroupLimitedMember
2634
+ */
2635
+ 'joinedAt'?: string;
2636
+ /**
2637
+ *
2638
+ * @type {string}
2639
+ * @memberof GroupLimitedMember
2640
+ */
2641
+ 'membershipStatus'?: string;
2642
+ /**
2643
+ *
2644
+ * @type {string}
2645
+ * @memberof GroupLimitedMember
2646
+ */
2647
+ 'visibility'?: string;
2648
+ /**
2649
+ *
2650
+ * @type {boolean}
2651
+ * @memberof GroupLimitedMember
2652
+ */
2653
+ 'isSubscribedToAnnouncements'?: boolean;
2654
+ /**
2655
+ * Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user.
2656
+ * @type {string}
2657
+ * @memberof GroupLimitedMember
2658
+ */
2659
+ 'createdAt'?: string | null;
2660
+ /**
2661
+ * Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user.
2662
+ * @type {string}
2663
+ * @memberof GroupLimitedMember
2664
+ */
2665
+ 'bannedAt'?: string | null;
2666
+ /**
2667
+ * Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user.
2668
+ * @type {string}
2669
+ * @memberof GroupLimitedMember
2670
+ */
2671
+ 'managerNotes'?: string | null;
2672
+ /**
2673
+ *
2674
+ * @type {string}
2675
+ * @memberof GroupLimitedMember
2676
+ */
2677
+ 'lastPostReadAt'?: string;
2678
+ /**
2679
+ *
2680
+ * @type {boolean}
2681
+ * @memberof GroupLimitedMember
2682
+ */
2683
+ 'hasJoinedFromPurchase'?: boolean;
2618
2684
  }
2619
2685
  /**
2620
2686
  *
@@ -2658,6 +2724,12 @@ export interface GroupMember {
2658
2724
  * @memberof GroupMember
2659
2725
  */
2660
2726
  'roleIds'?: Array<string>;
2727
+ /**
2728
+ *
2729
+ * @type {Array<string>}
2730
+ * @memberof GroupMember
2731
+ */
2732
+ 'mRoleIds'?: Array<string>;
2661
2733
  /**
2662
2734
  *
2663
2735
  * @type {string}
@@ -2700,6 +2772,18 @@ export interface GroupMember {
2700
2772
  * @memberof GroupMember
2701
2773
  */
2702
2774
  'managerNotes'?: string | null;
2775
+ /**
2776
+ *
2777
+ * @type {string}
2778
+ * @memberof GroupMember
2779
+ */
2780
+ 'lastPostReadAt'?: string;
2781
+ /**
2782
+ *
2783
+ * @type {boolean}
2784
+ * @memberof GroupMember
2785
+ */
2786
+ 'hasJoinedFromPurchase'?: boolean;
2703
2787
  }
2704
2788
  /**
2705
2789
  * Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user.
@@ -2731,6 +2815,24 @@ export interface GroupMemberLimitedUser {
2731
2815
  * @memberof GroupMemberLimitedUser
2732
2816
  */
2733
2817
  'iconUrl'?: string;
2818
+ /**
2819
+ *
2820
+ * @type {string}
2821
+ * @memberof GroupMemberLimitedUser
2822
+ */
2823
+ 'profilePicOverride'?: string;
2824
+ /**
2825
+ *
2826
+ * @type {string}
2827
+ * @memberof GroupMemberLimitedUser
2828
+ */
2829
+ 'currentAvatarThumbnailImageUrl'?: string;
2830
+ /**
2831
+ *
2832
+ * @type {Array<string>}
2833
+ * @memberof GroupMemberLimitedUser
2834
+ */
2835
+ 'currentAvatarTags'?: Array<string>;
2734
2836
  }
2735
2837
  /**
2736
2838
  *
@@ -2979,6 +3081,20 @@ export const GroupRoleTemplate = {
2979
3081
  export type GroupRoleTemplate = typeof GroupRoleTemplate[keyof typeof GroupRoleTemplate];
2980
3082
 
2981
3083
 
3084
+ /**
3085
+ *
3086
+ * @export
3087
+ * @enum {string}
3088
+ */
3089
+
3090
+ export const GroupSearchSort = {
3091
+ Asc: 'joinedAt:asc',
3092
+ Desc: 'joinedAt:desc'
3093
+ } as const;
3094
+
3095
+ export type GroupSearchSort = typeof GroupSearchSort[keyof typeof GroupSearchSort];
3096
+
3097
+
2982
3098
  /**
2983
3099
  *
2984
3100
  * @export
@@ -10561,10 +10677,11 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
10561
10677
  * @param {string} groupId Must be a valid group ID.
10562
10678
  * @param {number} [n] The number of objects to return.
10563
10679
  * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
10680
+ * @param {GroupSearchSort} [sort] The sort order of Group Member results
10564
10681
  * @param {*} [options] Override http request option.
10565
10682
  * @throws {RequiredError}
10566
10683
  */
10567
- getGroupMembers: async (groupId: string, n?: number, offset?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10684
+ getGroupMembers: async (groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10568
10685
  // verify required parameter 'groupId' is not null or undefined
10569
10686
  assertParamExists('getGroupMembers', 'groupId', groupId)
10570
10687
  const localVarPath = `/groups/{groupId}/members`
@@ -10590,6 +10707,10 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
10590
10707
  localVarQueryParameter['offset'] = offset;
10591
10708
  }
10592
10709
 
10710
+ if (sort !== undefined) {
10711
+ localVarQueryParameter['sort'] = sort;
10712
+ }
10713
+
10593
10714
 
10594
10715
 
10595
10716
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -11450,11 +11571,12 @@ export const GroupsApiFp = function(configuration?: Configuration) {
11450
11571
  * @param {string} groupId Must be a valid group ID.
11451
11572
  * @param {number} [n] The number of objects to return.
11452
11573
  * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
11574
+ * @param {GroupSearchSort} [sort] The sort order of Group Member results
11453
11575
  * @param {*} [options] Override http request option.
11454
11576
  * @throws {RequiredError}
11455
11577
  */
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);
11578
+ async getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>> {
11579
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getGroupMembers(groupId, n, offset, sort, options);
11458
11580
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11459
11581
  },
11460
11582
  /**
@@ -11888,11 +12010,12 @@ export const GroupsApiFactory = function (configuration?: Configuration, basePat
11888
12010
  * @param {string} groupId Must be a valid group ID.
11889
12011
  * @param {number} [n] The number of objects to return.
11890
12012
  * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
12013
+ * @param {GroupSearchSort} [sort] The sort order of Group Member results
11891
12014
  * @param {*} [options] Override http request option.
11892
12015
  * @throws {RequiredError}
11893
12016
  */
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));
12017
+ getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: any): AxiosPromise<Array<GroupMember>> {
12018
+ return localVarFp.getGroupMembers(groupId, n, offset, sort, options).then((request) => request(axios, basePath));
11896
12019
  },
11897
12020
  /**
11898
12021
  * Returns a List of all possible/available permissions for a Group.
@@ -12355,12 +12478,13 @@ export class GroupsApi extends BaseAPI {
12355
12478
  * @param {string} groupId Must be a valid group ID.
12356
12479
  * @param {number} [n] The number of objects to return.
12357
12480
  * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
12481
+ * @param {GroupSearchSort} [sort] The sort order of Group Member results
12358
12482
  * @param {*} [options] Override http request option.
12359
12483
  * @throws {RequiredError}
12360
12484
  * @memberof GroupsApi
12361
12485
  */
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));
12486
+ public getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: AxiosRequestConfig) {
12487
+ return GroupsApiFp(this.configuration).getGroupMembers(groupId, n, offset, sort, options).then((request) => request(this.axios, this.basePath));
12364
12488
  }
12365
12489
 
12366
12490
  /**
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.5
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.5
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.5
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.5
5
5
  * Contact: vrchatapi.lpv0t@aries.fyi
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2573,11 +2573,77 @@ export interface GroupLimitedMember {
2573
2573
  */
2574
2574
  'userId'?: string;
2575
2575
  /**
2576
- *
2576
+ * Whether the user is representing the group. This makes the group show up above the name tag in-game.
2577
2577
  * @type {boolean}
2578
2578
  * @memberof GroupLimitedMember
2579
2579
  */
2580
2580
  'isRepresenting'?: boolean;
2581
+ /**
2582
+ *
2583
+ * @type {Array<string>}
2584
+ * @memberof GroupLimitedMember
2585
+ */
2586
+ 'roleIds'?: Array<string>;
2587
+ /**
2588
+ *
2589
+ * @type {Array<string>}
2590
+ * @memberof GroupLimitedMember
2591
+ */
2592
+ 'mRoleIds'?: Array<string>;
2593
+ /**
2594
+ *
2595
+ * @type {string}
2596
+ * @memberof GroupLimitedMember
2597
+ */
2598
+ 'joinedAt'?: string;
2599
+ /**
2600
+ *
2601
+ * @type {string}
2602
+ * @memberof GroupLimitedMember
2603
+ */
2604
+ 'membershipStatus'?: string;
2605
+ /**
2606
+ *
2607
+ * @type {string}
2608
+ * @memberof GroupLimitedMember
2609
+ */
2610
+ 'visibility'?: string;
2611
+ /**
2612
+ *
2613
+ * @type {boolean}
2614
+ * @memberof GroupLimitedMember
2615
+ */
2616
+ 'isSubscribedToAnnouncements'?: boolean;
2617
+ /**
2618
+ * Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user.
2619
+ * @type {string}
2620
+ * @memberof GroupLimitedMember
2621
+ */
2622
+ 'createdAt'?: string | null;
2623
+ /**
2624
+ * Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user.
2625
+ * @type {string}
2626
+ * @memberof GroupLimitedMember
2627
+ */
2628
+ 'bannedAt'?: string | null;
2629
+ /**
2630
+ * Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user.
2631
+ * @type {string}
2632
+ * @memberof GroupLimitedMember
2633
+ */
2634
+ 'managerNotes'?: string | null;
2635
+ /**
2636
+ *
2637
+ * @type {string}
2638
+ * @memberof GroupLimitedMember
2639
+ */
2640
+ 'lastPostReadAt'?: string;
2641
+ /**
2642
+ *
2643
+ * @type {boolean}
2644
+ * @memberof GroupLimitedMember
2645
+ */
2646
+ 'hasJoinedFromPurchase'?: boolean;
2581
2647
  }
2582
2648
  /**
2583
2649
  *
@@ -2621,6 +2687,12 @@ export interface GroupMember {
2621
2687
  * @memberof GroupMember
2622
2688
  */
2623
2689
  'roleIds'?: Array<string>;
2690
+ /**
2691
+ *
2692
+ * @type {Array<string>}
2693
+ * @memberof GroupMember
2694
+ */
2695
+ 'mRoleIds'?: Array<string>;
2624
2696
  /**
2625
2697
  *
2626
2698
  * @type {string}
@@ -2663,6 +2735,18 @@ export interface GroupMember {
2663
2735
  * @memberof GroupMember
2664
2736
  */
2665
2737
  'managerNotes'?: string | null;
2738
+ /**
2739
+ *
2740
+ * @type {string}
2741
+ * @memberof GroupMember
2742
+ */
2743
+ 'lastPostReadAt'?: string;
2744
+ /**
2745
+ *
2746
+ * @type {boolean}
2747
+ * @memberof GroupMember
2748
+ */
2749
+ 'hasJoinedFromPurchase'?: boolean;
2666
2750
  }
2667
2751
  /**
2668
2752
  * Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user.
@@ -2694,6 +2778,24 @@ export interface GroupMemberLimitedUser {
2694
2778
  * @memberof GroupMemberLimitedUser
2695
2779
  */
2696
2780
  'iconUrl'?: string;
2781
+ /**
2782
+ *
2783
+ * @type {string}
2784
+ * @memberof GroupMemberLimitedUser
2785
+ */
2786
+ 'profilePicOverride'?: string;
2787
+ /**
2788
+ *
2789
+ * @type {string}
2790
+ * @memberof GroupMemberLimitedUser
2791
+ */
2792
+ 'currentAvatarThumbnailImageUrl'?: string;
2793
+ /**
2794
+ *
2795
+ * @type {Array<string>}
2796
+ * @memberof GroupMemberLimitedUser
2797
+ */
2798
+ 'currentAvatarTags'?: Array<string>;
2697
2799
  }
2698
2800
  /**
2699
2801
  *
@@ -2930,6 +3032,16 @@ export declare const GroupRoleTemplate: {
2930
3032
  readonly ManagedRequest: "managedRequest";
2931
3033
  };
2932
3034
  export type GroupRoleTemplate = typeof GroupRoleTemplate[keyof typeof GroupRoleTemplate];
3035
+ /**
3036
+ *
3037
+ * @export
3038
+ * @enum {string}
3039
+ */
3040
+ export declare const GroupSearchSort: {
3041
+ readonly Asc: "joinedAt:asc";
3042
+ readonly Desc: "joinedAt:desc";
3043
+ };
3044
+ export type GroupSearchSort = typeof GroupSearchSort[keyof typeof GroupSearchSort];
2933
3045
  /**
2934
3046
  *
2935
3047
  * @export
@@ -7844,10 +7956,11 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
7844
7956
  * @param {string} groupId Must be a valid group ID.
7845
7957
  * @param {number} [n] The number of objects to return.
7846
7958
  * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
7959
+ * @param {GroupSearchSort} [sort] The sort order of Group Member results
7847
7960
  * @param {*} [options] Override http request option.
7848
7961
  * @throws {RequiredError}
7849
7962
  */
7850
- getGroupMembers: (groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7963
+ getGroupMembers: (groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7851
7964
  /**
7852
7965
  * Returns a List of all possible/available permissions for a Group.
7853
7966
  * @summary List Group Permissions
@@ -8189,10 +8302,11 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
8189
8302
  * @param {string} groupId Must be a valid group ID.
8190
8303
  * @param {number} [n] The number of objects to return.
8191
8304
  * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
8305
+ * @param {GroupSearchSort} [sort] The sort order of Group Member results
8192
8306
  * @param {*} [options] Override http request option.
8193
8307
  * @throws {RequiredError}
8194
8308
  */
8195
- getGroupMembers(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>>;
8309
+ getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>>;
8196
8310
  /**
8197
8311
  * Returns a List of all possible/available permissions for a Group.
8198
8312
  * @summary List Group Permissions
@@ -8534,10 +8648,11 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
8534
8648
  * @param {string} groupId Must be a valid group ID.
8535
8649
  * @param {number} [n] The number of objects to return.
8536
8650
  * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
8651
+ * @param {GroupSearchSort} [sort] The sort order of Group Member results
8537
8652
  * @param {*} [options] Override http request option.
8538
8653
  * @throws {RequiredError}
8539
8654
  */
8540
- getGroupMembers(groupId: string, n?: number, offset?: number, options?: any): AxiosPromise<Array<GroupMember>>;
8655
+ getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: any): AxiosPromise<Array<GroupMember>>;
8541
8656
  /**
8542
8657
  * Returns a List of all possible/available permissions for a Group.
8543
8658
  * @summary List Group Permissions
@@ -8903,11 +9018,12 @@ export declare class GroupsApi extends BaseAPI {
8903
9018
  * @param {string} groupId Must be a valid group ID.
8904
9019
  * @param {number} [n] The number of objects to return.
8905
9020
  * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
9021
+ * @param {GroupSearchSort} [sort] The sort order of Group Member results
8906
9022
  * @param {*} [options] Override http request option.
8907
9023
  * @throws {RequiredError}
8908
9024
  * @memberof GroupsApi
8909
9025
  */
8910
- getGroupMembers(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember[], any>>;
9026
+ getGroupMembers(groupId: string, n?: number, offset?: number, sort?: GroupSearchSort, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember[], any>>;
8911
9027
  /**
8912
9028
  * Returns a List of all possible/available permissions for a Group.
8913
9029
  * @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.5
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.5
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.5
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.5
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.5
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.5
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.5
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.5
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.5
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.5
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.5",
4
4
  "description": "🟡🔵 VRChat API Library for JavaScript and TypeScript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {