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/.github/workflows/ci.yaml +2 -2
- package/api.ts +399 -24
- package/base.ts +2 -2
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +388 -21
- package/dist/api.js +31 -12
- 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/api.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.6
|
|
7
7
|
* Contact: vrchatapi.lpv0t@aries.fyi
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -856,6 +856,61 @@ export interface AvatarUnityPackageUrlObject {
|
|
|
856
856
|
*/
|
|
857
857
|
'unityPackageUrl'?: string;
|
|
858
858
|
}
|
|
859
|
+
/**
|
|
860
|
+
*
|
|
861
|
+
* @export
|
|
862
|
+
* @interface Badge
|
|
863
|
+
*/
|
|
864
|
+
export interface Badge {
|
|
865
|
+
/**
|
|
866
|
+
* only present in CurrentUser badges
|
|
867
|
+
* @type {string}
|
|
868
|
+
* @memberof Badge
|
|
869
|
+
*/
|
|
870
|
+
'assignedAt'?: string | null;
|
|
871
|
+
/**
|
|
872
|
+
*
|
|
873
|
+
* @type {string}
|
|
874
|
+
* @memberof Badge
|
|
875
|
+
*/
|
|
876
|
+
'badgeDescription': string;
|
|
877
|
+
/**
|
|
878
|
+
*
|
|
879
|
+
* @type {string}
|
|
880
|
+
* @memberof Badge
|
|
881
|
+
*/
|
|
882
|
+
'badgeId': string;
|
|
883
|
+
/**
|
|
884
|
+
* direct url to image
|
|
885
|
+
* @type {string}
|
|
886
|
+
* @memberof Badge
|
|
887
|
+
*/
|
|
888
|
+
'badgeImageUrl': string;
|
|
889
|
+
/**
|
|
890
|
+
*
|
|
891
|
+
* @type {string}
|
|
892
|
+
* @memberof Badge
|
|
893
|
+
*/
|
|
894
|
+
'badgeName': string;
|
|
895
|
+
/**
|
|
896
|
+
* only present in CurrentUser badges
|
|
897
|
+
* @type {boolean}
|
|
898
|
+
* @memberof Badge
|
|
899
|
+
*/
|
|
900
|
+
'hidden'?: boolean | null;
|
|
901
|
+
/**
|
|
902
|
+
*
|
|
903
|
+
* @type {boolean}
|
|
904
|
+
* @memberof Badge
|
|
905
|
+
*/
|
|
906
|
+
'showcased': boolean;
|
|
907
|
+
/**
|
|
908
|
+
* only present in CurrentUser badges
|
|
909
|
+
* @type {string}
|
|
910
|
+
* @memberof Badge
|
|
911
|
+
*/
|
|
912
|
+
'updatedAt'?: string | null;
|
|
913
|
+
}
|
|
859
914
|
/**
|
|
860
915
|
*
|
|
861
916
|
* @export
|
|
@@ -1252,10 +1307,10 @@ export interface CreateInstanceRequest {
|
|
|
1252
1307
|
'type': InstanceType;
|
|
1253
1308
|
/**
|
|
1254
1309
|
*
|
|
1255
|
-
* @type {
|
|
1310
|
+
* @type {InstanceRegion}
|
|
1256
1311
|
* @memberof CreateInstanceRequest
|
|
1257
1312
|
*/
|
|
1258
|
-
'region':
|
|
1313
|
+
'region': InstanceRegion;
|
|
1259
1314
|
/**
|
|
1260
1315
|
* A groupId if the instance type is \"group\", null if instance type is public, or a userId otherwise
|
|
1261
1316
|
* @type {string}
|
|
@@ -1281,11 +1336,29 @@ export interface CreateInstanceRequest {
|
|
|
1281
1336
|
*/
|
|
1282
1337
|
'queueEnabled'?: boolean;
|
|
1283
1338
|
/**
|
|
1284
|
-
* The time after which users won\'t be allowed to join the instance
|
|
1339
|
+
* The time after which users won\'t be allowed to join the instance. This doesn\'t work for public instances.
|
|
1285
1340
|
* @type {string}
|
|
1286
1341
|
* @memberof CreateInstanceRequest
|
|
1287
1342
|
*/
|
|
1288
1343
|
'closedAt'?: string;
|
|
1344
|
+
/**
|
|
1345
|
+
* Only applies to invite type instances to make them invite+
|
|
1346
|
+
* @type {boolean}
|
|
1347
|
+
* @memberof CreateInstanceRequest
|
|
1348
|
+
*/
|
|
1349
|
+
'canRequestInvite'?: boolean;
|
|
1350
|
+
/**
|
|
1351
|
+
* Currently unused, but will eventually be a flag to set if the closing of the instance should kick people.
|
|
1352
|
+
* @type {boolean}
|
|
1353
|
+
* @memberof CreateInstanceRequest
|
|
1354
|
+
*/
|
|
1355
|
+
'hardClose'?: boolean;
|
|
1356
|
+
/**
|
|
1357
|
+
*
|
|
1358
|
+
* @type {boolean}
|
|
1359
|
+
* @memberof CreateInstanceRequest
|
|
1360
|
+
*/
|
|
1361
|
+
'inviteOnly'?: boolean;
|
|
1289
1362
|
}
|
|
1290
1363
|
/**
|
|
1291
1364
|
*
|
|
@@ -1420,6 +1493,12 @@ export interface CurrentUser {
|
|
|
1420
1493
|
* @memberof CurrentUser
|
|
1421
1494
|
*/
|
|
1422
1495
|
'allowAvatarCopying': boolean;
|
|
1496
|
+
/**
|
|
1497
|
+
*
|
|
1498
|
+
* @type {Array<Badge>}
|
|
1499
|
+
* @memberof CurrentUser
|
|
1500
|
+
*/
|
|
1501
|
+
'badges'?: Array<Badge>;
|
|
1423
1502
|
/**
|
|
1424
1503
|
*
|
|
1425
1504
|
* @type {string}
|
|
@@ -1461,7 +1540,7 @@ export interface CurrentUser {
|
|
|
1461
1540
|
* @type {Array<string>}
|
|
1462
1541
|
* @memberof CurrentUser
|
|
1463
1542
|
*/
|
|
1464
|
-
'currentAvatarTags'
|
|
1543
|
+
'currentAvatarTags': Array<string>;
|
|
1465
1544
|
/**
|
|
1466
1545
|
*
|
|
1467
1546
|
* @type {string}
|
|
@@ -1565,6 +1644,12 @@ export interface CurrentUser {
|
|
|
1565
1644
|
* @memberof CurrentUser
|
|
1566
1645
|
*/
|
|
1567
1646
|
'id': string;
|
|
1647
|
+
/**
|
|
1648
|
+
*
|
|
1649
|
+
* @type {boolean}
|
|
1650
|
+
* @memberof CurrentUser
|
|
1651
|
+
*/
|
|
1652
|
+
'isBoopingEnabled'?: boolean;
|
|
1568
1653
|
/**
|
|
1569
1654
|
*
|
|
1570
1655
|
* @type {boolean}
|
|
@@ -1583,6 +1668,12 @@ export interface CurrentUser {
|
|
|
1583
1668
|
* @memberof CurrentUser
|
|
1584
1669
|
*/
|
|
1585
1670
|
'last_login': string;
|
|
1671
|
+
/**
|
|
1672
|
+
*
|
|
1673
|
+
* @type {string}
|
|
1674
|
+
* @memberof CurrentUser
|
|
1675
|
+
*/
|
|
1676
|
+
'last_mobile': string | null;
|
|
1586
1677
|
/**
|
|
1587
1678
|
* 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`.
|
|
1588
1679
|
* @type {string}
|
|
@@ -1613,6 +1704,12 @@ export interface CurrentUser {
|
|
|
1613
1704
|
* @memberof CurrentUser
|
|
1614
1705
|
*/
|
|
1615
1706
|
'googleId'?: string;
|
|
1707
|
+
/**
|
|
1708
|
+
*
|
|
1709
|
+
* @type {object}
|
|
1710
|
+
* @memberof CurrentUser
|
|
1711
|
+
*/
|
|
1712
|
+
'googleDetails'?: object;
|
|
1616
1713
|
/**
|
|
1617
1714
|
*
|
|
1618
1715
|
* @type {string}
|
|
@@ -1655,6 +1752,18 @@ export interface CurrentUser {
|
|
|
1655
1752
|
* @memberof CurrentUser
|
|
1656
1753
|
*/
|
|
1657
1754
|
'profilePicOverride': string;
|
|
1755
|
+
/**
|
|
1756
|
+
*
|
|
1757
|
+
* @type {string}
|
|
1758
|
+
* @memberof CurrentUser
|
|
1759
|
+
*/
|
|
1760
|
+
'profilePicOverrideThumbnail': string;
|
|
1761
|
+
/**
|
|
1762
|
+
*
|
|
1763
|
+
* @type {string}
|
|
1764
|
+
* @memberof CurrentUser
|
|
1765
|
+
*/
|
|
1766
|
+
'pronouns': string;
|
|
1658
1767
|
/**
|
|
1659
1768
|
*
|
|
1660
1769
|
* @type {UserState}
|
|
@@ -2426,7 +2535,7 @@ export interface Group {
|
|
|
2426
2535
|
export const GroupAccessType = {
|
|
2427
2536
|
Public: 'public',
|
|
2428
2537
|
Plus: 'plus',
|
|
2429
|
-
|
|
2538
|
+
Members: 'members'
|
|
2430
2539
|
} as const;
|
|
2431
2540
|
|
|
2432
2541
|
export type GroupAccessType = typeof GroupAccessType[keyof typeof GroupAccessType];
|
|
@@ -2796,7 +2905,7 @@ export interface GroupLimitedMember {
|
|
|
2796
2905
|
* @type {string}
|
|
2797
2906
|
* @memberof GroupLimitedMember
|
|
2798
2907
|
*/
|
|
2799
|
-
'joinedAt'?: string;
|
|
2908
|
+
'joinedAt'?: string | null;
|
|
2800
2909
|
/**
|
|
2801
2910
|
*
|
|
2802
2911
|
* @type {GroupMemberStatus}
|
|
@@ -3009,7 +3118,8 @@ export const GroupMemberStatus = {
|
|
|
3009
3118
|
Member: 'member',
|
|
3010
3119
|
Requested: 'requested',
|
|
3011
3120
|
Invited: 'invited',
|
|
3012
|
-
Banned: 'banned'
|
|
3121
|
+
Banned: 'banned',
|
|
3122
|
+
Userblocked: 'userblocked'
|
|
3013
3123
|
} as const;
|
|
3014
3124
|
|
|
3015
3125
|
export type GroupMemberStatus = typeof GroupMemberStatus[keyof typeof GroupMemberStatus];
|
|
@@ -3656,10 +3766,10 @@ export interface Instance {
|
|
|
3656
3766
|
'platforms': InstancePlatforms;
|
|
3657
3767
|
/**
|
|
3658
3768
|
*
|
|
3659
|
-
* @type {
|
|
3769
|
+
* @type {InstanceRegion}
|
|
3660
3770
|
* @memberof Instance
|
|
3661
3771
|
*/
|
|
3662
|
-
'region':
|
|
3772
|
+
'region': InstanceRegion;
|
|
3663
3773
|
/**
|
|
3664
3774
|
*
|
|
3665
3775
|
* @type {string}
|
|
@@ -3806,6 +3916,22 @@ export interface InstancePlatforms {
|
|
|
3806
3916
|
*/
|
|
3807
3917
|
'standalonewindows': number;
|
|
3808
3918
|
}
|
|
3919
|
+
/**
|
|
3920
|
+
* Instance region
|
|
3921
|
+
* @export
|
|
3922
|
+
* @enum {string}
|
|
3923
|
+
*/
|
|
3924
|
+
|
|
3925
|
+
export const InstanceRegion = {
|
|
3926
|
+
Us: 'us',
|
|
3927
|
+
Use: 'use',
|
|
3928
|
+
Eu: 'eu',
|
|
3929
|
+
Jp: 'jp'
|
|
3930
|
+
} as const;
|
|
3931
|
+
|
|
3932
|
+
export type InstanceRegion = typeof InstanceRegion[keyof typeof InstanceRegion];
|
|
3933
|
+
|
|
3934
|
+
|
|
3809
3935
|
/**
|
|
3810
3936
|
*
|
|
3811
3937
|
* @export
|
|
@@ -4171,6 +4297,12 @@ export interface LimitedUser {
|
|
|
4171
4297
|
* @memberof LimitedUser
|
|
4172
4298
|
*/
|
|
4173
4299
|
'bio'?: string;
|
|
4300
|
+
/**
|
|
4301
|
+
*
|
|
4302
|
+
* @type {Array<string>}
|
|
4303
|
+
* @memberof LimitedUser
|
|
4304
|
+
*/
|
|
4305
|
+
'bioLinks'?: Array<string>;
|
|
4174
4306
|
/**
|
|
4175
4307
|
* When profilePicOverride is not empty, use it instead.
|
|
4176
4308
|
* @type {string}
|
|
@@ -4183,6 +4315,12 @@ export interface LimitedUser {
|
|
|
4183
4315
|
* @memberof LimitedUser
|
|
4184
4316
|
*/
|
|
4185
4317
|
'currentAvatarThumbnailImageUrl'?: string;
|
|
4318
|
+
/**
|
|
4319
|
+
*
|
|
4320
|
+
* @type {Array<string>}
|
|
4321
|
+
* @memberof LimitedUser
|
|
4322
|
+
*/
|
|
4323
|
+
'currentAvatarTags'?: Array<string>;
|
|
4186
4324
|
/**
|
|
4187
4325
|
*
|
|
4188
4326
|
* @type {DeveloperType}
|
|
@@ -4225,6 +4363,12 @@ export interface LimitedUser {
|
|
|
4225
4363
|
* @memberof LimitedUser
|
|
4226
4364
|
*/
|
|
4227
4365
|
'profilePicOverride'?: string;
|
|
4366
|
+
/**
|
|
4367
|
+
*
|
|
4368
|
+
* @type {string}
|
|
4369
|
+
* @memberof LimitedUser
|
|
4370
|
+
*/
|
|
4371
|
+
'pronouns'?: string;
|
|
4228
4372
|
/**
|
|
4229
4373
|
*
|
|
4230
4374
|
* @type {UserStatus}
|
|
@@ -4269,6 +4413,121 @@ export interface LimitedUser {
|
|
|
4269
4413
|
*/
|
|
4270
4414
|
'friendKey'?: string;
|
|
4271
4415
|
}
|
|
4416
|
+
/**
|
|
4417
|
+
*
|
|
4418
|
+
* @export
|
|
4419
|
+
* @interface LimitedUserGroups
|
|
4420
|
+
*/
|
|
4421
|
+
export interface LimitedUserGroups {
|
|
4422
|
+
/**
|
|
4423
|
+
*
|
|
4424
|
+
* @type {string}
|
|
4425
|
+
* @memberof LimitedUserGroups
|
|
4426
|
+
*/
|
|
4427
|
+
'id'?: string;
|
|
4428
|
+
/**
|
|
4429
|
+
*
|
|
4430
|
+
* @type {string}
|
|
4431
|
+
* @memberof LimitedUserGroups
|
|
4432
|
+
*/
|
|
4433
|
+
'name'?: string;
|
|
4434
|
+
/**
|
|
4435
|
+
*
|
|
4436
|
+
* @type {string}
|
|
4437
|
+
* @memberof LimitedUserGroups
|
|
4438
|
+
*/
|
|
4439
|
+
'shortCode'?: string;
|
|
4440
|
+
/**
|
|
4441
|
+
*
|
|
4442
|
+
* @type {string}
|
|
4443
|
+
* @memberof LimitedUserGroups
|
|
4444
|
+
*/
|
|
4445
|
+
'discriminator'?: string;
|
|
4446
|
+
/**
|
|
4447
|
+
*
|
|
4448
|
+
* @type {string}
|
|
4449
|
+
* @memberof LimitedUserGroups
|
|
4450
|
+
*/
|
|
4451
|
+
'description'?: string;
|
|
4452
|
+
/**
|
|
4453
|
+
*
|
|
4454
|
+
* @type {string}
|
|
4455
|
+
* @memberof LimitedUserGroups
|
|
4456
|
+
*/
|
|
4457
|
+
'iconId'?: string | null;
|
|
4458
|
+
/**
|
|
4459
|
+
*
|
|
4460
|
+
* @type {string}
|
|
4461
|
+
* @memberof LimitedUserGroups
|
|
4462
|
+
*/
|
|
4463
|
+
'iconUrl'?: string | null;
|
|
4464
|
+
/**
|
|
4465
|
+
*
|
|
4466
|
+
* @type {string}
|
|
4467
|
+
* @memberof LimitedUserGroups
|
|
4468
|
+
*/
|
|
4469
|
+
'bannerId'?: string | null;
|
|
4470
|
+
/**
|
|
4471
|
+
*
|
|
4472
|
+
* @type {string}
|
|
4473
|
+
* @memberof LimitedUserGroups
|
|
4474
|
+
*/
|
|
4475
|
+
'bannerUrl'?: string | null;
|
|
4476
|
+
/**
|
|
4477
|
+
*
|
|
4478
|
+
* @type {string}
|
|
4479
|
+
* @memberof LimitedUserGroups
|
|
4480
|
+
*/
|
|
4481
|
+
'privacy'?: string;
|
|
4482
|
+
/**
|
|
4483
|
+
*
|
|
4484
|
+
* @type {string}
|
|
4485
|
+
* @memberof LimitedUserGroups
|
|
4486
|
+
*/
|
|
4487
|
+
'lastPostCreatedAt'?: string | null;
|
|
4488
|
+
/**
|
|
4489
|
+
* 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.
|
|
4490
|
+
* @type {string}
|
|
4491
|
+
* @memberof LimitedUserGroups
|
|
4492
|
+
*/
|
|
4493
|
+
'ownerId'?: string;
|
|
4494
|
+
/**
|
|
4495
|
+
*
|
|
4496
|
+
* @type {number}
|
|
4497
|
+
* @memberof LimitedUserGroups
|
|
4498
|
+
*/
|
|
4499
|
+
'memberCount'?: number;
|
|
4500
|
+
/**
|
|
4501
|
+
*
|
|
4502
|
+
* @type {string}
|
|
4503
|
+
* @memberof LimitedUserGroups
|
|
4504
|
+
*/
|
|
4505
|
+
'groupId'?: string;
|
|
4506
|
+
/**
|
|
4507
|
+
*
|
|
4508
|
+
* @type {string}
|
|
4509
|
+
* @memberof LimitedUserGroups
|
|
4510
|
+
*/
|
|
4511
|
+
'memberVisibility'?: string;
|
|
4512
|
+
/**
|
|
4513
|
+
*
|
|
4514
|
+
* @type {boolean}
|
|
4515
|
+
* @memberof LimitedUserGroups
|
|
4516
|
+
*/
|
|
4517
|
+
'isRepresenting'?: boolean;
|
|
4518
|
+
/**
|
|
4519
|
+
*
|
|
4520
|
+
* @type {boolean}
|
|
4521
|
+
* @memberof LimitedUserGroups
|
|
4522
|
+
*/
|
|
4523
|
+
'mutualGroup'?: boolean;
|
|
4524
|
+
/**
|
|
4525
|
+
*
|
|
4526
|
+
* @type {string}
|
|
4527
|
+
* @memberof LimitedUserGroups
|
|
4528
|
+
*/
|
|
4529
|
+
'lastPostReadAt'?: string | null;
|
|
4530
|
+
}
|
|
4272
4531
|
/**
|
|
4273
4532
|
*
|
|
4274
4533
|
* @export
|
|
@@ -4311,6 +4570,12 @@ export interface LimitedWorld {
|
|
|
4311
4570
|
* @memberof LimitedWorld
|
|
4312
4571
|
*/
|
|
4313
4572
|
'favorites': number;
|
|
4573
|
+
/**
|
|
4574
|
+
*
|
|
4575
|
+
* @type {number}
|
|
4576
|
+
* @memberof LimitedWorld
|
|
4577
|
+
*/
|
|
4578
|
+
'visits'?: number;
|
|
4314
4579
|
/**
|
|
4315
4580
|
*
|
|
4316
4581
|
* @type {number}
|
|
@@ -4359,6 +4624,12 @@ export interface LimitedWorld {
|
|
|
4359
4624
|
* @memberof LimitedWorld
|
|
4360
4625
|
*/
|
|
4361
4626
|
'popularity': number;
|
|
4627
|
+
/**
|
|
4628
|
+
*
|
|
4629
|
+
* @type {string}
|
|
4630
|
+
* @memberof LimitedWorld
|
|
4631
|
+
*/
|
|
4632
|
+
'previewYoutubeId'?: string | null;
|
|
4362
4633
|
/**
|
|
4363
4634
|
*
|
|
4364
4635
|
* @type {string}
|
|
@@ -4997,6 +5268,12 @@ export interface RespondGroupJoinRequest {
|
|
|
4997
5268
|
* @memberof RespondGroupJoinRequest
|
|
4998
5269
|
*/
|
|
4999
5270
|
'action': GroupJoinRequestAction;
|
|
5271
|
+
/**
|
|
5272
|
+
* Whether to block the user from requesting again
|
|
5273
|
+
* @type {boolean}
|
|
5274
|
+
* @memberof RespondGroupJoinRequest
|
|
5275
|
+
*/
|
|
5276
|
+
'block'?: boolean;
|
|
5000
5277
|
}
|
|
5001
5278
|
/**
|
|
5002
5279
|
*
|
|
@@ -5030,11 +5307,11 @@ export interface SentNotification {
|
|
|
5030
5307
|
*/
|
|
5031
5308
|
'created_at': string;
|
|
5032
5309
|
/**
|
|
5033
|
-
*
|
|
5034
|
-
* @type {
|
|
5310
|
+
*
|
|
5311
|
+
* @type {object}
|
|
5035
5312
|
* @memberof SentNotification
|
|
5036
5313
|
*/
|
|
5037
|
-
'details':
|
|
5314
|
+
'details': object;
|
|
5038
5315
|
/**
|
|
5039
5316
|
*
|
|
5040
5317
|
* @type {string}
|
|
@@ -5052,7 +5329,7 @@ export interface SentNotification {
|
|
|
5052
5329
|
* @type {string}
|
|
5053
5330
|
* @memberof SentNotification
|
|
5054
5331
|
*/
|
|
5055
|
-
'
|
|
5332
|
+
'receiverUserId': string;
|
|
5056
5333
|
/**
|
|
5057
5334
|
* 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.
|
|
5058
5335
|
* @type {string}
|
|
@@ -5121,6 +5398,30 @@ export interface Subscription {
|
|
|
5121
5398
|
* @memberof Subscription
|
|
5122
5399
|
*/
|
|
5123
5400
|
'steamItemId': string;
|
|
5401
|
+
/**
|
|
5402
|
+
*
|
|
5403
|
+
* @type {string}
|
|
5404
|
+
* @memberof Subscription
|
|
5405
|
+
*/
|
|
5406
|
+
'oculusSku'?: string;
|
|
5407
|
+
/**
|
|
5408
|
+
*
|
|
5409
|
+
* @type {string}
|
|
5410
|
+
* @memberof Subscription
|
|
5411
|
+
*/
|
|
5412
|
+
'googleProductId'?: string;
|
|
5413
|
+
/**
|
|
5414
|
+
*
|
|
5415
|
+
* @type {string}
|
|
5416
|
+
* @memberof Subscription
|
|
5417
|
+
*/
|
|
5418
|
+
'googlePlanId'?: string;
|
|
5419
|
+
/**
|
|
5420
|
+
*
|
|
5421
|
+
* @type {string}
|
|
5422
|
+
* @memberof Subscription
|
|
5423
|
+
*/
|
|
5424
|
+
'picoSku'?: string;
|
|
5124
5425
|
/**
|
|
5125
5426
|
*
|
|
5126
5427
|
* @type {number}
|
|
@@ -5188,6 +5489,18 @@ export interface Transaction {
|
|
|
5188
5489
|
* @memberof Transaction
|
|
5189
5490
|
*/
|
|
5190
5491
|
'id': string;
|
|
5492
|
+
/**
|
|
5493
|
+
* 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.
|
|
5494
|
+
* @type {string}
|
|
5495
|
+
* @memberof Transaction
|
|
5496
|
+
*/
|
|
5497
|
+
'userId'?: string;
|
|
5498
|
+
/**
|
|
5499
|
+
*
|
|
5500
|
+
* @type {string}
|
|
5501
|
+
* @memberof Transaction
|
|
5502
|
+
*/
|
|
5503
|
+
'userDisplayName'?: string;
|
|
5191
5504
|
/**
|
|
5192
5505
|
*
|
|
5193
5506
|
* @type {TransactionStatus}
|
|
@@ -5236,6 +5549,18 @@ export interface Transaction {
|
|
|
5236
5549
|
* @memberof Transaction
|
|
5237
5550
|
*/
|
|
5238
5551
|
'error': string;
|
|
5552
|
+
/**
|
|
5553
|
+
*
|
|
5554
|
+
* @type {boolean}
|
|
5555
|
+
* @memberof Transaction
|
|
5556
|
+
*/
|
|
5557
|
+
'isGift'?: boolean;
|
|
5558
|
+
/**
|
|
5559
|
+
*
|
|
5560
|
+
* @type {boolean}
|
|
5561
|
+
* @memberof Transaction
|
|
5562
|
+
*/
|
|
5563
|
+
'isTokens'?: boolean;
|
|
5239
5564
|
}
|
|
5240
5565
|
/**
|
|
5241
5566
|
*
|
|
@@ -5534,6 +5859,12 @@ export interface UnityPackage {
|
|
|
5534
5859
|
* @memberof UnityPackage
|
|
5535
5860
|
*/
|
|
5536
5861
|
'scanStatus'?: string;
|
|
5862
|
+
/**
|
|
5863
|
+
*
|
|
5864
|
+
* @type {string}
|
|
5865
|
+
* @memberof UnityPackage
|
|
5866
|
+
*/
|
|
5867
|
+
'variant'?: string;
|
|
5537
5868
|
}
|
|
5538
5869
|
/**
|
|
5539
5870
|
*
|
|
@@ -5872,6 +6203,18 @@ export interface UpdateUserRequest {
|
|
|
5872
6203
|
* @memberof UpdateUserRequest
|
|
5873
6204
|
*/
|
|
5874
6205
|
'bioLinks'?: Array<string>;
|
|
6206
|
+
/**
|
|
6207
|
+
*
|
|
6208
|
+
* @type {string}
|
|
6209
|
+
* @memberof UpdateUserRequest
|
|
6210
|
+
*/
|
|
6211
|
+
'pronouns'?: string;
|
|
6212
|
+
/**
|
|
6213
|
+
*
|
|
6214
|
+
* @type {boolean}
|
|
6215
|
+
* @memberof UpdateUserRequest
|
|
6216
|
+
*/
|
|
6217
|
+
'isBoopingEnabled'?: boolean;
|
|
5875
6218
|
/**
|
|
5876
6219
|
* MUST be a valid VRChat /file/ url.
|
|
5877
6220
|
* @type {string}
|
|
@@ -5976,6 +6319,12 @@ export interface User {
|
|
|
5976
6319
|
* @memberof User
|
|
5977
6320
|
*/
|
|
5978
6321
|
'allowAvatarCopying': boolean;
|
|
6322
|
+
/**
|
|
6323
|
+
*
|
|
6324
|
+
* @type {Array<Badge>}
|
|
6325
|
+
* @memberof User
|
|
6326
|
+
*/
|
|
6327
|
+
'badges'?: Array<Badge>;
|
|
5979
6328
|
/**
|
|
5980
6329
|
*
|
|
5981
6330
|
* @type {string}
|
|
@@ -6000,6 +6349,12 @@ export interface User {
|
|
|
6000
6349
|
* @memberof User
|
|
6001
6350
|
*/
|
|
6002
6351
|
'currentAvatarThumbnailImageUrl': string;
|
|
6352
|
+
/**
|
|
6353
|
+
*
|
|
6354
|
+
* @type {Array<string>}
|
|
6355
|
+
* @memberof User
|
|
6356
|
+
*/
|
|
6357
|
+
'currentAvatarTags': Array<string>;
|
|
6003
6358
|
/**
|
|
6004
6359
|
*
|
|
6005
6360
|
* @type {string}
|
|
@@ -6084,6 +6439,18 @@ export interface User {
|
|
|
6084
6439
|
* @memberof User
|
|
6085
6440
|
*/
|
|
6086
6441
|
'profilePicOverride': string;
|
|
6442
|
+
/**
|
|
6443
|
+
*
|
|
6444
|
+
* @type {string}
|
|
6445
|
+
* @memberof User
|
|
6446
|
+
*/
|
|
6447
|
+
'profilePicOverrideThumbnail': string;
|
|
6448
|
+
/**
|
|
6449
|
+
*
|
|
6450
|
+
* @type {string}
|
|
6451
|
+
* @memberof User
|
|
6452
|
+
*/
|
|
6453
|
+
'pronouns': string;
|
|
6087
6454
|
/**
|
|
6088
6455
|
*
|
|
6089
6456
|
* @type {UserState}
|
|
@@ -6550,7 +6917,7 @@ export interface WorldPublishStatus {
|
|
|
6550
6917
|
* @type {boolean}
|
|
6551
6918
|
* @memberof WorldPublishStatus
|
|
6552
6919
|
*/
|
|
6553
|
-
'
|
|
6920
|
+
'canPublish': boolean;
|
|
6554
6921
|
}
|
|
6555
6922
|
|
|
6556
6923
|
/**
|
|
@@ -11497,10 +11864,11 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
11497
11864
|
* @param {string} groupId Must be a valid group ID.
|
|
11498
11865
|
* @param {number} [n] The number of objects to return.
|
|
11499
11866
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
11867
|
+
* @param {boolean} [blocked] See blocked join requests
|
|
11500
11868
|
* @param {*} [options] Override http request option.
|
|
11501
11869
|
* @throws {RequiredError}
|
|
11502
11870
|
*/
|
|
11503
|
-
getGroupRequests: async (groupId: string, n?: number, offset?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
11871
|
+
getGroupRequests: async (groupId: string, n?: number, offset?: number, blocked?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
11504
11872
|
// verify required parameter 'groupId' is not null or undefined
|
|
11505
11873
|
assertParamExists('getGroupRequests', 'groupId', groupId)
|
|
11506
11874
|
const localVarPath = `/groups/{groupId}/requests`
|
|
@@ -11526,6 +11894,10 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
11526
11894
|
localVarQueryParameter['offset'] = offset;
|
|
11527
11895
|
}
|
|
11528
11896
|
|
|
11897
|
+
if (blocked !== undefined) {
|
|
11898
|
+
localVarQueryParameter['blocked'] = blocked;
|
|
11899
|
+
}
|
|
11900
|
+
|
|
11529
11901
|
|
|
11530
11902
|
|
|
11531
11903
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -12438,11 +12810,12 @@ export const GroupsApiFp = function(configuration?: Configuration) {
|
|
|
12438
12810
|
* @param {string} groupId Must be a valid group ID.
|
|
12439
12811
|
* @param {number} [n] The number of objects to return.
|
|
12440
12812
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
12813
|
+
* @param {boolean} [blocked] See blocked join requests
|
|
12441
12814
|
* @param {*} [options] Override http request option.
|
|
12442
12815
|
* @throws {RequiredError}
|
|
12443
12816
|
*/
|
|
12444
|
-
async getGroupRequests(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>> {
|
|
12445
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getGroupRequests(groupId, n, offset, options);
|
|
12817
|
+
async getGroupRequests(groupId: string, n?: number, offset?: number, blocked?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GroupMember>>> {
|
|
12818
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getGroupRequests(groupId, n, offset, blocked, options);
|
|
12446
12819
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
12447
12820
|
},
|
|
12448
12821
|
/**
|
|
@@ -12937,11 +13310,12 @@ export const GroupsApiFactory = function (configuration?: Configuration, basePat
|
|
|
12937
13310
|
* @param {string} groupId Must be a valid group ID.
|
|
12938
13311
|
* @param {number} [n] The number of objects to return.
|
|
12939
13312
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
13313
|
+
* @param {boolean} [blocked] See blocked join requests
|
|
12940
13314
|
* @param {*} [options] Override http request option.
|
|
12941
13315
|
* @throws {RequiredError}
|
|
12942
13316
|
*/
|
|
12943
|
-
getGroupRequests(groupId: string, n?: number, offset?: number, options?: any): AxiosPromise<Array<GroupMember>> {
|
|
12944
|
-
return localVarFp.getGroupRequests(groupId, n, offset, options).then((request) => request(axios, basePath));
|
|
13317
|
+
getGroupRequests(groupId: string, n?: number, offset?: number, blocked?: boolean, options?: any): AxiosPromise<Array<GroupMember>> {
|
|
13318
|
+
return localVarFp.getGroupRequests(groupId, n, offset, blocked, options).then((request) => request(axios, basePath));
|
|
12945
13319
|
},
|
|
12946
13320
|
/**
|
|
12947
13321
|
* Returns a Group Role by ID.
|
|
@@ -13478,12 +13852,13 @@ export class GroupsApi extends BaseAPI {
|
|
|
13478
13852
|
* @param {string} groupId Must be a valid group ID.
|
|
13479
13853
|
* @param {number} [n] The number of objects to return.
|
|
13480
13854
|
* @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
|
|
13855
|
+
* @param {boolean} [blocked] See blocked join requests
|
|
13481
13856
|
* @param {*} [options] Override http request option.
|
|
13482
13857
|
* @throws {RequiredError}
|
|
13483
13858
|
* @memberof GroupsApi
|
|
13484
13859
|
*/
|
|
13485
|
-
public getGroupRequests(groupId: string, n?: number, offset?: number, options?: AxiosRequestConfig) {
|
|
13486
|
-
return GroupsApiFp(this.configuration).getGroupRequests(groupId, n, offset, options).then((request) => request(this.axios, this.basePath));
|
|
13860
|
+
public getGroupRequests(groupId: string, n?: number, offset?: number, blocked?: boolean, options?: AxiosRequestConfig) {
|
|
13861
|
+
return GroupsApiFp(this.configuration).getGroupRequests(groupId, n, offset, blocked, options).then((request) => request(this.axios, this.basePath));
|
|
13487
13862
|
}
|
|
13488
13863
|
|
|
13489
13864
|
/**
|
|
@@ -16723,7 +17098,7 @@ export const UsersApiFp = function(configuration?: Configuration) {
|
|
|
16723
17098
|
* @param {*} [options] Override http request option.
|
|
16724
17099
|
* @throws {RequiredError}
|
|
16725
17100
|
*/
|
|
16726
|
-
async getUserGroups(userId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
17101
|
+
async getUserGroups(userId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LimitedUserGroups>>> {
|
|
16727
17102
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getUserGroups(userId, options);
|
|
16728
17103
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
16729
17104
|
},
|
|
@@ -16812,7 +17187,7 @@ export const UsersApiFactory = function (configuration?: Configuration, basePath
|
|
|
16812
17187
|
* @param {*} [options] Override http request option.
|
|
16813
17188
|
* @throws {RequiredError}
|
|
16814
17189
|
*/
|
|
16815
|
-
getUserGroups(userId: string, options?: any): AxiosPromise<Array<
|
|
17190
|
+
getUserGroups(userId: string, options?: any): AxiosPromise<Array<LimitedUserGroups>> {
|
|
16816
17191
|
return localVarFp.getUserGroups(userId, options).then((request) => request(axios, basePath));
|
|
16817
17192
|
},
|
|
16818
17193
|
/**
|