vrchat 1.17.3 → 1.17.6

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/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.17.3
4
+ * The version of the OpenAPI document: 1.17.6
5
5
  * Contact: vrchatapi.lpv0t@aries.fyi
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -846,6 +846,61 @@ export interface AvatarUnityPackageUrlObject {
846
846
  */
847
847
  'unityPackageUrl'?: string;
848
848
  }
849
+ /**
850
+ *
851
+ * @export
852
+ * @interface Badge
853
+ */
854
+ export interface Badge {
855
+ /**
856
+ * only present in CurrentUser badges
857
+ * @type {string}
858
+ * @memberof Badge
859
+ */
860
+ 'assignedAt'?: string | null;
861
+ /**
862
+ *
863
+ * @type {string}
864
+ * @memberof Badge
865
+ */
866
+ 'badgeDescription': string;
867
+ /**
868
+ *
869
+ * @type {string}
870
+ * @memberof Badge
871
+ */
872
+ 'badgeId': string;
873
+ /**
874
+ * direct url to image
875
+ * @type {string}
876
+ * @memberof Badge
877
+ */
878
+ 'badgeImageUrl': string;
879
+ /**
880
+ *
881
+ * @type {string}
882
+ * @memberof Badge
883
+ */
884
+ 'badgeName': string;
885
+ /**
886
+ * only present in CurrentUser badges
887
+ * @type {boolean}
888
+ * @memberof Badge
889
+ */
890
+ 'hidden'?: boolean | null;
891
+ /**
892
+ *
893
+ * @type {boolean}
894
+ * @memberof Badge
895
+ */
896
+ 'showcased': boolean;
897
+ /**
898
+ * only present in CurrentUser badges
899
+ * @type {string}
900
+ * @memberof Badge
901
+ */
902
+ 'updatedAt'?: string | null;
903
+ }
849
904
  /**
850
905
  *
851
906
  * @export
@@ -1242,10 +1297,10 @@ export interface CreateInstanceRequest {
1242
1297
  'type': InstanceType;
1243
1298
  /**
1244
1299
  *
1245
- * @type {Region}
1300
+ * @type {InstanceRegion}
1246
1301
  * @memberof CreateInstanceRequest
1247
1302
  */
1248
- 'region': Region;
1303
+ 'region': InstanceRegion;
1249
1304
  /**
1250
1305
  * A groupId if the instance type is \"group\", null if instance type is public, or a userId otherwise
1251
1306
  * @type {string}
@@ -1271,11 +1326,29 @@ export interface CreateInstanceRequest {
1271
1326
  */
1272
1327
  'queueEnabled'?: boolean;
1273
1328
  /**
1274
- * The time after which users won\'t be allowed to join the instance
1329
+ * The time after which users won\'t be allowed to join the instance. This doesn\'t work for public instances.
1275
1330
  * @type {string}
1276
1331
  * @memberof CreateInstanceRequest
1277
1332
  */
1278
1333
  'closedAt'?: string;
1334
+ /**
1335
+ * Only applies to invite type instances to make them invite+
1336
+ * @type {boolean}
1337
+ * @memberof CreateInstanceRequest
1338
+ */
1339
+ 'canRequestInvite'?: boolean;
1340
+ /**
1341
+ * Currently unused, but will eventually be a flag to set if the closing of the instance should kick people.
1342
+ * @type {boolean}
1343
+ * @memberof CreateInstanceRequest
1344
+ */
1345
+ 'hardClose'?: boolean;
1346
+ /**
1347
+ *
1348
+ * @type {boolean}
1349
+ * @memberof CreateInstanceRequest
1350
+ */
1351
+ 'inviteOnly'?: boolean;
1279
1352
  }
1280
1353
  /**
1281
1354
  *
@@ -1410,6 +1483,12 @@ export interface CurrentUser {
1410
1483
  * @memberof CurrentUser
1411
1484
  */
1412
1485
  'allowAvatarCopying': boolean;
1486
+ /**
1487
+ *
1488
+ * @type {Array<Badge>}
1489
+ * @memberof CurrentUser
1490
+ */
1491
+ 'badges'?: Array<Badge>;
1413
1492
  /**
1414
1493
  *
1415
1494
  * @type {string}
@@ -1451,7 +1530,7 @@ export interface CurrentUser {
1451
1530
  * @type {Array<string>}
1452
1531
  * @memberof CurrentUser
1453
1532
  */
1454
- 'currentAvatarTags'?: Array<string>;
1533
+ 'currentAvatarTags': Array<string>;
1455
1534
  /**
1456
1535
  *
1457
1536
  * @type {string}
@@ -1555,6 +1634,12 @@ export interface CurrentUser {
1555
1634
  * @memberof CurrentUser
1556
1635
  */
1557
1636
  'id': string;
1637
+ /**
1638
+ *
1639
+ * @type {boolean}
1640
+ * @memberof CurrentUser
1641
+ */
1642
+ 'isBoopingEnabled'?: boolean;
1558
1643
  /**
1559
1644
  *
1560
1645
  * @type {boolean}
@@ -1573,6 +1658,12 @@ export interface CurrentUser {
1573
1658
  * @memberof CurrentUser
1574
1659
  */
1575
1660
  'last_login': string;
1661
+ /**
1662
+ *
1663
+ * @type {string}
1664
+ * @memberof CurrentUser
1665
+ */
1666
+ 'last_mobile': string | null;
1576
1667
  /**
1577
1668
  * This can be `standalonewindows` or `android`, but can also pretty much be any random Unity verison such as `2019.2.4-801-Release` or `2019.2.2-772-Release` or even `unknownplatform`.
1578
1669
  * @type {string}
@@ -1603,6 +1694,12 @@ export interface CurrentUser {
1603
1694
  * @memberof CurrentUser
1604
1695
  */
1605
1696
  'googleId'?: string;
1697
+ /**
1698
+ *
1699
+ * @type {object}
1700
+ * @memberof CurrentUser
1701
+ */
1702
+ 'googleDetails'?: object;
1606
1703
  /**
1607
1704
  *
1608
1705
  * @type {string}
@@ -1645,6 +1742,18 @@ export interface CurrentUser {
1645
1742
  * @memberof CurrentUser
1646
1743
  */
1647
1744
  'profilePicOverride': string;
1745
+ /**
1746
+ *
1747
+ * @type {string}
1748
+ * @memberof CurrentUser
1749
+ */
1750
+ 'profilePicOverrideThumbnail': string;
1751
+ /**
1752
+ *
1753
+ * @type {string}
1754
+ * @memberof CurrentUser
1755
+ */
1756
+ 'pronouns': string;
1648
1757
  /**
1649
1758
  *
1650
1759
  * @type {UserState}
@@ -2392,7 +2501,7 @@ export interface Group {
2392
2501
  export declare const GroupAccessType: {
2393
2502
  readonly Public: "public";
2394
2503
  readonly Plus: "plus";
2395
- readonly Member: "member";
2504
+ readonly Members: "members";
2396
2505
  };
2397
2506
  export type GroupAccessType = typeof GroupAccessType[keyof typeof GroupAccessType];
2398
2507
  /**
@@ -2751,7 +2860,7 @@ export interface GroupLimitedMember {
2751
2860
  * @type {string}
2752
2861
  * @memberof GroupLimitedMember
2753
2862
  */
2754
- 'joinedAt'?: string;
2863
+ 'joinedAt'?: string | null;
2755
2864
  /**
2756
2865
  *
2757
2866
  * @type {GroupMemberStatus}
@@ -2964,6 +3073,7 @@ export declare const GroupMemberStatus: {
2964
3073
  readonly Requested: "requested";
2965
3074
  readonly Invited: "invited";
2966
3075
  readonly Banned: "banned";
3076
+ readonly Userblocked: "userblocked";
2967
3077
  };
2968
3078
  export type GroupMemberStatus = typeof GroupMemberStatus[keyof typeof GroupMemberStatus];
2969
3079
  /**
@@ -3584,10 +3694,10 @@ export interface Instance {
3584
3694
  'platforms': InstancePlatforms;
3585
3695
  /**
3586
3696
  *
3587
- * @type {Region}
3697
+ * @type {InstanceRegion}
3588
3698
  * @memberof Instance
3589
3699
  */
3590
- 'region': Region;
3700
+ 'region': InstanceRegion;
3591
3701
  /**
3592
3702
  *
3593
3703
  * @type {string}
@@ -3734,6 +3844,18 @@ export interface InstancePlatforms {
3734
3844
  */
3735
3845
  'standalonewindows': number;
3736
3846
  }
3847
+ /**
3848
+ * Instance region
3849
+ * @export
3850
+ * @enum {string}
3851
+ */
3852
+ export declare const InstanceRegion: {
3853
+ readonly Us: "us";
3854
+ readonly Use: "use";
3855
+ readonly Eu: "eu";
3856
+ readonly Jp: "jp";
3857
+ };
3858
+ export type InstanceRegion = typeof InstanceRegion[keyof typeof InstanceRegion];
3737
3859
  /**
3738
3860
  *
3739
3861
  * @export
@@ -4083,6 +4205,12 @@ export interface LimitedUser {
4083
4205
  * @memberof LimitedUser
4084
4206
  */
4085
4207
  'bio'?: string;
4208
+ /**
4209
+ *
4210
+ * @type {Array<string>}
4211
+ * @memberof LimitedUser
4212
+ */
4213
+ 'bioLinks'?: Array<string>;
4086
4214
  /**
4087
4215
  * When profilePicOverride is not empty, use it instead.
4088
4216
  * @type {string}
@@ -4095,6 +4223,12 @@ export interface LimitedUser {
4095
4223
  * @memberof LimitedUser
4096
4224
  */
4097
4225
  'currentAvatarThumbnailImageUrl'?: string;
4226
+ /**
4227
+ *
4228
+ * @type {Array<string>}
4229
+ * @memberof LimitedUser
4230
+ */
4231
+ 'currentAvatarTags'?: Array<string>;
4098
4232
  /**
4099
4233
  *
4100
4234
  * @type {DeveloperType}
@@ -4137,6 +4271,12 @@ export interface LimitedUser {
4137
4271
  * @memberof LimitedUser
4138
4272
  */
4139
4273
  'profilePicOverride'?: string;
4274
+ /**
4275
+ *
4276
+ * @type {string}
4277
+ * @memberof LimitedUser
4278
+ */
4279
+ 'pronouns'?: string;
4140
4280
  /**
4141
4281
  *
4142
4282
  * @type {UserStatus}
@@ -4181,6 +4321,121 @@ export interface LimitedUser {
4181
4321
  */
4182
4322
  'friendKey'?: string;
4183
4323
  }
4324
+ /**
4325
+ *
4326
+ * @export
4327
+ * @interface LimitedUserGroups
4328
+ */
4329
+ export interface LimitedUserGroups {
4330
+ /**
4331
+ *
4332
+ * @type {string}
4333
+ * @memberof LimitedUserGroups
4334
+ */
4335
+ 'id'?: string;
4336
+ /**
4337
+ *
4338
+ * @type {string}
4339
+ * @memberof LimitedUserGroups
4340
+ */
4341
+ 'name'?: string;
4342
+ /**
4343
+ *
4344
+ * @type {string}
4345
+ * @memberof LimitedUserGroups
4346
+ */
4347
+ 'shortCode'?: string;
4348
+ /**
4349
+ *
4350
+ * @type {string}
4351
+ * @memberof LimitedUserGroups
4352
+ */
4353
+ 'discriminator'?: string;
4354
+ /**
4355
+ *
4356
+ * @type {string}
4357
+ * @memberof LimitedUserGroups
4358
+ */
4359
+ 'description'?: string;
4360
+ /**
4361
+ *
4362
+ * @type {string}
4363
+ * @memberof LimitedUserGroups
4364
+ */
4365
+ 'iconId'?: string | null;
4366
+ /**
4367
+ *
4368
+ * @type {string}
4369
+ * @memberof LimitedUserGroups
4370
+ */
4371
+ 'iconUrl'?: string | null;
4372
+ /**
4373
+ *
4374
+ * @type {string}
4375
+ * @memberof LimitedUserGroups
4376
+ */
4377
+ 'bannerId'?: string | null;
4378
+ /**
4379
+ *
4380
+ * @type {string}
4381
+ * @memberof LimitedUserGroups
4382
+ */
4383
+ 'bannerUrl'?: string | null;
4384
+ /**
4385
+ *
4386
+ * @type {string}
4387
+ * @memberof LimitedUserGroups
4388
+ */
4389
+ 'privacy'?: string;
4390
+ /**
4391
+ *
4392
+ * @type {string}
4393
+ * @memberof LimitedUserGroups
4394
+ */
4395
+ 'lastPostCreatedAt'?: string | null;
4396
+ /**
4397
+ * A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.
4398
+ * @type {string}
4399
+ * @memberof LimitedUserGroups
4400
+ */
4401
+ 'ownerId'?: string;
4402
+ /**
4403
+ *
4404
+ * @type {number}
4405
+ * @memberof LimitedUserGroups
4406
+ */
4407
+ 'memberCount'?: number;
4408
+ /**
4409
+ *
4410
+ * @type {string}
4411
+ * @memberof LimitedUserGroups
4412
+ */
4413
+ 'groupId'?: string;
4414
+ /**
4415
+ *
4416
+ * @type {string}
4417
+ * @memberof LimitedUserGroups
4418
+ */
4419
+ 'memberVisibility'?: string;
4420
+ /**
4421
+ *
4422
+ * @type {boolean}
4423
+ * @memberof LimitedUserGroups
4424
+ */
4425
+ 'isRepresenting'?: boolean;
4426
+ /**
4427
+ *
4428
+ * @type {boolean}
4429
+ * @memberof LimitedUserGroups
4430
+ */
4431
+ 'mutualGroup'?: boolean;
4432
+ /**
4433
+ *
4434
+ * @type {string}
4435
+ * @memberof LimitedUserGroups
4436
+ */
4437
+ 'lastPostReadAt'?: string | null;
4438
+ }
4184
4439
  /**
4185
4440
  *
4186
4441
  * @export
@@ -4223,6 +4478,12 @@ export interface LimitedWorld {
4223
4478
  * @memberof LimitedWorld
4224
4479
  */
4225
4480
  'favorites': number;
4481
+ /**
4482
+ *
4483
+ * @type {number}
4484
+ * @memberof LimitedWorld
4485
+ */
4486
+ 'visits'?: number;
4226
4487
  /**
4227
4488
  *
4228
4489
  * @type {number}
@@ -4271,6 +4532,12 @@ export interface LimitedWorld {
4271
4532
  * @memberof LimitedWorld
4272
4533
  */
4273
4534
  'popularity': number;
4535
+ /**
4536
+ *
4537
+ * @type {string}
4538
+ * @memberof LimitedWorld
4539
+ */
4540
+ 'previewYoutubeId'?: string | null;
4274
4541
  /**
4275
4542
  *
4276
4543
  * @type {string}
@@ -4885,6 +5152,12 @@ export interface RespondGroupJoinRequest {
4885
5152
  * @memberof RespondGroupJoinRequest
4886
5153
  */
4887
5154
  'action': GroupJoinRequestAction;
5155
+ /**
5156
+ * Whether to block the user from requesting again
5157
+ * @type {boolean}
5158
+ * @memberof RespondGroupJoinRequest
5159
+ */
5160
+ 'block'?: boolean;
4888
5161
  }
4889
5162
  /**
4890
5163
  *
@@ -4918,11 +5191,11 @@ export interface SentNotification {
4918
5191
  */
4919
5192
  'created_at': string;
4920
5193
  /**
4921
- * **NOTICE:** This is not a JSON object, this is a json **encoded** object, meaning you have to json-de-encode to get the NotificationDetail object depending on the NotificationType.
4922
- * @type {string}
5194
+ *
5195
+ * @type {object}
4923
5196
  * @memberof SentNotification
4924
5197
  */
4925
- 'details': string;
5198
+ 'details': object;
4926
5199
  /**
4927
5200
  *
4928
5201
  * @type {string}
@@ -4940,7 +5213,7 @@ export interface SentNotification {
4940
5213
  * @type {string}
4941
5214
  * @memberof SentNotification
4942
5215
  */
4943
- 'recieverUserId': string;
5216
+ 'receiverUserId': string;
4944
5217
  /**
4945
5218
  * A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.
4946
5219
  * @type {string}
@@ -5005,6 +5278,30 @@ export interface Subscription {
5005
5278
  * @memberof Subscription
5006
5279
  */
5007
5280
  'steamItemId': string;
5281
+ /**
5282
+ *
5283
+ * @type {string}
5284
+ * @memberof Subscription
5285
+ */
5286
+ 'oculusSku'?: string;
5287
+ /**
5288
+ *
5289
+ * @type {string}
5290
+ * @memberof Subscription
5291
+ */
5292
+ 'googleProductId'?: string;
5293
+ /**
5294
+ *
5295
+ * @type {string}
5296
+ * @memberof Subscription
5297
+ */
5298
+ 'googlePlanId'?: string;
5299
+ /**
5300
+ *
5301
+ * @type {string}
5302
+ * @memberof Subscription
5303
+ */
5304
+ 'picoSku'?: string;
5008
5305
  /**
5009
5306
  *
5010
5307
  * @type {number}
@@ -5068,6 +5365,18 @@ export interface Transaction {
5068
5365
  * @memberof Transaction
5069
5366
  */
5070
5367
  'id': string;
5368
+ /**
5369
+ * A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.
5370
+ * @type {string}
5371
+ * @memberof Transaction
5372
+ */
5373
+ 'userId'?: string;
5374
+ /**
5375
+ *
5376
+ * @type {string}
5377
+ * @memberof Transaction
5378
+ */
5379
+ 'userDisplayName'?: string;
5071
5380
  /**
5072
5381
  *
5073
5382
  * @type {TransactionStatus}
@@ -5116,6 +5425,18 @@ export interface Transaction {
5116
5425
  * @memberof Transaction
5117
5426
  */
5118
5427
  'error': string;
5428
+ /**
5429
+ *
5430
+ * @type {boolean}
5431
+ * @memberof Transaction
5432
+ */
5433
+ 'isGift'?: boolean;
5434
+ /**
5435
+ *
5436
+ * @type {boolean}
5437
+ * @memberof Transaction
5438
+ */
5439
+ 'isTokens'?: boolean;
5119
5440
  }
5120
5441
  /**
5121
5442
  *
@@ -5410,6 +5731,12 @@ export interface UnityPackage {
5410
5731
  * @memberof UnityPackage
5411
5732
  */
5412
5733
  'scanStatus'?: string;
5734
+ /**
5735
+ *
5736
+ * @type {string}
5737
+ * @memberof UnityPackage
5738
+ */
5739
+ 'variant'?: string;
5413
5740
  }
5414
5741
  /**
5415
5742
  *
@@ -5748,6 +6075,18 @@ export interface UpdateUserRequest {
5748
6075
  * @memberof UpdateUserRequest
5749
6076
  */
5750
6077
  'bioLinks'?: Array<string>;
6078
+ /**
6079
+ *
6080
+ * @type {string}
6081
+ * @memberof UpdateUserRequest
6082
+ */
6083
+ 'pronouns'?: string;
6084
+ /**
6085
+ *
6086
+ * @type {boolean}
6087
+ * @memberof UpdateUserRequest
6088
+ */
6089
+ 'isBoopingEnabled'?: boolean;
5751
6090
  /**
5752
6091
  * MUST be a valid VRChat /file/ url.
5753
6092
  * @type {string}
@@ -5852,6 +6191,12 @@ export interface User {
5852
6191
  * @memberof User
5853
6192
  */
5854
6193
  'allowAvatarCopying': boolean;
6194
+ /**
6195
+ *
6196
+ * @type {Array<Badge>}
6197
+ * @memberof User
6198
+ */
6199
+ 'badges'?: Array<Badge>;
5855
6200
  /**
5856
6201
  *
5857
6202
  * @type {string}
@@ -5876,6 +6221,12 @@ export interface User {
5876
6221
  * @memberof User
5877
6222
  */
5878
6223
  'currentAvatarThumbnailImageUrl': string;
6224
+ /**
6225
+ *
6226
+ * @type {Array<string>}
6227
+ * @memberof User
6228
+ */
6229
+ 'currentAvatarTags': Array<string>;
5879
6230
  /**
5880
6231
  *
5881
6232
  * @type {string}
@@ -5960,6 +6311,18 @@ export interface User {
5960
6311
  * @memberof User
5961
6312
  */
5962
6313
  'profilePicOverride': string;
6314
+ /**
6315
+ *
6316
+ * @type {string}
6317
+ * @memberof User
6318
+ */
6319
+ 'profilePicOverrideThumbnail': string;
6320
+ /**
6321
+ *
6322
+ * @type {string}
6323
+ * @memberof User
6324
+ */
6325
+ 'pronouns': string;
5963
6326
  /**
5964
6327
  *
5965
6328
  * @type {UserState}
@@ -6418,7 +6781,7 @@ export interface WorldPublishStatus {
6418
6781
  * @type {boolean}
6419
6782
  * @memberof WorldPublishStatus
6420
6783
  */
6421
- 'canPubilsh': boolean;
6784
+ 'canPublish': boolean;
6422
6785
  }
6423
6786
  /**
6424
6787
  * AuthenticationApi - axios parameter creator
@@ -8536,10 +8899,11 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
8536
8899
  * @param {string} groupId Must be a valid group ID.
8537
8900
  * @param {number} [n] The number of objects to return.
8538
8901
  * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
8902
+ * @param {boolean} [blocked] See blocked join requests
8539
8903
  * @param {*} [options] Override http request option.
8540
8904
  * @throws {RequiredError}
8541
8905
  */
8542
- getGroupRequests: (groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8906
+ getGroupRequests: (groupId: string, n?: number, offset?: number, blocked?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8543
8907
  /**
8544
8908
  * Returns a Group Role by ID.
8545
8909
  * @summary Get Group Roles
@@ -8933,10 +9297,11 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
8933
9297
  * @param {string} groupId Must be a valid group ID.
8934
9298
  * @param {number} [n] The number of objects to return.
8935
9299
  * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
9300
+ * @param {boolean} [blocked] See blocked join requests
8936
9301
  * @param {*} [options] Override http request option.
8937
9302
  * @throws {RequiredError}
8938
9303
  */
8939
- getGroupRequests(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>>;
9304
+ getGroupRequests(groupId: string, n?: number, offset?: number, blocked?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>>;
8940
9305
  /**
8941
9306
  * Returns a Group Role by ID.
8942
9307
  * @summary Get Group Roles
@@ -9330,10 +9695,11 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
9330
9695
  * @param {string} groupId Must be a valid group ID.
9331
9696
  * @param {number} [n] The number of objects to return.
9332
9697
  * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
9698
+ * @param {boolean} [blocked] See blocked join requests
9333
9699
  * @param {*} [options] Override http request option.
9334
9700
  * @throws {RequiredError}
9335
9701
  */
9336
- getGroupRequests(groupId: string, n?: number, offset?: number, options?: any): AxiosPromise<Array<GroupMember>>;
9702
+ getGroupRequests(groupId: string, n?: number, offset?: number, blocked?: boolean, options?: any): AxiosPromise<Array<GroupMember>>;
9337
9703
  /**
9338
9704
  * Returns a Group Role by ID.
9339
9705
  * @summary Get Group Roles
@@ -9757,11 +10123,12 @@ export declare class GroupsApi extends BaseAPI {
9757
10123
  * @param {string} groupId Must be a valid group ID.
9758
10124
  * @param {number} [n] The number of objects to return.
9759
10125
  * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
10126
+ * @param {boolean} [blocked] See blocked join requests
9760
10127
  * @param {*} [options] Override http request option.
9761
10128
  * @throws {RequiredError}
9762
10129
  * @memberof GroupsApi
9763
10130
  */
9764
- getGroupRequests(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember[], any>>;
10131
+ getGroupRequests(groupId: string, n?: number, offset?: number, blocked?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember[], any>>;
9765
10132
  /**
9766
10133
  * Returns a Group Role by ID.
9767
10134
  * @summary Get Group Roles
@@ -11363,7 +11730,7 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
11363
11730
  * @param {*} [options] Override http request option.
11364
11731
  * @throws {RequiredError}
11365
11732
  */
11366
- getUserGroups(userId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedGroup>>>;
11733
+ getUserGroups(userId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedUserGroups>>>;
11367
11734
  /**
11368
11735
  * Returns the current group that the user is currently representing
11369
11736
  * @summary Get user\'s current represented group
@@ -11430,7 +11797,7 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
11430
11797
  * @param {*} [options] Override http request option.
11431
11798
  * @throws {RequiredError}
11432
11799
  */
11433
- getUserGroups(userId: string, options?: any): AxiosPromise<Array<LimitedGroup>>;
11800
+ getUserGroups(userId: string, options?: any): AxiosPromise<Array<LimitedUserGroups>>;
11434
11801
  /**
11435
11802
  * Returns the current group that the user is currently representing
11436
11803
  * @summary Get user\'s current represented group
@@ -11503,7 +11870,7 @@ export declare class UsersApi extends BaseAPI {
11503
11870
  * @throws {RequiredError}
11504
11871
  * @memberof UsersApi
11505
11872
  */
11506
- getUserGroups(userId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LimitedGroup[], any>>;
11873
+ getUserGroups(userId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LimitedUserGroups[], any>>;
11507
11874
  /**
11508
11875
  * Returns the current group that the user is currently representing
11509
11876
  * @summary Get user\'s current represented group