vrchat 2.20.6 → 2.20.7-nightly.16
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/README.md +8 -0
- package/dist/{client-BEQ2VP--.d.mts → client-CdDWWwRC.d.mts} +770 -45
- package/dist/{client-BEQ2VP--.d.ts → client-CdDWWwRC.d.ts} +770 -45
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +203 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +203 -5
- package/dist/index.mjs.map +1 -1
- package/dist/types.d.mts +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/websocket.d.mts +1 -1
- package/dist/websocket.d.ts +1 -1
- package/package.json +1 -1
|
@@ -460,7 +460,7 @@ type Tag = string;
|
|
|
460
460
|
/**
|
|
461
461
|
* Platform
|
|
462
462
|
*
|
|
463
|
-
* This
|
|
463
|
+
* This is normally `android`, `ios`, `standalonewindows`, `web`, or the empty value ``, but also supposedly can be any random Unity verison such as `2019.2.4-801-Release` or `2019.2.2-772-Release` or even `unknownplatform`.
|
|
464
464
|
*/
|
|
465
465
|
type Platform = string;
|
|
466
466
|
/**
|
|
@@ -583,7 +583,7 @@ type PermissionId = string;
|
|
|
583
583
|
*/
|
|
584
584
|
type Permission = {
|
|
585
585
|
data?: {
|
|
586
|
-
|
|
586
|
+
max?: number;
|
|
587
587
|
};
|
|
588
588
|
description?: string;
|
|
589
589
|
displayName?: string;
|
|
@@ -918,6 +918,7 @@ type CurrentUser = {
|
|
|
918
918
|
* @deprecated
|
|
919
919
|
*/
|
|
920
920
|
username?: string;
|
|
921
|
+
usesGeneratedPassword: boolean;
|
|
921
922
|
viveId?: string;
|
|
922
923
|
};
|
|
923
924
|
/**
|
|
@@ -1362,6 +1363,18 @@ type ServiceStatus = {
|
|
|
1362
1363
|
type: string;
|
|
1363
1364
|
updated_at: Date;
|
|
1364
1365
|
};
|
|
1366
|
+
/**
|
|
1367
|
+
* CalendarEventAccess
|
|
1368
|
+
*
|
|
1369
|
+
* Who the event is for
|
|
1370
|
+
*/
|
|
1371
|
+
type CalendarEventAccess = 'group' | 'public';
|
|
1372
|
+
/**
|
|
1373
|
+
* CalendarEventCategory
|
|
1374
|
+
*
|
|
1375
|
+
* The activity intended to take place at an event
|
|
1376
|
+
*/
|
|
1377
|
+
type CalendarEventCategory = 'arts' | 'avatars' | 'dance' | 'education' | 'exploration' | 'film_media' | 'gaming' | 'hangout' | 'music' | 'other' | 'performance' | 'roleplaying' | 'wellness';
|
|
1365
1378
|
/**
|
|
1366
1379
|
* CalendarID
|
|
1367
1380
|
*/
|
|
@@ -1370,6 +1383,16 @@ type CalendarId = string;
|
|
|
1370
1383
|
* FileID
|
|
1371
1384
|
*/
|
|
1372
1385
|
type FileId = string;
|
|
1386
|
+
/**
|
|
1387
|
+
* LanguageCode
|
|
1388
|
+
*
|
|
1389
|
+
* Represents a spoken language, signed language, or the absence of linguistic content. Valid language codes and display names are the keys and values respectively in the `$.constants.LANGUAGE.SPOKEN_LANGUAGE_OPTIONS` object from `GET /config`.
|
|
1390
|
+
*/
|
|
1391
|
+
type LanguageCode = string;
|
|
1392
|
+
/**
|
|
1393
|
+
* CalendarEventPlatform
|
|
1394
|
+
*/
|
|
1395
|
+
type CalendarEventPlatform = 'android' | 'ios' | 'standalonewindows';
|
|
1373
1396
|
/**
|
|
1374
1397
|
* GroupRoleID
|
|
1375
1398
|
*/
|
|
@@ -1380,12 +1403,13 @@ type GroupRoleId = string;
|
|
|
1380
1403
|
* An event scheduled on a group's calendar
|
|
1381
1404
|
*/
|
|
1382
1405
|
type CalendarEvent = {
|
|
1383
|
-
accessType:
|
|
1384
|
-
category:
|
|
1406
|
+
accessType: CalendarEventAccess;
|
|
1407
|
+
category: CalendarEventCategory;
|
|
1385
1408
|
closeInstanceAfterEndMinutes?: number;
|
|
1386
1409
|
createdAt?: Date;
|
|
1387
1410
|
deletedAt?: Date | null;
|
|
1388
1411
|
description: string;
|
|
1412
|
+
durationInMs: number;
|
|
1389
1413
|
endsAt: Date;
|
|
1390
1414
|
featured?: boolean;
|
|
1391
1415
|
guestEarlyJoinMinutes?: number;
|
|
@@ -1396,21 +1420,18 @@ type CalendarEvent = {
|
|
|
1396
1420
|
interestedUserCount?: number;
|
|
1397
1421
|
isDraft?: boolean;
|
|
1398
1422
|
/**
|
|
1399
|
-
*
|
|
1423
|
+
* Languages that might be spoken at this event
|
|
1400
1424
|
*/
|
|
1401
|
-
languages?: Array<
|
|
1425
|
+
languages?: Array<LanguageCode>;
|
|
1402
1426
|
ownerId?: GroupId;
|
|
1427
|
+
platforms?: Array<CalendarEventPlatform>;
|
|
1403
1428
|
/**
|
|
1404
|
-
*
|
|
1405
|
-
*/
|
|
1406
|
-
platforms?: Array<string>;
|
|
1407
|
-
/**
|
|
1408
|
-
*
|
|
1429
|
+
* Group roles that may join this event
|
|
1409
1430
|
*/
|
|
1410
1431
|
roleIds?: Array<GroupRoleId> | null;
|
|
1411
1432
|
startsAt: Date;
|
|
1412
1433
|
/**
|
|
1413
|
-
*
|
|
1434
|
+
* Custom tags for this event
|
|
1414
1435
|
*/
|
|
1415
1436
|
tags?: Array<Tag>;
|
|
1416
1437
|
title: string;
|
|
@@ -1489,8 +1510,8 @@ type CalendarEventDiscovery = {
|
|
|
1489
1510
|
* CreateCalendarEventRequest
|
|
1490
1511
|
*/
|
|
1491
1512
|
type CreateCalendarEventRequest = {
|
|
1492
|
-
accessType:
|
|
1493
|
-
category:
|
|
1513
|
+
accessType: CalendarEventAccess;
|
|
1514
|
+
category: CalendarEventCategory;
|
|
1494
1515
|
closeInstanceAfterEndMinutes?: number;
|
|
1495
1516
|
description: string;
|
|
1496
1517
|
/**
|
|
@@ -1502,10 +1523,10 @@ type CreateCalendarEventRequest = {
|
|
|
1502
1523
|
hostEarlyJoinMinutes?: number;
|
|
1503
1524
|
imageId?: FileId;
|
|
1504
1525
|
isDraft?: boolean;
|
|
1505
|
-
languages?: Array<
|
|
1506
|
-
parentId?:
|
|
1507
|
-
platforms?: Array<
|
|
1508
|
-
roleIds?: Array<
|
|
1526
|
+
languages?: Array<LanguageCode>;
|
|
1527
|
+
parentId?: CalendarId;
|
|
1528
|
+
platforms?: Array<CalendarEventPlatform>;
|
|
1529
|
+
roleIds?: Array<GroupRoleId>;
|
|
1509
1530
|
/**
|
|
1510
1531
|
* Send notification to group members.
|
|
1511
1532
|
*/
|
|
@@ -2467,8 +2488,8 @@ type ProductType = 'inventory' | 'listing' | 'role' | 'udon';
|
|
|
2467
2488
|
* Product
|
|
2468
2489
|
*/
|
|
2469
2490
|
type Product = {
|
|
2470
|
-
archived
|
|
2471
|
-
created
|
|
2491
|
+
archived?: boolean;
|
|
2492
|
+
created?: Date;
|
|
2472
2493
|
description: string;
|
|
2473
2494
|
displayName: string;
|
|
2474
2495
|
groupAccess?: boolean;
|
|
@@ -2482,7 +2503,7 @@ type Product = {
|
|
|
2482
2503
|
sellerDisplayName: string;
|
|
2483
2504
|
sellerId: string;
|
|
2484
2505
|
tags: Array<Tag>;
|
|
2485
|
-
updated
|
|
2506
|
+
updated?: Date | null;
|
|
2486
2507
|
useForSubscriberList?: boolean;
|
|
2487
2508
|
};
|
|
2488
2509
|
/**
|
|
@@ -2533,9 +2554,13 @@ type ProductListing = {
|
|
|
2533
2554
|
refundable: boolean;
|
|
2534
2555
|
sellerDisplayName: string;
|
|
2535
2556
|
sellerId: string;
|
|
2557
|
+
soldByVrc?: boolean;
|
|
2536
2558
|
stackable: boolean;
|
|
2537
2559
|
storeIds: Array<string>;
|
|
2560
|
+
subtitle?: string;
|
|
2538
2561
|
tags?: Array<Tag>;
|
|
2562
|
+
vrcPlusDiscountPrice?: number;
|
|
2563
|
+
whenToExpire?: Date | null;
|
|
2539
2564
|
};
|
|
2540
2565
|
/**
|
|
2541
2566
|
* StoreShelfID
|
|
@@ -2545,13 +2570,15 @@ type StoreShelfId = string;
|
|
|
2545
2570
|
* StoreShelf
|
|
2546
2571
|
*/
|
|
2547
2572
|
type StoreShelf = {
|
|
2573
|
+
highlightListing?: ProductListing;
|
|
2574
|
+
highlightListingId?: ProductId;
|
|
2548
2575
|
id: StoreShelfId;
|
|
2549
2576
|
listingIds: Array<ProductId>;
|
|
2550
2577
|
listings?: Array<ProductListing>;
|
|
2551
2578
|
shelfDescription: string;
|
|
2552
2579
|
shelfLayout: string;
|
|
2553
2580
|
shelfTitle: string;
|
|
2554
|
-
updatedAt:
|
|
2581
|
+
updatedAt: Date;
|
|
2555
2582
|
};
|
|
2556
2583
|
/**
|
|
2557
2584
|
* StoreType
|
|
@@ -2944,6 +2971,7 @@ type Group = {
|
|
|
2944
2971
|
ageVerificationBetaCode?: string;
|
|
2945
2972
|
ageVerificationBetaSlots?: number;
|
|
2946
2973
|
ageVerificationSlotsAvailable?: boolean;
|
|
2974
|
+
allowGroupJoinPrompt?: boolean;
|
|
2947
2975
|
badges?: Array<string>;
|
|
2948
2976
|
bannerId?: string | null;
|
|
2949
2977
|
bannerUrl?: string | null;
|
|
@@ -3350,6 +3378,8 @@ type CreateGroupInviteRequest = {
|
|
|
3350
3378
|
type GroupSearchSort = 'joinedAt:asc' | 'joinedAt:desc';
|
|
3351
3379
|
/**
|
|
3352
3380
|
* GroupLimitedMember
|
|
3381
|
+
*
|
|
3382
|
+
* May be null when attempting to retrieve group membership for a user who is not part of the group
|
|
3353
3383
|
*/
|
|
3354
3384
|
type GroupLimitedMember = {
|
|
3355
3385
|
/**
|
|
@@ -3380,7 +3410,7 @@ type GroupLimitedMember = {
|
|
|
3380
3410
|
roleIds?: Array<GroupRoleId>;
|
|
3381
3411
|
userId?: UserId;
|
|
3382
3412
|
visibility?: string;
|
|
3383
|
-
};
|
|
3413
|
+
} | null;
|
|
3384
3414
|
/**
|
|
3385
3415
|
* GroupUserVisibility
|
|
3386
3416
|
*/
|
|
@@ -3686,10 +3716,11 @@ type LimitedUserInstance = {
|
|
|
3686
3716
|
* * `private` field is only present if InstanceType is `private` aka "Invite" or "Invite+", and is instance creator.
|
|
3687
3717
|
*/
|
|
3688
3718
|
type Instance = {
|
|
3689
|
-
active
|
|
3719
|
+
active?: boolean;
|
|
3690
3720
|
ageGate?: boolean | null;
|
|
3691
|
-
|
|
3692
|
-
|
|
3721
|
+
calendarEntryId?: string | null;
|
|
3722
|
+
canRequestInvite?: boolean;
|
|
3723
|
+
capacity?: number;
|
|
3693
3724
|
/**
|
|
3694
3725
|
* Always returns "unknown".
|
|
3695
3726
|
*
|
|
@@ -3698,6 +3729,7 @@ type Instance = {
|
|
|
3698
3729
|
clientNumber: string;
|
|
3699
3730
|
closedAt?: Date | null;
|
|
3700
3731
|
contentSettings?: InstanceContentSettings;
|
|
3732
|
+
creatorId?: UserId;
|
|
3701
3733
|
displayName?: string | null;
|
|
3702
3734
|
friends?: UserId;
|
|
3703
3735
|
full: boolean;
|
|
@@ -3708,7 +3740,7 @@ type Instance = {
|
|
|
3708
3740
|
hidden?: UserId;
|
|
3709
3741
|
id: InstanceId;
|
|
3710
3742
|
instanceId: InstanceId;
|
|
3711
|
-
instancePersistenceEnabled?:
|
|
3743
|
+
instancePersistenceEnabled?: boolean | null;
|
|
3712
3744
|
location: LocationId;
|
|
3713
3745
|
n_users: number;
|
|
3714
3746
|
name: string;
|
|
@@ -3904,7 +3936,11 @@ type InventoryTemplate = {
|
|
|
3904
3936
|
authorId: UserId;
|
|
3905
3937
|
collections: Array<string>;
|
|
3906
3938
|
created_at: Date;
|
|
3939
|
+
defaultAttributes: {
|
|
3940
|
+
[key: string]: unknown;
|
|
3941
|
+
};
|
|
3907
3942
|
description: string;
|
|
3943
|
+
equipSlots: Array<string>;
|
|
3908
3944
|
flags: Array<string>;
|
|
3909
3945
|
id: InventoryTemplateId;
|
|
3910
3946
|
imageUrl: string;
|
|
@@ -3916,6 +3952,7 @@ type InventoryTemplate = {
|
|
|
3916
3952
|
status: string;
|
|
3917
3953
|
tags: Array<Tag>;
|
|
3918
3954
|
updated_at: Date;
|
|
3955
|
+
validateUserAttributes: boolean;
|
|
3919
3956
|
};
|
|
3920
3957
|
/**
|
|
3921
3958
|
* UpdateInventoryItemRequest
|
|
@@ -4058,6 +4095,200 @@ type InviteMessage = {
|
|
|
4058
4095
|
type UpdateInviteMessageRequest = {
|
|
4059
4096
|
message: string;
|
|
4060
4097
|
};
|
|
4098
|
+
/**
|
|
4099
|
+
* ModerationReportID
|
|
4100
|
+
*/
|
|
4101
|
+
type ModerationReportId = string;
|
|
4102
|
+
/**
|
|
4103
|
+
* ModerationReport
|
|
4104
|
+
*/
|
|
4105
|
+
type ModerationReport = {
|
|
4106
|
+
/**
|
|
4107
|
+
* Valid values are the keys of the object `$.reportOptions[type]` from `GET /config`. Descriptions of these are found at `$.reportCategories[type]`.
|
|
4108
|
+
*/
|
|
4109
|
+
category: string;
|
|
4110
|
+
contentId: string;
|
|
4111
|
+
contentName: string;
|
|
4112
|
+
contentThumbnailImageUrl: string | null;
|
|
4113
|
+
/**
|
|
4114
|
+
* The subjective reason for the report
|
|
4115
|
+
*/
|
|
4116
|
+
description: string;
|
|
4117
|
+
evidenceRequired: boolean;
|
|
4118
|
+
id: ModerationReportId;
|
|
4119
|
+
/**
|
|
4120
|
+
* Valid values are the strings in the array `$.reportOptions[type][category]` from `GET /config`. Descriptions of these are found at `$.reportReasons[type]`.
|
|
4121
|
+
*/
|
|
4122
|
+
reason: string;
|
|
4123
|
+
supportRequired: boolean;
|
|
4124
|
+
/**
|
|
4125
|
+
* Valid values are the keys of the object `$.reportOptions` from `GET /config`.
|
|
4126
|
+
*/
|
|
4127
|
+
type: string;
|
|
4128
|
+
};
|
|
4129
|
+
/**
|
|
4130
|
+
* PaginatedModerationReportList
|
|
4131
|
+
*/
|
|
4132
|
+
type PaginatedModerationReportList = {
|
|
4133
|
+
/**
|
|
4134
|
+
* Whether there are more results after this page.
|
|
4135
|
+
*/
|
|
4136
|
+
hasNext?: boolean;
|
|
4137
|
+
/**
|
|
4138
|
+
* The list of moderation reports.
|
|
4139
|
+
*/
|
|
4140
|
+
results?: Array<ModerationReport>;
|
|
4141
|
+
/**
|
|
4142
|
+
* The total number of results that the query would return if there were no pagination.
|
|
4143
|
+
*/
|
|
4144
|
+
totalCount?: number;
|
|
4145
|
+
};
|
|
4146
|
+
/**
|
|
4147
|
+
* ContentFilter
|
|
4148
|
+
*
|
|
4149
|
+
* Flags for content filtering
|
|
4150
|
+
*/
|
|
4151
|
+
type ContentFilter = 'content_adult' | 'content_gore' | 'content_horror' | 'content_sex' | 'content_violence';
|
|
4152
|
+
/**
|
|
4153
|
+
* SubmitModerationReportRequest
|
|
4154
|
+
*
|
|
4155
|
+
* Pseudocode steps to build a request with a valid combination:
|
|
4156
|
+
* request = {}
|
|
4157
|
+
* config = json.parse(GET /config)
|
|
4158
|
+
* valid_types = config.reportOptions.keys
|
|
4159
|
+
* request.type = select_one(valid_types, (id) => { text: id, tooltip: "" })
|
|
4160
|
+
* valid_categories = config.reportOptions[request.type].keys
|
|
4161
|
+
* request.category = select_one(valid_categories, (id) => config.reportCategories[id])
|
|
4162
|
+
* valid_reasons = config.reportOptions[request.type][request.category]
|
|
4163
|
+
* request.reason = select_one(valid_reasons, (id) => config.reportReasons[id])
|
|
4164
|
+
* request.contentId = relevant_id_of_type(request.type)
|
|
4165
|
+
* request.details = relevant_details_based_on_type(request.type)
|
|
4166
|
+
* request.description = input_string()
|
|
4167
|
+
*/
|
|
4168
|
+
type SubmitModerationReportRequest = {
|
|
4169
|
+
/**
|
|
4170
|
+
* Valid values are the keys of the object `$.reportOptions[type]` from `GET /config`. Descriptions of these are found at `$.reportCategories[type]`.
|
|
4171
|
+
*/
|
|
4172
|
+
category: string;
|
|
4173
|
+
/**
|
|
4174
|
+
* The id of the user, group, world, avatar, inventory item, print, etc. being reported.
|
|
4175
|
+
*/
|
|
4176
|
+
contentId: string;
|
|
4177
|
+
/**
|
|
4178
|
+
* The subjective reason for the report
|
|
4179
|
+
*/
|
|
4180
|
+
description?: string;
|
|
4181
|
+
/**
|
|
4182
|
+
* Relevant details specific to the type of the report.
|
|
4183
|
+
* `fileId` is for the image file attached to an inventory item, such as an emoji.
|
|
4184
|
+
* `holderId` is for the user who owns an inventory item, such as a emoji.
|
|
4185
|
+
*/
|
|
4186
|
+
details?: {
|
|
4187
|
+
fileId?: FileId;
|
|
4188
|
+
holderId?: UserId;
|
|
4189
|
+
/**
|
|
4190
|
+
* Relevant detail for reports about image content, such as emoji.
|
|
4191
|
+
*/
|
|
4192
|
+
imageType?: string;
|
|
4193
|
+
/**
|
|
4194
|
+
* Relevant detail for reports taking place from within an instance.
|
|
4195
|
+
*/
|
|
4196
|
+
instanceAgeGated?: boolean;
|
|
4197
|
+
/**
|
|
4198
|
+
* Relevant detail for reports taking place from within an instance.
|
|
4199
|
+
*/
|
|
4200
|
+
instanceType?: string;
|
|
4201
|
+
/**
|
|
4202
|
+
* Relevant detail for reports about content that might not be tagged properly.
|
|
4203
|
+
*/
|
|
4204
|
+
suggestedWarnings?: Array<ContentFilter>;
|
|
4205
|
+
/**
|
|
4206
|
+
* Relevant detail for reports involving another user in the same instance world.
|
|
4207
|
+
*/
|
|
4208
|
+
userInSameInstance?: boolean;
|
|
4209
|
+
};
|
|
4210
|
+
/**
|
|
4211
|
+
* Valid values are the strings in the array `$.reportOptions[type][category]` from `GET /config`. Descriptions of these are found at `$.reportReasons[type]`.
|
|
4212
|
+
*/
|
|
4213
|
+
reason: string;
|
|
4214
|
+
/**
|
|
4215
|
+
* Valid values are the keys of the object `$.reportOptions` from `GET /config`.
|
|
4216
|
+
*/
|
|
4217
|
+
type: string;
|
|
4218
|
+
};
|
|
4219
|
+
/**
|
|
4220
|
+
* NotificationV2Category
|
|
4221
|
+
*/
|
|
4222
|
+
type NotificationV2Category = string;
|
|
4223
|
+
/**
|
|
4224
|
+
* NotificationV2ResponseIcon
|
|
4225
|
+
*/
|
|
4226
|
+
type NotificationV2ResponseIcon = string;
|
|
4227
|
+
/**
|
|
4228
|
+
* NotificationV2ResponseType
|
|
4229
|
+
*/
|
|
4230
|
+
type NotificationV2ResponseType = string;
|
|
4231
|
+
/**
|
|
4232
|
+
* NotificationV2Response
|
|
4233
|
+
*/
|
|
4234
|
+
type NotificationV2Response = {
|
|
4235
|
+
data: string;
|
|
4236
|
+
icon: NotificationV2ResponseIcon;
|
|
4237
|
+
text: string;
|
|
4238
|
+
textKey: string | null;
|
|
4239
|
+
type: NotificationV2ResponseType;
|
|
4240
|
+
};
|
|
4241
|
+
/**
|
|
4242
|
+
* NotificationV2Type
|
|
4243
|
+
*/
|
|
4244
|
+
type NotificationV2Type = 'avatarreview.failure' | 'avatarreview.success' | 'badge.earned' | 'boop' | 'economy.alert' | 'economy.received.gift' | 'event.announcement' | 'group.announcement' | 'group.informative' | 'group.invite' | 'group.joinRequest' | 'group.post' | 'invite.instance.contentGated' | 'moderation.contentrestriction' | 'moderation.notice' | 'moderation.report.closed' | 'moderation.warning.group' | 'promo.redeem' | 'text.adventure' | 'vrcplus.gift';
|
|
4245
|
+
/**
|
|
4246
|
+
* NotificationV2
|
|
4247
|
+
*/
|
|
4248
|
+
type NotificationV2 = {
|
|
4249
|
+
canDelete: boolean;
|
|
4250
|
+
category: NotificationV2Category;
|
|
4251
|
+
createdAt: Date;
|
|
4252
|
+
data: {
|
|
4253
|
+
[key: string]: unknown;
|
|
4254
|
+
};
|
|
4255
|
+
expiresAt: Date;
|
|
4256
|
+
expiryAfterSeen: number | null;
|
|
4257
|
+
id: string;
|
|
4258
|
+
ignoreDND: boolean;
|
|
4259
|
+
imageUrl: string | null;
|
|
4260
|
+
isSystem: boolean;
|
|
4261
|
+
link: string;
|
|
4262
|
+
linkText: string;
|
|
4263
|
+
linkTextKey: string | null;
|
|
4264
|
+
message: string;
|
|
4265
|
+
messageKey?: string | null;
|
|
4266
|
+
receiverUserId: UserId;
|
|
4267
|
+
relatedNotificationsId: string | null;
|
|
4268
|
+
requireSeen: boolean;
|
|
4269
|
+
responses: Array<NotificationV2Response>;
|
|
4270
|
+
seen: boolean;
|
|
4271
|
+
senderUserId: UserId;
|
|
4272
|
+
senderUsername: string | null;
|
|
4273
|
+
title: string;
|
|
4274
|
+
titleKey: string | null;
|
|
4275
|
+
type: NotificationV2Type;
|
|
4276
|
+
updatedAt: Date;
|
|
4277
|
+
version: number;
|
|
4278
|
+
};
|
|
4279
|
+
/**
|
|
4280
|
+
* ReplyNotificationV2Request
|
|
4281
|
+
*/
|
|
4282
|
+
type ReplyNotificationV2Request = {
|
|
4283
|
+
[key: string]: unknown;
|
|
4284
|
+
};
|
|
4285
|
+
/**
|
|
4286
|
+
* RespondNotificationV2Request
|
|
4287
|
+
*/
|
|
4288
|
+
type RespondNotificationV2Request = {
|
|
4289
|
+
responseData?: string;
|
|
4290
|
+
responseType: NotificationV2ResponseType;
|
|
4291
|
+
};
|
|
4061
4292
|
/**
|
|
4062
4293
|
* PrintID
|
|
4063
4294
|
*/
|
|
@@ -4173,7 +4404,7 @@ type EconomyAccount = {
|
|
|
4173
4404
|
canSpend: boolean;
|
|
4174
4405
|
source: string;
|
|
4175
4406
|
userId: UserId;
|
|
4176
|
-
};
|
|
4407
|
+
} | null;
|
|
4177
4408
|
/**
|
|
4178
4409
|
* FriendStatus
|
|
4179
4410
|
*/
|
|
@@ -4329,13 +4560,17 @@ type UpdateUserRequest = {
|
|
|
4329
4560
|
/**
|
|
4330
4561
|
* These tags begin with `content_` and control content gating
|
|
4331
4562
|
*/
|
|
4332
|
-
contentFilters?: Array<
|
|
4563
|
+
contentFilters?: Array<ContentFilter>;
|
|
4333
4564
|
currentPassword?: string;
|
|
4334
4565
|
/**
|
|
4335
4566
|
* MUST specify currentPassword as well to change display name
|
|
4336
4567
|
*/
|
|
4337
4568
|
displayName?: string;
|
|
4338
4569
|
email?: string;
|
|
4570
|
+
/**
|
|
4571
|
+
* Opt out of the Mutuals feature
|
|
4572
|
+
*/
|
|
4573
|
+
hasSharedConnectionsOptOut?: boolean;
|
|
4339
4574
|
isBoopingEnabled?: boolean;
|
|
4340
4575
|
/**
|
|
4341
4576
|
* MUST specify currentPassword as well to change password
|
|
@@ -4569,38 +4804,38 @@ type FavoritedWorld = {
|
|
|
4569
4804
|
authorId?: UserId;
|
|
4570
4805
|
authorName: string;
|
|
4571
4806
|
capacity: number;
|
|
4572
|
-
created_at
|
|
4807
|
+
created_at?: Date;
|
|
4573
4808
|
defaultContentSettings?: InstanceContentSettings;
|
|
4574
|
-
description
|
|
4809
|
+
description?: string;
|
|
4575
4810
|
favoriteGroup: string;
|
|
4576
4811
|
favoriteId: FavoriteId;
|
|
4577
|
-
favorites
|
|
4578
|
-
featured
|
|
4579
|
-
heat
|
|
4812
|
+
favorites?: number;
|
|
4813
|
+
featured?: boolean;
|
|
4814
|
+
heat?: number;
|
|
4580
4815
|
id: WorldId;
|
|
4581
4816
|
imageUrl: string;
|
|
4582
|
-
labsPublicationDate
|
|
4817
|
+
labsPublicationDate?: string;
|
|
4583
4818
|
name: string;
|
|
4584
4819
|
occupants: number;
|
|
4585
|
-
organization
|
|
4586
|
-
popularity
|
|
4820
|
+
organization?: string;
|
|
4821
|
+
popularity?: number;
|
|
4587
4822
|
previewYoutubeId?: string | null;
|
|
4588
|
-
publicationDate
|
|
4823
|
+
publicationDate?: string;
|
|
4589
4824
|
recommendedCapacity?: number;
|
|
4590
4825
|
releaseStatus: ReleaseStatus;
|
|
4591
4826
|
/**
|
|
4592
4827
|
*
|
|
4593
4828
|
*/
|
|
4594
|
-
tags
|
|
4829
|
+
tags?: Array<Tag>;
|
|
4595
4830
|
thumbnailImageUrl: string;
|
|
4596
4831
|
udonProducts?: Array<UdonProductId>;
|
|
4597
4832
|
/**
|
|
4598
4833
|
*
|
|
4599
4834
|
*/
|
|
4600
|
-
unityPackages
|
|
4601
|
-
updated_at
|
|
4602
|
-
urlList
|
|
4603
|
-
version
|
|
4835
|
+
unityPackages?: Array<UnityPackage>;
|
|
4836
|
+
updated_at?: Date;
|
|
4837
|
+
urlList?: Array<string>;
|
|
4838
|
+
version?: number;
|
|
4604
4839
|
visits?: number;
|
|
4605
4840
|
};
|
|
4606
4841
|
/**
|
|
@@ -5056,6 +5291,26 @@ type MessageType = InviteMessageType;
|
|
|
5056
5291
|
* The message slot to fetch of a given message type.
|
|
5057
5292
|
*/
|
|
5058
5293
|
type Slot = number;
|
|
5294
|
+
/**
|
|
5295
|
+
* Filter for moderation reports.
|
|
5296
|
+
*/
|
|
5297
|
+
type ModerationReportingUserId = UserId;
|
|
5298
|
+
/**
|
|
5299
|
+
* Filter for moderation reports. One of: `closed`...
|
|
5300
|
+
*/
|
|
5301
|
+
type ModerationReportStatus = string;
|
|
5302
|
+
/**
|
|
5303
|
+
* Filter for moderation reports. One of: `avatar`, `group`, `user`, `world`...
|
|
5304
|
+
*/
|
|
5305
|
+
type ModerationReportType = string;
|
|
5306
|
+
/**
|
|
5307
|
+
* The moderation report id.
|
|
5308
|
+
*/
|
|
5309
|
+
type ModerationReportId2 = ModerationReportId;
|
|
5310
|
+
/**
|
|
5311
|
+
* The maximum number of entries to get.
|
|
5312
|
+
*/
|
|
5313
|
+
type Limit = number;
|
|
5059
5314
|
/**
|
|
5060
5315
|
* Must be a valid permission ID.
|
|
5061
5316
|
*/
|
|
@@ -6717,10 +6972,18 @@ type CreateGroupCalendarEvent = {
|
|
|
6717
6972
|
url: '/calendar/{groupId}/event';
|
|
6718
6973
|
};
|
|
6719
6974
|
type CreateGroupCalendarEventErrors = {
|
|
6975
|
+
/**
|
|
6976
|
+
* Error response due to an invalid or illegal calendar request.
|
|
6977
|
+
*/
|
|
6978
|
+
400: _Error;
|
|
6720
6979
|
/**
|
|
6721
6980
|
* Error response due to missing auth cookie.
|
|
6722
6981
|
*/
|
|
6723
6982
|
401: _Error;
|
|
6983
|
+
/**
|
|
6984
|
+
* Error response due to an invalid or illegal calendar request.
|
|
6985
|
+
*/
|
|
6986
|
+
403: _Error;
|
|
6724
6987
|
};
|
|
6725
6988
|
type CreateGroupCalendarEventError = CreateGroupCalendarEventErrors[keyof CreateGroupCalendarEventErrors];
|
|
6726
6989
|
type CreateGroupCalendarEventResponses = {
|
|
@@ -6730,6 +6993,35 @@ type CreateGroupCalendarEventResponses = {
|
|
|
6730
6993
|
200: CalendarEvent;
|
|
6731
6994
|
};
|
|
6732
6995
|
type CreateGroupCalendarEventResponse = CreateGroupCalendarEventResponses[keyof CreateGroupCalendarEventResponses];
|
|
6996
|
+
type GetGroupNextCalendarEvent = {
|
|
6997
|
+
body?: never;
|
|
6998
|
+
path: {
|
|
6999
|
+
/**
|
|
7000
|
+
* Must be a valid group ID.
|
|
7001
|
+
*/
|
|
7002
|
+
groupId: string;
|
|
7003
|
+
};
|
|
7004
|
+
query?: never;
|
|
7005
|
+
url: '/calendar/{groupId}/next';
|
|
7006
|
+
};
|
|
7007
|
+
type GetGroupNextCalendarEventErrors = {
|
|
7008
|
+
/**
|
|
7009
|
+
* Error response due to missing auth cookie.
|
|
7010
|
+
*/
|
|
7011
|
+
401: _Error;
|
|
7012
|
+
/**
|
|
7013
|
+
* Error response when trying to download ICS calendar of a non-existent calendar entry, get such a calendar entry, or get the next event for a group that lacks any future scheduled events.
|
|
7014
|
+
*/
|
|
7015
|
+
404: _Error;
|
|
7016
|
+
};
|
|
7017
|
+
type GetGroupNextCalendarEventError = GetGroupNextCalendarEventErrors[keyof GetGroupNextCalendarEventErrors];
|
|
7018
|
+
type GetGroupNextCalendarEventResponses = {
|
|
7019
|
+
/**
|
|
7020
|
+
* Returns a single CalendarEvent object.
|
|
7021
|
+
*/
|
|
7022
|
+
200: CalendarEvent;
|
|
7023
|
+
};
|
|
7024
|
+
type GetGroupNextCalendarEventResponse = GetGroupNextCalendarEventResponses[keyof GetGroupNextCalendarEventResponses];
|
|
6733
7025
|
type DeleteGroupCalendarEvent = {
|
|
6734
7026
|
body?: never;
|
|
6735
7027
|
path: {
|
|
@@ -6750,6 +7042,10 @@ type DeleteGroupCalendarEventErrors = {
|
|
|
6750
7042
|
* Error response due to missing auth cookie.
|
|
6751
7043
|
*/
|
|
6752
7044
|
401: _Error;
|
|
7045
|
+
/**
|
|
7046
|
+
* Error response when trying to download ICS calendar of a non-existent calendar entry, get such a calendar entry, or get the next event for a group that lacks any future scheduled events.
|
|
7047
|
+
*/
|
|
7048
|
+
404: _Error;
|
|
6753
7049
|
};
|
|
6754
7050
|
type DeleteGroupCalendarEventError = DeleteGroupCalendarEventErrors[keyof DeleteGroupCalendarEventErrors];
|
|
6755
7051
|
type DeleteGroupCalendarEventResponses = {
|
|
@@ -6809,7 +7105,7 @@ type GetGroupCalendarEventIcsErrors = {
|
|
|
6809
7105
|
*/
|
|
6810
7106
|
401: _Error;
|
|
6811
7107
|
/**
|
|
6812
|
-
* Error response when trying to download ICS calendar of a non-existent calendar entry.
|
|
7108
|
+
* Error response when trying to download ICS calendar of a non-existent calendar entry, get such a calendar entry, or get the next event for a group that lacks any future scheduled events.
|
|
6813
7109
|
*/
|
|
6814
7110
|
404: _Error;
|
|
6815
7111
|
};
|
|
@@ -9449,6 +9745,26 @@ type ShareInventoryItemPedestalResponses = {
|
|
|
9449
9745
|
200: InventorySpawn;
|
|
9450
9746
|
};
|
|
9451
9747
|
type ShareInventoryItemPedestalResponse = ShareInventoryItemPedestalResponses[keyof ShareInventoryItemPedestalResponses];
|
|
9748
|
+
type GetInventoryCollections = {
|
|
9749
|
+
body?: never;
|
|
9750
|
+
path?: never;
|
|
9751
|
+
query?: never;
|
|
9752
|
+
url: '/inventory/collections';
|
|
9753
|
+
};
|
|
9754
|
+
type GetInventoryCollectionsErrors = {
|
|
9755
|
+
/**
|
|
9756
|
+
* Error response due to missing auth cookie.
|
|
9757
|
+
*/
|
|
9758
|
+
401: _Error;
|
|
9759
|
+
};
|
|
9760
|
+
type GetInventoryCollectionsError = GetInventoryCollectionsErrors[keyof GetInventoryCollectionsErrors];
|
|
9761
|
+
type GetInventoryCollectionsResponses = {
|
|
9762
|
+
/**
|
|
9763
|
+
* Returns a list of strings.
|
|
9764
|
+
*/
|
|
9765
|
+
200: Array<string>;
|
|
9766
|
+
};
|
|
9767
|
+
type GetInventoryCollectionsResponse = GetInventoryCollectionsResponses[keyof GetInventoryCollectionsResponses];
|
|
9452
9768
|
type GetInventoryDrops = {
|
|
9453
9769
|
body?: never;
|
|
9454
9770
|
path?: never;
|
|
@@ -10168,6 +10484,306 @@ type UpdateInviteMessageResponses = {
|
|
|
10168
10484
|
200: Array<InviteMessage>;
|
|
10169
10485
|
};
|
|
10170
10486
|
type UpdateInviteMessageResponse = UpdateInviteMessageResponses[keyof UpdateInviteMessageResponses];
|
|
10487
|
+
type GetModerationReports = {
|
|
10488
|
+
body?: never;
|
|
10489
|
+
path?: never;
|
|
10490
|
+
query?: {
|
|
10491
|
+
/**
|
|
10492
|
+
* A zero-based offset from the default object sorting from where search results start.
|
|
10493
|
+
*/
|
|
10494
|
+
offset?: number;
|
|
10495
|
+
/**
|
|
10496
|
+
* The number of objects to return.
|
|
10497
|
+
*/
|
|
10498
|
+
n?: number;
|
|
10499
|
+
/**
|
|
10500
|
+
* Filter for moderation reports.
|
|
10501
|
+
*/
|
|
10502
|
+
reportingUserId?: UserId;
|
|
10503
|
+
/**
|
|
10504
|
+
* Filter for moderation reports. One of: `closed`...
|
|
10505
|
+
*/
|
|
10506
|
+
status?: string;
|
|
10507
|
+
/**
|
|
10508
|
+
* Filter for moderation reports. One of: `avatar`, `group`, `user`, `world`...
|
|
10509
|
+
*/
|
|
10510
|
+
type?: string;
|
|
10511
|
+
};
|
|
10512
|
+
url: '/moderationReports';
|
|
10513
|
+
};
|
|
10514
|
+
type GetModerationReportsErrors = {
|
|
10515
|
+
/**
|
|
10516
|
+
* Error response due to missing auth cookie.
|
|
10517
|
+
*/
|
|
10518
|
+
401: _Error;
|
|
10519
|
+
/**
|
|
10520
|
+
* Error response due to missing Administrator credentials.
|
|
10521
|
+
*/
|
|
10522
|
+
403: _Error;
|
|
10523
|
+
};
|
|
10524
|
+
type GetModerationReportsError = GetModerationReportsErrors[keyof GetModerationReportsErrors];
|
|
10525
|
+
type GetModerationReportsResponses = {
|
|
10526
|
+
/**
|
|
10527
|
+
* Returns a list of ModerationReport objects, wrapped in new pagination format.
|
|
10528
|
+
*/
|
|
10529
|
+
200: PaginatedModerationReportList;
|
|
10530
|
+
};
|
|
10531
|
+
type GetModerationReportsResponse = GetModerationReportsResponses[keyof GetModerationReportsResponses];
|
|
10532
|
+
type SubmitModerationReport = {
|
|
10533
|
+
body: SubmitModerationReportRequest;
|
|
10534
|
+
path?: never;
|
|
10535
|
+
query?: never;
|
|
10536
|
+
url: '/moderationReports';
|
|
10537
|
+
};
|
|
10538
|
+
type SubmitModerationReportErrors = {
|
|
10539
|
+
/**
|
|
10540
|
+
* Error response due to missing auth cookie.
|
|
10541
|
+
*/
|
|
10542
|
+
401: _Error;
|
|
10543
|
+
};
|
|
10544
|
+
type SubmitModerationReportError = SubmitModerationReportErrors[keyof SubmitModerationReportErrors];
|
|
10545
|
+
type SubmitModerationReportResponses = {
|
|
10546
|
+
/**
|
|
10547
|
+
* Returns a single ModerationReport object.
|
|
10548
|
+
*/
|
|
10549
|
+
200: ModerationReport;
|
|
10550
|
+
};
|
|
10551
|
+
type SubmitModerationReportResponse = SubmitModerationReportResponses[keyof SubmitModerationReportResponses];
|
|
10552
|
+
type DeleteModerationReport = {
|
|
10553
|
+
body?: never;
|
|
10554
|
+
path: {
|
|
10555
|
+
/**
|
|
10556
|
+
* The moderation report id.
|
|
10557
|
+
*/
|
|
10558
|
+
moderationReportId: ModerationReportId;
|
|
10559
|
+
};
|
|
10560
|
+
query?: never;
|
|
10561
|
+
url: '/moderationReports/{moderationReportId}';
|
|
10562
|
+
};
|
|
10563
|
+
type DeleteModerationReportErrors = {
|
|
10564
|
+
/**
|
|
10565
|
+
* Error response due to missing auth cookie.
|
|
10566
|
+
*/
|
|
10567
|
+
401: _Error;
|
|
10568
|
+
/**
|
|
10569
|
+
* Error response due to missing Administrator credentials.
|
|
10570
|
+
*/
|
|
10571
|
+
403: _Error;
|
|
10572
|
+
};
|
|
10573
|
+
type DeleteModerationReportError = DeleteModerationReportErrors[keyof DeleteModerationReportErrors];
|
|
10574
|
+
type DeleteModerationReportResponses = {
|
|
10575
|
+
/**
|
|
10576
|
+
* Returns an SuccessFlag object.
|
|
10577
|
+
*/
|
|
10578
|
+
200: SuccessFlag;
|
|
10579
|
+
};
|
|
10580
|
+
type DeleteModerationReportResponse = DeleteModerationReportResponses[keyof DeleteModerationReportResponses];
|
|
10581
|
+
type DeleteAllNotificationV2s = {
|
|
10582
|
+
body?: never;
|
|
10583
|
+
path?: never;
|
|
10584
|
+
query?: never;
|
|
10585
|
+
url: '/notifications';
|
|
10586
|
+
};
|
|
10587
|
+
type DeleteAllNotificationV2sErrors = {
|
|
10588
|
+
/**
|
|
10589
|
+
* Error response due to missing auth cookie.
|
|
10590
|
+
*/
|
|
10591
|
+
401: _Error;
|
|
10592
|
+
};
|
|
10593
|
+
type DeleteAllNotificationV2sError = DeleteAllNotificationV2sErrors[keyof DeleteAllNotificationV2sErrors];
|
|
10594
|
+
type DeleteAllNotificationV2sResponses = {
|
|
10595
|
+
/**
|
|
10596
|
+
* Successful response after clearing all notifications.
|
|
10597
|
+
*/
|
|
10598
|
+
200: Success;
|
|
10599
|
+
};
|
|
10600
|
+
type DeleteAllNotificationV2sResponse = DeleteAllNotificationV2sResponses[keyof DeleteAllNotificationV2sResponses];
|
|
10601
|
+
type GetNotificationV2s = {
|
|
10602
|
+
body?: never;
|
|
10603
|
+
path?: never;
|
|
10604
|
+
query?: {
|
|
10605
|
+
/**
|
|
10606
|
+
* The maximum number of entries to get.
|
|
10607
|
+
*/
|
|
10608
|
+
limit?: number;
|
|
10609
|
+
};
|
|
10610
|
+
url: '/notifications';
|
|
10611
|
+
};
|
|
10612
|
+
type GetNotificationV2sErrors = {
|
|
10613
|
+
/**
|
|
10614
|
+
* Error response due to missing auth cookie.
|
|
10615
|
+
*/
|
|
10616
|
+
401: _Error;
|
|
10617
|
+
};
|
|
10618
|
+
type GetNotificationV2sError = GetNotificationV2sErrors[keyof GetNotificationV2sErrors];
|
|
10619
|
+
type GetNotificationV2sResponses = {
|
|
10620
|
+
/**
|
|
10621
|
+
* Returns a list of NotifcationV2 objects.
|
|
10622
|
+
*/
|
|
10623
|
+
200: Array<NotificationV2>;
|
|
10624
|
+
};
|
|
10625
|
+
type GetNotificationV2sResponse = GetNotificationV2sResponses[keyof GetNotificationV2sResponses];
|
|
10626
|
+
type DeleteNotificationV2 = {
|
|
10627
|
+
body?: never;
|
|
10628
|
+
path: {
|
|
10629
|
+
/**
|
|
10630
|
+
* Must be a valid notification ID.
|
|
10631
|
+
*/
|
|
10632
|
+
notificationId: string;
|
|
10633
|
+
};
|
|
10634
|
+
query?: never;
|
|
10635
|
+
url: '/notifications/{notificationId}';
|
|
10636
|
+
};
|
|
10637
|
+
type DeleteNotificationV2Errors = {
|
|
10638
|
+
/**
|
|
10639
|
+
* Error response when trying to perform an invalid operations on a notification.
|
|
10640
|
+
*/
|
|
10641
|
+
400: _Error;
|
|
10642
|
+
/**
|
|
10643
|
+
* Error response due to missing auth cookie.
|
|
10644
|
+
*/
|
|
10645
|
+
401: _Error;
|
|
10646
|
+
/**
|
|
10647
|
+
* Error response when trying to perform operations on a non-existing notification.
|
|
10648
|
+
*/
|
|
10649
|
+
404: _Error;
|
|
10650
|
+
};
|
|
10651
|
+
type DeleteNotificationV2Error = DeleteNotificationV2Errors[keyof DeleteNotificationV2Errors];
|
|
10652
|
+
type DeleteNotificationV2Responses = {
|
|
10653
|
+
/**
|
|
10654
|
+
* Successful response after clearing a notification.
|
|
10655
|
+
*/
|
|
10656
|
+
200: Success;
|
|
10657
|
+
};
|
|
10658
|
+
type DeleteNotificationV2Response = DeleteNotificationV2Responses[keyof DeleteNotificationV2Responses];
|
|
10659
|
+
type GetNotificationV2 = {
|
|
10660
|
+
body?: never;
|
|
10661
|
+
path: {
|
|
10662
|
+
/**
|
|
10663
|
+
* Must be a valid notification ID.
|
|
10664
|
+
*/
|
|
10665
|
+
notificationId: string;
|
|
10666
|
+
};
|
|
10667
|
+
query?: never;
|
|
10668
|
+
url: '/notifications/{notificationId}';
|
|
10669
|
+
};
|
|
10670
|
+
type GetNotificationV2Errors = {
|
|
10671
|
+
/**
|
|
10672
|
+
* Error response due to missing auth cookie.
|
|
10673
|
+
*/
|
|
10674
|
+
401: _Error;
|
|
10675
|
+
/**
|
|
10676
|
+
* Error response due to missing Administrator credentials.
|
|
10677
|
+
*/
|
|
10678
|
+
403: _Error;
|
|
10679
|
+
/**
|
|
10680
|
+
* Error response when trying to perform operations on a non-existing notification.
|
|
10681
|
+
*/
|
|
10682
|
+
404: _Error;
|
|
10683
|
+
};
|
|
10684
|
+
type GetNotificationV2Error = GetNotificationV2Errors[keyof GetNotificationV2Errors];
|
|
10685
|
+
type GetNotificationV2Responses = {
|
|
10686
|
+
/**
|
|
10687
|
+
* Returns a single NotifcationV2 object.
|
|
10688
|
+
*/
|
|
10689
|
+
200: NotificationV2;
|
|
10690
|
+
};
|
|
10691
|
+
type GetNotificationV2Response = GetNotificationV2Responses[keyof GetNotificationV2Responses];
|
|
10692
|
+
type ReplyNotificationV2 = {
|
|
10693
|
+
body: ReplyNotificationV2Request;
|
|
10694
|
+
path: {
|
|
10695
|
+
/**
|
|
10696
|
+
* Must be a valid notification ID.
|
|
10697
|
+
*/
|
|
10698
|
+
notificationId: string;
|
|
10699
|
+
};
|
|
10700
|
+
query?: never;
|
|
10701
|
+
url: '/notifications/{notificationId}/reply';
|
|
10702
|
+
};
|
|
10703
|
+
type ReplyNotificationV2Errors = {
|
|
10704
|
+
/**
|
|
10705
|
+
* Error response when trying to perform an invalid operations on a notification.
|
|
10706
|
+
*/
|
|
10707
|
+
400: _Error;
|
|
10708
|
+
/**
|
|
10709
|
+
* Error response due to missing auth cookie.
|
|
10710
|
+
*/
|
|
10711
|
+
401: _Error;
|
|
10712
|
+
/**
|
|
10713
|
+
* Error response when trying to perform operations on a non-existing notification.
|
|
10714
|
+
*/
|
|
10715
|
+
404: _Error;
|
|
10716
|
+
};
|
|
10717
|
+
type ReplyNotificationV2Error = ReplyNotificationV2Errors[keyof ReplyNotificationV2Errors];
|
|
10718
|
+
type ReplyNotificationV2Responses = {
|
|
10719
|
+
/**
|
|
10720
|
+
* Returns a single NotifcationV2 object.
|
|
10721
|
+
*/
|
|
10722
|
+
200: NotificationV2;
|
|
10723
|
+
};
|
|
10724
|
+
type ReplyNotificationV2Response = ReplyNotificationV2Responses[keyof ReplyNotificationV2Responses];
|
|
10725
|
+
type RespondNotificationV2 = {
|
|
10726
|
+
body: RespondNotificationV2Request;
|
|
10727
|
+
path: {
|
|
10728
|
+
/**
|
|
10729
|
+
* Must be a valid notification ID.
|
|
10730
|
+
*/
|
|
10731
|
+
notificationId: string;
|
|
10732
|
+
};
|
|
10733
|
+
query?: never;
|
|
10734
|
+
url: '/notifications/{notificationId}/respond';
|
|
10735
|
+
};
|
|
10736
|
+
type RespondNotificationV2Errors = {
|
|
10737
|
+
/**
|
|
10738
|
+
* Error response when trying to perform an invalid operations on a notification.
|
|
10739
|
+
*/
|
|
10740
|
+
400: _Error;
|
|
10741
|
+
/**
|
|
10742
|
+
* Error response due to missing auth cookie.
|
|
10743
|
+
*/
|
|
10744
|
+
401: _Error;
|
|
10745
|
+
/**
|
|
10746
|
+
* Error response when trying to perform operations on a non-existing notification.
|
|
10747
|
+
*/
|
|
10748
|
+
404: _Error;
|
|
10749
|
+
};
|
|
10750
|
+
type RespondNotificationV2Error = RespondNotificationV2Errors[keyof RespondNotificationV2Errors];
|
|
10751
|
+
type RespondNotificationV2Responses = {
|
|
10752
|
+
/**
|
|
10753
|
+
* Returns a single NotifcationV2 object.
|
|
10754
|
+
*/
|
|
10755
|
+
200: NotificationV2;
|
|
10756
|
+
};
|
|
10757
|
+
type RespondNotificationV2Response = RespondNotificationV2Responses[keyof RespondNotificationV2Responses];
|
|
10758
|
+
type AcknowledgeNotificationV2 = {
|
|
10759
|
+
body?: never;
|
|
10760
|
+
path: {
|
|
10761
|
+
/**
|
|
10762
|
+
* Must be a valid notification ID.
|
|
10763
|
+
*/
|
|
10764
|
+
notificationId: string;
|
|
10765
|
+
};
|
|
10766
|
+
query?: never;
|
|
10767
|
+
url: '/notifications/{notificationId}/see';
|
|
10768
|
+
};
|
|
10769
|
+
type AcknowledgeNotificationV2Errors = {
|
|
10770
|
+
/**
|
|
10771
|
+
* Error response due to missing auth cookie.
|
|
10772
|
+
*/
|
|
10773
|
+
401: _Error;
|
|
10774
|
+
/**
|
|
10775
|
+
* Error response when trying to perform operations on a non-existing notification.
|
|
10776
|
+
*/
|
|
10777
|
+
404: _Error;
|
|
10778
|
+
};
|
|
10779
|
+
type AcknowledgeNotificationV2Error = AcknowledgeNotificationV2Errors[keyof AcknowledgeNotificationV2Errors];
|
|
10780
|
+
type AcknowledgeNotificationV2Responses = {
|
|
10781
|
+
/**
|
|
10782
|
+
* Returns a single NotifcationV2 object.
|
|
10783
|
+
*/
|
|
10784
|
+
200: NotificationV2;
|
|
10785
|
+
};
|
|
10786
|
+
type AcknowledgeNotificationV2Response = AcknowledgeNotificationV2Responses[keyof AcknowledgeNotificationV2Responses];
|
|
10171
10787
|
type GetPermission = {
|
|
10172
10788
|
body?: never;
|
|
10173
10789
|
path: {
|
|
@@ -10734,6 +11350,35 @@ type GetFriendStatusResponses = {
|
|
|
10734
11350
|
200: FriendStatus;
|
|
10735
11351
|
};
|
|
10736
11352
|
type GetFriendStatusResponse = GetFriendStatusResponses[keyof GetFriendStatusResponses];
|
|
11353
|
+
type GetUserInventoryItem = {
|
|
11354
|
+
body?: never;
|
|
11355
|
+
path: {
|
|
11356
|
+
/**
|
|
11357
|
+
* Must be a valid user ID.
|
|
11358
|
+
*/
|
|
11359
|
+
userId: string;
|
|
11360
|
+
/**
|
|
11361
|
+
* Must be a valid inventory item ID.
|
|
11362
|
+
*/
|
|
11363
|
+
inventoryItemId: string;
|
|
11364
|
+
};
|
|
11365
|
+
query?: never;
|
|
11366
|
+
url: '/user/{userId}/inventory/{inventoryItemId}';
|
|
11367
|
+
};
|
|
11368
|
+
type GetUserInventoryItemErrors = {
|
|
11369
|
+
/**
|
|
11370
|
+
* Error response due to missing auth cookie.
|
|
11371
|
+
*/
|
|
11372
|
+
401: _Error;
|
|
11373
|
+
};
|
|
11374
|
+
type GetUserInventoryItemError = GetUserInventoryItemErrors[keyof GetUserInventoryItemErrors];
|
|
11375
|
+
type GetUserInventoryItemResponses = {
|
|
11376
|
+
/**
|
|
11377
|
+
* Returns an InventoryItem object.
|
|
11378
|
+
*/
|
|
11379
|
+
200: InventoryItem;
|
|
11380
|
+
};
|
|
11381
|
+
type GetUserInventoryItemResponse = GetUserInventoryItemResponses[keyof GetUserInventoryItemResponses];
|
|
10737
11382
|
type GetProductListings = {
|
|
10738
11383
|
body?: never;
|
|
10739
11384
|
path: {
|
|
@@ -12586,6 +13231,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
12586
13231
|
* Creates an event for a group on the calendar
|
|
12587
13232
|
*/
|
|
12588
13233
|
createGroupCalendarEvent<ThrowOnError extends boolean = false>(options: Options<CreateGroupCalendarEvent, ThrowOnError>): RequestResult<CreateGroupCalendarEventResponses, CreateGroupCalendarEventErrors, ThrowOnError, "fields">;
|
|
13234
|
+
/**
|
|
13235
|
+
* Get next calendar event
|
|
13236
|
+
*
|
|
13237
|
+
* Get the closest future calendar event scheduled for a group
|
|
13238
|
+
*/
|
|
13239
|
+
getGroupNextCalendarEvent<ThrowOnError extends boolean = false>(options: Options<GetGroupNextCalendarEvent, ThrowOnError>): RequestResult<GetGroupNextCalendarEventResponses, GetGroupNextCalendarEventErrors, ThrowOnError, "fields">;
|
|
12589
13240
|
/**
|
|
12590
13241
|
* Delete a calendar event
|
|
12591
13242
|
*
|
|
@@ -13137,6 +13788,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
13137
13788
|
* Returns an InventorySpawn object.
|
|
13138
13789
|
*/
|
|
13139
13790
|
shareInventoryItemPedestal<ThrowOnError extends boolean = false>(options: Options<ShareInventoryItemPedestal, ThrowOnError>): RequestResult<ShareInventoryItemPedestalResponses, ShareInventoryItemPedestalErrors, ThrowOnError, "fields">;
|
|
13791
|
+
/**
|
|
13792
|
+
* List Inventory Collections
|
|
13793
|
+
*
|
|
13794
|
+
* Returns a list of collection names.
|
|
13795
|
+
*/
|
|
13796
|
+
getInventoryCollections<ThrowOnError extends boolean = false>(options?: Options<GetInventoryCollections, ThrowOnError>): RequestResult<GetInventoryCollectionsResponses, GetInventoryCollectionsErrors, ThrowOnError, "fields">;
|
|
13140
13797
|
/**
|
|
13141
13798
|
* List Inventory Drops
|
|
13142
13799
|
*
|
|
@@ -13336,6 +13993,68 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
13336
13993
|
* * `requestResponse` = Message when replying to a request for invite
|
|
13337
13994
|
*/
|
|
13338
13995
|
updateInviteMessage<ThrowOnError extends boolean = false>(options: Options<UpdateInviteMessage, ThrowOnError>): RequestResult<UpdateInviteMessageResponses, UpdateInviteMessageErrors, ThrowOnError, "fields">;
|
|
13996
|
+
/**
|
|
13997
|
+
* Get Moderation Reports
|
|
13998
|
+
*
|
|
13999
|
+
* Get submitted moderation reports
|
|
14000
|
+
*/
|
|
14001
|
+
getModerationReports<ThrowOnError extends boolean = false>(options?: Options<GetModerationReports, ThrowOnError>): RequestResult<GetModerationReportsResponses, GetModerationReportsErrors, ThrowOnError, "fields">;
|
|
14002
|
+
/**
|
|
14003
|
+
* Submit Moderation Report
|
|
14004
|
+
*
|
|
14005
|
+
* Submit a moderation report
|
|
14006
|
+
*/
|
|
14007
|
+
submitModerationReport<ThrowOnError extends boolean = false>(options: Options<SubmitModerationReport, ThrowOnError>): RequestResult<SubmitModerationReportResponses, SubmitModerationReportErrors, ThrowOnError, "fields">;
|
|
14008
|
+
/**
|
|
14009
|
+
* Delete Moderation Report
|
|
14010
|
+
*
|
|
14011
|
+
* Delete a moderation report
|
|
14012
|
+
*/
|
|
14013
|
+
deleteModerationReport<ThrowOnError extends boolean = false>(options: Options<DeleteModerationReport, ThrowOnError>): RequestResult<DeleteModerationReportResponses, DeleteModerationReportErrors, ThrowOnError, "fields">;
|
|
14014
|
+
/**
|
|
14015
|
+
* Delete All NotificationV2s
|
|
14016
|
+
*
|
|
14017
|
+
* Delete all of the current user's notifications.
|
|
14018
|
+
*/
|
|
14019
|
+
deleteAllNotificationV2S<ThrowOnError extends boolean = false>(options?: Options<DeleteAllNotificationV2s, ThrowOnError>): RequestResult<DeleteAllNotificationV2sResponses, DeleteAllNotificationV2sErrors, ThrowOnError, "fields">;
|
|
14020
|
+
/**
|
|
14021
|
+
* List NotificationV2s
|
|
14022
|
+
*
|
|
14023
|
+
* Retrieve all of the current user's notifications.
|
|
14024
|
+
*/
|
|
14025
|
+
getNotificationV2S<ThrowOnError extends boolean = false>(options?: Options<GetNotificationV2s, ThrowOnError>): RequestResult<GetNotificationV2sResponses, GetNotificationV2sErrors, ThrowOnError, "fields">;
|
|
14026
|
+
/**
|
|
14027
|
+
* Delete NotificationV2
|
|
14028
|
+
*
|
|
14029
|
+
* Delete a specific notification
|
|
14030
|
+
*/
|
|
14031
|
+
deleteNotificationV2<ThrowOnError extends boolean = false>(options: Options<DeleteNotificationV2, ThrowOnError>): RequestResult<DeleteNotificationV2Responses, DeleteNotificationV2Errors, ThrowOnError, "fields">;
|
|
14032
|
+
/**
|
|
14033
|
+
* Get NotificationV2
|
|
14034
|
+
*
|
|
14035
|
+
* Get a specific notification. Appears to require admin credentials by default. Expect a 403 Forbidden error response for normal users.
|
|
14036
|
+
*
|
|
14037
|
+
* @deprecated
|
|
14038
|
+
*/
|
|
14039
|
+
getNotificationV2<ThrowOnError extends boolean = false>(options: Options<GetNotificationV2, ThrowOnError>): RequestResult<GetNotificationV2Responses, GetNotificationV2Errors, ThrowOnError, "fields">;
|
|
14040
|
+
/**
|
|
14041
|
+
* Reply NotificationV2
|
|
14042
|
+
*
|
|
14043
|
+
* Reply to a specific notification
|
|
14044
|
+
*/
|
|
14045
|
+
replyNotificationV2<ThrowOnError extends boolean = false>(options: Options<ReplyNotificationV2, ThrowOnError>): RequestResult<ReplyNotificationV2Responses, ReplyNotificationV2Errors, ThrowOnError, "fields">;
|
|
14046
|
+
/**
|
|
14047
|
+
* Respond NotificationV2
|
|
14048
|
+
*
|
|
14049
|
+
* Respond to a specific notification
|
|
14050
|
+
*/
|
|
14051
|
+
respondNotificationV2<ThrowOnError extends boolean = false>(options: Options<RespondNotificationV2, ThrowOnError>): RequestResult<RespondNotificationV2Responses, RespondNotificationV2Errors, ThrowOnError, "fields">;
|
|
14052
|
+
/**
|
|
14053
|
+
* Acknowledge NotificationV2
|
|
14054
|
+
*
|
|
14055
|
+
* Acknowledge a specific notification
|
|
14056
|
+
*/
|
|
14057
|
+
acknowledgeNotificationV2<ThrowOnError extends boolean = false>(options: Options<AcknowledgeNotificationV2, ThrowOnError>): RequestResult<AcknowledgeNotificationV2Responses, AcknowledgeNotificationV2Errors, ThrowOnError, "fields">;
|
|
13339
14058
|
/**
|
|
13340
14059
|
* Get Permission
|
|
13341
14060
|
*
|
|
@@ -13472,6 +14191,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
13472
14191
|
* Retrieve if the user is currently a friend with a given user, if they have an outgoing friend request, and if they have an incoming friend request. The proper way to receive and accept friend request is by checking if the user has an incoming `Notification` of type `friendRequest`, and then accepting that notification.
|
|
13473
14192
|
*/
|
|
13474
14193
|
getFriendStatus<ThrowOnError extends boolean = false>(options: Options<GetFriendStatus, ThrowOnError>): RequestResult<GetFriendStatusResponses, GetFriendStatusErrors, ThrowOnError, "fields">;
|
|
14194
|
+
/**
|
|
14195
|
+
* Get User Inventory Item
|
|
14196
|
+
*
|
|
14197
|
+
* Returns an InventoryItem object held by the given user.
|
|
14198
|
+
*/
|
|
14199
|
+
getUserInventoryItem<ThrowOnError extends boolean = false>(options: Options<GetUserInventoryItem, ThrowOnError>): RequestResult<GetUserInventoryItemResponses, GetUserInventoryItemErrors, ThrowOnError, "fields">;
|
|
13475
14200
|
/**
|
|
13476
14201
|
* Get User Product Listings
|
|
13477
14202
|
*
|
|
@@ -13892,4 +14617,4 @@ declare class VRChat extends VRChatInternal {
|
|
|
13892
14617
|
private saveCookies;
|
|
13893
14618
|
}
|
|
13894
14619
|
|
|
13895
|
-
export { type Verify2FaEmailCodeResult as $, type AdminUnityPackage as A, type BadgeId as B, type ClientOptions as C, type CurrentAvatarImageUrl as D, type CurrentAvatarThumbnailImageUrl as E, type FileAnalysisAvatarStats as F, type DeveloperType as G, type DiscordId as H, type DiscordDetails as I, type PastDisplayName as J, type GroupId as K, type LoginCredentials as L, type LocationId as M, type CurrentUserPresence as N, type UserState as O, type Platform as P, type UserStatus as Q, type Response$1 as R, type SubscriptionPeriod as S, TwoFactorMethods as T, type UserId as U, VRChat as V, type WorldId as W, type CurrentUser as X, type Disable2FaResult as Y, type TwoFactorEmailCode as Z, type _Error as _, VRChatError as a, type SortOptionProductPurchase as a$, type TwoFactorAuthCode as a0, type Verify2FaResult as a1, type Pending2FaResult as a2, type AvatarModerationType as a3, type AvatarModeration as a4, type CreateAvatarModerationRequest as a5, type AvatarModerationCreated as a6, type OkStatus2 as a7, type FavoriteGroupLimits as a8, type FavoriteLimits as a9, type GroupRoleId as aA, type CalendarEvent as aB, type PaginatedCalendarEventList as aC, type CalendarEventDiscoveryScope as aD, type CalendarEventDiscoveryInclusion as aE, type CalendarEventDiscovery as aF, type CreateCalendarEventRequest as aG, type UpdateCalendarEventRequest as aH, type FollowCalendarEventRequest as aI, type ApiConfigAnnouncement as aJ, type PerformanceLimiterInfo as aK, type ApiConfigConstants as aL, type ApiConfigDownloadUrlList as aM, type DynamicContentRow as aN, type ApiConfigEvents as aO, type PlatformBuildInfo as aP, type ReportCategory as aQ, type ReportReason as aR, type ApiConfig as aS, type LicenseAction as aT, type LicenseType as aU, type License as aV, type ProductId as aW, type PurchaseProductListingRequest as aX, type ProductListingType as aY, type ProductPurchaseId as aZ, type ProductPurchase as a_, type LimitedUserFriend as aa, type Success as ab, type NotificationType as ac, type Notification as ad, type PlayerModerationType as ae, type PlayerModerationId as af, type PlayerModeration as ag, type ModerateUserRequest as ah, type LicenseGroupId as ai, type UserSubscription as aj, type TwoFactorRecoveryCodes as ak, type AvatarStyleId as al, type AvatarStyle as am, type SortOption as an, type OrderOption as ao, type UnityPackageId as ap, type PerformanceRatings as aq, type UnityPackage as ar, type Avatar as as, type LocalDateTime as at, type CreateAvatarRequest as au, type ServiceQueueStats as av, type UpdateAvatarRequest as aw, type ServiceStatus as ax, type CalendarId as ay, type FileId as az, type VRChatAuthentication as b, type UdonProductId as b$, type OrderOptionShort as b0, type StoreId as b1, type ProductType as b2, type Product as b3, type ProductListingVariantId as b4, type ProductListingVariant as b5, type ProductListing as b6, type StoreShelfId as b7, type StoreShelf as b8, type StoreType as b9, type GroupJoinState as bA, type GroupPrivacy as bB, type GroupRoleTemplate as bC, type CreateGroupRequest as bD, type GroupMemberId as bE, type GroupPermissions as bF, type GroupMyMember as bG, type GroupRole as bH, type Group as bI, type GroupRoleTemplateValues as bJ, type UpdateGroupRequest as bK, type GroupAnnouncementId as bL, type GroupAnnouncement as bM, type CreateGroupAnnouncementRequest as bN, type GroupAuditLogId as bO, type GroupAuditLogEntry as bP, type PaginatedGroupAuditLogEntryList as bQ, type GroupMemberLimitedUser as bR, type GroupMember as bS, type BanGroupMemberRequest as bT, type CreateGroupGalleryRequest as bU, type GroupGalleryImageId as bV, type GroupGalleryImage as bW, type UpdateGroupGalleryRequest as bX, type AddGroupGalleryImageRequest as bY, type InstanceId as bZ, type InstanceContentSettings as b_, type Store as ba, type StoreView as bb, type FavoriteGroupId as bc, type FavoriteType as bd, type FavoriteGroupVisibility as be, type FavoriteGroup as bf, type UpdateFavoriteGroupRequest as bg, type FavoriteId as bh, type Favorite as bi, type AddFavoriteRequest as bj, type MimeType as bk, type CreateFileRequest as bl, type FileStatus as bm, type FileData as bn, type FileVersion as bo, type File as bp, type CreateFileVersionRequest as bq, type FinishFileDataUploadRequest as br, type FileUploadUrl as bs, type FileVersionUploadStatus as bt, type GroupDiscriminator as bu, type GroupGalleryId as bv, type GroupGallery as bw, type GroupMemberStatus as bx, type GroupShortCode as by, type LimitedGroup as bz, type VRChatOptions as c, type InviteMessage as c$, type World as c0, type GroupInstance as c1, type CreateGroupInviteRequest as c2, type GroupSearchSort as c3, type GroupLimitedMember as c4, type GroupUserVisibility as c5, type UpdateGroupMemberRequest as c6, type GroupRoleIdList as c7, type GroupPermission as c8, type NotificationId as c9, type InventoryDefaultAttributes as cA, type InventoryItemId as cB, type InventoryTemplateId as cC, type PropId as cD, type InventoryMetadata as cE, type InventoryUserAttributes as cF, type InventoryItem as cG, type Inventory as cH, type ShareInventoryItemDirectRequest as cI, type OkStatus as cJ, type InventorySpawn as cK, type InventoryDropId as cL, type InventoryNotificationDetails as cM, type InventoryDrop as cN, type InventoryTemplate as cO, type UpdateInventoryItemRequest as cP, type SuccessFlag as cQ, type InventoryConsumptionResults as cR, type EquipInventoryItemRequest as cS, type SentNotification as cT, type InviteResponse as cU, type InviteRequest as cV, type Jam as cW, type Submission as cX, type LicenseGroup as cY, type InviteMessageType as cZ, type InviteMessageId as c_, type GroupPostVisibility as ca, type GroupPost as cb, type CreateGroupPostRequest as cc, type GroupJoinRequestAction as cd, type RespondGroupJoinRequest as ce, type CreateGroupRoleRequest as cf, type UpdateGroupRoleRequest as cg, type ApiHealth as ch, type InfoPushDataClickable as ci, type InfoPushDataArticleContent as cj, type InfoPushDataArticle as ck, type InfoPushData as cl, type InfoPush as cm, type GroupAccessType as cn, type InstanceOwnerId as co, type InstanceRegion as cp, type InstanceType as cq, type CreateInstanceRequest as cr, type Region as cs, type InstancePlatforms as ct, type LimitedUserInstance as cu, type Instance as cv, type InstanceShortNameResponse as cw, type InventoryEquipSlot as cx, type InventoryItemType as cy, type InventoryFlag as cz, type LoginOptions as d, type Featured as d$, type UpdateInviteMessageRequest as d0, type PrintId as d1, type Print as d2, type PropUnityPackage as d3, type Prop as d4, type RequestInviteRequest as d5, type TiliaStatus as d6, type TokenBundle as d7, type Balance as d8, type EconomyAccount as d9, type UpdateWorldRequest as dA, type WorldMetadata as dB, type WorldPublishStatus as dC, type NotificationDetailInvite as dD, type NotificationDetailInviteResponse as dE, type NotificationDetailRequestInvite as dF, type NotificationDetailRequestInviteResponse as dG, type NotificationDetailVoteToKick as dH, type TransactionId2 as dI, type AdminAssetBundleId as dJ, type FileId2 as dK, type VersionId as dL, type ConfirmEmailUserId as dM, type ConfirmEmailToken as dN, type Email as dO, type DisplayName as dP, type UsernameQuery as dQ, type ExcludeUserId as dR, type TargetAvatarId as dS, type AvatarModerationType2 as dT, type Offset as dU, type Number as dV, type Offline as dW, type UserId2 as dX, type NotificationId2 as dY, type UserIdQuery as dZ, type VerifyLoginPlaceToken as d_, type FriendStatus as da, type TiliaTos as db, type UpdateTiliaTosRequest as dc, type UserNoteId as dd, type UserNote as de, type UpdateUserNoteRequest as df, type LimitedUserSearch as dg, type User as dh, type UpdateUserRequest as di, type ChangeUserTagsRequest as dj, type UpdateUserBadgeRequest as dk, type EmojiId as dl, type BoopRequest as dm, type UserCreditsEligible as dn, type FeedbackId as dp, type Feedback as dq, type LimitedUserGroups as dr, type RepresentedGroup as ds, type Mutuals as dt, type MutualFriend as du, type UserSubscriptionEligible as dv, type LimitedUnityPackage as dw, type LimitedWorld as dx, type CreateWorldRequest as dy, type FavoritedWorld as dz, type LoginResult as e, type InventoryPedestalItemId as e$, type Sort as e0, type Order as e1, type Tag2 as e2, type Notag as e3, type ReleaseStatus2 as e4, type MaxUnityVersion as e5, type MinUnityVersion as e6, type Platform2 as e7, type Search as e8, type UserIdAdmin as e9, type FavoriteGroupType as eA, type FavoriteGroupName as eB, type FavoriteId2 as eC, type FileType as eD, type StartDate as eE, type EndDate as eF, type ActorIds as eG, type EventTypes as eH, type TargetIds as eI, type GroupGalleryId2 as eJ, type GroupGalleryImageId2 as eK, type GroupMemberSort as eL, type GroupMemberRoleFilter as eM, type GroupRoleId2 as eN, type Require as eO, type Include as eP, type WorldId2 as eQ, type InstanceId2 as eR, type InventoryHolderId as eS, type InventoryEquipSlot2 as eT, type InventorySortOrder as eU, type InventoryItemTags as eV, type InventoryItemTypes as eW, type InventoryItemFlags as eX, type InventoryItemNotTypes as eY, type InventoryItemNotFlags as eZ, type InventoryItemArchived as e_, type AvatarId2 as ea, type MonthDate as eb, type CalendarDiscoveryScope as ec, type CalendarDiscoveryCategories as ed, type CalendarDiscoveryTags as ee, type CalendarDiscoveryFeatured as ef, type CalendarDiscoveryNonFeatured as eg, type CalendarDiscoveryPersonalized as eh, type CalendarDiscoveryMinimumInterestCount as ei, type CalendarDiscoveryMinimumRemainingMinutes as ej, type CalendarDiscoveryUpcomingOffsetMinutes as ek, type CalendarDiscoveryNextCursor as el, type CalendarSearchTerm as em, type UtcOffset as en, type GroupId2 as eo, type CalendarId2 as ep, type Variant as eq, type Branch as er, type BuyerId as es, type MostRecentFlag as et, type SortProductPurchase as eu, type OrderShort as ev, type StoreId2 as ew, type HydrateListings as ex, type HydrateProducts as ey, type StoreView2 as ez, type TransactionAgreement as f, type GetAssignedPermissions as f$, type InventoryPedestalDuration as f0, type Active as f1, type InventorySpawnItemId as f2, type InventoryTemplateId2 as f3, type InventoryItemId2 as f4, type InventoryItemSlotAsId as f5, type JamId as f6, type LicenseGroupId2 as f7, type ProductId2 as f8, type Hydrate as f9, type GetAdminAssetBundleResponse as fA, type GetFileAnalysis as fB, type GetFileAnalysisErrors as fC, type GetFileAnalysisError as fD, type GetFileAnalysisResponses as fE, type GetFileAnalysisResponse as fF, type GetFileAnalysisSecurity as fG, type GetFileAnalysisSecurityErrors as fH, type GetFileAnalysisSecurityError as fI, type GetFileAnalysisSecurityResponses as fJ, type GetFileAnalysisSecurityResponse as fK, type GetFileAnalysisStandard as fL, type GetFileAnalysisStandardErrors as fM, type GetFileAnalysisStandardError as fN, type GetFileAnalysisStandardResponses as fO, type GetFileAnalysisStandardResponse as fP, type VerifyAuthToken as fQ, type VerifyAuthTokenErrors as fR, type VerifyAuthTokenError as fS, type VerifyAuthTokenResponses as fT, type VerifyAuthTokenResponse as fU, type ConfirmEmail as fV, type CheckUserExists as fW, type CheckUserExistsErrors as fX, type CheckUserExistsError as fY, type CheckUserExistsResponses as fZ, type CheckUserExistsResponse as f_, type MessageType as fa, type Slot as fb, type PermissionId2 as fc, type PrintId2 as fd, type PropId2 as fe, type GroupIdFilter as ff, type UserNoteId2 as fg, type BadgeId2 as fh, type SubscriptionId as fi, type ContentId as fj, type SteamId as fk, type Noplatform as fl, type Fuzzy as fm, type AvatarSpecific as fn, type GetSteamTransactions as fo, type GetSteamTransactionsErrors as fp, type GetSteamTransactionsError as fq, type GetSteamTransactionsResponses as fr, type GetSteamTransactionsResponse as fs, type GetSteamTransaction as ft, type GetSteamTransactionErrors as fu, type GetSteamTransactionError as fv, type GetSteamTransactionResponses as fw, type GetSteamTransactionResponse as fx, type GetAdminAssetBundle as fy, type GetAdminAssetBundleResponses as fz, type TransactionId as g, type CreateGlobalAvatarModerationResponse as g$, type GetAssignedPermissionsErrors as g0, type GetAssignedPermissionsError as g1, type GetAssignedPermissionsResponses as g2, type GetAssignedPermissionsResponse as g3, type RegisterUserAccount as g4, type RegisterUserAccountErrors as g5, type RegisterUserAccountError as g6, type RegisterUserAccountResponses as g7, type RegisterUserAccountResponse as g8, type Disable2Fa as g9, type VerifyPending2FaError as gA, type VerifyPending2FaResponses as gB, type VerifyPending2FaResponse as gC, type Verify2Fa as gD, type Verify2FaErrors as gE, type Verify2FaError as gF, type Verify2FaResponses as gG, type Verify2FaResponse as gH, type GetCurrentUser as gI, type GetCurrentUserErrors as gJ, type GetCurrentUserError as gK, type GetCurrentUserResponses as gL, type GetCurrentUserResponse as gM, type DeleteGlobalAvatarModeration as gN, type DeleteGlobalAvatarModerationErrors as gO, type DeleteGlobalAvatarModerationError as gP, type DeleteGlobalAvatarModerationResponses as gQ, type DeleteGlobalAvatarModerationResponse as gR, type GetGlobalAvatarModerations as gS, type GetGlobalAvatarModerationsErrors as gT, type GetGlobalAvatarModerationsError as gU, type GetGlobalAvatarModerationsResponses as gV, type GetGlobalAvatarModerationsResponse as gW, type CreateGlobalAvatarModeration as gX, type CreateGlobalAvatarModerationErrors as gY, type CreateGlobalAvatarModerationError as gZ, type CreateGlobalAvatarModerationResponses as g_, type Disable2FaErrors as ga, type Disable2FaError as gb, type Disable2FaResponses as gc, type Disable2FaResponse as gd, type Verify2FaEmailCode as ge, type Verify2FaEmailCodeErrors as gf, type Verify2FaEmailCodeError as gg, type Verify2FaEmailCodeResponses as gh, type Verify2FaEmailCodeResponse as gi, type VerifyRecoveryCode as gj, type VerifyRecoveryCodeErrors as gk, type VerifyRecoveryCodeError as gl, type VerifyRecoveryCodeResponses as gm, type VerifyRecoveryCodeResponse as gn, type CancelPending2Fa as go, type CancelPending2FaErrors as gp, type CancelPending2FaError as gq, type CancelPending2FaResponses as gr, type CancelPending2FaResponse as gs, type Enable2Fa as gt, type Enable2FaErrors as gu, type Enable2FaError as gv, type Enable2FaResponses as gw, type Enable2FaResponse as gx, type VerifyPending2Fa as gy, type VerifyPending2FaErrors as gz, type TransactionStatus as h, type ResendEmailConfirmationResponses as h$, type GetFavoriteLimits as h0, type GetFavoriteLimitsErrors as h1, type GetFavoriteLimitsError as h2, type GetFavoriteLimitsResponses as h3, type GetFavoriteLimitsResponse as h4, type GetFriends as h5, type GetFriendsErrors as h6, type GetFriendsError as h7, type GetFriendsResponses as h8, type GetFriendsResponse as h9, type DeleteNotificationErrors as hA, type DeleteNotificationError as hB, type DeleteNotificationResponses as hC, type DeleteNotificationResponse as hD, type MarkNotificationAsRead as hE, type MarkNotificationAsReadErrors as hF, type MarkNotificationAsReadError as hG, type MarkNotificationAsReadResponses as hH, type MarkNotificationAsReadResponse as hI, type ClearAllPlayerModerations as hJ, type ClearAllPlayerModerationsErrors as hK, type ClearAllPlayerModerationsError as hL, type ClearAllPlayerModerationsResponses as hM, type ClearAllPlayerModerationsResponse as hN, type GetPlayerModerations as hO, type GetPlayerModerationsErrors as hP, type GetPlayerModerationsError as hQ, type GetPlayerModerationsResponses as hR, type GetPlayerModerationsResponse as hS, type ModerateUser as hT, type ModerateUserErrors as hU, type ModerateUserError as hV, type ModerateUserResponses as hW, type ModerateUserResponse as hX, type ResendEmailConfirmation as hY, type ResendEmailConfirmationErrors as hZ, type ResendEmailConfirmationError as h_, type Unfriend as ha, type UnfriendErrors as hb, type UnfriendError as hc, type UnfriendResponses as hd, type UnfriendResponse as he, type GetNotifications as hf, type GetNotificationsErrors as hg, type GetNotificationsError as hh, type GetNotificationsResponses as hi, type GetNotificationsResponse as hj, type ClearNotifications as hk, type ClearNotificationsErrors as hl, type ClearNotificationsError as hm, type ClearNotificationsResponses as hn, type ClearNotificationsResponse as ho, type GetNotification as hp, type GetNotificationErrors as hq, type GetNotificationError as hr, type GetNotificationResponses as hs, type GetNotificationResponse as ht, type AcceptFriendRequest as hu, type AcceptFriendRequestErrors as hv, type AcceptFriendRequestError as hw, type AcceptFriendRequestResponses as hx, type AcceptFriendRequestResponse as hy, type DeleteNotification as hz, type TransactionSteamWalletInfo as i, type DeleteImpostorErrors as i$, type ResendEmailConfirmationResponse as i0, type GetCurrentSubscriptions as i1, type GetCurrentSubscriptionsErrors as i2, type GetCurrentSubscriptionsError as i3, type GetCurrentSubscriptionsResponses as i4, type GetCurrentSubscriptionsResponse as i5, type GetRecoveryCodes as i6, type GetRecoveryCodesErrors as i7, type GetRecoveryCodesError as i8, type GetRecoveryCodesResponses as i9, type GetFavoritedAvatarsResponse as iA, type GetImpostorQueueStats as iB, type GetImpostorQueueStatsErrors as iC, type GetImpostorQueueStatsError as iD, type GetImpostorQueueStatsResponses as iE, type GetImpostorQueueStatsResponse as iF, type GetLicensedAvatars as iG, type GetLicensedAvatarsErrors as iH, type GetLicensedAvatarsError as iI, type GetLicensedAvatarsResponses as iJ, type GetLicensedAvatarsResponse as iK, type DeleteAvatar as iL, type DeleteAvatarErrors as iM, type DeleteAvatarError as iN, type DeleteAvatarResponses as iO, type DeleteAvatarResponse as iP, type GetAvatar as iQ, type GetAvatarErrors as iR, type GetAvatarError as iS, type GetAvatarResponses as iT, type GetAvatarResponse as iU, type UpdateAvatar as iV, type UpdateAvatarErrors as iW, type UpdateAvatarError as iX, type UpdateAvatarResponses as iY, type UpdateAvatarResponse as iZ, type DeleteImpostor as i_, type GetRecoveryCodesResponse as ia, type UnmoderateUser as ib, type UnmoderateUserErrors as ic, type UnmoderateUserError as id, type UnmoderateUserResponses as ie, type UnmoderateUserResponse as ig, type VerifyLoginPlace as ih, type GetAvatarStyles as ii, type GetAvatarStylesResponses as ij, type GetAvatarStylesResponse as ik, type SearchAvatars as il, type SearchAvatarsErrors as im, type SearchAvatarsError as io, type SearchAvatarsResponses as ip, type SearchAvatarsResponse as iq, type CreateAvatar as ir, type CreateAvatarErrors as is, type CreateAvatarError as it, type CreateAvatarResponses as iu, type CreateAvatarResponse as iv, type GetFavoritedAvatars as iw, type GetFavoritedAvatarsErrors as ix, type GetFavoritedAvatarsError as iy, type GetFavoritedAvatarsResponses as iz, type TransactionSteamInfo as j, type GetGroupCalendarEventIcsErrors as j$, type DeleteImpostorError as j0, type DeleteImpostorResponses as j1, type EnqueueImpostor as j2, type EnqueueImpostorErrors as j3, type EnqueueImpostorError as j4, type EnqueueImpostorResponses as j5, type EnqueueImpostorResponse as j6, type SelectAvatar as j7, type SelectAvatarErrors as j8, type SelectAvatarError as j9, type GetFollowedCalendarEventsResponse as jA, type SearchCalendarEvents as jB, type SearchCalendarEventsErrors as jC, type SearchCalendarEventsError as jD, type SearchCalendarEventsResponses as jE, type SearchCalendarEventsResponse as jF, type GetGroupCalendarEvents as jG, type GetGroupCalendarEventsErrors as jH, type GetGroupCalendarEventsError as jI, type GetGroupCalendarEventsResponses as jJ, type GetGroupCalendarEventsResponse as jK, type CreateGroupCalendarEvent as jL, type CreateGroupCalendarEventErrors as jM, type CreateGroupCalendarEventError as jN, type CreateGroupCalendarEventResponses as jO, type CreateGroupCalendarEventResponse as jP, type DeleteGroupCalendarEvent as jQ, type DeleteGroupCalendarEventErrors as jR, type DeleteGroupCalendarEventError as jS, type DeleteGroupCalendarEventResponses as jT, type DeleteGroupCalendarEventResponse as jU, type GetGroupCalendarEvent as jV, type GetGroupCalendarEventErrors as jW, type GetGroupCalendarEventError as jX, type GetGroupCalendarEventResponses as jY, type GetGroupCalendarEventResponse as jZ, type GetGroupCalendarEventIcs as j_, type SelectAvatarResponses as ja, type SelectAvatarResponse as jb, type SelectFallbackAvatar as jc, type SelectFallbackAvatarErrors as jd, type SelectFallbackAvatarError as je, type SelectFallbackAvatarResponses as jf, type SelectFallbackAvatarResponse as jg, type GetCalendarEvents as jh, type GetCalendarEventsErrors as ji, type GetCalendarEventsError as jj, type GetCalendarEventsResponses as jk, type GetCalendarEventsResponse as jl, type DiscoverCalendarEvents as jm, type DiscoverCalendarEventsErrors as jn, type DiscoverCalendarEventsError as jo, type DiscoverCalendarEventsResponses as jp, type DiscoverCalendarEventsResponse as jq, type GetFeaturedCalendarEvents as jr, type GetFeaturedCalendarEventsErrors as js, type GetFeaturedCalendarEventsError as jt, type GetFeaturedCalendarEventsResponses as ju, type GetFeaturedCalendarEventsResponse as jv, type GetFollowedCalendarEvents as jw, type GetFollowedCalendarEventsErrors as jx, type GetFollowedCalendarEventsError as jy, type GetFollowedCalendarEventsResponses as jz, type Subscription as k, type GetFavoritesResponse as k$, type GetGroupCalendarEventIcsError as k0, type GetGroupCalendarEventIcsResponses as k1, type GetGroupCalendarEventIcsResponse as k2, type UpdateGroupCalendarEvent as k3, type UpdateGroupCalendarEventErrors as k4, type UpdateGroupCalendarEventError as k5, type UpdateGroupCalendarEventResponses as k6, type UpdateGroupCalendarEventResponse as k7, type FollowGroupCalendarEvent as k8, type FollowGroupCalendarEventErrors as k9, type GetStore as kA, type GetStoreErrors as kB, type GetStoreError as kC, type GetStoreResponses as kD, type GetStoreResponse as kE, type GetStoreShelves as kF, type GetStoreShelvesErrors as kG, type GetStoreShelvesError as kH, type GetStoreShelvesResponses as kI, type GetStoreShelvesResponse as kJ, type ClearFavoriteGroup as kK, type ClearFavoriteGroupResponses as kL, type ClearFavoriteGroupResponse as kM, type GetFavoriteGroup as kN, type GetFavoriteGroupResponses as kO, type GetFavoriteGroupResponse as kP, type UpdateFavoriteGroup as kQ, type UpdateFavoriteGroupResponses as kR, type GetFavoriteGroups as kS, type GetFavoriteGroupsErrors as kT, type GetFavoriteGroupsError as kU, type GetFavoriteGroupsResponses as kV, type GetFavoriteGroupsResponse as kW, type GetFavorites as kX, type GetFavoritesErrors as kY, type GetFavoritesError as kZ, type GetFavoritesResponses as k_, type FollowGroupCalendarEventError as ka, type FollowGroupCalendarEventResponses as kb, type FollowGroupCalendarEventResponse as kc, type GetConfig as kd, type GetConfigResponses as ke, type GetConfigResponse as kf, type GetCss as kg, type GetCssErrors as kh, type GetCssError as ki, type GetCssResponses as kj, type GetCssResponse as kk, type GetActiveLicenses as kl, type GetActiveLicensesErrors as km, type GetActiveLicensesError as kn, type GetActiveLicensesResponses as ko, type GetActiveLicensesResponse as kp, type PurchaseProductListing as kq, type PurchaseProductListingErrors as kr, type PurchaseProductListingError as ks, type PurchaseProductListingResponses as kt, type PurchaseProductListingResponse as ku, type GetProductPurchases as kv, type GetProductPurchasesErrors as kw, type GetProductPurchasesError as kx, type GetProductPurchasesResponses as ky, type GetProductPurchasesResponse as kz, type Transaction as l, type CreateGroupError as l$, type AddFavorite as l0, type AddFavoriteErrors as l1, type AddFavoriteError as l2, type AddFavoriteResponses as l3, type AddFavoriteResponse as l4, type RemoveFavorite as l5, type RemoveFavoriteErrors as l6, type RemoveFavoriteError as l7, type RemoveFavoriteResponses as l8, type RemoveFavoriteResponse as l9, type DownloadFileVersionError as lA, type DownloadFileVersionResponses as lB, type DownloadFileVersionResponse as lC, type FinishFileDataUpload as lD, type FinishFileDataUploadResponses as lE, type FinishFileDataUploadResponse as lF, type StartFileDataUpload as lG, type StartFileDataUploadErrors as lH, type StartFileDataUploadError as lI, type StartFileDataUploadResponses as lJ, type StartFileDataUploadResponse as lK, type GetFileDataUploadStatus as lL, type GetFileDataUploadStatusResponses as lM, type GetFileDataUploadStatusResponse as lN, type GetFiles as lO, type GetFilesResponses as lP, type GetFilesResponse as lQ, type UploadGalleryImage as lR, type UploadGalleryImageResponses as lS, type UploadGalleryImageResponse as lT, type SearchGroups as lU, type SearchGroupsErrors as lV, type SearchGroupsError as lW, type SearchGroupsResponses as lX, type SearchGroupsResponse as lY, type CreateGroup as lZ, type CreateGroupErrors as l_, type CreateFile as la, type CreateFileResponses as lb, type CreateFileResponse as lc, type UploadImage as ld, type UploadImageResponses as le, type UploadImageResponse as lf, type DeleteFile as lg, type DeleteFileErrors as lh, type DeleteFileError as li, type DeleteFileResponses as lj, type DeleteFileResponse as lk, type GetFile as ll, type GetFileErrors as lm, type GetFileError as ln, type GetFileResponses as lo, type GetFileResponse as lp, type CreateFileVersion as lq, type CreateFileVersionResponses as lr, type CreateFileVersionResponse as ls, type DeleteFileVersion as lt, type DeleteFileVersionErrors as lu, type DeleteFileVersionError as lv, type DeleteFileVersionResponses as lw, type DeleteFileVersionResponse as lx, type DownloadFileVersion as ly, type DownloadFileVersionErrors as lz, type ReleaseStatus as m, type DeleteGroupGalleryErrors as m$, type CreateGroupResponses as m0, type CreateGroupResponse as m1, type GetGroupRoleTemplates as m2, type GetGroupRoleTemplatesErrors as m3, type GetGroupRoleTemplatesError as m4, type GetGroupRoleTemplatesResponses as m5, type GetGroupRoleTemplatesResponse as m6, type DeleteGroup as m7, type DeleteGroupErrors as m8, type DeleteGroupError as m9, type CreateGroupAnnouncementResponse as mA, type GetGroupAuditLogs as mB, type GetGroupAuditLogsErrors as mC, type GetGroupAuditLogsError as mD, type GetGroupAuditLogsResponses as mE, type GetGroupAuditLogsResponse as mF, type GetGroupBans as mG, type GetGroupBansErrors as mH, type GetGroupBansError as mI, type GetGroupBansResponses as mJ, type GetGroupBansResponse as mK, type BanGroupMember as mL, type BanGroupMemberErrors as mM, type BanGroupMemberError as mN, type BanGroupMemberResponses as mO, type BanGroupMemberResponse as mP, type UnbanGroupMember as mQ, type UnbanGroupMemberErrors as mR, type UnbanGroupMemberError as mS, type UnbanGroupMemberResponses as mT, type UnbanGroupMemberResponse as mU, type CreateGroupGallery as mV, type CreateGroupGalleryErrors as mW, type CreateGroupGalleryError as mX, type CreateGroupGalleryResponses as mY, type CreateGroupGalleryResponse as mZ, type DeleteGroupGallery as m_, type DeleteGroupResponses as ma, type DeleteGroupResponse as mb, type GetGroup as mc, type GetGroupErrors as md, type GetGroupError as me, type GetGroupResponses as mf, type GetGroupResponse as mg, type UpdateGroup as mh, type UpdateGroupErrors as mi, type UpdateGroupError as mj, type UpdateGroupResponses as mk, type UpdateGroupResponse as ml, type DeleteGroupAnnouncement as mm, type DeleteGroupAnnouncementErrors as mn, type DeleteGroupAnnouncementError as mo, type DeleteGroupAnnouncementResponses as mp, type DeleteGroupAnnouncementResponse as mq, type GetGroupAnnouncements as mr, type GetGroupAnnouncementsErrors as ms, type GetGroupAnnouncementsError as mt, type GetGroupAnnouncementsResponses as mu, type GetGroupAnnouncementsResponse as mv, type CreateGroupAnnouncement as mw, type CreateGroupAnnouncementErrors as mx, type CreateGroupAnnouncementError as my, type CreateGroupAnnouncementResponses as mz, type Tag as n, type GetGroupMemberResponse as n$, type DeleteGroupGalleryError as n0, type DeleteGroupGalleryResponses as n1, type DeleteGroupGalleryResponse as n2, type GetGroupGalleryImages as n3, type GetGroupGalleryImagesErrors as n4, type GetGroupGalleryImagesError as n5, type GetGroupGalleryImagesResponses as n6, type GetGroupGalleryImagesResponse as n7, type UpdateGroupGallery as n8, type UpdateGroupGalleryErrors as n9, type CreateGroupInviteResponses as nA, type DeleteGroupInvite as nB, type DeleteGroupInviteErrors as nC, type DeleteGroupInviteError as nD, type DeleteGroupInviteResponses as nE, type JoinGroup as nF, type JoinGroupErrors as nG, type JoinGroupError as nH, type JoinGroupResponses as nI, type JoinGroupResponse as nJ, type LeaveGroup as nK, type LeaveGroupErrors as nL, type LeaveGroupError as nM, type LeaveGroupResponses as nN, type GetGroupMembers as nO, type GetGroupMembersErrors as nP, type GetGroupMembersError as nQ, type GetGroupMembersResponses as nR, type GetGroupMembersResponse as nS, type KickGroupMember as nT, type KickGroupMemberErrors as nU, type KickGroupMemberError as nV, type KickGroupMemberResponses as nW, type GetGroupMember as nX, type GetGroupMemberErrors as nY, type GetGroupMemberError as nZ, type GetGroupMemberResponses as n_, type UpdateGroupGalleryError as na, type UpdateGroupGalleryResponses as nb, type UpdateGroupGalleryResponse as nc, type AddGroupGalleryImage as nd, type AddGroupGalleryImageErrors as ne, type AddGroupGalleryImageError as nf, type AddGroupGalleryImageResponses as ng, type AddGroupGalleryImageResponse as nh, type DeleteGroupGalleryImage as ni, type DeleteGroupGalleryImageErrors as nj, type DeleteGroupGalleryImageError as nk, type DeleteGroupGalleryImageResponses as nl, type DeleteGroupGalleryImageResponse as nm, type GetGroupInstances as nn, type GetGroupInstancesErrors as no, type GetGroupInstancesError as np, type GetGroupInstancesResponses as nq, type GetGroupInstancesResponse as nr, type GetGroupInvites as ns, type GetGroupInvitesErrors as nt, type GetGroupInvitesError as nu, type GetGroupInvitesResponses as nv, type GetGroupInvitesResponse as nw, type CreateGroupInvite as nx, type CreateGroupInviteErrors as ny, type CreateGroupInviteError as nz, type AdminAssetBundle as o, type CreateGroupRole as o$, type UpdateGroupMember as o0, type UpdateGroupMemberErrors as o1, type UpdateGroupMemberError as o2, type UpdateGroupMemberResponses as o3, type UpdateGroupMemberResponse as o4, type RemoveGroupMemberRole as o5, type RemoveGroupMemberRoleErrors as o6, type RemoveGroupMemberRoleError as o7, type RemoveGroupMemberRoleResponses as o8, type RemoveGroupMemberRoleResponse as o9, type UpdateGroupPostErrors as oA, type UpdateGroupPostError as oB, type UpdateGroupPostResponses as oC, type UpdateGroupPostResponse as oD, type UpdateGroupRepresentation as oE, type UpdateGroupRepresentationErrors as oF, type UpdateGroupRepresentationError as oG, type UpdateGroupRepresentationResponses as oH, type UpdateGroupRepresentationResponse as oI, type CancelGroupRequest as oJ, type CancelGroupRequestErrors as oK, type CancelGroupRequestError as oL, type CancelGroupRequestResponses as oM, type GetGroupRequests as oN, type GetGroupRequestsErrors as oO, type GetGroupRequestsError as oP, type GetGroupRequestsResponses as oQ, type GetGroupRequestsResponse as oR, type RespondGroupJoinRequest2 as oS, type RespondGroupJoinRequestErrors as oT, type RespondGroupJoinRequestError as oU, type RespondGroupJoinRequestResponses as oV, type GetGroupRoles as oW, type GetGroupRolesErrors as oX, type GetGroupRolesError as oY, type GetGroupRolesResponses as oZ, type GetGroupRolesResponse as o_, type AddGroupMemberRole as oa, type AddGroupMemberRoleErrors as ob, type AddGroupMemberRoleError as oc, type AddGroupMemberRoleResponses as od, type AddGroupMemberRoleResponse as oe, type GetGroupPermissions as of, type GetGroupPermissionsErrors as og, type GetGroupPermissionsError as oh, type GetGroupPermissionsResponses as oi, type GetGroupPermissionsResponse as oj, type GetGroupPosts as ok, type GetGroupPostsErrors as ol, type GetGroupPostsError as om, type GetGroupPostsResponses as on, type GetGroupPostsResponse as oo, type AddGroupPost as op, type AddGroupPostErrors as oq, type AddGroupPostError as or, type AddGroupPostResponses as os, type AddGroupPostResponse as ot, type DeleteGroupPost as ou, type DeleteGroupPostErrors as ov, type DeleteGroupPostError as ow, type DeleteGroupPostResponses as ox, type DeleteGroupPostResponse as oy, type UpdateGroupPost as oz, type FileAnalysis as p, type ShareInventoryItemPedestal as p$, type CreateGroupRoleErrors as p0, type CreateGroupRoleError as p1, type CreateGroupRoleResponses as p2, type CreateGroupRoleResponse as p3, type DeleteGroupRole as p4, type DeleteGroupRoleErrors as p5, type DeleteGroupRoleError as p6, type DeleteGroupRoleResponses as p7, type DeleteGroupRoleResponse as p8, type UpdateGroupRole as p9, type GetInstanceByShortNameResponses as pA, type GetInstanceByShortNameResponse as pB, type CloseInstance as pC, type CloseInstanceErrors as pD, type CloseInstanceError as pE, type CloseInstanceResponses as pF, type CloseInstanceResponse as pG, type GetInstance as pH, type GetInstanceErrors as pI, type GetInstanceError as pJ, type GetInstanceResponses as pK, type GetInstanceResponse as pL, type GetShortName as pM, type GetShortNameErrors as pN, type GetShortNameError as pO, type GetShortNameResponses as pP, type GetShortNameResponse as pQ, type GetInventory as pR, type GetInventoryErrors as pS, type GetInventoryError as pT, type GetInventoryResponses as pU, type GetInventoryResponse as pV, type ShareInventoryItemDirect as pW, type ShareInventoryItemDirectErrors as pX, type ShareInventoryItemDirectError as pY, type ShareInventoryItemDirectResponses as pZ, type ShareInventoryItemDirectResponse as p_, type UpdateGroupRoleErrors as pa, type UpdateGroupRoleError as pb, type UpdateGroupRoleResponses as pc, type UpdateGroupRoleResponse as pd, type GetHealth as pe, type GetHealthResponses as pf, type GetHealthResponse as pg, type UploadIcon as ph, type UploadIconResponses as pi, type UploadIconResponse as pj, type GetInfoPush as pk, type GetInfoPushResponses as pl, type GetInfoPushResponse as pm, type CreateInstance as pn, type CreateInstanceErrors as po, type CreateInstanceError as pp, type CreateInstanceResponses as pq, type CreateInstanceResponse as pr, type GetRecentLocations as ps, type GetRecentLocationsErrors as pt, type GetRecentLocationsError as pu, type GetRecentLocationsResponses as pv, type GetRecentLocationsResponse as pw, type GetInstanceByShortName as px, type GetInstanceByShortNameErrors as py, type GetInstanceByShortNameError as pz, type VerifyAuthTokenResult as q, type RespondInviteWithPhotoResponse as q$, type ShareInventoryItemPedestalErrors as q0, type ShareInventoryItemPedestalError as q1, type ShareInventoryItemPedestalResponses as q2, type ShareInventoryItemPedestalResponse as q3, type GetInventoryDrops as q4, type GetInventoryDropsErrors as q5, type GetInventoryDropsError as q6, type GetInventoryDropsResponses as q7, type GetInventoryDropsResponse as q8, type SpawnInventoryItem as q9, type ConsumeOwnInventoryItemError as qA, type ConsumeOwnInventoryItemResponses as qB, type ConsumeOwnInventoryItemResponse as qC, type UnequipOwnInventorySlot as qD, type UnequipOwnInventorySlotErrors as qE, type UnequipOwnInventorySlotError as qF, type UnequipOwnInventorySlotResponses as qG, type UnequipOwnInventorySlotResponse as qH, type EquipOwnInventoryItem as qI, type EquipOwnInventoryItemErrors as qJ, type EquipOwnInventoryItemError as qK, type EquipOwnInventoryItemResponses as qL, type EquipOwnInventoryItemResponse as qM, type InviteMyselfTo as qN, type InviteMyselfToErrors as qO, type InviteMyselfToError as qP, type InviteMyselfToResponses as qQ, type InviteMyselfToResponse as qR, type RespondInvite as qS, type RespondInviteErrors as qT, type RespondInviteError as qU, type RespondInviteResponses as qV, type RespondInviteResponse as qW, type RespondInviteWithPhoto as qX, type RespondInviteWithPhotoErrors as qY, type RespondInviteWithPhotoError as qZ, type RespondInviteWithPhotoResponses as q_, type SpawnInventoryItemErrors as qa, type SpawnInventoryItemError as qb, type SpawnInventoryItemResponses as qc, type SpawnInventoryItemResponse as qd, type GetInventoryTemplate as qe, type GetInventoryTemplateErrors as qf, type GetInventoryTemplateError as qg, type GetInventoryTemplateResponses as qh, type GetInventoryTemplateResponse as qi, type DeleteOwnInventoryItem as qj, type DeleteOwnInventoryItemErrors as qk, type DeleteOwnInventoryItemError as ql, type DeleteOwnInventoryItemResponses as qm, type DeleteOwnInventoryItemResponse as qn, type GetOwnInventoryItem as qo, type GetOwnInventoryItemErrors as qp, type GetOwnInventoryItemError as qq, type GetOwnInventoryItemResponses as qr, type GetOwnInventoryItemResponse as qs, type UpdateOwnInventoryItem as qt, type UpdateOwnInventoryItemErrors as qu, type UpdateOwnInventoryItemError as qv, type UpdateOwnInventoryItemResponses as qw, type UpdateOwnInventoryItemResponse as qx, type ConsumeOwnInventoryItem as qy, type ConsumeOwnInventoryItemErrors as qz, type UserExists as r, type GetPermission as r$, type InviteUser as r0, type InviteUserErrors as r1, type InviteUserError as r2, type InviteUserResponses as r3, type InviteUserResponse as r4, type InviteUserWithPhoto as r5, type InviteUserWithPhotoErrors as r6, type InviteUserWithPhotoError as r7, type InviteUserWithPhotoResponses as r8, type InviteUserWithPhotoResponse as r9, type GetProductListingResponses as rA, type GetProductListingResponse as rB, type Logout as rC, type LogoutErrors as rD, type LogoutError as rE, type LogoutResponses as rF, type LogoutResponse as rG, type GetInviteMessages as rH, type GetInviteMessagesErrors as rI, type GetInviteMessagesError as rJ, type GetInviteMessagesResponses as rK, type GetInviteMessagesResponse as rL, type ResetInviteMessage as rM, type ResetInviteMessageErrors as rN, type ResetInviteMessageError as rO, type ResetInviteMessageResponses as rP, type ResetInviteMessageResponse as rQ, type GetInviteMessage as rR, type GetInviteMessageErrors as rS, type GetInviteMessageError as rT, type GetInviteMessageResponses as rU, type GetInviteMessageResponse as rV, type UpdateInviteMessage as rW, type UpdateInviteMessageErrors as rX, type UpdateInviteMessageError as rY, type UpdateInviteMessageResponses as rZ, type UpdateInviteMessageResponse as r_, type GetJams as ra, type GetJamsResponses as rb, type GetJamsResponse as rc, type GetJam as rd, type GetJamErrors as re, type GetJamError as rf, type GetJamResponses as rg, type GetJamResponse as rh, type GetJamSubmissions as ri, type GetJamSubmissionsErrors as rj, type GetJamSubmissionsError as rk, type GetJamSubmissionsResponses as rl, type GetJamSubmissionsResponse as rm, type GetJavaScript as rn, type GetJavaScriptErrors as ro, type GetJavaScriptError as rp, type GetJavaScriptResponses as rq, type GetJavaScriptResponse as rr, type GetLicenseGroup as rs, type GetLicenseGroupErrors as rt, type GetLicenseGroupError as ru, type GetLicenseGroupResponses as rv, type GetLicenseGroupResponse as rw, type GetProductListing as rx, type GetProductListingErrors as ry, type GetProductListingError as rz, type PermissionId as s, type GetTokenBundlesError as s$, type GetPermissionErrors as s0, type GetPermissionError as s1, type GetPermissionResponses as s2, type GetPermissionResponse as s3, type UploadPrint as s4, type UploadPrintErrors as s5, type UploadPrintError as s6, type UploadPrintResponses as s7, type UploadPrintResponse as s8, type GetUserPrints as s9, type GetPropResponses as sA, type GetPropResponse as sB, type RequestInvite as sC, type RequestInviteErrors as sD, type RequestInviteError as sE, type RequestInviteResponses as sF, type RequestInviteResponse as sG, type RequestInviteWithPhoto as sH, type RequestInviteWithPhotoErrors as sI, type RequestInviteWithPhotoError as sJ, type RequestInviteWithPhotoResponses as sK, type RequestInviteWithPhotoResponse as sL, type GetSubscriptions as sM, type GetSubscriptionsErrors as sN, type GetSubscriptionsError as sO, type GetSubscriptionsResponses as sP, type GetSubscriptionsResponse as sQ, type GetTiliaStatus as sR, type GetTiliaStatusErrors as sS, type GetTiliaStatusError as sT, type GetTiliaStatusResponses as sU, type GetTiliaStatusResponse as sV, type GetSystemTime as sW, type GetSystemTimeResponses as sX, type GetSystemTimeResponse as sY, type GetTokenBundles as sZ, type GetTokenBundlesErrors as s_, type GetUserPrintsErrors as sa, type GetUserPrintsError as sb, type GetUserPrintsResponses as sc, type GetUserPrintsResponse as sd, type DeletePrint as se, type DeletePrintErrors as sf, type DeletePrintError as sg, type DeletePrintResponses as sh, type GetPrint as si, type GetPrintErrors as sj, type GetPrintError as sk, type GetPrintResponses as sl, type GetPrintResponse as sm, type EditPrint as sn, type EditPrintErrors as so, type EditPrintError as sp, type EditPrintResponses as sq, type EditPrintResponse as sr, type GetProductListingAlternate as ss, type GetProductListingAlternateErrors as st, type GetProductListingAlternateError as su, type GetProductListingAlternateResponses as sv, type GetProductListingAlternateResponse as sw, type GetProp as sx, type GetPropErrors as sy, type GetPropError as sz, type Permission as t, type UpdateUserNoteErrors as t$, type GetTokenBundlesResponses as t0, type GetTokenBundlesResponse as t1, type GetBulkGiftPurchases as t2, type GetBulkGiftPurchasesErrors as t3, type GetBulkGiftPurchasesError as t4, type GetBulkGiftPurchasesResponses as t5, type GetBulkGiftPurchasesResponse as t6, type GetRecentSubscription as t7, type GetRecentSubscriptionErrors as t8, type GetRecentSubscriptionError as t9, type FriendResponse as tA, type GetFriendStatus as tB, type GetFriendStatusErrors as tC, type GetFriendStatusError as tD, type GetFriendStatusResponses as tE, type GetFriendStatusResponse as tF, type GetProductListings as tG, type GetProductListingsErrors as tH, type GetProductListingsError as tI, type GetProductListingsResponses as tJ, type GetProductListingsResponse as tK, type GetTiliaTos as tL, type GetTiliaTosErrors as tM, type GetTiliaTosError as tN, type GetTiliaTosResponses as tO, type GetTiliaTosResponse as tP, type UpdateTiliaTos as tQ, type UpdateTiliaTosErrors as tR, type UpdateTiliaTosError as tS, type UpdateTiliaTosResponses as tT, type UpdateTiliaTosResponse as tU, type GetUserNotes as tV, type GetUserNotesErrors as tW, type GetUserNotesError as tX, type GetUserNotesResponses as tY, type GetUserNotesResponse as tZ, type UpdateUserNote as t_, type GetRecentSubscriptionResponses as ta, type GetRecentSubscriptionResponse as tb, type GetBalance as tc, type GetBalanceErrors as td, type GetBalanceError as te, type GetBalanceResponses as tf, type GetBalanceResponse as tg, type GetBalanceEarnings as th, type GetBalanceEarningsErrors as ti, type GetBalanceEarningsError as tj, type GetBalanceEarningsResponses as tk, type GetBalanceEarningsResponse as tl, type GetEconomyAccount as tm, type GetEconomyAccountErrors as tn, type GetEconomyAccountError as to, type GetEconomyAccountResponses as tp, type GetEconomyAccountResponse as tq, type DeleteFriendRequest as tr, type DeleteFriendRequestErrors as ts, type DeleteFriendRequestError as tt, type DeleteFriendRequestResponses as tu, type DeleteFriendRequestResponse as tv, type Friend as tw, type FriendErrors as tx, type FriendError as ty, type FriendResponses as tz, type RegisterUserAccountRequest as u, type GetUserRepresentedGroupErrors as u$, type UpdateUserNoteError as u0, type UpdateUserNoteResponses as u1, type UpdateUserNoteResponse as u2, type GetUserNote as u3, type GetUserNoteErrors as u4, type GetUserNoteError as u5, type GetUserNoteResponses as u6, type GetUserNoteResponse as u7, type SearchUsers as u8, type SearchUsersErrors as u9, type UpdateBadgeResponses as uA, type Boop as uB, type BoopErrors as uC, type BoopError as uD, type BoopResponses as uE, type BoopResponse as uF, type GetUserCreditsEligible as uG, type GetUserCreditsEligibleErrors as uH, type GetUserCreditsEligibleError as uI, type GetUserCreditsEligibleResponses as uJ, type GetUserCreditsEligibleResponse as uK, type DeleteUser as uL, type DeleteUserErrors as uM, type DeleteUserError as uN, type DeleteUserResponses as uO, type DeleteUserResponse as uP, type GetUserFeedback as uQ, type GetUserFeedbackErrors as uR, type GetUserFeedbackError as uS, type GetUserFeedbackResponses as uT, type GetUserFeedbackResponse as uU, type GetUserGroups as uV, type GetUserGroupsErrors as uW, type GetUserGroupsError as uX, type GetUserGroupsResponses as uY, type GetUserGroupsResponse as uZ, type GetUserRepresentedGroup as u_, type SearchUsersError as ua, type SearchUsersResponses as ub, type SearchUsersResponse as uc, type GetUser as ud, type GetUserErrors as ue, type GetUserError as uf, type GetUserResponses as ug, type GetUserResponse as uh, type UpdateUser as ui, type UpdateUserErrors as uj, type UpdateUserError as uk, type UpdateUserResponses as ul, type UpdateUserResponse as um, type AddTags as un, type AddTagsErrors as uo, type AddTagsError as up, type AddTagsResponses as uq, type AddTagsResponse as ur, type GetOwnAvatar as us, type GetOwnAvatarErrors as ut, type GetOwnAvatarError as uu, type GetOwnAvatarResponses as uv, type GetOwnAvatarResponse as uw, type UpdateBadge as ux, type UpdateBadgeErrors as uy, type UpdateBadgeError as uz, type AccountDeletionLog as v, type SearchWorldsResponse as v$, type GetUserRepresentedGroupError as v0, type GetUserRepresentedGroupResponses as v1, type GetUserRepresentedGroupResponse as v2, type GetUserGroupRequests as v3, type GetUserGroupRequestsErrors as v4, type GetUserGroupRequestsError as v5, type GetUserGroupRequestsResponses as v6, type GetUserGroupRequestsResponse as v7, type GetUserGroupInstances as v8, type GetUserGroupInstancesErrors as v9, type RemoveTagsResponses as vA, type RemoveTagsResponse as vB, type GetUserSubscriptionEligible as vC, type GetUserSubscriptionEligibleErrors as vD, type GetUserSubscriptionEligibleError as vE, type GetUserSubscriptionEligibleResponses as vF, type GetUserSubscriptionEligibleResponse as vG, type DeleteUserPersistence as vH, type DeleteUserPersistenceErrors as vI, type DeleteUserPersistenceError as vJ, type DeleteUserPersistenceResponses as vK, type CheckUserPersistenceExists as vL, type CheckUserPersistenceExistsErrors as vM, type CheckUserPersistenceExistsError as vN, type CheckUserPersistenceExistsResponses as vO, type GetUserByName as vP, type GetUserByNameErrors as vQ, type GetUserByNameError as vR, type GetUserByNameResponses as vS, type GetUserByNameResponse as vT, type GetCurrentOnlineUsers as vU, type GetCurrentOnlineUsersResponses as vV, type GetCurrentOnlineUsersResponse as vW, type SearchWorlds as vX, type SearchWorldsErrors as vY, type SearchWorldsError as vZ, type SearchWorldsResponses as v_, type GetUserGroupInstancesError as va, type GetUserGroupInstancesResponses as vb, type GetUserGroupInstancesResponse as vc, type GetUserGroupInstancesForGroup as vd, type GetUserGroupInstancesForGroupErrors as ve, type GetUserGroupInstancesForGroupError as vf, type GetUserGroupInstancesForGroupResponses as vg, type GetUserGroupInstancesForGroupResponse as vh, type GetMutuals as vi, type GetMutualsErrors as vj, type GetMutualsError as vk, type GetMutualsResponses as vl, type GetMutualsResponse as vm, type GetMutualFriends as vn, type GetMutualFriendsErrors as vo, type GetMutualFriendsError as vp, type GetMutualFriendsResponses as vq, type GetMutualFriendsResponse as vr, type GetMutualGroups as vs, type GetMutualGroupsErrors as vt, type GetMutualGroupsError as vu, type GetMutualGroupsResponses as vv, type GetMutualGroupsResponse as vw, type RemoveTags as vx, type RemoveTagsErrors as vy, type RemoveTagsError as vz, type AgeVerificationStatus as w, type CreateWorld as w0, type CreateWorldErrors as w1, type CreateWorldError as w2, type CreateWorldResponses as w3, type CreateWorldResponse as w4, type GetActiveWorlds as w5, type GetActiveWorldsErrors as w6, type GetActiveWorldsError as w7, type GetActiveWorldsResponses as w8, type GetActiveWorldsResponse as w9, type GetWorldMetadataError as wA, type GetWorldMetadataResponses as wB, type GetWorldMetadataResponse as wC, type UnpublishWorld as wD, type UnpublishWorldErrors as wE, type UnpublishWorldError as wF, type UnpublishWorldResponses as wG, type GetWorldPublishStatus as wH, type GetWorldPublishStatusErrors as wI, type GetWorldPublishStatusError as wJ, type GetWorldPublishStatusResponses as wK, type GetWorldPublishStatusResponse as wL, type PublishWorld as wM, type PublishWorldErrors as wN, type PublishWorldError as wO, type PublishWorldResponses as wP, type GetWorldInstance as wQ, type GetWorldInstanceErrors as wR, type GetWorldInstanceError as wS, type GetWorldInstanceResponses as wT, type GetWorldInstanceResponse as wU, type VRChatWebsocketOptions as wV, VRChatWebsocket as wW, type GetFavoritedWorlds as wa, type GetFavoritedWorldsErrors as wb, type GetFavoritedWorldsError as wc, type GetFavoritedWorldsResponses as wd, type GetFavoritedWorldsResponse as we, type GetRecentWorlds as wf, type GetRecentWorldsErrors as wg, type GetRecentWorldsError as wh, type GetRecentWorldsResponses as wi, type GetRecentWorldsResponse as wj, type DeleteWorld as wk, type DeleteWorldErrors as wl, type DeleteWorldError as wm, type DeleteWorldResponses as wn, type GetWorld as wo, type GetWorldErrors as wp, type GetWorldError as wq, type GetWorldResponses as wr, type GetWorldResponse as ws, type UpdateWorld as wt, type UpdateWorldErrors as wu, type UpdateWorldError as wv, type UpdateWorldResponses as ww, type UpdateWorldResponse as wx, type GetWorldMetadata as wy, type GetWorldMetadataErrors as wz, type AgeVerified as x, type Badge as y, type AvatarId as z };
|
|
14620
|
+
export { type Verify2FaEmailCodeResult as $, type AdminUnityPackage as A, type BadgeId as B, type ClientOptions as C, type CurrentAvatarImageUrl as D, type CurrentAvatarThumbnailImageUrl as E, type FileAnalysisAvatarStats as F, type DeveloperType as G, type DiscordId as H, type DiscordDetails as I, type PastDisplayName as J, type GroupId as K, type LoginCredentials as L, type LocationId as M, type CurrentUserPresence as N, type UserState as O, type Platform as P, type UserStatus as Q, type Response$1 as R, type SubscriptionPeriod as S, TwoFactorMethods as T, type UserId as U, VRChat as V, type WorldId as W, type CurrentUser as X, type Disable2FaResult as Y, type TwoFactorEmailCode as Z, type _Error as _, VRChatError as a, type PurchaseProductListingRequest as a$, type TwoFactorAuthCode as a0, type Verify2FaResult as a1, type Pending2FaResult as a2, type AvatarModerationType as a3, type AvatarModeration as a4, type CreateAvatarModerationRequest as a5, type AvatarModerationCreated as a6, type OkStatus2 as a7, type FavoriteGroupLimits as a8, type FavoriteLimits as a9, type CalendarId as aA, type FileId as aB, type LanguageCode as aC, type CalendarEventPlatform as aD, type GroupRoleId as aE, type CalendarEvent as aF, type PaginatedCalendarEventList as aG, type CalendarEventDiscoveryScope as aH, type CalendarEventDiscoveryInclusion as aI, type CalendarEventDiscovery as aJ, type CreateCalendarEventRequest as aK, type UpdateCalendarEventRequest as aL, type FollowCalendarEventRequest as aM, type ApiConfigAnnouncement as aN, type PerformanceLimiterInfo as aO, type ApiConfigConstants as aP, type ApiConfigDownloadUrlList as aQ, type DynamicContentRow as aR, type ApiConfigEvents as aS, type PlatformBuildInfo as aT, type ReportCategory as aU, type ReportReason as aV, type ApiConfig as aW, type LicenseAction as aX, type LicenseType as aY, type License as aZ, type ProductId as a_, type LimitedUserFriend as aa, type Success as ab, type NotificationType as ac, type Notification as ad, type PlayerModerationType as ae, type PlayerModerationId as af, type PlayerModeration as ag, type ModerateUserRequest as ah, type LicenseGroupId as ai, type UserSubscription as aj, type TwoFactorRecoveryCodes as ak, type AvatarStyleId as al, type AvatarStyle as am, type SortOption as an, type OrderOption as ao, type UnityPackageId as ap, type PerformanceRatings as aq, type UnityPackage as ar, type Avatar as as, type LocalDateTime as at, type CreateAvatarRequest as au, type ServiceQueueStats as av, type UpdateAvatarRequest as aw, type ServiceStatus as ax, type CalendarEventAccess as ay, type CalendarEventCategory as az, type VRChatAuthentication as b, type UpdateGroupGalleryRequest as b$, type ProductListingType as b0, type ProductPurchaseId as b1, type ProductPurchase as b2, type SortOptionProductPurchase as b3, type OrderOptionShort as b4, type StoreId as b5, type ProductType as b6, type Product as b7, type ProductListingVariantId as b8, type ProductListingVariant as b9, type GroupGallery as bA, type GroupMemberStatus as bB, type GroupShortCode as bC, type LimitedGroup as bD, type GroupJoinState as bE, type GroupPrivacy as bF, type GroupRoleTemplate as bG, type CreateGroupRequest as bH, type GroupMemberId as bI, type GroupPermissions as bJ, type GroupMyMember as bK, type GroupRole as bL, type Group as bM, type GroupRoleTemplateValues as bN, type UpdateGroupRequest as bO, type GroupAnnouncementId as bP, type GroupAnnouncement as bQ, type CreateGroupAnnouncementRequest as bR, type GroupAuditLogId as bS, type GroupAuditLogEntry as bT, type PaginatedGroupAuditLogEntryList as bU, type GroupMemberLimitedUser as bV, type GroupMember as bW, type BanGroupMemberRequest as bX, type CreateGroupGalleryRequest as bY, type GroupGalleryImageId as bZ, type GroupGalleryImage as b_, type ProductListing as ba, type StoreShelfId as bb, type StoreShelf as bc, type StoreType as bd, type Store as be, type StoreView as bf, type FavoriteGroupId as bg, type FavoriteType as bh, type FavoriteGroupVisibility as bi, type FavoriteGroup as bj, type UpdateFavoriteGroupRequest as bk, type FavoriteId as bl, type Favorite as bm, type AddFavoriteRequest as bn, type MimeType as bo, type CreateFileRequest as bp, type FileStatus as bq, type FileData as br, type FileVersion as bs, type File as bt, type CreateFileVersionRequest as bu, type FinishFileDataUploadRequest as bv, type FileUploadUrl as bw, type FileVersionUploadStatus as bx, type GroupDiscriminator as by, type GroupGalleryId as bz, type VRChatOptions as c, type Submission as c$, type AddGroupGalleryImageRequest as c0, type InstanceId as c1, type InstanceContentSettings as c2, type UdonProductId as c3, type World as c4, type GroupInstance as c5, type CreateGroupInviteRequest as c6, type GroupSearchSort as c7, type GroupLimitedMember as c8, type GroupUserVisibility as c9, type InstanceShortNameResponse as cA, type InventoryEquipSlot as cB, type InventoryItemType as cC, type InventoryFlag as cD, type InventoryDefaultAttributes as cE, type InventoryItemId as cF, type InventoryTemplateId as cG, type PropId as cH, type InventoryMetadata as cI, type InventoryUserAttributes as cJ, type InventoryItem as cK, type Inventory as cL, type ShareInventoryItemDirectRequest as cM, type OkStatus as cN, type InventorySpawn as cO, type InventoryDropId as cP, type InventoryNotificationDetails as cQ, type InventoryDrop as cR, type InventoryTemplate as cS, type UpdateInventoryItemRequest as cT, type SuccessFlag as cU, type InventoryConsumptionResults as cV, type EquipInventoryItemRequest as cW, type SentNotification as cX, type InviteResponse as cY, type InviteRequest as cZ, type Jam as c_, type UpdateGroupMemberRequest as ca, type GroupRoleIdList as cb, type GroupPermission as cc, type NotificationId as cd, type GroupPostVisibility as ce, type GroupPost as cf, type CreateGroupPostRequest as cg, type GroupJoinRequestAction as ch, type RespondGroupJoinRequest as ci, type CreateGroupRoleRequest as cj, type UpdateGroupRoleRequest as ck, type ApiHealth as cl, type InfoPushDataClickable as cm, type InfoPushDataArticleContent as cn, type InfoPushDataArticle as co, type InfoPushData as cp, type InfoPush as cq, type GroupAccessType as cr, type InstanceOwnerId as cs, type InstanceRegion as ct, type InstanceType as cu, type CreateInstanceRequest as cv, type Region as cw, type InstancePlatforms as cx, type LimitedUserInstance as cy, type Instance as cz, type LoginOptions as d, type FileId2 as d$, type LicenseGroup as d0, type InviteMessageType as d1, type InviteMessageId as d2, type InviteMessage as d3, type UpdateInviteMessageRequest as d4, type ModerationReportId as d5, type ModerationReport as d6, type PaginatedModerationReportList as d7, type ContentFilter as d8, type SubmitModerationReportRequest as d9, type UpdateUserRequest as dA, type ChangeUserTagsRequest as dB, type UpdateUserBadgeRequest as dC, type EmojiId as dD, type BoopRequest as dE, type UserCreditsEligible as dF, type FeedbackId as dG, type Feedback as dH, type LimitedUserGroups as dI, type RepresentedGroup as dJ, type Mutuals as dK, type MutualFriend as dL, type UserSubscriptionEligible as dM, type LimitedUnityPackage as dN, type LimitedWorld as dO, type CreateWorldRequest as dP, type FavoritedWorld as dQ, type UpdateWorldRequest as dR, type WorldMetadata as dS, type WorldPublishStatus as dT, type NotificationDetailInvite as dU, type NotificationDetailInviteResponse as dV, type NotificationDetailRequestInvite as dW, type NotificationDetailRequestInviteResponse as dX, type NotificationDetailVoteToKick as dY, type TransactionId2 as dZ, type AdminAssetBundleId as d_, type NotificationV2Category as da, type NotificationV2ResponseIcon as db, type NotificationV2ResponseType as dc, type NotificationV2Response as dd, type NotificationV2Type as de, type NotificationV2 as df, type ReplyNotificationV2Request as dg, type RespondNotificationV2Request as dh, type PrintId as di, type Print as dj, type PropUnityPackage as dk, type Prop as dl, type RequestInviteRequest as dm, type TiliaStatus as dn, type TokenBundle as dp, type Balance as dq, type EconomyAccount as dr, type FriendStatus as ds, type TiliaTos as dt, type UpdateTiliaTosRequest as du, type UserNoteId as dv, type UserNote as dw, type UpdateUserNoteRequest as dx, type LimitedUserSearch as dy, type User as dz, type LoginResult as e, type GroupGalleryImageId2 as e$, type VersionId as e0, type ConfirmEmailUserId as e1, type ConfirmEmailToken as e2, type Email as e3, type DisplayName as e4, type UsernameQuery as e5, type ExcludeUserId as e6, type TargetAvatarId as e7, type AvatarModerationType2 as e8, type Offset as e9, type CalendarDiscoveryMinimumRemainingMinutes as eA, type CalendarDiscoveryUpcomingOffsetMinutes as eB, type CalendarDiscoveryNextCursor as eC, type CalendarSearchTerm as eD, type UtcOffset as eE, type GroupId2 as eF, type CalendarId2 as eG, type Variant as eH, type Branch as eI, type BuyerId as eJ, type MostRecentFlag as eK, type SortProductPurchase as eL, type OrderShort as eM, type StoreId2 as eN, type HydrateListings as eO, type HydrateProducts as eP, type StoreView2 as eQ, type FavoriteGroupType as eR, type FavoriteGroupName as eS, type FavoriteId2 as eT, type FileType as eU, type StartDate as eV, type EndDate as eW, type ActorIds as eX, type EventTypes as eY, type TargetIds as eZ, type GroupGalleryId2 as e_, type Number as ea, type Offline as eb, type UserId2 as ec, type NotificationId2 as ed, type UserIdQuery as ee, type VerifyLoginPlaceToken as ef, type Featured as eg, type Sort as eh, type Order as ei, type Tag2 as ej, type Notag as ek, type ReleaseStatus2 as el, type MaxUnityVersion as em, type MinUnityVersion as en, type Platform2 as eo, type Search as ep, type UserIdAdmin as eq, type AvatarId2 as er, type MonthDate as es, type CalendarDiscoveryScope as et, type CalendarDiscoveryCategories as eu, type CalendarDiscoveryTags as ev, type CalendarDiscoveryFeatured as ew, type CalendarDiscoveryNonFeatured as ex, type CalendarDiscoveryPersonalized as ey, type CalendarDiscoveryMinimumInterestCount as ez, type TransactionAgreement as f, type GetFileAnalysisResponse as f$, type GroupMemberSort as f0, type GroupMemberRoleFilter as f1, type GroupRoleId2 as f2, type Require as f3, type Include as f4, type WorldId2 as f5, type InstanceId2 as f6, type InventoryHolderId as f7, type InventoryEquipSlot2 as f8, type InventorySortOrder as f9, type PropId2 as fA, type GroupIdFilter as fB, type UserNoteId2 as fC, type BadgeId2 as fD, type SubscriptionId as fE, type ContentId as fF, type SteamId as fG, type Noplatform as fH, type Fuzzy as fI, type AvatarSpecific as fJ, type GetSteamTransactions as fK, type GetSteamTransactionsErrors as fL, type GetSteamTransactionsError as fM, type GetSteamTransactionsResponses as fN, type GetSteamTransactionsResponse as fO, type GetSteamTransaction as fP, type GetSteamTransactionErrors as fQ, type GetSteamTransactionError as fR, type GetSteamTransactionResponses as fS, type GetSteamTransactionResponse as fT, type GetAdminAssetBundle as fU, type GetAdminAssetBundleResponses as fV, type GetAdminAssetBundleResponse as fW, type GetFileAnalysis as fX, type GetFileAnalysisErrors as fY, type GetFileAnalysisError as fZ, type GetFileAnalysisResponses as f_, type InventoryItemTags as fa, type InventoryItemTypes as fb, type InventoryItemFlags as fc, type InventoryItemNotTypes as fd, type InventoryItemNotFlags as fe, type InventoryItemArchived as ff, type InventoryPedestalItemId as fg, type InventoryPedestalDuration as fh, type Active as fi, type InventorySpawnItemId as fj, type InventoryTemplateId2 as fk, type InventoryItemId2 as fl, type InventoryItemSlotAsId as fm, type JamId as fn, type LicenseGroupId2 as fo, type ProductId2 as fp, type Hydrate as fq, type MessageType as fr, type Slot as fs, type ModerationReportingUserId as ft, type ModerationReportStatus as fu, type ModerationReportType as fv, type ModerationReportId2 as fw, type Limit as fx, type PermissionId2 as fy, type PrintId2 as fz, type TransactionId as g, type Verify2FaError as g$, type GetFileAnalysisSecurity as g0, type GetFileAnalysisSecurityErrors as g1, type GetFileAnalysisSecurityError as g2, type GetFileAnalysisSecurityResponses as g3, type GetFileAnalysisSecurityResponse as g4, type GetFileAnalysisStandard as g5, type GetFileAnalysisStandardErrors as g6, type GetFileAnalysisStandardError as g7, type GetFileAnalysisStandardResponses as g8, type GetFileAnalysisStandardResponse as g9, type Verify2FaEmailCode as gA, type Verify2FaEmailCodeErrors as gB, type Verify2FaEmailCodeError as gC, type Verify2FaEmailCodeResponses as gD, type Verify2FaEmailCodeResponse as gE, type VerifyRecoveryCode as gF, type VerifyRecoveryCodeErrors as gG, type VerifyRecoveryCodeError as gH, type VerifyRecoveryCodeResponses as gI, type VerifyRecoveryCodeResponse as gJ, type CancelPending2Fa as gK, type CancelPending2FaErrors as gL, type CancelPending2FaError as gM, type CancelPending2FaResponses as gN, type CancelPending2FaResponse as gO, type Enable2Fa as gP, type Enable2FaErrors as gQ, type Enable2FaError as gR, type Enable2FaResponses as gS, type Enable2FaResponse as gT, type VerifyPending2Fa as gU, type VerifyPending2FaErrors as gV, type VerifyPending2FaError as gW, type VerifyPending2FaResponses as gX, type VerifyPending2FaResponse as gY, type Verify2Fa as gZ, type Verify2FaErrors as g_, type VerifyAuthToken as ga, type VerifyAuthTokenErrors as gb, type VerifyAuthTokenError as gc, type VerifyAuthTokenResponses as gd, type VerifyAuthTokenResponse as ge, type ConfirmEmail as gf, type CheckUserExists as gg, type CheckUserExistsErrors as gh, type CheckUserExistsError as gi, type CheckUserExistsResponses as gj, type CheckUserExistsResponse as gk, type GetAssignedPermissions as gl, type GetAssignedPermissionsErrors as gm, type GetAssignedPermissionsError as gn, type GetAssignedPermissionsResponses as go, type GetAssignedPermissionsResponse as gp, type RegisterUserAccount as gq, type RegisterUserAccountErrors as gr, type RegisterUserAccountError as gs, type RegisterUserAccountResponses as gt, type RegisterUserAccountResponse as gu, type Disable2Fa as gv, type Disable2FaErrors as gw, type Disable2FaError as gx, type Disable2FaResponses as gy, type Disable2FaResponse as gz, type TransactionStatus as h, type MarkNotificationAsReadErrors as h$, type Verify2FaResponses as h0, type Verify2FaResponse as h1, type GetCurrentUser as h2, type GetCurrentUserErrors as h3, type GetCurrentUserError as h4, type GetCurrentUserResponses as h5, type GetCurrentUserResponse as h6, type DeleteGlobalAvatarModeration as h7, type DeleteGlobalAvatarModerationErrors as h8, type DeleteGlobalAvatarModerationError as h9, type UnfriendResponse as hA, type GetNotifications as hB, type GetNotificationsErrors as hC, type GetNotificationsError as hD, type GetNotificationsResponses as hE, type GetNotificationsResponse as hF, type ClearNotifications as hG, type ClearNotificationsErrors as hH, type ClearNotificationsError as hI, type ClearNotificationsResponses as hJ, type ClearNotificationsResponse as hK, type GetNotification as hL, type GetNotificationErrors as hM, type GetNotificationError as hN, type GetNotificationResponses as hO, type GetNotificationResponse as hP, type AcceptFriendRequest as hQ, type AcceptFriendRequestErrors as hR, type AcceptFriendRequestError as hS, type AcceptFriendRequestResponses as hT, type AcceptFriendRequestResponse as hU, type DeleteNotification as hV, type DeleteNotificationErrors as hW, type DeleteNotificationError as hX, type DeleteNotificationResponses as hY, type DeleteNotificationResponse as hZ, type MarkNotificationAsRead as h_, type DeleteGlobalAvatarModerationResponses as ha, type DeleteGlobalAvatarModerationResponse as hb, type GetGlobalAvatarModerations as hc, type GetGlobalAvatarModerationsErrors as hd, type GetGlobalAvatarModerationsError as he, type GetGlobalAvatarModerationsResponses as hf, type GetGlobalAvatarModerationsResponse as hg, type CreateGlobalAvatarModeration as hh, type CreateGlobalAvatarModerationErrors as hi, type CreateGlobalAvatarModerationError as hj, type CreateGlobalAvatarModerationResponses as hk, type CreateGlobalAvatarModerationResponse as hl, type GetFavoriteLimits as hm, type GetFavoriteLimitsErrors as hn, type GetFavoriteLimitsError as ho, type GetFavoriteLimitsResponses as hp, type GetFavoriteLimitsResponse as hq, type GetFriends as hr, type GetFriendsErrors as hs, type GetFriendsError as ht, type GetFriendsResponses as hu, type GetFriendsResponse as hv, type Unfriend as hw, type UnfriendErrors as hx, type UnfriendError as hy, type UnfriendResponses as hz, type TransactionSteamWalletInfo as i, type GetImpostorQueueStatsResponse as i$, type MarkNotificationAsReadError as i0, type MarkNotificationAsReadResponses as i1, type MarkNotificationAsReadResponse as i2, type ClearAllPlayerModerations as i3, type ClearAllPlayerModerationsErrors as i4, type ClearAllPlayerModerationsError as i5, type ClearAllPlayerModerationsResponses as i6, type ClearAllPlayerModerationsResponse as i7, type GetPlayerModerations as i8, type GetPlayerModerationsErrors as i9, type UnmoderateUserErrors as iA, type UnmoderateUserError as iB, type UnmoderateUserResponses as iC, type UnmoderateUserResponse as iD, type VerifyLoginPlace as iE, type GetAvatarStyles as iF, type GetAvatarStylesResponses as iG, type GetAvatarStylesResponse as iH, type SearchAvatars as iI, type SearchAvatarsErrors as iJ, type SearchAvatarsError as iK, type SearchAvatarsResponses as iL, type SearchAvatarsResponse as iM, type CreateAvatar as iN, type CreateAvatarErrors as iO, type CreateAvatarError as iP, type CreateAvatarResponses as iQ, type CreateAvatarResponse as iR, type GetFavoritedAvatars as iS, type GetFavoritedAvatarsErrors as iT, type GetFavoritedAvatarsError as iU, type GetFavoritedAvatarsResponses as iV, type GetFavoritedAvatarsResponse as iW, type GetImpostorQueueStats as iX, type GetImpostorQueueStatsErrors as iY, type GetImpostorQueueStatsError as iZ, type GetImpostorQueueStatsResponses as i_, type GetPlayerModerationsError as ia, type GetPlayerModerationsResponses as ib, type GetPlayerModerationsResponse as ic, type ModerateUser as id, type ModerateUserErrors as ie, type ModerateUserError as ig, type ModerateUserResponses as ih, type ModerateUserResponse as ii, type ResendEmailConfirmation as ij, type ResendEmailConfirmationErrors as ik, type ResendEmailConfirmationError as il, type ResendEmailConfirmationResponses as im, type ResendEmailConfirmationResponse as io, type GetCurrentSubscriptions as ip, type GetCurrentSubscriptionsErrors as iq, type GetCurrentSubscriptionsError as ir, type GetCurrentSubscriptionsResponses as is, type GetCurrentSubscriptionsResponse as it, type GetRecoveryCodes as iu, type GetRecoveryCodesErrors as iv, type GetRecoveryCodesError as iw, type GetRecoveryCodesResponses as ix, type GetRecoveryCodesResponse as iy, type UnmoderateUser as iz, type TransactionSteamInfo as j, type SearchCalendarEventsResponse as j$, type GetLicensedAvatars as j0, type GetLicensedAvatarsErrors as j1, type GetLicensedAvatarsError as j2, type GetLicensedAvatarsResponses as j3, type GetLicensedAvatarsResponse as j4, type DeleteAvatar as j5, type DeleteAvatarErrors as j6, type DeleteAvatarError as j7, type DeleteAvatarResponses as j8, type DeleteAvatarResponse as j9, type SelectFallbackAvatarError as jA, type SelectFallbackAvatarResponses as jB, type SelectFallbackAvatarResponse as jC, type GetCalendarEvents as jD, type GetCalendarEventsErrors as jE, type GetCalendarEventsError as jF, type GetCalendarEventsResponses as jG, type GetCalendarEventsResponse as jH, type DiscoverCalendarEvents as jI, type DiscoverCalendarEventsErrors as jJ, type DiscoverCalendarEventsError as jK, type DiscoverCalendarEventsResponses as jL, type DiscoverCalendarEventsResponse as jM, type GetFeaturedCalendarEvents as jN, type GetFeaturedCalendarEventsErrors as jO, type GetFeaturedCalendarEventsError as jP, type GetFeaturedCalendarEventsResponses as jQ, type GetFeaturedCalendarEventsResponse as jR, type GetFollowedCalendarEvents as jS, type GetFollowedCalendarEventsErrors as jT, type GetFollowedCalendarEventsError as jU, type GetFollowedCalendarEventsResponses as jV, type GetFollowedCalendarEventsResponse as jW, type SearchCalendarEvents as jX, type SearchCalendarEventsErrors as jY, type SearchCalendarEventsError as jZ, type SearchCalendarEventsResponses as j_, type GetAvatar as ja, type GetAvatarErrors as jb, type GetAvatarError as jc, type GetAvatarResponses as jd, type GetAvatarResponse as je, type UpdateAvatar as jf, type UpdateAvatarErrors as jg, type UpdateAvatarError as jh, type UpdateAvatarResponses as ji, type UpdateAvatarResponse as jj, type DeleteImpostor as jk, type DeleteImpostorErrors as jl, type DeleteImpostorError as jm, type DeleteImpostorResponses as jn, type EnqueueImpostor as jo, type EnqueueImpostorErrors as jp, type EnqueueImpostorError as jq, type EnqueueImpostorResponses as jr, type EnqueueImpostorResponse as js, type SelectAvatar as jt, type SelectAvatarErrors as ju, type SelectAvatarError as jv, type SelectAvatarResponses as jw, type SelectAvatarResponse as jx, type SelectFallbackAvatar as jy, type SelectFallbackAvatarErrors as jz, type Subscription as k, type GetStore as k$, type GetGroupCalendarEvents as k0, type GetGroupCalendarEventsErrors as k1, type GetGroupCalendarEventsError as k2, type GetGroupCalendarEventsResponses as k3, type GetGroupCalendarEventsResponse as k4, type CreateGroupCalendarEvent as k5, type CreateGroupCalendarEventErrors as k6, type CreateGroupCalendarEventError as k7, type CreateGroupCalendarEventResponses as k8, type CreateGroupCalendarEventResponse as k9, type FollowGroupCalendarEventErrors as kA, type FollowGroupCalendarEventError as kB, type FollowGroupCalendarEventResponses as kC, type FollowGroupCalendarEventResponse as kD, type GetConfig as kE, type GetConfigResponses as kF, type GetConfigResponse as kG, type GetCss as kH, type GetCssErrors as kI, type GetCssError as kJ, type GetCssResponses as kK, type GetCssResponse as kL, type GetActiveLicenses as kM, type GetActiveLicensesErrors as kN, type GetActiveLicensesError as kO, type GetActiveLicensesResponses as kP, type GetActiveLicensesResponse as kQ, type PurchaseProductListing as kR, type PurchaseProductListingErrors as kS, type PurchaseProductListingError as kT, type PurchaseProductListingResponses as kU, type PurchaseProductListingResponse as kV, type GetProductPurchases as kW, type GetProductPurchasesErrors as kX, type GetProductPurchasesError as kY, type GetProductPurchasesResponses as kZ, type GetProductPurchasesResponse as k_, type GetGroupNextCalendarEvent as ka, type GetGroupNextCalendarEventErrors as kb, type GetGroupNextCalendarEventError as kc, type GetGroupNextCalendarEventResponses as kd, type GetGroupNextCalendarEventResponse as ke, type DeleteGroupCalendarEvent as kf, type DeleteGroupCalendarEventErrors as kg, type DeleteGroupCalendarEventError as kh, type DeleteGroupCalendarEventResponses as ki, type DeleteGroupCalendarEventResponse as kj, type GetGroupCalendarEvent as kk, type GetGroupCalendarEventErrors as kl, type GetGroupCalendarEventError as km, type GetGroupCalendarEventResponses as kn, type GetGroupCalendarEventResponse as ko, type GetGroupCalendarEventIcs as kp, type GetGroupCalendarEventIcsErrors as kq, type GetGroupCalendarEventIcsError as kr, type GetGroupCalendarEventIcsResponses as ks, type GetGroupCalendarEventIcsResponse as kt, type UpdateGroupCalendarEvent as ku, type UpdateGroupCalendarEventErrors as kv, type UpdateGroupCalendarEventError as kw, type UpdateGroupCalendarEventResponses as kx, type UpdateGroupCalendarEventResponse as ky, type FollowGroupCalendarEvent as kz, type Transaction as l, type DownloadFileVersionError as l$, type GetStoreErrors as l0, type GetStoreError as l1, type GetStoreResponses as l2, type GetStoreResponse as l3, type GetStoreShelves as l4, type GetStoreShelvesErrors as l5, type GetStoreShelvesError as l6, type GetStoreShelvesResponses as l7, type GetStoreShelvesResponse as l8, type ClearFavoriteGroup as l9, type RemoveFavoriteResponse as lA, type CreateFile as lB, type CreateFileResponses as lC, type CreateFileResponse as lD, type UploadImage as lE, type UploadImageResponses as lF, type UploadImageResponse as lG, type DeleteFile as lH, type DeleteFileErrors as lI, type DeleteFileError as lJ, type DeleteFileResponses as lK, type DeleteFileResponse as lL, type GetFile as lM, type GetFileErrors as lN, type GetFileError as lO, type GetFileResponses as lP, type GetFileResponse as lQ, type CreateFileVersion as lR, type CreateFileVersionResponses as lS, type CreateFileVersionResponse as lT, type DeleteFileVersion as lU, type DeleteFileVersionErrors as lV, type DeleteFileVersionError as lW, type DeleteFileVersionResponses as lX, type DeleteFileVersionResponse as lY, type DownloadFileVersion as lZ, type DownloadFileVersionErrors as l_, type ClearFavoriteGroupResponses as la, type ClearFavoriteGroupResponse as lb, type GetFavoriteGroup as lc, type GetFavoriteGroupResponses as ld, type GetFavoriteGroupResponse as le, type UpdateFavoriteGroup as lf, type UpdateFavoriteGroupResponses as lg, type GetFavoriteGroups as lh, type GetFavoriteGroupsErrors as li, type GetFavoriteGroupsError as lj, type GetFavoriteGroupsResponses as lk, type GetFavoriteGroupsResponse as ll, type GetFavorites as lm, type GetFavoritesErrors as ln, type GetFavoritesError as lo, type GetFavoritesResponses as lp, type GetFavoritesResponse as lq, type AddFavorite as lr, type AddFavoriteErrors as ls, type AddFavoriteError as lt, type AddFavoriteResponses as lu, type AddFavoriteResponse as lv, type RemoveFavorite as lw, type RemoveFavoriteErrors as lx, type RemoveFavoriteError as ly, type RemoveFavoriteResponses as lz, type ReleaseStatus as m, type CreateGroupAnnouncementResponse as m$, type DownloadFileVersionResponses as m0, type DownloadFileVersionResponse as m1, type FinishFileDataUpload as m2, type FinishFileDataUploadResponses as m3, type FinishFileDataUploadResponse as m4, type StartFileDataUpload as m5, type StartFileDataUploadErrors as m6, type StartFileDataUploadError as m7, type StartFileDataUploadResponses as m8, type StartFileDataUploadResponse as m9, type DeleteGroupError as mA, type DeleteGroupResponses as mB, type DeleteGroupResponse as mC, type GetGroup as mD, type GetGroupErrors as mE, type GetGroupError as mF, type GetGroupResponses as mG, type GetGroupResponse as mH, type UpdateGroup as mI, type UpdateGroupErrors as mJ, type UpdateGroupError as mK, type UpdateGroupResponses as mL, type UpdateGroupResponse as mM, type DeleteGroupAnnouncement as mN, type DeleteGroupAnnouncementErrors as mO, type DeleteGroupAnnouncementError as mP, type DeleteGroupAnnouncementResponses as mQ, type DeleteGroupAnnouncementResponse as mR, type GetGroupAnnouncements as mS, type GetGroupAnnouncementsErrors as mT, type GetGroupAnnouncementsError as mU, type GetGroupAnnouncementsResponses as mV, type GetGroupAnnouncementsResponse as mW, type CreateGroupAnnouncement as mX, type CreateGroupAnnouncementErrors as mY, type CreateGroupAnnouncementError as mZ, type CreateGroupAnnouncementResponses as m_, type GetFileDataUploadStatus as ma, type GetFileDataUploadStatusResponses as mb, type GetFileDataUploadStatusResponse as mc, type GetFiles as md, type GetFilesResponses as me, type GetFilesResponse as mf, type UploadGalleryImage as mg, type UploadGalleryImageResponses as mh, type UploadGalleryImageResponse as mi, type SearchGroups as mj, type SearchGroupsErrors as mk, type SearchGroupsError as ml, type SearchGroupsResponses as mm, type SearchGroupsResponse as mn, type CreateGroup as mo, type CreateGroupErrors as mp, type CreateGroupError as mq, type CreateGroupResponses as mr, type CreateGroupResponse as ms, type GetGroupRoleTemplates as mt, type GetGroupRoleTemplatesErrors as mu, type GetGroupRoleTemplatesError as mv, type GetGroupRoleTemplatesResponses as mw, type GetGroupRoleTemplatesResponse as mx, type DeleteGroup as my, type DeleteGroupErrors as mz, type Tag as n, type CreateGroupInviteResponses as n$, type GetGroupAuditLogs as n0, type GetGroupAuditLogsErrors as n1, type GetGroupAuditLogsError as n2, type GetGroupAuditLogsResponses as n3, type GetGroupAuditLogsResponse as n4, type GetGroupBans as n5, type GetGroupBansErrors as n6, type GetGroupBansError as n7, type GetGroupBansResponses as n8, type GetGroupBansResponse as n9, type UpdateGroupGalleryErrors as nA, type UpdateGroupGalleryError as nB, type UpdateGroupGalleryResponses as nC, type UpdateGroupGalleryResponse as nD, type AddGroupGalleryImage as nE, type AddGroupGalleryImageErrors as nF, type AddGroupGalleryImageError as nG, type AddGroupGalleryImageResponses as nH, type AddGroupGalleryImageResponse as nI, type DeleteGroupGalleryImage as nJ, type DeleteGroupGalleryImageErrors as nK, type DeleteGroupGalleryImageError as nL, type DeleteGroupGalleryImageResponses as nM, type DeleteGroupGalleryImageResponse as nN, type GetGroupInstances as nO, type GetGroupInstancesErrors as nP, type GetGroupInstancesError as nQ, type GetGroupInstancesResponses as nR, type GetGroupInstancesResponse as nS, type GetGroupInvites as nT, type GetGroupInvitesErrors as nU, type GetGroupInvitesError as nV, type GetGroupInvitesResponses as nW, type GetGroupInvitesResponse as nX, type CreateGroupInvite as nY, type CreateGroupInviteErrors as nZ, type CreateGroupInviteError as n_, type BanGroupMember as na, type BanGroupMemberErrors as nb, type BanGroupMemberError as nc, type BanGroupMemberResponses as nd, type BanGroupMemberResponse as ne, type UnbanGroupMember as nf, type UnbanGroupMemberErrors as ng, type UnbanGroupMemberError as nh, type UnbanGroupMemberResponses as ni, type UnbanGroupMemberResponse as nj, type CreateGroupGallery as nk, type CreateGroupGalleryErrors as nl, type CreateGroupGalleryError as nm, type CreateGroupGalleryResponses as nn, type CreateGroupGalleryResponse as no, type DeleteGroupGallery as np, type DeleteGroupGalleryErrors as nq, type DeleteGroupGalleryError as nr, type DeleteGroupGalleryResponses as ns, type DeleteGroupGalleryResponse as nt, type GetGroupGalleryImages as nu, type GetGroupGalleryImagesErrors as nv, type GetGroupGalleryImagesError as nw, type GetGroupGalleryImagesResponses as nx, type GetGroupGalleryImagesResponse as ny, type UpdateGroupGallery as nz, type AdminAssetBundle as o, type UpdateGroupPostErrors as o$, type DeleteGroupInvite as o0, type DeleteGroupInviteErrors as o1, type DeleteGroupInviteError as o2, type DeleteGroupInviteResponses as o3, type JoinGroup as o4, type JoinGroupErrors as o5, type JoinGroupError as o6, type JoinGroupResponses as o7, type JoinGroupResponse as o8, type LeaveGroup as o9, type RemoveGroupMemberRoleResponse as oA, type AddGroupMemberRole as oB, type AddGroupMemberRoleErrors as oC, type AddGroupMemberRoleError as oD, type AddGroupMemberRoleResponses as oE, type AddGroupMemberRoleResponse as oF, type GetGroupPermissions as oG, type GetGroupPermissionsErrors as oH, type GetGroupPermissionsError as oI, type GetGroupPermissionsResponses as oJ, type GetGroupPermissionsResponse as oK, type GetGroupPosts as oL, type GetGroupPostsErrors as oM, type GetGroupPostsError as oN, type GetGroupPostsResponses as oO, type GetGroupPostsResponse as oP, type AddGroupPost as oQ, type AddGroupPostErrors as oR, type AddGroupPostError as oS, type AddGroupPostResponses as oT, type AddGroupPostResponse as oU, type DeleteGroupPost as oV, type DeleteGroupPostErrors as oW, type DeleteGroupPostError as oX, type DeleteGroupPostResponses as oY, type DeleteGroupPostResponse as oZ, type UpdateGroupPost as o_, type LeaveGroupErrors as oa, type LeaveGroupError as ob, type LeaveGroupResponses as oc, type GetGroupMembers as od, type GetGroupMembersErrors as oe, type GetGroupMembersError as of, type GetGroupMembersResponses as og, type GetGroupMembersResponse as oh, type KickGroupMember as oi, type KickGroupMemberErrors as oj, type KickGroupMemberError as ok, type KickGroupMemberResponses as ol, type GetGroupMember as om, type GetGroupMemberErrors as on, type GetGroupMemberError as oo, type GetGroupMemberResponses as op, type GetGroupMemberResponse as oq, type UpdateGroupMember as or, type UpdateGroupMemberErrors as os, type UpdateGroupMemberError as ot, type UpdateGroupMemberResponses as ou, type UpdateGroupMemberResponse as ov, type RemoveGroupMemberRole as ow, type RemoveGroupMemberRoleErrors as ox, type RemoveGroupMemberRoleError as oy, type RemoveGroupMemberRoleResponses as oz, type FileAnalysis as p, type GetInstanceByShortNameResponses as p$, type UpdateGroupPostError as p0, type UpdateGroupPostResponses as p1, type UpdateGroupPostResponse as p2, type UpdateGroupRepresentation as p3, type UpdateGroupRepresentationErrors as p4, type UpdateGroupRepresentationError as p5, type UpdateGroupRepresentationResponses as p6, type UpdateGroupRepresentationResponse as p7, type CancelGroupRequest as p8, type CancelGroupRequestErrors as p9, type UpdateGroupRole as pA, type UpdateGroupRoleErrors as pB, type UpdateGroupRoleError as pC, type UpdateGroupRoleResponses as pD, type UpdateGroupRoleResponse as pE, type GetHealth as pF, type GetHealthResponses as pG, type GetHealthResponse as pH, type UploadIcon as pI, type UploadIconResponses as pJ, type UploadIconResponse as pK, type GetInfoPush as pL, type GetInfoPushResponses as pM, type GetInfoPushResponse as pN, type CreateInstance as pO, type CreateInstanceErrors as pP, type CreateInstanceError as pQ, type CreateInstanceResponses as pR, type CreateInstanceResponse as pS, type GetRecentLocations as pT, type GetRecentLocationsErrors as pU, type GetRecentLocationsError as pV, type GetRecentLocationsResponses as pW, type GetRecentLocationsResponse as pX, type GetInstanceByShortName as pY, type GetInstanceByShortNameErrors as pZ, type GetInstanceByShortNameError as p_, type CancelGroupRequestError as pa, type CancelGroupRequestResponses as pb, type GetGroupRequests as pc, type GetGroupRequestsErrors as pd, type GetGroupRequestsError as pe, type GetGroupRequestsResponses as pf, type GetGroupRequestsResponse as pg, type RespondGroupJoinRequest2 as ph, type RespondGroupJoinRequestErrors as pi, type RespondGroupJoinRequestError as pj, type RespondGroupJoinRequestResponses as pk, type GetGroupRoles as pl, type GetGroupRolesErrors as pm, type GetGroupRolesError as pn, type GetGroupRolesResponses as po, type GetGroupRolesResponse as pp, type CreateGroupRole as pq, type CreateGroupRoleErrors as pr, type CreateGroupRoleError as ps, type CreateGroupRoleResponses as pt, type CreateGroupRoleResponse as pu, type DeleteGroupRole as pv, type DeleteGroupRoleErrors as pw, type DeleteGroupRoleError as px, type DeleteGroupRoleResponses as py, type DeleteGroupRoleResponse as pz, type VerifyAuthTokenResult as q, type UpdateOwnInventoryItemError as q$, type GetInstanceByShortNameResponse as q0, type CloseInstance as q1, type CloseInstanceErrors as q2, type CloseInstanceError as q3, type CloseInstanceResponses as q4, type CloseInstanceResponse as q5, type GetInstance as q6, type GetInstanceErrors as q7, type GetInstanceError as q8, type GetInstanceResponses as q9, type GetInventoryDrops as qA, type GetInventoryDropsErrors as qB, type GetInventoryDropsError as qC, type GetInventoryDropsResponses as qD, type GetInventoryDropsResponse as qE, type SpawnInventoryItem as qF, type SpawnInventoryItemErrors as qG, type SpawnInventoryItemError as qH, type SpawnInventoryItemResponses as qI, type SpawnInventoryItemResponse as qJ, type GetInventoryTemplate as qK, type GetInventoryTemplateErrors as qL, type GetInventoryTemplateError as qM, type GetInventoryTemplateResponses as qN, type GetInventoryTemplateResponse as qO, type DeleteOwnInventoryItem as qP, type DeleteOwnInventoryItemErrors as qQ, type DeleteOwnInventoryItemError as qR, type DeleteOwnInventoryItemResponses as qS, type DeleteOwnInventoryItemResponse as qT, type GetOwnInventoryItem as qU, type GetOwnInventoryItemErrors as qV, type GetOwnInventoryItemError as qW, type GetOwnInventoryItemResponses as qX, type GetOwnInventoryItemResponse as qY, type UpdateOwnInventoryItem as qZ, type UpdateOwnInventoryItemErrors as q_, type GetInstanceResponse as qa, type GetShortName as qb, type GetShortNameErrors as qc, type GetShortNameError as qd, type GetShortNameResponses as qe, type GetShortNameResponse as qf, type GetInventory as qg, type GetInventoryErrors as qh, type GetInventoryError as qi, type GetInventoryResponses as qj, type GetInventoryResponse as qk, type ShareInventoryItemDirect as ql, type ShareInventoryItemDirectErrors as qm, type ShareInventoryItemDirectError as qn, type ShareInventoryItemDirectResponses as qo, type ShareInventoryItemDirectResponse as qp, type ShareInventoryItemPedestal as qq, type ShareInventoryItemPedestalErrors as qr, type ShareInventoryItemPedestalError as qs, type ShareInventoryItemPedestalResponses as qt, type ShareInventoryItemPedestalResponse as qu, type GetInventoryCollections as qv, type GetInventoryCollectionsErrors as qw, type GetInventoryCollectionsError as qx, type GetInventoryCollectionsResponses as qy, type GetInventoryCollectionsResponse as qz, type UserExists as r, type GetLicenseGroupResponses as r$, type UpdateOwnInventoryItemResponses as r0, type UpdateOwnInventoryItemResponse as r1, type ConsumeOwnInventoryItem as r2, type ConsumeOwnInventoryItemErrors as r3, type ConsumeOwnInventoryItemError as r4, type ConsumeOwnInventoryItemResponses as r5, type ConsumeOwnInventoryItemResponse as r6, type UnequipOwnInventorySlot as r7, type UnequipOwnInventorySlotErrors as r8, type UnequipOwnInventorySlotError as r9, type InviteUserResponse as rA, type InviteUserWithPhoto as rB, type InviteUserWithPhotoErrors as rC, type InviteUserWithPhotoError as rD, type InviteUserWithPhotoResponses as rE, type InviteUserWithPhotoResponse as rF, type GetJams as rG, type GetJamsResponses as rH, type GetJamsResponse as rI, type GetJam as rJ, type GetJamErrors as rK, type GetJamError as rL, type GetJamResponses as rM, type GetJamResponse as rN, type GetJamSubmissions as rO, type GetJamSubmissionsErrors as rP, type GetJamSubmissionsError as rQ, type GetJamSubmissionsResponses as rR, type GetJamSubmissionsResponse as rS, type GetJavaScript as rT, type GetJavaScriptErrors as rU, type GetJavaScriptError as rV, type GetJavaScriptResponses as rW, type GetJavaScriptResponse as rX, type GetLicenseGroup as rY, type GetLicenseGroupErrors as rZ, type GetLicenseGroupError as r_, type UnequipOwnInventorySlotResponses as ra, type UnequipOwnInventorySlotResponse as rb, type EquipOwnInventoryItem as rc, type EquipOwnInventoryItemErrors as rd, type EquipOwnInventoryItemError as re, type EquipOwnInventoryItemResponses as rf, type EquipOwnInventoryItemResponse as rg, type InviteMyselfTo as rh, type InviteMyselfToErrors as ri, type InviteMyselfToError as rj, type InviteMyselfToResponses as rk, type InviteMyselfToResponse as rl, type RespondInvite as rm, type RespondInviteErrors as rn, type RespondInviteError as ro, type RespondInviteResponses as rp, type RespondInviteResponse as rq, type RespondInviteWithPhoto as rr, type RespondInviteWithPhotoErrors as rs, type RespondInviteWithPhotoError as rt, type RespondInviteWithPhotoResponses as ru, type RespondInviteWithPhotoResponse as rv, type InviteUser as rw, type InviteUserErrors as rx, type InviteUserError as ry, type InviteUserResponses as rz, type PermissionId as s, type GetNotificationV2Error as s$, type GetLicenseGroupResponse as s0, type GetProductListing as s1, type GetProductListingErrors as s2, type GetProductListingError as s3, type GetProductListingResponses as s4, type GetProductListingResponse as s5, type Logout as s6, type LogoutErrors as s7, type LogoutError as s8, type LogoutResponses as s9, type SubmitModerationReport as sA, type SubmitModerationReportErrors as sB, type SubmitModerationReportError as sC, type SubmitModerationReportResponses as sD, type SubmitModerationReportResponse as sE, type DeleteModerationReport as sF, type DeleteModerationReportErrors as sG, type DeleteModerationReportError as sH, type DeleteModerationReportResponses as sI, type DeleteModerationReportResponse as sJ, type DeleteAllNotificationV2s as sK, type DeleteAllNotificationV2sErrors as sL, type DeleteAllNotificationV2sError as sM, type DeleteAllNotificationV2sResponses as sN, type DeleteAllNotificationV2sResponse as sO, type GetNotificationV2s as sP, type GetNotificationV2sErrors as sQ, type GetNotificationV2sError as sR, type GetNotificationV2sResponses as sS, type GetNotificationV2sResponse as sT, type DeleteNotificationV2 as sU, type DeleteNotificationV2Errors as sV, type DeleteNotificationV2Error as sW, type DeleteNotificationV2Responses as sX, type DeleteNotificationV2Response as sY, type GetNotificationV2 as sZ, type GetNotificationV2Errors as s_, type LogoutResponse as sa, type GetInviteMessages as sb, type GetInviteMessagesErrors as sc, type GetInviteMessagesError as sd, type GetInviteMessagesResponses as se, type GetInviteMessagesResponse as sf, type ResetInviteMessage as sg, type ResetInviteMessageErrors as sh, type ResetInviteMessageError as si, type ResetInviteMessageResponses as sj, type ResetInviteMessageResponse as sk, type GetInviteMessage as sl, type GetInviteMessageErrors as sm, type GetInviteMessageError as sn, type GetInviteMessageResponses as so, type GetInviteMessageResponse as sp, type UpdateInviteMessage as sq, type UpdateInviteMessageErrors as sr, type UpdateInviteMessageError as ss, type UpdateInviteMessageResponses as st, type UpdateInviteMessageResponse as su, type GetModerationReports as sv, type GetModerationReportsErrors as sw, type GetModerationReportsError as sx, type GetModerationReportsResponses as sy, type GetModerationReportsResponse as sz, type Permission as t, type RequestInviteWithPhotoError as t$, type GetNotificationV2Responses as t0, type GetNotificationV2Response as t1, type ReplyNotificationV2 as t2, type ReplyNotificationV2Errors as t3, type ReplyNotificationV2Error as t4, type ReplyNotificationV2Responses as t5, type ReplyNotificationV2Response as t6, type RespondNotificationV2 as t7, type RespondNotificationV2Errors as t8, type RespondNotificationV2Error as t9, type GetPrint as tA, type GetPrintErrors as tB, type GetPrintError as tC, type GetPrintResponses as tD, type GetPrintResponse as tE, type EditPrint as tF, type EditPrintErrors as tG, type EditPrintError as tH, type EditPrintResponses as tI, type EditPrintResponse as tJ, type GetProductListingAlternate as tK, type GetProductListingAlternateErrors as tL, type GetProductListingAlternateError as tM, type GetProductListingAlternateResponses as tN, type GetProductListingAlternateResponse as tO, type GetProp as tP, type GetPropErrors as tQ, type GetPropError as tR, type GetPropResponses as tS, type GetPropResponse as tT, type RequestInvite as tU, type RequestInviteErrors as tV, type RequestInviteError as tW, type RequestInviteResponses as tX, type RequestInviteResponse as tY, type RequestInviteWithPhoto as tZ, type RequestInviteWithPhotoErrors as t_, type RespondNotificationV2Responses as ta, type RespondNotificationV2Response as tb, type AcknowledgeNotificationV2 as tc, type AcknowledgeNotificationV2Errors as td, type AcknowledgeNotificationV2Error as te, type AcknowledgeNotificationV2Responses as tf, type AcknowledgeNotificationV2Response as tg, type GetPermission as th, type GetPermissionErrors as ti, type GetPermissionError as tj, type GetPermissionResponses as tk, type GetPermissionResponse as tl, type UploadPrint as tm, type UploadPrintErrors as tn, type UploadPrintError as to, type UploadPrintResponses as tp, type UploadPrintResponse as tq, type GetUserPrints as tr, type GetUserPrintsErrors as ts, type GetUserPrintsError as tt, type GetUserPrintsResponses as tu, type GetUserPrintsResponse as tv, type DeletePrint as tw, type DeletePrintErrors as tx, type DeletePrintError as ty, type DeletePrintResponses as tz, type RegisterUserAccountRequest as u, type GetUserInventoryItemResponses as u$, type RequestInviteWithPhotoResponses as u0, type RequestInviteWithPhotoResponse as u1, type GetSubscriptions as u2, type GetSubscriptionsErrors as u3, type GetSubscriptionsError as u4, type GetSubscriptionsResponses as u5, type GetSubscriptionsResponse as u6, type GetTiliaStatus as u7, type GetTiliaStatusErrors as u8, type GetTiliaStatusError as u9, type GetBalanceEarningsErrors as uA, type GetBalanceEarningsError as uB, type GetBalanceEarningsResponses as uC, type GetBalanceEarningsResponse as uD, type GetEconomyAccount as uE, type GetEconomyAccountErrors as uF, type GetEconomyAccountError as uG, type GetEconomyAccountResponses as uH, type GetEconomyAccountResponse as uI, type DeleteFriendRequest as uJ, type DeleteFriendRequestErrors as uK, type DeleteFriendRequestError as uL, type DeleteFriendRequestResponses as uM, type DeleteFriendRequestResponse as uN, type Friend as uO, type FriendErrors as uP, type FriendError as uQ, type FriendResponses as uR, type FriendResponse as uS, type GetFriendStatus as uT, type GetFriendStatusErrors as uU, type GetFriendStatusError as uV, type GetFriendStatusResponses as uW, type GetFriendStatusResponse as uX, type GetUserInventoryItem as uY, type GetUserInventoryItemErrors as uZ, type GetUserInventoryItemError as u_, type GetTiliaStatusResponses as ua, type GetTiliaStatusResponse as ub, type GetSystemTime as uc, type GetSystemTimeResponses as ud, type GetSystemTimeResponse as ue, type GetTokenBundles as uf, type GetTokenBundlesErrors as ug, type GetTokenBundlesError as uh, type GetTokenBundlesResponses as ui, type GetTokenBundlesResponse as uj, type GetBulkGiftPurchases as uk, type GetBulkGiftPurchasesErrors as ul, type GetBulkGiftPurchasesError as um, type GetBulkGiftPurchasesResponses as un, type GetBulkGiftPurchasesResponse as uo, type GetRecentSubscription as up, type GetRecentSubscriptionErrors as uq, type GetRecentSubscriptionError as ur, type GetRecentSubscriptionResponses as us, type GetRecentSubscriptionResponse as ut, type GetBalance as uu, type GetBalanceErrors as uv, type GetBalanceError as uw, type GetBalanceResponses as ux, type GetBalanceResponse as uy, type GetBalanceEarnings as uz, type AccountDeletionLog as v, type BoopResponses as v$, type GetUserInventoryItemResponse as v0, type GetProductListings as v1, type GetProductListingsErrors as v2, type GetProductListingsError as v3, type GetProductListingsResponses as v4, type GetProductListingsResponse as v5, type GetTiliaTos as v6, type GetTiliaTosErrors as v7, type GetTiliaTosError as v8, type GetTiliaTosResponses as v9, type GetUser as vA, type GetUserErrors as vB, type GetUserError as vC, type GetUserResponses as vD, type GetUserResponse as vE, type UpdateUser as vF, type UpdateUserErrors as vG, type UpdateUserError as vH, type UpdateUserResponses as vI, type UpdateUserResponse as vJ, type AddTags as vK, type AddTagsErrors as vL, type AddTagsError as vM, type AddTagsResponses as vN, type AddTagsResponse as vO, type GetOwnAvatar as vP, type GetOwnAvatarErrors as vQ, type GetOwnAvatarError as vR, type GetOwnAvatarResponses as vS, type GetOwnAvatarResponse as vT, type UpdateBadge as vU, type UpdateBadgeErrors as vV, type UpdateBadgeError as vW, type UpdateBadgeResponses as vX, type Boop as vY, type BoopErrors as vZ, type BoopError as v_, type GetTiliaTosResponse as va, type UpdateTiliaTos as vb, type UpdateTiliaTosErrors as vc, type UpdateTiliaTosError as vd, type UpdateTiliaTosResponses as ve, type UpdateTiliaTosResponse as vf, type GetUserNotes as vg, type GetUserNotesErrors as vh, type GetUserNotesError as vi, type GetUserNotesResponses as vj, type GetUserNotesResponse as vk, type UpdateUserNote as vl, type UpdateUserNoteErrors as vm, type UpdateUserNoteError as vn, type UpdateUserNoteResponses as vo, type UpdateUserNoteResponse as vp, type GetUserNote as vq, type GetUserNoteErrors as vr, type GetUserNoteError as vs, type GetUserNoteResponses as vt, type GetUserNoteResponse as vu, type SearchUsers as vv, type SearchUsersErrors as vw, type SearchUsersError as vx, type SearchUsersResponses as vy, type SearchUsersResponse as vz, type AgeVerificationStatus as w, type GetUserSubscriptionEligibleError as w$, type BoopResponse as w0, type GetUserCreditsEligible as w1, type GetUserCreditsEligibleErrors as w2, type GetUserCreditsEligibleError as w3, type GetUserCreditsEligibleResponses as w4, type GetUserCreditsEligibleResponse as w5, type DeleteUser as w6, type DeleteUserErrors as w7, type DeleteUserError as w8, type DeleteUserResponses as w9, type GetUserGroupInstancesForGroup as wA, type GetUserGroupInstancesForGroupErrors as wB, type GetUserGroupInstancesForGroupError as wC, type GetUserGroupInstancesForGroupResponses as wD, type GetUserGroupInstancesForGroupResponse as wE, type GetMutuals as wF, type GetMutualsErrors as wG, type GetMutualsError as wH, type GetMutualsResponses as wI, type GetMutualsResponse as wJ, type GetMutualFriends as wK, type GetMutualFriendsErrors as wL, type GetMutualFriendsError as wM, type GetMutualFriendsResponses as wN, type GetMutualFriendsResponse as wO, type GetMutualGroups as wP, type GetMutualGroupsErrors as wQ, type GetMutualGroupsError as wR, type GetMutualGroupsResponses as wS, type GetMutualGroupsResponse as wT, type RemoveTags as wU, type RemoveTagsErrors as wV, type RemoveTagsError as wW, type RemoveTagsResponses as wX, type RemoveTagsResponse as wY, type GetUserSubscriptionEligible as wZ, type GetUserSubscriptionEligibleErrors as w_, type DeleteUserResponse as wa, type GetUserFeedback as wb, type GetUserFeedbackErrors as wc, type GetUserFeedbackError as wd, type GetUserFeedbackResponses as we, type GetUserFeedbackResponse as wf, type GetUserGroups as wg, type GetUserGroupsErrors as wh, type GetUserGroupsError as wi, type GetUserGroupsResponses as wj, type GetUserGroupsResponse as wk, type GetUserRepresentedGroup as wl, type GetUserRepresentedGroupErrors as wm, type GetUserRepresentedGroupError as wn, type GetUserRepresentedGroupResponses as wo, type GetUserRepresentedGroupResponse as wp, type GetUserGroupRequests as wq, type GetUserGroupRequestsErrors as wr, type GetUserGroupRequestsError as ws, type GetUserGroupRequestsResponses as wt, type GetUserGroupRequestsResponse as wu, type GetUserGroupInstances as wv, type GetUserGroupInstancesErrors as ww, type GetUserGroupInstancesError as wx, type GetUserGroupInstancesResponses as wy, type GetUserGroupInstancesResponse as wz, type AgeVerified as x, type UnpublishWorldErrors as x$, type GetUserSubscriptionEligibleResponses as x0, type GetUserSubscriptionEligibleResponse as x1, type DeleteUserPersistence as x2, type DeleteUserPersistenceErrors as x3, type DeleteUserPersistenceError as x4, type DeleteUserPersistenceResponses as x5, type CheckUserPersistenceExists as x6, type CheckUserPersistenceExistsErrors as x7, type CheckUserPersistenceExistsError as x8, type CheckUserPersistenceExistsResponses as x9, type GetFavoritedWorldsResponses as xA, type GetFavoritedWorldsResponse as xB, type GetRecentWorlds as xC, type GetRecentWorldsErrors as xD, type GetRecentWorldsError as xE, type GetRecentWorldsResponses as xF, type GetRecentWorldsResponse as xG, type DeleteWorld as xH, type DeleteWorldErrors as xI, type DeleteWorldError as xJ, type DeleteWorldResponses as xK, type GetWorld as xL, type GetWorldErrors as xM, type GetWorldError as xN, type GetWorldResponses as xO, type GetWorldResponse as xP, type UpdateWorld as xQ, type UpdateWorldErrors as xR, type UpdateWorldError as xS, type UpdateWorldResponses as xT, type UpdateWorldResponse as xU, type GetWorldMetadata as xV, type GetWorldMetadataErrors as xW, type GetWorldMetadataError as xX, type GetWorldMetadataResponses as xY, type GetWorldMetadataResponse as xZ, type UnpublishWorld as x_, type GetUserByName as xa, type GetUserByNameErrors as xb, type GetUserByNameError as xc, type GetUserByNameResponses as xd, type GetUserByNameResponse as xe, type GetCurrentOnlineUsers as xf, type GetCurrentOnlineUsersResponses as xg, type GetCurrentOnlineUsersResponse as xh, type SearchWorlds as xi, type SearchWorldsErrors as xj, type SearchWorldsError as xk, type SearchWorldsResponses as xl, type SearchWorldsResponse as xm, type CreateWorld as xn, type CreateWorldErrors as xo, type CreateWorldError as xp, type CreateWorldResponses as xq, type CreateWorldResponse as xr, type GetActiveWorlds as xs, type GetActiveWorldsErrors as xt, type GetActiveWorldsError as xu, type GetActiveWorldsResponses as xv, type GetActiveWorldsResponse as xw, type GetFavoritedWorlds as xx, type GetFavoritedWorldsErrors as xy, type GetFavoritedWorldsError as xz, type Badge as y, type UnpublishWorldError as y0, type UnpublishWorldResponses as y1, type GetWorldPublishStatus as y2, type GetWorldPublishStatusErrors as y3, type GetWorldPublishStatusError as y4, type GetWorldPublishStatusResponses as y5, type GetWorldPublishStatusResponse as y6, type PublishWorld as y7, type PublishWorldErrors as y8, type PublishWorldError as y9, type PublishWorldResponses as ya, type GetWorldInstance as yb, type GetWorldInstanceErrors as yc, type GetWorldInstanceError as yd, type GetWorldInstanceResponses as ye, type GetWorldInstanceResponse as yf, type VRChatWebsocketOptions as yg, VRChatWebsocket as yh, type AvatarId as z };
|