vrchat 1.20.0-next.1751143781 → 1.20.0-next.1752332210
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/LICENSE +21 -0
- package/dist/index.d.mts +508 -7
- package/dist/index.d.ts +508 -7
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as _hey_api_client_fetch from '@hey-api/client-fetch';
|
|
2
2
|
import { Client, TDataShape, Options as Options$1, createConfig, RequestResult } from '@hey-api/client-fetch';
|
|
3
3
|
import Keyv, { KeyvStoreAdapter } from 'keyv';
|
|
4
|
+
import TypedEventEmitter from 'typed-emitter';
|
|
4
5
|
|
|
5
6
|
declare class VRChatError extends Error {
|
|
6
7
|
request: Request;
|
|
@@ -556,6 +557,17 @@ type CreateAvatarRequest = {
|
|
|
556
557
|
unityPackageUrl?: string;
|
|
557
558
|
unityVersion?: string;
|
|
558
559
|
};
|
|
560
|
+
/**
|
|
561
|
+
* AvatarStyleID
|
|
562
|
+
*/
|
|
563
|
+
type AvatarStyleId = string;
|
|
564
|
+
/**
|
|
565
|
+
* AvatarStyle
|
|
566
|
+
*/
|
|
567
|
+
type AvatarStyle = {
|
|
568
|
+
id: AvatarStyleId;
|
|
569
|
+
styleName: string;
|
|
570
|
+
};
|
|
559
571
|
/**
|
|
560
572
|
* UpdateAvatarRequest
|
|
561
573
|
*/
|
|
@@ -1183,6 +1195,34 @@ type FileAnalysis = {
|
|
|
1183
1195
|
success: boolean;
|
|
1184
1196
|
uncompressedSize: number;
|
|
1185
1197
|
};
|
|
1198
|
+
/**
|
|
1199
|
+
* AdminUnityPackage
|
|
1200
|
+
*/
|
|
1201
|
+
type AdminUnityPackage = {
|
|
1202
|
+
assetUrl: string;
|
|
1203
|
+
assetVersion: number;
|
|
1204
|
+
platform: Platform;
|
|
1205
|
+
unityVersion: string;
|
|
1206
|
+
variant: string;
|
|
1207
|
+
};
|
|
1208
|
+
/**
|
|
1209
|
+
* AdminAssetBundle
|
|
1210
|
+
*/
|
|
1211
|
+
type AdminAssetBundle = {
|
|
1212
|
+
_created_at: Date;
|
|
1213
|
+
_updated_at: Date;
|
|
1214
|
+
assetType: string;
|
|
1215
|
+
authorId: UserId;
|
|
1216
|
+
authorName: string;
|
|
1217
|
+
description: string;
|
|
1218
|
+
imageUrl: string;
|
|
1219
|
+
name: string;
|
|
1220
|
+
releaseStatus: ReleaseStatus;
|
|
1221
|
+
tags: Array<Tag>;
|
|
1222
|
+
thumbnailImageUrl: string;
|
|
1223
|
+
unityPackageUrl: string | null;
|
|
1224
|
+
unityPackages: Array<AdminUnityPackage>;
|
|
1225
|
+
};
|
|
1186
1226
|
/**
|
|
1187
1227
|
* LimitedUserFriend
|
|
1188
1228
|
* User object received when querying your friends list
|
|
@@ -1969,6 +2009,127 @@ type UpdateGroupRoleRequest = {
|
|
|
1969
2009
|
permissions?: Array<GroupPermissions>;
|
|
1970
2010
|
order?: number;
|
|
1971
2011
|
};
|
|
2012
|
+
/**
|
|
2013
|
+
* InventoryItemType
|
|
2014
|
+
*/
|
|
2015
|
+
type InventoryItemType = 'bundle' | 'prop' | 'emoji' | 'sticker';
|
|
2016
|
+
/**
|
|
2017
|
+
* InventoryItemID
|
|
2018
|
+
*/
|
|
2019
|
+
type InventoryItemId = string;
|
|
2020
|
+
/**
|
|
2021
|
+
* InventoryTemplateID
|
|
2022
|
+
*/
|
|
2023
|
+
type InventoryTemplateId = string;
|
|
2024
|
+
/**
|
|
2025
|
+
* PropID
|
|
2026
|
+
*/
|
|
2027
|
+
type PropId = string;
|
|
2028
|
+
/**
|
|
2029
|
+
* InventoryMetadata
|
|
2030
|
+
*/
|
|
2031
|
+
type InventoryMetadata = {
|
|
2032
|
+
/**
|
|
2033
|
+
* Only in bundles
|
|
2034
|
+
*/
|
|
2035
|
+
inventoryItemsToInstantiate?: Array<InventoryTemplateId>;
|
|
2036
|
+
animated?: boolean;
|
|
2037
|
+
animationStyle?: string;
|
|
2038
|
+
assetBundleId?: string;
|
|
2039
|
+
fileId?: string;
|
|
2040
|
+
imageUrl?: string;
|
|
2041
|
+
maskTag?: string;
|
|
2042
|
+
propId?: PropId;
|
|
2043
|
+
[key: string]: unknown | Array<InventoryTemplateId> | boolean | string | PropId | undefined;
|
|
2044
|
+
};
|
|
2045
|
+
/**
|
|
2046
|
+
* InventoryItem
|
|
2047
|
+
*/
|
|
2048
|
+
type InventoryItem = {
|
|
2049
|
+
collections: Array<string>;
|
|
2050
|
+
created_at: Date;
|
|
2051
|
+
description: string;
|
|
2052
|
+
expiryDate: Date | null;
|
|
2053
|
+
flags: Array<string>;
|
|
2054
|
+
holderId: UserId;
|
|
2055
|
+
id: InventoryItemId;
|
|
2056
|
+
imageUrl: string;
|
|
2057
|
+
isArchived: boolean;
|
|
2058
|
+
isSeen: boolean;
|
|
2059
|
+
itemType: InventoryItemType;
|
|
2060
|
+
itemTypeLabel: string;
|
|
2061
|
+
metadata: InventoryMetadata;
|
|
2062
|
+
name: string;
|
|
2063
|
+
tags: Array<Tag>;
|
|
2064
|
+
templateId: InventoryTemplateId;
|
|
2065
|
+
template_created_at: Date;
|
|
2066
|
+
template_updated_at: Date;
|
|
2067
|
+
updated_at: Date;
|
|
2068
|
+
};
|
|
2069
|
+
/**
|
|
2070
|
+
* Inventory
|
|
2071
|
+
*/
|
|
2072
|
+
type Inventory = {
|
|
2073
|
+
data: Array<InventoryItem>;
|
|
2074
|
+
totalCount: number;
|
|
2075
|
+
};
|
|
2076
|
+
/**
|
|
2077
|
+
* InventoryDropID
|
|
2078
|
+
*/
|
|
2079
|
+
type InventoryDropId = string;
|
|
2080
|
+
/**
|
|
2081
|
+
* InventoryNotificationDetails
|
|
2082
|
+
*/
|
|
2083
|
+
type InventoryNotificationDetails = {
|
|
2084
|
+
body: string;
|
|
2085
|
+
imageUrl: string;
|
|
2086
|
+
title: string;
|
|
2087
|
+
};
|
|
2088
|
+
/**
|
|
2089
|
+
* InventoryDrop
|
|
2090
|
+
*/
|
|
2091
|
+
type InventoryDrop = {
|
|
2092
|
+
authorId: UserId;
|
|
2093
|
+
created_at: Date;
|
|
2094
|
+
dropExpiryDate: Date | null;
|
|
2095
|
+
endDropDate: Date;
|
|
2096
|
+
id: InventoryDropId;
|
|
2097
|
+
name: string;
|
|
2098
|
+
notificationDetails: InventoryNotificationDetails;
|
|
2099
|
+
startDropDate: Date;
|
|
2100
|
+
status: string;
|
|
2101
|
+
tags: Array<Tag>;
|
|
2102
|
+
targetGroup: string;
|
|
2103
|
+
templateIds: Array<InventoryTemplateId>;
|
|
2104
|
+
updated_at: Date;
|
|
2105
|
+
};
|
|
2106
|
+
/**
|
|
2107
|
+
* InventoryTemplate
|
|
2108
|
+
*/
|
|
2109
|
+
type InventoryTemplate = {
|
|
2110
|
+
authorId: UserId;
|
|
2111
|
+
collections: Array<string>;
|
|
2112
|
+
created_at: Date;
|
|
2113
|
+
description: string;
|
|
2114
|
+
flags: Array<string>;
|
|
2115
|
+
id: InventoryTemplateId;
|
|
2116
|
+
imageUrl: string;
|
|
2117
|
+
itemType: InventoryItemType;
|
|
2118
|
+
itemTypeLabel: string;
|
|
2119
|
+
metadata?: InventoryMetadata;
|
|
2120
|
+
name: string;
|
|
2121
|
+
notificationDetails?: InventoryNotificationDetails;
|
|
2122
|
+
status: string;
|
|
2123
|
+
tags: Array<Tag>;
|
|
2124
|
+
updated_at: Date;
|
|
2125
|
+
};
|
|
2126
|
+
/**
|
|
2127
|
+
* InventorySpawn
|
|
2128
|
+
*/
|
|
2129
|
+
type InventorySpawn = {
|
|
2130
|
+
token: string;
|
|
2131
|
+
version: number;
|
|
2132
|
+
};
|
|
1972
2133
|
/**
|
|
1973
2134
|
* InviteRequest
|
|
1974
2135
|
*/
|
|
@@ -2256,6 +2417,38 @@ type Print = {
|
|
|
2256
2417
|
worldId: WorldId;
|
|
2257
2418
|
worldName: string;
|
|
2258
2419
|
};
|
|
2420
|
+
/**
|
|
2421
|
+
* PropUnityPackage
|
|
2422
|
+
*/
|
|
2423
|
+
type PropUnityPackage = {
|
|
2424
|
+
assetUrl: string;
|
|
2425
|
+
assetVersion: number;
|
|
2426
|
+
propSignature: string;
|
|
2427
|
+
platform: Platform;
|
|
2428
|
+
unityVersion: string;
|
|
2429
|
+
variant: string;
|
|
2430
|
+
};
|
|
2431
|
+
/**
|
|
2432
|
+
* Prop
|
|
2433
|
+
*/
|
|
2434
|
+
type Prop = {
|
|
2435
|
+
_created_at: Date;
|
|
2436
|
+
_updated_at: Date;
|
|
2437
|
+
authorId: UserId;
|
|
2438
|
+
authorName: string;
|
|
2439
|
+
description: string;
|
|
2440
|
+
id: PropId;
|
|
2441
|
+
imageUrl: string;
|
|
2442
|
+
maxCountPerUser: number;
|
|
2443
|
+
name: string;
|
|
2444
|
+
releaseStatus: ReleaseStatus;
|
|
2445
|
+
spawnType: number;
|
|
2446
|
+
tags: Array<Tag>;
|
|
2447
|
+
thumbnailImageUrl: string;
|
|
2448
|
+
unityPackageUrl: string | null;
|
|
2449
|
+
unityPackages: Array<PropUnityPackage>;
|
|
2450
|
+
worldPlacementMask: number;
|
|
2451
|
+
};
|
|
2259
2452
|
/**
|
|
2260
2453
|
* Jam
|
|
2261
2454
|
*/
|
|
@@ -3715,7 +3908,7 @@ type Hydrate = boolean;
|
|
|
3715
3908
|
*/
|
|
3716
3909
|
type GroupIdFilter = string;
|
|
3717
3910
|
/**
|
|
3718
|
-
* Filter for users' listings.
|
|
3911
|
+
* Filter for users' listings and inventory bundles.
|
|
3719
3912
|
*/
|
|
3720
3913
|
type Active = boolean;
|
|
3721
3914
|
/**
|
|
@@ -3742,6 +3935,10 @@ type VersionId = number;
|
|
|
3742
3935
|
* Type of file.
|
|
3743
3936
|
*/
|
|
3744
3937
|
type FileType = 'file' | 'signature' | 'delta';
|
|
3938
|
+
/**
|
|
3939
|
+
* Must be a valid admin asset bundle ID.
|
|
3940
|
+
*/
|
|
3941
|
+
type AdminAssetBundleId = string;
|
|
3745
3942
|
/**
|
|
3746
3943
|
* Returns *only* offline users if true, returns only online and active users if false
|
|
3747
3944
|
*/
|
|
@@ -3794,6 +3991,26 @@ type GroupRoleId2 = string;
|
|
|
3794
3991
|
* Must be a valid notification ID.
|
|
3795
3992
|
*/
|
|
3796
3993
|
type NotificationId2 = string;
|
|
3994
|
+
/**
|
|
3995
|
+
* Sort order for inventory retrieval.
|
|
3996
|
+
*/
|
|
3997
|
+
type InventorySortOrder = 'newest' | 'oldest';
|
|
3998
|
+
/**
|
|
3999
|
+
* Filter for inventory retrieval.
|
|
4000
|
+
*/
|
|
4001
|
+
type InventoryItemType2 = InventoryItemType;
|
|
4002
|
+
/**
|
|
4003
|
+
* Must be a valid inventory item ID.
|
|
4004
|
+
*/
|
|
4005
|
+
type InventoryItemId2 = string;
|
|
4006
|
+
/**
|
|
4007
|
+
* Must be a valid inventory template ID.
|
|
4008
|
+
*/
|
|
4009
|
+
type InventoryTemplateId2 = string;
|
|
4010
|
+
/**
|
|
4011
|
+
* Id for inventory item spawning.
|
|
4012
|
+
*/
|
|
4013
|
+
type InventorySpawnItemId = InventoryItemId;
|
|
3797
4014
|
/**
|
|
3798
4015
|
* Must be a valid world ID.
|
|
3799
4016
|
*/
|
|
@@ -3814,12 +4031,16 @@ type Slot = number;
|
|
|
3814
4031
|
* Print ID.
|
|
3815
4032
|
*/
|
|
3816
4033
|
type PrintId2 = string;
|
|
4034
|
+
/**
|
|
4035
|
+
* Prop ID.
|
|
4036
|
+
*/
|
|
4037
|
+
type PropId2 = string;
|
|
3817
4038
|
/**
|
|
3818
4039
|
* Must be a valid query ID.
|
|
3819
4040
|
*/
|
|
3820
4041
|
type JamId = string;
|
|
3821
4042
|
/**
|
|
3822
|
-
* Filter for users' previously submitted feedback, e.g., a groupId,
|
|
4043
|
+
* Filter for users' previously submitted feedback, e.g., a groupId, userId, avatarId, etc.
|
|
3823
4044
|
*/
|
|
3824
4045
|
type ContentId = boolean;
|
|
3825
4046
|
/**
|
|
@@ -4329,6 +4550,19 @@ type CreateAvatarResponses = {
|
|
|
4329
4550
|
200: Avatar;
|
|
4330
4551
|
};
|
|
4331
4552
|
type CreateAvatarResponse = CreateAvatarResponses[keyof CreateAvatarResponses];
|
|
4553
|
+
type GetAvatarStylesData = {
|
|
4554
|
+
body?: never;
|
|
4555
|
+
path?: never;
|
|
4556
|
+
query?: never;
|
|
4557
|
+
url: '/avatarStyles';
|
|
4558
|
+
};
|
|
4559
|
+
type GetAvatarStylesResponses = {
|
|
4560
|
+
/**
|
|
4561
|
+
* Returns a list of AvatarStyle objects.
|
|
4562
|
+
*/
|
|
4563
|
+
200: Array<AvatarStyle>;
|
|
4564
|
+
};
|
|
4565
|
+
type GetAvatarStylesResponse = GetAvatarStylesResponses[keyof GetAvatarStylesResponses];
|
|
4332
4566
|
type DeleteAvatarData = {
|
|
4333
4567
|
body?: never;
|
|
4334
4568
|
path: {
|
|
@@ -4827,7 +5061,7 @@ type GetProductListingsData = {
|
|
|
4827
5061
|
*/
|
|
4828
5062
|
groupId?: string;
|
|
4829
5063
|
/**
|
|
4830
|
-
* Filter for users' listings.
|
|
5064
|
+
* Filter for users' listings and inventory bundles.
|
|
4831
5065
|
*/
|
|
4832
5066
|
active?: boolean;
|
|
4833
5067
|
};
|
|
@@ -5605,6 +5839,24 @@ type UploadGalleryImageResponses = {
|
|
|
5605
5839
|
200: File;
|
|
5606
5840
|
};
|
|
5607
5841
|
type UploadGalleryImageResponse = UploadGalleryImageResponses[keyof UploadGalleryImageResponses];
|
|
5842
|
+
type GetAdminAssetBundleData = {
|
|
5843
|
+
body?: never;
|
|
5844
|
+
path: {
|
|
5845
|
+
/**
|
|
5846
|
+
* Must be a valid admin asset bundle ID.
|
|
5847
|
+
*/
|
|
5848
|
+
adminAssetBundleId: string;
|
|
5849
|
+
};
|
|
5850
|
+
query?: never;
|
|
5851
|
+
url: '/adminassetbundles/{adminAssetBundleId}';
|
|
5852
|
+
};
|
|
5853
|
+
type GetAdminAssetBundleResponses = {
|
|
5854
|
+
/**
|
|
5855
|
+
* Returns a single AdminAssetBundle object.
|
|
5856
|
+
*/
|
|
5857
|
+
200: AdminAssetBundle;
|
|
5858
|
+
};
|
|
5859
|
+
type GetAdminAssetBundleResponse = GetAdminAssetBundleResponses[keyof GetAdminAssetBundleResponses];
|
|
5608
5860
|
type GetFriendsData = {
|
|
5609
5861
|
body?: never;
|
|
5610
5862
|
path?: never;
|
|
@@ -7247,6 +7499,143 @@ type UpdateGroupRoleResponses = {
|
|
|
7247
7499
|
200: Array<GroupRole>;
|
|
7248
7500
|
};
|
|
7249
7501
|
type UpdateGroupRoleResponse = UpdateGroupRoleResponses[keyof UpdateGroupRoleResponses];
|
|
7502
|
+
type GetInventoryData = {
|
|
7503
|
+
body?: never;
|
|
7504
|
+
path?: never;
|
|
7505
|
+
query?: {
|
|
7506
|
+
/**
|
|
7507
|
+
* The number of objects to return.
|
|
7508
|
+
*/
|
|
7509
|
+
n?: number;
|
|
7510
|
+
/**
|
|
7511
|
+
* A zero-based offset from the default object sorting from where search results start.
|
|
7512
|
+
*/
|
|
7513
|
+
offset?: number;
|
|
7514
|
+
/**
|
|
7515
|
+
* Sort order for inventory retrieval.
|
|
7516
|
+
*/
|
|
7517
|
+
inventorySortOrder?: 'newest' | 'oldest';
|
|
7518
|
+
/**
|
|
7519
|
+
* Filter for inventory retrieval.
|
|
7520
|
+
*/
|
|
7521
|
+
inventoryItemType?: InventoryItemType;
|
|
7522
|
+
};
|
|
7523
|
+
url: '/inventory';
|
|
7524
|
+
};
|
|
7525
|
+
type GetInventoryErrors = {
|
|
7526
|
+
/**
|
|
7527
|
+
* Error response due to missing auth cookie.
|
|
7528
|
+
*/
|
|
7529
|
+
401: _Error;
|
|
7530
|
+
};
|
|
7531
|
+
type GetInventoryError = GetInventoryErrors[keyof GetInventoryErrors];
|
|
7532
|
+
type GetInventoryResponses = {
|
|
7533
|
+
/**
|
|
7534
|
+
* Returns an Inventory object.
|
|
7535
|
+
*/
|
|
7536
|
+
200: Inventory;
|
|
7537
|
+
};
|
|
7538
|
+
type GetInventoryResponse = GetInventoryResponses[keyof GetInventoryResponses];
|
|
7539
|
+
type GetOwnInventoryItemData = {
|
|
7540
|
+
body?: never;
|
|
7541
|
+
path: {
|
|
7542
|
+
/**
|
|
7543
|
+
* Must be a valid inventory item ID.
|
|
7544
|
+
*/
|
|
7545
|
+
inventoryItemId: string;
|
|
7546
|
+
};
|
|
7547
|
+
query?: never;
|
|
7548
|
+
url: '/inventory/{inventoryItemId}';
|
|
7549
|
+
};
|
|
7550
|
+
type GetOwnInventoryItemErrors = {
|
|
7551
|
+
/**
|
|
7552
|
+
* Error response due to missing auth cookie.
|
|
7553
|
+
*/
|
|
7554
|
+
401: _Error;
|
|
7555
|
+
};
|
|
7556
|
+
type GetOwnInventoryItemError = GetOwnInventoryItemErrors[keyof GetOwnInventoryItemErrors];
|
|
7557
|
+
type GetOwnInventoryItemResponses = {
|
|
7558
|
+
/**
|
|
7559
|
+
* Returns an InventoryItem object.
|
|
7560
|
+
*/
|
|
7561
|
+
200: InventoryItem;
|
|
7562
|
+
};
|
|
7563
|
+
type GetOwnInventoryItemResponse = GetOwnInventoryItemResponses[keyof GetOwnInventoryItemResponses];
|
|
7564
|
+
type GetInventoryDropsData = {
|
|
7565
|
+
body?: never;
|
|
7566
|
+
path?: never;
|
|
7567
|
+
query?: {
|
|
7568
|
+
/**
|
|
7569
|
+
* Filter for users' listings and inventory bundles.
|
|
7570
|
+
*/
|
|
7571
|
+
active?: boolean;
|
|
7572
|
+
};
|
|
7573
|
+
url: '/inventory/drops';
|
|
7574
|
+
};
|
|
7575
|
+
type GetInventoryDropsErrors = {
|
|
7576
|
+
/**
|
|
7577
|
+
* Error response due to missing auth cookie.
|
|
7578
|
+
*/
|
|
7579
|
+
401: _Error;
|
|
7580
|
+
};
|
|
7581
|
+
type GetInventoryDropsError = GetInventoryDropsErrors[keyof GetInventoryDropsErrors];
|
|
7582
|
+
type GetInventoryDropsResponses = {
|
|
7583
|
+
/**
|
|
7584
|
+
* Returns a list of InventoryDrop objects.
|
|
7585
|
+
*/
|
|
7586
|
+
200: Array<InventoryDrop>;
|
|
7587
|
+
};
|
|
7588
|
+
type GetInventoryDropsResponse = GetInventoryDropsResponses[keyof GetInventoryDropsResponses];
|
|
7589
|
+
type GetInventoryTemplateData = {
|
|
7590
|
+
body?: never;
|
|
7591
|
+
path: {
|
|
7592
|
+
/**
|
|
7593
|
+
* Must be a valid inventory template ID.
|
|
7594
|
+
*/
|
|
7595
|
+
inventoryTemplateId: string;
|
|
7596
|
+
};
|
|
7597
|
+
query?: never;
|
|
7598
|
+
url: '/inventory/template/{inventoryTemplateId}';
|
|
7599
|
+
};
|
|
7600
|
+
type GetInventoryTemplateErrors = {
|
|
7601
|
+
/**
|
|
7602
|
+
* Error response due to missing auth cookie.
|
|
7603
|
+
*/
|
|
7604
|
+
401: _Error;
|
|
7605
|
+
};
|
|
7606
|
+
type GetInventoryTemplateError = GetInventoryTemplateErrors[keyof GetInventoryTemplateErrors];
|
|
7607
|
+
type GetInventoryTemplateResponses = {
|
|
7608
|
+
/**
|
|
7609
|
+
* Returns an InventoryTemplate object.
|
|
7610
|
+
*/
|
|
7611
|
+
200: InventoryTemplate;
|
|
7612
|
+
};
|
|
7613
|
+
type GetInventoryTemplateResponse = GetInventoryTemplateResponses[keyof GetInventoryTemplateResponses];
|
|
7614
|
+
type SpawnInventoryItemData = {
|
|
7615
|
+
body?: never;
|
|
7616
|
+
path?: never;
|
|
7617
|
+
query: {
|
|
7618
|
+
/**
|
|
7619
|
+
* Id for inventory item spawning.
|
|
7620
|
+
*/
|
|
7621
|
+
id: InventoryItemId;
|
|
7622
|
+
};
|
|
7623
|
+
url: '/inventory/spawn';
|
|
7624
|
+
};
|
|
7625
|
+
type SpawnInventoryItemErrors = {
|
|
7626
|
+
/**
|
|
7627
|
+
* Error response due to missing auth cookie.
|
|
7628
|
+
*/
|
|
7629
|
+
401: _Error;
|
|
7630
|
+
};
|
|
7631
|
+
type SpawnInventoryItemError = SpawnInventoryItemErrors[keyof SpawnInventoryItemErrors];
|
|
7632
|
+
type SpawnInventoryItemResponses = {
|
|
7633
|
+
/**
|
|
7634
|
+
* Returns an InventorySpawn object.
|
|
7635
|
+
*/
|
|
7636
|
+
200: InventorySpawn;
|
|
7637
|
+
};
|
|
7638
|
+
type SpawnInventoryItemResponse = SpawnInventoryItemResponses[keyof SpawnInventoryItemResponses];
|
|
7250
7639
|
type InviteUserData = {
|
|
7251
7640
|
/**
|
|
7252
7641
|
* Slot number of the Invite Message to use when inviting a user.
|
|
@@ -8191,6 +8580,31 @@ type UploadPrintResponses = {
|
|
|
8191
8580
|
200: Print;
|
|
8192
8581
|
};
|
|
8193
8582
|
type UploadPrintResponse = UploadPrintResponses[keyof UploadPrintResponses];
|
|
8583
|
+
type GetPropData = {
|
|
8584
|
+
body?: never;
|
|
8585
|
+
path: {
|
|
8586
|
+
/**
|
|
8587
|
+
* Prop ID.
|
|
8588
|
+
*/
|
|
8589
|
+
propId: string;
|
|
8590
|
+
};
|
|
8591
|
+
query?: never;
|
|
8592
|
+
url: '/props/{propId}';
|
|
8593
|
+
};
|
|
8594
|
+
type GetPropErrors = {
|
|
8595
|
+
/**
|
|
8596
|
+
* Error response due to missing auth cookie.
|
|
8597
|
+
*/
|
|
8598
|
+
401: _Error;
|
|
8599
|
+
};
|
|
8600
|
+
type GetPropError = GetPropErrors[keyof GetPropErrors];
|
|
8601
|
+
type GetPropResponses = {
|
|
8602
|
+
/**
|
|
8603
|
+
* Returns a single Prop object.
|
|
8604
|
+
*/
|
|
8605
|
+
200: Prop;
|
|
8606
|
+
};
|
|
8607
|
+
type GetPropResponse = GetPropResponses[keyof GetPropResponses];
|
|
8194
8608
|
type GetJamsData = {
|
|
8195
8609
|
body?: never;
|
|
8196
8610
|
path?: never;
|
|
@@ -8464,7 +8878,7 @@ type GetUserFeedbackData = {
|
|
|
8464
8878
|
};
|
|
8465
8879
|
query?: {
|
|
8466
8880
|
/**
|
|
8467
|
-
* Filter for users' previously submitted feedback, e.g., a groupId,
|
|
8881
|
+
* Filter for users' previously submitted feedback, e.g., a groupId, userId, avatarId, etc.
|
|
8468
8882
|
*/
|
|
8469
8883
|
contentId?: boolean;
|
|
8470
8884
|
/**
|
|
@@ -9622,6 +10036,11 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
9622
10036
|
* Create an avatar. It's possible to optionally specify a ID if you want a custom one. Attempting to create an Avatar with an already claimed ID will result in a DB error.
|
|
9623
10037
|
*/
|
|
9624
10038
|
createAvatar<ThrowOnError extends boolean = false>(options?: Options<CreateAvatarData, ThrowOnError>): _hey_api_client_fetch.RequestResult<CreateAvatarResponses, CreateAvatarErrors, ThrowOnError, "fields">;
|
|
10039
|
+
/**
|
|
10040
|
+
* Get Avatar Styles
|
|
10041
|
+
* List avatar styles.
|
|
10042
|
+
*/
|
|
10043
|
+
getAvatarStyles<ThrowOnError extends boolean = false>(options?: Options<GetAvatarStylesData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetAvatarStylesResponses, unknown, ThrowOnError, "fields">;
|
|
9625
10044
|
/**
|
|
9626
10045
|
* Delete Avatar
|
|
9627
10046
|
* Delete an avatar. Notice an avatar is never fully "deleted", only its ReleaseStatus is set to "hidden" and the linked Files are deleted. The AvatarID is permanently reserved.
|
|
@@ -9859,6 +10278,11 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
9859
10278
|
* Upload a gallery image
|
|
9860
10279
|
*/
|
|
9861
10280
|
uploadGalleryImage<ThrowOnError extends boolean = false>(options?: Options<UploadGalleryImageData, ThrowOnError>): _hey_api_client_fetch.RequestResult<UploadGalleryImageResponses, unknown, ThrowOnError, "fields">;
|
|
10281
|
+
/**
|
|
10282
|
+
* Get AdminAssetBundle
|
|
10283
|
+
* Returns an AdminAssetBundle
|
|
10284
|
+
*/
|
|
10285
|
+
getAdminAssetBundle<ThrowOnError extends boolean = false>(options: Options<GetAdminAssetBundleData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetAdminAssetBundleResponses, unknown, ThrowOnError, "fields">;
|
|
9862
10286
|
/**
|
|
9863
10287
|
* List Friends
|
|
9864
10288
|
* List information about friends.
|
|
@@ -10109,6 +10533,31 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
10109
10533
|
* Updates a group role by ID.
|
|
10110
10534
|
*/
|
|
10111
10535
|
updateGroupRole<ThrowOnError extends boolean = false>(options: Options<UpdateGroupRoleData, ThrowOnError>): _hey_api_client_fetch.RequestResult<UpdateGroupRoleResponses, UpdateGroupRoleErrors, ThrowOnError, "fields">;
|
|
10536
|
+
/**
|
|
10537
|
+
* Get Inventory
|
|
10538
|
+
* Returns an Inventory object.
|
|
10539
|
+
*/
|
|
10540
|
+
getInventory<ThrowOnError extends boolean = false>(options?: Options<GetInventoryData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetInventoryResponses, GetInventoryErrors, ThrowOnError, "fields">;
|
|
10541
|
+
/**
|
|
10542
|
+
* Get Own Inventory Item
|
|
10543
|
+
* Returns an InventoryItem object held by the currently logged in user.
|
|
10544
|
+
*/
|
|
10545
|
+
getOwnInventoryItem<ThrowOnError extends boolean = false>(options: Options<GetOwnInventoryItemData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetOwnInventoryItemResponses, GetOwnInventoryItemErrors, ThrowOnError, "fields">;
|
|
10546
|
+
/**
|
|
10547
|
+
* List Inventory Drops
|
|
10548
|
+
* Returns a list of InventoryDrop objects.
|
|
10549
|
+
*/
|
|
10550
|
+
getInventoryDrops<ThrowOnError extends boolean = false>(options?: Options<GetInventoryDropsData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetInventoryDropsResponses, GetInventoryDropsErrors, ThrowOnError, "fields">;
|
|
10551
|
+
/**
|
|
10552
|
+
* Get Inventory Template
|
|
10553
|
+
* Returns an InventoryTemplate object.
|
|
10554
|
+
*/
|
|
10555
|
+
getInventoryTemplate<ThrowOnError extends boolean = false>(options: Options<GetInventoryTemplateData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetInventoryTemplateResponses, GetInventoryTemplateErrors, ThrowOnError, "fields">;
|
|
10556
|
+
/**
|
|
10557
|
+
* Spawn Inventory Item
|
|
10558
|
+
* Returns an InventorySpawn object.
|
|
10559
|
+
*/
|
|
10560
|
+
spawnInventoryItem<ThrowOnError extends boolean = false>(options: Options<SpawnInventoryItemData, ThrowOnError>): _hey_api_client_fetch.RequestResult<SpawnInventoryItemResponses, SpawnInventoryItemErrors, ThrowOnError, "fields">;
|
|
10112
10561
|
/**
|
|
10113
10562
|
* Invite User
|
|
10114
10563
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
@@ -10316,6 +10765,11 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
10316
10765
|
* Uploads and creates a print.
|
|
10317
10766
|
*/
|
|
10318
10767
|
uploadPrint<ThrowOnError extends boolean = false>(options?: Options<UploadPrintData, ThrowOnError>): _hey_api_client_fetch.RequestResult<UploadPrintResponses, UploadPrintErrors, ThrowOnError, "fields">;
|
|
10768
|
+
/**
|
|
10769
|
+
* Get Prop
|
|
10770
|
+
* Returns a Prop object.
|
|
10771
|
+
*/
|
|
10772
|
+
getProp<ThrowOnError extends boolean = false>(options: Options<GetPropData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetPropResponses, GetPropErrors, ThrowOnError, "fields">;
|
|
10319
10773
|
/**
|
|
10320
10774
|
* Show jams list
|
|
10321
10775
|
* Lists World Jams or Avatar Jams, both currently running and ones that have ended.
|
|
@@ -10557,6 +11011,37 @@ type MaybePromise<T> = Promise<T> | T;
|
|
|
10557
11011
|
type LazyFunction<T> = () => MaybePromise<T>;
|
|
10558
11012
|
type Lazy<T> = LazyFunction<T> | MaybePromise<T>;
|
|
10559
11013
|
|
|
11014
|
+
interface EventData {
|
|
11015
|
+
"group-member-updated": {
|
|
11016
|
+
member: GroupLimitedMember;
|
|
11017
|
+
};
|
|
11018
|
+
"group-role-updated": {
|
|
11019
|
+
role: GroupRole;
|
|
11020
|
+
};
|
|
11021
|
+
}
|
|
11022
|
+
type Events = {
|
|
11023
|
+
[K in keyof EventData]: (data: EventData[K]) => void;
|
|
11024
|
+
} & {
|
|
11025
|
+
[K: string]: (data: unknown) => void;
|
|
11026
|
+
};
|
|
11027
|
+
|
|
11028
|
+
interface VRChatWebsocketOptions {
|
|
11029
|
+
baseUrl?: string;
|
|
11030
|
+
headers?: Headers;
|
|
11031
|
+
authToken?: string;
|
|
11032
|
+
}
|
|
11033
|
+
declare const VRChatWebsocket_base: new () => TypedEventEmitter<Events>;
|
|
11034
|
+
declare class VRChatWebsocket extends VRChatWebsocket_base {
|
|
11035
|
+
readonly options: VRChatWebsocketOptions;
|
|
11036
|
+
private readonly vrchat?;
|
|
11037
|
+
private url;
|
|
11038
|
+
private websocket?;
|
|
11039
|
+
constructor(options?: VRChatWebsocketOptions, vrchat?: VRChat | undefined);
|
|
11040
|
+
get connected(): boolean;
|
|
11041
|
+
close(): void;
|
|
11042
|
+
authenticate(authToken: string): Promise<void>;
|
|
11043
|
+
}
|
|
11044
|
+
|
|
10560
11045
|
interface VRChatOptions extends Omit<NonNullable<Parameters<typeof createConfig>[0]>, "body" | "bodySerializer" | "credentials" | "global" | "method" | "mode" | "parseAs" | "querySerializer"> {
|
|
10561
11046
|
/**
|
|
10562
11047
|
* When using the VRChat API, you must provide an application name, version, and contact information.
|
|
@@ -10593,12 +11078,19 @@ interface VRChatOptions extends Omit<NonNullable<Parameters<typeof createConfig>
|
|
|
10593
11078
|
*/
|
|
10594
11079
|
optimistic?: boolean;
|
|
10595
11080
|
};
|
|
11081
|
+
pipeline?: VRChatWebsocketOptions;
|
|
10596
11082
|
/**
|
|
10597
11083
|
* A [Keyv-compatible adapter](https://npm.im/keyv#official-storage-adapters) for caching & persistent sessions.
|
|
10598
11084
|
*/
|
|
10599
11085
|
keyv?: Keyv<unknown> | KeyvStoreAdapter | Map<unknown, unknown>;
|
|
11086
|
+
/**
|
|
11087
|
+
* If set to `true`, this client will log debug information to the console.
|
|
11088
|
+
* This is useful for debugging, but **will expose sensitive information**.
|
|
11089
|
+
* @default false
|
|
11090
|
+
*/
|
|
11091
|
+
verbose?: boolean;
|
|
10600
11092
|
}
|
|
10601
|
-
declare const TwoFactorMethods: readonly ["totp", "otp"];
|
|
11093
|
+
declare const TwoFactorMethods: readonly ["totp", "otp", "emailOtp"];
|
|
10602
11094
|
type TwoFactorMethods = (typeof TwoFactorMethods)[number];
|
|
10603
11095
|
interface LoginCredentials {
|
|
10604
11096
|
/**
|
|
@@ -10628,9 +11120,14 @@ type LoginOptions<ThrowOnError extends boolean> = LoginCredentials & Omit<Option
|
|
|
10628
11120
|
type CurrentUserResult<ThrowOnError extends boolean> = Awaited<RequestResult<GetCurrentUserResponses, GetCurrentUserErrors, ThrowOnError>>;
|
|
10629
11121
|
declare const baseUrl = "https://api.vrchat.cloud/api/1/";
|
|
10630
11122
|
declare class VRChat extends VRChatInternal {
|
|
10631
|
-
|
|
11123
|
+
readonly options: VRChatOptions;
|
|
10632
11124
|
private cache;
|
|
11125
|
+
private credentials?;
|
|
10633
11126
|
private authenticatePromise?;
|
|
11127
|
+
private lastCurrentUser?;
|
|
11128
|
+
private userAgent;
|
|
11129
|
+
readonly client: Client;
|
|
11130
|
+
readonly pipeline: VRChatWebsocket;
|
|
10634
11131
|
constructor(options: VRChatOptions);
|
|
10635
11132
|
setCredentials(credentials?: Lazy<LoginCredentials>): void;
|
|
10636
11133
|
private authenticate;
|
|
@@ -10643,8 +11140,12 @@ declare class VRChat extends VRChatInternal {
|
|
|
10643
11140
|
*/
|
|
10644
11141
|
login<ThrowOnError extends boolean = false>(options: LoginOptions<ThrowOnError>): Promise<CurrentUserResult<ThrowOnError>>;
|
|
10645
11142
|
private loginWith2FA;
|
|
11143
|
+
/**
|
|
11144
|
+
* Alias for `vrchat.pipeline.on(...)`.
|
|
11145
|
+
*/
|
|
11146
|
+
get on(): VRChatWebsocket["on"];
|
|
10646
11147
|
private getCookies;
|
|
10647
11148
|
private saveCookies;
|
|
10648
11149
|
}
|
|
10649
11150
|
|
|
10650
|
-
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 AgeVerificationStatus, type AgeVerified, type ApiConfig, type ApiConfigAnnouncement, type ApiConfigConstants, type ApiConfigDownloadUrlList, type ApiConfigEvents, type ApiHealth, type Avatar, type AvatarId, type AvatarId2, type Badge, type BadgeId, type BadgeId2, type Balance, type BanGroupMemberData, type BanGroupMemberError, type BanGroupMemberErrors, type BanGroupMemberRequest, type BanGroupMemberResponse, type BanGroupMemberResponses, type Branch, 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 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 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 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 FriendData, type FriendError, type FriendErrors, type FriendResponse, type FriendResponses, type FriendStatus, type Fuzzy, type GetActiveWorldsData, type GetActiveWorldsError, type GetActiveWorldsErrors, type GetActiveWorldsResponse, type GetActiveWorldsResponses, type GetAssignedPermissionsData, type GetAssignedPermissionsError, type GetAssignedPermissionsErrors, type GetAssignedPermissionsResponse, type GetAssignedPermissionsResponses, type GetAvatarData, type GetAvatarError, type GetAvatarErrors, type GetAvatarResponse, type GetAvatarResponses, type GetBalanceData, type GetBalanceError, type GetBalanceErrors, type GetBalanceResponse, type GetBalanceResponses, 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 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 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 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 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 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 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 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 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 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 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 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 UpdateFavoriteGroupData, type UpdateFavoriteGroupRequest, type UpdateFavoriteGroupResponses, 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 };
|
|
11151
|
+
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 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 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 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 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 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 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 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 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 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 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 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 UpdateFavoriteGroupData, type UpdateFavoriteGroupRequest, type UpdateFavoriteGroupResponses, 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 };
|