vrchat 1.18.9 → 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/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.18.9
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
  */
@@ -2047,38 +2275,11 @@ export interface CreateGroupRoleRequest {
2047
2275
  'isSelfAssignable'?: boolean;
2048
2276
  /**
2049
2277
  *
2050
- * @type {Array<string>}
2278
+ * @type {Array<GroupPermissions>}
2051
2279
  * @memberof CreateGroupRoleRequest
2052
2280
  */
2053
- 'permissions'?: Array<CreateGroupRoleRequestPermissionsEnum>;
2281
+ 'permissions'?: Array<GroupPermissions>;
2054
2282
  }
2055
- export declare const CreateGroupRoleRequestPermissionsEnum: {
2056
- readonly group_all: "\\*";
2057
- readonly group_announcement_manage: "group-announcement-manage";
2058
- readonly group_audit_view: "group-audit-view";
2059
- readonly group_bans_manage: "group-bans-manage";
2060
- readonly group_data_manage: "group-data-manage";
2061
- readonly group_default_role_manage: "group-default-role-manage";
2062
- readonly group_galleries_manage: "group-galleries-manage";
2063
- readonly group_instance_age_gated_create: "group-instance-age-gated-create";
2064
- readonly group_instance_join: "group-instance-join";
2065
- readonly group_instance_manage: "group-instance-manage";
2066
- readonly group_instance_moderate: "group-instance-moderate";
2067
- readonly group_instance_open_create: "group-instance-open-create";
2068
- readonly group_instance_plus_create: "group-instance-plus-create";
2069
- readonly group_instance_plus_portal: "group-instance-plus-portal";
2070
- readonly group_instance_plus_portal_unlocked: "group-instance-plus-portal-unlocked";
2071
- readonly group_instance_public_create: "group-instance-public-create";
2072
- readonly group_instance_queue_priority: "group-instance-queue-priority";
2073
- readonly group_instance_restricted_create: "group-instance-restricted-create";
2074
- readonly group_invites_manage: "group-invites-manage";
2075
- readonly group_members_manage: "group-members-manage";
2076
- readonly group_members_remove: "group-members-remove";
2077
- readonly group_members_viewall: "group-members-viewall";
2078
- readonly group_roles_assign: "group-roles-assign";
2079
- readonly group_roles_manage: "group-roles-manage";
2080
- };
2081
- export type CreateGroupRoleRequestPermissionsEnum = typeof CreateGroupRoleRequestPermissionsEnum[keyof typeof CreateGroupRoleRequestPermissionsEnum];
2082
2283
  /**
2083
2284
  *
2084
2285
  * @export
@@ -2286,7 +2487,7 @@ export interface CurrentUser {
2286
2487
  */
2287
2488
  'ageVerificationStatus': AgeVerificationStatus;
2288
2489
  /**
2289
- *
2490
+ * `true` if, user is age verified (not 18+).
2290
2491
  * @type {boolean}
2291
2492
  * @memberof CurrentUser
2292
2493
  */
@@ -2556,6 +2757,12 @@ export interface CurrentUser {
2556
2757
  * @memberof CurrentUser
2557
2758
  */
2558
2759
  'presence'?: CurrentUserPresence;
2760
+ /**
2761
+ *
2762
+ * @type {Array<CurrentUserPlatformHistoryInner>}
2763
+ * @memberof CurrentUser
2764
+ */
2765
+ 'platform_history'?: Array<CurrentUserPlatformHistoryInner>;
2559
2766
  /**
2560
2767
  *
2561
2768
  * @type {string}
@@ -2672,6 +2879,31 @@ export interface CurrentUser {
2672
2879
  */
2673
2880
  'username'?: string;
2674
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
+ }
2675
2907
  /**
2676
2908
  *
2677
2909
  * @export
@@ -4733,38 +4965,11 @@ export interface GroupMyMember {
4733
4965
  'mRoleIds'?: Array<string>;
4734
4966
  /**
4735
4967
  *
4736
- * @type {Array<string>}
4968
+ * @type {Array<GroupPermissions>}
4737
4969
  * @memberof GroupMyMember
4738
4970
  */
4739
- 'permissions'?: Array<GroupMyMemberPermissionsEnum>;
4971
+ 'permissions'?: Array<GroupPermissions>;
4740
4972
  }
4741
- export declare const GroupMyMemberPermissionsEnum: {
4742
- readonly group_all: "\\*";
4743
- readonly group_announcement_manage: "group-announcement-manage";
4744
- readonly group_audit_view: "group-audit-view";
4745
- readonly group_bans_manage: "group-bans-manage";
4746
- readonly group_data_manage: "group-data-manage";
4747
- readonly group_default_role_manage: "group-default-role-manage";
4748
- readonly group_galleries_manage: "group-galleries-manage";
4749
- readonly group_instance_age_gated_create: "group-instance-age-gated-create";
4750
- readonly group_instance_join: "group-instance-join";
4751
- readonly group_instance_manage: "group-instance-manage";
4752
- readonly group_instance_moderate: "group-instance-moderate";
4753
- readonly group_instance_open_create: "group-instance-open-create";
4754
- readonly group_instance_plus_create: "group-instance-plus-create";
4755
- readonly group_instance_plus_portal: "group-instance-plus-portal";
4756
- readonly group_instance_plus_portal_unlocked: "group-instance-plus-portal-unlocked";
4757
- readonly group_instance_public_create: "group-instance-public-create";
4758
- readonly group_instance_queue_priority: "group-instance-queue-priority";
4759
- readonly group_instance_restricted_create: "group-instance-restricted-create";
4760
- readonly group_invites_manage: "group-invites-manage";
4761
- readonly group_members_manage: "group-members-manage";
4762
- readonly group_members_remove: "group-members-remove";
4763
- readonly group_members_viewall: "group-members-viewall";
4764
- readonly group_roles_assign: "group-roles-assign";
4765
- readonly group_roles_manage: "group-roles-manage";
4766
- };
4767
- export type GroupMyMemberPermissionsEnum = typeof GroupMyMemberPermissionsEnum[keyof typeof GroupMyMemberPermissionsEnum];
4768
4973
  /**
4769
4974
  * A permission that can be granted to a role in a group.
4770
4975
  * @export
@@ -4802,6 +5007,38 @@ export interface GroupPermission {
4802
5007
  */
4803
5008
  'allowedToAdd'?: boolean;
4804
5009
  }
5010
+ /**
5011
+ *
5012
+ * @export
5013
+ * @enum {string}
5014
+ */
5015
+ export declare const GroupPermissions: {
5016
+ readonly group_all: "*";
5017
+ readonly group_announcement_manage: "group-announcement-manage";
5018
+ readonly group_audit_view: "group-audit-view";
5019
+ readonly group_bans_manage: "group-bans-manage";
5020
+ readonly group_data_manage: "group-data-manage";
5021
+ readonly group_default_role_manage: "group-default-role-manage";
5022
+ readonly group_galleries_manage: "group-galleries-manage";
5023
+ readonly group_instance_age_gated_create: "group-instance-age-gated-create";
5024
+ readonly group_instance_join: "group-instance-join";
5025
+ readonly group_instance_manage: "group-instance-manage";
5026
+ readonly group_instance_moderate: "group-instance-moderate";
5027
+ readonly group_instance_open_create: "group-instance-open-create";
5028
+ readonly group_instance_plus_create: "group-instance-plus-create";
5029
+ readonly group_instance_plus_portal: "group-instance-plus-portal";
5030
+ readonly group_instance_plus_portal_unlocked: "group-instance-plus-portal-unlocked";
5031
+ readonly group_instance_public_create: "group-instance-public-create";
5032
+ readonly group_instance_queue_priority: "group-instance-queue-priority";
5033
+ readonly group_instance_restricted_create: "group-instance-restricted-create";
5034
+ readonly group_invites_manage: "group-invites-manage";
5035
+ readonly group_members_manage: "group-members-manage";
5036
+ readonly group_members_remove: "group-members-remove";
5037
+ readonly group_members_viewall: "group-members-viewall";
5038
+ readonly group_roles_assign: "group-roles-assign";
5039
+ readonly group_roles_manage: "group-roles-manage";
5040
+ };
5041
+ export type GroupPermissions = typeof GroupPermissions[keyof typeof GroupPermissions];
4805
5042
  /**
4806
5043
  *
4807
5044
  * @export
@@ -4939,10 +5176,10 @@ export interface GroupRole {
4939
5176
  'isSelfAssignable'?: boolean;
4940
5177
  /**
4941
5178
  *
4942
- * @type {Array<string>}
5179
+ * @type {Array<GroupPermissions>}
4943
5180
  * @memberof GroupRole
4944
5181
  */
4945
- 'permissions'?: Array<GroupRolePermissionsEnum>;
5182
+ 'permissions'?: Array<GroupPermissions>;
4946
5183
  /**
4947
5184
  *
4948
5185
  * @type {boolean}
@@ -4980,33 +5217,6 @@ export interface GroupRole {
4980
5217
  */
4981
5218
  'updatedAt'?: string;
4982
5219
  }
4983
- export declare const GroupRolePermissionsEnum: {
4984
- readonly group_all: "\\*";
4985
- readonly group_announcement_manage: "group-announcement-manage";
4986
- readonly group_audit_view: "group-audit-view";
4987
- readonly group_bans_manage: "group-bans-manage";
4988
- readonly group_data_manage: "group-data-manage";
4989
- readonly group_default_role_manage: "group-default-role-manage";
4990
- readonly group_galleries_manage: "group-galleries-manage";
4991
- readonly group_instance_age_gated_create: "group-instance-age-gated-create";
4992
- readonly group_instance_join: "group-instance-join";
4993
- readonly group_instance_manage: "group-instance-manage";
4994
- readonly group_instance_moderate: "group-instance-moderate";
4995
- readonly group_instance_open_create: "group-instance-open-create";
4996
- readonly group_instance_plus_create: "group-instance-plus-create";
4997
- readonly group_instance_plus_portal: "group-instance-plus-portal";
4998
- readonly group_instance_plus_portal_unlocked: "group-instance-plus-portal-unlocked";
4999
- readonly group_instance_public_create: "group-instance-public-create";
5000
- readonly group_instance_queue_priority: "group-instance-queue-priority";
5001
- readonly group_instance_restricted_create: "group-instance-restricted-create";
5002
- readonly group_invites_manage: "group-invites-manage";
5003
- readonly group_members_manage: "group-members-manage";
5004
- readonly group_members_remove: "group-members-remove";
5005
- readonly group_members_viewall: "group-members-viewall";
5006
- readonly group_roles_assign: "group-roles-assign";
5007
- readonly group_roles_manage: "group-roles-manage";
5008
- };
5009
- export type GroupRolePermissionsEnum = typeof GroupRolePermissionsEnum[keyof typeof GroupRolePermissionsEnum];
5010
5220
  /**
5011
5221
  *
5012
5222
  * @export
@@ -6694,12 +6904,6 @@ export interface PastDisplayName {
6694
6904
  * @interface PerformanceLimiterInfo
6695
6905
  */
6696
6906
  export interface PerformanceLimiterInfo {
6697
- /**
6698
- *
6699
- * @type {boolean}
6700
- * @memberof PerformanceLimiterInfo
6701
- */
6702
- 'allowed': boolean;
6703
6907
  /**
6704
6908
  * Maximum amount of seats. -1 means no limit.
6705
6909
  * @type {number}
@@ -6793,7 +6997,7 @@ export interface PlatformBuildInfo {
6793
6997
  * @type {string}
6794
6998
  * @memberof PlatformBuildInfo
6795
6999
  */
6796
- 'redirectionAddress': string;
7000
+ 'redirectionAddress'?: string;
6797
7001
  }
6798
7002
  /**
6799
7003
  *
@@ -8397,10 +8601,10 @@ export interface UpdateGroupRoleRequest {
8397
8601
  'isSelfAssignable'?: boolean;
8398
8602
  /**
8399
8603
  *
8400
- * @type {Array<string>}
8604
+ * @type {Array<GroupPermissions>}
8401
8605
  * @memberof UpdateGroupRoleRequest
8402
8606
  */
8403
- 'permissions'?: Array<UpdateGroupRoleRequestPermissionsEnum>;
8607
+ 'permissions'?: Array<GroupPermissions>;
8404
8608
  /**
8405
8609
  *
8406
8610
  * @type {number}
@@ -8408,33 +8612,6 @@ export interface UpdateGroupRoleRequest {
8408
8612
  */
8409
8613
  'order'?: number;
8410
8614
  }
8411
- export declare const UpdateGroupRoleRequestPermissionsEnum: {
8412
- readonly group_all: "\\*";
8413
- readonly group_announcement_manage: "group-announcement-manage";
8414
- readonly group_audit_view: "group-audit-view";
8415
- readonly group_bans_manage: "group-bans-manage";
8416
- readonly group_data_manage: "group-data-manage";
8417
- readonly group_default_role_manage: "group-default-role-manage";
8418
- readonly group_galleries_manage: "group-galleries-manage";
8419
- readonly group_instance_age_gated_create: "group-instance-age-gated-create";
8420
- readonly group_instance_join: "group-instance-join";
8421
- readonly group_instance_manage: "group-instance-manage";
8422
- readonly group_instance_moderate: "group-instance-moderate";
8423
- readonly group_instance_open_create: "group-instance-open-create";
8424
- readonly group_instance_plus_create: "group-instance-plus-create";
8425
- readonly group_instance_plus_portal: "group-instance-plus-portal";
8426
- readonly group_instance_plus_portal_unlocked: "group-instance-plus-portal-unlocked";
8427
- readonly group_instance_public_create: "group-instance-public-create";
8428
- readonly group_instance_queue_priority: "group-instance-queue-priority";
8429
- readonly group_instance_restricted_create: "group-instance-restricted-create";
8430
- readonly group_invites_manage: "group-invites-manage";
8431
- readonly group_members_manage: "group-members-manage";
8432
- readonly group_members_remove: "group-members-remove";
8433
- readonly group_members_viewall: "group-members-viewall";
8434
- readonly group_roles_assign: "group-roles-assign";
8435
- readonly group_roles_manage: "group-roles-manage";
8436
- };
8437
- export type UpdateGroupRoleRequestPermissionsEnum = typeof UpdateGroupRoleRequestPermissionsEnum[keyof typeof UpdateGroupRoleRequestPermissionsEnum];
8438
8615
  /**
8439
8616
  *
8440
8617
  * @export
@@ -8637,6 +8814,12 @@ export interface User {
8637
8814
  * @memberof User
8638
8815
  */
8639
8816
  'ageVerificationStatus': AgeVerificationStatus;
8817
+ /**
8818
+ * `true` if, user is age verified (not 18+).
8819
+ * @type {boolean}
8820
+ * @memberof User
8821
+ */
8822
+ 'ageVerified': boolean;
8640
8823
  /**
8641
8824
  *
8642
8825
  * @type {boolean}