vrchat 2.20.3 → 2.20.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +918 -68
- package/dist/index.d.ts +918 -68
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -134,6 +134,18 @@ type CurrentAvatarThumbnailImageUrl = string;
|
|
|
134
134
|
* Staff can hide their developerType at will.
|
|
135
135
|
*/
|
|
136
136
|
type DeveloperType = 'none' | 'trusted' | 'internal' | 'moderator';
|
|
137
|
+
/**
|
|
138
|
+
* DiscordID
|
|
139
|
+
* https://discord.com/developers/docs/reference#snowflakes
|
|
140
|
+
*/
|
|
141
|
+
type DiscordId = string;
|
|
142
|
+
/**
|
|
143
|
+
* DiscordDetails
|
|
144
|
+
*/
|
|
145
|
+
type DiscordDetails = {
|
|
146
|
+
global_name?: string;
|
|
147
|
+
id?: DiscordId;
|
|
148
|
+
};
|
|
137
149
|
/**
|
|
138
150
|
* WorldID
|
|
139
151
|
* WorldID be "offline" on User profiles if you are not friends with that user.
|
|
@@ -155,6 +167,11 @@ type PastDisplayName = {
|
|
|
155
167
|
* GroupID
|
|
156
168
|
*/
|
|
157
169
|
type GroupId = string;
|
|
170
|
+
/**
|
|
171
|
+
* LocationID
|
|
172
|
+
* Represents a unique location, consisting of a world identifier and an instance identifier, or "offline" if the user is not on your friends list.
|
|
173
|
+
*/
|
|
174
|
+
type LocationId = string;
|
|
158
175
|
/**
|
|
159
176
|
* CurrentUserPresence
|
|
160
177
|
*/
|
|
@@ -181,7 +198,7 @@ type CurrentUserPresence = {
|
|
|
181
198
|
*/
|
|
182
199
|
status?: string | null;
|
|
183
200
|
travelingToInstance?: string | null;
|
|
184
|
-
travelingToWorld?:
|
|
201
|
+
travelingToWorld?: LocationId;
|
|
185
202
|
userIcon?: string | null;
|
|
186
203
|
world?: WorldId;
|
|
187
204
|
};
|
|
@@ -240,6 +257,8 @@ type CurrentUser = {
|
|
|
240
257
|
currentAvatarTags: Array<Tag>;
|
|
241
258
|
date_joined: Date;
|
|
242
259
|
developerType: DeveloperType;
|
|
260
|
+
discordDetails?: DiscordDetails;
|
|
261
|
+
discordId?: DiscordId;
|
|
243
262
|
displayName: string;
|
|
244
263
|
emailVerified: boolean;
|
|
245
264
|
fallbackAvatar?: AvatarId;
|
|
@@ -416,6 +435,18 @@ type RegisterUserAccountRequest = {
|
|
|
416
435
|
*/
|
|
417
436
|
acceptedTOSVersion: number;
|
|
418
437
|
};
|
|
438
|
+
/**
|
|
439
|
+
* AvatarModerationType
|
|
440
|
+
*/
|
|
441
|
+
type AvatarModerationType = 'block';
|
|
442
|
+
/**
|
|
443
|
+
* AvatarModeration
|
|
444
|
+
*/
|
|
445
|
+
type AvatarModeration = {
|
|
446
|
+
avatarModerationType: AvatarModerationType;
|
|
447
|
+
created: Date;
|
|
448
|
+
targetAvatarId: AvatarId;
|
|
449
|
+
};
|
|
419
450
|
/**
|
|
420
451
|
* ReleaseStatus
|
|
421
452
|
*/
|
|
@@ -556,6 +587,10 @@ type CreateAvatarRequest = {
|
|
|
556
587
|
thumbnailImageUrl?: string;
|
|
557
588
|
releaseStatus?: ReleaseStatus;
|
|
558
589
|
version?: number;
|
|
590
|
+
/**
|
|
591
|
+
* Enabling featured tag requires Admin Credentials.
|
|
592
|
+
*/
|
|
593
|
+
featured?: boolean;
|
|
559
594
|
unityPackageUrl?: string;
|
|
560
595
|
unityVersion?: string;
|
|
561
596
|
};
|
|
@@ -585,6 +620,10 @@ type UpdateAvatarRequest = {
|
|
|
585
620
|
imageUrl?: string;
|
|
586
621
|
releaseStatus?: ReleaseStatus;
|
|
587
622
|
version?: number;
|
|
623
|
+
/**
|
|
624
|
+
* Enabling featured tag requires Admin Credentials.
|
|
625
|
+
*/
|
|
626
|
+
featured?: boolean;
|
|
588
627
|
unityPackageUrl?: string;
|
|
589
628
|
unityVersion?: string;
|
|
590
629
|
};
|
|
@@ -641,12 +680,12 @@ type GroupRoleId = string;
|
|
|
641
680
|
*/
|
|
642
681
|
type CalendarEvent = {
|
|
643
682
|
accessType: string;
|
|
644
|
-
category
|
|
683
|
+
category: string;
|
|
645
684
|
closeInstanceAfterEndMinutes?: number;
|
|
646
|
-
createdAt
|
|
685
|
+
createdAt?: Date;
|
|
647
686
|
deletedAt?: Date | null;
|
|
648
|
-
description
|
|
649
|
-
endsAt
|
|
687
|
+
description: string;
|
|
688
|
+
endsAt: Date;
|
|
650
689
|
featured?: boolean;
|
|
651
690
|
guestEarlyJoinMinutes?: number;
|
|
652
691
|
hostEarlyJoinMinutes?: number;
|
|
@@ -668,7 +707,7 @@ type CalendarEvent = {
|
|
|
668
707
|
*
|
|
669
708
|
*/
|
|
670
709
|
roleIds?: Array<GroupRoleId> | null;
|
|
671
|
-
startsAt
|
|
710
|
+
startsAt: Date;
|
|
672
711
|
/**
|
|
673
712
|
*
|
|
674
713
|
*/
|
|
@@ -910,6 +949,17 @@ type UserSubscription = {
|
|
|
910
949
|
isGift: boolean;
|
|
911
950
|
isBulkGift: boolean;
|
|
912
951
|
};
|
|
952
|
+
/**
|
|
953
|
+
* UserSubscriptionEligible
|
|
954
|
+
*/
|
|
955
|
+
type UserSubscriptionEligible = {
|
|
956
|
+
activeCancelledSubscription: boolean;
|
|
957
|
+
giftEligible: boolean;
|
|
958
|
+
nonExtendVendorWillLoseGiftTime: boolean;
|
|
959
|
+
purchaseEligible: boolean;
|
|
960
|
+
subscriptionEligible: boolean;
|
|
961
|
+
subscriptionOnAltAccount: boolean;
|
|
962
|
+
};
|
|
913
963
|
/**
|
|
914
964
|
* LicenseType
|
|
915
965
|
*/
|
|
@@ -1071,6 +1121,76 @@ type Balance = {
|
|
|
1071
1121
|
noTransactions?: boolean;
|
|
1072
1122
|
tiliaResponse?: boolean;
|
|
1073
1123
|
};
|
|
1124
|
+
/**
|
|
1125
|
+
* EconomyAccount
|
|
1126
|
+
*/
|
|
1127
|
+
type EconomyAccount = {
|
|
1128
|
+
accountActivatedOn: Date | null;
|
|
1129
|
+
accountId: string | null;
|
|
1130
|
+
blocked: boolean;
|
|
1131
|
+
canSpend: boolean;
|
|
1132
|
+
source: string;
|
|
1133
|
+
userId: UserId;
|
|
1134
|
+
};
|
|
1135
|
+
/**
|
|
1136
|
+
* StoreID
|
|
1137
|
+
*/
|
|
1138
|
+
type StoreId = string;
|
|
1139
|
+
/**
|
|
1140
|
+
* StoreType
|
|
1141
|
+
*/
|
|
1142
|
+
type StoreType = 'house' | 'world' | 'group';
|
|
1143
|
+
/**
|
|
1144
|
+
* StoreShelfID
|
|
1145
|
+
*/
|
|
1146
|
+
type StoreShelfId = string;
|
|
1147
|
+
/**
|
|
1148
|
+
* StoreShelf
|
|
1149
|
+
*/
|
|
1150
|
+
type StoreShelf = {
|
|
1151
|
+
id: StoreShelfId;
|
|
1152
|
+
listingIds: Array<ProductId>;
|
|
1153
|
+
listings?: Array<ProductListing>;
|
|
1154
|
+
shelfDescription: string;
|
|
1155
|
+
shelfLayout: string;
|
|
1156
|
+
shelfTitle: string;
|
|
1157
|
+
updatedAt: string;
|
|
1158
|
+
};
|
|
1159
|
+
/**
|
|
1160
|
+
* Store
|
|
1161
|
+
*/
|
|
1162
|
+
type Store = {
|
|
1163
|
+
description: string;
|
|
1164
|
+
displayName: string;
|
|
1165
|
+
id: StoreId;
|
|
1166
|
+
sellerDisplayName: string;
|
|
1167
|
+
sellerId: UserId;
|
|
1168
|
+
storeId: StoreId;
|
|
1169
|
+
storeType: StoreType;
|
|
1170
|
+
tags: Array<Tag>;
|
|
1171
|
+
/**
|
|
1172
|
+
* Only for store type world and group
|
|
1173
|
+
*/
|
|
1174
|
+
listingIds?: Array<ProductId>;
|
|
1175
|
+
/**
|
|
1176
|
+
* Only for store type world and group
|
|
1177
|
+
*/
|
|
1178
|
+
listings?: Array<ProductListing>;
|
|
1179
|
+
worldId?: WorldId;
|
|
1180
|
+
groupId?: GroupId;
|
|
1181
|
+
/**
|
|
1182
|
+
* Only for store type house
|
|
1183
|
+
*/
|
|
1184
|
+
shelfIds?: Array<StoreShelfId>;
|
|
1185
|
+
/**
|
|
1186
|
+
* Only for store type house
|
|
1187
|
+
*/
|
|
1188
|
+
shelves?: Array<StoreShelf>;
|
|
1189
|
+
};
|
|
1190
|
+
/**
|
|
1191
|
+
* StoreView
|
|
1192
|
+
*/
|
|
1193
|
+
type StoreView = 'all' | 'publicPreview' | 'public' | 'preview' | 'draft';
|
|
1074
1194
|
/**
|
|
1075
1195
|
* FavoriteID
|
|
1076
1196
|
*/
|
|
@@ -1381,7 +1501,7 @@ type LimitedUserFriend = {
|
|
|
1381
1501
|
*
|
|
1382
1502
|
*/
|
|
1383
1503
|
bioLinks?: Array<string>;
|
|
1384
|
-
currentAvatarImageUrl
|
|
1504
|
+
currentAvatarImageUrl?: CurrentAvatarImageUrl;
|
|
1385
1505
|
currentAvatarThumbnailImageUrl?: CurrentAvatarThumbnailImageUrl;
|
|
1386
1506
|
currentAvatarTags?: Array<Tag>;
|
|
1387
1507
|
developerType: DeveloperType;
|
|
@@ -1396,15 +1516,15 @@ type LimitedUserFriend = {
|
|
|
1396
1516
|
last_activity: Date | null;
|
|
1397
1517
|
last_mobile: Date | null;
|
|
1398
1518
|
platform: string;
|
|
1399
|
-
profilePicOverride
|
|
1400
|
-
profilePicOverrideThumbnail
|
|
1519
|
+
profilePicOverride?: string;
|
|
1520
|
+
profilePicOverrideThumbnail?: string;
|
|
1401
1521
|
status: UserStatus;
|
|
1402
1522
|
statusDescription: string;
|
|
1403
1523
|
/**
|
|
1404
1524
|
* <- Always empty.
|
|
1405
1525
|
*/
|
|
1406
1526
|
tags: Array<Tag>;
|
|
1407
|
-
userIcon
|
|
1527
|
+
userIcon?: string;
|
|
1408
1528
|
};
|
|
1409
1529
|
/**
|
|
1410
1530
|
* NotificationType
|
|
@@ -1551,7 +1671,7 @@ type GroupMemberId = string;
|
|
|
1551
1671
|
/**
|
|
1552
1672
|
* GroupPermissions
|
|
1553
1673
|
*/
|
|
1554
|
-
type GroupPermissions = '*' | 'group-announcement-manage' | 'group-audit-view' | 'group-bans-manage' | 'group-data-manage' | 'group-default-role-manage' | 'group-galleries-manage' | 'group-instance-age-gated-create' | 'group-instance-join' | 'group-instance-manage' | 'group-instance-moderate' | 'group-instance-open-create' | 'group-instance-plus-create' | 'group-instance-plus-portal' | 'group-instance-plus-portal-unlocked' | 'group-instance-public-create' | 'group-instance-queue-priority' | 'group-instance-restricted-create' | 'group-invites-manage' | 'group-members-manage' | 'group-members-remove' | 'group-members-viewall' | 'group-roles-assign' | 'group-roles-manage' | 'group-calendar-manage';
|
|
1674
|
+
type GroupPermissions = '*' | 'group-announcement-manage' | 'group-audit-view' | 'group-bans-manage' | 'group-data-manage' | 'group-default-role-manage' | 'group-galleries-manage' | 'group-instance-age-gated-create' | 'group-instance-join' | 'group-instance-manage' | 'group-instance-moderate' | 'group-instance-open-create' | 'group-instance-plus-create' | 'group-instance-plus-portal' | 'group-instance-plus-portal-unlocked' | 'group-instance-public-create' | 'group-instance-queue-priority' | 'group-instance-restricted-create' | 'group-invites-manage' | 'group-members-manage' | 'group-members-remove' | 'group-members-viewall' | 'group-roles-assign' | 'group-roles-manage' | 'group-calendar-manage' | 'group-instance-calendar-link';
|
|
1555
1675
|
/**
|
|
1556
1676
|
* GroupMyMember
|
|
1557
1677
|
*/
|
|
@@ -1917,10 +2037,6 @@ type InstanceContentSettings = {
|
|
|
1917
2037
|
stickers?: boolean;
|
|
1918
2038
|
props?: boolean;
|
|
1919
2039
|
};
|
|
1920
|
-
/**
|
|
1921
|
-
* StoreID
|
|
1922
|
-
*/
|
|
1923
|
-
type StoreId = string;
|
|
1924
2040
|
/**
|
|
1925
2041
|
* UdonProductId
|
|
1926
2042
|
* A unique ID of a Udon Product
|
|
@@ -1989,8 +2105,8 @@ type World = {
|
|
|
1989
2105
|
* GroupInstance
|
|
1990
2106
|
*/
|
|
1991
2107
|
type GroupInstance = {
|
|
1992
|
-
instanceId:
|
|
1993
|
-
location:
|
|
2108
|
+
instanceId: InstanceId;
|
|
2109
|
+
location: LocationId;
|
|
1994
2110
|
world: World;
|
|
1995
2111
|
memberCount: number;
|
|
1996
2112
|
};
|
|
@@ -2165,6 +2281,10 @@ type UpdateGroupRoleRequest = {
|
|
|
2165
2281
|
* InventoryItemType
|
|
2166
2282
|
*/
|
|
2167
2283
|
type InventoryItemType = 'bundle' | 'prop' | 'emoji' | 'sticker';
|
|
2284
|
+
/**
|
|
2285
|
+
* InventoryFlag
|
|
2286
|
+
*/
|
|
2287
|
+
type InventoryFlag = 'instantiatable' | 'archivable' | 'consumable' | 'trashable' | 'cloneable' | 'ugc';
|
|
2168
2288
|
/**
|
|
2169
2289
|
* InventoryItemID
|
|
2170
2290
|
*/
|
|
@@ -2192,7 +2312,6 @@ type InventoryMetadata = {
|
|
|
2192
2312
|
imageUrl?: string;
|
|
2193
2313
|
maskTag?: string;
|
|
2194
2314
|
propId?: PropId;
|
|
2195
|
-
[key: string]: unknown | Array<InventoryTemplateId> | boolean | string | PropId | undefined;
|
|
2196
2315
|
};
|
|
2197
2316
|
/**
|
|
2198
2317
|
* InventoryItem
|
|
@@ -2225,6 +2344,12 @@ type Inventory = {
|
|
|
2225
2344
|
data: Array<InventoryItem>;
|
|
2226
2345
|
totalCount: number;
|
|
2227
2346
|
};
|
|
2347
|
+
/**
|
|
2348
|
+
* UpdateInventoryItemRequest
|
|
2349
|
+
*/
|
|
2350
|
+
type UpdateInventoryItemRequest = {
|
|
2351
|
+
isArchived?: boolean;
|
|
2352
|
+
};
|
|
2228
2353
|
/**
|
|
2229
2354
|
* InventoryDropID
|
|
2230
2355
|
*/
|
|
@@ -2282,6 +2407,23 @@ type InventorySpawn = {
|
|
|
2282
2407
|
token: string;
|
|
2283
2408
|
version: number;
|
|
2284
2409
|
};
|
|
2410
|
+
/**
|
|
2411
|
+
* ShareInventoryItemDirectRequest
|
|
2412
|
+
*/
|
|
2413
|
+
type ShareInventoryItemDirectRequest = {
|
|
2414
|
+
itemId: InventoryItemId;
|
|
2415
|
+
users: Array<UserId>;
|
|
2416
|
+
};
|
|
2417
|
+
/**
|
|
2418
|
+
* OkStatus
|
|
2419
|
+
* A status response consisting of solely a string description of whether the result of an operation was ok.
|
|
2420
|
+
*/
|
|
2421
|
+
type OkStatus = {
|
|
2422
|
+
/**
|
|
2423
|
+
* The actual status itself
|
|
2424
|
+
*/
|
|
2425
|
+
ok: string;
|
|
2426
|
+
};
|
|
2285
2427
|
/**
|
|
2286
2428
|
* InviteRequest
|
|
2287
2429
|
*/
|
|
@@ -2440,14 +2582,14 @@ type LimitedUserInstance = {
|
|
|
2440
2582
|
last_activity: Date | null;
|
|
2441
2583
|
last_mobile: Date | null;
|
|
2442
2584
|
platform?: string;
|
|
2443
|
-
profilePicOverride
|
|
2444
|
-
profilePicOverrideThumbnail
|
|
2585
|
+
profilePicOverride?: string;
|
|
2586
|
+
profilePicOverrideThumbnail?: string;
|
|
2445
2587
|
pronouns: string;
|
|
2446
2588
|
state: UserState;
|
|
2447
2589
|
status: UserStatus;
|
|
2448
2590
|
statusDescription: string;
|
|
2449
2591
|
tags: Array<Tag>;
|
|
2450
|
-
userIcon
|
|
2592
|
+
userIcon?: string;
|
|
2451
2593
|
};
|
|
2452
2594
|
/**
|
|
2453
2595
|
* Instance
|
|
@@ -2465,21 +2607,21 @@ type Instance = {
|
|
|
2465
2607
|
* @deprecated
|
|
2466
2608
|
*/
|
|
2467
2609
|
clientNumber: string;
|
|
2468
|
-
contentSettings
|
|
2469
|
-
displayName
|
|
2610
|
+
contentSettings?: InstanceContentSettings;
|
|
2611
|
+
displayName?: string | null;
|
|
2470
2612
|
full: boolean;
|
|
2471
2613
|
gameServerVersion?: number;
|
|
2472
2614
|
id: InstanceId;
|
|
2473
|
-
instanceId:
|
|
2474
|
-
instancePersistenceEnabled
|
|
2475
|
-
location:
|
|
2615
|
+
instanceId: InstanceId;
|
|
2616
|
+
instancePersistenceEnabled?: string | null;
|
|
2617
|
+
location: LocationId;
|
|
2476
2618
|
n_users: number;
|
|
2477
2619
|
name: string;
|
|
2478
2620
|
ownerId?: InstanceOwnerId;
|
|
2479
2621
|
permanent: boolean;
|
|
2480
2622
|
photonRegion: Region;
|
|
2481
2623
|
platforms: InstancePlatforms;
|
|
2482
|
-
playerPersistenceEnabled
|
|
2624
|
+
playerPersistenceEnabled?: boolean | null;
|
|
2483
2625
|
region: InstanceRegion;
|
|
2484
2626
|
secureName: string;
|
|
2485
2627
|
shortName?: string | null;
|
|
@@ -2517,13 +2659,13 @@ type InstanceShortNameResponse = {
|
|
|
2517
2659
|
shortName?: string | null;
|
|
2518
2660
|
};
|
|
2519
2661
|
/**
|
|
2520
|
-
*
|
|
2662
|
+
* PlayerModerationType
|
|
2521
2663
|
*/
|
|
2522
|
-
type
|
|
2664
|
+
type PlayerModerationType = 'block' | 'mute' | 'muteChat' | 'unmute' | 'unmuteChat' | 'hideAvatar' | 'showAvatar' | 'interactOn' | 'interactOff';
|
|
2523
2665
|
/**
|
|
2524
|
-
*
|
|
2666
|
+
* PlayerModerationID
|
|
2525
2667
|
*/
|
|
2526
|
-
type
|
|
2668
|
+
type PlayerModerationId = string;
|
|
2527
2669
|
/**
|
|
2528
2670
|
* PlayerModeration
|
|
2529
2671
|
*/
|
|
@@ -2659,7 +2801,7 @@ type LimitedUserSearch = {
|
|
|
2659
2801
|
id: UserId;
|
|
2660
2802
|
isFriend: boolean;
|
|
2661
2803
|
last_platform: Platform;
|
|
2662
|
-
profilePicOverride
|
|
2804
|
+
profilePicOverride?: string;
|
|
2663
2805
|
pronouns?: string;
|
|
2664
2806
|
status: UserStatus;
|
|
2665
2807
|
statusDescription: string;
|
|
@@ -2667,7 +2809,7 @@ type LimitedUserSearch = {
|
|
|
2667
2809
|
* <- Always empty.
|
|
2668
2810
|
*/
|
|
2669
2811
|
tags: Array<Tag>;
|
|
2670
|
-
userIcon
|
|
2812
|
+
userIcon?: string;
|
|
2671
2813
|
};
|
|
2672
2814
|
/**
|
|
2673
2815
|
* User
|
|
@@ -2709,7 +2851,7 @@ type User = {
|
|
|
2709
2851
|
last_login: string;
|
|
2710
2852
|
last_mobile?: string | null;
|
|
2711
2853
|
last_platform: Platform;
|
|
2712
|
-
location?:
|
|
2854
|
+
location?: LocationId;
|
|
2713
2855
|
note?: string;
|
|
2714
2856
|
platform?: string;
|
|
2715
2857
|
profilePicOverride: string;
|
|
@@ -3908,7 +4050,7 @@ type Permission = {
|
|
|
3908
4050
|
*/
|
|
3909
4051
|
type NotificationDetailInvite = {
|
|
3910
4052
|
inviteMessage?: string;
|
|
3911
|
-
worldId:
|
|
4053
|
+
worldId: LocationId;
|
|
3912
4054
|
worldName: string;
|
|
3913
4055
|
};
|
|
3914
4056
|
/**
|
|
@@ -4044,6 +4186,14 @@ type UserIdAdmin = string;
|
|
|
4044
4186
|
* The month to search in.
|
|
4045
4187
|
*/
|
|
4046
4188
|
type MonthDate = Date;
|
|
4189
|
+
/**
|
|
4190
|
+
* Search term for calendar events.
|
|
4191
|
+
*/
|
|
4192
|
+
type CalendarSearchTerm = string;
|
|
4193
|
+
/**
|
|
4194
|
+
* The offset from UTC in hours of the client or authenticated user.
|
|
4195
|
+
*/
|
|
4196
|
+
type UtcOffset = number;
|
|
4047
4197
|
/**
|
|
4048
4198
|
* Must be a valid group ID.
|
|
4049
4199
|
*/
|
|
@@ -4056,6 +4206,10 @@ type CalendarId2 = string;
|
|
|
4056
4206
|
* Must be a valid transaction ID.
|
|
4057
4207
|
*/
|
|
4058
4208
|
type TransactionId2 = string;
|
|
4209
|
+
/**
|
|
4210
|
+
* The Steam ID of the user.
|
|
4211
|
+
*/
|
|
4212
|
+
type SteamId = string;
|
|
4059
4213
|
/**
|
|
4060
4214
|
* Must be a valid license group ID.
|
|
4061
4215
|
*/
|
|
@@ -4076,6 +4230,16 @@ type GroupIdFilter = string;
|
|
|
4076
4230
|
* Filter for users' listings and inventory bundles.
|
|
4077
4231
|
*/
|
|
4078
4232
|
type Active = boolean;
|
|
4233
|
+
type StoreId2 = StoreId;
|
|
4234
|
+
/**
|
|
4235
|
+
* Listings fields will be populated.
|
|
4236
|
+
*/
|
|
4237
|
+
type HydrateListings = boolean;
|
|
4238
|
+
/**
|
|
4239
|
+
* Products fields will be populated.
|
|
4240
|
+
*/
|
|
4241
|
+
type HydrateProducts = boolean;
|
|
4242
|
+
type StoreView2 = StoreView;
|
|
4079
4243
|
/**
|
|
4080
4244
|
* Must be a valid favorite ID.
|
|
4081
4245
|
*/
|
|
@@ -4155,11 +4319,31 @@ type NotificationId2 = string;
|
|
|
4155
4319
|
/**
|
|
4156
4320
|
* Sort order for inventory retrieval.
|
|
4157
4321
|
*/
|
|
4158
|
-
type InventorySortOrder = 'newest' | 'oldest';
|
|
4322
|
+
type InventorySortOrder = 'newest' | 'newest_created' | 'oldest' | 'oldest_created';
|
|
4323
|
+
/**
|
|
4324
|
+
* Filter tags for inventory retrieval (comma-separated).
|
|
4325
|
+
*/
|
|
4326
|
+
type InventoryItemTags = Tag;
|
|
4159
4327
|
/**
|
|
4160
4328
|
* Filter for inventory retrieval.
|
|
4161
4329
|
*/
|
|
4162
|
-
type
|
|
4330
|
+
type InventoryItemTypes = InventoryItemType;
|
|
4331
|
+
/**
|
|
4332
|
+
* Filter flags for inventory retrieval (comma-separated).
|
|
4333
|
+
*/
|
|
4334
|
+
type InventoryItemFlags = InventoryFlag;
|
|
4335
|
+
/**
|
|
4336
|
+
* Filter out types for inventory retrieval (comma-separated).
|
|
4337
|
+
*/
|
|
4338
|
+
type InventoryItemNotTypes = InventoryItemType;
|
|
4339
|
+
/**
|
|
4340
|
+
* Filter out flags for inventory retrieval (comma-separated).
|
|
4341
|
+
*/
|
|
4342
|
+
type InventoryItemNotFlags = InventoryFlag;
|
|
4343
|
+
/**
|
|
4344
|
+
* Filter archived status for inventory retrieval.
|
|
4345
|
+
*/
|
|
4346
|
+
type InventoryItemArchived = boolean;
|
|
4163
4347
|
/**
|
|
4164
4348
|
* Must be a valid inventory item ID.
|
|
4165
4349
|
*/
|
|
@@ -4172,6 +4356,14 @@ type InventoryTemplateId2 = string;
|
|
|
4172
4356
|
* Id for inventory item spawning.
|
|
4173
4357
|
*/
|
|
4174
4358
|
type InventorySpawnItemId = InventoryItemId;
|
|
4359
|
+
/**
|
|
4360
|
+
* Id for inventory item sharing.
|
|
4361
|
+
*/
|
|
4362
|
+
type InventoryPedestalItemId = InventoryItemId;
|
|
4363
|
+
/**
|
|
4364
|
+
* The duration before the sharing pedestal despawns.
|
|
4365
|
+
*/
|
|
4366
|
+
type InventoryPedestalDuration = number;
|
|
4175
4367
|
/**
|
|
4176
4368
|
* Must be a valid world ID.
|
|
4177
4369
|
*/
|
|
@@ -4585,6 +4777,26 @@ type VerifyLoginPlaceData = {
|
|
|
4585
4777
|
};
|
|
4586
4778
|
url: '/auth/verifyLoginPlace';
|
|
4587
4779
|
};
|
|
4780
|
+
type GetGlobalAvatarModerationsData = {
|
|
4781
|
+
body?: never;
|
|
4782
|
+
path?: never;
|
|
4783
|
+
query?: never;
|
|
4784
|
+
url: '/auth/user/avatarmoderations';
|
|
4785
|
+
};
|
|
4786
|
+
type GetGlobalAvatarModerationsErrors = {
|
|
4787
|
+
/**
|
|
4788
|
+
* Error response due to missing auth cookie.
|
|
4789
|
+
*/
|
|
4790
|
+
401: _Error;
|
|
4791
|
+
};
|
|
4792
|
+
type GetGlobalAvatarModerationsError = GetGlobalAvatarModerationsErrors[keyof GetGlobalAvatarModerationsErrors];
|
|
4793
|
+
type GetGlobalAvatarModerationsResponses = {
|
|
4794
|
+
/**
|
|
4795
|
+
* Returns list of globally blocked avatars with timestamps
|
|
4796
|
+
*/
|
|
4797
|
+
200: Array<AvatarModeration>;
|
|
4798
|
+
};
|
|
4799
|
+
type GetGlobalAvatarModerationsResponse = GetGlobalAvatarModerationsResponses[keyof GetGlobalAvatarModerationsResponses];
|
|
4588
4800
|
type GetOwnAvatarData = {
|
|
4589
4801
|
body?: never;
|
|
4590
4802
|
path: {
|
|
@@ -5155,6 +5367,43 @@ type GetFollowedCalendarEventsResponses = {
|
|
|
5155
5367
|
200: PaginatedCalendarEventList;
|
|
5156
5368
|
};
|
|
5157
5369
|
type GetFollowedCalendarEventsResponse = GetFollowedCalendarEventsResponses[keyof GetFollowedCalendarEventsResponses];
|
|
5370
|
+
type SearchCalendarEventsData = {
|
|
5371
|
+
body?: never;
|
|
5372
|
+
path?: never;
|
|
5373
|
+
query: {
|
|
5374
|
+
/**
|
|
5375
|
+
* Search term for calendar events.
|
|
5376
|
+
*/
|
|
5377
|
+
searchTerm: string;
|
|
5378
|
+
/**
|
|
5379
|
+
* The offset from UTC in hours of the client or authenticated user.
|
|
5380
|
+
*/
|
|
5381
|
+
utcOffset?: number;
|
|
5382
|
+
/**
|
|
5383
|
+
* The number of objects to return.
|
|
5384
|
+
*/
|
|
5385
|
+
n?: number;
|
|
5386
|
+
/**
|
|
5387
|
+
* A zero-based offset from the default object sorting from where search results start.
|
|
5388
|
+
*/
|
|
5389
|
+
offset?: number;
|
|
5390
|
+
};
|
|
5391
|
+
url: '/calendar/search';
|
|
5392
|
+
};
|
|
5393
|
+
type SearchCalendarEventsErrors = {
|
|
5394
|
+
/**
|
|
5395
|
+
* Error response due to missing auth cookie.
|
|
5396
|
+
*/
|
|
5397
|
+
401: _Error;
|
|
5398
|
+
};
|
|
5399
|
+
type SearchCalendarEventsError = SearchCalendarEventsErrors[keyof SearchCalendarEventsErrors];
|
|
5400
|
+
type SearchCalendarEventsResponses = {
|
|
5401
|
+
/**
|
|
5402
|
+
* Returns a list of CalendarEvent objects.
|
|
5403
|
+
*/
|
|
5404
|
+
200: PaginatedCalendarEventList;
|
|
5405
|
+
};
|
|
5406
|
+
type SearchCalendarEventsResponse = SearchCalendarEventsResponses[keyof SearchCalendarEventsResponses];
|
|
5158
5407
|
type GetGroupCalendarEventsData = {
|
|
5159
5408
|
body?: never;
|
|
5160
5409
|
path: {
|
|
@@ -5412,6 +5661,51 @@ type GetSteamTransactionResponses = {
|
|
|
5412
5661
|
200: Transaction;
|
|
5413
5662
|
};
|
|
5414
5663
|
type GetSteamTransactionResponse = GetSteamTransactionResponses[keyof GetSteamTransactionResponses];
|
|
5664
|
+
type GetAdminTransactionsData = {
|
|
5665
|
+
body?: never;
|
|
5666
|
+
path?: never;
|
|
5667
|
+
query?: never;
|
|
5668
|
+
url: '/Admin/transactions';
|
|
5669
|
+
};
|
|
5670
|
+
type GetAdminTransactionsErrors = {
|
|
5671
|
+
/**
|
|
5672
|
+
* Error response due to missing auth cookie.
|
|
5673
|
+
*/
|
|
5674
|
+
401: _Error;
|
|
5675
|
+
};
|
|
5676
|
+
type GetAdminTransactionsError = GetAdminTransactionsErrors[keyof GetAdminTransactionsErrors];
|
|
5677
|
+
type GetAdminTransactionsResponses = {
|
|
5678
|
+
/**
|
|
5679
|
+
* Returns a list of Transaction objects.
|
|
5680
|
+
*/
|
|
5681
|
+
200: Array<Transaction>;
|
|
5682
|
+
};
|
|
5683
|
+
type GetAdminTransactionsResponse = GetAdminTransactionsResponses[keyof GetAdminTransactionsResponses];
|
|
5684
|
+
type GetAdminTransactionData = {
|
|
5685
|
+
body?: never;
|
|
5686
|
+
path: {
|
|
5687
|
+
/**
|
|
5688
|
+
* Must be a valid transaction ID.
|
|
5689
|
+
*/
|
|
5690
|
+
transactionId: string;
|
|
5691
|
+
};
|
|
5692
|
+
query?: never;
|
|
5693
|
+
url: '/Admin/transactions/{transactionId}';
|
|
5694
|
+
};
|
|
5695
|
+
type GetAdminTransactionErrors = {
|
|
5696
|
+
/**
|
|
5697
|
+
* Error response due to missing auth cookie.
|
|
5698
|
+
*/
|
|
5699
|
+
401: _Error;
|
|
5700
|
+
};
|
|
5701
|
+
type GetAdminTransactionError = GetAdminTransactionErrors[keyof GetAdminTransactionErrors];
|
|
5702
|
+
type GetAdminTransactionResponses = {
|
|
5703
|
+
/**
|
|
5704
|
+
* Returns a single Transaction object.
|
|
5705
|
+
*/
|
|
5706
|
+
200: Transaction;
|
|
5707
|
+
};
|
|
5708
|
+
type GetAdminTransactionResponse = GetAdminTransactionResponses[keyof GetAdminTransactionResponses];
|
|
5415
5709
|
type GetCurrentSubscriptionsData = {
|
|
5416
5710
|
body?: never;
|
|
5417
5711
|
path?: never;
|
|
@@ -5432,6 +5726,36 @@ type GetCurrentSubscriptionsResponses = {
|
|
|
5432
5726
|
200: Array<UserSubscription>;
|
|
5433
5727
|
};
|
|
5434
5728
|
type GetCurrentSubscriptionsResponse = GetCurrentSubscriptionsResponses[keyof GetCurrentSubscriptionsResponses];
|
|
5729
|
+
type GetUserSubscriptionEligibleData = {
|
|
5730
|
+
body?: never;
|
|
5731
|
+
path: {
|
|
5732
|
+
/**
|
|
5733
|
+
* Must be a valid user ID.
|
|
5734
|
+
*/
|
|
5735
|
+
userId: string;
|
|
5736
|
+
};
|
|
5737
|
+
query?: {
|
|
5738
|
+
/**
|
|
5739
|
+
* The Steam ID of the user.
|
|
5740
|
+
*/
|
|
5741
|
+
steamId?: string;
|
|
5742
|
+
};
|
|
5743
|
+
url: '/users/{userId}/subscription/eligible';
|
|
5744
|
+
};
|
|
5745
|
+
type GetUserSubscriptionEligibleErrors = {
|
|
5746
|
+
/**
|
|
5747
|
+
* Error response due to missing auth cookie.
|
|
5748
|
+
*/
|
|
5749
|
+
401: _Error;
|
|
5750
|
+
};
|
|
5751
|
+
type GetUserSubscriptionEligibleError = GetUserSubscriptionEligibleErrors[keyof GetUserSubscriptionEligibleErrors];
|
|
5752
|
+
type GetUserSubscriptionEligibleResponses = {
|
|
5753
|
+
/**
|
|
5754
|
+
* Returns a single UserSubscriptionEligible object.
|
|
5755
|
+
*/
|
|
5756
|
+
200: UserSubscriptionEligible;
|
|
5757
|
+
};
|
|
5758
|
+
type GetUserSubscriptionEligibleResponse = GetUserSubscriptionEligibleResponses[keyof GetUserSubscriptionEligibleResponses];
|
|
5435
5759
|
type GetSubscriptionsData = {
|
|
5436
5760
|
body?: never;
|
|
5437
5761
|
path?: never;
|
|
@@ -5643,44 +5967,171 @@ type GetBalanceResponses = {
|
|
|
5643
5967
|
200: Balance;
|
|
5644
5968
|
};
|
|
5645
5969
|
type GetBalanceResponse = GetBalanceResponses[keyof GetBalanceResponses];
|
|
5646
|
-
type
|
|
5970
|
+
type GetBalanceEarningsData = {
|
|
5647
5971
|
body?: never;
|
|
5648
|
-
path
|
|
5649
|
-
query?: {
|
|
5650
|
-
/**
|
|
5651
|
-
* The number of objects to return.
|
|
5652
|
-
*/
|
|
5653
|
-
n?: number;
|
|
5654
|
-
/**
|
|
5655
|
-
* A zero-based offset from the default object sorting from where search results start.
|
|
5656
|
-
*/
|
|
5657
|
-
offset?: number;
|
|
5658
|
-
/**
|
|
5659
|
-
* The type of favorites to return, FavoriteType.
|
|
5660
|
-
*/
|
|
5661
|
-
type?: string;
|
|
5972
|
+
path: {
|
|
5662
5973
|
/**
|
|
5663
|
-
*
|
|
5974
|
+
* Must be a valid user ID.
|
|
5664
5975
|
*/
|
|
5665
|
-
|
|
5976
|
+
userId: string;
|
|
5666
5977
|
};
|
|
5667
|
-
|
|
5978
|
+
query?: never;
|
|
5979
|
+
url: '/user/{userId}/balance/earnings';
|
|
5668
5980
|
};
|
|
5669
|
-
type
|
|
5981
|
+
type GetBalanceEarningsErrors = {
|
|
5670
5982
|
/**
|
|
5671
5983
|
* Error response due to missing auth cookie.
|
|
5672
5984
|
*/
|
|
5673
5985
|
401: _Error;
|
|
5674
5986
|
};
|
|
5675
|
-
type
|
|
5676
|
-
type
|
|
5987
|
+
type GetBalanceEarningsError = GetBalanceEarningsErrors[keyof GetBalanceEarningsErrors];
|
|
5988
|
+
type GetBalanceEarningsResponses = {
|
|
5677
5989
|
/**
|
|
5678
|
-
* Returns a
|
|
5990
|
+
* Returns a single Balance object.
|
|
5679
5991
|
*/
|
|
5680
|
-
200:
|
|
5992
|
+
200: Balance;
|
|
5681
5993
|
};
|
|
5682
|
-
type
|
|
5683
|
-
type
|
|
5994
|
+
type GetBalanceEarningsResponse = GetBalanceEarningsResponses[keyof GetBalanceEarningsResponses];
|
|
5995
|
+
type GetEconomyAccountData = {
|
|
5996
|
+
body?: never;
|
|
5997
|
+
path: {
|
|
5998
|
+
/**
|
|
5999
|
+
* Must be a valid user ID.
|
|
6000
|
+
*/
|
|
6001
|
+
userId: string;
|
|
6002
|
+
};
|
|
6003
|
+
query?: never;
|
|
6004
|
+
url: '/user/{userId}/economy/account';
|
|
6005
|
+
};
|
|
6006
|
+
type GetEconomyAccountErrors = {
|
|
6007
|
+
/**
|
|
6008
|
+
* Error response due to missing auth cookie.
|
|
6009
|
+
*/
|
|
6010
|
+
401: _Error;
|
|
6011
|
+
};
|
|
6012
|
+
type GetEconomyAccountError = GetEconomyAccountErrors[keyof GetEconomyAccountErrors];
|
|
6013
|
+
type GetEconomyAccountResponses = {
|
|
6014
|
+
/**
|
|
6015
|
+
* Returns a single EconomyAccount object.
|
|
6016
|
+
*/
|
|
6017
|
+
200: EconomyAccount;
|
|
6018
|
+
};
|
|
6019
|
+
type GetEconomyAccountResponse = GetEconomyAccountResponses[keyof GetEconomyAccountResponses];
|
|
6020
|
+
type GetActiveLicensesData = {
|
|
6021
|
+
body?: never;
|
|
6022
|
+
path?: never;
|
|
6023
|
+
query?: never;
|
|
6024
|
+
url: '/economy/licenses/active';
|
|
6025
|
+
};
|
|
6026
|
+
type GetActiveLicensesErrors = {
|
|
6027
|
+
/**
|
|
6028
|
+
* Error response due to missing auth cookie.
|
|
6029
|
+
*/
|
|
6030
|
+
401: _Error;
|
|
6031
|
+
};
|
|
6032
|
+
type GetActiveLicensesError = GetActiveLicensesErrors[keyof GetActiveLicensesErrors];
|
|
6033
|
+
type GetActiveLicensesResponses = {
|
|
6034
|
+
/**
|
|
6035
|
+
* Returns a list of License objects.
|
|
6036
|
+
*/
|
|
6037
|
+
200: Array<License>;
|
|
6038
|
+
};
|
|
6039
|
+
type GetActiveLicensesResponse = GetActiveLicensesResponses[keyof GetActiveLicensesResponses];
|
|
6040
|
+
type GetStoreData = {
|
|
6041
|
+
body?: never;
|
|
6042
|
+
path?: never;
|
|
6043
|
+
query: {
|
|
6044
|
+
storeId: StoreId;
|
|
6045
|
+
/**
|
|
6046
|
+
* Listings fields will be populated.
|
|
6047
|
+
*/
|
|
6048
|
+
hydrateListings?: boolean;
|
|
6049
|
+
/**
|
|
6050
|
+
* Products fields will be populated.
|
|
6051
|
+
*/
|
|
6052
|
+
hydrateProducts?: boolean;
|
|
6053
|
+
};
|
|
6054
|
+
url: '/economy/store';
|
|
6055
|
+
};
|
|
6056
|
+
type GetStoreErrors = {
|
|
6057
|
+
/**
|
|
6058
|
+
* Error response due to missing auth cookie.
|
|
6059
|
+
*/
|
|
6060
|
+
401: _Error;
|
|
6061
|
+
};
|
|
6062
|
+
type GetStoreError = GetStoreErrors[keyof GetStoreErrors];
|
|
6063
|
+
type GetStoreResponses = {
|
|
6064
|
+
/**
|
|
6065
|
+
* Returns a single Store object.
|
|
6066
|
+
*/
|
|
6067
|
+
200: Store;
|
|
6068
|
+
};
|
|
6069
|
+
type GetStoreResponse = GetStoreResponses[keyof GetStoreResponses];
|
|
6070
|
+
type GetStoreShelvesData = {
|
|
6071
|
+
body?: never;
|
|
6072
|
+
path?: never;
|
|
6073
|
+
query: {
|
|
6074
|
+
storeId: StoreId;
|
|
6075
|
+
/**
|
|
6076
|
+
* Listings fields will be populated.
|
|
6077
|
+
*/
|
|
6078
|
+
hydrateListings?: boolean;
|
|
6079
|
+
fetch?: StoreView;
|
|
6080
|
+
};
|
|
6081
|
+
url: '/economy/store/shelves';
|
|
6082
|
+
};
|
|
6083
|
+
type GetStoreShelvesErrors = {
|
|
6084
|
+
/**
|
|
6085
|
+
* Error response due to missing auth cookie.
|
|
6086
|
+
*/
|
|
6087
|
+
401: _Error;
|
|
6088
|
+
};
|
|
6089
|
+
type GetStoreShelvesError = GetStoreShelvesErrors[keyof GetStoreShelvesErrors];
|
|
6090
|
+
type GetStoreShelvesResponses = {
|
|
6091
|
+
/**
|
|
6092
|
+
* Returns a list of StoreShelf objects.
|
|
6093
|
+
*/
|
|
6094
|
+
200: Array<StoreShelf>;
|
|
6095
|
+
};
|
|
6096
|
+
type GetStoreShelvesResponse = GetStoreShelvesResponses[keyof GetStoreShelvesResponses];
|
|
6097
|
+
type GetFavoritesData = {
|
|
6098
|
+
body?: never;
|
|
6099
|
+
path?: never;
|
|
6100
|
+
query?: {
|
|
6101
|
+
/**
|
|
6102
|
+
* The number of objects to return.
|
|
6103
|
+
*/
|
|
6104
|
+
n?: number;
|
|
6105
|
+
/**
|
|
6106
|
+
* A zero-based offset from the default object sorting from where search results start.
|
|
6107
|
+
*/
|
|
6108
|
+
offset?: number;
|
|
6109
|
+
/**
|
|
6110
|
+
* The type of favorites to return, FavoriteType.
|
|
6111
|
+
*/
|
|
6112
|
+
type?: string;
|
|
6113
|
+
/**
|
|
6114
|
+
* Tags to include (comma-separated). Any of the tags needs to be present.
|
|
6115
|
+
*/
|
|
6116
|
+
tag?: string;
|
|
6117
|
+
};
|
|
6118
|
+
url: '/favorites';
|
|
6119
|
+
};
|
|
6120
|
+
type GetFavoritesErrors = {
|
|
6121
|
+
/**
|
|
6122
|
+
* Error response due to missing auth cookie.
|
|
6123
|
+
*/
|
|
6124
|
+
401: _Error;
|
|
6125
|
+
};
|
|
6126
|
+
type GetFavoritesError = GetFavoritesErrors[keyof GetFavoritesErrors];
|
|
6127
|
+
type GetFavoritesResponses = {
|
|
6128
|
+
/**
|
|
6129
|
+
* Returns a list of Favorite objects.
|
|
6130
|
+
*/
|
|
6131
|
+
200: Array<Favorite>;
|
|
6132
|
+
};
|
|
6133
|
+
type GetFavoritesResponse = GetFavoritesResponses[keyof GetFavoritesResponses];
|
|
6134
|
+
type AddFavoriteData = {
|
|
5684
6135
|
body?: AddFavoriteRequest;
|
|
5685
6136
|
path?: never;
|
|
5686
6137
|
query?: never;
|
|
@@ -7986,11 +8437,31 @@ type GetInventoryData = {
|
|
|
7986
8437
|
/**
|
|
7987
8438
|
* Sort order for inventory retrieval.
|
|
7988
8439
|
*/
|
|
7989
|
-
|
|
8440
|
+
order?: 'newest' | 'newest_created' | 'oldest' | 'oldest_created';
|
|
8441
|
+
/**
|
|
8442
|
+
* Filter tags for inventory retrieval (comma-separated).
|
|
8443
|
+
*/
|
|
8444
|
+
tags?: Tag;
|
|
7990
8445
|
/**
|
|
7991
8446
|
* Filter for inventory retrieval.
|
|
7992
8447
|
*/
|
|
7993
|
-
|
|
8448
|
+
types?: InventoryItemType;
|
|
8449
|
+
/**
|
|
8450
|
+
* Filter flags for inventory retrieval (comma-separated).
|
|
8451
|
+
*/
|
|
8452
|
+
flags?: InventoryFlag;
|
|
8453
|
+
/**
|
|
8454
|
+
* Filter out types for inventory retrieval (comma-separated).
|
|
8455
|
+
*/
|
|
8456
|
+
notTypes?: InventoryItemType;
|
|
8457
|
+
/**
|
|
8458
|
+
* Filter out flags for inventory retrieval (comma-separated).
|
|
8459
|
+
*/
|
|
8460
|
+
notFlags?: InventoryFlag;
|
|
8461
|
+
/**
|
|
8462
|
+
* Filter archived status for inventory retrieval.
|
|
8463
|
+
*/
|
|
8464
|
+
archived?: boolean;
|
|
7994
8465
|
};
|
|
7995
8466
|
url: '/inventory';
|
|
7996
8467
|
};
|
|
@@ -8033,6 +8504,31 @@ type GetOwnInventoryItemResponses = {
|
|
|
8033
8504
|
200: InventoryItem;
|
|
8034
8505
|
};
|
|
8035
8506
|
type GetOwnInventoryItemResponse = GetOwnInventoryItemResponses[keyof GetOwnInventoryItemResponses];
|
|
8507
|
+
type UpdateOwnInventoryItemData = {
|
|
8508
|
+
body?: UpdateInventoryItemRequest;
|
|
8509
|
+
path: {
|
|
8510
|
+
/**
|
|
8511
|
+
* Must be a valid inventory item ID.
|
|
8512
|
+
*/
|
|
8513
|
+
inventoryItemId: string;
|
|
8514
|
+
};
|
|
8515
|
+
query?: never;
|
|
8516
|
+
url: '/inventory/{inventoryItemId}';
|
|
8517
|
+
};
|
|
8518
|
+
type UpdateOwnInventoryItemErrors = {
|
|
8519
|
+
/**
|
|
8520
|
+
* Error response due to missing auth cookie.
|
|
8521
|
+
*/
|
|
8522
|
+
401: _Error;
|
|
8523
|
+
};
|
|
8524
|
+
type UpdateOwnInventoryItemError = UpdateOwnInventoryItemErrors[keyof UpdateOwnInventoryItemErrors];
|
|
8525
|
+
type UpdateOwnInventoryItemResponses = {
|
|
8526
|
+
/**
|
|
8527
|
+
* Returns an InventoryItem object.
|
|
8528
|
+
*/
|
|
8529
|
+
200: InventoryItem;
|
|
8530
|
+
};
|
|
8531
|
+
type UpdateOwnInventoryItemResponse = UpdateOwnInventoryItemResponses[keyof UpdateOwnInventoryItemResponses];
|
|
8036
8532
|
type GetInventoryDropsData = {
|
|
8037
8533
|
body?: never;
|
|
8038
8534
|
path?: never;
|
|
@@ -8108,6 +8604,64 @@ type SpawnInventoryItemResponses = {
|
|
|
8108
8604
|
200: InventorySpawn;
|
|
8109
8605
|
};
|
|
8110
8606
|
type SpawnInventoryItemResponse = SpawnInventoryItemResponses[keyof SpawnInventoryItemResponses];
|
|
8607
|
+
type ShareInventoryItemPedestalData = {
|
|
8608
|
+
body?: never;
|
|
8609
|
+
path?: never;
|
|
8610
|
+
query: {
|
|
8611
|
+
/**
|
|
8612
|
+
* Id for inventory item sharing.
|
|
8613
|
+
*/
|
|
8614
|
+
itemId: InventoryItemId;
|
|
8615
|
+
/**
|
|
8616
|
+
* The duration before the sharing pedestal despawns.
|
|
8617
|
+
*/
|
|
8618
|
+
duration: number;
|
|
8619
|
+
};
|
|
8620
|
+
url: '/inventory/cloning/pedestal';
|
|
8621
|
+
};
|
|
8622
|
+
type ShareInventoryItemPedestalErrors = {
|
|
8623
|
+
/**
|
|
8624
|
+
* Error response due to missing auth cookie.
|
|
8625
|
+
*/
|
|
8626
|
+
401: _Error;
|
|
8627
|
+
};
|
|
8628
|
+
type ShareInventoryItemPedestalError = ShareInventoryItemPedestalErrors[keyof ShareInventoryItemPedestalErrors];
|
|
8629
|
+
type ShareInventoryItemPedestalResponses = {
|
|
8630
|
+
/**
|
|
8631
|
+
* Returns an InventorySpawn object.
|
|
8632
|
+
*/
|
|
8633
|
+
200: InventorySpawn;
|
|
8634
|
+
};
|
|
8635
|
+
type ShareInventoryItemPedestalResponse = ShareInventoryItemPedestalResponses[keyof ShareInventoryItemPedestalResponses];
|
|
8636
|
+
type ShareInventoryItemDirectData = {
|
|
8637
|
+
body: ShareInventoryItemDirectRequest;
|
|
8638
|
+
path?: never;
|
|
8639
|
+
query: {
|
|
8640
|
+
/**
|
|
8641
|
+
* Id for inventory item sharing.
|
|
8642
|
+
*/
|
|
8643
|
+
itemId: InventoryItemId;
|
|
8644
|
+
/**
|
|
8645
|
+
* The duration before the sharing pedestal despawns.
|
|
8646
|
+
*/
|
|
8647
|
+
duration: number;
|
|
8648
|
+
};
|
|
8649
|
+
url: '/inventory/cloning/direct';
|
|
8650
|
+
};
|
|
8651
|
+
type ShareInventoryItemDirectErrors = {
|
|
8652
|
+
/**
|
|
8653
|
+
* Error response due to missing auth cookie.
|
|
8654
|
+
*/
|
|
8655
|
+
401: _Error;
|
|
8656
|
+
};
|
|
8657
|
+
type ShareInventoryItemDirectError = ShareInventoryItemDirectErrors[keyof ShareInventoryItemDirectErrors];
|
|
8658
|
+
type ShareInventoryItemDirectResponses = {
|
|
8659
|
+
/**
|
|
8660
|
+
* Returns an OkStatus object.
|
|
8661
|
+
*/
|
|
8662
|
+
200: OkStatus;
|
|
8663
|
+
};
|
|
8664
|
+
type ShareInventoryItemDirectResponse = ShareInventoryItemDirectResponses[keyof ShareInventoryItemDirectResponses];
|
|
8111
8665
|
type InviteUserData = {
|
|
8112
8666
|
/**
|
|
8113
8667
|
* Slot number of the Invite Message to use when inviting a user.
|
|
@@ -8501,6 +9055,35 @@ type CreateInstanceResponses = {
|
|
|
8501
9055
|
200: Instance;
|
|
8502
9056
|
};
|
|
8503
9057
|
type CreateInstanceResponse = CreateInstanceResponses[keyof CreateInstanceResponses];
|
|
9058
|
+
type GetRecentLocationsData = {
|
|
9059
|
+
body?: never;
|
|
9060
|
+
path?: never;
|
|
9061
|
+
query?: {
|
|
9062
|
+
/**
|
|
9063
|
+
* The number of objects to return.
|
|
9064
|
+
*/
|
|
9065
|
+
n?: number;
|
|
9066
|
+
/**
|
|
9067
|
+
* A zero-based offset from the default object sorting from where search results start.
|
|
9068
|
+
*/
|
|
9069
|
+
offset?: number;
|
|
9070
|
+
};
|
|
9071
|
+
url: '/instances/recent';
|
|
9072
|
+
};
|
|
9073
|
+
type GetRecentLocationsErrors = {
|
|
9074
|
+
/**
|
|
9075
|
+
* Error response due to missing auth cookie.
|
|
9076
|
+
*/
|
|
9077
|
+
401: _Error;
|
|
9078
|
+
};
|
|
9079
|
+
type GetRecentLocationsError = GetRecentLocationsErrors[keyof GetRecentLocationsErrors];
|
|
9080
|
+
type GetRecentLocationsResponses = {
|
|
9081
|
+
/**
|
|
9082
|
+
* Returns a list of LocationIDs.
|
|
9083
|
+
*/
|
|
9084
|
+
200: Array<LocationId>;
|
|
9085
|
+
};
|
|
9086
|
+
type GetRecentLocationsResponse = GetRecentLocationsResponses[keyof GetRecentLocationsResponses];
|
|
8504
9087
|
type CloseInstanceData = {
|
|
8505
9088
|
body?: never;
|
|
8506
9089
|
path: {
|
|
@@ -8835,13 +9418,17 @@ type GetPlayerModerationsData = {
|
|
|
8835
9418
|
path?: never;
|
|
8836
9419
|
query?: {
|
|
8837
9420
|
/**
|
|
8838
|
-
* Must be one of PlayerModerationType
|
|
9421
|
+
* Must be one of PlayerModerationType.
|
|
8839
9422
|
*/
|
|
8840
|
-
type?:
|
|
9423
|
+
type?: PlayerModerationType;
|
|
9424
|
+
/**
|
|
9425
|
+
* Must be valid UserID. Trying to view someone else's moderations results with "Can't view someone else's player moderations" error.
|
|
9426
|
+
*/
|
|
9427
|
+
sourceUserId?: UserId;
|
|
8841
9428
|
/**
|
|
8842
9429
|
* Must be valid UserID.
|
|
8843
9430
|
*/
|
|
8844
|
-
targetUserId?:
|
|
9431
|
+
targetUserId?: UserId;
|
|
8845
9432
|
};
|
|
8846
9433
|
url: '/auth/user/playermoderations';
|
|
8847
9434
|
};
|
|
@@ -9186,6 +9773,47 @@ type SearchUsersResponses = {
|
|
|
9186
9773
|
200: Array<LimitedUserSearch>;
|
|
9187
9774
|
};
|
|
9188
9775
|
type SearchUsersResponse = SearchUsersResponses[keyof SearchUsersResponses];
|
|
9776
|
+
type SearchActiveUsersData = {
|
|
9777
|
+
body?: never;
|
|
9778
|
+
path?: never;
|
|
9779
|
+
query: {
|
|
9780
|
+
/**
|
|
9781
|
+
* Username to search for
|
|
9782
|
+
*/
|
|
9783
|
+
search: string;
|
|
9784
|
+
/**
|
|
9785
|
+
* Active user by developer type, none for normal users and internal for moderators
|
|
9786
|
+
*/
|
|
9787
|
+
developerType?: string;
|
|
9788
|
+
/**
|
|
9789
|
+
* A zero-based offset from the default object sorting from where search results start.
|
|
9790
|
+
*/
|
|
9791
|
+
offset?: number;
|
|
9792
|
+
/**
|
|
9793
|
+
* The number of objects to return.
|
|
9794
|
+
*/
|
|
9795
|
+
n?: number;
|
|
9796
|
+
};
|
|
9797
|
+
url: '/users/active';
|
|
9798
|
+
};
|
|
9799
|
+
type SearchActiveUsersErrors = {
|
|
9800
|
+
/**
|
|
9801
|
+
* Error response due to missing auth cookie.
|
|
9802
|
+
*/
|
|
9803
|
+
401: _Error;
|
|
9804
|
+
/**
|
|
9805
|
+
* Error response due to missing Administrator credentials.
|
|
9806
|
+
*/
|
|
9807
|
+
403: _Error;
|
|
9808
|
+
};
|
|
9809
|
+
type SearchActiveUsersError = SearchActiveUsersErrors[keyof SearchActiveUsersErrors];
|
|
9810
|
+
type SearchActiveUsersResponses = {
|
|
9811
|
+
/**
|
|
9812
|
+
* OK
|
|
9813
|
+
*/
|
|
9814
|
+
200: Array<LimitedUserFriend>;
|
|
9815
|
+
};
|
|
9816
|
+
type SearchActiveUsersResponse = SearchActiveUsersResponses[keyof SearchActiveUsersResponses];
|
|
9189
9817
|
type GetUserByNameData = {
|
|
9190
9818
|
body?: never;
|
|
9191
9819
|
path: {
|
|
@@ -10340,6 +10968,99 @@ type GetAssignedPermissionsResponses = {
|
|
|
10340
10968
|
200: Array<Permission>;
|
|
10341
10969
|
};
|
|
10342
10970
|
type GetAssignedPermissionsResponse = GetAssignedPermissionsResponses[keyof GetAssignedPermissionsResponses];
|
|
10971
|
+
type GetPermissionsData = {
|
|
10972
|
+
body?: never;
|
|
10973
|
+
path?: never;
|
|
10974
|
+
query?: never;
|
|
10975
|
+
url: '/permissions';
|
|
10976
|
+
};
|
|
10977
|
+
type GetPermissionsErrors = {
|
|
10978
|
+
/**
|
|
10979
|
+
* Error response due to missing auth cookie.
|
|
10980
|
+
*/
|
|
10981
|
+
401: _Error;
|
|
10982
|
+
/**
|
|
10983
|
+
* Error response due to missing Administrator credentials.
|
|
10984
|
+
*/
|
|
10985
|
+
403: _Error;
|
|
10986
|
+
};
|
|
10987
|
+
type GetPermissionsError = GetPermissionsErrors[keyof GetPermissionsErrors];
|
|
10988
|
+
type GetPermissionsResponses = {
|
|
10989
|
+
/**
|
|
10990
|
+
* Returns a list of Permission objects.
|
|
10991
|
+
*/
|
|
10992
|
+
200: Array<Permission>;
|
|
10993
|
+
};
|
|
10994
|
+
type GetPermissionsResponse = GetPermissionsResponses[keyof GetPermissionsResponses];
|
|
10995
|
+
type CreatePermissionData = {
|
|
10996
|
+
body?: {
|
|
10997
|
+
name: string;
|
|
10998
|
+
ownerId?: UserId;
|
|
10999
|
+
};
|
|
11000
|
+
path?: never;
|
|
11001
|
+
query?: {
|
|
11002
|
+
/**
|
|
11003
|
+
* The number of objects to return.
|
|
11004
|
+
*/
|
|
11005
|
+
n?: number;
|
|
11006
|
+
/**
|
|
11007
|
+
* A zero-based offset from the default object sorting from where search results start.
|
|
11008
|
+
*/
|
|
11009
|
+
offset?: number;
|
|
11010
|
+
/**
|
|
11011
|
+
* Owner of the Permission, MUST be valid UserID.
|
|
11012
|
+
*/
|
|
11013
|
+
ownerId?: string;
|
|
11014
|
+
};
|
|
11015
|
+
url: '/permissions';
|
|
11016
|
+
};
|
|
11017
|
+
type CreatePermissionErrors = {
|
|
11018
|
+
/**
|
|
11019
|
+
* Error response due to missing auth cookie.
|
|
11020
|
+
*/
|
|
11021
|
+
401: _Error;
|
|
11022
|
+
/**
|
|
11023
|
+
* Error response due to missing Administrator credentials.
|
|
11024
|
+
*/
|
|
11025
|
+
403: _Error;
|
|
11026
|
+
};
|
|
11027
|
+
type CreatePermissionError = CreatePermissionErrors[keyof CreatePermissionErrors];
|
|
11028
|
+
type CreatePermissionResponses = {
|
|
11029
|
+
/**
|
|
11030
|
+
* Returns a single Permission object.
|
|
11031
|
+
*/
|
|
11032
|
+
200: Permission;
|
|
11033
|
+
};
|
|
11034
|
+
type CreatePermissionResponse = CreatePermissionResponses[keyof CreatePermissionResponses];
|
|
11035
|
+
type DeletePermissionData = {
|
|
11036
|
+
body?: never;
|
|
11037
|
+
path: {
|
|
11038
|
+
/**
|
|
11039
|
+
* Must be a valid permission ID.
|
|
11040
|
+
*/
|
|
11041
|
+
permissionId: string;
|
|
11042
|
+
};
|
|
11043
|
+
query?: never;
|
|
11044
|
+
url: '/permissions/{permissionId}';
|
|
11045
|
+
};
|
|
11046
|
+
type DeletePermissionErrors = {
|
|
11047
|
+
/**
|
|
11048
|
+
* Error response due to missing auth cookie.
|
|
11049
|
+
*/
|
|
11050
|
+
401: _Error;
|
|
11051
|
+
/**
|
|
11052
|
+
* Error response due to missing Administrator credentials.
|
|
11053
|
+
*/
|
|
11054
|
+
403: _Error;
|
|
11055
|
+
};
|
|
11056
|
+
type DeletePermissionError = DeletePermissionErrors[keyof DeletePermissionErrors];
|
|
11057
|
+
type DeletePermissionResponses = {
|
|
11058
|
+
/**
|
|
11059
|
+
* Returns a single Permission object.
|
|
11060
|
+
*/
|
|
11061
|
+
200: Permission;
|
|
11062
|
+
};
|
|
11063
|
+
type DeletePermissionResponse = DeletePermissionResponses[keyof DeletePermissionResponses];
|
|
10343
11064
|
type GetPermissionData = {
|
|
10344
11065
|
body?: never;
|
|
10345
11066
|
path: {
|
|
@@ -10365,6 +11086,38 @@ type GetPermissionResponses = {
|
|
|
10365
11086
|
200: Permission;
|
|
10366
11087
|
};
|
|
10367
11088
|
type GetPermissionResponse = GetPermissionResponses[keyof GetPermissionResponses];
|
|
11089
|
+
type UpdatePermissionData = {
|
|
11090
|
+
body?: {
|
|
11091
|
+
name?: string;
|
|
11092
|
+
ownerId?: UserId;
|
|
11093
|
+
};
|
|
11094
|
+
path: {
|
|
11095
|
+
/**
|
|
11096
|
+
* Must be a valid permission ID.
|
|
11097
|
+
*/
|
|
11098
|
+
permissionId: string;
|
|
11099
|
+
};
|
|
11100
|
+
query?: never;
|
|
11101
|
+
url: '/permissions/{permissionId}';
|
|
11102
|
+
};
|
|
11103
|
+
type UpdatePermissionErrors = {
|
|
11104
|
+
/**
|
|
11105
|
+
* Error response due to missing auth cookie.
|
|
11106
|
+
*/
|
|
11107
|
+
401: _Error;
|
|
11108
|
+
/**
|
|
11109
|
+
* Error response due to missing Administrator credentials.
|
|
11110
|
+
*/
|
|
11111
|
+
403: _Error;
|
|
11112
|
+
};
|
|
11113
|
+
type UpdatePermissionError = UpdatePermissionErrors[keyof UpdatePermissionErrors];
|
|
11114
|
+
type UpdatePermissionResponses = {
|
|
11115
|
+
/**
|
|
11116
|
+
* Returns a single Permission object.
|
|
11117
|
+
*/
|
|
11118
|
+
200: Permission;
|
|
11119
|
+
};
|
|
11120
|
+
type UpdatePermissionResponse = UpdatePermissionResponses[keyof UpdatePermissionResponses];
|
|
10368
11121
|
type ClientOptions = {
|
|
10369
11122
|
baseUrl: 'https://api.vrchat.cloud/api/1' | (string & {});
|
|
10370
11123
|
};
|
|
@@ -10493,6 +11246,11 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
10493
11246
|
* Verifies a login attempt for a user
|
|
10494
11247
|
*/
|
|
10495
11248
|
verifyLoginPlace<ThrowOnError extends boolean = false>(options: Options<VerifyLoginPlaceData, ThrowOnError>): _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError, "fields">;
|
|
11249
|
+
/**
|
|
11250
|
+
* Get Global Avatar Moderations
|
|
11251
|
+
* Returns list of globally blocked avatars.
|
|
11252
|
+
*/
|
|
11253
|
+
getGlobalAvatarModerations<ThrowOnError extends boolean = false>(options?: Options<GetGlobalAvatarModerationsData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetGlobalAvatarModerationsResponses, GetGlobalAvatarModerationsErrors, ThrowOnError, "fields">;
|
|
10496
11254
|
/**
|
|
10497
11255
|
* Get Own Avatar
|
|
10498
11256
|
* Get the current avatar for the user. This will return an error for any other user than the one logged in.
|
|
@@ -10579,6 +11337,11 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
10579
11337
|
* Get a list of a followed calendar events for the month in ?date
|
|
10580
11338
|
*/
|
|
10581
11339
|
getFollowedCalendarEvents<ThrowOnError extends boolean = false>(options?: Options<GetFollowedCalendarEventsData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetFollowedCalendarEventsResponses, GetFollowedCalendarEventsErrors, ThrowOnError, "fields">;
|
|
11340
|
+
/**
|
|
11341
|
+
* Search for calendar events
|
|
11342
|
+
* Get a list of calendar events by search terms
|
|
11343
|
+
*/
|
|
11344
|
+
searchCalendarEvents<ThrowOnError extends boolean = false>(options: Options<SearchCalendarEventsData, ThrowOnError>): _hey_api_client_fetch.RequestResult<SearchCalendarEventsResponses, SearchCalendarEventsErrors, ThrowOnError, "fields">;
|
|
10582
11345
|
/**
|
|
10583
11346
|
* List a group's calendar events
|
|
10584
11347
|
* Get a list of a group's calendar events
|
|
@@ -10625,11 +11388,27 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
10625
11388
|
* @deprecated
|
|
10626
11389
|
*/
|
|
10627
11390
|
getSteamTransaction<ThrowOnError extends boolean = false>(options: Options<GetSteamTransactionData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetSteamTransactionResponses, GetSteamTransactionErrors, ThrowOnError, "fields">;
|
|
11391
|
+
/**
|
|
11392
|
+
* Get Admin Transactions
|
|
11393
|
+
* Get all own Admin transactions.
|
|
11394
|
+
*/
|
|
11395
|
+
getAdminTransactions<ThrowOnError extends boolean = false>(options?: Options<GetAdminTransactionsData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetAdminTransactionsResponses, GetAdminTransactionsErrors, ThrowOnError, "fields">;
|
|
11396
|
+
/**
|
|
11397
|
+
* Get Admin Transactions
|
|
11398
|
+
* Get a single Admin transactions by ID. This returns the exact same information as `getAdminTransactions`, so no point in using this endpoint.
|
|
11399
|
+
* @deprecated
|
|
11400
|
+
*/
|
|
11401
|
+
getAdminTransaction<ThrowOnError extends boolean = false>(options: Options<GetAdminTransactionData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetAdminTransactionResponses, GetAdminTransactionErrors, ThrowOnError, "fields">;
|
|
10628
11402
|
/**
|
|
10629
11403
|
* Get Current Subscriptions
|
|
10630
11404
|
* Get a list of all current user subscriptions.
|
|
10631
11405
|
*/
|
|
10632
11406
|
getCurrentSubscriptions<ThrowOnError extends boolean = false>(options?: Options<GetCurrentSubscriptionsData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetCurrentSubscriptionsResponses, GetCurrentSubscriptionsErrors, ThrowOnError, "fields">;
|
|
11407
|
+
/**
|
|
11408
|
+
* Get User Subscription Eligiblity
|
|
11409
|
+
* Get the user's eligibility status for subscriptions.
|
|
11410
|
+
*/
|
|
11411
|
+
getUserSubscriptionEligible<ThrowOnError extends boolean = false>(options: Options<GetUserSubscriptionEligibleData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetUserSubscriptionEligibleResponses, GetUserSubscriptionEligibleErrors, ThrowOnError, "fields">;
|
|
10633
11412
|
/**
|
|
10634
11413
|
* List Subscriptions
|
|
10635
11414
|
* List all existing Subscriptions. For example, "vrchatplus-monthly" and "vrchatplus-yearly".
|
|
@@ -10670,6 +11449,31 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
10670
11449
|
* Gets the balance of a user
|
|
10671
11450
|
*/
|
|
10672
11451
|
getBalance<ThrowOnError extends boolean = false>(options: Options<GetBalanceData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetBalanceResponses, GetBalanceErrors, ThrowOnError, "fields">;
|
|
11452
|
+
/**
|
|
11453
|
+
* Get Balance Earnings
|
|
11454
|
+
* Gets the balance of a user from earnings
|
|
11455
|
+
*/
|
|
11456
|
+
getBalanceEarnings<ThrowOnError extends boolean = false>(options: Options<GetBalanceEarningsData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetBalanceEarningsResponses, GetBalanceEarningsErrors, ThrowOnError, "fields">;
|
|
11457
|
+
/**
|
|
11458
|
+
* Get Economy Account
|
|
11459
|
+
* Gets the economy account of a user
|
|
11460
|
+
*/
|
|
11461
|
+
getEconomyAccount<ThrowOnError extends boolean = false>(options: Options<GetEconomyAccountData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetEconomyAccountResponses, GetEconomyAccountErrors, ThrowOnError, "fields">;
|
|
11462
|
+
/**
|
|
11463
|
+
* Get Active Licenses
|
|
11464
|
+
* Gets active licenses
|
|
11465
|
+
*/
|
|
11466
|
+
getActiveLicenses<ThrowOnError extends boolean = false>(options?: Options<GetActiveLicensesData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetActiveLicensesResponses, GetActiveLicensesErrors, ThrowOnError, "fields">;
|
|
11467
|
+
/**
|
|
11468
|
+
* Get Store
|
|
11469
|
+
* Gets a store
|
|
11470
|
+
*/
|
|
11471
|
+
getStore<ThrowOnError extends boolean = false>(options: Options<GetStoreData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetStoreResponses, GetStoreErrors, ThrowOnError, "fields">;
|
|
11472
|
+
/**
|
|
11473
|
+
* Get Store Shelves
|
|
11474
|
+
* Gets the shelves for a store
|
|
11475
|
+
*/
|
|
11476
|
+
getStoreShelves<ThrowOnError extends boolean = false>(options: Options<GetStoreShelvesData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetStoreShelvesResponses, GetStoreShelvesErrors, ThrowOnError, "fields">;
|
|
10673
11477
|
/**
|
|
10674
11478
|
* List Favorites
|
|
10675
11479
|
* Returns a list of favorites.
|
|
@@ -11065,6 +11869,11 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
11065
11869
|
* Returns an InventoryItem object held by the currently logged in user.
|
|
11066
11870
|
*/
|
|
11067
11871
|
getOwnInventoryItem<ThrowOnError extends boolean = false>(options: Options<GetOwnInventoryItemData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetOwnInventoryItemResponses, GetOwnInventoryItemErrors, ThrowOnError, "fields">;
|
|
11872
|
+
/**
|
|
11873
|
+
* Update Own Inventory Item
|
|
11874
|
+
* Returns the modified InventoryItem object as held by the currently logged in user.
|
|
11875
|
+
*/
|
|
11876
|
+
updateOwnInventoryItem<ThrowOnError extends boolean = false>(options: Options<UpdateOwnInventoryItemData, ThrowOnError>): _hey_api_client_fetch.RequestResult<UpdateOwnInventoryItemResponses, UpdateOwnInventoryItemErrors, ThrowOnError, "fields">;
|
|
11068
11877
|
/**
|
|
11069
11878
|
* List Inventory Drops
|
|
11070
11879
|
* Returns a list of InventoryDrop objects.
|
|
@@ -11080,6 +11889,16 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
11080
11889
|
* Returns an InventorySpawn object.
|
|
11081
11890
|
*/
|
|
11082
11891
|
spawnInventoryItem<ThrowOnError extends boolean = false>(options: Options<SpawnInventoryItemData, ThrowOnError>): _hey_api_client_fetch.RequestResult<SpawnInventoryItemResponses, SpawnInventoryItemErrors, ThrowOnError, "fields">;
|
|
11892
|
+
/**
|
|
11893
|
+
* Share Inventory Item by Pedestal
|
|
11894
|
+
* Returns an InventorySpawn object.
|
|
11895
|
+
*/
|
|
11896
|
+
shareInventoryItemPedestal<ThrowOnError extends boolean = false>(options: Options<ShareInventoryItemPedestalData, ThrowOnError>): _hey_api_client_fetch.RequestResult<ShareInventoryItemPedestalResponses, ShareInventoryItemPedestalErrors, ThrowOnError, "fields">;
|
|
11897
|
+
/**
|
|
11898
|
+
* Share Inventory Item Direct
|
|
11899
|
+
* Share content directly with other users.
|
|
11900
|
+
*/
|
|
11901
|
+
shareInventoryItemDirect<ThrowOnError extends boolean = false>(options: Options<ShareInventoryItemDirectData, ThrowOnError>): _hey_api_client_fetch.RequestResult<ShareInventoryItemDirectResponses, ShareInventoryItemDirectErrors, ThrowOnError, "fields">;
|
|
11083
11902
|
/**
|
|
11084
11903
|
* Invite User
|
|
11085
11904
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
@@ -11184,6 +12003,11 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
11184
12003
|
* Create an instance
|
|
11185
12004
|
*/
|
|
11186
12005
|
createInstance<ThrowOnError extends boolean = false>(options: Options<CreateInstanceData, ThrowOnError>): _hey_api_client_fetch.RequestResult<CreateInstanceResponses, CreateInstanceErrors, ThrowOnError, "fields">;
|
|
12006
|
+
/**
|
|
12007
|
+
* List Recent Locations
|
|
12008
|
+
* Returns a list of recently visited locations.
|
|
12009
|
+
*/
|
|
12010
|
+
getRecentLocations<ThrowOnError extends boolean = false>(options?: Options<GetRecentLocationsData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetRecentLocationsResponses, GetRecentLocationsErrors, ThrowOnError, "fields">;
|
|
11187
12011
|
/**
|
|
11188
12012
|
* Close Instance
|
|
11189
12013
|
* Close an instance or update the closedAt time when it will be closed.
|
|
@@ -11317,6 +12141,12 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
11317
12141
|
* Search and list any users by text query
|
|
11318
12142
|
*/
|
|
11319
12143
|
searchUsers<ThrowOnError extends boolean = false>(options?: Options<SearchUsersData, ThrowOnError>): _hey_api_client_fetch.RequestResult<SearchUsersResponses, SearchUsersErrors, ThrowOnError, "fields">;
|
|
12144
|
+
/**
|
|
12145
|
+
* Search Active Users
|
|
12146
|
+
* **REQUIRES ADMIN CREDENTIALS**. Search and list any Active users by text query.
|
|
12147
|
+
* @deprecated
|
|
12148
|
+
*/
|
|
12149
|
+
searchActiveUsers<ThrowOnError extends boolean = false>(options: Options<SearchActiveUsersData, ThrowOnError>): _hey_api_client_fetch.RequestResult<SearchActiveUsersResponses, SearchActiveUsersErrors, ThrowOnError, "fields">;
|
|
11320
12150
|
/**
|
|
11321
12151
|
* Get User by Username
|
|
11322
12152
|
* ~~Get public user information about a specific user using their name.~~
|
|
@@ -11522,11 +12352,31 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
11522
12352
|
* Returns a list of all permissions currently granted by the user. Permissions are assigned e.g. by subscribing to VRC+.
|
|
11523
12353
|
*/
|
|
11524
12354
|
getAssignedPermissions<ThrowOnError extends boolean = false>(options?: Options<GetAssignedPermissionsData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetAssignedPermissionsResponses, GetAssignedPermissionsErrors, ThrowOnError, "fields">;
|
|
12355
|
+
/**
|
|
12356
|
+
* Get Permissions
|
|
12357
|
+
* **REQUIRES ADMIN CREDENTIALS**. Returns a list of all existing permissions, just like `/users` with empty search would.
|
|
12358
|
+
*/
|
|
12359
|
+
getPermissions<ThrowOnError extends boolean = false>(options?: Options<GetPermissionsData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetPermissionsResponses, GetPermissionsErrors, ThrowOnError, "fields">;
|
|
12360
|
+
/**
|
|
12361
|
+
* Create Permission
|
|
12362
|
+
* **REQUIRES ADMIN CREDENTIALS**. Creates and returns a new Permission. The permission will by default be owned by the sender of the request unless otherwise specified.
|
|
12363
|
+
*/
|
|
12364
|
+
createPermission<ThrowOnError extends boolean = false>(options?: Options<CreatePermissionData, ThrowOnError>): _hey_api_client_fetch.RequestResult<CreatePermissionResponses, CreatePermissionErrors, ThrowOnError, "fields">;
|
|
12365
|
+
/**
|
|
12366
|
+
* Delete Permission
|
|
12367
|
+
* **REQUIRES ADMIN CREDENTIALS**. Deletes a permission.
|
|
12368
|
+
*/
|
|
12369
|
+
deletePermission<ThrowOnError extends boolean = false>(options: Options<DeletePermissionData, ThrowOnError>): _hey_api_client_fetch.RequestResult<DeletePermissionResponses, DeletePermissionErrors, ThrowOnError, "fields">;
|
|
11525
12370
|
/**
|
|
11526
12371
|
* Get Permission
|
|
11527
12372
|
* Returns a single permission. This endpoint is pretty useless, as it returns the exact same information as `/auth/permissions`.
|
|
11528
12373
|
*/
|
|
11529
12374
|
getPermission<ThrowOnError extends boolean = false>(options: Options<GetPermissionData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetPermissionResponses, GetPermissionErrors, ThrowOnError, "fields">;
|
|
12375
|
+
/**
|
|
12376
|
+
* Update Permission
|
|
12377
|
+
* **REQUIRES ADMIN CREDENTIALS**. Updates the info on a permission.
|
|
12378
|
+
*/
|
|
12379
|
+
updatePermission<ThrowOnError extends boolean = false>(options: Options<UpdatePermissionData, ThrowOnError>): _hey_api_client_fetch.RequestResult<UpdatePermissionResponses, UpdatePermissionErrors, ThrowOnError, "fields">;
|
|
11530
12380
|
}
|
|
11531
12381
|
|
|
11532
12382
|
type MaybePromise<T> = Promise<T> | T;
|
|
@@ -11670,4 +12520,4 @@ declare class VRChat extends VRChatInternal {
|
|
|
11670
12520
|
private saveCookies;
|
|
11671
12521
|
}
|
|
11672
12522
|
|
|
11673
|
-
export { type AcceptFriendRequestData, type AcceptFriendRequestError, type AcceptFriendRequestErrors, type AcceptFriendRequestResponse, type AcceptFriendRequestResponses, type AccountDeletionLog, type Active, type ActorIds, type AddFavoriteData, type AddFavoriteError, type AddFavoriteErrors, type AddFavoriteRequest, type AddFavoriteResponse, type AddFavoriteResponses, type AddGroupGalleryImageData, type AddGroupGalleryImageError, type AddGroupGalleryImageErrors, type AddGroupGalleryImageRequest, type AddGroupGalleryImageResponse, type AddGroupGalleryImageResponses, type AddGroupMemberRoleData, type AddGroupMemberRoleError, type AddGroupMemberRoleErrors, type AddGroupMemberRoleResponse, type AddGroupMemberRoleResponses, type AddGroupPostData, type AddGroupPostError, type AddGroupPostErrors, type AddGroupPostResponse, type AddGroupPostResponses, type AddTagsData, type AddTagsError, type AddTagsErrors, type AddTagsResponse, type AddTagsResponses, type AdminAssetBundle, type AdminAssetBundleId, type AdminUnityPackage, type AgeVerificationStatus, type AgeVerified, type ApiConfig, type ApiConfigAnnouncement, type ApiConfigConstants, type ApiConfigDownloadUrlList, type ApiConfigEvents, type ApiHealth, type Avatar, type AvatarId, type AvatarId2, type AvatarStyle, type AvatarStyleId, type Badge, type BadgeId, type BadgeId2, type Balance, type BanGroupMemberData, type BanGroupMemberError, type BanGroupMemberErrors, type BanGroupMemberRequest, type BanGroupMemberResponse, type BanGroupMemberResponses, type Branch, type CalendarEvent, type CalendarId, type CalendarId2, type CancelGroupRequestData, type CancelGroupRequestError, type CancelGroupRequestErrors, type CancelGroupRequestResponses, type CancelPending2FaData, type CancelPending2FaError, type CancelPending2FaErrors, type CancelPending2FaResponse, type CancelPending2FaResponses, type ChangeUserTagsRequest, type CheckUserExistsData, type CheckUserExistsError, type CheckUserExistsErrors, type CheckUserExistsResponse, type CheckUserExistsResponses, type CheckUserPersistenceExistsData, type CheckUserPersistenceExistsError, type CheckUserPersistenceExistsErrors, type CheckUserPersistenceExistsResponses, type ClearAllPlayerModerationsData, type ClearAllPlayerModerationsError, type ClearAllPlayerModerationsErrors, type ClearAllPlayerModerationsResponse, type ClearAllPlayerModerationsResponses, type ClearFavoriteGroupData, type ClearFavoriteGroupResponse, type ClearFavoriteGroupResponses, type ClearNotificationsData, type ClearNotificationsError, type ClearNotificationsErrors, type ClearNotificationsResponse, type ClearNotificationsResponses, type ClientOptions, type CloseInstanceData, type CloseInstanceError, type CloseInstanceErrors, type CloseInstanceResponse, type CloseInstanceResponses, type ConfirmEmailData, type ConfirmEmailToken, type ConfirmEmailUserId, type ContentId, type CreateAvatarData, type CreateAvatarError, type CreateAvatarErrors, type CreateAvatarRequest, type CreateAvatarResponse, type CreateAvatarResponses, type CreateCalendarEventRequest, type CreateFileData, type CreateFileRequest, type CreateFileResponse, type CreateFileResponses, type CreateFileVersionData, type CreateFileVersionRequest, type CreateFileVersionResponse, type CreateFileVersionResponses, type CreateGroupAnnouncementData, type CreateGroupAnnouncementError, type CreateGroupAnnouncementErrors, type CreateGroupAnnouncementRequest, type CreateGroupAnnouncementResponse, type CreateGroupAnnouncementResponses, type CreateGroupCalendarEventData, type CreateGroupCalendarEventError, type CreateGroupCalendarEventErrors, type CreateGroupCalendarEventResponse, type CreateGroupCalendarEventResponses, type CreateGroupData, type CreateGroupError, type CreateGroupErrors, type CreateGroupGalleryData, type CreateGroupGalleryError, type CreateGroupGalleryErrors, type CreateGroupGalleryRequest, type CreateGroupGalleryResponse, type CreateGroupGalleryResponses, type CreateGroupInviteData, type CreateGroupInviteError, type CreateGroupInviteErrors, type CreateGroupInviteRequest, type CreateGroupInviteResponses, type CreateGroupPostRequest, type CreateGroupRequest, type CreateGroupResponse, type CreateGroupResponses, type CreateGroupRoleData, type CreateGroupRoleError, type CreateGroupRoleErrors, type CreateGroupRoleRequest, type CreateGroupRoleResponse, type CreateGroupRoleResponses, type CreateInstanceData, type CreateInstanceError, type CreateInstanceErrors, type CreateInstanceRequest, type CreateInstanceResponse, type CreateInstanceResponses, type CreateWorldData, type CreateWorldError, type CreateWorldErrors, type CreateWorldRequest, type CreateWorldResponse, type CreateWorldResponses, type CurrentAvatarImageUrl, type CurrentAvatarThumbnailImageUrl, type CurrentUser, type CurrentUserPresence, type DeleteAvatarData, type DeleteAvatarError, type DeleteAvatarErrors, type DeleteAvatarResponse, type DeleteAvatarResponses, type DeleteFileData, type DeleteFileError, type DeleteFileErrors, type DeleteFileResponse, type DeleteFileResponses, type DeleteFileVersionData, type DeleteFileVersionError, type DeleteFileVersionErrors, type DeleteFileVersionResponse, type DeleteFileVersionResponses, type DeleteFriendRequestData, type DeleteFriendRequestError, type DeleteFriendRequestErrors, type DeleteFriendRequestResponse, type DeleteFriendRequestResponses, type DeleteGroupAnnouncementData, type DeleteGroupAnnouncementError, type DeleteGroupAnnouncementErrors, type DeleteGroupAnnouncementResponse, type DeleteGroupAnnouncementResponses, type DeleteGroupCalendarEventData, type DeleteGroupCalendarEventError, type DeleteGroupCalendarEventErrors, type DeleteGroupCalendarEventResponse, type DeleteGroupCalendarEventResponses, type DeleteGroupData, type DeleteGroupError, type DeleteGroupErrors, type DeleteGroupGalleryData, type DeleteGroupGalleryError, type DeleteGroupGalleryErrors, type DeleteGroupGalleryImageData, type DeleteGroupGalleryImageError, type DeleteGroupGalleryImageErrors, type DeleteGroupGalleryImageResponse, type DeleteGroupGalleryImageResponses, type DeleteGroupGalleryResponse, type DeleteGroupGalleryResponses, type DeleteGroupInviteData, type DeleteGroupInviteError, type DeleteGroupInviteErrors, type DeleteGroupInviteResponses, type DeleteGroupPostData, type DeleteGroupPostError, type DeleteGroupPostErrors, type DeleteGroupPostResponse, type DeleteGroupPostResponses, type DeleteGroupResponse, type DeleteGroupResponses, type DeleteGroupRoleData, type DeleteGroupRoleError, type DeleteGroupRoleErrors, type DeleteGroupRoleResponse, type DeleteGroupRoleResponses, type DeleteImpostorData, type DeleteImpostorError, type DeleteImpostorErrors, type DeleteImpostorResponses, type DeleteNotificationData, type DeleteNotificationError, type DeleteNotificationErrors, type DeleteNotificationResponse, type DeleteNotificationResponses, type DeletePrintData, type DeletePrintError, type DeletePrintErrors, type DeletePrintResponses, type DeleteUserData, type DeleteUserError, type DeleteUserErrors, type DeleteUserPersistenceData, type DeleteUserPersistenceError, type DeleteUserPersistenceErrors, type DeleteUserPersistenceResponses, type DeleteUserResponse, type DeleteUserResponses, type DeleteWorldData, type DeleteWorldError, type DeleteWorldErrors, type DeleteWorldResponses, type DeveloperType, type Disable2FaData, type Disable2FaError, type Disable2FaErrors, type Disable2FaResponse, type Disable2FaResponses, type Disable2FaResult, type DisplayName, type DownloadFileVersionData, type DownloadFileVersionError, type DownloadFileVersionErrors, type DownloadFileVersionResponse, type DownloadFileVersionResponses, type DynamicContentRow, type EditPrintData, type EditPrintError, type EditPrintErrors, type EditPrintResponse, type EditPrintResponses, type Email, type Enable2FaData, type Enable2FaError, type Enable2FaErrors, type Enable2FaResponse, type Enable2FaResponses, type EndDate, type EnqueueImpostorData, type EnqueueImpostorError, type EnqueueImpostorErrors, type EnqueueImpostorResponse, type EnqueueImpostorResponses, type EventTypes, type ExcludeUserId, type Favorite, type FavoriteGroup, type FavoriteGroupId, type FavoriteGroupLimits, type FavoriteGroupName, type FavoriteGroupType, type FavoriteGroupVisibility, type FavoriteId, type FavoriteId2, type FavoriteLimits, type FavoriteType, type FavoritedWorld, type Featured, type Feedback, type FeedbackId, type File, type FileAnalysis, type FileAnalysisAvatarStats, type FileData, type FileId, type FileId2, type FileStatus, type FileType, type FileUploadUrl, type FileVersion, type FileVersionUploadStatus, type FinishFileDataUploadData, type FinishFileDataUploadRequest, type FinishFileDataUploadResponse, type FinishFileDataUploadResponses, type FollowCalendarEventRequest, type FollowGroupCalendarEventData, type FollowGroupCalendarEventError, type FollowGroupCalendarEventErrors, type FollowGroupCalendarEventResponse, type FollowGroupCalendarEventResponses, type FriendData, type FriendError, type FriendErrors, type FriendResponse, type FriendResponses, type FriendStatus, type Fuzzy, type GetActiveWorldsData, type GetActiveWorldsError, type GetActiveWorldsErrors, type GetActiveWorldsResponse, type GetActiveWorldsResponses, type GetAdminAssetBundleData, type GetAdminAssetBundleResponse, type GetAdminAssetBundleResponses, type GetAssignedPermissionsData, type GetAssignedPermissionsError, type GetAssignedPermissionsErrors, type GetAssignedPermissionsResponse, type GetAssignedPermissionsResponses, type GetAvatarData, type GetAvatarError, type GetAvatarErrors, type GetAvatarResponse, type GetAvatarResponses, type GetAvatarStylesData, type GetAvatarStylesResponse, type GetAvatarStylesResponses, type GetBalanceData, type GetBalanceError, type GetBalanceErrors, type GetBalanceResponse, type GetBalanceResponses, type GetCalendarEventsData, type GetCalendarEventsError, type GetCalendarEventsErrors, type GetCalendarEventsResponse, type GetCalendarEventsResponses, type GetConfigData, type GetConfigResponse, type GetConfigResponses, type GetCssData, type GetCssError, type GetCssErrors, type GetCssResponse, type GetCssResponses, type GetCurrentOnlineUsersData, type GetCurrentOnlineUsersResponse, type GetCurrentOnlineUsersResponses, type GetCurrentSubscriptionsData, type GetCurrentSubscriptionsError, type GetCurrentSubscriptionsErrors, type GetCurrentSubscriptionsResponse, type GetCurrentSubscriptionsResponses, type GetCurrentUserData, type GetCurrentUserError, type GetCurrentUserErrors, type GetCurrentUserResponse, type GetCurrentUserResponses, type GetFavoriteGroupData, type GetFavoriteGroupResponse, type GetFavoriteGroupResponses, type GetFavoriteGroupsData, type GetFavoriteGroupsError, type GetFavoriteGroupsErrors, type GetFavoriteGroupsResponse, type GetFavoriteGroupsResponses, type GetFavoriteLimitsData, type GetFavoriteLimitsError, type GetFavoriteLimitsErrors, type GetFavoriteLimitsResponse, type GetFavoriteLimitsResponses, type GetFavoritedAvatarsData, type GetFavoritedAvatarsError, type GetFavoritedAvatarsErrors, type GetFavoritedAvatarsResponse, type GetFavoritedAvatarsResponses, type GetFavoritedWorldsData, type GetFavoritedWorldsError, type GetFavoritedWorldsErrors, type GetFavoritedWorldsResponse, type GetFavoritedWorldsResponses, type GetFavoritesData, type GetFavoritesError, type GetFavoritesErrors, type GetFavoritesResponse, type GetFavoritesResponses, type GetFeaturedCalendarEventsData, type GetFeaturedCalendarEventsError, type GetFeaturedCalendarEventsErrors, type GetFeaturedCalendarEventsResponse, type GetFeaturedCalendarEventsResponses, type GetFileAnalysisData, type GetFileAnalysisError, type GetFileAnalysisErrors, type GetFileAnalysisResponse, type GetFileAnalysisResponses, type GetFileAnalysisSecurityData, type GetFileAnalysisSecurityError, type GetFileAnalysisSecurityErrors, type GetFileAnalysisSecurityResponse, type GetFileAnalysisSecurityResponses, type GetFileAnalysisStandardData, type GetFileAnalysisStandardError, type GetFileAnalysisStandardErrors, type GetFileAnalysisStandardResponse, type GetFileAnalysisStandardResponses, type GetFileData, type GetFileDataUploadStatusData, type GetFileDataUploadStatusResponse, type GetFileDataUploadStatusResponses, type GetFileError, type GetFileErrors, type GetFileResponse, type GetFileResponses, type GetFilesData, type GetFilesResponse, type GetFilesResponses, type GetFollowedCalendarEventsData, type GetFollowedCalendarEventsError, type GetFollowedCalendarEventsErrors, type GetFollowedCalendarEventsResponse, type GetFollowedCalendarEventsResponses, type GetFriendStatusData, type GetFriendStatusError, type GetFriendStatusErrors, type GetFriendStatusResponse, type GetFriendStatusResponses, type GetFriendsData, type GetFriendsError, type GetFriendsErrors, type GetFriendsResponse, type GetFriendsResponses, type GetGroupAnnouncementsData, type GetGroupAnnouncementsError, type GetGroupAnnouncementsErrors, type GetGroupAnnouncementsResponse, type GetGroupAnnouncementsResponses, type GetGroupAuditLogsData, type GetGroupAuditLogsError, type GetGroupAuditLogsErrors, type GetGroupAuditLogsResponse, type GetGroupAuditLogsResponses, type GetGroupBansData, type GetGroupBansError, type GetGroupBansErrors, type GetGroupBansResponse, type GetGroupBansResponses, type GetGroupCalendarEventData, type GetGroupCalendarEventError, type GetGroupCalendarEventErrors, type GetGroupCalendarEventIcsData, type GetGroupCalendarEventIcsError, type GetGroupCalendarEventIcsErrors, type GetGroupCalendarEventIcsResponse, type GetGroupCalendarEventIcsResponses, type GetGroupCalendarEventResponse, type GetGroupCalendarEventResponses, type GetGroupCalendarEventsData, type GetGroupCalendarEventsError, type GetGroupCalendarEventsErrors, type GetGroupCalendarEventsResponse, type GetGroupCalendarEventsResponses, type GetGroupData, type GetGroupError, type GetGroupErrors, type GetGroupGalleryImagesData, type GetGroupGalleryImagesError, type GetGroupGalleryImagesErrors, type GetGroupGalleryImagesResponse, type GetGroupGalleryImagesResponses, type GetGroupInstancesData, type GetGroupInstancesError, type GetGroupInstancesErrors, type GetGroupInstancesResponse, type GetGroupInstancesResponses, type GetGroupInvitesData, type GetGroupInvitesError, type GetGroupInvitesErrors, type GetGroupInvitesResponse, type GetGroupInvitesResponses, type GetGroupMemberData, type GetGroupMemberError, type GetGroupMemberErrors, type GetGroupMemberResponse, type GetGroupMemberResponses, type GetGroupMembersData, type GetGroupMembersError, type GetGroupMembersErrors, type GetGroupMembersResponse, type GetGroupMembersResponses, type GetGroupPermissionsData, type GetGroupPermissionsError, type GetGroupPermissionsErrors, type GetGroupPermissionsResponse, type GetGroupPermissionsResponses, type GetGroupPostsData, type GetGroupPostsError, type GetGroupPostsErrors, type GetGroupPostsResponse, type GetGroupPostsResponses, type GetGroupRequestsData, type GetGroupRequestsError, type GetGroupRequestsErrors, type GetGroupRequestsResponse, type GetGroupRequestsResponses, type GetGroupResponse, type GetGroupResponses, type GetGroupRoleTemplatesData, type GetGroupRoleTemplatesError, type GetGroupRoleTemplatesErrors, type GetGroupRoleTemplatesResponse, type GetGroupRoleTemplatesResponses, type GetGroupRolesData, type GetGroupRolesError, type GetGroupRolesErrors, type GetGroupRolesResponse, type GetGroupRolesResponses, type GetHealthData, type GetHealthResponse, type GetHealthResponses, type GetImpostorQueueStatsData, type GetImpostorQueueStatsError, type GetImpostorQueueStatsErrors, type GetImpostorQueueStatsResponse, type GetImpostorQueueStatsResponses, type GetInfoPushData, type GetInfoPushResponse, type GetInfoPushResponses, type GetInstanceByShortNameData, type GetInstanceByShortNameError, type GetInstanceByShortNameErrors, type GetInstanceByShortNameResponse, type GetInstanceByShortNameResponses, type GetInstanceData, type GetInstanceError, type GetInstanceErrors, type GetInstanceResponse, type GetInstanceResponses, type GetInventoryData, type GetInventoryDropsData, type GetInventoryDropsError, type GetInventoryDropsErrors, type GetInventoryDropsResponse, type GetInventoryDropsResponses, type GetInventoryError, type GetInventoryErrors, type GetInventoryResponse, type GetInventoryResponses, type GetInventoryTemplateData, type GetInventoryTemplateError, type GetInventoryTemplateErrors, type GetInventoryTemplateResponse, type GetInventoryTemplateResponses, type GetInviteMessageData, type GetInviteMessageError, type GetInviteMessageErrors, type GetInviteMessageResponse, type GetInviteMessageResponses, type GetInviteMessagesData, type GetInviteMessagesError, type GetInviteMessagesErrors, type GetInviteMessagesResponse, type GetInviteMessagesResponses, type GetJamData, type GetJamError, type GetJamErrors, type GetJamResponse, type GetJamResponses, type GetJamSubmissionsData, type GetJamSubmissionsError, type GetJamSubmissionsErrors, type GetJamSubmissionsResponse, type GetJamSubmissionsResponses, type GetJamsData, type GetJamsResponse, type GetJamsResponses, type GetJavaScriptData, type GetJavaScriptError, type GetJavaScriptErrors, type GetJavaScriptResponse, type GetJavaScriptResponses, type GetLicenseGroupData, type GetLicenseGroupError, type GetLicenseGroupErrors, type GetLicenseGroupResponse, type GetLicenseGroupResponses, type GetLicensedAvatarsData, type GetLicensedAvatarsError, type GetLicensedAvatarsErrors, type GetLicensedAvatarsResponse, type GetLicensedAvatarsResponses, type GetNotificationData, type GetNotificationError, type GetNotificationErrors, type GetNotificationResponse, type GetNotificationResponses, type GetNotificationsData, type GetNotificationsError, type GetNotificationsErrors, type GetNotificationsResponse, type GetNotificationsResponses, type GetOwnAvatarData, type GetOwnAvatarError, type GetOwnAvatarErrors, type GetOwnAvatarResponse, type GetOwnAvatarResponses, type GetOwnInventoryItemData, type GetOwnInventoryItemError, type GetOwnInventoryItemErrors, type GetOwnInventoryItemResponse, type GetOwnInventoryItemResponses, type GetPermissionData, type GetPermissionError, type GetPermissionErrors, type GetPermissionResponse, type GetPermissionResponses, type GetPlayerModerationsData, type GetPlayerModerationsError, type GetPlayerModerationsErrors, type GetPlayerModerationsResponse, type GetPlayerModerationsResponses, type GetPrintData, type GetPrintError, type GetPrintErrors, type GetPrintResponse, type GetPrintResponses, type GetProductListingData, type GetProductListingError, type GetProductListingErrors, type GetProductListingResponse, type GetProductListingResponses, type GetProductListingsData, type GetProductListingsError, type GetProductListingsErrors, type GetProductListingsResponse, type GetProductListingsResponses, type GetPropData, type GetPropError, type GetPropErrors, type GetPropResponse, type GetPropResponses, type GetRecentWorldsData, type GetRecentWorldsError, type GetRecentWorldsErrors, type GetRecentWorldsResponse, type GetRecentWorldsResponses, type GetRecoveryCodesData, type GetRecoveryCodesError, type GetRecoveryCodesErrors, type GetRecoveryCodesResponse, type GetRecoveryCodesResponses, type GetShortNameData, type GetShortNameError, type GetShortNameErrors, type GetShortNameResponse, type GetShortNameResponses, type GetSteamTransactionData, type GetSteamTransactionError, type GetSteamTransactionErrors, type GetSteamTransactionResponse, type GetSteamTransactionResponses, type GetSteamTransactionsData, type GetSteamTransactionsError, type GetSteamTransactionsErrors, type GetSteamTransactionsResponse, type GetSteamTransactionsResponses, type GetSubscriptionsData, type GetSubscriptionsError, type GetSubscriptionsErrors, type GetSubscriptionsResponse, type GetSubscriptionsResponses, type GetSystemTimeData, type GetSystemTimeResponse, type GetSystemTimeResponses, type GetTiliaStatusData, type GetTiliaStatusError, type GetTiliaStatusErrors, type GetTiliaStatusResponse, type GetTiliaStatusResponses, type GetTiliaTosData, type GetTiliaTosError, type GetTiliaTosErrors, type GetTiliaTosResponse, type GetTiliaTosResponses, type GetTokenBundlesData, type GetTokenBundlesError, type GetTokenBundlesErrors, type GetTokenBundlesResponse, type GetTokenBundlesResponses, type GetUserByNameData, type GetUserByNameError, type GetUserByNameErrors, type GetUserByNameResponse, type GetUserByNameResponses, type GetUserData, type GetUserError, type GetUserErrors, type GetUserFeedbackData, type GetUserFeedbackError, type GetUserFeedbackErrors, type GetUserFeedbackResponse, type GetUserFeedbackResponses, type GetUserGroupInstancesData, type GetUserGroupInstancesError, type GetUserGroupInstancesErrors, type GetUserGroupInstancesResponse, type GetUserGroupInstancesResponses, type GetUserGroupRequestsData, type GetUserGroupRequestsError, type GetUserGroupRequestsErrors, type GetUserGroupRequestsResponse, type GetUserGroupRequestsResponses, type GetUserGroupsData, type GetUserGroupsError, type GetUserGroupsErrors, type GetUserGroupsResponse, type GetUserGroupsResponses, type GetUserNoteData, type GetUserNoteError, type GetUserNoteErrors, type GetUserNoteResponse, type GetUserNoteResponses, type GetUserNotesData, type GetUserNotesError, type GetUserNotesErrors, type GetUserNotesResponse, type GetUserNotesResponses, type GetUserPrintsData, type GetUserPrintsError, type GetUserPrintsErrors, type GetUserPrintsResponse, type GetUserPrintsResponses, type GetUserRepresentedGroupData, type GetUserRepresentedGroupError, type GetUserRepresentedGroupErrors, type GetUserRepresentedGroupResponse, type GetUserRepresentedGroupResponses, type GetUserResponse, type GetUserResponses, type GetWorldData, type GetWorldError, type GetWorldErrors, type GetWorldInstanceData, type GetWorldInstanceError, type GetWorldInstanceErrors, type GetWorldInstanceResponse, type GetWorldInstanceResponses, type GetWorldMetadataData, type GetWorldMetadataError, type GetWorldMetadataErrors, type GetWorldMetadataResponse, type GetWorldMetadataResponses, type GetWorldPublishStatusData, type GetWorldPublishStatusError, type GetWorldPublishStatusErrors, type GetWorldPublishStatusResponse, type GetWorldPublishStatusResponses, type GetWorldResponse, type GetWorldResponses, type Group, type GroupAccessType, type GroupAnnouncement, type GroupAnnouncementId, type GroupAuditLogEntry, type GroupAuditLogId, type GroupDiscriminator, type GroupGallery, type GroupGalleryId, type GroupGalleryId2, type GroupGalleryImage, type GroupGalleryImageId, type GroupGalleryImageId2, type GroupId, type GroupId2, type GroupIdFilter, type GroupInstance, type GroupJoinRequestAction, type GroupJoinState, type GroupLimitedMember, type GroupMember, type GroupMemberId, type GroupMemberLimitedUser, type GroupMemberRoleFilter, type GroupMemberSort, type GroupMemberStatus, type GroupMyMember, type GroupPermission, type GroupPermissions, type GroupPost, type GroupPostVisibility, type GroupPrivacy, type GroupRole, type GroupRoleId, type GroupRoleId2, type GroupRoleIdList, type GroupRoleTemplate, type GroupRoleTemplateValues, type GroupSearchSort, type GroupShortCode, type GroupUserVisibility, type Hydrate, type Include, type InfoPush, type InfoPushData, type InfoPushDataArticle, type InfoPushDataArticleContent, type InfoPushDataClickable, type Instance, type InstanceContentSettings, type InstanceId, type InstanceId2, type InstanceOwnerId, type InstancePlatforms, type InstanceRegion, type InstanceShortNameResponse, type InstanceType, type Inventory, type InventoryDrop, type InventoryDropId, type InventoryItem, type InventoryItemId, type InventoryItemId2, type InventoryItemType, type InventoryItemType2, type InventoryMetadata, type InventoryNotificationDetails, type InventorySortOrder, type InventorySpawn, type InventorySpawnItemId, type InventoryTemplate, type InventoryTemplateId, type InventoryTemplateId2, type InviteMessage, type InviteMessageId, type InviteMessageType, type InviteMyselfToData, type InviteMyselfToError, type InviteMyselfToErrors, type InviteMyselfToResponse, type InviteMyselfToResponses, type InviteRequest, type InviteResponse, type InviteUserData, type InviteUserError, type InviteUserErrors, type InviteUserResponse, type InviteUserResponses, type InviteUserWithPhotoData, type InviteUserWithPhotoError, type InviteUserWithPhotoErrors, type InviteUserWithPhotoResponse, type InviteUserWithPhotoResponses, type Jam, type JamId, type JoinGroupData, type JoinGroupError, type JoinGroupErrors, type JoinGroupResponse, type JoinGroupResponses, type KickGroupMemberData, type KickGroupMemberError, type KickGroupMemberErrors, type KickGroupMemberResponses, type LeaveGroupData, type LeaveGroupError, type LeaveGroupErrors, type LeaveGroupResponses, type License, type LicenseAction, type LicenseGroup, type LicenseGroupId, type LicenseGroupId2, type LicenseType, type LimitedGroup, type LimitedUnityPackage, type LimitedUserFriend, type LimitedUserGroups, type LimitedUserInstance, type LimitedUserSearch, type LimitedWorld, type LocalDateTime, type LoginCredentials, type LogoutData, type LogoutError, type LogoutErrors, type LogoutResponse, type LogoutResponses, type MarkNotificationAsReadData, type MarkNotificationAsReadError, type MarkNotificationAsReadErrors, type MarkNotificationAsReadResponse, type MarkNotificationAsReadResponses, type MaxUnityVersion, type MessageType, type MimeType, type MinUnityVersion, type ModerateUserData, type ModerateUserError, type ModerateUserErrors, type ModerateUserRequest, type ModerateUserResponse, type ModerateUserResponses, type MonthDate, type Notag, type Notification, type NotificationDetailInvite, type NotificationDetailInviteResponse, type NotificationDetailRequestInvite, type NotificationDetailRequestInviteResponse, type NotificationDetailVoteToKick, type NotificationId, type NotificationId2, type NotificationType, type Number, type Offline, type Offset, type Order, type OrderOption, type PaginatedCalendarEventList, type PaginatedGroupAuditLogEntryList, type PastDisplayName, type Pending2FaResult, type PerformanceLimiterInfo, type PerformanceRatings, type Permission, type PermissionId, type PermissionId2, type Platform, type Platform2, type PlatformBuildInfo, type PlayerModeration, type PlayerModerationId, type PlayerModerationType, type Print, type PrintId, type PrintId2, type Product, type ProductId, type ProductId2, type ProductListing, type ProductListingType, type ProductListingVariant, type ProductListingVariantId, type ProductType, type Prop, type PropId, type PropId2, type PropUnityPackage, type PublishWorldData, type PublishWorldError, type PublishWorldErrors, type PublishWorldResponses, type Region, type RegisterUserAccountData, type RegisterUserAccountError, type RegisterUserAccountErrors, type RegisterUserAccountRequest, type RegisterUserAccountResponse, type RegisterUserAccountResponses, type ReleaseStatus, type ReleaseStatus2, type RemoveFavoriteData, type RemoveFavoriteError, type RemoveFavoriteErrors, type RemoveFavoriteResponse, type RemoveFavoriteResponses, type RemoveGroupMemberRoleData, type RemoveGroupMemberRoleError, type RemoveGroupMemberRoleErrors, type RemoveGroupMemberRoleResponse, type RemoveGroupMemberRoleResponses, type RemoveTagsData, type RemoveTagsError, type RemoveTagsErrors, type RemoveTagsResponse, type RemoveTagsResponses, type ReportCategory, type ReportReason, type RepresentedGroup, type RequestInviteData, type RequestInviteError, type RequestInviteErrors, type RequestInviteRequest, type RequestInviteResponse, type RequestInviteResponses, type RequestInviteWithPhotoData, type RequestInviteWithPhotoError, type RequestInviteWithPhotoErrors, type RequestInviteWithPhotoResponse, type RequestInviteWithPhotoResponses, type Require, type ResendEmailConfirmationData, type ResendEmailConfirmationError, type ResendEmailConfirmationErrors, type ResendEmailConfirmationResponse, type ResendEmailConfirmationResponses, type ResetInviteMessageData, type ResetInviteMessageError, type ResetInviteMessageErrors, type ResetInviteMessageResponse, type ResetInviteMessageResponses, type RespondGroupJoinRequest, type RespondGroupJoinRequestData, type RespondGroupJoinRequestError, type RespondGroupJoinRequestErrors, type RespondGroupJoinRequestResponses, type RespondInviteData, type RespondInviteError, type RespondInviteErrors, type RespondInviteResponse, type RespondInviteResponses, type RespondInviteWithPhotoData, type RespondInviteWithPhotoError, type RespondInviteWithPhotoErrors, type RespondInviteWithPhotoResponse, type RespondInviteWithPhotoResponses, type Response$1 as Response, type Search, type SearchAvatarsData, type SearchAvatarsError, type SearchAvatarsErrors, type SearchAvatarsResponse, type SearchAvatarsResponses, type SearchGroupsData, type SearchGroupsError, type SearchGroupsErrors, type SearchGroupsResponse, type SearchGroupsResponses, type SearchUsersData, type SearchUsersError, type SearchUsersErrors, type SearchUsersResponse, type SearchUsersResponses, type SearchWorldsData, type SearchWorldsError, type SearchWorldsErrors, type SearchWorldsResponse, type SearchWorldsResponses, type SelectAvatarData, type SelectAvatarError, type SelectAvatarErrors, type SelectAvatarResponse, type SelectAvatarResponses, type SelectFallbackAvatarData, type SelectFallbackAvatarError, type SelectFallbackAvatarErrors, type SelectFallbackAvatarResponse, type SelectFallbackAvatarResponses, type SentNotification, type ServiceQueueStats, type ServiceStatus, type Slot, type Sort, type SortOption, type SpawnInventoryItemData, type SpawnInventoryItemError, type SpawnInventoryItemErrors, type SpawnInventoryItemResponse, type SpawnInventoryItemResponses, type StartDate, type StartFileDataUploadData, type StartFileDataUploadError, type StartFileDataUploadErrors, type StartFileDataUploadResponse, type StartFileDataUploadResponses, type StoreId, type Submission, type Subscription, type SubscriptionPeriod, type Success, type Tag, type Tag2, type TargetIds, type TiliaStatus, type TiliaTos, type TokenBundle, type Transaction, type TransactionAgreement, type TransactionId, type TransactionId2, type TransactionStatus, type TransactionSteamInfo, type TransactionSteamWalletInfo, type TwoFactorAuthCode, type TwoFactorEmailCode, TwoFactorMethods, type TwoFactorRecoveryCodes, type UdonProductId, type UnbanGroupMemberData, type UnbanGroupMemberError, type UnbanGroupMemberErrors, type UnbanGroupMemberResponse, type UnbanGroupMemberResponses, type UnfriendData, type UnfriendError, type UnfriendErrors, type UnfriendResponse, type UnfriendResponses, type UnityPackage, type UnityPackageId, type UnmoderateUserData, type UnmoderateUserError, type UnmoderateUserErrors, type UnmoderateUserResponse, type UnmoderateUserResponses, type UnpublishWorldData, type UnpublishWorldError, type UnpublishWorldErrors, type UnpublishWorldResponses, type UpdateAvatarData, type UpdateAvatarError, type UpdateAvatarErrors, type UpdateAvatarRequest, type UpdateAvatarResponse, type UpdateAvatarResponses, type UpdateBadgeData, type UpdateBadgeError, type UpdateBadgeErrors, type UpdateBadgeResponses, type UpdateCalendarEventRequest, type UpdateFavoriteGroupData, type UpdateFavoriteGroupRequest, type UpdateFavoriteGroupResponses, type UpdateGroupCalendarEventData, type UpdateGroupCalendarEventError, type UpdateGroupCalendarEventErrors, type UpdateGroupCalendarEventResponse, type UpdateGroupCalendarEventResponses, type UpdateGroupData, type UpdateGroupError, type UpdateGroupErrors, type UpdateGroupGalleryData, type UpdateGroupGalleryError, type UpdateGroupGalleryErrors, type UpdateGroupGalleryRequest, type UpdateGroupGalleryResponse, type UpdateGroupGalleryResponses, type UpdateGroupMemberData, type UpdateGroupMemberError, type UpdateGroupMemberErrors, type UpdateGroupMemberRequest, type UpdateGroupMemberResponse, type UpdateGroupMemberResponses, type UpdateGroupPostData, type UpdateGroupPostError, type UpdateGroupPostErrors, type UpdateGroupPostResponse, type UpdateGroupPostResponses, type UpdateGroupRepresentationData, type UpdateGroupRepresentationError, type UpdateGroupRepresentationErrors, type UpdateGroupRepresentationResponse, type UpdateGroupRepresentationResponses, type UpdateGroupRequest, type UpdateGroupResponse, type UpdateGroupResponses, type UpdateGroupRoleData, type UpdateGroupRoleError, type UpdateGroupRoleErrors, type UpdateGroupRoleRequest, type UpdateGroupRoleResponse, type UpdateGroupRoleResponses, type UpdateInviteMessageData, type UpdateInviteMessageError, type UpdateInviteMessageErrors, type UpdateInviteMessageRequest, type UpdateInviteMessageResponse, type UpdateInviteMessageResponses, type UpdateUserBadgeRequest, type UpdateUserData, type UpdateUserError, type UpdateUserErrors, type UpdateUserNoteData, type UpdateUserNoteError, type UpdateUserNoteErrors, type UpdateUserNoteRequest, type UpdateUserNoteResponse, type UpdateUserNoteResponses, type UpdateUserRequest, type UpdateUserResponse, type UpdateUserResponses, type UpdateWorldData, type UpdateWorldError, type UpdateWorldErrors, type UpdateWorldRequest, type UpdateWorldResponse, type UpdateWorldResponses, type UploadGalleryImageData, type UploadGalleryImageResponse, type UploadGalleryImageResponses, type UploadIconData, type UploadIconResponse, type UploadIconResponses, type UploadImageData, type UploadImageResponse, type UploadImageResponses, type UploadPrintData, type UploadPrintError, type UploadPrintErrors, type UploadPrintResponse, type UploadPrintResponses, type User, type UserExists, type UserId, type UserId2, type UserIdAdmin, type UserIdQuery, type UserNote, type UserNoteId, type UserNoteId2, type UserState, type UserStatus, type UserSubscription, type UsernameQuery, VRChat, VRChatError, type VRChatOptions, type Variant, type Verify2FaData, type Verify2FaEmailCodeData, type Verify2FaEmailCodeError, type Verify2FaEmailCodeErrors, type Verify2FaEmailCodeResponse, type Verify2FaEmailCodeResponses, type Verify2FaEmailCodeResult, type Verify2FaError, type Verify2FaErrors, type Verify2FaResponse, type Verify2FaResponses, type Verify2FaResult, type VerifyAuthTokenData, type VerifyAuthTokenError, type VerifyAuthTokenErrors, type VerifyAuthTokenResponse, type VerifyAuthTokenResponses, type VerifyAuthTokenResult, type VerifyLoginPlaceData, type VerifyLoginPlaceToken, type VerifyPending2FaData, type VerifyPending2FaError, type VerifyPending2FaErrors, type VerifyPending2FaResponse, type VerifyPending2FaResponses, type VerifyRecoveryCodeData, type VerifyRecoveryCodeError, type VerifyRecoveryCodeErrors, type VerifyRecoveryCodeResponse, type VerifyRecoveryCodeResponses, type VersionId, type World, type WorldId, type WorldId2, type WorldMetadata, type WorldPublishStatus, baseUrl };
|
|
12523
|
+
export { type AcceptFriendRequestData, type AcceptFriendRequestError, type AcceptFriendRequestErrors, type AcceptFriendRequestResponse, type AcceptFriendRequestResponses, type AccountDeletionLog, type Active, type ActorIds, type AddFavoriteData, type AddFavoriteError, type AddFavoriteErrors, type AddFavoriteRequest, type AddFavoriteResponse, type AddFavoriteResponses, type AddGroupGalleryImageData, type AddGroupGalleryImageError, type AddGroupGalleryImageErrors, type AddGroupGalleryImageRequest, type AddGroupGalleryImageResponse, type AddGroupGalleryImageResponses, type AddGroupMemberRoleData, type AddGroupMemberRoleError, type AddGroupMemberRoleErrors, type AddGroupMemberRoleResponse, type AddGroupMemberRoleResponses, type AddGroupPostData, type AddGroupPostError, type AddGroupPostErrors, type AddGroupPostResponse, type AddGroupPostResponses, type AddTagsData, type AddTagsError, type AddTagsErrors, type AddTagsResponse, type AddTagsResponses, type AdminAssetBundle, type AdminAssetBundleId, type AdminUnityPackage, type AgeVerificationStatus, type AgeVerified, type ApiConfig, type ApiConfigAnnouncement, type ApiConfigConstants, type ApiConfigDownloadUrlList, type ApiConfigEvents, type ApiHealth, type Avatar, type AvatarId, type AvatarId2, type AvatarModeration, type AvatarModerationType, type AvatarStyle, type AvatarStyleId, type Badge, type BadgeId, type BadgeId2, type Balance, type BanGroupMemberData, type BanGroupMemberError, type BanGroupMemberErrors, type BanGroupMemberRequest, type BanGroupMemberResponse, type BanGroupMemberResponses, type Branch, type CalendarEvent, type CalendarId, type CalendarId2, type CalendarSearchTerm, type CancelGroupRequestData, type CancelGroupRequestError, type CancelGroupRequestErrors, type CancelGroupRequestResponses, type CancelPending2FaData, type CancelPending2FaError, type CancelPending2FaErrors, type CancelPending2FaResponse, type CancelPending2FaResponses, type ChangeUserTagsRequest, type CheckUserExistsData, type CheckUserExistsError, type CheckUserExistsErrors, type CheckUserExistsResponse, type CheckUserExistsResponses, type CheckUserPersistenceExistsData, type CheckUserPersistenceExistsError, type CheckUserPersistenceExistsErrors, type CheckUserPersistenceExistsResponses, type ClearAllPlayerModerationsData, type ClearAllPlayerModerationsError, type ClearAllPlayerModerationsErrors, type ClearAllPlayerModerationsResponse, type ClearAllPlayerModerationsResponses, type ClearFavoriteGroupData, type ClearFavoriteGroupResponse, type ClearFavoriteGroupResponses, type ClearNotificationsData, type ClearNotificationsError, type ClearNotificationsErrors, type ClearNotificationsResponse, type ClearNotificationsResponses, type ClientOptions, type CloseInstanceData, type CloseInstanceError, type CloseInstanceErrors, type CloseInstanceResponse, type CloseInstanceResponses, type ConfirmEmailData, type ConfirmEmailToken, type ConfirmEmailUserId, type ContentId, type CreateAvatarData, type CreateAvatarError, type CreateAvatarErrors, type CreateAvatarRequest, type CreateAvatarResponse, type CreateAvatarResponses, type CreateCalendarEventRequest, type CreateFileData, type CreateFileRequest, type CreateFileResponse, type CreateFileResponses, type CreateFileVersionData, type CreateFileVersionRequest, type CreateFileVersionResponse, type CreateFileVersionResponses, type CreateGroupAnnouncementData, type CreateGroupAnnouncementError, type CreateGroupAnnouncementErrors, type CreateGroupAnnouncementRequest, type CreateGroupAnnouncementResponse, type CreateGroupAnnouncementResponses, type CreateGroupCalendarEventData, type CreateGroupCalendarEventError, type CreateGroupCalendarEventErrors, type CreateGroupCalendarEventResponse, type CreateGroupCalendarEventResponses, type CreateGroupData, type CreateGroupError, type CreateGroupErrors, type CreateGroupGalleryData, type CreateGroupGalleryError, type CreateGroupGalleryErrors, type CreateGroupGalleryRequest, type CreateGroupGalleryResponse, type CreateGroupGalleryResponses, type CreateGroupInviteData, type CreateGroupInviteError, type CreateGroupInviteErrors, type CreateGroupInviteRequest, type CreateGroupInviteResponses, type CreateGroupPostRequest, type CreateGroupRequest, type CreateGroupResponse, type CreateGroupResponses, type CreateGroupRoleData, type CreateGroupRoleError, type CreateGroupRoleErrors, type CreateGroupRoleRequest, type CreateGroupRoleResponse, type CreateGroupRoleResponses, type CreateInstanceData, type CreateInstanceError, type CreateInstanceErrors, type CreateInstanceRequest, type CreateInstanceResponse, type CreateInstanceResponses, type CreatePermissionData, type CreatePermissionError, type CreatePermissionErrors, type CreatePermissionResponse, type CreatePermissionResponses, type CreateWorldData, type CreateWorldError, type CreateWorldErrors, type CreateWorldRequest, type CreateWorldResponse, type CreateWorldResponses, type CurrentAvatarImageUrl, type CurrentAvatarThumbnailImageUrl, type CurrentUser, type CurrentUserPresence, type DeleteAvatarData, type DeleteAvatarError, type DeleteAvatarErrors, type DeleteAvatarResponse, type DeleteAvatarResponses, type DeleteFileData, type DeleteFileError, type DeleteFileErrors, type DeleteFileResponse, type DeleteFileResponses, type DeleteFileVersionData, type DeleteFileVersionError, type DeleteFileVersionErrors, type DeleteFileVersionResponse, type DeleteFileVersionResponses, type DeleteFriendRequestData, type DeleteFriendRequestError, type DeleteFriendRequestErrors, type DeleteFriendRequestResponse, type DeleteFriendRequestResponses, type DeleteGroupAnnouncementData, type DeleteGroupAnnouncementError, type DeleteGroupAnnouncementErrors, type DeleteGroupAnnouncementResponse, type DeleteGroupAnnouncementResponses, type DeleteGroupCalendarEventData, type DeleteGroupCalendarEventError, type DeleteGroupCalendarEventErrors, type DeleteGroupCalendarEventResponse, type DeleteGroupCalendarEventResponses, type DeleteGroupData, type DeleteGroupError, type DeleteGroupErrors, type DeleteGroupGalleryData, type DeleteGroupGalleryError, type DeleteGroupGalleryErrors, type DeleteGroupGalleryImageData, type DeleteGroupGalleryImageError, type DeleteGroupGalleryImageErrors, type DeleteGroupGalleryImageResponse, type DeleteGroupGalleryImageResponses, type DeleteGroupGalleryResponse, type DeleteGroupGalleryResponses, type DeleteGroupInviteData, type DeleteGroupInviteError, type DeleteGroupInviteErrors, type DeleteGroupInviteResponses, type DeleteGroupPostData, type DeleteGroupPostError, type DeleteGroupPostErrors, type DeleteGroupPostResponse, type DeleteGroupPostResponses, type DeleteGroupResponse, type DeleteGroupResponses, type DeleteGroupRoleData, type DeleteGroupRoleError, type DeleteGroupRoleErrors, type DeleteGroupRoleResponse, type DeleteGroupRoleResponses, type DeleteImpostorData, type DeleteImpostorError, type DeleteImpostorErrors, type DeleteImpostorResponses, type DeleteNotificationData, type DeleteNotificationError, type DeleteNotificationErrors, type DeleteNotificationResponse, type DeleteNotificationResponses, type DeletePermissionData, type DeletePermissionError, type DeletePermissionErrors, type DeletePermissionResponse, type DeletePermissionResponses, type DeletePrintData, type DeletePrintError, type DeletePrintErrors, type DeletePrintResponses, type DeleteUserData, type DeleteUserError, type DeleteUserErrors, type DeleteUserPersistenceData, type DeleteUserPersistenceError, type DeleteUserPersistenceErrors, type DeleteUserPersistenceResponses, type DeleteUserResponse, type DeleteUserResponses, type DeleteWorldData, type DeleteWorldError, type DeleteWorldErrors, type DeleteWorldResponses, type DeveloperType, type Disable2FaData, type Disable2FaError, type Disable2FaErrors, type Disable2FaResponse, type Disable2FaResponses, type Disable2FaResult, type DiscordDetails, type DiscordId, type DisplayName, type DownloadFileVersionData, type DownloadFileVersionError, type DownloadFileVersionErrors, type DownloadFileVersionResponse, type DownloadFileVersionResponses, type DynamicContentRow, type EconomyAccount, type EditPrintData, type EditPrintError, type EditPrintErrors, type EditPrintResponse, type EditPrintResponses, type Email, type Enable2FaData, type Enable2FaError, type Enable2FaErrors, type Enable2FaResponse, type Enable2FaResponses, type EndDate, type EnqueueImpostorData, type EnqueueImpostorError, type EnqueueImpostorErrors, type EnqueueImpostorResponse, type EnqueueImpostorResponses, type EventTypes, type ExcludeUserId, type Favorite, type FavoriteGroup, type FavoriteGroupId, type FavoriteGroupLimits, type FavoriteGroupName, type FavoriteGroupType, type FavoriteGroupVisibility, type FavoriteId, type FavoriteId2, type FavoriteLimits, type FavoriteType, type FavoritedWorld, type Featured, type Feedback, type FeedbackId, type File, type FileAnalysis, type FileAnalysisAvatarStats, type FileData, type FileId, type FileId2, type FileStatus, type FileType, type FileUploadUrl, type FileVersion, type FileVersionUploadStatus, type FinishFileDataUploadData, type FinishFileDataUploadRequest, type FinishFileDataUploadResponse, type FinishFileDataUploadResponses, type FollowCalendarEventRequest, type FollowGroupCalendarEventData, type FollowGroupCalendarEventError, type FollowGroupCalendarEventErrors, type FollowGroupCalendarEventResponse, type FollowGroupCalendarEventResponses, type FriendData, type FriendError, type FriendErrors, type FriendResponse, type FriendResponses, type FriendStatus, type Fuzzy, type GetActiveLicensesData, type GetActiveLicensesError, type GetActiveLicensesErrors, type GetActiveLicensesResponse, type GetActiveLicensesResponses, type GetActiveWorldsData, type GetActiveWorldsError, type GetActiveWorldsErrors, type GetActiveWorldsResponse, type GetActiveWorldsResponses, type GetAdminAssetBundleData, type GetAdminAssetBundleResponse, type GetAdminAssetBundleResponses, type GetAdminTransactionData, type GetAdminTransactionError, type GetAdminTransactionErrors, type GetAdminTransactionResponse, type GetAdminTransactionResponses, type GetAdminTransactionsData, type GetAdminTransactionsError, type GetAdminTransactionsErrors, type GetAdminTransactionsResponse, type GetAdminTransactionsResponses, type GetAssignedPermissionsData, type GetAssignedPermissionsError, type GetAssignedPermissionsErrors, type GetAssignedPermissionsResponse, type GetAssignedPermissionsResponses, type GetAvatarData, type GetAvatarError, type GetAvatarErrors, type GetAvatarResponse, type GetAvatarResponses, type GetAvatarStylesData, type GetAvatarStylesResponse, type GetAvatarStylesResponses, type GetBalanceData, type GetBalanceEarningsData, type GetBalanceEarningsError, type GetBalanceEarningsErrors, type GetBalanceEarningsResponse, type GetBalanceEarningsResponses, type GetBalanceError, type GetBalanceErrors, type GetBalanceResponse, type GetBalanceResponses, type GetCalendarEventsData, type GetCalendarEventsError, type GetCalendarEventsErrors, type GetCalendarEventsResponse, type GetCalendarEventsResponses, type GetConfigData, type GetConfigResponse, type GetConfigResponses, type GetCssData, type GetCssError, type GetCssErrors, type GetCssResponse, type GetCssResponses, type GetCurrentOnlineUsersData, type GetCurrentOnlineUsersResponse, type GetCurrentOnlineUsersResponses, type GetCurrentSubscriptionsData, type GetCurrentSubscriptionsError, type GetCurrentSubscriptionsErrors, type GetCurrentSubscriptionsResponse, type GetCurrentSubscriptionsResponses, type GetCurrentUserData, type GetCurrentUserError, type GetCurrentUserErrors, type GetCurrentUserResponse, type GetCurrentUserResponses, type GetEconomyAccountData, type GetEconomyAccountError, type GetEconomyAccountErrors, type GetEconomyAccountResponse, type GetEconomyAccountResponses, type GetFavoriteGroupData, type GetFavoriteGroupResponse, type GetFavoriteGroupResponses, type GetFavoriteGroupsData, type GetFavoriteGroupsError, type GetFavoriteGroupsErrors, type GetFavoriteGroupsResponse, type GetFavoriteGroupsResponses, type GetFavoriteLimitsData, type GetFavoriteLimitsError, type GetFavoriteLimitsErrors, type GetFavoriteLimitsResponse, type GetFavoriteLimitsResponses, type GetFavoritedAvatarsData, type GetFavoritedAvatarsError, type GetFavoritedAvatarsErrors, type GetFavoritedAvatarsResponse, type GetFavoritedAvatarsResponses, type GetFavoritedWorldsData, type GetFavoritedWorldsError, type GetFavoritedWorldsErrors, type GetFavoritedWorldsResponse, type GetFavoritedWorldsResponses, type GetFavoritesData, type GetFavoritesError, type GetFavoritesErrors, type GetFavoritesResponse, type GetFavoritesResponses, type GetFeaturedCalendarEventsData, type GetFeaturedCalendarEventsError, type GetFeaturedCalendarEventsErrors, type GetFeaturedCalendarEventsResponse, type GetFeaturedCalendarEventsResponses, type GetFileAnalysisData, type GetFileAnalysisError, type GetFileAnalysisErrors, type GetFileAnalysisResponse, type GetFileAnalysisResponses, type GetFileAnalysisSecurityData, type GetFileAnalysisSecurityError, type GetFileAnalysisSecurityErrors, type GetFileAnalysisSecurityResponse, type GetFileAnalysisSecurityResponses, type GetFileAnalysisStandardData, type GetFileAnalysisStandardError, type GetFileAnalysisStandardErrors, type GetFileAnalysisStandardResponse, type GetFileAnalysisStandardResponses, type GetFileData, type GetFileDataUploadStatusData, type GetFileDataUploadStatusResponse, type GetFileDataUploadStatusResponses, type GetFileError, type GetFileErrors, type GetFileResponse, type GetFileResponses, type GetFilesData, type GetFilesResponse, type GetFilesResponses, type GetFollowedCalendarEventsData, type GetFollowedCalendarEventsError, type GetFollowedCalendarEventsErrors, type GetFollowedCalendarEventsResponse, type GetFollowedCalendarEventsResponses, type GetFriendStatusData, type GetFriendStatusError, type GetFriendStatusErrors, type GetFriendStatusResponse, type GetFriendStatusResponses, type GetFriendsData, type GetFriendsError, type GetFriendsErrors, type GetFriendsResponse, type GetFriendsResponses, type GetGlobalAvatarModerationsData, type GetGlobalAvatarModerationsError, type GetGlobalAvatarModerationsErrors, type GetGlobalAvatarModerationsResponse, type GetGlobalAvatarModerationsResponses, type GetGroupAnnouncementsData, type GetGroupAnnouncementsError, type GetGroupAnnouncementsErrors, type GetGroupAnnouncementsResponse, type GetGroupAnnouncementsResponses, type GetGroupAuditLogsData, type GetGroupAuditLogsError, type GetGroupAuditLogsErrors, type GetGroupAuditLogsResponse, type GetGroupAuditLogsResponses, type GetGroupBansData, type GetGroupBansError, type GetGroupBansErrors, type GetGroupBansResponse, type GetGroupBansResponses, type GetGroupCalendarEventData, type GetGroupCalendarEventError, type GetGroupCalendarEventErrors, type GetGroupCalendarEventIcsData, type GetGroupCalendarEventIcsError, type GetGroupCalendarEventIcsErrors, type GetGroupCalendarEventIcsResponse, type GetGroupCalendarEventIcsResponses, type GetGroupCalendarEventResponse, type GetGroupCalendarEventResponses, type GetGroupCalendarEventsData, type GetGroupCalendarEventsError, type GetGroupCalendarEventsErrors, type GetGroupCalendarEventsResponse, type GetGroupCalendarEventsResponses, type GetGroupData, type GetGroupError, type GetGroupErrors, type GetGroupGalleryImagesData, type GetGroupGalleryImagesError, type GetGroupGalleryImagesErrors, type GetGroupGalleryImagesResponse, type GetGroupGalleryImagesResponses, type GetGroupInstancesData, type GetGroupInstancesError, type GetGroupInstancesErrors, type GetGroupInstancesResponse, type GetGroupInstancesResponses, type GetGroupInvitesData, type GetGroupInvitesError, type GetGroupInvitesErrors, type GetGroupInvitesResponse, type GetGroupInvitesResponses, type GetGroupMemberData, type GetGroupMemberError, type GetGroupMemberErrors, type GetGroupMemberResponse, type GetGroupMemberResponses, type GetGroupMembersData, type GetGroupMembersError, type GetGroupMembersErrors, type GetGroupMembersResponse, type GetGroupMembersResponses, type GetGroupPermissionsData, type GetGroupPermissionsError, type GetGroupPermissionsErrors, type GetGroupPermissionsResponse, type GetGroupPermissionsResponses, type GetGroupPostsData, type GetGroupPostsError, type GetGroupPostsErrors, type GetGroupPostsResponse, type GetGroupPostsResponses, type GetGroupRequestsData, type GetGroupRequestsError, type GetGroupRequestsErrors, type GetGroupRequestsResponse, type GetGroupRequestsResponses, type GetGroupResponse, type GetGroupResponses, type GetGroupRoleTemplatesData, type GetGroupRoleTemplatesError, type GetGroupRoleTemplatesErrors, type GetGroupRoleTemplatesResponse, type GetGroupRoleTemplatesResponses, type GetGroupRolesData, type GetGroupRolesError, type GetGroupRolesErrors, type GetGroupRolesResponse, type GetGroupRolesResponses, type GetHealthData, type GetHealthResponse, type GetHealthResponses, type GetImpostorQueueStatsData, type GetImpostorQueueStatsError, type GetImpostorQueueStatsErrors, type GetImpostorQueueStatsResponse, type GetImpostorQueueStatsResponses, type GetInfoPushData, type GetInfoPushResponse, type GetInfoPushResponses, type GetInstanceByShortNameData, type GetInstanceByShortNameError, type GetInstanceByShortNameErrors, type GetInstanceByShortNameResponse, type GetInstanceByShortNameResponses, type GetInstanceData, type GetInstanceError, type GetInstanceErrors, type GetInstanceResponse, type GetInstanceResponses, type GetInventoryData, type GetInventoryDropsData, type GetInventoryDropsError, type GetInventoryDropsErrors, type GetInventoryDropsResponse, type GetInventoryDropsResponses, type GetInventoryError, type GetInventoryErrors, type GetInventoryResponse, type GetInventoryResponses, type GetInventoryTemplateData, type GetInventoryTemplateError, type GetInventoryTemplateErrors, type GetInventoryTemplateResponse, type GetInventoryTemplateResponses, type GetInviteMessageData, type GetInviteMessageError, type GetInviteMessageErrors, type GetInviteMessageResponse, type GetInviteMessageResponses, type GetInviteMessagesData, type GetInviteMessagesError, type GetInviteMessagesErrors, type GetInviteMessagesResponse, type GetInviteMessagesResponses, type GetJamData, type GetJamError, type GetJamErrors, type GetJamResponse, type GetJamResponses, type GetJamSubmissionsData, type GetJamSubmissionsError, type GetJamSubmissionsErrors, type GetJamSubmissionsResponse, type GetJamSubmissionsResponses, type GetJamsData, type GetJamsResponse, type GetJamsResponses, type GetJavaScriptData, type GetJavaScriptError, type GetJavaScriptErrors, type GetJavaScriptResponse, type GetJavaScriptResponses, type GetLicenseGroupData, type GetLicenseGroupError, type GetLicenseGroupErrors, type GetLicenseGroupResponse, type GetLicenseGroupResponses, type GetLicensedAvatarsData, type GetLicensedAvatarsError, type GetLicensedAvatarsErrors, type GetLicensedAvatarsResponse, type GetLicensedAvatarsResponses, type GetNotificationData, type GetNotificationError, type GetNotificationErrors, type GetNotificationResponse, type GetNotificationResponses, type GetNotificationsData, type GetNotificationsError, type GetNotificationsErrors, type GetNotificationsResponse, type GetNotificationsResponses, type GetOwnAvatarData, type GetOwnAvatarError, type GetOwnAvatarErrors, type GetOwnAvatarResponse, type GetOwnAvatarResponses, type GetOwnInventoryItemData, type GetOwnInventoryItemError, type GetOwnInventoryItemErrors, type GetOwnInventoryItemResponse, type GetOwnInventoryItemResponses, type GetPermissionData, type GetPermissionError, type GetPermissionErrors, type GetPermissionResponse, type GetPermissionResponses, type GetPermissionsData, type GetPermissionsError, type GetPermissionsErrors, type GetPermissionsResponse, type GetPermissionsResponses, type GetPlayerModerationsData, type GetPlayerModerationsError, type GetPlayerModerationsErrors, type GetPlayerModerationsResponse, type GetPlayerModerationsResponses, type GetPrintData, type GetPrintError, type GetPrintErrors, type GetPrintResponse, type GetPrintResponses, type GetProductListingData, type GetProductListingError, type GetProductListingErrors, type GetProductListingResponse, type GetProductListingResponses, type GetProductListingsData, type GetProductListingsError, type GetProductListingsErrors, type GetProductListingsResponse, type GetProductListingsResponses, type GetPropData, type GetPropError, type GetPropErrors, type GetPropResponse, type GetPropResponses, type GetRecentLocationsData, type GetRecentLocationsError, type GetRecentLocationsErrors, type GetRecentLocationsResponse, type GetRecentLocationsResponses, type GetRecentWorldsData, type GetRecentWorldsError, type GetRecentWorldsErrors, type GetRecentWorldsResponse, type GetRecentWorldsResponses, type GetRecoveryCodesData, type GetRecoveryCodesError, type GetRecoveryCodesErrors, type GetRecoveryCodesResponse, type GetRecoveryCodesResponses, type GetShortNameData, type GetShortNameError, type GetShortNameErrors, type GetShortNameResponse, type GetShortNameResponses, type GetSteamTransactionData, type GetSteamTransactionError, type GetSteamTransactionErrors, type GetSteamTransactionResponse, type GetSteamTransactionResponses, type GetSteamTransactionsData, type GetSteamTransactionsError, type GetSteamTransactionsErrors, type GetSteamTransactionsResponse, type GetSteamTransactionsResponses, type GetStoreData, type GetStoreError, type GetStoreErrors, type GetStoreResponse, type GetStoreResponses, type GetStoreShelvesData, type GetStoreShelvesError, type GetStoreShelvesErrors, type GetStoreShelvesResponse, type GetStoreShelvesResponses, type GetSubscriptionsData, type GetSubscriptionsError, type GetSubscriptionsErrors, type GetSubscriptionsResponse, type GetSubscriptionsResponses, type GetSystemTimeData, type GetSystemTimeResponse, type GetSystemTimeResponses, type GetTiliaStatusData, type GetTiliaStatusError, type GetTiliaStatusErrors, type GetTiliaStatusResponse, type GetTiliaStatusResponses, type GetTiliaTosData, type GetTiliaTosError, type GetTiliaTosErrors, type GetTiliaTosResponse, type GetTiliaTosResponses, type GetTokenBundlesData, type GetTokenBundlesError, type GetTokenBundlesErrors, type GetTokenBundlesResponse, type GetTokenBundlesResponses, type GetUserByNameData, type GetUserByNameError, type GetUserByNameErrors, type GetUserByNameResponse, type GetUserByNameResponses, type GetUserData, type GetUserError, type GetUserErrors, type GetUserFeedbackData, type GetUserFeedbackError, type GetUserFeedbackErrors, type GetUserFeedbackResponse, type GetUserFeedbackResponses, type GetUserGroupInstancesData, type GetUserGroupInstancesError, type GetUserGroupInstancesErrors, type GetUserGroupInstancesResponse, type GetUserGroupInstancesResponses, type GetUserGroupRequestsData, type GetUserGroupRequestsError, type GetUserGroupRequestsErrors, type GetUserGroupRequestsResponse, type GetUserGroupRequestsResponses, type GetUserGroupsData, type GetUserGroupsError, type GetUserGroupsErrors, type GetUserGroupsResponse, type GetUserGroupsResponses, type GetUserNoteData, type GetUserNoteError, type GetUserNoteErrors, type GetUserNoteResponse, type GetUserNoteResponses, type GetUserNotesData, type GetUserNotesError, type GetUserNotesErrors, type GetUserNotesResponse, type GetUserNotesResponses, type GetUserPrintsData, type GetUserPrintsError, type GetUserPrintsErrors, type GetUserPrintsResponse, type GetUserPrintsResponses, type GetUserRepresentedGroupData, type GetUserRepresentedGroupError, type GetUserRepresentedGroupErrors, type GetUserRepresentedGroupResponse, type GetUserRepresentedGroupResponses, type GetUserResponse, type GetUserResponses, type GetUserSubscriptionEligibleData, type GetUserSubscriptionEligibleError, type GetUserSubscriptionEligibleErrors, type GetUserSubscriptionEligibleResponse, type GetUserSubscriptionEligibleResponses, type GetWorldData, type GetWorldError, type GetWorldErrors, type GetWorldInstanceData, type GetWorldInstanceError, type GetWorldInstanceErrors, type GetWorldInstanceResponse, type GetWorldInstanceResponses, type GetWorldMetadataData, type GetWorldMetadataError, type GetWorldMetadataErrors, type GetWorldMetadataResponse, type GetWorldMetadataResponses, type GetWorldPublishStatusData, type GetWorldPublishStatusError, type GetWorldPublishStatusErrors, type GetWorldPublishStatusResponse, type GetWorldPublishStatusResponses, type GetWorldResponse, type GetWorldResponses, type Group, type GroupAccessType, type GroupAnnouncement, type GroupAnnouncementId, type GroupAuditLogEntry, type GroupAuditLogId, type GroupDiscriminator, type GroupGallery, type GroupGalleryId, type GroupGalleryId2, type GroupGalleryImage, type GroupGalleryImageId, type GroupGalleryImageId2, type GroupId, type GroupId2, type GroupIdFilter, type GroupInstance, type GroupJoinRequestAction, type GroupJoinState, type GroupLimitedMember, type GroupMember, type GroupMemberId, type GroupMemberLimitedUser, type GroupMemberRoleFilter, type GroupMemberSort, type GroupMemberStatus, type GroupMyMember, type GroupPermission, type GroupPermissions, type GroupPost, type GroupPostVisibility, type GroupPrivacy, type GroupRole, type GroupRoleId, type GroupRoleId2, type GroupRoleIdList, type GroupRoleTemplate, type GroupRoleTemplateValues, type GroupSearchSort, type GroupShortCode, type GroupUserVisibility, type Hydrate, type HydrateListings, type HydrateProducts, type Include, type InfoPush, type InfoPushData, type InfoPushDataArticle, type InfoPushDataArticleContent, type InfoPushDataClickable, type Instance, type InstanceContentSettings, type InstanceId, type InstanceId2, type InstanceOwnerId, type InstancePlatforms, type InstanceRegion, type InstanceShortNameResponse, type InstanceType, type Inventory, type InventoryDrop, type InventoryDropId, type InventoryFlag, type InventoryItem, type InventoryItemArchived, type InventoryItemFlags, type InventoryItemId, type InventoryItemId2, type InventoryItemNotFlags, type InventoryItemNotTypes, type InventoryItemTags, type InventoryItemType, type InventoryItemTypes, type InventoryMetadata, type InventoryNotificationDetails, type InventoryPedestalDuration, type InventoryPedestalItemId, type InventorySortOrder, type InventorySpawn, type InventorySpawnItemId, type InventoryTemplate, type InventoryTemplateId, type InventoryTemplateId2, type InviteMessage, type InviteMessageId, type InviteMessageType, type InviteMyselfToData, type InviteMyselfToError, type InviteMyselfToErrors, type InviteMyselfToResponse, type InviteMyselfToResponses, type InviteRequest, type InviteResponse, type InviteUserData, type InviteUserError, type InviteUserErrors, type InviteUserResponse, type InviteUserResponses, type InviteUserWithPhotoData, type InviteUserWithPhotoError, type InviteUserWithPhotoErrors, type InviteUserWithPhotoResponse, type InviteUserWithPhotoResponses, type Jam, type JamId, type JoinGroupData, type JoinGroupError, type JoinGroupErrors, type JoinGroupResponse, type JoinGroupResponses, type KickGroupMemberData, type KickGroupMemberError, type KickGroupMemberErrors, type KickGroupMemberResponses, type LeaveGroupData, type LeaveGroupError, type LeaveGroupErrors, type LeaveGroupResponses, type License, type LicenseAction, type LicenseGroup, type LicenseGroupId, type LicenseGroupId2, type LicenseType, type LimitedGroup, type LimitedUnityPackage, type LimitedUserFriend, type LimitedUserGroups, type LimitedUserInstance, type LimitedUserSearch, type LimitedWorld, type LocalDateTime, type LocationId, type LoginCredentials, type LogoutData, type LogoutError, type LogoutErrors, type LogoutResponse, type LogoutResponses, type MarkNotificationAsReadData, type MarkNotificationAsReadError, type MarkNotificationAsReadErrors, type MarkNotificationAsReadResponse, type MarkNotificationAsReadResponses, type MaxUnityVersion, type MessageType, type MimeType, type MinUnityVersion, type ModerateUserData, type ModerateUserError, type ModerateUserErrors, type ModerateUserRequest, type ModerateUserResponse, type ModerateUserResponses, type MonthDate, type Notag, type Notification, type NotificationDetailInvite, type NotificationDetailInviteResponse, type NotificationDetailRequestInvite, type NotificationDetailRequestInviteResponse, type NotificationDetailVoteToKick, type NotificationId, type NotificationId2, type NotificationType, type Number, type Offline, type Offset, type OkStatus, type Order, type OrderOption, type PaginatedCalendarEventList, type PaginatedGroupAuditLogEntryList, type PastDisplayName, type Pending2FaResult, type PerformanceLimiterInfo, type PerformanceRatings, type Permission, type PermissionId, type PermissionId2, type Platform, type Platform2, type PlatformBuildInfo, type PlayerModeration, type PlayerModerationId, type PlayerModerationType, type Print, type PrintId, type PrintId2, type Product, type ProductId, type ProductId2, type ProductListing, type ProductListingType, type ProductListingVariant, type ProductListingVariantId, type ProductType, type Prop, type PropId, type PropId2, type PropUnityPackage, type PublishWorldData, type PublishWorldError, type PublishWorldErrors, type PublishWorldResponses, type Region, type RegisterUserAccountData, type RegisterUserAccountError, type RegisterUserAccountErrors, type RegisterUserAccountRequest, type RegisterUserAccountResponse, type RegisterUserAccountResponses, type ReleaseStatus, type ReleaseStatus2, type RemoveFavoriteData, type RemoveFavoriteError, type RemoveFavoriteErrors, type RemoveFavoriteResponse, type RemoveFavoriteResponses, type RemoveGroupMemberRoleData, type RemoveGroupMemberRoleError, type RemoveGroupMemberRoleErrors, type RemoveGroupMemberRoleResponse, type RemoveGroupMemberRoleResponses, type RemoveTagsData, type RemoveTagsError, type RemoveTagsErrors, type RemoveTagsResponse, type RemoveTagsResponses, type ReportCategory, type ReportReason, type RepresentedGroup, type RequestInviteData, type RequestInviteError, type RequestInviteErrors, type RequestInviteRequest, type RequestInviteResponse, type RequestInviteResponses, type RequestInviteWithPhotoData, type RequestInviteWithPhotoError, type RequestInviteWithPhotoErrors, type RequestInviteWithPhotoResponse, type RequestInviteWithPhotoResponses, type Require, type ResendEmailConfirmationData, type ResendEmailConfirmationError, type ResendEmailConfirmationErrors, type ResendEmailConfirmationResponse, type ResendEmailConfirmationResponses, type ResetInviteMessageData, type ResetInviteMessageError, type ResetInviteMessageErrors, type ResetInviteMessageResponse, type ResetInviteMessageResponses, type RespondGroupJoinRequest, type RespondGroupJoinRequestData, type RespondGroupJoinRequestError, type RespondGroupJoinRequestErrors, type RespondGroupJoinRequestResponses, type RespondInviteData, type RespondInviteError, type RespondInviteErrors, type RespondInviteResponse, type RespondInviteResponses, type RespondInviteWithPhotoData, type RespondInviteWithPhotoError, type RespondInviteWithPhotoErrors, type RespondInviteWithPhotoResponse, type RespondInviteWithPhotoResponses, type Response$1 as Response, type Search, type SearchActiveUsersData, type SearchActiveUsersError, type SearchActiveUsersErrors, type SearchActiveUsersResponse, type SearchActiveUsersResponses, type SearchAvatarsData, type SearchAvatarsError, type SearchAvatarsErrors, type SearchAvatarsResponse, type SearchAvatarsResponses, type SearchCalendarEventsData, type SearchCalendarEventsError, type SearchCalendarEventsErrors, type SearchCalendarEventsResponse, type SearchCalendarEventsResponses, type SearchGroupsData, type SearchGroupsError, type SearchGroupsErrors, type SearchGroupsResponse, type SearchGroupsResponses, type SearchUsersData, type SearchUsersError, type SearchUsersErrors, type SearchUsersResponse, type SearchUsersResponses, type SearchWorldsData, type SearchWorldsError, type SearchWorldsErrors, type SearchWorldsResponse, type SearchWorldsResponses, type SelectAvatarData, type SelectAvatarError, type SelectAvatarErrors, type SelectAvatarResponse, type SelectAvatarResponses, type SelectFallbackAvatarData, type SelectFallbackAvatarError, type SelectFallbackAvatarErrors, type SelectFallbackAvatarResponse, type SelectFallbackAvatarResponses, type SentNotification, type ServiceQueueStats, type ServiceStatus, type ShareInventoryItemDirectData, type ShareInventoryItemDirectError, type ShareInventoryItemDirectErrors, type ShareInventoryItemDirectRequest, type ShareInventoryItemDirectResponse, type ShareInventoryItemDirectResponses, type ShareInventoryItemPedestalData, type ShareInventoryItemPedestalError, type ShareInventoryItemPedestalErrors, type ShareInventoryItemPedestalResponse, type ShareInventoryItemPedestalResponses, type Slot, type Sort, type SortOption, type SpawnInventoryItemData, type SpawnInventoryItemError, type SpawnInventoryItemErrors, type SpawnInventoryItemResponse, type SpawnInventoryItemResponses, type StartDate, type StartFileDataUploadData, type StartFileDataUploadError, type StartFileDataUploadErrors, type StartFileDataUploadResponse, type StartFileDataUploadResponses, type SteamId, type Store, type StoreId, type StoreId2, type StoreShelf, type StoreShelfId, type StoreType, type StoreView, type StoreView2, type Submission, type Subscription, type SubscriptionPeriod, type Success, type Tag, type Tag2, type TargetIds, type TiliaStatus, type TiliaTos, type TokenBundle, type Transaction, type TransactionAgreement, type TransactionId, type TransactionId2, type TransactionStatus, type TransactionSteamInfo, type TransactionSteamWalletInfo, type TwoFactorAuthCode, type TwoFactorEmailCode, TwoFactorMethods, type TwoFactorRecoveryCodes, type UdonProductId, type UnbanGroupMemberData, type UnbanGroupMemberError, type UnbanGroupMemberErrors, type UnbanGroupMemberResponse, type UnbanGroupMemberResponses, type UnfriendData, type UnfriendError, type UnfriendErrors, type UnfriendResponse, type UnfriendResponses, type UnityPackage, type UnityPackageId, type UnmoderateUserData, type UnmoderateUserError, type UnmoderateUserErrors, type UnmoderateUserResponse, type UnmoderateUserResponses, type UnpublishWorldData, type UnpublishWorldError, type UnpublishWorldErrors, type UnpublishWorldResponses, type UpdateAvatarData, type UpdateAvatarError, type UpdateAvatarErrors, type UpdateAvatarRequest, type UpdateAvatarResponse, type UpdateAvatarResponses, type UpdateBadgeData, type UpdateBadgeError, type UpdateBadgeErrors, type UpdateBadgeResponses, type UpdateCalendarEventRequest, type UpdateFavoriteGroupData, type UpdateFavoriteGroupRequest, type UpdateFavoriteGroupResponses, type UpdateGroupCalendarEventData, type UpdateGroupCalendarEventError, type UpdateGroupCalendarEventErrors, type UpdateGroupCalendarEventResponse, type UpdateGroupCalendarEventResponses, type UpdateGroupData, type UpdateGroupError, type UpdateGroupErrors, type UpdateGroupGalleryData, type UpdateGroupGalleryError, type UpdateGroupGalleryErrors, type UpdateGroupGalleryRequest, type UpdateGroupGalleryResponse, type UpdateGroupGalleryResponses, type UpdateGroupMemberData, type UpdateGroupMemberError, type UpdateGroupMemberErrors, type UpdateGroupMemberRequest, type UpdateGroupMemberResponse, type UpdateGroupMemberResponses, type UpdateGroupPostData, type UpdateGroupPostError, type UpdateGroupPostErrors, type UpdateGroupPostResponse, type UpdateGroupPostResponses, type UpdateGroupRepresentationData, type UpdateGroupRepresentationError, type UpdateGroupRepresentationErrors, type UpdateGroupRepresentationResponse, type UpdateGroupRepresentationResponses, type UpdateGroupRequest, type UpdateGroupResponse, type UpdateGroupResponses, type UpdateGroupRoleData, type UpdateGroupRoleError, type UpdateGroupRoleErrors, type UpdateGroupRoleRequest, type UpdateGroupRoleResponse, type UpdateGroupRoleResponses, type UpdateInventoryItemRequest, type UpdateInviteMessageData, type UpdateInviteMessageError, type UpdateInviteMessageErrors, type UpdateInviteMessageRequest, type UpdateInviteMessageResponse, type UpdateInviteMessageResponses, type UpdateOwnInventoryItemData, type UpdateOwnInventoryItemError, type UpdateOwnInventoryItemErrors, type UpdateOwnInventoryItemResponse, type UpdateOwnInventoryItemResponses, type UpdatePermissionData, type UpdatePermissionError, type UpdatePermissionErrors, type UpdatePermissionResponse, type UpdatePermissionResponses, type UpdateUserBadgeRequest, type UpdateUserData, type UpdateUserError, type UpdateUserErrors, type UpdateUserNoteData, type UpdateUserNoteError, type UpdateUserNoteErrors, type UpdateUserNoteRequest, type UpdateUserNoteResponse, type UpdateUserNoteResponses, type UpdateUserRequest, type UpdateUserResponse, type UpdateUserResponses, type UpdateWorldData, type UpdateWorldError, type UpdateWorldErrors, type UpdateWorldRequest, type UpdateWorldResponse, type UpdateWorldResponses, type UploadGalleryImageData, type UploadGalleryImageResponse, type UploadGalleryImageResponses, type UploadIconData, type UploadIconResponse, type UploadIconResponses, type UploadImageData, type UploadImageResponse, type UploadImageResponses, type UploadPrintData, type UploadPrintError, type UploadPrintErrors, type UploadPrintResponse, type UploadPrintResponses, type User, type UserExists, type UserId, type UserId2, type UserIdAdmin, type UserIdQuery, type UserNote, type UserNoteId, type UserNoteId2, type UserState, type UserStatus, type UserSubscription, type UserSubscriptionEligible, type UsernameQuery, type UtcOffset, VRChat, VRChatError, type VRChatOptions, type Variant, type Verify2FaData, type Verify2FaEmailCodeData, type Verify2FaEmailCodeError, type Verify2FaEmailCodeErrors, type Verify2FaEmailCodeResponse, type Verify2FaEmailCodeResponses, type Verify2FaEmailCodeResult, type Verify2FaError, type Verify2FaErrors, type Verify2FaResponse, type Verify2FaResponses, type Verify2FaResult, type VerifyAuthTokenData, type VerifyAuthTokenError, type VerifyAuthTokenErrors, type VerifyAuthTokenResponse, type VerifyAuthTokenResponses, type VerifyAuthTokenResult, type VerifyLoginPlaceData, type VerifyLoginPlaceToken, type VerifyPending2FaData, type VerifyPending2FaError, type VerifyPending2FaErrors, type VerifyPending2FaResponse, type VerifyPending2FaResponses, type VerifyRecoveryCodeData, type VerifyRecoveryCodeError, type VerifyRecoveryCodeErrors, type VerifyRecoveryCodeResponse, type VerifyRecoveryCodeResponses, type VersionId, type World, type WorldId, type WorldId2, type WorldMetadata, type WorldPublishStatus, baseUrl };
|