vrchat 1.17.3 → 1.17.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/.github/workflows/ci.yaml +2 -2
- package/api.ts +372 -22
- package/base.ts +2 -2
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +362 -20
- package/dist/api.js +29 -11
- package/dist/base.d.ts +1 -1
- package/dist/base.js +2 -2
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/configuration.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* VRChat API Documentation
|
|
5
5
|
*
|
|
6
|
-
* The version of the OpenAPI document: 1.17.
|
|
6
|
+
* The version of the OpenAPI document: 1.17.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.17.
|
|
4
|
+
* The version of the OpenAPI document: 1.17.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).
|
|
@@ -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 {
|
|
1300
|
+
* @type {InstanceRegion}
|
|
1246
1301
|
* @memberof CreateInstanceRequest
|
|
1247
1302
|
*/
|
|
1248
|
-
'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'
|
|
1533
|
+
'currentAvatarTags': Array<string>;
|
|
1455
1534
|
/**
|
|
1456
1535
|
*
|
|
1457
1536
|
* @type {string}
|
|
@@ -1573,6 +1652,12 @@ export interface CurrentUser {
|
|
|
1573
1652
|
* @memberof CurrentUser
|
|
1574
1653
|
*/
|
|
1575
1654
|
'last_login': string;
|
|
1655
|
+
/**
|
|
1656
|
+
*
|
|
1657
|
+
* @type {string}
|
|
1658
|
+
* @memberof CurrentUser
|
|
1659
|
+
*/
|
|
1660
|
+
'last_mobile': string | null;
|
|
1576
1661
|
/**
|
|
1577
1662
|
* 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
1663
|
* @type {string}
|
|
@@ -1603,6 +1688,12 @@ export interface CurrentUser {
|
|
|
1603
1688
|
* @memberof CurrentUser
|
|
1604
1689
|
*/
|
|
1605
1690
|
'googleId'?: string;
|
|
1691
|
+
/**
|
|
1692
|
+
*
|
|
1693
|
+
* @type {object}
|
|
1694
|
+
* @memberof CurrentUser
|
|
1695
|
+
*/
|
|
1696
|
+
'googleDetails'?: object;
|
|
1606
1697
|
/**
|
|
1607
1698
|
*
|
|
1608
1699
|
* @type {string}
|
|
@@ -1645,6 +1736,12 @@ export interface CurrentUser {
|
|
|
1645
1736
|
* @memberof CurrentUser
|
|
1646
1737
|
*/
|
|
1647
1738
|
'profilePicOverride': string;
|
|
1739
|
+
/**
|
|
1740
|
+
*
|
|
1741
|
+
* @type {string}
|
|
1742
|
+
* @memberof CurrentUser
|
|
1743
|
+
*/
|
|
1744
|
+
'pronouns': string;
|
|
1648
1745
|
/**
|
|
1649
1746
|
*
|
|
1650
1747
|
* @type {UserState}
|
|
@@ -2392,7 +2489,7 @@ export interface Group {
|
|
|
2392
2489
|
export declare const GroupAccessType: {
|
|
2393
2490
|
readonly Public: "public";
|
|
2394
2491
|
readonly Plus: "plus";
|
|
2395
|
-
readonly
|
|
2492
|
+
readonly Members: "members";
|
|
2396
2493
|
};
|
|
2397
2494
|
export type GroupAccessType = typeof GroupAccessType[keyof typeof GroupAccessType];
|
|
2398
2495
|
/**
|
|
@@ -3584,10 +3681,10 @@ export interface Instance {
|
|
|
3584
3681
|
'platforms': InstancePlatforms;
|
|
3585
3682
|
/**
|
|
3586
3683
|
*
|
|
3587
|
-
* @type {
|
|
3684
|
+
* @type {InstanceRegion}
|
|
3588
3685
|
* @memberof Instance
|
|
3589
3686
|
*/
|
|
3590
|
-
'region':
|
|
3687
|
+
'region': InstanceRegion;
|
|
3591
3688
|
/**
|
|
3592
3689
|
*
|
|
3593
3690
|
* @type {string}
|
|
@@ -3734,6 +3831,18 @@ export interface InstancePlatforms {
|
|
|
3734
3831
|
*/
|
|
3735
3832
|
'standalonewindows': number;
|
|
3736
3833
|
}
|
|
3834
|
+
/**
|
|
3835
|
+
* Instance region
|
|
3836
|
+
* @export
|
|
3837
|
+
* @enum {string}
|
|
3838
|
+
*/
|
|
3839
|
+
export declare const InstanceRegion: {
|
|
3840
|
+
readonly Us: "us";
|
|
3841
|
+
readonly Use: "use";
|
|
3842
|
+
readonly Eu: "eu";
|
|
3843
|
+
readonly Jp: "jp";
|
|
3844
|
+
};
|
|
3845
|
+
export type InstanceRegion = typeof InstanceRegion[keyof typeof InstanceRegion];
|
|
3737
3846
|
/**
|
|
3738
3847
|
*
|
|
3739
3848
|
* @export
|
|
@@ -4083,6 +4192,12 @@ export interface LimitedUser {
|
|
|
4083
4192
|
* @memberof LimitedUser
|
|
4084
4193
|
*/
|
|
4085
4194
|
'bio'?: string;
|
|
4195
|
+
/**
|
|
4196
|
+
*
|
|
4197
|
+
* @type {Array<string>}
|
|
4198
|
+
* @memberof LimitedUser
|
|
4199
|
+
*/
|
|
4200
|
+
'bioLinks'?: Array<string>;
|
|
4086
4201
|
/**
|
|
4087
4202
|
* When profilePicOverride is not empty, use it instead.
|
|
4088
4203
|
* @type {string}
|
|
@@ -4095,6 +4210,12 @@ export interface LimitedUser {
|
|
|
4095
4210
|
* @memberof LimitedUser
|
|
4096
4211
|
*/
|
|
4097
4212
|
'currentAvatarThumbnailImageUrl'?: string;
|
|
4213
|
+
/**
|
|
4214
|
+
*
|
|
4215
|
+
* @type {Array<string>}
|
|
4216
|
+
* @memberof LimitedUser
|
|
4217
|
+
*/
|
|
4218
|
+
'currentAvatarTags'?: Array<string>;
|
|
4098
4219
|
/**
|
|
4099
4220
|
*
|
|
4100
4221
|
* @type {DeveloperType}
|
|
@@ -4137,6 +4258,12 @@ export interface LimitedUser {
|
|
|
4137
4258
|
* @memberof LimitedUser
|
|
4138
4259
|
*/
|
|
4139
4260
|
'profilePicOverride'?: string;
|
|
4261
|
+
/**
|
|
4262
|
+
*
|
|
4263
|
+
* @type {string}
|
|
4264
|
+
* @memberof LimitedUser
|
|
4265
|
+
*/
|
|
4266
|
+
'pronouns'?: string;
|
|
4140
4267
|
/**
|
|
4141
4268
|
*
|
|
4142
4269
|
* @type {UserStatus}
|
|
@@ -4181,6 +4308,121 @@ export interface LimitedUser {
|
|
|
4181
4308
|
*/
|
|
4182
4309
|
'friendKey'?: string;
|
|
4183
4310
|
}
|
|
4311
|
+
/**
|
|
4312
|
+
*
|
|
4313
|
+
* @export
|
|
4314
|
+
* @interface LimitedUserGroups
|
|
4315
|
+
*/
|
|
4316
|
+
export interface LimitedUserGroups {
|
|
4317
|
+
/**
|
|
4318
|
+
*
|
|
4319
|
+
* @type {string}
|
|
4320
|
+
* @memberof LimitedUserGroups
|
|
4321
|
+
*/
|
|
4322
|
+
'id'?: string;
|
|
4323
|
+
/**
|
|
4324
|
+
*
|
|
4325
|
+
* @type {string}
|
|
4326
|
+
* @memberof LimitedUserGroups
|
|
4327
|
+
*/
|
|
4328
|
+
'name'?: string;
|
|
4329
|
+
/**
|
|
4330
|
+
*
|
|
4331
|
+
* @type {string}
|
|
4332
|
+
* @memberof LimitedUserGroups
|
|
4333
|
+
*/
|
|
4334
|
+
'shortCode'?: string;
|
|
4335
|
+
/**
|
|
4336
|
+
*
|
|
4337
|
+
* @type {string}
|
|
4338
|
+
* @memberof LimitedUserGroups
|
|
4339
|
+
*/
|
|
4340
|
+
'discriminator'?: string;
|
|
4341
|
+
/**
|
|
4342
|
+
*
|
|
4343
|
+
* @type {string}
|
|
4344
|
+
* @memberof LimitedUserGroups
|
|
4345
|
+
*/
|
|
4346
|
+
'description'?: string;
|
|
4347
|
+
/**
|
|
4348
|
+
*
|
|
4349
|
+
* @type {string}
|
|
4350
|
+
* @memberof LimitedUserGroups
|
|
4351
|
+
*/
|
|
4352
|
+
'iconId'?: string | null;
|
|
4353
|
+
/**
|
|
4354
|
+
*
|
|
4355
|
+
* @type {string}
|
|
4356
|
+
* @memberof LimitedUserGroups
|
|
4357
|
+
*/
|
|
4358
|
+
'iconUrl'?: string | null;
|
|
4359
|
+
/**
|
|
4360
|
+
*
|
|
4361
|
+
* @type {string}
|
|
4362
|
+
* @memberof LimitedUserGroups
|
|
4363
|
+
*/
|
|
4364
|
+
'bannerId'?: string | null;
|
|
4365
|
+
/**
|
|
4366
|
+
*
|
|
4367
|
+
* @type {string}
|
|
4368
|
+
* @memberof LimitedUserGroups
|
|
4369
|
+
*/
|
|
4370
|
+
'bannerUrl'?: string | null;
|
|
4371
|
+
/**
|
|
4372
|
+
*
|
|
4373
|
+
* @type {string}
|
|
4374
|
+
* @memberof LimitedUserGroups
|
|
4375
|
+
*/
|
|
4376
|
+
'privacy'?: string;
|
|
4377
|
+
/**
|
|
4378
|
+
*
|
|
4379
|
+
* @type {string}
|
|
4380
|
+
* @memberof LimitedUserGroups
|
|
4381
|
+
*/
|
|
4382
|
+
'lastPostCreatedAt'?: string | null;
|
|
4383
|
+
/**
|
|
4384
|
+
* 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.
|
|
4385
|
+
* @type {string}
|
|
4386
|
+
* @memberof LimitedUserGroups
|
|
4387
|
+
*/
|
|
4388
|
+
'ownerId'?: string;
|
|
4389
|
+
/**
|
|
4390
|
+
*
|
|
4391
|
+
* @type {number}
|
|
4392
|
+
* @memberof LimitedUserGroups
|
|
4393
|
+
*/
|
|
4394
|
+
'memberCount'?: number;
|
|
4395
|
+
/**
|
|
4396
|
+
*
|
|
4397
|
+
* @type {string}
|
|
4398
|
+
* @memberof LimitedUserGroups
|
|
4399
|
+
*/
|
|
4400
|
+
'groupId'?: string;
|
|
4401
|
+
/**
|
|
4402
|
+
*
|
|
4403
|
+
* @type {string}
|
|
4404
|
+
* @memberof LimitedUserGroups
|
|
4405
|
+
*/
|
|
4406
|
+
'memberVisibility'?: string;
|
|
4407
|
+
/**
|
|
4408
|
+
*
|
|
4409
|
+
* @type {boolean}
|
|
4410
|
+
* @memberof LimitedUserGroups
|
|
4411
|
+
*/
|
|
4412
|
+
'isRepresenting'?: boolean;
|
|
4413
|
+
/**
|
|
4414
|
+
*
|
|
4415
|
+
* @type {boolean}
|
|
4416
|
+
* @memberof LimitedUserGroups
|
|
4417
|
+
*/
|
|
4418
|
+
'mutualGroup'?: boolean;
|
|
4419
|
+
/**
|
|
4420
|
+
*
|
|
4421
|
+
* @type {string}
|
|
4422
|
+
* @memberof LimitedUserGroups
|
|
4423
|
+
*/
|
|
4424
|
+
'lastPostReadAt'?: string | null;
|
|
4425
|
+
}
|
|
4184
4426
|
/**
|
|
4185
4427
|
*
|
|
4186
4428
|
* @export
|
|
@@ -4223,6 +4465,12 @@ export interface LimitedWorld {
|
|
|
4223
4465
|
* @memberof LimitedWorld
|
|
4224
4466
|
*/
|
|
4225
4467
|
'favorites': number;
|
|
4468
|
+
/**
|
|
4469
|
+
*
|
|
4470
|
+
* @type {number}
|
|
4471
|
+
* @memberof LimitedWorld
|
|
4472
|
+
*/
|
|
4473
|
+
'visits'?: number;
|
|
4226
4474
|
/**
|
|
4227
4475
|
*
|
|
4228
4476
|
* @type {number}
|
|
@@ -4271,6 +4519,12 @@ export interface LimitedWorld {
|
|
|
4271
4519
|
* @memberof LimitedWorld
|
|
4272
4520
|
*/
|
|
4273
4521
|
'popularity': number;
|
|
4522
|
+
/**
|
|
4523
|
+
*
|
|
4524
|
+
* @type {string}
|
|
4525
|
+
* @memberof LimitedWorld
|
|
4526
|
+
*/
|
|
4527
|
+
'previewYoutubeId'?: string | null;
|
|
4274
4528
|
/**
|
|
4275
4529
|
*
|
|
4276
4530
|
* @type {string}
|
|
@@ -4885,6 +5139,12 @@ export interface RespondGroupJoinRequest {
|
|
|
4885
5139
|
* @memberof RespondGroupJoinRequest
|
|
4886
5140
|
*/
|
|
4887
5141
|
'action': GroupJoinRequestAction;
|
|
5142
|
+
/**
|
|
5143
|
+
* Whether to block the user from requesting again
|
|
5144
|
+
* @type {boolean}
|
|
5145
|
+
* @memberof RespondGroupJoinRequest
|
|
5146
|
+
*/
|
|
5147
|
+
'block'?: boolean;
|
|
4888
5148
|
}
|
|
4889
5149
|
/**
|
|
4890
5150
|
*
|
|
@@ -4918,11 +5178,11 @@ export interface SentNotification {
|
|
|
4918
5178
|
*/
|
|
4919
5179
|
'created_at': string;
|
|
4920
5180
|
/**
|
|
4921
|
-
*
|
|
4922
|
-
* @type {
|
|
5181
|
+
*
|
|
5182
|
+
* @type {object}
|
|
4923
5183
|
* @memberof SentNotification
|
|
4924
5184
|
*/
|
|
4925
|
-
'details':
|
|
5185
|
+
'details': object;
|
|
4926
5186
|
/**
|
|
4927
5187
|
*
|
|
4928
5188
|
* @type {string}
|
|
@@ -4940,7 +5200,7 @@ export interface SentNotification {
|
|
|
4940
5200
|
* @type {string}
|
|
4941
5201
|
* @memberof SentNotification
|
|
4942
5202
|
*/
|
|
4943
|
-
'
|
|
5203
|
+
'receiverUserId': string;
|
|
4944
5204
|
/**
|
|
4945
5205
|
* 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
5206
|
* @type {string}
|
|
@@ -5005,6 +5265,30 @@ export interface Subscription {
|
|
|
5005
5265
|
* @memberof Subscription
|
|
5006
5266
|
*/
|
|
5007
5267
|
'steamItemId': string;
|
|
5268
|
+
/**
|
|
5269
|
+
*
|
|
5270
|
+
* @type {string}
|
|
5271
|
+
* @memberof Subscription
|
|
5272
|
+
*/
|
|
5273
|
+
'oculusSku'?: string;
|
|
5274
|
+
/**
|
|
5275
|
+
*
|
|
5276
|
+
* @type {string}
|
|
5277
|
+
* @memberof Subscription
|
|
5278
|
+
*/
|
|
5279
|
+
'googleProductId'?: string;
|
|
5280
|
+
/**
|
|
5281
|
+
*
|
|
5282
|
+
* @type {string}
|
|
5283
|
+
* @memberof Subscription
|
|
5284
|
+
*/
|
|
5285
|
+
'googlePlanId'?: string;
|
|
5286
|
+
/**
|
|
5287
|
+
*
|
|
5288
|
+
* @type {string}
|
|
5289
|
+
* @memberof Subscription
|
|
5290
|
+
*/
|
|
5291
|
+
'picoSku'?: string;
|
|
5008
5292
|
/**
|
|
5009
5293
|
*
|
|
5010
5294
|
* @type {number}
|
|
@@ -5068,6 +5352,18 @@ export interface Transaction {
|
|
|
5068
5352
|
* @memberof Transaction
|
|
5069
5353
|
*/
|
|
5070
5354
|
'id': string;
|
|
5355
|
+
/**
|
|
5356
|
+
* 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.
|
|
5357
|
+
* @type {string}
|
|
5358
|
+
* @memberof Transaction
|
|
5359
|
+
*/
|
|
5360
|
+
'userId'?: string;
|
|
5361
|
+
/**
|
|
5362
|
+
*
|
|
5363
|
+
* @type {string}
|
|
5364
|
+
* @memberof Transaction
|
|
5365
|
+
*/
|
|
5366
|
+
'userDisplayName'?: string;
|
|
5071
5367
|
/**
|
|
5072
5368
|
*
|
|
5073
5369
|
* @type {TransactionStatus}
|
|
@@ -5116,6 +5412,18 @@ export interface Transaction {
|
|
|
5116
5412
|
* @memberof Transaction
|
|
5117
5413
|
*/
|
|
5118
5414
|
'error': string;
|
|
5415
|
+
/**
|
|
5416
|
+
*
|
|
5417
|
+
* @type {boolean}
|
|
5418
|
+
* @memberof Transaction
|
|
5419
|
+
*/
|
|
5420
|
+
'isGift'?: boolean;
|
|
5421
|
+
/**
|
|
5422
|
+
*
|
|
5423
|
+
* @type {boolean}
|
|
5424
|
+
* @memberof Transaction
|
|
5425
|
+
*/
|
|
5426
|
+
'isTokens'?: boolean;
|
|
5119
5427
|
}
|
|
5120
5428
|
/**
|
|
5121
5429
|
*
|
|
@@ -5410,6 +5718,12 @@ export interface UnityPackage {
|
|
|
5410
5718
|
* @memberof UnityPackage
|
|
5411
5719
|
*/
|
|
5412
5720
|
'scanStatus'?: string;
|
|
5721
|
+
/**
|
|
5722
|
+
*
|
|
5723
|
+
* @type {string}
|
|
5724
|
+
* @memberof UnityPackage
|
|
5725
|
+
*/
|
|
5726
|
+
'variant'?: string;
|
|
5413
5727
|
}
|
|
5414
5728
|
/**
|
|
5415
5729
|
*
|
|
@@ -5748,6 +6062,12 @@ export interface UpdateUserRequest {
|
|
|
5748
6062
|
* @memberof UpdateUserRequest
|
|
5749
6063
|
*/
|
|
5750
6064
|
'bioLinks'?: Array<string>;
|
|
6065
|
+
/**
|
|
6066
|
+
*
|
|
6067
|
+
* @type {string}
|
|
6068
|
+
* @memberof UpdateUserRequest
|
|
6069
|
+
*/
|
|
6070
|
+
'pronouns'?: string;
|
|
5751
6071
|
/**
|
|
5752
6072
|
* MUST be a valid VRChat /file/ url.
|
|
5753
6073
|
* @type {string}
|
|
@@ -5852,6 +6172,12 @@ export interface User {
|
|
|
5852
6172
|
* @memberof User
|
|
5853
6173
|
*/
|
|
5854
6174
|
'allowAvatarCopying': boolean;
|
|
6175
|
+
/**
|
|
6176
|
+
*
|
|
6177
|
+
* @type {Array<Badge>}
|
|
6178
|
+
* @memberof User
|
|
6179
|
+
*/
|
|
6180
|
+
'badges'?: Array<Badge>;
|
|
5855
6181
|
/**
|
|
5856
6182
|
*
|
|
5857
6183
|
* @type {string}
|
|
@@ -5876,6 +6202,12 @@ export interface User {
|
|
|
5876
6202
|
* @memberof User
|
|
5877
6203
|
*/
|
|
5878
6204
|
'currentAvatarThumbnailImageUrl': string;
|
|
6205
|
+
/**
|
|
6206
|
+
*
|
|
6207
|
+
* @type {Array<string>}
|
|
6208
|
+
* @memberof User
|
|
6209
|
+
*/
|
|
6210
|
+
'currentAvatarTags': Array<string>;
|
|
5879
6211
|
/**
|
|
5880
6212
|
*
|
|
5881
6213
|
* @type {string}
|
|
@@ -5960,6 +6292,12 @@ export interface User {
|
|
|
5960
6292
|
* @memberof User
|
|
5961
6293
|
*/
|
|
5962
6294
|
'profilePicOverride': string;
|
|
6295
|
+
/**
|
|
6296
|
+
*
|
|
6297
|
+
* @type {string}
|
|
6298
|
+
* @memberof User
|
|
6299
|
+
*/
|
|
6300
|
+
'pronouns': string;
|
|
5963
6301
|
/**
|
|
5964
6302
|
*
|
|
5965
6303
|
* @type {UserState}
|
|
@@ -6418,7 +6756,7 @@ export interface WorldPublishStatus {
|
|
|
6418
6756
|
* @type {boolean}
|
|
6419
6757
|
* @memberof WorldPublishStatus
|
|
6420
6758
|
*/
|
|
6421
|
-
'
|
|
6759
|
+
'canPublish': boolean;
|
|
6422
6760
|
}
|
|
6423
6761
|
/**
|
|
6424
6762
|
* AuthenticationApi - axios parameter creator
|
|
@@ -8536,10 +8874,11 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8536
8874
|
* @param {string} groupId Must be a valid group ID.
|
|
8537
8875
|
* @param {number} [n] The number of objects to return.
|
|
8538
8876
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
8877
|
+
* @param {boolean} [blocked] See blocked join requests
|
|
8539
8878
|
* @param {*} [options] Override http request option.
|
|
8540
8879
|
* @throws {RequiredError}
|
|
8541
8880
|
*/
|
|
8542
|
-
getGroupRequests: (groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8881
|
+
getGroupRequests: (groupId: string, n?: number, offset?: number, blocked?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8543
8882
|
/**
|
|
8544
8883
|
* Returns a Group Role by ID.
|
|
8545
8884
|
* @summary Get Group Roles
|
|
@@ -8933,10 +9272,11 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
8933
9272
|
* @param {string} groupId Must be a valid group ID.
|
|
8934
9273
|
* @param {number} [n] The number of objects to return.
|
|
8935
9274
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
9275
|
+
* @param {boolean} [blocked] See blocked join requests
|
|
8936
9276
|
* @param {*} [options] Override http request option.
|
|
8937
9277
|
* @throws {RequiredError}
|
|
8938
9278
|
*/
|
|
8939
|
-
getGroupRequests(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>>;
|
|
9279
|
+
getGroupRequests(groupId: string, n?: number, offset?: number, blocked?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>>;
|
|
8940
9280
|
/**
|
|
8941
9281
|
* Returns a Group Role by ID.
|
|
8942
9282
|
* @summary Get Group Roles
|
|
@@ -9330,10 +9670,11 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
9330
9670
|
* @param {string} groupId Must be a valid group ID.
|
|
9331
9671
|
* @param {number} [n] The number of objects to return.
|
|
9332
9672
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
9673
|
+
* @param {boolean} [blocked] See blocked join requests
|
|
9333
9674
|
* @param {*} [options] Override http request option.
|
|
9334
9675
|
* @throws {RequiredError}
|
|
9335
9676
|
*/
|
|
9336
|
-
getGroupRequests(groupId: string, n?: number, offset?: number, options?: any): AxiosPromise<Array<GroupMember>>;
|
|
9677
|
+
getGroupRequests(groupId: string, n?: number, offset?: number, blocked?: boolean, options?: any): AxiosPromise<Array<GroupMember>>;
|
|
9337
9678
|
/**
|
|
9338
9679
|
* Returns a Group Role by ID.
|
|
9339
9680
|
* @summary Get Group Roles
|
|
@@ -9757,11 +10098,12 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
9757
10098
|
* @param {string} groupId Must be a valid group ID.
|
|
9758
10099
|
* @param {number} [n] The number of objects to return.
|
|
9759
10100
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
10101
|
+
* @param {boolean} [blocked] See blocked join requests
|
|
9760
10102
|
* @param {*} [options] Override http request option.
|
|
9761
10103
|
* @throws {RequiredError}
|
|
9762
10104
|
* @memberof GroupsApi
|
|
9763
10105
|
*/
|
|
9764
|
-
getGroupRequests(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember[], any>>;
|
|
10106
|
+
getGroupRequests(groupId: string, n?: number, offset?: number, blocked?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupMember[], any>>;
|
|
9765
10107
|
/**
|
|
9766
10108
|
* Returns a Group Role by ID.
|
|
9767
10109
|
* @summary Get Group Roles
|
|
@@ -11363,7 +11705,7 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
11363
11705
|
* @param {*} [options] Override http request option.
|
|
11364
11706
|
* @throws {RequiredError}
|
|
11365
11707
|
*/
|
|
11366
|
-
getUserGroups(userId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
11708
|
+
getUserGroups(userId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedUserGroups>>>;
|
|
11367
11709
|
/**
|
|
11368
11710
|
* Returns the current group that the user is currently representing
|
|
11369
11711
|
* @summary Get user\'s current represented group
|
|
@@ -11430,7 +11772,7 @@ export declare const UsersApiFactory: (configuration?: Configuration, basePath?:
|
|
|
11430
11772
|
* @param {*} [options] Override http request option.
|
|
11431
11773
|
* @throws {RequiredError}
|
|
11432
11774
|
*/
|
|
11433
|
-
getUserGroups(userId: string, options?: any): AxiosPromise<Array<
|
|
11775
|
+
getUserGroups(userId: string, options?: any): AxiosPromise<Array<LimitedUserGroups>>;
|
|
11434
11776
|
/**
|
|
11435
11777
|
* Returns the current group that the user is currently representing
|
|
11436
11778
|
* @summary Get user\'s current represented group
|
|
@@ -11503,7 +11845,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
11503
11845
|
* @throws {RequiredError}
|
|
11504
11846
|
* @memberof UsersApi
|
|
11505
11847
|
*/
|
|
11506
|
-
getUserGroups(userId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11848
|
+
getUserGroups(userId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LimitedUserGroups[], any>>;
|
|
11507
11849
|
/**
|
|
11508
11850
|
* Returns the current group that the user is currently representing
|
|
11509
11851
|
* @summary Get user\'s current represented group
|