vrchat 1.19.0 → 1.19.1

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.19.0
6
+ * The version of the OpenAPI document: 1.19.1
7
7
  * Contact: vrchatapi.lpv0t@aries.fyi
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -39,12 +39,24 @@ export interface APIConfig {
39
39
  * @memberof APIConfig
40
40
  */
41
41
  'VoiceEnableReceiverLimiting': boolean;
42
+ /**
43
+ *
44
+ * @type {APIConfigAccessLogsUrls}
45
+ * @memberof APIConfig
46
+ */
47
+ 'accessLogsUrls': APIConfigAccessLogsUrls;
42
48
  /**
43
49
  * VRChat\'s office address
44
50
  * @type {string}
45
51
  * @memberof APIConfig
46
52
  */
47
53
  'address': string;
54
+ /**
55
+ *
56
+ * @type {boolean}
57
+ * @memberof APIConfig
58
+ */
59
+ 'ageVerificationInviteVisible': boolean;
48
60
  /**
49
61
  *
50
62
  * @type {boolean}
@@ -57,6 +69,18 @@ export interface APIConfig {
57
69
  * @memberof APIConfig
58
70
  */
59
71
  'ageVerificationStatusVisible': boolean;
72
+ /**
73
+ * Max retries for avatar analysis requests
74
+ * @type {number}
75
+ * @memberof APIConfig
76
+ */
77
+ 'analysisMaxRetries': number;
78
+ /**
79
+ * Interval between retries for avatar analysis requests
80
+ * @type {number}
81
+ * @memberof APIConfig
82
+ */
83
+ 'analysisRetryInterval': number;
60
84
  /**
61
85
  * Public Announcements
62
86
  * @type {Set<APIConfigAnnouncement>}
@@ -342,6 +366,12 @@ export interface APIConfig {
342
366
  * @memberof APIConfig
343
367
  */
344
368
  'disableFrontendBuilds': boolean;
369
+ /**
370
+ * Toggles if gift drops should be disabled
371
+ * @type {boolean}
372
+ * @memberof APIConfig
373
+ */
374
+ 'disableGiftDrops': boolean;
345
375
  /**
346
376
  * Unknown
347
377
  * @type {boolean}
@@ -433,6 +463,12 @@ export interface APIConfig {
433
463
  * @memberof APIConfig
434
464
  */
435
465
  'forceUseLatestWorld': boolean;
466
+ /**
467
+ * Display type of gifts
468
+ * @type {string}
469
+ * @memberof APIConfig
470
+ */
471
+ 'giftDisplayType': string;
436
472
  /**
437
473
  * Unknown
438
474
  * @type {string}
@@ -524,17 +560,23 @@ export interface APIConfig {
524
560
  */
525
561
  'reportFormUrl': string;
526
562
  /**
527
- * Options for reporting content
528
- * @type {object}
563
+ *
564
+ * @type {APIConfigReportOptions}
529
565
  * @memberof APIConfig
530
566
  */
531
- 'reportOptions': object;
567
+ 'reportOptions': APIConfigReportOptions;
532
568
  /**
533
569
  *
534
570
  * @type {APIConfigReportReasons}
535
571
  * @memberof APIConfig
536
572
  */
537
573
  'reportReasons': APIConfigReportReasons;
574
+ /**
575
+ *
576
+ * @type {boolean}
577
+ * @memberof APIConfig
578
+ */
579
+ 'requireAgeVerificationBetaTag': boolean;
538
580
  /**
539
581
  * Link to the developer FAQ
540
582
  * @type {string}
@@ -686,6 +728,37 @@ export interface APIConfig {
686
728
  */
687
729
  'websocketReconnectMaxDelay': number;
688
730
  }
731
+ /**
732
+ *
733
+ * @export
734
+ * @interface APIConfigAccessLogsUrls
735
+ */
736
+ export interface APIConfigAccessLogsUrls {
737
+ /**
738
+ *
739
+ * @type {string}
740
+ * @memberof APIConfigAccessLogsUrls
741
+ */
742
+ 'Default'?: string;
743
+ /**
744
+ *
745
+ * @type {string}
746
+ * @memberof APIConfigAccessLogsUrls
747
+ */
748
+ 'Pico'?: string;
749
+ /**
750
+ *
751
+ * @type {string}
752
+ * @memberof APIConfigAccessLogsUrls
753
+ */
754
+ 'Quest'?: string;
755
+ /**
756
+ *
757
+ * @type {string}
758
+ * @memberof APIConfigAccessLogsUrls
759
+ */
760
+ 'XRElite'?: string;
761
+ }
689
762
  /**
690
763
  * Public Announcement
691
764
  * @export
@@ -1224,6 +1297,161 @@ export interface APIConfigReportCategories {
1224
1297
  */
1225
1298
  'worldstore': ReportCategory;
1226
1299
  }
1300
+ /**
1301
+ * Options for reporting content
1302
+ * @export
1303
+ * @interface APIConfigReportOptions
1304
+ */
1305
+ export interface APIConfigReportOptions {
1306
+ /**
1307
+ *
1308
+ * @type {APIConfigReportOptionsAvatar}
1309
+ * @memberof APIConfigReportOptions
1310
+ */
1311
+ 'avatar'?: APIConfigReportOptionsAvatar;
1312
+ /**
1313
+ *
1314
+ * @type {APIConfigReportOptionsGroup}
1315
+ * @memberof APIConfigReportOptions
1316
+ */
1317
+ 'group'?: APIConfigReportOptionsGroup;
1318
+ /**
1319
+ *
1320
+ * @type {APIConfigReportOptionsUser}
1321
+ * @memberof APIConfigReportOptions
1322
+ */
1323
+ 'user'?: APIConfigReportOptionsUser;
1324
+ /**
1325
+ *
1326
+ * @type {APIConfigReportOptionsWorld}
1327
+ * @memberof APIConfigReportOptions
1328
+ */
1329
+ 'world'?: APIConfigReportOptionsWorld;
1330
+ }
1331
+ /**
1332
+ *
1333
+ * @export
1334
+ * @interface APIConfigReportOptionsAvatar
1335
+ */
1336
+ export interface APIConfigReportOptionsAvatar {
1337
+ /**
1338
+ *
1339
+ * @type {Array<string>}
1340
+ * @memberof APIConfigReportOptionsAvatar
1341
+ */
1342
+ 'avatar'?: Array<string>;
1343
+ /**
1344
+ *
1345
+ * @type {Array<string>}
1346
+ * @memberof APIConfigReportOptionsAvatar
1347
+ */
1348
+ 'warnings'?: Array<string>;
1349
+ }
1350
+ /**
1351
+ *
1352
+ * @export
1353
+ * @interface APIConfigReportOptionsGroup
1354
+ */
1355
+ export interface APIConfigReportOptionsGroup {
1356
+ /**
1357
+ *
1358
+ * @type {Array<string>}
1359
+ * @memberof APIConfigReportOptionsGroup
1360
+ */
1361
+ 'groupstore'?: Array<string>;
1362
+ /**
1363
+ *
1364
+ * @type {Array<string>}
1365
+ * @memberof APIConfigReportOptionsGroup
1366
+ */
1367
+ 'image'?: Array<string>;
1368
+ /**
1369
+ *
1370
+ * @type {Array<string>}
1371
+ * @memberof APIConfigReportOptionsGroup
1372
+ */
1373
+ 'text'?: Array<string>;
1374
+ }
1375
+ /**
1376
+ *
1377
+ * @export
1378
+ * @interface APIConfigReportOptionsUser
1379
+ */
1380
+ export interface APIConfigReportOptionsUser {
1381
+ /**
1382
+ *
1383
+ * @type {Array<string>}
1384
+ * @memberof APIConfigReportOptionsUser
1385
+ */
1386
+ 'behavior'?: Array<string>;
1387
+ /**
1388
+ *
1389
+ * @type {Array<string>}
1390
+ * @memberof APIConfigReportOptionsUser
1391
+ */
1392
+ 'chat'?: Array<string>;
1393
+ /**
1394
+ *
1395
+ * @type {Array<string>}
1396
+ * @memberof APIConfigReportOptionsUser
1397
+ */
1398
+ 'emoji'?: Array<string>;
1399
+ /**
1400
+ *
1401
+ * @type {Array<string>}
1402
+ * @memberof APIConfigReportOptionsUser
1403
+ */
1404
+ 'image'?: Array<string>;
1405
+ /**
1406
+ *
1407
+ * @type {Array<string>}
1408
+ * @memberof APIConfigReportOptionsUser
1409
+ */
1410
+ 'sticker'?: Array<string>;
1411
+ /**
1412
+ *
1413
+ * @type {Array<string>}
1414
+ * @memberof APIConfigReportOptionsUser
1415
+ */
1416
+ 'text'?: Array<string>;
1417
+ }
1418
+ /**
1419
+ *
1420
+ * @export
1421
+ * @interface APIConfigReportOptionsWorld
1422
+ */
1423
+ export interface APIConfigReportOptionsWorld {
1424
+ /**
1425
+ *
1426
+ * @type {Array<string>}
1427
+ * @memberof APIConfigReportOptionsWorld
1428
+ */
1429
+ 'environment'?: Array<string>;
1430
+ /**
1431
+ *
1432
+ * @type {Array<string>}
1433
+ * @memberof APIConfigReportOptionsWorld
1434
+ */
1435
+ 'text'?: Array<string>;
1436
+ /**
1437
+ *
1438
+ * @type {Array<string>}
1439
+ * @memberof APIConfigReportOptionsWorld
1440
+ */
1441
+ 'warnings'?: Array<string>;
1442
+ /**
1443
+ *
1444
+ * @type {Array<string>}
1445
+ * @memberof APIConfigReportOptionsWorld
1446
+ */
1447
+ 'worldimage'?: Array<string>;
1448
+ /**
1449
+ *
1450
+ * @type {Array<string>}
1451
+ * @memberof APIConfigReportOptionsWorld
1452
+ */
1453
+ 'worldstore'?: Array<string>;
1454
+ }
1227
1455
  /**
1228
1456
  * Reasons available for reporting users
1229
1457
  * @export
@@ -1434,7 +1662,7 @@ export interface AddGroupGalleryImageRequest {
1434
1662
  'fileId': string;
1435
1663
  }
1436
1664
  /**
1437
- *
1665
+ * `verified` is obsolete. User who have verified and are 18+ can switch to `plus18` status.
1438
1666
  * @export
1439
1667
  * @enum {string}
1440
1668
  */
@@ -2271,7 +2499,7 @@ export interface CurrentUser {
2271
2499
  */
2272
2500
  'ageVerificationStatus': AgeVerificationStatus;
2273
2501
  /**
2274
- *
2502
+ * `true` if, user is age verified (not 18+).
2275
2503
  * @type {boolean}
2276
2504
  * @memberof CurrentUser
2277
2505
  */
@@ -2541,6 +2769,12 @@ export interface CurrentUser {
2541
2769
  * @memberof CurrentUser
2542
2770
  */
2543
2771
  'presence'?: CurrentUserPresence;
2772
+ /**
2773
+ *
2774
+ * @type {Array<CurrentUserPlatformHistoryInner>}
2775
+ * @memberof CurrentUser
2776
+ */
2777
+ 'platform_history'?: Array<CurrentUserPlatformHistoryInner>;
2544
2778
  /**
2545
2779
  *
2546
2780
  * @type {string}
@@ -2657,6 +2891,31 @@ export interface CurrentUser {
2657
2891
  */
2658
2892
  'username'?: string;
2659
2893
  }
2894
+ /**
2895
+ *
2896
+ * @export
2897
+ * @interface CurrentUserPlatformHistoryInner
2898
+ */
2899
+ export interface CurrentUserPlatformHistoryInner {
2900
+ /**
2901
+ *
2902
+ * @type {boolean}
2903
+ * @memberof CurrentUserPlatformHistoryInner
2904
+ */
2905
+ 'isMobile'?: boolean;
2906
+ /**
2907
+ *
2908
+ * @type {string}
2909
+ * @memberof CurrentUserPlatformHistoryInner
2910
+ */
2911
+ 'platform'?: string | null;
2912
+ /**
2913
+ *
2914
+ * @type {string}
2915
+ * @memberof CurrentUserPlatformHistoryInner
2916
+ */
2917
+ 'recorded'?: string;
2918
+ }
2660
2919
  /**
2661
2920
  *
2662
2921
  * @export
@@ -6755,12 +7014,6 @@ export interface PastDisplayName {
6755
7014
  * @interface PerformanceLimiterInfo
6756
7015
  */
6757
7016
  export interface PerformanceLimiterInfo {
6758
- /**
6759
- *
6760
- * @type {boolean}
6761
- * @memberof PerformanceLimiterInfo
6762
- */
6763
- 'allowed': boolean;
6764
7017
  /**
6765
7018
  * Maximum amount of seats. -1 means no limit.
6766
7019
  * @type {number}
@@ -6858,7 +7111,7 @@ export interface PlatformBuildInfo {
6858
7111
  * @type {string}
6859
7112
  * @memberof PlatformBuildInfo
6860
7113
  */
6861
- 'redirectionAddress': string;
7114
+ 'redirectionAddress'?: string;
6862
7115
  }
6863
7116
  /**
6864
7117
  *
@@ -8707,6 +8960,12 @@ export interface User {
8707
8960
  * @memberof User
8708
8961
  */
8709
8962
  'ageVerificationStatus': AgeVerificationStatus;
8963
+ /**
8964
+ * `true` if, user is age verified (not 18+).
8965
+ * @type {boolean}
8966
+ * @memberof User
8967
+ */
8968
+ 'ageVerified': boolean;
8710
8969
  /**
8711
8970
  *
8712
8971
  * @type {boolean}
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.19.0
6
+ * The version of the OpenAPI document: 1.19.1
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.19.0
6
+ * The version of the OpenAPI document: 1.19.1
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.19.0
6
+ * The version of the OpenAPI document: 1.19.1
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.19.0
4
+ * The version of the OpenAPI document: 1.19.1
5
5
  * Contact: vrchatapi.lpv0t@aries.fyi
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -29,12 +29,24 @@ export interface APIConfig {
29
29
  * @memberof APIConfig
30
30
  */
31
31
  'VoiceEnableReceiverLimiting': boolean;
32
+ /**
33
+ *
34
+ * @type {APIConfigAccessLogsUrls}
35
+ * @memberof APIConfig
36
+ */
37
+ 'accessLogsUrls': APIConfigAccessLogsUrls;
32
38
  /**
33
39
  * VRChat\'s office address
34
40
  * @type {string}
35
41
  * @memberof APIConfig
36
42
  */
37
43
  'address': string;
44
+ /**
45
+ *
46
+ * @type {boolean}
47
+ * @memberof APIConfig
48
+ */
49
+ 'ageVerificationInviteVisible': boolean;
38
50
  /**
39
51
  *
40
52
  * @type {boolean}
@@ -47,6 +59,18 @@ export interface APIConfig {
47
59
  * @memberof APIConfig
48
60
  */
49
61
  'ageVerificationStatusVisible': boolean;
62
+ /**
63
+ * Max retries for avatar analysis requests
64
+ * @type {number}
65
+ * @memberof APIConfig
66
+ */
67
+ 'analysisMaxRetries': number;
68
+ /**
69
+ * Interval between retries for avatar analysis requests
70
+ * @type {number}
71
+ * @memberof APIConfig
72
+ */
73
+ 'analysisRetryInterval': number;
50
74
  /**
51
75
  * Public Announcements
52
76
  * @type {Set<APIConfigAnnouncement>}
@@ -332,6 +356,12 @@ export interface APIConfig {
332
356
  * @memberof APIConfig
333
357
  */
334
358
  'disableFrontendBuilds': boolean;
359
+ /**
360
+ * Toggles if gift drops should be disabled
361
+ * @type {boolean}
362
+ * @memberof APIConfig
363
+ */
364
+ 'disableGiftDrops': boolean;
335
365
  /**
336
366
  * Unknown
337
367
  * @type {boolean}
@@ -423,6 +453,12 @@ export interface APIConfig {
423
453
  * @memberof APIConfig
424
454
  */
425
455
  'forceUseLatestWorld': boolean;
456
+ /**
457
+ * Display type of gifts
458
+ * @type {string}
459
+ * @memberof APIConfig
460
+ */
461
+ 'giftDisplayType': string;
426
462
  /**
427
463
  * Unknown
428
464
  * @type {string}
@@ -514,17 +550,23 @@ export interface APIConfig {
514
550
  */
515
551
  'reportFormUrl': string;
516
552
  /**
517
- * Options for reporting content
518
- * @type {object}
553
+ *
554
+ * @type {APIConfigReportOptions}
519
555
  * @memberof APIConfig
520
556
  */
521
- 'reportOptions': object;
557
+ 'reportOptions': APIConfigReportOptions;
522
558
  /**
523
559
  *
524
560
  * @type {APIConfigReportReasons}
525
561
  * @memberof APIConfig
526
562
  */
527
563
  'reportReasons': APIConfigReportReasons;
564
+ /**
565
+ *
566
+ * @type {boolean}
567
+ * @memberof APIConfig
568
+ */
569
+ 'requireAgeVerificationBetaTag': boolean;
528
570
  /**
529
571
  * Link to the developer FAQ
530
572
  * @type {string}
@@ -676,6 +718,37 @@ export interface APIConfig {
676
718
  */
677
719
  'websocketReconnectMaxDelay': number;
678
720
  }
721
+ /**
722
+ *
723
+ * @export
724
+ * @interface APIConfigAccessLogsUrls
725
+ */
726
+ export interface APIConfigAccessLogsUrls {
727
+ /**
728
+ *
729
+ * @type {string}
730
+ * @memberof APIConfigAccessLogsUrls
731
+ */
732
+ 'Default'?: string;
733
+ /**
734
+ *
735
+ * @type {string}
736
+ * @memberof APIConfigAccessLogsUrls
737
+ */
738
+ 'Pico'?: string;
739
+ /**
740
+ *
741
+ * @type {string}
742
+ * @memberof APIConfigAccessLogsUrls
743
+ */
744
+ 'Quest'?: string;
745
+ /**
746
+ *
747
+ * @type {string}
748
+ * @memberof APIConfigAccessLogsUrls
749
+ */
750
+ 'XRElite'?: string;
751
+ }
679
752
  /**
680
753
  * Public Announcement
681
754
  * @export
@@ -1216,6 +1289,161 @@ export interface APIConfigReportCategories {
1216
1289
  */
1217
1290
  'worldstore': ReportCategory;
1218
1291
  }
1292
+ /**
1293
+ * Options for reporting content
1294
+ * @export
1295
+ * @interface APIConfigReportOptions
1296
+ */
1297
+ export interface APIConfigReportOptions {
1298
+ /**
1299
+ *
1300
+ * @type {APIConfigReportOptionsAvatar}
1301
+ * @memberof APIConfigReportOptions
1302
+ */
1303
+ 'avatar'?: APIConfigReportOptionsAvatar;
1304
+ /**
1305
+ *
1306
+ * @type {APIConfigReportOptionsGroup}
1307
+ * @memberof APIConfigReportOptions
1308
+ */
1309
+ 'group'?: APIConfigReportOptionsGroup;
1310
+ /**
1311
+ *
1312
+ * @type {APIConfigReportOptionsUser}
1313
+ * @memberof APIConfigReportOptions
1314
+ */
1315
+ 'user'?: APIConfigReportOptionsUser;
1316
+ /**
1317
+ *
1318
+ * @type {APIConfigReportOptionsWorld}
1319
+ * @memberof APIConfigReportOptions
1320
+ */
1321
+ 'world'?: APIConfigReportOptionsWorld;
1322
+ }
1323
+ /**
1324
+ *
1325
+ * @export
1326
+ * @interface APIConfigReportOptionsAvatar
1327
+ */
1328
+ export interface APIConfigReportOptionsAvatar {
1329
+ /**
1330
+ *
1331
+ * @type {Array<string>}
1332
+ * @memberof APIConfigReportOptionsAvatar
1333
+ */
1334
+ 'avatar'?: Array<string>;
1335
+ /**
1336
+ *
1337
+ * @type {Array<string>}
1338
+ * @memberof APIConfigReportOptionsAvatar
1339
+ */
1340
+ 'warnings'?: Array<string>;
1341
+ }
1342
+ /**
1343
+ *
1344
+ * @export
1345
+ * @interface APIConfigReportOptionsGroup
1346
+ */
1347
+ export interface APIConfigReportOptionsGroup {
1348
+ /**
1349
+ *
1350
+ * @type {Array<string>}
1351
+ * @memberof APIConfigReportOptionsGroup
1352
+ */
1353
+ 'groupstore'?: Array<string>;
1354
+ /**
1355
+ *
1356
+ * @type {Array<string>}
1357
+ * @memberof APIConfigReportOptionsGroup
1358
+ */
1359
+ 'image'?: Array<string>;
1360
+ /**
1361
+ *
1362
+ * @type {Array<string>}
1363
+ * @memberof APIConfigReportOptionsGroup
1364
+ */
1365
+ 'text'?: Array<string>;
1366
+ }
1367
+ /**
1368
+ *
1369
+ * @export
1370
+ * @interface APIConfigReportOptionsUser
1371
+ */
1372
+ export interface APIConfigReportOptionsUser {
1373
+ /**
1374
+ *
1375
+ * @type {Array<string>}
1376
+ * @memberof APIConfigReportOptionsUser
1377
+ */
1378
+ 'behavior'?: Array<string>;
1379
+ /**
1380
+ *
1381
+ * @type {Array<string>}
1382
+ * @memberof APIConfigReportOptionsUser
1383
+ */
1384
+ 'chat'?: Array<string>;
1385
+ /**
1386
+ *
1387
+ * @type {Array<string>}
1388
+ * @memberof APIConfigReportOptionsUser
1389
+ */
1390
+ 'emoji'?: Array<string>;
1391
+ /**
1392
+ *
1393
+ * @type {Array<string>}
1394
+ * @memberof APIConfigReportOptionsUser
1395
+ */
1396
+ 'image'?: Array<string>;
1397
+ /**
1398
+ *
1399
+ * @type {Array<string>}
1400
+ * @memberof APIConfigReportOptionsUser
1401
+ */
1402
+ 'sticker'?: Array<string>;
1403
+ /**
1404
+ *
1405
+ * @type {Array<string>}
1406
+ * @memberof APIConfigReportOptionsUser
1407
+ */
1408
+ 'text'?: Array<string>;
1409
+ }
1410
+ /**
1411
+ *
1412
+ * @export
1413
+ * @interface APIConfigReportOptionsWorld
1414
+ */
1415
+ export interface APIConfigReportOptionsWorld {
1416
+ /**
1417
+ *
1418
+ * @type {Array<string>}
1419
+ * @memberof APIConfigReportOptionsWorld
1420
+ */
1421
+ 'environment'?: Array<string>;
1422
+ /**
1423
+ *
1424
+ * @type {Array<string>}
1425
+ * @memberof APIConfigReportOptionsWorld
1426
+ */
1427
+ 'text'?: Array<string>;
1428
+ /**
1429
+ *
1430
+ * @type {Array<string>}
1431
+ * @memberof APIConfigReportOptionsWorld
1432
+ */
1433
+ 'warnings'?: Array<string>;
1434
+ /**
1435
+ *
1436
+ * @type {Array<string>}
1437
+ * @memberof APIConfigReportOptionsWorld
1438
+ */
1439
+ 'worldimage'?: Array<string>;
1440
+ /**
1441
+ *
1442
+ * @type {Array<string>}
1443
+ * @memberof APIConfigReportOptionsWorld
1444
+ */
1445
+ 'worldstore'?: Array<string>;
1446
+ }
1219
1447
  /**
1220
1448
  * Reasons available for reporting users
1221
1449
  * @export
@@ -1426,7 +1654,7 @@ export interface AddGroupGalleryImageRequest {
1426
1654
  'fileId': string;
1427
1655
  }
1428
1656
  /**
1429
- *
1657
+ * `verified` is obsolete. User who have verified and are 18+ can switch to `plus18` status.
1430
1658
  * @export
1431
1659
  * @enum {string}
1432
1660
  */
@@ -2259,7 +2487,7 @@ export interface CurrentUser {
2259
2487
  */
2260
2488
  'ageVerificationStatus': AgeVerificationStatus;
2261
2489
  /**
2262
- *
2490
+ * `true` if, user is age verified (not 18+).
2263
2491
  * @type {boolean}
2264
2492
  * @memberof CurrentUser
2265
2493
  */
@@ -2529,6 +2757,12 @@ export interface CurrentUser {
2529
2757
  * @memberof CurrentUser
2530
2758
  */
2531
2759
  'presence'?: CurrentUserPresence;
2760
+ /**
2761
+ *
2762
+ * @type {Array<CurrentUserPlatformHistoryInner>}
2763
+ * @memberof CurrentUser
2764
+ */
2765
+ 'platform_history'?: Array<CurrentUserPlatformHistoryInner>;
2532
2766
  /**
2533
2767
  *
2534
2768
  * @type {string}
@@ -2645,6 +2879,31 @@ export interface CurrentUser {
2645
2879
  */
2646
2880
  'username'?: string;
2647
2881
  }
2882
+ /**
2883
+ *
2884
+ * @export
2885
+ * @interface CurrentUserPlatformHistoryInner
2886
+ */
2887
+ export interface CurrentUserPlatformHistoryInner {
2888
+ /**
2889
+ *
2890
+ * @type {boolean}
2891
+ * @memberof CurrentUserPlatformHistoryInner
2892
+ */
2893
+ 'isMobile'?: boolean;
2894
+ /**
2895
+ *
2896
+ * @type {string}
2897
+ * @memberof CurrentUserPlatformHistoryInner
2898
+ */
2899
+ 'platform'?: string | null;
2900
+ /**
2901
+ *
2902
+ * @type {string}
2903
+ * @memberof CurrentUserPlatformHistoryInner
2904
+ */
2905
+ 'recorded'?: string;
2906
+ }
2648
2907
  /**
2649
2908
  *
2650
2909
  * @export
@@ -6645,12 +6904,6 @@ export interface PastDisplayName {
6645
6904
  * @interface PerformanceLimiterInfo
6646
6905
  */
6647
6906
  export interface PerformanceLimiterInfo {
6648
- /**
6649
- *
6650
- * @type {boolean}
6651
- * @memberof PerformanceLimiterInfo
6652
- */
6653
- 'allowed': boolean;
6654
6907
  /**
6655
6908
  * Maximum amount of seats. -1 means no limit.
6656
6909
  * @type {number}
@@ -6744,7 +6997,7 @@ export interface PlatformBuildInfo {
6744
6997
  * @type {string}
6745
6998
  * @memberof PlatformBuildInfo
6746
6999
  */
6747
- 'redirectionAddress': string;
7000
+ 'redirectionAddress'?: string;
6748
7001
  }
6749
7002
  /**
6750
7003
  *
@@ -8561,6 +8814,12 @@ export interface User {
8561
8814
  * @memberof User
8562
8815
  */
8563
8816
  'ageVerificationStatus': AgeVerificationStatus;
8817
+ /**
8818
+ * `true` if, user is age verified (not 18+).
8819
+ * @type {boolean}
8820
+ * @memberof User
8821
+ */
8822
+ 'ageVerified': boolean;
8564
8823
  /**
8565
8824
  *
8566
8825
  * @type {boolean}
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.19.0
7
+ * The version of the OpenAPI document: 1.19.1
8
8
  * Contact: vrchatapi.lpv0t@aries.fyi
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -89,7 +89,7 @@ var tough_cookie_1 = require("tough-cookie");
89
89
  axios_1.default.defaults.jar = new tough_cookie_1.CookieJar();
90
90
  axios_1.default.defaults.withCredentials = true;
91
91
  /**
92
- *
92
+ * `verified` is obsolete. User who have verified and are 18+ can switch to `plus18` status.
93
93
  * @export
94
94
  * @enum {string}
95
95
  */
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.19.0
4
+ * The version of the OpenAPI document: 1.19.1
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.19.0
7
+ * The version of the OpenAPI document: 1.19.1
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.19.0
4
+ * The version of the OpenAPI document: 1.19.1
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.19.0
7
+ * The version of the OpenAPI document: 1.19.1
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.19.0
4
+ * The version of the OpenAPI document: 1.19.1
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.19.0
7
+ * The version of the OpenAPI document: 1.19.1
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.19.0
4
+ * The version of the OpenAPI document: 1.19.1
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.19.0
7
+ * The version of the OpenAPI document: 1.19.1
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.19.0
6
+ * The version of the OpenAPI document: 1.19.1
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.19.0",
3
+ "version": "1.19.1",
4
4
  "description": "🟡🔵 VRChat API Library for JavaScript and TypeScript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {