vrchat 2.20.2 → 2.20.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +566 -27
- package/dist/index.d.ts +566 -27
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -155,6 +155,11 @@ type PastDisplayName = {
|
|
|
155
155
|
* GroupID
|
|
156
156
|
*/
|
|
157
157
|
type GroupId = string;
|
|
158
|
+
/**
|
|
159
|
+
* LocationID
|
|
160
|
+
* Represents a unique location, consisting of a world identifier and an instance identifier, or "offline" if the user is not on your friends list.
|
|
161
|
+
*/
|
|
162
|
+
type LocationId = string;
|
|
158
163
|
/**
|
|
159
164
|
* CurrentUserPresence
|
|
160
165
|
*/
|
|
@@ -181,7 +186,7 @@ type CurrentUserPresence = {
|
|
|
181
186
|
*/
|
|
182
187
|
status?: string | null;
|
|
183
188
|
travelingToInstance?: string | null;
|
|
184
|
-
travelingToWorld?:
|
|
189
|
+
travelingToWorld?: LocationId;
|
|
185
190
|
userIcon?: string | null;
|
|
186
191
|
world?: WorldId;
|
|
187
192
|
};
|
|
@@ -643,7 +648,7 @@ type CalendarEvent = {
|
|
|
643
648
|
accessType: string;
|
|
644
649
|
category?: string;
|
|
645
650
|
closeInstanceAfterEndMinutes?: number;
|
|
646
|
-
createdAt
|
|
651
|
+
createdAt?: Date;
|
|
647
652
|
deletedAt?: Date | null;
|
|
648
653
|
description?: string;
|
|
649
654
|
endsAt?: Date;
|
|
@@ -910,6 +915,17 @@ type UserSubscription = {
|
|
|
910
915
|
isGift: boolean;
|
|
911
916
|
isBulkGift: boolean;
|
|
912
917
|
};
|
|
918
|
+
/**
|
|
919
|
+
* UserSubscriptionEligible
|
|
920
|
+
*/
|
|
921
|
+
type UserSubscriptionEligible = {
|
|
922
|
+
activeCancelledSubscription: boolean;
|
|
923
|
+
giftEligible: boolean;
|
|
924
|
+
nonExtendVendorWillLoseGiftTime: boolean;
|
|
925
|
+
purchaseEligible: boolean;
|
|
926
|
+
subscriptionEligible: boolean;
|
|
927
|
+
subscriptionOnAltAccount: boolean;
|
|
928
|
+
};
|
|
913
929
|
/**
|
|
914
930
|
* LicenseType
|
|
915
931
|
*/
|
|
@@ -1071,6 +1087,76 @@ type Balance = {
|
|
|
1071
1087
|
noTransactions?: boolean;
|
|
1072
1088
|
tiliaResponse?: boolean;
|
|
1073
1089
|
};
|
|
1090
|
+
/**
|
|
1091
|
+
* EconomyAccount
|
|
1092
|
+
*/
|
|
1093
|
+
type EconomyAccount = {
|
|
1094
|
+
accountActivatedOn: Date | null;
|
|
1095
|
+
accountId: string | null;
|
|
1096
|
+
blocked: boolean;
|
|
1097
|
+
canSpend: boolean;
|
|
1098
|
+
source: string;
|
|
1099
|
+
userId: UserId;
|
|
1100
|
+
};
|
|
1101
|
+
/**
|
|
1102
|
+
* StoreID
|
|
1103
|
+
*/
|
|
1104
|
+
type StoreId = string;
|
|
1105
|
+
/**
|
|
1106
|
+
* StoreType
|
|
1107
|
+
*/
|
|
1108
|
+
type StoreType = 'house' | 'world' | 'group';
|
|
1109
|
+
/**
|
|
1110
|
+
* StoreShelfID
|
|
1111
|
+
*/
|
|
1112
|
+
type StoreShelfId = string;
|
|
1113
|
+
/**
|
|
1114
|
+
* StoreShelf
|
|
1115
|
+
*/
|
|
1116
|
+
type StoreShelf = {
|
|
1117
|
+
id: StoreShelfId;
|
|
1118
|
+
listingIds: Array<ProductId>;
|
|
1119
|
+
listings?: Array<ProductListing>;
|
|
1120
|
+
shelfDescription: string;
|
|
1121
|
+
shelfLayout: string;
|
|
1122
|
+
shelfTitle: string;
|
|
1123
|
+
updatedAt: string;
|
|
1124
|
+
};
|
|
1125
|
+
/**
|
|
1126
|
+
* Store
|
|
1127
|
+
*/
|
|
1128
|
+
type Store = {
|
|
1129
|
+
description: string;
|
|
1130
|
+
displayName: string;
|
|
1131
|
+
id: StoreId;
|
|
1132
|
+
sellerDisplayName: string;
|
|
1133
|
+
sellerId: UserId;
|
|
1134
|
+
storeId: StoreId;
|
|
1135
|
+
storeType: StoreType;
|
|
1136
|
+
tags: Array<Tag>;
|
|
1137
|
+
/**
|
|
1138
|
+
* Only for store type world and group
|
|
1139
|
+
*/
|
|
1140
|
+
listingIds?: Array<ProductId>;
|
|
1141
|
+
/**
|
|
1142
|
+
* Only for store type world and group
|
|
1143
|
+
*/
|
|
1144
|
+
listings?: Array<ProductListing>;
|
|
1145
|
+
worldId?: WorldId;
|
|
1146
|
+
groupId?: GroupId;
|
|
1147
|
+
/**
|
|
1148
|
+
* Only for store type house
|
|
1149
|
+
*/
|
|
1150
|
+
shelfIds?: Array<StoreShelfId>;
|
|
1151
|
+
/**
|
|
1152
|
+
* Only for store type house
|
|
1153
|
+
*/
|
|
1154
|
+
shelves?: Array<StoreShelf>;
|
|
1155
|
+
};
|
|
1156
|
+
/**
|
|
1157
|
+
* StoreView
|
|
1158
|
+
*/
|
|
1159
|
+
type StoreView = 'all' | 'publicPreview' | 'public' | 'preview' | 'draft';
|
|
1074
1160
|
/**
|
|
1075
1161
|
* FavoriteID
|
|
1076
1162
|
*/
|
|
@@ -1396,15 +1482,15 @@ type LimitedUserFriend = {
|
|
|
1396
1482
|
last_activity: Date | null;
|
|
1397
1483
|
last_mobile: Date | null;
|
|
1398
1484
|
platform: string;
|
|
1399
|
-
profilePicOverride
|
|
1400
|
-
profilePicOverrideThumbnail
|
|
1485
|
+
profilePicOverride?: string;
|
|
1486
|
+
profilePicOverrideThumbnail?: string;
|
|
1401
1487
|
status: UserStatus;
|
|
1402
1488
|
statusDescription: string;
|
|
1403
1489
|
/**
|
|
1404
1490
|
* <- Always empty.
|
|
1405
1491
|
*/
|
|
1406
1492
|
tags: Array<Tag>;
|
|
1407
|
-
userIcon
|
|
1493
|
+
userIcon?: string;
|
|
1408
1494
|
};
|
|
1409
1495
|
/**
|
|
1410
1496
|
* NotificationType
|
|
@@ -1551,7 +1637,7 @@ type GroupMemberId = string;
|
|
|
1551
1637
|
/**
|
|
1552
1638
|
* GroupPermissions
|
|
1553
1639
|
*/
|
|
1554
|
-
type GroupPermissions = '*' | 'group-announcement-manage' | 'group-audit-view' | 'group-bans-manage' | 'group-data-manage' | 'group-default-role-manage' | 'group-galleries-manage' | 'group-instance-age-gated-create' | 'group-instance-join' | 'group-instance-manage' | 'group-instance-moderate' | 'group-instance-open-create' | 'group-instance-plus-create' | 'group-instance-plus-portal' | 'group-instance-plus-portal-unlocked' | 'group-instance-public-create' | 'group-instance-queue-priority' | 'group-instance-restricted-create' | 'group-invites-manage' | 'group-members-manage' | 'group-members-remove' | 'group-members-viewall' | 'group-roles-assign' | 'group-roles-manage' | 'group-calendar-manage';
|
|
1640
|
+
type GroupPermissions = '*' | 'group-announcement-manage' | 'group-audit-view' | 'group-bans-manage' | 'group-data-manage' | 'group-default-role-manage' | 'group-galleries-manage' | 'group-instance-age-gated-create' | 'group-instance-join' | 'group-instance-manage' | 'group-instance-moderate' | 'group-instance-open-create' | 'group-instance-plus-create' | 'group-instance-plus-portal' | 'group-instance-plus-portal-unlocked' | 'group-instance-public-create' | 'group-instance-queue-priority' | 'group-instance-restricted-create' | 'group-invites-manage' | 'group-members-manage' | 'group-members-remove' | 'group-members-viewall' | 'group-roles-assign' | 'group-roles-manage' | 'group-calendar-manage' | 'group-instance-calendar-link';
|
|
1555
1641
|
/**
|
|
1556
1642
|
* GroupMyMember
|
|
1557
1643
|
*/
|
|
@@ -1917,10 +2003,6 @@ type InstanceContentSettings = {
|
|
|
1917
2003
|
stickers?: boolean;
|
|
1918
2004
|
props?: boolean;
|
|
1919
2005
|
};
|
|
1920
|
-
/**
|
|
1921
|
-
* StoreID
|
|
1922
|
-
*/
|
|
1923
|
-
type StoreId = string;
|
|
1924
2006
|
/**
|
|
1925
2007
|
* UdonProductId
|
|
1926
2008
|
* A unique ID of a Udon Product
|
|
@@ -1989,8 +2071,8 @@ type World = {
|
|
|
1989
2071
|
* GroupInstance
|
|
1990
2072
|
*/
|
|
1991
2073
|
type GroupInstance = {
|
|
1992
|
-
instanceId:
|
|
1993
|
-
location:
|
|
2074
|
+
instanceId: InstanceId;
|
|
2075
|
+
location: LocationId;
|
|
1994
2076
|
world: World;
|
|
1995
2077
|
memberCount: number;
|
|
1996
2078
|
};
|
|
@@ -2165,6 +2247,10 @@ type UpdateGroupRoleRequest = {
|
|
|
2165
2247
|
* InventoryItemType
|
|
2166
2248
|
*/
|
|
2167
2249
|
type InventoryItemType = 'bundle' | 'prop' | 'emoji' | 'sticker';
|
|
2250
|
+
/**
|
|
2251
|
+
* InventoryFlag
|
|
2252
|
+
*/
|
|
2253
|
+
type InventoryFlag = 'instantiatable' | 'archivable' | 'consumable' | 'trashable' | 'cloneable' | 'ugc';
|
|
2168
2254
|
/**
|
|
2169
2255
|
* InventoryItemID
|
|
2170
2256
|
*/
|
|
@@ -2192,7 +2278,6 @@ type InventoryMetadata = {
|
|
|
2192
2278
|
imageUrl?: string;
|
|
2193
2279
|
maskTag?: string;
|
|
2194
2280
|
propId?: PropId;
|
|
2195
|
-
[key: string]: unknown | Array<InventoryTemplateId> | boolean | string | PropId | undefined;
|
|
2196
2281
|
};
|
|
2197
2282
|
/**
|
|
2198
2283
|
* InventoryItem
|
|
@@ -2225,6 +2310,12 @@ type Inventory = {
|
|
|
2225
2310
|
data: Array<InventoryItem>;
|
|
2226
2311
|
totalCount: number;
|
|
2227
2312
|
};
|
|
2313
|
+
/**
|
|
2314
|
+
* UpdateInventoryItemRequest
|
|
2315
|
+
*/
|
|
2316
|
+
type UpdateInventoryItemRequest = {
|
|
2317
|
+
isArchived?: boolean;
|
|
2318
|
+
};
|
|
2228
2319
|
/**
|
|
2229
2320
|
* InventoryDropID
|
|
2230
2321
|
*/
|
|
@@ -2282,6 +2373,23 @@ type InventorySpawn = {
|
|
|
2282
2373
|
token: string;
|
|
2283
2374
|
version: number;
|
|
2284
2375
|
};
|
|
2376
|
+
/**
|
|
2377
|
+
* ShareInventoryItemDirectRequest
|
|
2378
|
+
*/
|
|
2379
|
+
type ShareInventoryItemDirectRequest = {
|
|
2380
|
+
itemId: InventoryItemId;
|
|
2381
|
+
users: Array<UserId>;
|
|
2382
|
+
};
|
|
2383
|
+
/**
|
|
2384
|
+
* OkStatus
|
|
2385
|
+
* A status response consisting of solely a string description of whether the result of an operation was ok.
|
|
2386
|
+
*/
|
|
2387
|
+
type OkStatus = {
|
|
2388
|
+
/**
|
|
2389
|
+
* The actual status itself
|
|
2390
|
+
*/
|
|
2391
|
+
ok: string;
|
|
2392
|
+
};
|
|
2285
2393
|
/**
|
|
2286
2394
|
* InviteRequest
|
|
2287
2395
|
*/
|
|
@@ -2440,14 +2548,14 @@ type LimitedUserInstance = {
|
|
|
2440
2548
|
last_activity: Date | null;
|
|
2441
2549
|
last_mobile: Date | null;
|
|
2442
2550
|
platform?: string;
|
|
2443
|
-
profilePicOverride
|
|
2444
|
-
profilePicOverrideThumbnail
|
|
2551
|
+
profilePicOverride?: string;
|
|
2552
|
+
profilePicOverrideThumbnail?: string;
|
|
2445
2553
|
pronouns: string;
|
|
2446
2554
|
state: UserState;
|
|
2447
2555
|
status: UserStatus;
|
|
2448
2556
|
statusDescription: string;
|
|
2449
2557
|
tags: Array<Tag>;
|
|
2450
|
-
userIcon
|
|
2558
|
+
userIcon?: string;
|
|
2451
2559
|
};
|
|
2452
2560
|
/**
|
|
2453
2561
|
* Instance
|
|
@@ -2470,9 +2578,9 @@ type Instance = {
|
|
|
2470
2578
|
full: boolean;
|
|
2471
2579
|
gameServerVersion?: number;
|
|
2472
2580
|
id: InstanceId;
|
|
2473
|
-
instanceId:
|
|
2581
|
+
instanceId: InstanceId;
|
|
2474
2582
|
instancePersistenceEnabled: string | null;
|
|
2475
|
-
location:
|
|
2583
|
+
location: LocationId;
|
|
2476
2584
|
n_users: number;
|
|
2477
2585
|
name: string;
|
|
2478
2586
|
ownerId?: InstanceOwnerId;
|
|
@@ -2659,7 +2767,7 @@ type LimitedUserSearch = {
|
|
|
2659
2767
|
id: UserId;
|
|
2660
2768
|
isFriend: boolean;
|
|
2661
2769
|
last_platform: Platform;
|
|
2662
|
-
profilePicOverride
|
|
2770
|
+
profilePicOverride?: string;
|
|
2663
2771
|
pronouns?: string;
|
|
2664
2772
|
status: UserStatus;
|
|
2665
2773
|
statusDescription: string;
|
|
@@ -2667,7 +2775,7 @@ type LimitedUserSearch = {
|
|
|
2667
2775
|
* <- Always empty.
|
|
2668
2776
|
*/
|
|
2669
2777
|
tags: Array<Tag>;
|
|
2670
|
-
userIcon
|
|
2778
|
+
userIcon?: string;
|
|
2671
2779
|
};
|
|
2672
2780
|
/**
|
|
2673
2781
|
* User
|
|
@@ -2709,7 +2817,7 @@ type User = {
|
|
|
2709
2817
|
last_login: string;
|
|
2710
2818
|
last_mobile?: string | null;
|
|
2711
2819
|
last_platform: Platform;
|
|
2712
|
-
location?:
|
|
2820
|
+
location?: LocationId;
|
|
2713
2821
|
note?: string;
|
|
2714
2822
|
platform?: string;
|
|
2715
2823
|
profilePicOverride: string;
|
|
@@ -3908,7 +4016,7 @@ type Permission = {
|
|
|
3908
4016
|
*/
|
|
3909
4017
|
type NotificationDetailInvite = {
|
|
3910
4018
|
inviteMessage?: string;
|
|
3911
|
-
worldId:
|
|
4019
|
+
worldId: LocationId;
|
|
3912
4020
|
worldName: string;
|
|
3913
4021
|
};
|
|
3914
4022
|
/**
|
|
@@ -4044,6 +4152,14 @@ type UserIdAdmin = string;
|
|
|
4044
4152
|
* The month to search in.
|
|
4045
4153
|
*/
|
|
4046
4154
|
type MonthDate = Date;
|
|
4155
|
+
/**
|
|
4156
|
+
* Search term for calendar events.
|
|
4157
|
+
*/
|
|
4158
|
+
type CalendarSearchTerm = string;
|
|
4159
|
+
/**
|
|
4160
|
+
* The offset from UTC in hours of the client or authenticated user.
|
|
4161
|
+
*/
|
|
4162
|
+
type UtcOffset = number;
|
|
4047
4163
|
/**
|
|
4048
4164
|
* Must be a valid group ID.
|
|
4049
4165
|
*/
|
|
@@ -4056,6 +4172,10 @@ type CalendarId2 = string;
|
|
|
4056
4172
|
* Must be a valid transaction ID.
|
|
4057
4173
|
*/
|
|
4058
4174
|
type TransactionId2 = string;
|
|
4175
|
+
/**
|
|
4176
|
+
* The Steam ID of the user.
|
|
4177
|
+
*/
|
|
4178
|
+
type SteamId = string;
|
|
4059
4179
|
/**
|
|
4060
4180
|
* Must be a valid license group ID.
|
|
4061
4181
|
*/
|
|
@@ -4076,6 +4196,16 @@ type GroupIdFilter = string;
|
|
|
4076
4196
|
* Filter for users' listings and inventory bundles.
|
|
4077
4197
|
*/
|
|
4078
4198
|
type Active = boolean;
|
|
4199
|
+
type StoreId2 = StoreId;
|
|
4200
|
+
/**
|
|
4201
|
+
* Listings fields will be populated.
|
|
4202
|
+
*/
|
|
4203
|
+
type HydrateListings = boolean;
|
|
4204
|
+
/**
|
|
4205
|
+
* Products fields will be populated.
|
|
4206
|
+
*/
|
|
4207
|
+
type HydrateProducts = boolean;
|
|
4208
|
+
type StoreView2 = StoreView;
|
|
4079
4209
|
/**
|
|
4080
4210
|
* Must be a valid favorite ID.
|
|
4081
4211
|
*/
|
|
@@ -4155,11 +4285,31 @@ type NotificationId2 = string;
|
|
|
4155
4285
|
/**
|
|
4156
4286
|
* Sort order for inventory retrieval.
|
|
4157
4287
|
*/
|
|
4158
|
-
type InventorySortOrder = 'newest' | 'oldest';
|
|
4288
|
+
type InventorySortOrder = 'newest' | 'newest_created' | 'oldest' | 'oldest_created';
|
|
4289
|
+
/**
|
|
4290
|
+
* Filter tags for inventory retrieval (comma-separated).
|
|
4291
|
+
*/
|
|
4292
|
+
type InventoryItemTags = Tag;
|
|
4159
4293
|
/**
|
|
4160
4294
|
* Filter for inventory retrieval.
|
|
4161
4295
|
*/
|
|
4162
|
-
type
|
|
4296
|
+
type InventoryItemTypes = InventoryItemType;
|
|
4297
|
+
/**
|
|
4298
|
+
* Filter flags for inventory retrieval (comma-separated).
|
|
4299
|
+
*/
|
|
4300
|
+
type InventoryItemFlags = InventoryFlag;
|
|
4301
|
+
/**
|
|
4302
|
+
* Filter out types for inventory retrieval (comma-separated).
|
|
4303
|
+
*/
|
|
4304
|
+
type InventoryItemNotTypes = InventoryItemType;
|
|
4305
|
+
/**
|
|
4306
|
+
* Filter out flags for inventory retrieval (comma-separated).
|
|
4307
|
+
*/
|
|
4308
|
+
type InventoryItemNotFlags = InventoryFlag;
|
|
4309
|
+
/**
|
|
4310
|
+
* Filter archived status for inventory retrieval.
|
|
4311
|
+
*/
|
|
4312
|
+
type InventoryItemArchived = boolean;
|
|
4163
4313
|
/**
|
|
4164
4314
|
* Must be a valid inventory item ID.
|
|
4165
4315
|
*/
|
|
@@ -4172,6 +4322,14 @@ type InventoryTemplateId2 = string;
|
|
|
4172
4322
|
* Id for inventory item spawning.
|
|
4173
4323
|
*/
|
|
4174
4324
|
type InventorySpawnItemId = InventoryItemId;
|
|
4325
|
+
/**
|
|
4326
|
+
* Id for inventory item sharing.
|
|
4327
|
+
*/
|
|
4328
|
+
type InventoryPedestalItemId = InventoryItemId;
|
|
4329
|
+
/**
|
|
4330
|
+
* The duration before the sharing pedestal despawns.
|
|
4331
|
+
*/
|
|
4332
|
+
type InventoryPedestalDuration = number;
|
|
4175
4333
|
/**
|
|
4176
4334
|
* Must be a valid world ID.
|
|
4177
4335
|
*/
|
|
@@ -5155,6 +5313,43 @@ type GetFollowedCalendarEventsResponses = {
|
|
|
5155
5313
|
200: PaginatedCalendarEventList;
|
|
5156
5314
|
};
|
|
5157
5315
|
type GetFollowedCalendarEventsResponse = GetFollowedCalendarEventsResponses[keyof GetFollowedCalendarEventsResponses];
|
|
5316
|
+
type SearchCalendarEventsData = {
|
|
5317
|
+
body?: never;
|
|
5318
|
+
path?: never;
|
|
5319
|
+
query: {
|
|
5320
|
+
/**
|
|
5321
|
+
* Search term for calendar events.
|
|
5322
|
+
*/
|
|
5323
|
+
searchTerm: string;
|
|
5324
|
+
/**
|
|
5325
|
+
* The offset from UTC in hours of the client or authenticated user.
|
|
5326
|
+
*/
|
|
5327
|
+
utcOffset?: number;
|
|
5328
|
+
/**
|
|
5329
|
+
* The number of objects to return.
|
|
5330
|
+
*/
|
|
5331
|
+
n?: number;
|
|
5332
|
+
/**
|
|
5333
|
+
* A zero-based offset from the default object sorting from where search results start.
|
|
5334
|
+
*/
|
|
5335
|
+
offset?: number;
|
|
5336
|
+
};
|
|
5337
|
+
url: '/calendar/search';
|
|
5338
|
+
};
|
|
5339
|
+
type SearchCalendarEventsErrors = {
|
|
5340
|
+
/**
|
|
5341
|
+
* Error response due to missing auth cookie.
|
|
5342
|
+
*/
|
|
5343
|
+
401: _Error;
|
|
5344
|
+
};
|
|
5345
|
+
type SearchCalendarEventsError = SearchCalendarEventsErrors[keyof SearchCalendarEventsErrors];
|
|
5346
|
+
type SearchCalendarEventsResponses = {
|
|
5347
|
+
/**
|
|
5348
|
+
* Returns a list of CalendarEvent objects.
|
|
5349
|
+
*/
|
|
5350
|
+
200: PaginatedCalendarEventList;
|
|
5351
|
+
};
|
|
5352
|
+
type SearchCalendarEventsResponse = SearchCalendarEventsResponses[keyof SearchCalendarEventsResponses];
|
|
5158
5353
|
type GetGroupCalendarEventsData = {
|
|
5159
5354
|
body?: never;
|
|
5160
5355
|
path: {
|
|
@@ -5432,6 +5627,36 @@ type GetCurrentSubscriptionsResponses = {
|
|
|
5432
5627
|
200: Array<UserSubscription>;
|
|
5433
5628
|
};
|
|
5434
5629
|
type GetCurrentSubscriptionsResponse = GetCurrentSubscriptionsResponses[keyof GetCurrentSubscriptionsResponses];
|
|
5630
|
+
type GetUserSubscriptionEligibleData = {
|
|
5631
|
+
body?: never;
|
|
5632
|
+
path: {
|
|
5633
|
+
/**
|
|
5634
|
+
* Must be a valid user ID.
|
|
5635
|
+
*/
|
|
5636
|
+
userId: string;
|
|
5637
|
+
};
|
|
5638
|
+
query?: {
|
|
5639
|
+
/**
|
|
5640
|
+
* The Steam ID of the user.
|
|
5641
|
+
*/
|
|
5642
|
+
steamId?: string;
|
|
5643
|
+
};
|
|
5644
|
+
url: '/users/{userId}/subscription/eligible';
|
|
5645
|
+
};
|
|
5646
|
+
type GetUserSubscriptionEligibleErrors = {
|
|
5647
|
+
/**
|
|
5648
|
+
* Error response due to missing auth cookie.
|
|
5649
|
+
*/
|
|
5650
|
+
401: _Error;
|
|
5651
|
+
};
|
|
5652
|
+
type GetUserSubscriptionEligibleError = GetUserSubscriptionEligibleErrors[keyof GetUserSubscriptionEligibleErrors];
|
|
5653
|
+
type GetUserSubscriptionEligibleResponses = {
|
|
5654
|
+
/**
|
|
5655
|
+
* Returns a single UserSubscriptionEligible object.
|
|
5656
|
+
*/
|
|
5657
|
+
200: UserSubscriptionEligible;
|
|
5658
|
+
};
|
|
5659
|
+
type GetUserSubscriptionEligibleResponse = GetUserSubscriptionEligibleResponses[keyof GetUserSubscriptionEligibleResponses];
|
|
5435
5660
|
type GetSubscriptionsData = {
|
|
5436
5661
|
body?: never;
|
|
5437
5662
|
path?: never;
|
|
@@ -5643,6 +5868,133 @@ type GetBalanceResponses = {
|
|
|
5643
5868
|
200: Balance;
|
|
5644
5869
|
};
|
|
5645
5870
|
type GetBalanceResponse = GetBalanceResponses[keyof GetBalanceResponses];
|
|
5871
|
+
type GetBalanceEarningsData = {
|
|
5872
|
+
body?: never;
|
|
5873
|
+
path: {
|
|
5874
|
+
/**
|
|
5875
|
+
* Must be a valid user ID.
|
|
5876
|
+
*/
|
|
5877
|
+
userId: string;
|
|
5878
|
+
};
|
|
5879
|
+
query?: never;
|
|
5880
|
+
url: '/user/{userId}/balance/earnings';
|
|
5881
|
+
};
|
|
5882
|
+
type GetBalanceEarningsErrors = {
|
|
5883
|
+
/**
|
|
5884
|
+
* Error response due to missing auth cookie.
|
|
5885
|
+
*/
|
|
5886
|
+
401: _Error;
|
|
5887
|
+
};
|
|
5888
|
+
type GetBalanceEarningsError = GetBalanceEarningsErrors[keyof GetBalanceEarningsErrors];
|
|
5889
|
+
type GetBalanceEarningsResponses = {
|
|
5890
|
+
/**
|
|
5891
|
+
* Returns a single Balance object.
|
|
5892
|
+
*/
|
|
5893
|
+
200: Balance;
|
|
5894
|
+
};
|
|
5895
|
+
type GetBalanceEarningsResponse = GetBalanceEarningsResponses[keyof GetBalanceEarningsResponses];
|
|
5896
|
+
type GetEconomyAccountData = {
|
|
5897
|
+
body?: never;
|
|
5898
|
+
path: {
|
|
5899
|
+
/**
|
|
5900
|
+
* Must be a valid user ID.
|
|
5901
|
+
*/
|
|
5902
|
+
userId: string;
|
|
5903
|
+
};
|
|
5904
|
+
query?: never;
|
|
5905
|
+
url: '/user/{userId}/economy/account';
|
|
5906
|
+
};
|
|
5907
|
+
type GetEconomyAccountErrors = {
|
|
5908
|
+
/**
|
|
5909
|
+
* Error response due to missing auth cookie.
|
|
5910
|
+
*/
|
|
5911
|
+
401: _Error;
|
|
5912
|
+
};
|
|
5913
|
+
type GetEconomyAccountError = GetEconomyAccountErrors[keyof GetEconomyAccountErrors];
|
|
5914
|
+
type GetEconomyAccountResponses = {
|
|
5915
|
+
/**
|
|
5916
|
+
* Returns a single EconomyAccount object.
|
|
5917
|
+
*/
|
|
5918
|
+
200: EconomyAccount;
|
|
5919
|
+
};
|
|
5920
|
+
type GetEconomyAccountResponse = GetEconomyAccountResponses[keyof GetEconomyAccountResponses];
|
|
5921
|
+
type GetActiveLicensesData = {
|
|
5922
|
+
body?: never;
|
|
5923
|
+
path?: never;
|
|
5924
|
+
query?: never;
|
|
5925
|
+
url: '/economy/licenses/active';
|
|
5926
|
+
};
|
|
5927
|
+
type GetActiveLicensesErrors = {
|
|
5928
|
+
/**
|
|
5929
|
+
* Error response due to missing auth cookie.
|
|
5930
|
+
*/
|
|
5931
|
+
401: _Error;
|
|
5932
|
+
};
|
|
5933
|
+
type GetActiveLicensesError = GetActiveLicensesErrors[keyof GetActiveLicensesErrors];
|
|
5934
|
+
type GetActiveLicensesResponses = {
|
|
5935
|
+
/**
|
|
5936
|
+
* Returns a list of License objects.
|
|
5937
|
+
*/
|
|
5938
|
+
200: Array<License>;
|
|
5939
|
+
};
|
|
5940
|
+
type GetActiveLicensesResponse = GetActiveLicensesResponses[keyof GetActiveLicensesResponses];
|
|
5941
|
+
type GetStoreData = {
|
|
5942
|
+
body?: never;
|
|
5943
|
+
path?: never;
|
|
5944
|
+
query: {
|
|
5945
|
+
storeId: StoreId;
|
|
5946
|
+
/**
|
|
5947
|
+
* Listings fields will be populated.
|
|
5948
|
+
*/
|
|
5949
|
+
hydrateListings?: boolean;
|
|
5950
|
+
/**
|
|
5951
|
+
* Products fields will be populated.
|
|
5952
|
+
*/
|
|
5953
|
+
hydrateProducts?: boolean;
|
|
5954
|
+
};
|
|
5955
|
+
url: '/economy/store';
|
|
5956
|
+
};
|
|
5957
|
+
type GetStoreErrors = {
|
|
5958
|
+
/**
|
|
5959
|
+
* Error response due to missing auth cookie.
|
|
5960
|
+
*/
|
|
5961
|
+
401: _Error;
|
|
5962
|
+
};
|
|
5963
|
+
type GetStoreError = GetStoreErrors[keyof GetStoreErrors];
|
|
5964
|
+
type GetStoreResponses = {
|
|
5965
|
+
/**
|
|
5966
|
+
* Returns a single Store object.
|
|
5967
|
+
*/
|
|
5968
|
+
200: Store;
|
|
5969
|
+
};
|
|
5970
|
+
type GetStoreResponse = GetStoreResponses[keyof GetStoreResponses];
|
|
5971
|
+
type GetStoreShelvesData = {
|
|
5972
|
+
body?: never;
|
|
5973
|
+
path?: never;
|
|
5974
|
+
query: {
|
|
5975
|
+
storeId: StoreId;
|
|
5976
|
+
/**
|
|
5977
|
+
* Listings fields will be populated.
|
|
5978
|
+
*/
|
|
5979
|
+
hydrateListings?: boolean;
|
|
5980
|
+
fetch?: StoreView;
|
|
5981
|
+
};
|
|
5982
|
+
url: '/economy/store/shelves';
|
|
5983
|
+
};
|
|
5984
|
+
type GetStoreShelvesErrors = {
|
|
5985
|
+
/**
|
|
5986
|
+
* Error response due to missing auth cookie.
|
|
5987
|
+
*/
|
|
5988
|
+
401: _Error;
|
|
5989
|
+
};
|
|
5990
|
+
type GetStoreShelvesError = GetStoreShelvesErrors[keyof GetStoreShelvesErrors];
|
|
5991
|
+
type GetStoreShelvesResponses = {
|
|
5992
|
+
/**
|
|
5993
|
+
* Returns a list of StoreShelf objects.
|
|
5994
|
+
*/
|
|
5995
|
+
200: Array<StoreShelf>;
|
|
5996
|
+
};
|
|
5997
|
+
type GetStoreShelvesResponse = GetStoreShelvesResponses[keyof GetStoreShelvesResponses];
|
|
5646
5998
|
type GetFavoritesData = {
|
|
5647
5999
|
body?: never;
|
|
5648
6000
|
path?: never;
|
|
@@ -7986,11 +8338,31 @@ type GetInventoryData = {
|
|
|
7986
8338
|
/**
|
|
7987
8339
|
* Sort order for inventory retrieval.
|
|
7988
8340
|
*/
|
|
7989
|
-
|
|
8341
|
+
order?: 'newest' | 'newest_created' | 'oldest' | 'oldest_created';
|
|
8342
|
+
/**
|
|
8343
|
+
* Filter tags for inventory retrieval (comma-separated).
|
|
8344
|
+
*/
|
|
8345
|
+
tags?: Tag;
|
|
7990
8346
|
/**
|
|
7991
8347
|
* Filter for inventory retrieval.
|
|
7992
8348
|
*/
|
|
7993
|
-
|
|
8349
|
+
types?: InventoryItemType;
|
|
8350
|
+
/**
|
|
8351
|
+
* Filter flags for inventory retrieval (comma-separated).
|
|
8352
|
+
*/
|
|
8353
|
+
flags?: InventoryFlag;
|
|
8354
|
+
/**
|
|
8355
|
+
* Filter out types for inventory retrieval (comma-separated).
|
|
8356
|
+
*/
|
|
8357
|
+
notTypes?: InventoryItemType;
|
|
8358
|
+
/**
|
|
8359
|
+
* Filter out flags for inventory retrieval (comma-separated).
|
|
8360
|
+
*/
|
|
8361
|
+
notFlags?: InventoryFlag;
|
|
8362
|
+
/**
|
|
8363
|
+
* Filter archived status for inventory retrieval.
|
|
8364
|
+
*/
|
|
8365
|
+
archived?: boolean;
|
|
7994
8366
|
};
|
|
7995
8367
|
url: '/inventory';
|
|
7996
8368
|
};
|
|
@@ -8033,6 +8405,31 @@ type GetOwnInventoryItemResponses = {
|
|
|
8033
8405
|
200: InventoryItem;
|
|
8034
8406
|
};
|
|
8035
8407
|
type GetOwnInventoryItemResponse = GetOwnInventoryItemResponses[keyof GetOwnInventoryItemResponses];
|
|
8408
|
+
type UpdateOwnInventoryItemData = {
|
|
8409
|
+
body?: UpdateInventoryItemRequest;
|
|
8410
|
+
path: {
|
|
8411
|
+
/**
|
|
8412
|
+
* Must be a valid inventory item ID.
|
|
8413
|
+
*/
|
|
8414
|
+
inventoryItemId: string;
|
|
8415
|
+
};
|
|
8416
|
+
query?: never;
|
|
8417
|
+
url: '/inventory/{inventoryItemId}';
|
|
8418
|
+
};
|
|
8419
|
+
type UpdateOwnInventoryItemErrors = {
|
|
8420
|
+
/**
|
|
8421
|
+
* Error response due to missing auth cookie.
|
|
8422
|
+
*/
|
|
8423
|
+
401: _Error;
|
|
8424
|
+
};
|
|
8425
|
+
type UpdateOwnInventoryItemError = UpdateOwnInventoryItemErrors[keyof UpdateOwnInventoryItemErrors];
|
|
8426
|
+
type UpdateOwnInventoryItemResponses = {
|
|
8427
|
+
/**
|
|
8428
|
+
* Returns an InventoryItem object.
|
|
8429
|
+
*/
|
|
8430
|
+
200: InventoryItem;
|
|
8431
|
+
};
|
|
8432
|
+
type UpdateOwnInventoryItemResponse = UpdateOwnInventoryItemResponses[keyof UpdateOwnInventoryItemResponses];
|
|
8036
8433
|
type GetInventoryDropsData = {
|
|
8037
8434
|
body?: never;
|
|
8038
8435
|
path?: never;
|
|
@@ -8108,6 +8505,64 @@ type SpawnInventoryItemResponses = {
|
|
|
8108
8505
|
200: InventorySpawn;
|
|
8109
8506
|
};
|
|
8110
8507
|
type SpawnInventoryItemResponse = SpawnInventoryItemResponses[keyof SpawnInventoryItemResponses];
|
|
8508
|
+
type ShareInventoryItemPedestalData = {
|
|
8509
|
+
body?: never;
|
|
8510
|
+
path?: never;
|
|
8511
|
+
query: {
|
|
8512
|
+
/**
|
|
8513
|
+
* Id for inventory item sharing.
|
|
8514
|
+
*/
|
|
8515
|
+
itemId: InventoryItemId;
|
|
8516
|
+
/**
|
|
8517
|
+
* The duration before the sharing pedestal despawns.
|
|
8518
|
+
*/
|
|
8519
|
+
duration: number;
|
|
8520
|
+
};
|
|
8521
|
+
url: '/inventory/cloning/pedestal';
|
|
8522
|
+
};
|
|
8523
|
+
type ShareInventoryItemPedestalErrors = {
|
|
8524
|
+
/**
|
|
8525
|
+
* Error response due to missing auth cookie.
|
|
8526
|
+
*/
|
|
8527
|
+
401: _Error;
|
|
8528
|
+
};
|
|
8529
|
+
type ShareInventoryItemPedestalError = ShareInventoryItemPedestalErrors[keyof ShareInventoryItemPedestalErrors];
|
|
8530
|
+
type ShareInventoryItemPedestalResponses = {
|
|
8531
|
+
/**
|
|
8532
|
+
* Returns an InventorySpawn object.
|
|
8533
|
+
*/
|
|
8534
|
+
200: InventorySpawn;
|
|
8535
|
+
};
|
|
8536
|
+
type ShareInventoryItemPedestalResponse = ShareInventoryItemPedestalResponses[keyof ShareInventoryItemPedestalResponses];
|
|
8537
|
+
type ShareInventoryItemDirectData = {
|
|
8538
|
+
body: ShareInventoryItemDirectRequest;
|
|
8539
|
+
path?: never;
|
|
8540
|
+
query: {
|
|
8541
|
+
/**
|
|
8542
|
+
* Id for inventory item sharing.
|
|
8543
|
+
*/
|
|
8544
|
+
itemId: InventoryItemId;
|
|
8545
|
+
/**
|
|
8546
|
+
* The duration before the sharing pedestal despawns.
|
|
8547
|
+
*/
|
|
8548
|
+
duration: number;
|
|
8549
|
+
};
|
|
8550
|
+
url: '/inventory/cloning/direct';
|
|
8551
|
+
};
|
|
8552
|
+
type ShareInventoryItemDirectErrors = {
|
|
8553
|
+
/**
|
|
8554
|
+
* Error response due to missing auth cookie.
|
|
8555
|
+
*/
|
|
8556
|
+
401: _Error;
|
|
8557
|
+
};
|
|
8558
|
+
type ShareInventoryItemDirectError = ShareInventoryItemDirectErrors[keyof ShareInventoryItemDirectErrors];
|
|
8559
|
+
type ShareInventoryItemDirectResponses = {
|
|
8560
|
+
/**
|
|
8561
|
+
* Returns an OkStatus object.
|
|
8562
|
+
*/
|
|
8563
|
+
200: OkStatus;
|
|
8564
|
+
};
|
|
8565
|
+
type ShareInventoryItemDirectResponse = ShareInventoryItemDirectResponses[keyof ShareInventoryItemDirectResponses];
|
|
8111
8566
|
type InviteUserData = {
|
|
8112
8567
|
/**
|
|
8113
8568
|
* Slot number of the Invite Message to use when inviting a user.
|
|
@@ -8501,6 +8956,35 @@ type CreateInstanceResponses = {
|
|
|
8501
8956
|
200: Instance;
|
|
8502
8957
|
};
|
|
8503
8958
|
type CreateInstanceResponse = CreateInstanceResponses[keyof CreateInstanceResponses];
|
|
8959
|
+
type GetRecentLocationsData = {
|
|
8960
|
+
body?: never;
|
|
8961
|
+
path?: never;
|
|
8962
|
+
query?: {
|
|
8963
|
+
/**
|
|
8964
|
+
* The number of objects to return.
|
|
8965
|
+
*/
|
|
8966
|
+
n?: number;
|
|
8967
|
+
/**
|
|
8968
|
+
* A zero-based offset from the default object sorting from where search results start.
|
|
8969
|
+
*/
|
|
8970
|
+
offset?: number;
|
|
8971
|
+
};
|
|
8972
|
+
url: '/instances/recent';
|
|
8973
|
+
};
|
|
8974
|
+
type GetRecentLocationsErrors = {
|
|
8975
|
+
/**
|
|
8976
|
+
* Error response due to missing auth cookie.
|
|
8977
|
+
*/
|
|
8978
|
+
401: _Error;
|
|
8979
|
+
};
|
|
8980
|
+
type GetRecentLocationsError = GetRecentLocationsErrors[keyof GetRecentLocationsErrors];
|
|
8981
|
+
type GetRecentLocationsResponses = {
|
|
8982
|
+
/**
|
|
8983
|
+
* Returns a list of LocationIDs.
|
|
8984
|
+
*/
|
|
8985
|
+
200: Array<LocationId>;
|
|
8986
|
+
};
|
|
8987
|
+
type GetRecentLocationsResponse = GetRecentLocationsResponses[keyof GetRecentLocationsResponses];
|
|
8504
8988
|
type CloseInstanceData = {
|
|
8505
8989
|
body?: never;
|
|
8506
8990
|
path: {
|
|
@@ -10579,6 +11063,11 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
10579
11063
|
* Get a list of a followed calendar events for the month in ?date
|
|
10580
11064
|
*/
|
|
10581
11065
|
getFollowedCalendarEvents<ThrowOnError extends boolean = false>(options?: Options<GetFollowedCalendarEventsData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetFollowedCalendarEventsResponses, GetFollowedCalendarEventsErrors, ThrowOnError, "fields">;
|
|
11066
|
+
/**
|
|
11067
|
+
* Search for calendar events
|
|
11068
|
+
* Get a list of calendar events by search terms
|
|
11069
|
+
*/
|
|
11070
|
+
searchCalendarEvents<ThrowOnError extends boolean = false>(options: Options<SearchCalendarEventsData, ThrowOnError>): _hey_api_client_fetch.RequestResult<SearchCalendarEventsResponses, SearchCalendarEventsErrors, ThrowOnError, "fields">;
|
|
10582
11071
|
/**
|
|
10583
11072
|
* List a group's calendar events
|
|
10584
11073
|
* Get a list of a group's calendar events
|
|
@@ -10630,6 +11119,11 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
10630
11119
|
* Get a list of all current user subscriptions.
|
|
10631
11120
|
*/
|
|
10632
11121
|
getCurrentSubscriptions<ThrowOnError extends boolean = false>(options?: Options<GetCurrentSubscriptionsData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetCurrentSubscriptionsResponses, GetCurrentSubscriptionsErrors, ThrowOnError, "fields">;
|
|
11122
|
+
/**
|
|
11123
|
+
* Get User Subscription Eligiblity
|
|
11124
|
+
* Get the user's eligibility status for subscriptions.
|
|
11125
|
+
*/
|
|
11126
|
+
getUserSubscriptionEligible<ThrowOnError extends boolean = false>(options: Options<GetUserSubscriptionEligibleData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetUserSubscriptionEligibleResponses, GetUserSubscriptionEligibleErrors, ThrowOnError, "fields">;
|
|
10633
11127
|
/**
|
|
10634
11128
|
* List Subscriptions
|
|
10635
11129
|
* List all existing Subscriptions. For example, "vrchatplus-monthly" and "vrchatplus-yearly".
|
|
@@ -10670,6 +11164,31 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
10670
11164
|
* Gets the balance of a user
|
|
10671
11165
|
*/
|
|
10672
11166
|
getBalance<ThrowOnError extends boolean = false>(options: Options<GetBalanceData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetBalanceResponses, GetBalanceErrors, ThrowOnError, "fields">;
|
|
11167
|
+
/**
|
|
11168
|
+
* Get Balance Earnings
|
|
11169
|
+
* Gets the balance of a user from earnings
|
|
11170
|
+
*/
|
|
11171
|
+
getBalanceEarnings<ThrowOnError extends boolean = false>(options: Options<GetBalanceEarningsData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetBalanceEarningsResponses, GetBalanceEarningsErrors, ThrowOnError, "fields">;
|
|
11172
|
+
/**
|
|
11173
|
+
* Get Economy Account
|
|
11174
|
+
* Gets the economy account of a user
|
|
11175
|
+
*/
|
|
11176
|
+
getEconomyAccount<ThrowOnError extends boolean = false>(options: Options<GetEconomyAccountData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetEconomyAccountResponses, GetEconomyAccountErrors, ThrowOnError, "fields">;
|
|
11177
|
+
/**
|
|
11178
|
+
* Get Active Licenses
|
|
11179
|
+
* Gets active licenses
|
|
11180
|
+
*/
|
|
11181
|
+
getActiveLicenses<ThrowOnError extends boolean = false>(options?: Options<GetActiveLicensesData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetActiveLicensesResponses, GetActiveLicensesErrors, ThrowOnError, "fields">;
|
|
11182
|
+
/**
|
|
11183
|
+
* Get Store
|
|
11184
|
+
* Gets a store
|
|
11185
|
+
*/
|
|
11186
|
+
getStore<ThrowOnError extends boolean = false>(options: Options<GetStoreData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetStoreResponses, GetStoreErrors, ThrowOnError, "fields">;
|
|
11187
|
+
/**
|
|
11188
|
+
* Get Store Shelves
|
|
11189
|
+
* Gets the shelves for a store
|
|
11190
|
+
*/
|
|
11191
|
+
getStoreShelves<ThrowOnError extends boolean = false>(options: Options<GetStoreShelvesData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetStoreShelvesResponses, GetStoreShelvesErrors, ThrowOnError, "fields">;
|
|
10673
11192
|
/**
|
|
10674
11193
|
* List Favorites
|
|
10675
11194
|
* Returns a list of favorites.
|
|
@@ -11065,6 +11584,11 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
11065
11584
|
* Returns an InventoryItem object held by the currently logged in user.
|
|
11066
11585
|
*/
|
|
11067
11586
|
getOwnInventoryItem<ThrowOnError extends boolean = false>(options: Options<GetOwnInventoryItemData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetOwnInventoryItemResponses, GetOwnInventoryItemErrors, ThrowOnError, "fields">;
|
|
11587
|
+
/**
|
|
11588
|
+
* Update Own Inventory Item
|
|
11589
|
+
* Returns the modified InventoryItem object as held by the currently logged in user.
|
|
11590
|
+
*/
|
|
11591
|
+
updateOwnInventoryItem<ThrowOnError extends boolean = false>(options: Options<UpdateOwnInventoryItemData, ThrowOnError>): _hey_api_client_fetch.RequestResult<UpdateOwnInventoryItemResponses, UpdateOwnInventoryItemErrors, ThrowOnError, "fields">;
|
|
11068
11592
|
/**
|
|
11069
11593
|
* List Inventory Drops
|
|
11070
11594
|
* Returns a list of InventoryDrop objects.
|
|
@@ -11080,6 +11604,16 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
11080
11604
|
* Returns an InventorySpawn object.
|
|
11081
11605
|
*/
|
|
11082
11606
|
spawnInventoryItem<ThrowOnError extends boolean = false>(options: Options<SpawnInventoryItemData, ThrowOnError>): _hey_api_client_fetch.RequestResult<SpawnInventoryItemResponses, SpawnInventoryItemErrors, ThrowOnError, "fields">;
|
|
11607
|
+
/**
|
|
11608
|
+
* Share Inventory Item by Pedestal
|
|
11609
|
+
* Returns an InventorySpawn object.
|
|
11610
|
+
*/
|
|
11611
|
+
shareInventoryItemPedestal<ThrowOnError extends boolean = false>(options: Options<ShareInventoryItemPedestalData, ThrowOnError>): _hey_api_client_fetch.RequestResult<ShareInventoryItemPedestalResponses, ShareInventoryItemPedestalErrors, ThrowOnError, "fields">;
|
|
11612
|
+
/**
|
|
11613
|
+
* Share Inventory Item Direct
|
|
11614
|
+
* Share content directly with other users.
|
|
11615
|
+
*/
|
|
11616
|
+
shareInventoryItemDirect<ThrowOnError extends boolean = false>(options: Options<ShareInventoryItemDirectData, ThrowOnError>): _hey_api_client_fetch.RequestResult<ShareInventoryItemDirectResponses, ShareInventoryItemDirectErrors, ThrowOnError, "fields">;
|
|
11083
11617
|
/**
|
|
11084
11618
|
* Invite User
|
|
11085
11619
|
* Sends an invite to a user. Returns the Notification of type `invite` that was sent.
|
|
@@ -11184,6 +11718,11 @@ declare class VRChatInternal extends _HeyApiClient {
|
|
|
11184
11718
|
* Create an instance
|
|
11185
11719
|
*/
|
|
11186
11720
|
createInstance<ThrowOnError extends boolean = false>(options: Options<CreateInstanceData, ThrowOnError>): _hey_api_client_fetch.RequestResult<CreateInstanceResponses, CreateInstanceErrors, ThrowOnError, "fields">;
|
|
11721
|
+
/**
|
|
11722
|
+
* List Recent Locations
|
|
11723
|
+
* Returns a list of recently visited locations.
|
|
11724
|
+
*/
|
|
11725
|
+
getRecentLocations<ThrowOnError extends boolean = false>(options?: Options<GetRecentLocationsData, ThrowOnError>): _hey_api_client_fetch.RequestResult<GetRecentLocationsResponses, GetRecentLocationsErrors, ThrowOnError, "fields">;
|
|
11187
11726
|
/**
|
|
11188
11727
|
* Close Instance
|
|
11189
11728
|
* Close an instance or update the closedAt time when it will be closed.
|
|
@@ -11670,4 +12209,4 @@ declare class VRChat extends VRChatInternal {
|
|
|
11670
12209
|
private saveCookies;
|
|
11671
12210
|
}
|
|
11672
12211
|
|
|
11673
|
-
export { type AcceptFriendRequestData, type AcceptFriendRequestError, type AcceptFriendRequestErrors, type AcceptFriendRequestResponse, type AcceptFriendRequestResponses, type AccountDeletionLog, type Active, type ActorIds, type AddFavoriteData, type AddFavoriteError, type AddFavoriteErrors, type AddFavoriteRequest, type AddFavoriteResponse, type AddFavoriteResponses, type AddGroupGalleryImageData, type AddGroupGalleryImageError, type AddGroupGalleryImageErrors, type AddGroupGalleryImageRequest, type AddGroupGalleryImageResponse, type AddGroupGalleryImageResponses, type AddGroupMemberRoleData, type AddGroupMemberRoleError, type AddGroupMemberRoleErrors, type AddGroupMemberRoleResponse, type AddGroupMemberRoleResponses, type AddGroupPostData, type AddGroupPostError, type AddGroupPostErrors, type AddGroupPostResponse, type AddGroupPostResponses, type AddTagsData, type AddTagsError, type AddTagsErrors, type AddTagsResponse, type AddTagsResponses, type AdminAssetBundle, type AdminAssetBundleId, type AdminUnityPackage, type AgeVerificationStatus, type AgeVerified, type ApiConfig, type ApiConfigAnnouncement, type ApiConfigConstants, type ApiConfigDownloadUrlList, type ApiConfigEvents, type ApiHealth, type Avatar, type AvatarId, type AvatarId2, type AvatarStyle, type AvatarStyleId, type Badge, type BadgeId, type BadgeId2, type Balance, type BanGroupMemberData, type BanGroupMemberError, type BanGroupMemberErrors, type BanGroupMemberRequest, type BanGroupMemberResponse, type BanGroupMemberResponses, type Branch, type CalendarEvent, type CalendarId, type CalendarId2, type CancelGroupRequestData, type CancelGroupRequestError, type CancelGroupRequestErrors, type CancelGroupRequestResponses, type CancelPending2FaData, type CancelPending2FaError, type CancelPending2FaErrors, type CancelPending2FaResponse, type CancelPending2FaResponses, type ChangeUserTagsRequest, type CheckUserExistsData, type CheckUserExistsError, type CheckUserExistsErrors, type CheckUserExistsResponse, type CheckUserExistsResponses, type CheckUserPersistenceExistsData, type CheckUserPersistenceExistsError, type CheckUserPersistenceExistsErrors, type CheckUserPersistenceExistsResponses, type ClearAllPlayerModerationsData, type ClearAllPlayerModerationsError, type ClearAllPlayerModerationsErrors, type ClearAllPlayerModerationsResponse, type ClearAllPlayerModerationsResponses, type ClearFavoriteGroupData, type ClearFavoriteGroupResponse, type ClearFavoriteGroupResponses, type ClearNotificationsData, type ClearNotificationsError, type ClearNotificationsErrors, type ClearNotificationsResponse, type ClearNotificationsResponses, type ClientOptions, type CloseInstanceData, type CloseInstanceError, type CloseInstanceErrors, type CloseInstanceResponse, type CloseInstanceResponses, type ConfirmEmailData, type ConfirmEmailToken, type ConfirmEmailUserId, type ContentId, type CreateAvatarData, type CreateAvatarError, type CreateAvatarErrors, type CreateAvatarRequest, type CreateAvatarResponse, type CreateAvatarResponses, type CreateCalendarEventRequest, type CreateFileData, type CreateFileRequest, type CreateFileResponse, type CreateFileResponses, type CreateFileVersionData, type CreateFileVersionRequest, type CreateFileVersionResponse, type CreateFileVersionResponses, type CreateGroupAnnouncementData, type CreateGroupAnnouncementError, type CreateGroupAnnouncementErrors, type CreateGroupAnnouncementRequest, type CreateGroupAnnouncementResponse, type CreateGroupAnnouncementResponses, type CreateGroupCalendarEventData, type CreateGroupCalendarEventError, type CreateGroupCalendarEventErrors, type CreateGroupCalendarEventResponse, type CreateGroupCalendarEventResponses, type CreateGroupData, type CreateGroupError, type CreateGroupErrors, type CreateGroupGalleryData, type CreateGroupGalleryError, type CreateGroupGalleryErrors, type CreateGroupGalleryRequest, type CreateGroupGalleryResponse, type CreateGroupGalleryResponses, type CreateGroupInviteData, type CreateGroupInviteError, type CreateGroupInviteErrors, type CreateGroupInviteRequest, type CreateGroupInviteResponses, type CreateGroupPostRequest, type CreateGroupRequest, type CreateGroupResponse, type CreateGroupResponses, type CreateGroupRoleData, type CreateGroupRoleError, type CreateGroupRoleErrors, type CreateGroupRoleRequest, type CreateGroupRoleResponse, type CreateGroupRoleResponses, type CreateInstanceData, type CreateInstanceError, type CreateInstanceErrors, type CreateInstanceRequest, type CreateInstanceResponse, type CreateInstanceResponses, type CreateWorldData, type CreateWorldError, type CreateWorldErrors, type CreateWorldRequest, type CreateWorldResponse, type CreateWorldResponses, type CurrentAvatarImageUrl, type CurrentAvatarThumbnailImageUrl, type CurrentUser, type CurrentUserPresence, type DeleteAvatarData, type DeleteAvatarError, type DeleteAvatarErrors, type DeleteAvatarResponse, type DeleteAvatarResponses, type DeleteFileData, type DeleteFileError, type DeleteFileErrors, type DeleteFileResponse, type DeleteFileResponses, type DeleteFileVersionData, type DeleteFileVersionError, type DeleteFileVersionErrors, type DeleteFileVersionResponse, type DeleteFileVersionResponses, type DeleteFriendRequestData, type DeleteFriendRequestError, type DeleteFriendRequestErrors, type DeleteFriendRequestResponse, type DeleteFriendRequestResponses, type DeleteGroupAnnouncementData, type DeleteGroupAnnouncementError, type DeleteGroupAnnouncementErrors, type DeleteGroupAnnouncementResponse, type DeleteGroupAnnouncementResponses, type DeleteGroupCalendarEventData, type DeleteGroupCalendarEventError, type DeleteGroupCalendarEventErrors, type DeleteGroupCalendarEventResponse, type DeleteGroupCalendarEventResponses, type DeleteGroupData, type DeleteGroupError, type DeleteGroupErrors, type DeleteGroupGalleryData, type DeleteGroupGalleryError, type DeleteGroupGalleryErrors, type DeleteGroupGalleryImageData, type DeleteGroupGalleryImageError, type DeleteGroupGalleryImageErrors, type DeleteGroupGalleryImageResponse, type DeleteGroupGalleryImageResponses, type DeleteGroupGalleryResponse, type DeleteGroupGalleryResponses, type DeleteGroupInviteData, type DeleteGroupInviteError, type DeleteGroupInviteErrors, type DeleteGroupInviteResponses, type DeleteGroupPostData, type DeleteGroupPostError, type DeleteGroupPostErrors, type DeleteGroupPostResponse, type DeleteGroupPostResponses, type DeleteGroupResponse, type DeleteGroupResponses, type DeleteGroupRoleData, type DeleteGroupRoleError, type DeleteGroupRoleErrors, type DeleteGroupRoleResponse, type DeleteGroupRoleResponses, type DeleteImpostorData, type DeleteImpostorError, type DeleteImpostorErrors, type DeleteImpostorResponses, type DeleteNotificationData, type DeleteNotificationError, type DeleteNotificationErrors, type DeleteNotificationResponse, type DeleteNotificationResponses, type DeletePrintData, type DeletePrintError, type DeletePrintErrors, type DeletePrintResponses, type DeleteUserData, type DeleteUserError, type DeleteUserErrors, type DeleteUserPersistenceData, type DeleteUserPersistenceError, type DeleteUserPersistenceErrors, type DeleteUserPersistenceResponses, type DeleteUserResponse, type DeleteUserResponses, type DeleteWorldData, type DeleteWorldError, type DeleteWorldErrors, type DeleteWorldResponses, type DeveloperType, type Disable2FaData, type Disable2FaError, type Disable2FaErrors, type Disable2FaResponse, type Disable2FaResponses, type Disable2FaResult, type DisplayName, type DownloadFileVersionData, type DownloadFileVersionError, type DownloadFileVersionErrors, type DownloadFileVersionResponse, type DownloadFileVersionResponses, type DynamicContentRow, type EditPrintData, type EditPrintError, type EditPrintErrors, type EditPrintResponse, type EditPrintResponses, type Email, type Enable2FaData, type Enable2FaError, type Enable2FaErrors, type Enable2FaResponse, type Enable2FaResponses, type EndDate, type EnqueueImpostorData, type EnqueueImpostorError, type EnqueueImpostorErrors, type EnqueueImpostorResponse, type EnqueueImpostorResponses, type EventTypes, type ExcludeUserId, type Favorite, type FavoriteGroup, type FavoriteGroupId, type FavoriteGroupLimits, type FavoriteGroupName, type FavoriteGroupType, type FavoriteGroupVisibility, type FavoriteId, type FavoriteId2, type FavoriteLimits, type FavoriteType, type FavoritedWorld, type Featured, type Feedback, type FeedbackId, type File, type FileAnalysis, type FileAnalysisAvatarStats, type FileData, type FileId, type FileId2, type FileStatus, type FileType, type FileUploadUrl, type FileVersion, type FileVersionUploadStatus, type FinishFileDataUploadData, type FinishFileDataUploadRequest, type FinishFileDataUploadResponse, type FinishFileDataUploadResponses, type FollowCalendarEventRequest, type FollowGroupCalendarEventData, type FollowGroupCalendarEventError, type FollowGroupCalendarEventErrors, type FollowGroupCalendarEventResponse, type FollowGroupCalendarEventResponses, type FriendData, type FriendError, type FriendErrors, type FriendResponse, type FriendResponses, type FriendStatus, type Fuzzy, type GetActiveWorldsData, type GetActiveWorldsError, type GetActiveWorldsErrors, type GetActiveWorldsResponse, type GetActiveWorldsResponses, type GetAdminAssetBundleData, type GetAdminAssetBundleResponse, type GetAdminAssetBundleResponses, type GetAssignedPermissionsData, type GetAssignedPermissionsError, type GetAssignedPermissionsErrors, type GetAssignedPermissionsResponse, type GetAssignedPermissionsResponses, type GetAvatarData, type GetAvatarError, type GetAvatarErrors, type GetAvatarResponse, type GetAvatarResponses, type GetAvatarStylesData, type GetAvatarStylesResponse, type GetAvatarStylesResponses, type GetBalanceData, type GetBalanceError, type GetBalanceErrors, type GetBalanceResponse, type GetBalanceResponses, type GetCalendarEventsData, type GetCalendarEventsError, type GetCalendarEventsErrors, type GetCalendarEventsResponse, type GetCalendarEventsResponses, type GetConfigData, type GetConfigResponse, type GetConfigResponses, type GetCssData, type GetCssError, type GetCssErrors, type GetCssResponse, type GetCssResponses, type GetCurrentOnlineUsersData, type GetCurrentOnlineUsersResponse, type GetCurrentOnlineUsersResponses, type GetCurrentSubscriptionsData, type GetCurrentSubscriptionsError, type GetCurrentSubscriptionsErrors, type GetCurrentSubscriptionsResponse, type GetCurrentSubscriptionsResponses, type GetCurrentUserData, type GetCurrentUserError, type GetCurrentUserErrors, type GetCurrentUserResponse, type GetCurrentUserResponses, type GetFavoriteGroupData, type GetFavoriteGroupResponse, type GetFavoriteGroupResponses, type GetFavoriteGroupsData, type GetFavoriteGroupsError, type GetFavoriteGroupsErrors, type GetFavoriteGroupsResponse, type GetFavoriteGroupsResponses, type GetFavoriteLimitsData, type GetFavoriteLimitsError, type GetFavoriteLimitsErrors, type GetFavoriteLimitsResponse, type GetFavoriteLimitsResponses, type GetFavoritedAvatarsData, type GetFavoritedAvatarsError, type GetFavoritedAvatarsErrors, type GetFavoritedAvatarsResponse, type GetFavoritedAvatarsResponses, type GetFavoritedWorldsData, type GetFavoritedWorldsError, type GetFavoritedWorldsErrors, type GetFavoritedWorldsResponse, type GetFavoritedWorldsResponses, type GetFavoritesData, type GetFavoritesError, type GetFavoritesErrors, type GetFavoritesResponse, type GetFavoritesResponses, type GetFeaturedCalendarEventsData, type GetFeaturedCalendarEventsError, type GetFeaturedCalendarEventsErrors, type GetFeaturedCalendarEventsResponse, type GetFeaturedCalendarEventsResponses, type GetFileAnalysisData, type GetFileAnalysisError, type GetFileAnalysisErrors, type GetFileAnalysisResponse, type GetFileAnalysisResponses, type GetFileAnalysisSecurityData, type GetFileAnalysisSecurityError, type GetFileAnalysisSecurityErrors, type GetFileAnalysisSecurityResponse, type GetFileAnalysisSecurityResponses, type GetFileAnalysisStandardData, type GetFileAnalysisStandardError, type GetFileAnalysisStandardErrors, type GetFileAnalysisStandardResponse, type GetFileAnalysisStandardResponses, type GetFileData, type GetFileDataUploadStatusData, type GetFileDataUploadStatusResponse, type GetFileDataUploadStatusResponses, type GetFileError, type GetFileErrors, type GetFileResponse, type GetFileResponses, type GetFilesData, type GetFilesResponse, type GetFilesResponses, type GetFollowedCalendarEventsData, type GetFollowedCalendarEventsError, type GetFollowedCalendarEventsErrors, type GetFollowedCalendarEventsResponse, type GetFollowedCalendarEventsResponses, type GetFriendStatusData, type GetFriendStatusError, type GetFriendStatusErrors, type GetFriendStatusResponse, type GetFriendStatusResponses, type GetFriendsData, type GetFriendsError, type GetFriendsErrors, type GetFriendsResponse, type GetFriendsResponses, type GetGroupAnnouncementsData, type GetGroupAnnouncementsError, type GetGroupAnnouncementsErrors, type GetGroupAnnouncementsResponse, type GetGroupAnnouncementsResponses, type GetGroupAuditLogsData, type GetGroupAuditLogsError, type GetGroupAuditLogsErrors, type GetGroupAuditLogsResponse, type GetGroupAuditLogsResponses, type GetGroupBansData, type GetGroupBansError, type GetGroupBansErrors, type GetGroupBansResponse, type GetGroupBansResponses, type GetGroupCalendarEventData, type GetGroupCalendarEventError, type GetGroupCalendarEventErrors, type GetGroupCalendarEventIcsData, type GetGroupCalendarEventIcsError, type GetGroupCalendarEventIcsErrors, type GetGroupCalendarEventIcsResponse, type GetGroupCalendarEventIcsResponses, type GetGroupCalendarEventResponse, type GetGroupCalendarEventResponses, type GetGroupCalendarEventsData, type GetGroupCalendarEventsError, type GetGroupCalendarEventsErrors, type GetGroupCalendarEventsResponse, type GetGroupCalendarEventsResponses, type GetGroupData, type GetGroupError, type GetGroupErrors, type GetGroupGalleryImagesData, type GetGroupGalleryImagesError, type GetGroupGalleryImagesErrors, type GetGroupGalleryImagesResponse, type GetGroupGalleryImagesResponses, type GetGroupInstancesData, type GetGroupInstancesError, type GetGroupInstancesErrors, type GetGroupInstancesResponse, type GetGroupInstancesResponses, type GetGroupInvitesData, type GetGroupInvitesError, type GetGroupInvitesErrors, type GetGroupInvitesResponse, type GetGroupInvitesResponses, type GetGroupMemberData, type GetGroupMemberError, type GetGroupMemberErrors, type GetGroupMemberResponse, type GetGroupMemberResponses, type GetGroupMembersData, type GetGroupMembersError, type GetGroupMembersErrors, type GetGroupMembersResponse, type GetGroupMembersResponses, type GetGroupPermissionsData, type GetGroupPermissionsError, type GetGroupPermissionsErrors, type GetGroupPermissionsResponse, type GetGroupPermissionsResponses, type GetGroupPostsData, type GetGroupPostsError, type GetGroupPostsErrors, type GetGroupPostsResponse, type GetGroupPostsResponses, type GetGroupRequestsData, type GetGroupRequestsError, type GetGroupRequestsErrors, type GetGroupRequestsResponse, type GetGroupRequestsResponses, type GetGroupResponse, type GetGroupResponses, type GetGroupRoleTemplatesData, type GetGroupRoleTemplatesError, type GetGroupRoleTemplatesErrors, type GetGroupRoleTemplatesResponse, type GetGroupRoleTemplatesResponses, type GetGroupRolesData, type GetGroupRolesError, type GetGroupRolesErrors, type GetGroupRolesResponse, type GetGroupRolesResponses, type GetHealthData, type GetHealthResponse, type GetHealthResponses, type GetImpostorQueueStatsData, type GetImpostorQueueStatsError, type GetImpostorQueueStatsErrors, type GetImpostorQueueStatsResponse, type GetImpostorQueueStatsResponses, type GetInfoPushData, type GetInfoPushResponse, type GetInfoPushResponses, type GetInstanceByShortNameData, type GetInstanceByShortNameError, type GetInstanceByShortNameErrors, type GetInstanceByShortNameResponse, type GetInstanceByShortNameResponses, type GetInstanceData, type GetInstanceError, type GetInstanceErrors, type GetInstanceResponse, type GetInstanceResponses, type GetInventoryData, type GetInventoryDropsData, type GetInventoryDropsError, type GetInventoryDropsErrors, type GetInventoryDropsResponse, type GetInventoryDropsResponses, type GetInventoryError, type GetInventoryErrors, type GetInventoryResponse, type GetInventoryResponses, type GetInventoryTemplateData, type GetInventoryTemplateError, type GetInventoryTemplateErrors, type GetInventoryTemplateResponse, type GetInventoryTemplateResponses, type GetInviteMessageData, type GetInviteMessageError, type GetInviteMessageErrors, type GetInviteMessageResponse, type GetInviteMessageResponses, type GetInviteMessagesData, type GetInviteMessagesError, type GetInviteMessagesErrors, type GetInviteMessagesResponse, type GetInviteMessagesResponses, type GetJamData, type GetJamError, type GetJamErrors, type GetJamResponse, type GetJamResponses, type GetJamSubmissionsData, type GetJamSubmissionsError, type GetJamSubmissionsErrors, type GetJamSubmissionsResponse, type GetJamSubmissionsResponses, type GetJamsData, type GetJamsResponse, type GetJamsResponses, type GetJavaScriptData, type GetJavaScriptError, type GetJavaScriptErrors, type GetJavaScriptResponse, type GetJavaScriptResponses, type GetLicenseGroupData, type GetLicenseGroupError, type GetLicenseGroupErrors, type GetLicenseGroupResponse, type GetLicenseGroupResponses, type GetLicensedAvatarsData, type GetLicensedAvatarsError, type GetLicensedAvatarsErrors, type GetLicensedAvatarsResponse, type GetLicensedAvatarsResponses, type GetNotificationData, type GetNotificationError, type GetNotificationErrors, type GetNotificationResponse, type GetNotificationResponses, type GetNotificationsData, type GetNotificationsError, type GetNotificationsErrors, type GetNotificationsResponse, type GetNotificationsResponses, type GetOwnAvatarData, type GetOwnAvatarError, type GetOwnAvatarErrors, type GetOwnAvatarResponse, type GetOwnAvatarResponses, type GetOwnInventoryItemData, type GetOwnInventoryItemError, type GetOwnInventoryItemErrors, type GetOwnInventoryItemResponse, type GetOwnInventoryItemResponses, type GetPermissionData, type GetPermissionError, type GetPermissionErrors, type GetPermissionResponse, type GetPermissionResponses, type GetPlayerModerationsData, type GetPlayerModerationsError, type GetPlayerModerationsErrors, type GetPlayerModerationsResponse, type GetPlayerModerationsResponses, type GetPrintData, type GetPrintError, type GetPrintErrors, type GetPrintResponse, type GetPrintResponses, type GetProductListingData, type GetProductListingError, type GetProductListingErrors, type GetProductListingResponse, type GetProductListingResponses, type GetProductListingsData, type GetProductListingsError, type GetProductListingsErrors, type GetProductListingsResponse, type GetProductListingsResponses, type GetPropData, type GetPropError, type GetPropErrors, type GetPropResponse, type GetPropResponses, type GetRecentWorldsData, type GetRecentWorldsError, type GetRecentWorldsErrors, type GetRecentWorldsResponse, type GetRecentWorldsResponses, type GetRecoveryCodesData, type GetRecoveryCodesError, type GetRecoveryCodesErrors, type GetRecoveryCodesResponse, type GetRecoveryCodesResponses, type GetShortNameData, type GetShortNameError, type GetShortNameErrors, type GetShortNameResponse, type GetShortNameResponses, type GetSteamTransactionData, type GetSteamTransactionError, type GetSteamTransactionErrors, type GetSteamTransactionResponse, type GetSteamTransactionResponses, type GetSteamTransactionsData, type GetSteamTransactionsError, type GetSteamTransactionsErrors, type GetSteamTransactionsResponse, type GetSteamTransactionsResponses, type GetSubscriptionsData, type GetSubscriptionsError, type GetSubscriptionsErrors, type GetSubscriptionsResponse, type GetSubscriptionsResponses, type GetSystemTimeData, type GetSystemTimeResponse, type GetSystemTimeResponses, type GetTiliaStatusData, type GetTiliaStatusError, type GetTiliaStatusErrors, type GetTiliaStatusResponse, type GetTiliaStatusResponses, type GetTiliaTosData, type GetTiliaTosError, type GetTiliaTosErrors, type GetTiliaTosResponse, type GetTiliaTosResponses, type GetTokenBundlesData, type GetTokenBundlesError, type GetTokenBundlesErrors, type GetTokenBundlesResponse, type GetTokenBundlesResponses, type GetUserByNameData, type GetUserByNameError, type GetUserByNameErrors, type GetUserByNameResponse, type GetUserByNameResponses, type GetUserData, type GetUserError, type GetUserErrors, type GetUserFeedbackData, type GetUserFeedbackError, type GetUserFeedbackErrors, type GetUserFeedbackResponse, type GetUserFeedbackResponses, type GetUserGroupInstancesData, type GetUserGroupInstancesError, type GetUserGroupInstancesErrors, type GetUserGroupInstancesResponse, type GetUserGroupInstancesResponses, type GetUserGroupRequestsData, type GetUserGroupRequestsError, type GetUserGroupRequestsErrors, type GetUserGroupRequestsResponse, type GetUserGroupRequestsResponses, type GetUserGroupsData, type GetUserGroupsError, type GetUserGroupsErrors, type GetUserGroupsResponse, type GetUserGroupsResponses, type GetUserNoteData, type GetUserNoteError, type GetUserNoteErrors, type GetUserNoteResponse, type GetUserNoteResponses, type GetUserNotesData, type GetUserNotesError, type GetUserNotesErrors, type GetUserNotesResponse, type GetUserNotesResponses, type GetUserPrintsData, type GetUserPrintsError, type GetUserPrintsErrors, type GetUserPrintsResponse, type GetUserPrintsResponses, type GetUserRepresentedGroupData, type GetUserRepresentedGroupError, type GetUserRepresentedGroupErrors, type GetUserRepresentedGroupResponse, type GetUserRepresentedGroupResponses, type GetUserResponse, type GetUserResponses, type GetWorldData, type GetWorldError, type GetWorldErrors, type GetWorldInstanceData, type GetWorldInstanceError, type GetWorldInstanceErrors, type GetWorldInstanceResponse, type GetWorldInstanceResponses, type GetWorldMetadataData, type GetWorldMetadataError, type GetWorldMetadataErrors, type GetWorldMetadataResponse, type GetWorldMetadataResponses, type GetWorldPublishStatusData, type GetWorldPublishStatusError, type GetWorldPublishStatusErrors, type GetWorldPublishStatusResponse, type GetWorldPublishStatusResponses, type GetWorldResponse, type GetWorldResponses, type Group, type GroupAccessType, type GroupAnnouncement, type GroupAnnouncementId, type GroupAuditLogEntry, type GroupAuditLogId, type GroupDiscriminator, type GroupGallery, type GroupGalleryId, type GroupGalleryId2, type GroupGalleryImage, type GroupGalleryImageId, type GroupGalleryImageId2, type GroupId, type GroupId2, type GroupIdFilter, type GroupInstance, type GroupJoinRequestAction, type GroupJoinState, type GroupLimitedMember, type GroupMember, type GroupMemberId, type GroupMemberLimitedUser, type GroupMemberRoleFilter, type GroupMemberSort, type GroupMemberStatus, type GroupMyMember, type GroupPermission, type GroupPermissions, type GroupPost, type GroupPostVisibility, type GroupPrivacy, type GroupRole, type GroupRoleId, type GroupRoleId2, type GroupRoleIdList, type GroupRoleTemplate, type GroupRoleTemplateValues, type GroupSearchSort, type GroupShortCode, type GroupUserVisibility, type Hydrate, type Include, type InfoPush, type InfoPushData, type InfoPushDataArticle, type InfoPushDataArticleContent, type InfoPushDataClickable, type Instance, type InstanceContentSettings, type InstanceId, type InstanceId2, type InstanceOwnerId, type InstancePlatforms, type InstanceRegion, type InstanceShortNameResponse, type InstanceType, type Inventory, type InventoryDrop, type InventoryDropId, type InventoryItem, type InventoryItemId, type InventoryItemId2, type InventoryItemType, type InventoryItemType2, type InventoryMetadata, type InventoryNotificationDetails, type InventorySortOrder, type InventorySpawn, type InventorySpawnItemId, type InventoryTemplate, type InventoryTemplateId, type InventoryTemplateId2, type InviteMessage, type InviteMessageId, type InviteMessageType, type InviteMyselfToData, type InviteMyselfToError, type InviteMyselfToErrors, type InviteMyselfToResponse, type InviteMyselfToResponses, type InviteRequest, type InviteResponse, type InviteUserData, type InviteUserError, type InviteUserErrors, type InviteUserResponse, type InviteUserResponses, type InviteUserWithPhotoData, type InviteUserWithPhotoError, type InviteUserWithPhotoErrors, type InviteUserWithPhotoResponse, type InviteUserWithPhotoResponses, type Jam, type JamId, type JoinGroupData, type JoinGroupError, type JoinGroupErrors, type JoinGroupResponse, type JoinGroupResponses, type KickGroupMemberData, type KickGroupMemberError, type KickGroupMemberErrors, type KickGroupMemberResponses, type LeaveGroupData, type LeaveGroupError, type LeaveGroupErrors, type LeaveGroupResponses, type License, type LicenseAction, type LicenseGroup, type LicenseGroupId, type LicenseGroupId2, type LicenseType, type LimitedGroup, type LimitedUnityPackage, type LimitedUserFriend, type LimitedUserGroups, type LimitedUserInstance, type LimitedUserSearch, type LimitedWorld, type LocalDateTime, type LoginCredentials, type LogoutData, type LogoutError, type LogoutErrors, type LogoutResponse, type LogoutResponses, type MarkNotificationAsReadData, type MarkNotificationAsReadError, type MarkNotificationAsReadErrors, type MarkNotificationAsReadResponse, type MarkNotificationAsReadResponses, type MaxUnityVersion, type MessageType, type MimeType, type MinUnityVersion, type ModerateUserData, type ModerateUserError, type ModerateUserErrors, type ModerateUserRequest, type ModerateUserResponse, type ModerateUserResponses, type MonthDate, type Notag, type Notification, type NotificationDetailInvite, type NotificationDetailInviteResponse, type NotificationDetailRequestInvite, type NotificationDetailRequestInviteResponse, type NotificationDetailVoteToKick, type NotificationId, type NotificationId2, type NotificationType, type Number, type Offline, type Offset, type Order, type OrderOption, type PaginatedCalendarEventList, type PaginatedGroupAuditLogEntryList, type PastDisplayName, type Pending2FaResult, type PerformanceLimiterInfo, type PerformanceRatings, type Permission, type PermissionId, type PermissionId2, type Platform, type Platform2, type PlatformBuildInfo, type PlayerModeration, type PlayerModerationId, type PlayerModerationType, type Print, type PrintId, type PrintId2, type Product, type ProductId, type ProductId2, type ProductListing, type ProductListingType, type ProductListingVariant, type ProductListingVariantId, type ProductType, type Prop, type PropId, type PropId2, type PropUnityPackage, type PublishWorldData, type PublishWorldError, type PublishWorldErrors, type PublishWorldResponses, type Region, type RegisterUserAccountData, type RegisterUserAccountError, type RegisterUserAccountErrors, type RegisterUserAccountRequest, type RegisterUserAccountResponse, type RegisterUserAccountResponses, type ReleaseStatus, type ReleaseStatus2, type RemoveFavoriteData, type RemoveFavoriteError, type RemoveFavoriteErrors, type RemoveFavoriteResponse, type RemoveFavoriteResponses, type RemoveGroupMemberRoleData, type RemoveGroupMemberRoleError, type RemoveGroupMemberRoleErrors, type RemoveGroupMemberRoleResponse, type RemoveGroupMemberRoleResponses, type RemoveTagsData, type RemoveTagsError, type RemoveTagsErrors, type RemoveTagsResponse, type RemoveTagsResponses, type ReportCategory, type ReportReason, type RepresentedGroup, type RequestInviteData, type RequestInviteError, type RequestInviteErrors, type RequestInviteRequest, type RequestInviteResponse, type RequestInviteResponses, type RequestInviteWithPhotoData, type RequestInviteWithPhotoError, type RequestInviteWithPhotoErrors, type RequestInviteWithPhotoResponse, type RequestInviteWithPhotoResponses, type Require, type ResendEmailConfirmationData, type ResendEmailConfirmationError, type ResendEmailConfirmationErrors, type ResendEmailConfirmationResponse, type ResendEmailConfirmationResponses, type ResetInviteMessageData, type ResetInviteMessageError, type ResetInviteMessageErrors, type ResetInviteMessageResponse, type ResetInviteMessageResponses, type RespondGroupJoinRequest, type RespondGroupJoinRequestData, type RespondGroupJoinRequestError, type RespondGroupJoinRequestErrors, type RespondGroupJoinRequestResponses, type RespondInviteData, type RespondInviteError, type RespondInviteErrors, type RespondInviteResponse, type RespondInviteResponses, type RespondInviteWithPhotoData, type RespondInviteWithPhotoError, type RespondInviteWithPhotoErrors, type RespondInviteWithPhotoResponse, type RespondInviteWithPhotoResponses, type Response$1 as Response, type Search, type SearchAvatarsData, type SearchAvatarsError, type SearchAvatarsErrors, type SearchAvatarsResponse, type SearchAvatarsResponses, type SearchGroupsData, type SearchGroupsError, type SearchGroupsErrors, type SearchGroupsResponse, type SearchGroupsResponses, type SearchUsersData, type SearchUsersError, type SearchUsersErrors, type SearchUsersResponse, type SearchUsersResponses, type SearchWorldsData, type SearchWorldsError, type SearchWorldsErrors, type SearchWorldsResponse, type SearchWorldsResponses, type SelectAvatarData, type SelectAvatarError, type SelectAvatarErrors, type SelectAvatarResponse, type SelectAvatarResponses, type SelectFallbackAvatarData, type SelectFallbackAvatarError, type SelectFallbackAvatarErrors, type SelectFallbackAvatarResponse, type SelectFallbackAvatarResponses, type SentNotification, type ServiceQueueStats, type ServiceStatus, type Slot, type Sort, type SortOption, type SpawnInventoryItemData, type SpawnInventoryItemError, type SpawnInventoryItemErrors, type SpawnInventoryItemResponse, type SpawnInventoryItemResponses, type StartDate, type StartFileDataUploadData, type StartFileDataUploadError, type StartFileDataUploadErrors, type StartFileDataUploadResponse, type StartFileDataUploadResponses, type StoreId, type Submission, type Subscription, type SubscriptionPeriod, type Success, type Tag, type Tag2, type TargetIds, type TiliaStatus, type TiliaTos, type TokenBundle, type Transaction, type TransactionAgreement, type TransactionId, type TransactionId2, type TransactionStatus, type TransactionSteamInfo, type TransactionSteamWalletInfo, type TwoFactorAuthCode, type TwoFactorEmailCode, TwoFactorMethods, type TwoFactorRecoveryCodes, type UdonProductId, type UnbanGroupMemberData, type UnbanGroupMemberError, type UnbanGroupMemberErrors, type UnbanGroupMemberResponse, type UnbanGroupMemberResponses, type UnfriendData, type UnfriendError, type UnfriendErrors, type UnfriendResponse, type UnfriendResponses, type UnityPackage, type UnityPackageId, type UnmoderateUserData, type UnmoderateUserError, type UnmoderateUserErrors, type UnmoderateUserResponse, type UnmoderateUserResponses, type UnpublishWorldData, type UnpublishWorldError, type UnpublishWorldErrors, type UnpublishWorldResponses, type UpdateAvatarData, type UpdateAvatarError, type UpdateAvatarErrors, type UpdateAvatarRequest, type UpdateAvatarResponse, type UpdateAvatarResponses, type UpdateBadgeData, type UpdateBadgeError, type UpdateBadgeErrors, type UpdateBadgeResponses, type UpdateCalendarEventRequest, type UpdateFavoriteGroupData, type UpdateFavoriteGroupRequest, type UpdateFavoriteGroupResponses, type UpdateGroupCalendarEventData, type UpdateGroupCalendarEventError, type UpdateGroupCalendarEventErrors, type UpdateGroupCalendarEventResponse, type UpdateGroupCalendarEventResponses, type UpdateGroupData, type UpdateGroupError, type UpdateGroupErrors, type UpdateGroupGalleryData, type UpdateGroupGalleryError, type UpdateGroupGalleryErrors, type UpdateGroupGalleryRequest, type UpdateGroupGalleryResponse, type UpdateGroupGalleryResponses, type UpdateGroupMemberData, type UpdateGroupMemberError, type UpdateGroupMemberErrors, type UpdateGroupMemberRequest, type UpdateGroupMemberResponse, type UpdateGroupMemberResponses, type UpdateGroupPostData, type UpdateGroupPostError, type UpdateGroupPostErrors, type UpdateGroupPostResponse, type UpdateGroupPostResponses, type UpdateGroupRepresentationData, type UpdateGroupRepresentationError, type UpdateGroupRepresentationErrors, type UpdateGroupRepresentationResponse, type UpdateGroupRepresentationResponses, type UpdateGroupRequest, type UpdateGroupResponse, type UpdateGroupResponses, type UpdateGroupRoleData, type UpdateGroupRoleError, type UpdateGroupRoleErrors, type UpdateGroupRoleRequest, type UpdateGroupRoleResponse, type UpdateGroupRoleResponses, type UpdateInviteMessageData, type UpdateInviteMessageError, type UpdateInviteMessageErrors, type UpdateInviteMessageRequest, type UpdateInviteMessageResponse, type UpdateInviteMessageResponses, type UpdateUserBadgeRequest, type UpdateUserData, type UpdateUserError, type UpdateUserErrors, type UpdateUserNoteData, type UpdateUserNoteError, type UpdateUserNoteErrors, type UpdateUserNoteRequest, type UpdateUserNoteResponse, type UpdateUserNoteResponses, type UpdateUserRequest, type UpdateUserResponse, type UpdateUserResponses, type UpdateWorldData, type UpdateWorldError, type UpdateWorldErrors, type UpdateWorldRequest, type UpdateWorldResponse, type UpdateWorldResponses, type UploadGalleryImageData, type UploadGalleryImageResponse, type UploadGalleryImageResponses, type UploadIconData, type UploadIconResponse, type UploadIconResponses, type UploadImageData, type UploadImageResponse, type UploadImageResponses, type UploadPrintData, type UploadPrintError, type UploadPrintErrors, type UploadPrintResponse, type UploadPrintResponses, type User, type UserExists, type UserId, type UserId2, type UserIdAdmin, type UserIdQuery, type UserNote, type UserNoteId, type UserNoteId2, type UserState, type UserStatus, type UserSubscription, type UsernameQuery, VRChat, VRChatError, type VRChatOptions, type Variant, type Verify2FaData, type Verify2FaEmailCodeData, type Verify2FaEmailCodeError, type Verify2FaEmailCodeErrors, type Verify2FaEmailCodeResponse, type Verify2FaEmailCodeResponses, type Verify2FaEmailCodeResult, type Verify2FaError, type Verify2FaErrors, type Verify2FaResponse, type Verify2FaResponses, type Verify2FaResult, type VerifyAuthTokenData, type VerifyAuthTokenError, type VerifyAuthTokenErrors, type VerifyAuthTokenResponse, type VerifyAuthTokenResponses, type VerifyAuthTokenResult, type VerifyLoginPlaceData, type VerifyLoginPlaceToken, type VerifyPending2FaData, type VerifyPending2FaError, type VerifyPending2FaErrors, type VerifyPending2FaResponse, type VerifyPending2FaResponses, type VerifyRecoveryCodeData, type VerifyRecoveryCodeError, type VerifyRecoveryCodeErrors, type VerifyRecoveryCodeResponse, type VerifyRecoveryCodeResponses, type VersionId, type World, type WorldId, type WorldId2, type WorldMetadata, type WorldPublishStatus, baseUrl };
|
|
12212
|
+
export { type AcceptFriendRequestData, type AcceptFriendRequestError, type AcceptFriendRequestErrors, type AcceptFriendRequestResponse, type AcceptFriendRequestResponses, type AccountDeletionLog, type Active, type ActorIds, type AddFavoriteData, type AddFavoriteError, type AddFavoriteErrors, type AddFavoriteRequest, type AddFavoriteResponse, type AddFavoriteResponses, type AddGroupGalleryImageData, type AddGroupGalleryImageError, type AddGroupGalleryImageErrors, type AddGroupGalleryImageRequest, type AddGroupGalleryImageResponse, type AddGroupGalleryImageResponses, type AddGroupMemberRoleData, type AddGroupMemberRoleError, type AddGroupMemberRoleErrors, type AddGroupMemberRoleResponse, type AddGroupMemberRoleResponses, type AddGroupPostData, type AddGroupPostError, type AddGroupPostErrors, type AddGroupPostResponse, type AddGroupPostResponses, type AddTagsData, type AddTagsError, type AddTagsErrors, type AddTagsResponse, type AddTagsResponses, type AdminAssetBundle, type AdminAssetBundleId, type AdminUnityPackage, type AgeVerificationStatus, type AgeVerified, type ApiConfig, type ApiConfigAnnouncement, type ApiConfigConstants, type ApiConfigDownloadUrlList, type ApiConfigEvents, type ApiHealth, type Avatar, type AvatarId, type AvatarId2, type AvatarStyle, type AvatarStyleId, type Badge, type BadgeId, type BadgeId2, type Balance, type BanGroupMemberData, type BanGroupMemberError, type BanGroupMemberErrors, type BanGroupMemberRequest, type BanGroupMemberResponse, type BanGroupMemberResponses, type Branch, type CalendarEvent, type CalendarId, type CalendarId2, type CalendarSearchTerm, type CancelGroupRequestData, type CancelGroupRequestError, type CancelGroupRequestErrors, type CancelGroupRequestResponses, type CancelPending2FaData, type CancelPending2FaError, type CancelPending2FaErrors, type CancelPending2FaResponse, type CancelPending2FaResponses, type ChangeUserTagsRequest, type CheckUserExistsData, type CheckUserExistsError, type CheckUserExistsErrors, type CheckUserExistsResponse, type CheckUserExistsResponses, type CheckUserPersistenceExistsData, type CheckUserPersistenceExistsError, type CheckUserPersistenceExistsErrors, type CheckUserPersistenceExistsResponses, type ClearAllPlayerModerationsData, type ClearAllPlayerModerationsError, type ClearAllPlayerModerationsErrors, type ClearAllPlayerModerationsResponse, type ClearAllPlayerModerationsResponses, type ClearFavoriteGroupData, type ClearFavoriteGroupResponse, type ClearFavoriteGroupResponses, type ClearNotificationsData, type ClearNotificationsError, type ClearNotificationsErrors, type ClearNotificationsResponse, type ClearNotificationsResponses, type ClientOptions, type CloseInstanceData, type CloseInstanceError, type CloseInstanceErrors, type CloseInstanceResponse, type CloseInstanceResponses, type ConfirmEmailData, type ConfirmEmailToken, type ConfirmEmailUserId, type ContentId, type CreateAvatarData, type CreateAvatarError, type CreateAvatarErrors, type CreateAvatarRequest, type CreateAvatarResponse, type CreateAvatarResponses, type CreateCalendarEventRequest, type CreateFileData, type CreateFileRequest, type CreateFileResponse, type CreateFileResponses, type CreateFileVersionData, type CreateFileVersionRequest, type CreateFileVersionResponse, type CreateFileVersionResponses, type CreateGroupAnnouncementData, type CreateGroupAnnouncementError, type CreateGroupAnnouncementErrors, type CreateGroupAnnouncementRequest, type CreateGroupAnnouncementResponse, type CreateGroupAnnouncementResponses, type CreateGroupCalendarEventData, type CreateGroupCalendarEventError, type CreateGroupCalendarEventErrors, type CreateGroupCalendarEventResponse, type CreateGroupCalendarEventResponses, type CreateGroupData, type CreateGroupError, type CreateGroupErrors, type CreateGroupGalleryData, type CreateGroupGalleryError, type CreateGroupGalleryErrors, type CreateGroupGalleryRequest, type CreateGroupGalleryResponse, type CreateGroupGalleryResponses, type CreateGroupInviteData, type CreateGroupInviteError, type CreateGroupInviteErrors, type CreateGroupInviteRequest, type CreateGroupInviteResponses, type CreateGroupPostRequest, type CreateGroupRequest, type CreateGroupResponse, type CreateGroupResponses, type CreateGroupRoleData, type CreateGroupRoleError, type CreateGroupRoleErrors, type CreateGroupRoleRequest, type CreateGroupRoleResponse, type CreateGroupRoleResponses, type CreateInstanceData, type CreateInstanceError, type CreateInstanceErrors, type CreateInstanceRequest, type CreateInstanceResponse, type CreateInstanceResponses, type CreateWorldData, type CreateWorldError, type CreateWorldErrors, type CreateWorldRequest, type CreateWorldResponse, type CreateWorldResponses, type CurrentAvatarImageUrl, type CurrentAvatarThumbnailImageUrl, type CurrentUser, type CurrentUserPresence, type DeleteAvatarData, type DeleteAvatarError, type DeleteAvatarErrors, type DeleteAvatarResponse, type DeleteAvatarResponses, type DeleteFileData, type DeleteFileError, type DeleteFileErrors, type DeleteFileResponse, type DeleteFileResponses, type DeleteFileVersionData, type DeleteFileVersionError, type DeleteFileVersionErrors, type DeleteFileVersionResponse, type DeleteFileVersionResponses, type DeleteFriendRequestData, type DeleteFriendRequestError, type DeleteFriendRequestErrors, type DeleteFriendRequestResponse, type DeleteFriendRequestResponses, type DeleteGroupAnnouncementData, type DeleteGroupAnnouncementError, type DeleteGroupAnnouncementErrors, type DeleteGroupAnnouncementResponse, type DeleteGroupAnnouncementResponses, type DeleteGroupCalendarEventData, type DeleteGroupCalendarEventError, type DeleteGroupCalendarEventErrors, type DeleteGroupCalendarEventResponse, type DeleteGroupCalendarEventResponses, type DeleteGroupData, type DeleteGroupError, type DeleteGroupErrors, type DeleteGroupGalleryData, type DeleteGroupGalleryError, type DeleteGroupGalleryErrors, type DeleteGroupGalleryImageData, type DeleteGroupGalleryImageError, type DeleteGroupGalleryImageErrors, type DeleteGroupGalleryImageResponse, type DeleteGroupGalleryImageResponses, type DeleteGroupGalleryResponse, type DeleteGroupGalleryResponses, type DeleteGroupInviteData, type DeleteGroupInviteError, type DeleteGroupInviteErrors, type DeleteGroupInviteResponses, type DeleteGroupPostData, type DeleteGroupPostError, type DeleteGroupPostErrors, type DeleteGroupPostResponse, type DeleteGroupPostResponses, type DeleteGroupResponse, type DeleteGroupResponses, type DeleteGroupRoleData, type DeleteGroupRoleError, type DeleteGroupRoleErrors, type DeleteGroupRoleResponse, type DeleteGroupRoleResponses, type DeleteImpostorData, type DeleteImpostorError, type DeleteImpostorErrors, type DeleteImpostorResponses, type DeleteNotificationData, type DeleteNotificationError, type DeleteNotificationErrors, type DeleteNotificationResponse, type DeleteNotificationResponses, type DeletePrintData, type DeletePrintError, type DeletePrintErrors, type DeletePrintResponses, type DeleteUserData, type DeleteUserError, type DeleteUserErrors, type DeleteUserPersistenceData, type DeleteUserPersistenceError, type DeleteUserPersistenceErrors, type DeleteUserPersistenceResponses, type DeleteUserResponse, type DeleteUserResponses, type DeleteWorldData, type DeleteWorldError, type DeleteWorldErrors, type DeleteWorldResponses, type DeveloperType, type Disable2FaData, type Disable2FaError, type Disable2FaErrors, type Disable2FaResponse, type Disable2FaResponses, type Disable2FaResult, type DisplayName, type DownloadFileVersionData, type DownloadFileVersionError, type DownloadFileVersionErrors, type DownloadFileVersionResponse, type DownloadFileVersionResponses, type DynamicContentRow, type EconomyAccount, type EditPrintData, type EditPrintError, type EditPrintErrors, type EditPrintResponse, type EditPrintResponses, type Email, type Enable2FaData, type Enable2FaError, type Enable2FaErrors, type Enable2FaResponse, type Enable2FaResponses, type EndDate, type EnqueueImpostorData, type EnqueueImpostorError, type EnqueueImpostorErrors, type EnqueueImpostorResponse, type EnqueueImpostorResponses, type EventTypes, type ExcludeUserId, type Favorite, type FavoriteGroup, type FavoriteGroupId, type FavoriteGroupLimits, type FavoriteGroupName, type FavoriteGroupType, type FavoriteGroupVisibility, type FavoriteId, type FavoriteId2, type FavoriteLimits, type FavoriteType, type FavoritedWorld, type Featured, type Feedback, type FeedbackId, type File, type FileAnalysis, type FileAnalysisAvatarStats, type FileData, type FileId, type FileId2, type FileStatus, type FileType, type FileUploadUrl, type FileVersion, type FileVersionUploadStatus, type FinishFileDataUploadData, type FinishFileDataUploadRequest, type FinishFileDataUploadResponse, type FinishFileDataUploadResponses, type FollowCalendarEventRequest, type FollowGroupCalendarEventData, type FollowGroupCalendarEventError, type FollowGroupCalendarEventErrors, type FollowGroupCalendarEventResponse, type FollowGroupCalendarEventResponses, type FriendData, type FriendError, type FriendErrors, type FriendResponse, type FriendResponses, type FriendStatus, type Fuzzy, type GetActiveLicensesData, type GetActiveLicensesError, type GetActiveLicensesErrors, type GetActiveLicensesResponse, type GetActiveLicensesResponses, type GetActiveWorldsData, type GetActiveWorldsError, type GetActiveWorldsErrors, type GetActiveWorldsResponse, type GetActiveWorldsResponses, type GetAdminAssetBundleData, type GetAdminAssetBundleResponse, type GetAdminAssetBundleResponses, type GetAssignedPermissionsData, type GetAssignedPermissionsError, type GetAssignedPermissionsErrors, type GetAssignedPermissionsResponse, type GetAssignedPermissionsResponses, type GetAvatarData, type GetAvatarError, type GetAvatarErrors, type GetAvatarResponse, type GetAvatarResponses, type GetAvatarStylesData, type GetAvatarStylesResponse, type GetAvatarStylesResponses, type GetBalanceData, type GetBalanceEarningsData, type GetBalanceEarningsError, type GetBalanceEarningsErrors, type GetBalanceEarningsResponse, type GetBalanceEarningsResponses, type GetBalanceError, type GetBalanceErrors, type GetBalanceResponse, type GetBalanceResponses, type GetCalendarEventsData, type GetCalendarEventsError, type GetCalendarEventsErrors, type GetCalendarEventsResponse, type GetCalendarEventsResponses, type GetConfigData, type GetConfigResponse, type GetConfigResponses, type GetCssData, type GetCssError, type GetCssErrors, type GetCssResponse, type GetCssResponses, type GetCurrentOnlineUsersData, type GetCurrentOnlineUsersResponse, type GetCurrentOnlineUsersResponses, type GetCurrentSubscriptionsData, type GetCurrentSubscriptionsError, type GetCurrentSubscriptionsErrors, type GetCurrentSubscriptionsResponse, type GetCurrentSubscriptionsResponses, type GetCurrentUserData, type GetCurrentUserError, type GetCurrentUserErrors, type GetCurrentUserResponse, type GetCurrentUserResponses, type GetEconomyAccountData, type GetEconomyAccountError, type GetEconomyAccountErrors, type GetEconomyAccountResponse, type GetEconomyAccountResponses, type GetFavoriteGroupData, type GetFavoriteGroupResponse, type GetFavoriteGroupResponses, type GetFavoriteGroupsData, type GetFavoriteGroupsError, type GetFavoriteGroupsErrors, type GetFavoriteGroupsResponse, type GetFavoriteGroupsResponses, type GetFavoriteLimitsData, type GetFavoriteLimitsError, type GetFavoriteLimitsErrors, type GetFavoriteLimitsResponse, type GetFavoriteLimitsResponses, type GetFavoritedAvatarsData, type GetFavoritedAvatarsError, type GetFavoritedAvatarsErrors, type GetFavoritedAvatarsResponse, type GetFavoritedAvatarsResponses, type GetFavoritedWorldsData, type GetFavoritedWorldsError, type GetFavoritedWorldsErrors, type GetFavoritedWorldsResponse, type GetFavoritedWorldsResponses, type GetFavoritesData, type GetFavoritesError, type GetFavoritesErrors, type GetFavoritesResponse, type GetFavoritesResponses, type GetFeaturedCalendarEventsData, type GetFeaturedCalendarEventsError, type GetFeaturedCalendarEventsErrors, type GetFeaturedCalendarEventsResponse, type GetFeaturedCalendarEventsResponses, type GetFileAnalysisData, type GetFileAnalysisError, type GetFileAnalysisErrors, type GetFileAnalysisResponse, type GetFileAnalysisResponses, type GetFileAnalysisSecurityData, type GetFileAnalysisSecurityError, type GetFileAnalysisSecurityErrors, type GetFileAnalysisSecurityResponse, type GetFileAnalysisSecurityResponses, type GetFileAnalysisStandardData, type GetFileAnalysisStandardError, type GetFileAnalysisStandardErrors, type GetFileAnalysisStandardResponse, type GetFileAnalysisStandardResponses, type GetFileData, type GetFileDataUploadStatusData, type GetFileDataUploadStatusResponse, type GetFileDataUploadStatusResponses, type GetFileError, type GetFileErrors, type GetFileResponse, type GetFileResponses, type GetFilesData, type GetFilesResponse, type GetFilesResponses, type GetFollowedCalendarEventsData, type GetFollowedCalendarEventsError, type GetFollowedCalendarEventsErrors, type GetFollowedCalendarEventsResponse, type GetFollowedCalendarEventsResponses, type GetFriendStatusData, type GetFriendStatusError, type GetFriendStatusErrors, type GetFriendStatusResponse, type GetFriendStatusResponses, type GetFriendsData, type GetFriendsError, type GetFriendsErrors, type GetFriendsResponse, type GetFriendsResponses, type GetGroupAnnouncementsData, type GetGroupAnnouncementsError, type GetGroupAnnouncementsErrors, type GetGroupAnnouncementsResponse, type GetGroupAnnouncementsResponses, type GetGroupAuditLogsData, type GetGroupAuditLogsError, type GetGroupAuditLogsErrors, type GetGroupAuditLogsResponse, type GetGroupAuditLogsResponses, type GetGroupBansData, type GetGroupBansError, type GetGroupBansErrors, type GetGroupBansResponse, type GetGroupBansResponses, type GetGroupCalendarEventData, type GetGroupCalendarEventError, type GetGroupCalendarEventErrors, type GetGroupCalendarEventIcsData, type GetGroupCalendarEventIcsError, type GetGroupCalendarEventIcsErrors, type GetGroupCalendarEventIcsResponse, type GetGroupCalendarEventIcsResponses, type GetGroupCalendarEventResponse, type GetGroupCalendarEventResponses, type GetGroupCalendarEventsData, type GetGroupCalendarEventsError, type GetGroupCalendarEventsErrors, type GetGroupCalendarEventsResponse, type GetGroupCalendarEventsResponses, type GetGroupData, type GetGroupError, type GetGroupErrors, type GetGroupGalleryImagesData, type GetGroupGalleryImagesError, type GetGroupGalleryImagesErrors, type GetGroupGalleryImagesResponse, type GetGroupGalleryImagesResponses, type GetGroupInstancesData, type GetGroupInstancesError, type GetGroupInstancesErrors, type GetGroupInstancesResponse, type GetGroupInstancesResponses, type GetGroupInvitesData, type GetGroupInvitesError, type GetGroupInvitesErrors, type GetGroupInvitesResponse, type GetGroupInvitesResponses, type GetGroupMemberData, type GetGroupMemberError, type GetGroupMemberErrors, type GetGroupMemberResponse, type GetGroupMemberResponses, type GetGroupMembersData, type GetGroupMembersError, type GetGroupMembersErrors, type GetGroupMembersResponse, type GetGroupMembersResponses, type GetGroupPermissionsData, type GetGroupPermissionsError, type GetGroupPermissionsErrors, type GetGroupPermissionsResponse, type GetGroupPermissionsResponses, type GetGroupPostsData, type GetGroupPostsError, type GetGroupPostsErrors, type GetGroupPostsResponse, type GetGroupPostsResponses, type GetGroupRequestsData, type GetGroupRequestsError, type GetGroupRequestsErrors, type GetGroupRequestsResponse, type GetGroupRequestsResponses, type GetGroupResponse, type GetGroupResponses, type GetGroupRoleTemplatesData, type GetGroupRoleTemplatesError, type GetGroupRoleTemplatesErrors, type GetGroupRoleTemplatesResponse, type GetGroupRoleTemplatesResponses, type GetGroupRolesData, type GetGroupRolesError, type GetGroupRolesErrors, type GetGroupRolesResponse, type GetGroupRolesResponses, type GetHealthData, type GetHealthResponse, type GetHealthResponses, type GetImpostorQueueStatsData, type GetImpostorQueueStatsError, type GetImpostorQueueStatsErrors, type GetImpostorQueueStatsResponse, type GetImpostorQueueStatsResponses, type GetInfoPushData, type GetInfoPushResponse, type GetInfoPushResponses, type GetInstanceByShortNameData, type GetInstanceByShortNameError, type GetInstanceByShortNameErrors, type GetInstanceByShortNameResponse, type GetInstanceByShortNameResponses, type GetInstanceData, type GetInstanceError, type GetInstanceErrors, type GetInstanceResponse, type GetInstanceResponses, type GetInventoryData, type GetInventoryDropsData, type GetInventoryDropsError, type GetInventoryDropsErrors, type GetInventoryDropsResponse, type GetInventoryDropsResponses, type GetInventoryError, type GetInventoryErrors, type GetInventoryResponse, type GetInventoryResponses, type GetInventoryTemplateData, type GetInventoryTemplateError, type GetInventoryTemplateErrors, type GetInventoryTemplateResponse, type GetInventoryTemplateResponses, type GetInviteMessageData, type GetInviteMessageError, type GetInviteMessageErrors, type GetInviteMessageResponse, type GetInviteMessageResponses, type GetInviteMessagesData, type GetInviteMessagesError, type GetInviteMessagesErrors, type GetInviteMessagesResponse, type GetInviteMessagesResponses, type GetJamData, type GetJamError, type GetJamErrors, type GetJamResponse, type GetJamResponses, type GetJamSubmissionsData, type GetJamSubmissionsError, type GetJamSubmissionsErrors, type GetJamSubmissionsResponse, type GetJamSubmissionsResponses, type GetJamsData, type GetJamsResponse, type GetJamsResponses, type GetJavaScriptData, type GetJavaScriptError, type GetJavaScriptErrors, type GetJavaScriptResponse, type GetJavaScriptResponses, type GetLicenseGroupData, type GetLicenseGroupError, type GetLicenseGroupErrors, type GetLicenseGroupResponse, type GetLicenseGroupResponses, type GetLicensedAvatarsData, type GetLicensedAvatarsError, type GetLicensedAvatarsErrors, type GetLicensedAvatarsResponse, type GetLicensedAvatarsResponses, type GetNotificationData, type GetNotificationError, type GetNotificationErrors, type GetNotificationResponse, type GetNotificationResponses, type GetNotificationsData, type GetNotificationsError, type GetNotificationsErrors, type GetNotificationsResponse, type GetNotificationsResponses, type GetOwnAvatarData, type GetOwnAvatarError, type GetOwnAvatarErrors, type GetOwnAvatarResponse, type GetOwnAvatarResponses, type GetOwnInventoryItemData, type GetOwnInventoryItemError, type GetOwnInventoryItemErrors, type GetOwnInventoryItemResponse, type GetOwnInventoryItemResponses, type GetPermissionData, type GetPermissionError, type GetPermissionErrors, type GetPermissionResponse, type GetPermissionResponses, type GetPlayerModerationsData, type GetPlayerModerationsError, type GetPlayerModerationsErrors, type GetPlayerModerationsResponse, type GetPlayerModerationsResponses, type GetPrintData, type GetPrintError, type GetPrintErrors, type GetPrintResponse, type GetPrintResponses, type GetProductListingData, type GetProductListingError, type GetProductListingErrors, type GetProductListingResponse, type GetProductListingResponses, type GetProductListingsData, type GetProductListingsError, type GetProductListingsErrors, type GetProductListingsResponse, type GetProductListingsResponses, type GetPropData, type GetPropError, type GetPropErrors, type GetPropResponse, type GetPropResponses, type GetRecentLocationsData, type GetRecentLocationsError, type GetRecentLocationsErrors, type GetRecentLocationsResponse, type GetRecentLocationsResponses, type GetRecentWorldsData, type GetRecentWorldsError, type GetRecentWorldsErrors, type GetRecentWorldsResponse, type GetRecentWorldsResponses, type GetRecoveryCodesData, type GetRecoveryCodesError, type GetRecoveryCodesErrors, type GetRecoveryCodesResponse, type GetRecoveryCodesResponses, type GetShortNameData, type GetShortNameError, type GetShortNameErrors, type GetShortNameResponse, type GetShortNameResponses, type GetSteamTransactionData, type GetSteamTransactionError, type GetSteamTransactionErrors, type GetSteamTransactionResponse, type GetSteamTransactionResponses, type GetSteamTransactionsData, type GetSteamTransactionsError, type GetSteamTransactionsErrors, type GetSteamTransactionsResponse, type GetSteamTransactionsResponses, type GetStoreData, type GetStoreError, type GetStoreErrors, type GetStoreResponse, type GetStoreResponses, type GetStoreShelvesData, type GetStoreShelvesError, type GetStoreShelvesErrors, type GetStoreShelvesResponse, type GetStoreShelvesResponses, type GetSubscriptionsData, type GetSubscriptionsError, type GetSubscriptionsErrors, type GetSubscriptionsResponse, type GetSubscriptionsResponses, type GetSystemTimeData, type GetSystemTimeResponse, type GetSystemTimeResponses, type GetTiliaStatusData, type GetTiliaStatusError, type GetTiliaStatusErrors, type GetTiliaStatusResponse, type GetTiliaStatusResponses, type GetTiliaTosData, type GetTiliaTosError, type GetTiliaTosErrors, type GetTiliaTosResponse, type GetTiliaTosResponses, type GetTokenBundlesData, type GetTokenBundlesError, type GetTokenBundlesErrors, type GetTokenBundlesResponse, type GetTokenBundlesResponses, type GetUserByNameData, type GetUserByNameError, type GetUserByNameErrors, type GetUserByNameResponse, type GetUserByNameResponses, type GetUserData, type GetUserError, type GetUserErrors, type GetUserFeedbackData, type GetUserFeedbackError, type GetUserFeedbackErrors, type GetUserFeedbackResponse, type GetUserFeedbackResponses, type GetUserGroupInstancesData, type GetUserGroupInstancesError, type GetUserGroupInstancesErrors, type GetUserGroupInstancesResponse, type GetUserGroupInstancesResponses, type GetUserGroupRequestsData, type GetUserGroupRequestsError, type GetUserGroupRequestsErrors, type GetUserGroupRequestsResponse, type GetUserGroupRequestsResponses, type GetUserGroupsData, type GetUserGroupsError, type GetUserGroupsErrors, type GetUserGroupsResponse, type GetUserGroupsResponses, type GetUserNoteData, type GetUserNoteError, type GetUserNoteErrors, type GetUserNoteResponse, type GetUserNoteResponses, type GetUserNotesData, type GetUserNotesError, type GetUserNotesErrors, type GetUserNotesResponse, type GetUserNotesResponses, type GetUserPrintsData, type GetUserPrintsError, type GetUserPrintsErrors, type GetUserPrintsResponse, type GetUserPrintsResponses, type GetUserRepresentedGroupData, type GetUserRepresentedGroupError, type GetUserRepresentedGroupErrors, type GetUserRepresentedGroupResponse, type GetUserRepresentedGroupResponses, type GetUserResponse, type GetUserResponses, type GetUserSubscriptionEligibleData, type GetUserSubscriptionEligibleError, type GetUserSubscriptionEligibleErrors, type GetUserSubscriptionEligibleResponse, type GetUserSubscriptionEligibleResponses, type GetWorldData, type GetWorldError, type GetWorldErrors, type GetWorldInstanceData, type GetWorldInstanceError, type GetWorldInstanceErrors, type GetWorldInstanceResponse, type GetWorldInstanceResponses, type GetWorldMetadataData, type GetWorldMetadataError, type GetWorldMetadataErrors, type GetWorldMetadataResponse, type GetWorldMetadataResponses, type GetWorldPublishStatusData, type GetWorldPublishStatusError, type GetWorldPublishStatusErrors, type GetWorldPublishStatusResponse, type GetWorldPublishStatusResponses, type GetWorldResponse, type GetWorldResponses, type Group, type GroupAccessType, type GroupAnnouncement, type GroupAnnouncementId, type GroupAuditLogEntry, type GroupAuditLogId, type GroupDiscriminator, type GroupGallery, type GroupGalleryId, type GroupGalleryId2, type GroupGalleryImage, type GroupGalleryImageId, type GroupGalleryImageId2, type GroupId, type GroupId2, type GroupIdFilter, type GroupInstance, type GroupJoinRequestAction, type GroupJoinState, type GroupLimitedMember, type GroupMember, type GroupMemberId, type GroupMemberLimitedUser, type GroupMemberRoleFilter, type GroupMemberSort, type GroupMemberStatus, type GroupMyMember, type GroupPermission, type GroupPermissions, type GroupPost, type GroupPostVisibility, type GroupPrivacy, type GroupRole, type GroupRoleId, type GroupRoleId2, type GroupRoleIdList, type GroupRoleTemplate, type GroupRoleTemplateValues, type GroupSearchSort, type GroupShortCode, type GroupUserVisibility, type Hydrate, type HydrateListings, type HydrateProducts, type Include, type InfoPush, type InfoPushData, type InfoPushDataArticle, type InfoPushDataArticleContent, type InfoPushDataClickable, type Instance, type InstanceContentSettings, type InstanceId, type InstanceId2, type InstanceOwnerId, type InstancePlatforms, type InstanceRegion, type InstanceShortNameResponse, type InstanceType, type Inventory, type InventoryDrop, type InventoryDropId, type InventoryFlag, type InventoryItem, type InventoryItemArchived, type InventoryItemFlags, type InventoryItemId, type InventoryItemId2, type InventoryItemNotFlags, type InventoryItemNotTypes, type InventoryItemTags, type InventoryItemType, type InventoryItemTypes, type InventoryMetadata, type InventoryNotificationDetails, type InventoryPedestalDuration, type InventoryPedestalItemId, type InventorySortOrder, type InventorySpawn, type InventorySpawnItemId, type InventoryTemplate, type InventoryTemplateId, type InventoryTemplateId2, type InviteMessage, type InviteMessageId, type InviteMessageType, type InviteMyselfToData, type InviteMyselfToError, type InviteMyselfToErrors, type InviteMyselfToResponse, type InviteMyselfToResponses, type InviteRequest, type InviteResponse, type InviteUserData, type InviteUserError, type InviteUserErrors, type InviteUserResponse, type InviteUserResponses, type InviteUserWithPhotoData, type InviteUserWithPhotoError, type InviteUserWithPhotoErrors, type InviteUserWithPhotoResponse, type InviteUserWithPhotoResponses, type Jam, type JamId, type JoinGroupData, type JoinGroupError, type JoinGroupErrors, type JoinGroupResponse, type JoinGroupResponses, type KickGroupMemberData, type KickGroupMemberError, type KickGroupMemberErrors, type KickGroupMemberResponses, type LeaveGroupData, type LeaveGroupError, type LeaveGroupErrors, type LeaveGroupResponses, type License, type LicenseAction, type LicenseGroup, type LicenseGroupId, type LicenseGroupId2, type LicenseType, type LimitedGroup, type LimitedUnityPackage, type LimitedUserFriend, type LimitedUserGroups, type LimitedUserInstance, type LimitedUserSearch, type LimitedWorld, type LocalDateTime, type LocationId, type LoginCredentials, type LogoutData, type LogoutError, type LogoutErrors, type LogoutResponse, type LogoutResponses, type MarkNotificationAsReadData, type MarkNotificationAsReadError, type MarkNotificationAsReadErrors, type MarkNotificationAsReadResponse, type MarkNotificationAsReadResponses, type MaxUnityVersion, type MessageType, type MimeType, type MinUnityVersion, type ModerateUserData, type ModerateUserError, type ModerateUserErrors, type ModerateUserRequest, type ModerateUserResponse, type ModerateUserResponses, type MonthDate, type Notag, type Notification, type NotificationDetailInvite, type NotificationDetailInviteResponse, type NotificationDetailRequestInvite, type NotificationDetailRequestInviteResponse, type NotificationDetailVoteToKick, type NotificationId, type NotificationId2, type NotificationType, type Number, type Offline, type Offset, type OkStatus, type Order, type OrderOption, type PaginatedCalendarEventList, type PaginatedGroupAuditLogEntryList, type PastDisplayName, type Pending2FaResult, type PerformanceLimiterInfo, type PerformanceRatings, type Permission, type PermissionId, type PermissionId2, type Platform, type Platform2, type PlatformBuildInfo, type PlayerModeration, type PlayerModerationId, type PlayerModerationType, type Print, type PrintId, type PrintId2, type Product, type ProductId, type ProductId2, type ProductListing, type ProductListingType, type ProductListingVariant, type ProductListingVariantId, type ProductType, type Prop, type PropId, type PropId2, type PropUnityPackage, type PublishWorldData, type PublishWorldError, type PublishWorldErrors, type PublishWorldResponses, type Region, type RegisterUserAccountData, type RegisterUserAccountError, type RegisterUserAccountErrors, type RegisterUserAccountRequest, type RegisterUserAccountResponse, type RegisterUserAccountResponses, type ReleaseStatus, type ReleaseStatus2, type RemoveFavoriteData, type RemoveFavoriteError, type RemoveFavoriteErrors, type RemoveFavoriteResponse, type RemoveFavoriteResponses, type RemoveGroupMemberRoleData, type RemoveGroupMemberRoleError, type RemoveGroupMemberRoleErrors, type RemoveGroupMemberRoleResponse, type RemoveGroupMemberRoleResponses, type RemoveTagsData, type RemoveTagsError, type RemoveTagsErrors, type RemoveTagsResponse, type RemoveTagsResponses, type ReportCategory, type ReportReason, type RepresentedGroup, type RequestInviteData, type RequestInviteError, type RequestInviteErrors, type RequestInviteRequest, type RequestInviteResponse, type RequestInviteResponses, type RequestInviteWithPhotoData, type RequestInviteWithPhotoError, type RequestInviteWithPhotoErrors, type RequestInviteWithPhotoResponse, type RequestInviteWithPhotoResponses, type Require, type ResendEmailConfirmationData, type ResendEmailConfirmationError, type ResendEmailConfirmationErrors, type ResendEmailConfirmationResponse, type ResendEmailConfirmationResponses, type ResetInviteMessageData, type ResetInviteMessageError, type ResetInviteMessageErrors, type ResetInviteMessageResponse, type ResetInviteMessageResponses, type RespondGroupJoinRequest, type RespondGroupJoinRequestData, type RespondGroupJoinRequestError, type RespondGroupJoinRequestErrors, type RespondGroupJoinRequestResponses, type RespondInviteData, type RespondInviteError, type RespondInviteErrors, type RespondInviteResponse, type RespondInviteResponses, type RespondInviteWithPhotoData, type RespondInviteWithPhotoError, type RespondInviteWithPhotoErrors, type RespondInviteWithPhotoResponse, type RespondInviteWithPhotoResponses, type Response$1 as Response, type Search, type SearchAvatarsData, type SearchAvatarsError, type SearchAvatarsErrors, type SearchAvatarsResponse, type SearchAvatarsResponses, type SearchCalendarEventsData, type SearchCalendarEventsError, type SearchCalendarEventsErrors, type SearchCalendarEventsResponse, type SearchCalendarEventsResponses, type SearchGroupsData, type SearchGroupsError, type SearchGroupsErrors, type SearchGroupsResponse, type SearchGroupsResponses, type SearchUsersData, type SearchUsersError, type SearchUsersErrors, type SearchUsersResponse, type SearchUsersResponses, type SearchWorldsData, type SearchWorldsError, type SearchWorldsErrors, type SearchWorldsResponse, type SearchWorldsResponses, type SelectAvatarData, type SelectAvatarError, type SelectAvatarErrors, type SelectAvatarResponse, type SelectAvatarResponses, type SelectFallbackAvatarData, type SelectFallbackAvatarError, type SelectFallbackAvatarErrors, type SelectFallbackAvatarResponse, type SelectFallbackAvatarResponses, type SentNotification, type ServiceQueueStats, type ServiceStatus, type ShareInventoryItemDirectData, type ShareInventoryItemDirectError, type ShareInventoryItemDirectErrors, type ShareInventoryItemDirectRequest, type ShareInventoryItemDirectResponse, type ShareInventoryItemDirectResponses, type ShareInventoryItemPedestalData, type ShareInventoryItemPedestalError, type ShareInventoryItemPedestalErrors, type ShareInventoryItemPedestalResponse, type ShareInventoryItemPedestalResponses, type Slot, type Sort, type SortOption, type SpawnInventoryItemData, type SpawnInventoryItemError, type SpawnInventoryItemErrors, type SpawnInventoryItemResponse, type SpawnInventoryItemResponses, type StartDate, type StartFileDataUploadData, type StartFileDataUploadError, type StartFileDataUploadErrors, type StartFileDataUploadResponse, type StartFileDataUploadResponses, type SteamId, type Store, type StoreId, type StoreId2, type StoreShelf, type StoreShelfId, type StoreType, type StoreView, type StoreView2, type Submission, type Subscription, type SubscriptionPeriod, type Success, type Tag, type Tag2, type TargetIds, type TiliaStatus, type TiliaTos, type TokenBundle, type Transaction, type TransactionAgreement, type TransactionId, type TransactionId2, type TransactionStatus, type TransactionSteamInfo, type TransactionSteamWalletInfo, type TwoFactorAuthCode, type TwoFactorEmailCode, TwoFactorMethods, type TwoFactorRecoveryCodes, type UdonProductId, type UnbanGroupMemberData, type UnbanGroupMemberError, type UnbanGroupMemberErrors, type UnbanGroupMemberResponse, type UnbanGroupMemberResponses, type UnfriendData, type UnfriendError, type UnfriendErrors, type UnfriendResponse, type UnfriendResponses, type UnityPackage, type UnityPackageId, type UnmoderateUserData, type UnmoderateUserError, type UnmoderateUserErrors, type UnmoderateUserResponse, type UnmoderateUserResponses, type UnpublishWorldData, type UnpublishWorldError, type UnpublishWorldErrors, type UnpublishWorldResponses, type UpdateAvatarData, type UpdateAvatarError, type UpdateAvatarErrors, type UpdateAvatarRequest, type UpdateAvatarResponse, type UpdateAvatarResponses, type UpdateBadgeData, type UpdateBadgeError, type UpdateBadgeErrors, type UpdateBadgeResponses, type UpdateCalendarEventRequest, type UpdateFavoriteGroupData, type UpdateFavoriteGroupRequest, type UpdateFavoriteGroupResponses, type UpdateGroupCalendarEventData, type UpdateGroupCalendarEventError, type UpdateGroupCalendarEventErrors, type UpdateGroupCalendarEventResponse, type UpdateGroupCalendarEventResponses, type UpdateGroupData, type UpdateGroupError, type UpdateGroupErrors, type UpdateGroupGalleryData, type UpdateGroupGalleryError, type UpdateGroupGalleryErrors, type UpdateGroupGalleryRequest, type UpdateGroupGalleryResponse, type UpdateGroupGalleryResponses, type UpdateGroupMemberData, type UpdateGroupMemberError, type UpdateGroupMemberErrors, type UpdateGroupMemberRequest, type UpdateGroupMemberResponse, type UpdateGroupMemberResponses, type UpdateGroupPostData, type UpdateGroupPostError, type UpdateGroupPostErrors, type UpdateGroupPostResponse, type UpdateGroupPostResponses, type UpdateGroupRepresentationData, type UpdateGroupRepresentationError, type UpdateGroupRepresentationErrors, type UpdateGroupRepresentationResponse, type UpdateGroupRepresentationResponses, type UpdateGroupRequest, type UpdateGroupResponse, type UpdateGroupResponses, type UpdateGroupRoleData, type UpdateGroupRoleError, type UpdateGroupRoleErrors, type UpdateGroupRoleRequest, type UpdateGroupRoleResponse, type UpdateGroupRoleResponses, type UpdateInventoryItemRequest, type UpdateInviteMessageData, type UpdateInviteMessageError, type UpdateInviteMessageErrors, type UpdateInviteMessageRequest, type UpdateInviteMessageResponse, type UpdateInviteMessageResponses, type UpdateOwnInventoryItemData, type UpdateOwnInventoryItemError, type UpdateOwnInventoryItemErrors, type UpdateOwnInventoryItemResponse, type UpdateOwnInventoryItemResponses, type UpdateUserBadgeRequest, type UpdateUserData, type UpdateUserError, type UpdateUserErrors, type UpdateUserNoteData, type UpdateUserNoteError, type UpdateUserNoteErrors, type UpdateUserNoteRequest, type UpdateUserNoteResponse, type UpdateUserNoteResponses, type UpdateUserRequest, type UpdateUserResponse, type UpdateUserResponses, type UpdateWorldData, type UpdateWorldError, type UpdateWorldErrors, type UpdateWorldRequest, type UpdateWorldResponse, type UpdateWorldResponses, type UploadGalleryImageData, type UploadGalleryImageResponse, type UploadGalleryImageResponses, type UploadIconData, type UploadIconResponse, type UploadIconResponses, type UploadImageData, type UploadImageResponse, type UploadImageResponses, type UploadPrintData, type UploadPrintError, type UploadPrintErrors, type UploadPrintResponse, type UploadPrintResponses, type User, type UserExists, type UserId, type UserId2, type UserIdAdmin, type UserIdQuery, type UserNote, type UserNoteId, type UserNoteId2, type UserState, type UserStatus, type UserSubscription, type UserSubscriptionEligible, type UsernameQuery, type UtcOffset, VRChat, VRChatError, type VRChatOptions, type Variant, type Verify2FaData, type Verify2FaEmailCodeData, type Verify2FaEmailCodeError, type Verify2FaEmailCodeErrors, type Verify2FaEmailCodeResponse, type Verify2FaEmailCodeResponses, type Verify2FaEmailCodeResult, type Verify2FaError, type Verify2FaErrors, type Verify2FaResponse, type Verify2FaResponses, type Verify2FaResult, type VerifyAuthTokenData, type VerifyAuthTokenError, type VerifyAuthTokenErrors, type VerifyAuthTokenResponse, type VerifyAuthTokenResponses, type VerifyAuthTokenResult, type VerifyLoginPlaceData, type VerifyLoginPlaceToken, type VerifyPending2FaData, type VerifyPending2FaError, type VerifyPending2FaErrors, type VerifyPending2FaResponse, type VerifyPending2FaResponses, type VerifyRecoveryCodeData, type VerifyRecoveryCodeError, type VerifyRecoveryCodeErrors, type VerifyRecoveryCodeResponse, type VerifyRecoveryCodeResponses, type VersionId, type World, type WorldId, type WorldId2, type WorldMetadata, type WorldPublishStatus, baseUrl };
|