vrchat 2.20.7-nightly.31 → 2.20.7-nightly.32
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/{client-DPteaA03.d.mts → client-JjkmMGls.d.mts} +1398 -167
- package/dist/{client-DPteaA03.d.ts → client-JjkmMGls.d.ts} +1398 -167
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +278 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +278 -3
- package/dist/index.mjs.map +1 -1
- package/dist/types.d.mts +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/websocket.d.mts +1 -1
- package/dist/websocket.d.ts +1 -1
- package/package.json +1 -1
|
@@ -460,7 +460,7 @@ type Tag = string;
|
|
|
460
460
|
/**
|
|
461
461
|
* Platform
|
|
462
462
|
*
|
|
463
|
-
* This is normally `android`, `ios`, `standalonewindows`, `web`, or the empty value ``, but also supposedly can be any random Unity
|
|
463
|
+
* This is normally `android`, `ios`, `standalonewindows`, `web`, or the empty value ``, but also supposedly can be any random Unity version such as `2019.2.4-801-Release` or `2019.2.2-772-Release` or even `unknownplatform`.
|
|
464
464
|
*/
|
|
465
465
|
type Platform = string;
|
|
466
466
|
/**
|
|
@@ -491,6 +491,77 @@ type AdminAssetBundle = {
|
|
|
491
491
|
unityPackageUrl: string | null;
|
|
492
492
|
unityPackages: Array<AdminUnityPackage>;
|
|
493
493
|
};
|
|
494
|
+
/**
|
|
495
|
+
* AgreementCode
|
|
496
|
+
*
|
|
497
|
+
* The type of agreement.
|
|
498
|
+
*/
|
|
499
|
+
type AgreementCode = 'content.copyright.owned';
|
|
500
|
+
/**
|
|
501
|
+
* AgreementStatus
|
|
502
|
+
*/
|
|
503
|
+
type AgreementStatus = {
|
|
504
|
+
/**
|
|
505
|
+
* Whether the user has agreed for this content.
|
|
506
|
+
*/
|
|
507
|
+
agreed: boolean;
|
|
508
|
+
agreementCode: AgreementCode;
|
|
509
|
+
/**
|
|
510
|
+
* The id of the content being uploaded, such as a WorldID, AvatarID, or PropID.
|
|
511
|
+
*/
|
|
512
|
+
contentId: string;
|
|
513
|
+
userId: UserId;
|
|
514
|
+
/**
|
|
515
|
+
* The version of the agreement.
|
|
516
|
+
*/
|
|
517
|
+
version: number;
|
|
518
|
+
};
|
|
519
|
+
/**
|
|
520
|
+
* AgreementRequest
|
|
521
|
+
*/
|
|
522
|
+
type AgreementRequest = {
|
|
523
|
+
agreementCode: AgreementCode;
|
|
524
|
+
/**
|
|
525
|
+
* The full text of the agreement (currently `By clicking OK, I certify that I have the necessary rights to upload this content and that it will not infringe on any third-party legal or intellectual property rights.`).
|
|
526
|
+
*/
|
|
527
|
+
agreementFulltext: string;
|
|
528
|
+
/**
|
|
529
|
+
* The id of the content being uploaded, such as a WorldID, AvatarID, or PropID.
|
|
530
|
+
*/
|
|
531
|
+
contentId: string;
|
|
532
|
+
/**
|
|
533
|
+
* The version of the agreement (currently `1`).
|
|
534
|
+
*/
|
|
535
|
+
version: number;
|
|
536
|
+
};
|
|
537
|
+
/**
|
|
538
|
+
* Agreement
|
|
539
|
+
*/
|
|
540
|
+
type Agreement = {
|
|
541
|
+
agreementCode: AgreementCode;
|
|
542
|
+
/**
|
|
543
|
+
* The full text of the agreement.
|
|
544
|
+
*/
|
|
545
|
+
agreementFulltext?: string;
|
|
546
|
+
/**
|
|
547
|
+
* The id of the content being uploaded, such as a WorldID, AvatarID, or PropID.
|
|
548
|
+
*/
|
|
549
|
+
contentId: string;
|
|
550
|
+
/**
|
|
551
|
+
* When the agreement was created
|
|
552
|
+
*/
|
|
553
|
+
created: string;
|
|
554
|
+
/**
|
|
555
|
+
* The id of the agreement.
|
|
556
|
+
*/
|
|
557
|
+
id: string;
|
|
558
|
+
tags: Array<Tag>;
|
|
559
|
+
userId: UserId;
|
|
560
|
+
/**
|
|
561
|
+
* The version of the agreement.
|
|
562
|
+
*/
|
|
563
|
+
version: number;
|
|
564
|
+
};
|
|
494
565
|
/**
|
|
495
566
|
* FileAnalysisAvatarStats
|
|
496
567
|
*/
|
|
@@ -552,6 +623,12 @@ type FileAnalysis = {
|
|
|
552
623
|
success: boolean;
|
|
553
624
|
uncompressedSize: number;
|
|
554
625
|
};
|
|
626
|
+
/**
|
|
627
|
+
* UpdateAssetReviewNotesRequest
|
|
628
|
+
*/
|
|
629
|
+
type UpdateAssetReviewNotesRequest = {
|
|
630
|
+
reviewNotes: string;
|
|
631
|
+
};
|
|
555
632
|
/**
|
|
556
633
|
* VerifyAuthTokenResult
|
|
557
634
|
*/
|
|
@@ -574,6 +651,10 @@ type UserExists = {
|
|
|
574
651
|
*/
|
|
575
652
|
userExists: boolean;
|
|
576
653
|
};
|
|
654
|
+
/**
|
|
655
|
+
* BadgeID
|
|
656
|
+
*/
|
|
657
|
+
type BadgeId = string;
|
|
577
658
|
/**
|
|
578
659
|
* PermissionID
|
|
579
660
|
*/
|
|
@@ -582,8 +663,34 @@ type PermissionId = string;
|
|
|
582
663
|
* Permission
|
|
583
664
|
*/
|
|
584
665
|
type Permission = {
|
|
666
|
+
/**
|
|
667
|
+
* Specific values afforded the user by this permission
|
|
668
|
+
*/
|
|
585
669
|
data?: {
|
|
670
|
+
/**
|
|
671
|
+
* Badges afforded the user by this permission
|
|
672
|
+
*/
|
|
673
|
+
badges?: Array<BadgeId>;
|
|
674
|
+
/**
|
|
675
|
+
* Maximum value afforded the user by this permission
|
|
676
|
+
*/
|
|
586
677
|
max?: number;
|
|
678
|
+
/**
|
|
679
|
+
* Maximum favorite groups afforded the user by this permission
|
|
680
|
+
*/
|
|
681
|
+
maxFavoriteGroups?: {
|
|
682
|
+
[key: string]: number;
|
|
683
|
+
};
|
|
684
|
+
/**
|
|
685
|
+
* Maximum favorites per group afforded the user by this permission
|
|
686
|
+
*/
|
|
687
|
+
maxFavoritesPerGroup?: {
|
|
688
|
+
[key: string]: number;
|
|
689
|
+
};
|
|
690
|
+
/**
|
|
691
|
+
* Tags afforded the user by this permission
|
|
692
|
+
*/
|
|
693
|
+
tags?: Array<Tag>;
|
|
587
694
|
};
|
|
588
695
|
description?: string;
|
|
589
696
|
displayName?: string;
|
|
@@ -666,10 +773,6 @@ type AgeVerificationStatus = '18+' | 'hidden' | 'verified';
|
|
|
666
773
|
* `true` if, user is age verified (not 18+).
|
|
667
774
|
*/
|
|
668
775
|
type AgeVerified = boolean;
|
|
669
|
-
/**
|
|
670
|
-
* BadgeID
|
|
671
|
-
*/
|
|
672
|
-
type BadgeId = string;
|
|
673
776
|
/**
|
|
674
777
|
* Badge
|
|
675
778
|
*/
|
|
@@ -1016,6 +1119,7 @@ type OkStatus2 = {
|
|
|
1016
1119
|
type FavoriteGroupLimits = {
|
|
1017
1120
|
avatar: number;
|
|
1018
1121
|
friend: number;
|
|
1122
|
+
vrcPlusWorld: number;
|
|
1019
1123
|
world: number;
|
|
1020
1124
|
};
|
|
1021
1125
|
/**
|
|
@@ -1223,6 +1327,10 @@ type UnityPackage = {
|
|
|
1223
1327
|
*/
|
|
1224
1328
|
type Avatar = {
|
|
1225
1329
|
acknowledgements?: string;
|
|
1330
|
+
/**
|
|
1331
|
+
* Only present for the avatar author on avatars under active review.
|
|
1332
|
+
*/
|
|
1333
|
+
activeAssetReviewId?: string;
|
|
1226
1334
|
/**
|
|
1227
1335
|
* Not present from general search `/avatars`, only on specific requests `/avatars/{avatarId}`.
|
|
1228
1336
|
*/
|
|
@@ -1246,6 +1354,7 @@ type Avatar = {
|
|
|
1246
1354
|
lock?: boolean;
|
|
1247
1355
|
lowestPrice?: number;
|
|
1248
1356
|
name: string;
|
|
1357
|
+
pendingUpload?: boolean;
|
|
1249
1358
|
performance: {
|
|
1250
1359
|
android?: string;
|
|
1251
1360
|
'android-sort'?: number;
|
|
@@ -1610,6 +1719,57 @@ type ApiConfigAnnouncement = {
|
|
|
1610
1719
|
*/
|
|
1611
1720
|
text: string;
|
|
1612
1721
|
};
|
|
1722
|
+
/**
|
|
1723
|
+
* APIConfigAudioConfig
|
|
1724
|
+
*
|
|
1725
|
+
* Global configuration for Steam Audio
|
|
1726
|
+
*/
|
|
1727
|
+
type ApiConfigAudioConfig = {
|
|
1728
|
+
/**
|
|
1729
|
+
* Unknown
|
|
1730
|
+
*/
|
|
1731
|
+
eq: number;
|
|
1732
|
+
/**
|
|
1733
|
+
* Unknown
|
|
1734
|
+
*/
|
|
1735
|
+
nearFieldILDNudge: number;
|
|
1736
|
+
/**
|
|
1737
|
+
* Unknown
|
|
1738
|
+
*/
|
|
1739
|
+
nearFieldILDNudgeDistance: number;
|
|
1740
|
+
/**
|
|
1741
|
+
* Unknown
|
|
1742
|
+
*/
|
|
1743
|
+
nearFieldILDNudgeEarRadius: number;
|
|
1744
|
+
/**
|
|
1745
|
+
* Unknown
|
|
1746
|
+
*/
|
|
1747
|
+
perEarDirectionalityEarRadius: number;
|
|
1748
|
+
/**
|
|
1749
|
+
* Unknown
|
|
1750
|
+
*/
|
|
1751
|
+
perEarDirectionalityFadeDistance: number;
|
|
1752
|
+
/**
|
|
1753
|
+
* Unknown
|
|
1754
|
+
*/
|
|
1755
|
+
perEarDirectionalityMaxScale: number;
|
|
1756
|
+
/**
|
|
1757
|
+
* Unknown
|
|
1758
|
+
*/
|
|
1759
|
+
perEarDirectionalityPCFactor: number;
|
|
1760
|
+
/**
|
|
1761
|
+
* Unknown
|
|
1762
|
+
*/
|
|
1763
|
+
trackingScaleMax: number;
|
|
1764
|
+
/**
|
|
1765
|
+
* Unknown
|
|
1766
|
+
*/
|
|
1767
|
+
trackingScaleMin: number;
|
|
1768
|
+
/**
|
|
1769
|
+
* Unknown
|
|
1770
|
+
*/
|
|
1771
|
+
trackingScaleMultiplier: number;
|
|
1772
|
+
};
|
|
1613
1773
|
/**
|
|
1614
1774
|
* PerformanceLimiterInfo
|
|
1615
1775
|
*
|
|
@@ -1818,6 +1978,10 @@ type ApiConfigEvents = {
|
|
|
1818
1978
|
* Unknown
|
|
1819
1979
|
*/
|
|
1820
1980
|
slowUpdateFactorThreshold: number;
|
|
1981
|
+
/**
|
|
1982
|
+
* Unknown
|
|
1983
|
+
*/
|
|
1984
|
+
useDirectPlayerSerialization: boolean;
|
|
1821
1985
|
/**
|
|
1822
1986
|
* Unknown
|
|
1823
1987
|
*/
|
|
@@ -1878,8 +2042,22 @@ type ReportReason = {
|
|
|
1878
2042
|
};
|
|
1879
2043
|
/**
|
|
1880
2044
|
* APIConfig
|
|
2045
|
+
*
|
|
2046
|
+
* Global configuration for various features.
|
|
1881
2047
|
*/
|
|
1882
2048
|
type ApiConfig = {
|
|
2049
|
+
/**
|
|
2050
|
+
* The current platform-wide event taking place
|
|
2051
|
+
*/
|
|
2052
|
+
CampaignStatus: string;
|
|
2053
|
+
/**
|
|
2054
|
+
* Toggles if certain assets are preloaded in the background
|
|
2055
|
+
*/
|
|
2056
|
+
DisableBackgroundPreloads: boolean;
|
|
2057
|
+
/**
|
|
2058
|
+
* Toggles whether users without a current VRC+ subscription are priority recipients for gift drops
|
|
2059
|
+
*/
|
|
2060
|
+
LocationGiftingNonSubPrioEnabled: boolean;
|
|
1883
2061
|
/**
|
|
1884
2062
|
* Unknown, probably voice optimization testing
|
|
1885
2063
|
*/
|
|
@@ -1921,6 +2099,7 @@ type ApiConfig = {
|
|
|
1921
2099
|
* Public Announcements
|
|
1922
2100
|
*/
|
|
1923
2101
|
announcements: Array<ApiConfigAnnouncement>;
|
|
2102
|
+
audioConfig?: ApiConfigAudioConfig;
|
|
1924
2103
|
/**
|
|
1925
2104
|
* List of supported Languages
|
|
1926
2105
|
*/
|
|
@@ -2014,10 +2193,14 @@ type ApiConfig = {
|
|
|
2014
2193
|
* VRChat's copyright-issues-related email
|
|
2015
2194
|
*/
|
|
2016
2195
|
copyrightEmail: string;
|
|
2196
|
+
/**
|
|
2197
|
+
* VRChat's DMCA claim webform url
|
|
2198
|
+
*/
|
|
2199
|
+
copyrightFormUrl: string;
|
|
2017
2200
|
/**
|
|
2018
2201
|
* Current version number of the Privacy Agreement
|
|
2019
2202
|
*/
|
|
2020
|
-
currentPrivacyVersion
|
|
2203
|
+
currentPrivacyVersion: number;
|
|
2021
2204
|
/**
|
|
2022
2205
|
* Current version number of the Terms of Service
|
|
2023
2206
|
*/
|
|
@@ -2130,15 +2313,31 @@ type ApiConfig = {
|
|
|
2130
2313
|
/**
|
|
2131
2314
|
* Unknown
|
|
2132
2315
|
*/
|
|
2133
|
-
|
|
2316
|
+
economyLedgerBackfill: boolean;
|
|
2134
2317
|
/**
|
|
2135
2318
|
* Unknown
|
|
2136
2319
|
*/
|
|
2137
|
-
|
|
2320
|
+
economyLedgerMigrationStop: string;
|
|
2138
2321
|
/**
|
|
2139
2322
|
* Unknown
|
|
2140
2323
|
*/
|
|
2141
|
-
|
|
2324
|
+
economyLedgerMode: string;
|
|
2325
|
+
/**
|
|
2326
|
+
* Unknown
|
|
2327
|
+
*/
|
|
2328
|
+
economyPauseEnd: Date;
|
|
2329
|
+
/**
|
|
2330
|
+
* Unknown
|
|
2331
|
+
*/
|
|
2332
|
+
economyPauseStart: Date;
|
|
2333
|
+
/**
|
|
2334
|
+
* Unknown
|
|
2335
|
+
*/
|
|
2336
|
+
economyPurchaseRepairEnabled: boolean;
|
|
2337
|
+
/**
|
|
2338
|
+
* Unknown
|
|
2339
|
+
*/
|
|
2340
|
+
economyState: number;
|
|
2142
2341
|
events: ApiConfigEvents;
|
|
2143
2342
|
/**
|
|
2144
2343
|
* Unknown
|
|
@@ -2162,10 +2361,29 @@ type ApiConfig = {
|
|
|
2162
2361
|
* A list of explicitly allowed origins that worlds can request images from via the Udon's [VRCImageDownloader#DownloadImage](https://creators.vrchat.com/worlds/udon/image-loading/#downloadimage).
|
|
2163
2362
|
*/
|
|
2164
2363
|
imageHostUrlList: Array<string>;
|
|
2364
|
+
/**
|
|
2365
|
+
* Current app version for iOS
|
|
2366
|
+
*/
|
|
2367
|
+
iosAppVersion: Array<string>;
|
|
2368
|
+
/**
|
|
2369
|
+
* Current version for iOS
|
|
2370
|
+
*/
|
|
2371
|
+
iosVersion: {
|
|
2372
|
+
major: number;
|
|
2373
|
+
minor: number;
|
|
2374
|
+
};
|
|
2165
2375
|
/**
|
|
2166
2376
|
* VRChat's job application email
|
|
2167
2377
|
*/
|
|
2168
2378
|
jobsEmail: string;
|
|
2379
|
+
/**
|
|
2380
|
+
* The maximum number of custom emoji each user may have at a given time.
|
|
2381
|
+
*/
|
|
2382
|
+
maxUserEmoji: number;
|
|
2383
|
+
/**
|
|
2384
|
+
* The maximum number of custom stickers each user may have at a given time.
|
|
2385
|
+
*/
|
|
2386
|
+
maxUserStickers: number;
|
|
2169
2387
|
/**
|
|
2170
2388
|
* Minimum supported client build number for various platforms
|
|
2171
2389
|
*/
|
|
@@ -2231,80 +2449,30 @@ type ApiConfig = {
|
|
|
2231
2449
|
* Categories available for reporting objectionable content
|
|
2232
2450
|
*/
|
|
2233
2451
|
reportCategories: {
|
|
2234
|
-
|
|
2235
|
-
avatarpage?: ReportCategory;
|
|
2236
|
-
behavior: ReportCategory;
|
|
2237
|
-
chat: ReportCategory;
|
|
2238
|
-
emoji?: ReportCategory;
|
|
2239
|
-
environment: ReportCategory;
|
|
2240
|
-
groupstore: ReportCategory;
|
|
2241
|
-
image: ReportCategory;
|
|
2242
|
-
sticker?: ReportCategory;
|
|
2243
|
-
text: ReportCategory;
|
|
2244
|
-
warnings: ReportCategory;
|
|
2245
|
-
worldimage: ReportCategory;
|
|
2246
|
-
worldstore: ReportCategory;
|
|
2452
|
+
[key: string]: ReportCategory;
|
|
2247
2453
|
};
|
|
2248
2454
|
/**
|
|
2249
2455
|
* URL to the report form
|
|
2250
2456
|
*/
|
|
2251
2457
|
reportFormUrl: string;
|
|
2252
2458
|
/**
|
|
2253
|
-
* Options for reporting content
|
|
2459
|
+
* Options for reporting content.
|
|
2460
|
+
* Select a key+value from this mapping as the `type` of the report.
|
|
2461
|
+
* Select one key+value from the object at reportOptions[type] as the `category` of the report.
|
|
2462
|
+
* reportCategories[category] contains user-facing text to display for all possible categories.
|
|
2463
|
+
* Select one value from the array at reportOptions[type][category] as the `reason` of the report.
|
|
2464
|
+
* reportReasons[reason] contains user-facing text to display for all possible categories.
|
|
2254
2465
|
*/
|
|
2255
2466
|
reportOptions: {
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
avatarpage?: Array<string>;
|
|
2259
|
-
warnings?: Array<string>;
|
|
2260
|
-
};
|
|
2261
|
-
group?: {
|
|
2262
|
-
groupstore?: Array<string>;
|
|
2263
|
-
image?: Array<string>;
|
|
2264
|
-
text?: Array<string>;
|
|
2265
|
-
};
|
|
2266
|
-
user?: {
|
|
2267
|
-
behavior?: Array<string>;
|
|
2268
|
-
chat?: Array<string>;
|
|
2269
|
-
emoji?: Array<string>;
|
|
2270
|
-
image?: Array<string>;
|
|
2271
|
-
sticker?: Array<string>;
|
|
2272
|
-
text?: Array<string>;
|
|
2273
|
-
};
|
|
2274
|
-
world?: {
|
|
2275
|
-
environment?: Array<string>;
|
|
2276
|
-
text?: Array<string>;
|
|
2277
|
-
warnings?: Array<string>;
|
|
2278
|
-
worldimage?: Array<string>;
|
|
2279
|
-
worldstore?: Array<string>;
|
|
2467
|
+
[key: string]: {
|
|
2468
|
+
[key: string]: Array<string>;
|
|
2280
2469
|
};
|
|
2281
2470
|
};
|
|
2282
2471
|
/**
|
|
2283
|
-
* Reasons available for
|
|
2472
|
+
* Reasons available for submitting a report
|
|
2284
2473
|
*/
|
|
2285
2474
|
reportReasons: {
|
|
2286
|
-
|
|
2287
|
-
botting: ReportReason;
|
|
2288
|
-
cancellation: ReportReason;
|
|
2289
|
-
copyright?: ReportReason;
|
|
2290
|
-
fraud?: ReportReason;
|
|
2291
|
-
gore: ReportReason;
|
|
2292
|
-
hacking: ReportReason;
|
|
2293
|
-
harassing: ReportReason;
|
|
2294
|
-
hateful: ReportReason;
|
|
2295
|
-
impersonation: ReportReason;
|
|
2296
|
-
inappropriate: ReportReason;
|
|
2297
|
-
leaking: ReportReason;
|
|
2298
|
-
malicious: ReportReason;
|
|
2299
|
-
missing: ReportReason;
|
|
2300
|
-
nudity: ReportReason;
|
|
2301
|
-
renewal: ReportReason;
|
|
2302
|
-
security: ReportReason;
|
|
2303
|
-
service: ReportReason;
|
|
2304
|
-
sexual: ReportReason;
|
|
2305
|
-
technical?: ReportReason;
|
|
2306
|
-
threatening: ReportReason;
|
|
2307
|
-
visuals: ReportReason;
|
|
2475
|
+
[key: string]: ReportReason;
|
|
2308
2476
|
};
|
|
2309
2477
|
requireAgeVerificationBetaTag: boolean;
|
|
2310
2478
|
/**
|
|
@@ -2714,6 +2882,24 @@ type CreateFileRequest = {
|
|
|
2714
2882
|
*/
|
|
2715
2883
|
tags?: Array<Tag>;
|
|
2716
2884
|
};
|
|
2885
|
+
/**
|
|
2886
|
+
* ImageAnimationStyle
|
|
2887
|
+
*
|
|
2888
|
+
* Animation style for images.
|
|
2889
|
+
*/
|
|
2890
|
+
type ImageAnimationStyle = 'aura' | 'bats' | 'bees' | 'bounce' | 'cloud' | 'confetti' | 'crying' | 'dislike' | 'fire' | 'idea' | 'lasers' | 'like' | 'magnet' | 'mistletoe' | 'money' | 'noise' | 'orbit' | 'pizza' | 'rain' | 'rotate' | 'shake' | 'snow' | 'snowball' | 'spin' | 'splash' | 'stop' | 'zzz';
|
|
2891
|
+
/**
|
|
2892
|
+
* ImageLoopStyle
|
|
2893
|
+
*
|
|
2894
|
+
* Animation looping style for images.
|
|
2895
|
+
*/
|
|
2896
|
+
type ImageLoopStyle = 'linear' | 'pingpong';
|
|
2897
|
+
/**
|
|
2898
|
+
* ImageMask
|
|
2899
|
+
*
|
|
2900
|
+
* Mask shape for images.
|
|
2901
|
+
*/
|
|
2902
|
+
type ImageMask = 'circle' | 'flower' | 'heart' | 'pow' | 'square' | 'star';
|
|
2717
2903
|
/**
|
|
2718
2904
|
* FileStatus
|
|
2719
2905
|
*/
|
|
@@ -2752,11 +2938,21 @@ type FileVersion = {
|
|
|
2752
2938
|
* File
|
|
2753
2939
|
*/
|
|
2754
2940
|
type File = {
|
|
2755
|
-
animationStyle?:
|
|
2941
|
+
animationStyle?: ImageAnimationStyle;
|
|
2756
2942
|
extension: string;
|
|
2943
|
+
/**
|
|
2944
|
+
* The number of frames for animated spritesheet images.
|
|
2945
|
+
*/
|
|
2946
|
+
frames?: number;
|
|
2947
|
+
/**
|
|
2948
|
+
* The frames per second for animated spritesheet images.
|
|
2949
|
+
*/
|
|
2950
|
+
framesOverTime?: number;
|
|
2757
2951
|
id: FileId;
|
|
2758
|
-
|
|
2952
|
+
loopStyle?: ImageLoopStyle;
|
|
2953
|
+
maskTag?: ImageMask;
|
|
2759
2954
|
mimeType: MimeType;
|
|
2955
|
+
modifiedThumbnailFileName?: string;
|
|
2760
2956
|
name: string;
|
|
2761
2957
|
ownerId: UserId;
|
|
2762
2958
|
/**
|
|
@@ -2768,6 +2964,12 @@ type File = {
|
|
|
2768
2964
|
*/
|
|
2769
2965
|
versions: Array<FileVersion>;
|
|
2770
2966
|
};
|
|
2967
|
+
/**
|
|
2968
|
+
* ImagePurpose
|
|
2969
|
+
*
|
|
2970
|
+
* Indication of the purpose for uploading images.
|
|
2971
|
+
*/
|
|
2972
|
+
type ImagePurpose = 'admin' | 'avatargallery' | 'avatarimage' | 'bundle' | 'emoji' | 'emojianimated' | 'gallery' | 'icon' | 'listinggallery' | 'product' | 'sticker';
|
|
2771
2973
|
/**
|
|
2772
2974
|
* CreateFileVersionRequest
|
|
2773
2975
|
*/
|
|
@@ -2822,16 +3024,29 @@ type FileVersionUploadStatus = {
|
|
|
2822
3024
|
}>;
|
|
2823
3025
|
uploadId: string;
|
|
2824
3026
|
};
|
|
2825
|
-
/**
|
|
2826
|
-
* GroupDiscriminator
|
|
2827
|
-
*/
|
|
2828
|
-
type GroupDiscriminator = string;
|
|
2829
3027
|
/**
|
|
2830
3028
|
* GroupGalleryID
|
|
2831
3029
|
*/
|
|
2832
3030
|
type GroupGalleryId = string;
|
|
2833
3031
|
/**
|
|
2834
|
-
*
|
|
3032
|
+
* GroupGalleryFileOrderRequest
|
|
3033
|
+
*/
|
|
3034
|
+
type GroupGalleryFileOrderRequest = {
|
|
3035
|
+
galleryId: GroupGalleryId;
|
|
3036
|
+
ids: Array<FileId>;
|
|
3037
|
+
};
|
|
3038
|
+
/**
|
|
3039
|
+
* GroupGalleryFileOrder
|
|
3040
|
+
*/
|
|
3041
|
+
type GroupGalleryFileOrder = {
|
|
3042
|
+
ids: Array<FileId>;
|
|
3043
|
+
};
|
|
3044
|
+
/**
|
|
3045
|
+
* GroupDiscriminator
|
|
3046
|
+
*/
|
|
3047
|
+
type GroupDiscriminator = string;
|
|
3048
|
+
/**
|
|
3049
|
+
* GroupGallery
|
|
2835
3050
|
*/
|
|
2836
3051
|
type GroupGallery = {
|
|
2837
3052
|
createdAt?: Date;
|
|
@@ -3086,6 +3301,12 @@ type CreateGroupAnnouncementRequest = {
|
|
|
3086
3301
|
*/
|
|
3087
3302
|
title: string;
|
|
3088
3303
|
};
|
|
3304
|
+
/**
|
|
3305
|
+
* GroupAuditLogEntryType
|
|
3306
|
+
*
|
|
3307
|
+
* The type of event that occurred. This is a string that is prefixed with the type of object that the event occurred on. For example, a group role update event would be prefixed with `group.role`.
|
|
3308
|
+
*/
|
|
3309
|
+
type GroupAuditLogEntryType = string;
|
|
3089
3310
|
/**
|
|
3090
3311
|
* GroupAuditLogID
|
|
3091
3312
|
*/
|
|
@@ -3107,10 +3328,7 @@ type GroupAuditLogEntry = {
|
|
|
3107
3328
|
* A human-readable description of the event.
|
|
3108
3329
|
*/
|
|
3109
3330
|
description?: string;
|
|
3110
|
-
|
|
3111
|
-
* The type of event that occurred. This is a string that is prefixed with the type of object that the event occurred on. For example, a group role update event would be prefixed with `group.role`.
|
|
3112
|
-
*/
|
|
3113
|
-
eventType?: string;
|
|
3331
|
+
eventType?: GroupAuditLogEntryType;
|
|
3114
3332
|
groupId?: GroupId;
|
|
3115
3333
|
id?: GroupAuditLogId;
|
|
3116
3334
|
/**
|
|
@@ -3375,6 +3593,12 @@ type GroupInstance = {
|
|
|
3375
3593
|
memberCount: number;
|
|
3376
3594
|
world: World;
|
|
3377
3595
|
};
|
|
3596
|
+
/**
|
|
3597
|
+
* DeclineGroupInviteRequest
|
|
3598
|
+
*/
|
|
3599
|
+
type DeclineGroupInviteRequest = {
|
|
3600
|
+
block?: boolean;
|
|
3601
|
+
};
|
|
3378
3602
|
/**
|
|
3379
3603
|
* CreateGroupInviteRequest
|
|
3380
3604
|
*/
|
|
@@ -3382,6 +3606,12 @@ type CreateGroupInviteRequest = {
|
|
|
3382
3606
|
confirmOverrideBlock?: boolean;
|
|
3383
3607
|
userId: UserId;
|
|
3384
3608
|
};
|
|
3609
|
+
/**
|
|
3610
|
+
* JoinGroupRequest
|
|
3611
|
+
*/
|
|
3612
|
+
type JoinGroupRequest = {
|
|
3613
|
+
inviteId?: string;
|
|
3614
|
+
};
|
|
3385
3615
|
/**
|
|
3386
3616
|
* GroupSearchSort
|
|
3387
3617
|
*/
|
|
@@ -3546,6 +3776,24 @@ type UpdateGroupRoleRequest = {
|
|
|
3546
3776
|
order?: number;
|
|
3547
3777
|
permissions?: Array<GroupPermissions>;
|
|
3548
3778
|
};
|
|
3779
|
+
/**
|
|
3780
|
+
* GroupTransferable
|
|
3781
|
+
*/
|
|
3782
|
+
type GroupTransferable = {
|
|
3783
|
+
requirements: {
|
|
3784
|
+
groupNotMonetized: boolean;
|
|
3785
|
+
hasVRCPlus: boolean;
|
|
3786
|
+
hasVerifiedEmail: boolean;
|
|
3787
|
+
targetCanOwnMoreGroups: boolean;
|
|
3788
|
+
targetIsGroupMember: boolean;
|
|
3789
|
+
};
|
|
3790
|
+
};
|
|
3791
|
+
/**
|
|
3792
|
+
* TransferGroupRequest
|
|
3793
|
+
*/
|
|
3794
|
+
type TransferGroupRequest = {
|
|
3795
|
+
transferTargetId?: UserId;
|
|
3796
|
+
};
|
|
3549
3797
|
/**
|
|
3550
3798
|
* APIHealth
|
|
3551
3799
|
*/
|
|
@@ -3640,6 +3888,7 @@ type InstanceType = 'friends' | 'group' | 'hidden' | 'private' | 'public';
|
|
|
3640
3888
|
*/
|
|
3641
3889
|
type CreateInstanceRequest = {
|
|
3642
3890
|
ageGate?: boolean;
|
|
3891
|
+
calendarEntryId?: string;
|
|
3643
3892
|
/**
|
|
3644
3893
|
* Only applies to invite type instances to make them invite+
|
|
3645
3894
|
*/
|
|
@@ -3658,6 +3907,7 @@ type CreateInstanceRequest = {
|
|
|
3658
3907
|
instancePersistenceEnabled?: boolean | null;
|
|
3659
3908
|
inviteOnly?: boolean;
|
|
3660
3909
|
ownerId?: InstanceOwnerId;
|
|
3910
|
+
playerPersistenceEnabled?: boolean | null;
|
|
3661
3911
|
queueEnabled?: boolean;
|
|
3662
3912
|
region: InstanceRegion;
|
|
3663
3913
|
/**
|
|
@@ -3996,14 +4246,70 @@ type InventoryConsumptionResults = {
|
|
|
3996
4246
|
type EquipInventoryItemRequest = {
|
|
3997
4247
|
equipSlot: InventoryEquipSlot;
|
|
3998
4248
|
};
|
|
4249
|
+
/**
|
|
4250
|
+
* NotificationDetailEmpty
|
|
4251
|
+
*/
|
|
4252
|
+
type NotificationDetailEmpty = {
|
|
4253
|
+
[key: string]: unknown;
|
|
4254
|
+
};
|
|
4255
|
+
/**
|
|
4256
|
+
* NotificationDetailBoop
|
|
4257
|
+
*
|
|
4258
|
+
* Either inventoryItemId by itself, or emojiId with optional emojiVersion
|
|
4259
|
+
*/
|
|
4260
|
+
type NotificationDetailBoop = {
|
|
4261
|
+
emojiId?: FileId;
|
|
4262
|
+
emojiVersion?: number;
|
|
4263
|
+
inventoryItemId?: InventoryItemId;
|
|
4264
|
+
};
|
|
4265
|
+
/**
|
|
4266
|
+
* NotificationDetailInvite
|
|
4267
|
+
*/
|
|
4268
|
+
type NotificationDetailInvite = {
|
|
4269
|
+
inviteMessage?: string;
|
|
4270
|
+
worldId: LocationId;
|
|
4271
|
+
worldName: string;
|
|
4272
|
+
};
|
|
4273
|
+
/**
|
|
4274
|
+
* NotificationDetailInviteResponse
|
|
4275
|
+
*/
|
|
4276
|
+
type NotificationDetailInviteResponse = {
|
|
4277
|
+
inResponseTo: NotificationId;
|
|
4278
|
+
responseMessage: string;
|
|
4279
|
+
};
|
|
4280
|
+
/**
|
|
4281
|
+
* NotificationDetailRequestInvite
|
|
4282
|
+
*/
|
|
4283
|
+
type NotificationDetailRequestInvite = {
|
|
4284
|
+
platform?: Platform;
|
|
4285
|
+
/**
|
|
4286
|
+
* Used when using InviteMessage Slot.
|
|
4287
|
+
*/
|
|
4288
|
+
requestMessage?: string;
|
|
4289
|
+
};
|
|
4290
|
+
/**
|
|
4291
|
+
* NotificationDetailRequestInviteResponse
|
|
4292
|
+
*/
|
|
4293
|
+
type NotificationDetailRequestInviteResponse = {
|
|
4294
|
+
inResponseTo: NotificationId;
|
|
4295
|
+
/**
|
|
4296
|
+
* Used when using InviteMessage Slot.
|
|
4297
|
+
*/
|
|
4298
|
+
requestMessage?: string;
|
|
4299
|
+
};
|
|
4300
|
+
/**
|
|
4301
|
+
* NotificationDetailVoteToKick
|
|
4302
|
+
*/
|
|
4303
|
+
type NotificationDetailVoteToKick = {
|
|
4304
|
+
initiatorUserId: UserId;
|
|
4305
|
+
userToKickId: UserId;
|
|
4306
|
+
};
|
|
3999
4307
|
/**
|
|
4000
4308
|
* SentNotification
|
|
4001
4309
|
*/
|
|
4002
4310
|
type SentNotification = {
|
|
4003
4311
|
created_at: Date;
|
|
4004
|
-
details:
|
|
4005
|
-
[key: string]: unknown;
|
|
4006
|
-
};
|
|
4312
|
+
details: NotificationDetailEmpty | NotificationDetailBoop | NotificationDetailInvite | NotificationDetailInviteResponse | NotificationDetailRequestInvite | NotificationDetailRequestInviteResponse | NotificationDetailVoteToKick;
|
|
4007
4313
|
id: string;
|
|
4008
4314
|
message: string;
|
|
4009
4315
|
receiverUserId: UserId;
|
|
@@ -4233,10 +4539,77 @@ type SubmitModerationReportRequest = {
|
|
|
4233
4539
|
*/
|
|
4234
4540
|
type NotificationV2Category = string;
|
|
4235
4541
|
/**
|
|
4236
|
-
*
|
|
4542
|
+
* NotificationV2DataEmpty
|
|
4237
4543
|
*/
|
|
4238
|
-
type
|
|
4239
|
-
|
|
4544
|
+
type NotificationV2DataEmpty = {
|
|
4545
|
+
[key: string]: unknown;
|
|
4546
|
+
};
|
|
4547
|
+
/**
|
|
4548
|
+
* NotificationV2DataBadgeEarned
|
|
4549
|
+
*/
|
|
4550
|
+
type NotificationV2DataBadgeEarned = {
|
|
4551
|
+
badgeDescription: string;
|
|
4552
|
+
badgeId: BadgeId;
|
|
4553
|
+
badgeName: string;
|
|
4554
|
+
};
|
|
4555
|
+
/**
|
|
4556
|
+
* NotificationV2DataBoop
|
|
4557
|
+
*/
|
|
4558
|
+
type NotificationV2DataBoop = {
|
|
4559
|
+
boopingUserDisplayName: string;
|
|
4560
|
+
};
|
|
4561
|
+
/**
|
|
4562
|
+
* NotificationV2DataEventAnnouncement
|
|
4563
|
+
*/
|
|
4564
|
+
type NotificationV2DataEventAnnouncement = {
|
|
4565
|
+
ownerId: GroupId;
|
|
4566
|
+
ownerName: string;
|
|
4567
|
+
title: string;
|
|
4568
|
+
};
|
|
4569
|
+
/**
|
|
4570
|
+
* NotificationV2DataGroupAnnouncement
|
|
4571
|
+
*/
|
|
4572
|
+
type NotificationV2DataGroupAnnouncement = {
|
|
4573
|
+
announcementTitle: string;
|
|
4574
|
+
groupId: GroupId;
|
|
4575
|
+
groupName: string;
|
|
4576
|
+
};
|
|
4577
|
+
/**
|
|
4578
|
+
* NotificationV2DataGroupInformative
|
|
4579
|
+
*/
|
|
4580
|
+
type NotificationV2DataGroupInformative = {
|
|
4581
|
+
groupId: GroupId;
|
|
4582
|
+
groupName: string;
|
|
4583
|
+
transferTargetDisplayName?: string;
|
|
4584
|
+
};
|
|
4585
|
+
/**
|
|
4586
|
+
* NotificationV2DataGroupTransfer
|
|
4587
|
+
*/
|
|
4588
|
+
type NotificationV2DataGroupTransfer = {
|
|
4589
|
+
groupName: string;
|
|
4590
|
+
ownerUserDisplayName: string;
|
|
4591
|
+
};
|
|
4592
|
+
/**
|
|
4593
|
+
* EmojiID
|
|
4594
|
+
*
|
|
4595
|
+
* Either a FileID or a string constant for default emojis
|
|
4596
|
+
*/
|
|
4597
|
+
type EmojiId = string;
|
|
4598
|
+
/**
|
|
4599
|
+
* NotificationV2DetailsBoop
|
|
4600
|
+
*
|
|
4601
|
+
* Either inventoryItemId by itself, or emojiId with optional emojiVersion
|
|
4602
|
+
*/
|
|
4603
|
+
type NotificationV2DetailsBoop = {
|
|
4604
|
+
emojiId: EmojiId;
|
|
4605
|
+
emojiVersion: number | null;
|
|
4606
|
+
inventoryItemId: InventoryItemId;
|
|
4607
|
+
};
|
|
4608
|
+
/**
|
|
4609
|
+
* NotificationV2ResponseIcon
|
|
4610
|
+
*/
|
|
4611
|
+
type NotificationV2ResponseIcon = string;
|
|
4612
|
+
/**
|
|
4240
4613
|
* NotificationV2ResponseType
|
|
4241
4614
|
*/
|
|
4242
4615
|
type NotificationV2ResponseType = string;
|
|
@@ -4253,7 +4626,7 @@ type NotificationV2Response = {
|
|
|
4253
4626
|
/**
|
|
4254
4627
|
* NotificationV2Type
|
|
4255
4628
|
*/
|
|
4256
|
-
type NotificationV2Type = 'avatarreview.failure' | 'avatarreview.success' | 'badge.earned' | 'boop' | 'economy.alert' | 'economy.received.gift' | 'event.announcement' | 'group.announcement' | 'group.informative' | 'group.invite' | 'group.joinRequest' | 'group.post' | 'invite.instance.contentGated' | 'moderation.contentrestriction' | 'moderation.notice' | 'moderation.report.closed' | 'moderation.warning.group' | 'promo.redeem' | 'text.adventure' | 'vrcplus.gift';
|
|
4629
|
+
type NotificationV2Type = 'avatarreview.failure' | 'avatarreview.success' | 'badge.earned' | 'boop' | 'economy.alert' | 'economy.received.gift' | 'event.announcement' | 'group.announcement' | 'group.event.created' | 'group.event.starting' | 'group.informative' | 'group.invite' | 'group.joinRequest' | 'group.post' | 'group.transfer' | 'invite.instance.contentGated' | 'moderation.contentrestriction' | 'moderation.notice' | 'moderation.report.closed' | 'moderation.warning.group' | 'promo.redeem' | 'text.adventure' | 'vrcplus.gift';
|
|
4257
4630
|
/**
|
|
4258
4631
|
* NotificationV2
|
|
4259
4632
|
*/
|
|
@@ -4261,9 +4634,8 @@ type NotificationV2 = {
|
|
|
4261
4634
|
canDelete: boolean;
|
|
4262
4635
|
category: NotificationV2Category;
|
|
4263
4636
|
createdAt: Date;
|
|
4264
|
-
data:
|
|
4265
|
-
|
|
4266
|
-
};
|
|
4637
|
+
data: NotificationV2DataEmpty | NotificationV2DataBadgeEarned | NotificationV2DataBoop | NotificationV2DataEventAnnouncement | NotificationV2DataGroupAnnouncement | NotificationV2DataGroupInformative | NotificationV2DataGroupTransfer;
|
|
4638
|
+
details?: NotificationV2DetailsBoop;
|
|
4267
4639
|
expiresAt: Date;
|
|
4268
4640
|
expiryAfterSeen: number | null;
|
|
4269
4641
|
id: string;
|
|
@@ -4328,6 +4700,15 @@ type Print = {
|
|
|
4328
4700
|
worldId: WorldId;
|
|
4329
4701
|
worldName: string;
|
|
4330
4702
|
};
|
|
4703
|
+
/**
|
|
4704
|
+
* PropSpawnType
|
|
4705
|
+
*
|
|
4706
|
+
* How a prop is summoned and interacted with.
|
|
4707
|
+
* 0: the prop fixed to some surface in the world
|
|
4708
|
+
* 1: the prop is a pickup and may be held by users
|
|
4709
|
+
* 2: ???
|
|
4710
|
+
*/
|
|
4711
|
+
type PropSpawnType = number;
|
|
4331
4712
|
/**
|
|
4332
4713
|
* PropUnityPackage
|
|
4333
4714
|
*/
|
|
@@ -4339,6 +4720,16 @@ type PropUnityPackage = {
|
|
|
4339
4720
|
unityVersion: string;
|
|
4340
4721
|
variant: string;
|
|
4341
4722
|
};
|
|
4723
|
+
/**
|
|
4724
|
+
* PropPlacementMask
|
|
4725
|
+
*
|
|
4726
|
+
* Bitmask for restrictions on what world surfaces a prop may be summoned.
|
|
4727
|
+
* 0: no restrictions
|
|
4728
|
+
* 1: floors
|
|
4729
|
+
* 2: walls
|
|
4730
|
+
* 4: ceilings
|
|
4731
|
+
*/
|
|
4732
|
+
type PropPlacementMask = number;
|
|
4342
4733
|
/**
|
|
4343
4734
|
* Prop
|
|
4344
4735
|
*/
|
|
@@ -4353,12 +4744,51 @@ type Prop = {
|
|
|
4353
4744
|
maxCountPerUser: number;
|
|
4354
4745
|
name: string;
|
|
4355
4746
|
releaseStatus: ReleaseStatus;
|
|
4356
|
-
spawnType:
|
|
4747
|
+
spawnType: PropSpawnType;
|
|
4357
4748
|
tags: Array<Tag>;
|
|
4358
4749
|
thumbnailImageUrl: string;
|
|
4359
4750
|
unityPackageUrl: string | null;
|
|
4360
4751
|
unityPackages: Array<PropUnityPackage>;
|
|
4361
|
-
worldPlacementMask:
|
|
4752
|
+
worldPlacementMask: PropPlacementMask;
|
|
4753
|
+
};
|
|
4754
|
+
/**
|
|
4755
|
+
* CreatePropRequest
|
|
4756
|
+
*/
|
|
4757
|
+
type CreatePropRequest = {
|
|
4758
|
+
assetUrl: string;
|
|
4759
|
+
assetVersion: number;
|
|
4760
|
+
description: string;
|
|
4761
|
+
id: PropId;
|
|
4762
|
+
imageUrl: string;
|
|
4763
|
+
name: string;
|
|
4764
|
+
platform: Platform;
|
|
4765
|
+
propSignature?: string;
|
|
4766
|
+
spawnType: PropSpawnType;
|
|
4767
|
+
tags: Array<Tag>;
|
|
4768
|
+
unityVersion: string;
|
|
4769
|
+
worldPlacementMask: PropPlacementMask;
|
|
4770
|
+
};
|
|
4771
|
+
/**
|
|
4772
|
+
* UpdatePropRequest
|
|
4773
|
+
*/
|
|
4774
|
+
type UpdatePropRequest = {
|
|
4775
|
+
assetUrl?: string;
|
|
4776
|
+
assetVersion?: number;
|
|
4777
|
+
description?: string;
|
|
4778
|
+
imageUrl?: string;
|
|
4779
|
+
name?: string;
|
|
4780
|
+
platform?: Platform;
|
|
4781
|
+
propSignature?: string;
|
|
4782
|
+
spawnType?: PropSpawnType;
|
|
4783
|
+
tags?: Array<Tag>;
|
|
4784
|
+
unityVersion?: string;
|
|
4785
|
+
worldPlacementMask?: PropPlacementMask;
|
|
4786
|
+
};
|
|
4787
|
+
/**
|
|
4788
|
+
* PropPublishStatus
|
|
4789
|
+
*/
|
|
4790
|
+
type PropPublishStatus = {
|
|
4791
|
+
canPublish?: boolean;
|
|
4362
4792
|
};
|
|
4363
4793
|
/**
|
|
4364
4794
|
* RequestInviteRequest
|
|
@@ -4621,12 +5051,6 @@ type UpdateUserBadgeRequest = {
|
|
|
4621
5051
|
hidden?: boolean;
|
|
4622
5052
|
showcased?: boolean;
|
|
4623
5053
|
};
|
|
4624
|
-
/**
|
|
4625
|
-
* EmojiID
|
|
4626
|
-
*
|
|
4627
|
-
* Either a FileID or a string constant for default emojis
|
|
4628
|
-
*/
|
|
4629
|
-
type EmojiId = string;
|
|
4630
5054
|
/**
|
|
4631
5055
|
* BoopRequest
|
|
4632
5056
|
*
|
|
@@ -4689,6 +5113,14 @@ type LimitedUserGroups = {
|
|
|
4689
5113
|
privacy?: string;
|
|
4690
5114
|
shortCode?: GroupShortCode;
|
|
4691
5115
|
};
|
|
5116
|
+
/**
|
|
5117
|
+
* UserAllGroupPermissions
|
|
5118
|
+
*
|
|
5119
|
+
* Map from GroupIDs to an array of the GroupPermissions the user has in that group.
|
|
5120
|
+
*/
|
|
5121
|
+
type UserAllGroupPermissions = {
|
|
5122
|
+
[key: string]: Array<GroupPermissions>;
|
|
5123
|
+
};
|
|
4692
5124
|
/**
|
|
4693
5125
|
* RepresentedGroup
|
|
4694
5126
|
*/
|
|
@@ -4886,48 +5318,6 @@ type WorldMetadata = {
|
|
|
4886
5318
|
type WorldPublishStatus = {
|
|
4887
5319
|
canPublish: boolean;
|
|
4888
5320
|
};
|
|
4889
|
-
/**
|
|
4890
|
-
* NotificationDetailInvite
|
|
4891
|
-
*/
|
|
4892
|
-
type NotificationDetailInvite = {
|
|
4893
|
-
inviteMessage?: string;
|
|
4894
|
-
worldId: LocationId;
|
|
4895
|
-
worldName: string;
|
|
4896
|
-
};
|
|
4897
|
-
/**
|
|
4898
|
-
* NotificationDetailInviteResponse
|
|
4899
|
-
*/
|
|
4900
|
-
type NotificationDetailInviteResponse = {
|
|
4901
|
-
inResponseTo: NotificationId;
|
|
4902
|
-
responseMessage: string;
|
|
4903
|
-
};
|
|
4904
|
-
/**
|
|
4905
|
-
* NotificationDetailRequestInvite
|
|
4906
|
-
*/
|
|
4907
|
-
type NotificationDetailRequestInvite = {
|
|
4908
|
-
platform?: Platform;
|
|
4909
|
-
/**
|
|
4910
|
-
* Used when using InviteMessage Slot.
|
|
4911
|
-
*/
|
|
4912
|
-
requestMessage?: string;
|
|
4913
|
-
};
|
|
4914
|
-
/**
|
|
4915
|
-
* NotificationDetailRequestInviteResponse
|
|
4916
|
-
*/
|
|
4917
|
-
type NotificationDetailRequestInviteResponse = {
|
|
4918
|
-
inResponseTo: NotificationId;
|
|
4919
|
-
/**
|
|
4920
|
-
* Used when using InviteMessage Slot.
|
|
4921
|
-
*/
|
|
4922
|
-
requestMessage?: string;
|
|
4923
|
-
};
|
|
4924
|
-
/**
|
|
4925
|
-
* NotificationDetailVoteToKick
|
|
4926
|
-
*/
|
|
4927
|
-
type NotificationDetailVoteToKick = {
|
|
4928
|
-
initiatorUserId: UserId;
|
|
4929
|
-
userToKickId: UserId;
|
|
4930
|
-
};
|
|
4931
5321
|
/**
|
|
4932
5322
|
* Must be a valid transaction ID.
|
|
4933
5323
|
*/
|
|
@@ -4944,6 +5334,10 @@ type FileId2 = string;
|
|
|
4944
5334
|
* Version ID of the asset.
|
|
4945
5335
|
*/
|
|
4946
5336
|
type VersionId = number;
|
|
5337
|
+
/**
|
|
5338
|
+
* Must be an valid asset review ID.
|
|
5339
|
+
*/
|
|
5340
|
+
type AssetReviewId = string;
|
|
4947
5341
|
/**
|
|
4948
5342
|
* Target user for which to verify email.
|
|
4949
5343
|
*/
|
|
@@ -5040,6 +5434,10 @@ type MinUnityVersion = string;
|
|
|
5040
5434
|
* The platform the asset supports.
|
|
5041
5435
|
*/
|
|
5042
5436
|
type Platform2 = Platform;
|
|
5437
|
+
/**
|
|
5438
|
+
* Not quite sure what this actually does (exists on the website but doesn't seem to be used)
|
|
5439
|
+
*/
|
|
5440
|
+
type IsInternalVariant = boolean;
|
|
5043
5441
|
/**
|
|
5044
5442
|
* Filters by world name.
|
|
5045
5443
|
*/
|
|
@@ -5331,6 +5729,10 @@ type PermissionId2 = string;
|
|
|
5331
5729
|
* Print ID.
|
|
5332
5730
|
*/
|
|
5333
5731
|
type PrintId2 = string;
|
|
5732
|
+
/**
|
|
5733
|
+
* Must be a valid user ID.
|
|
5734
|
+
*/
|
|
5735
|
+
type AuthorId = UserId;
|
|
5334
5736
|
/**
|
|
5335
5737
|
* Prop ID.
|
|
5336
5738
|
*/
|
|
@@ -5428,6 +5830,59 @@ type GetAdminAssetBundleResponses = {
|
|
|
5428
5830
|
200: AdminAssetBundle;
|
|
5429
5831
|
};
|
|
5430
5832
|
type GetAdminAssetBundleResponse = GetAdminAssetBundleResponses[keyof GetAdminAssetBundleResponses];
|
|
5833
|
+
type GetContentAgreementStatus = {
|
|
5834
|
+
body?: never;
|
|
5835
|
+
path?: never;
|
|
5836
|
+
query: {
|
|
5837
|
+
/**
|
|
5838
|
+
* The type of agreement (currently content.copyright.owned)
|
|
5839
|
+
*/
|
|
5840
|
+
agreementCode: AgreementCode;
|
|
5841
|
+
/**
|
|
5842
|
+
* The id of the content being uploaded, such as a WorldID, AvatarID, or PropID
|
|
5843
|
+
*/
|
|
5844
|
+
contentId: string;
|
|
5845
|
+
/**
|
|
5846
|
+
* The version of the agreement (currently 1)
|
|
5847
|
+
*/
|
|
5848
|
+
version: number;
|
|
5849
|
+
};
|
|
5850
|
+
url: '/agreement';
|
|
5851
|
+
};
|
|
5852
|
+
type GetContentAgreementStatusErrors = {
|
|
5853
|
+
/**
|
|
5854
|
+
* Error response due to missing auth cookie.
|
|
5855
|
+
*/
|
|
5856
|
+
401: _Error;
|
|
5857
|
+
};
|
|
5858
|
+
type GetContentAgreementStatusError = GetContentAgreementStatusErrors[keyof GetContentAgreementStatusErrors];
|
|
5859
|
+
type GetContentAgreementStatusResponses = {
|
|
5860
|
+
/**
|
|
5861
|
+
* Returns a single AgreementStatus object.
|
|
5862
|
+
*/
|
|
5863
|
+
200: AgreementStatus;
|
|
5864
|
+
};
|
|
5865
|
+
type GetContentAgreementStatusResponse = GetContentAgreementStatusResponses[keyof GetContentAgreementStatusResponses];
|
|
5866
|
+
type SubmitContentAgreement = {
|
|
5867
|
+
body?: AgreementRequest;
|
|
5868
|
+
path?: never;
|
|
5869
|
+
query?: never;
|
|
5870
|
+
url: '/agreement';
|
|
5871
|
+
};
|
|
5872
|
+
type SubmitContentAgreementErrors = {
|
|
5873
|
+
/**
|
|
5874
|
+
* Error response due to missing auth cookie.
|
|
5875
|
+
*/
|
|
5876
|
+
401: _Error;
|
|
5877
|
+
};
|
|
5878
|
+
type SubmitContentAgreementError = SubmitContentAgreementErrors[keyof SubmitContentAgreementErrors];
|
|
5879
|
+
type SubmitContentAgreementResponses = {
|
|
5880
|
+
/**
|
|
5881
|
+
* Returns a single Agreement object.
|
|
5882
|
+
*/
|
|
5883
|
+
200: Agreement;
|
|
5884
|
+
};
|
|
5885
|
+
type SubmitContentAgreementResponse = SubmitContentAgreementResponses[keyof SubmitContentAgreementResponses];
|
|
5431
5886
|
type GetFileAnalysis = {
|
|
5432
5887
|
body?: never;
|
|
5433
5888
|
path: {
|
|
@@ -5527,6 +5982,30 @@ type GetFileAnalysisStandardResponses = {
|
|
|
5527
5982
|
202: _Error;
|
|
5528
5983
|
};
|
|
5529
5984
|
type GetFileAnalysisStandardResponse = GetFileAnalysisStandardResponses[keyof GetFileAnalysisStandardResponses];
|
|
5985
|
+
type UpdateAssetReviewNotes = {
|
|
5986
|
+
body?: UpdateAssetReviewNotesRequest;
|
|
5987
|
+
path: {
|
|
5988
|
+
/**
|
|
5989
|
+
* Must be an valid asset review ID.
|
|
5990
|
+
*/
|
|
5991
|
+
assetReviewId: string;
|
|
5992
|
+
};
|
|
5993
|
+
query?: never;
|
|
5994
|
+
url: '/assetReview/{assetReviewId}/notes';
|
|
5995
|
+
};
|
|
5996
|
+
type UpdateAssetReviewNotesErrors = {
|
|
5997
|
+
/**
|
|
5998
|
+
* Error response due to missing auth cookie.
|
|
5999
|
+
*/
|
|
6000
|
+
401: _Error;
|
|
6001
|
+
};
|
|
6002
|
+
type UpdateAssetReviewNotesError = UpdateAssetReviewNotesErrors[keyof UpdateAssetReviewNotesErrors];
|
|
6003
|
+
type UpdateAssetReviewNotesResponses = {
|
|
6004
|
+
/**
|
|
6005
|
+
* The asset review notes are submitted.
|
|
6006
|
+
*/
|
|
6007
|
+
200: unknown;
|
|
6008
|
+
};
|
|
5530
6009
|
type VerifyAuthToken = {
|
|
5531
6010
|
body?: never;
|
|
5532
6011
|
path?: never;
|
|
@@ -6360,6 +6839,10 @@ type SearchAvatars = {
|
|
|
6360
6839
|
* The platform the asset supports.
|
|
6361
6840
|
*/
|
|
6362
6841
|
platform?: Platform;
|
|
6842
|
+
/**
|
|
6843
|
+
* Not quite sure what this actually does (exists on the website but doesn't seem to be used)
|
|
6844
|
+
*/
|
|
6845
|
+
isInternalVariant?: boolean;
|
|
6363
6846
|
};
|
|
6364
6847
|
url: '/avatars';
|
|
6365
6848
|
};
|
|
@@ -6917,6 +7400,10 @@ type SearchCalendarEvents = {
|
|
|
6917
7400
|
* A zero-based offset from the default object sorting from where search results start.
|
|
6918
7401
|
*/
|
|
6919
7402
|
offset?: number;
|
|
7403
|
+
/**
|
|
7404
|
+
* Not quite sure what this actually does (exists on the website but doesn't seem to be used)
|
|
7405
|
+
*/
|
|
7406
|
+
isInternalVariant?: boolean;
|
|
6920
7407
|
};
|
|
6921
7408
|
url: '/calendar/search';
|
|
6922
7409
|
};
|
|
@@ -7587,30 +8074,22 @@ type CreateFileResponses = {
|
|
|
7587
8074
|
type CreateFileResponse = CreateFileResponses[keyof CreateFileResponses];
|
|
7588
8075
|
type UploadImage = {
|
|
7589
8076
|
body?: {
|
|
7590
|
-
|
|
7591
|
-
* Animation style for sticker, required for emoji.
|
|
7592
|
-
*/
|
|
7593
|
-
animationStyle?: string;
|
|
8077
|
+
animationStyle?: ImageAnimationStyle;
|
|
7594
8078
|
/**
|
|
7595
8079
|
* The binary blob of the png file.
|
|
7596
8080
|
*/
|
|
7597
8081
|
file: Blob | File;
|
|
7598
8082
|
/**
|
|
7599
|
-
* Required for
|
|
8083
|
+
* Required for animated images. Total number of frames of the spritesheet to be animated.
|
|
7600
8084
|
*/
|
|
7601
8085
|
frames?: number;
|
|
7602
8086
|
/**
|
|
7603
|
-
* Required for
|
|
8087
|
+
* Required for animated images. Animation frames per second.
|
|
7604
8088
|
*/
|
|
7605
8089
|
framesOverTime?: number;
|
|
7606
|
-
|
|
7607
|
-
|
|
7608
|
-
|
|
7609
|
-
maskTag?: string;
|
|
7610
|
-
/**
|
|
7611
|
-
* Needs to be either icon, gallery, sticker, emoji, or emojianimated
|
|
7612
|
-
*/
|
|
7613
|
-
tag: string;
|
|
8090
|
+
loopStyle?: ImageLoopStyle;
|
|
8091
|
+
maskTag?: ImageMask;
|
|
8092
|
+
tag: ImagePurpose;
|
|
7614
8093
|
};
|
|
7615
8094
|
path?: never;
|
|
7616
8095
|
query?: never;
|
|
@@ -7883,6 +8362,26 @@ type GetFilesResponses = {
|
|
|
7883
8362
|
200: Array<File>;
|
|
7884
8363
|
};
|
|
7885
8364
|
type GetFilesResponse = GetFilesResponses[keyof GetFilesResponses];
|
|
8365
|
+
type SetGroupGalleryFileOrder = {
|
|
8366
|
+
body?: GroupGalleryFileOrderRequest;
|
|
8367
|
+
path?: never;
|
|
8368
|
+
query?: never;
|
|
8369
|
+
url: '/files/order';
|
|
8370
|
+
};
|
|
8371
|
+
type SetGroupGalleryFileOrderErrors = {
|
|
8372
|
+
/**
|
|
8373
|
+
* Error response when trying to show information about a non-existent file.
|
|
8374
|
+
*/
|
|
8375
|
+
404: _Error;
|
|
8376
|
+
};
|
|
8377
|
+
type SetGroupGalleryFileOrderError = SetGroupGalleryFileOrderErrors[keyof SetGroupGalleryFileOrderErrors];
|
|
8378
|
+
type SetGroupGalleryFileOrderResponses = {
|
|
8379
|
+
/**
|
|
8380
|
+
* Returns a list of File IDs.
|
|
8381
|
+
*/
|
|
8382
|
+
200: GroupGalleryFileOrder;
|
|
8383
|
+
};
|
|
8384
|
+
type SetGroupGalleryFileOrderResponse = SetGroupGalleryFileOrderResponses[keyof SetGroupGalleryFileOrderResponses];
|
|
7886
8385
|
type UploadGalleryImage = {
|
|
7887
8386
|
body?: {
|
|
7888
8387
|
/**
|
|
@@ -7984,7 +8483,9 @@ type DeleteGroup = {
|
|
|
7984
8483
|
*/
|
|
7985
8484
|
groupId: string;
|
|
7986
8485
|
};
|
|
7987
|
-
query?:
|
|
8486
|
+
query?: {
|
|
8487
|
+
hardDelete?: boolean;
|
|
8488
|
+
};
|
|
7988
8489
|
url: '/groups/{groupId}';
|
|
7989
8490
|
};
|
|
7990
8491
|
type DeleteGroupErrors = {
|
|
@@ -8155,6 +8656,35 @@ type CreateGroupAnnouncementResponses = {
|
|
|
8155
8656
|
200: GroupAnnouncement;
|
|
8156
8657
|
};
|
|
8157
8658
|
type CreateGroupAnnouncementResponse = CreateGroupAnnouncementResponses[keyof CreateGroupAnnouncementResponses];
|
|
8659
|
+
type GetGroupAuditLogEntryTypes = {
|
|
8660
|
+
body?: never;
|
|
8661
|
+
path: {
|
|
8662
|
+
/**
|
|
8663
|
+
* Must be a valid group ID.
|
|
8664
|
+
*/
|
|
8665
|
+
groupId: string;
|
|
8666
|
+
};
|
|
8667
|
+
query?: never;
|
|
8668
|
+
url: '/groups/{groupId}/auditLogTypes';
|
|
8669
|
+
};
|
|
8670
|
+
type GetGroupAuditLogEntryTypesErrors = {
|
|
8671
|
+
/**
|
|
8672
|
+
* Error response due to missing auth cookie.
|
|
8673
|
+
*/
|
|
8674
|
+
401: _Error;
|
|
8675
|
+
/**
|
|
8676
|
+
* Error response when trying to perform operations on a non-existing group.
|
|
8677
|
+
*/
|
|
8678
|
+
404: _Error;
|
|
8679
|
+
};
|
|
8680
|
+
type GetGroupAuditLogEntryTypesError = GetGroupAuditLogEntryTypesErrors[keyof GetGroupAuditLogEntryTypesErrors];
|
|
8681
|
+
type GetGroupAuditLogEntryTypesResponses = {
|
|
8682
|
+
/**
|
|
8683
|
+
* Returns a list of GroupAuditLogEntryTypes.
|
|
8684
|
+
*/
|
|
8685
|
+
200: Array<GroupAuditLogEntryType>;
|
|
8686
|
+
};
|
|
8687
|
+
type GetGroupAuditLogEntryTypesResponse = GetGroupAuditLogEntryTypesResponses[keyof GetGroupAuditLogEntryTypesResponses];
|
|
8158
8688
|
type GetGroupAuditLogs = {
|
|
8159
8689
|
body?: never;
|
|
8160
8690
|
path: {
|
|
@@ -8321,6 +8851,43 @@ type UnbanGroupMemberResponses = {
|
|
|
8321
8851
|
200: GroupMember;
|
|
8322
8852
|
};
|
|
8323
8853
|
type UnbanGroupMemberResponse = UnbanGroupMemberResponses[keyof UnbanGroupMemberResponses];
|
|
8854
|
+
type BlockGroup = {
|
|
8855
|
+
body?: never;
|
|
8856
|
+
path: {
|
|
8857
|
+
/**
|
|
8858
|
+
* Must be a valid group ID.
|
|
8859
|
+
*/
|
|
8860
|
+
groupId: string;
|
|
8861
|
+
};
|
|
8862
|
+
query?: never;
|
|
8863
|
+
url: '/groups/{groupId}/block';
|
|
8864
|
+
};
|
|
8865
|
+
type BlockGroupErrors = {
|
|
8866
|
+
/**
|
|
8867
|
+
* Bad request error response when banning a user
|
|
8868
|
+
*/
|
|
8869
|
+
400: _Error;
|
|
8870
|
+
/**
|
|
8871
|
+
* Error response due to missing auth cookie.
|
|
8872
|
+
*/
|
|
8873
|
+
401: _Error;
|
|
8874
|
+
/**
|
|
8875
|
+
* Error response when trying to block a group you already have blocked.
|
|
8876
|
+
*/
|
|
8877
|
+
403: _Error;
|
|
8878
|
+
/**
|
|
8879
|
+
* Error response when trying to perform operations on a non-existing group.
|
|
8880
|
+
*/
|
|
8881
|
+
404: _Error;
|
|
8882
|
+
};
|
|
8883
|
+
type BlockGroupError = BlockGroupErrors[keyof BlockGroupErrors];
|
|
8884
|
+
type BlockGroupResponses = {
|
|
8885
|
+
/**
|
|
8886
|
+
* Successful response after blocking a Group.
|
|
8887
|
+
*/
|
|
8888
|
+
200: Success;
|
|
8889
|
+
};
|
|
8890
|
+
type BlockGroupResponse = BlockGroupResponses[keyof BlockGroupResponses];
|
|
8324
8891
|
type CreateGroupGallery = {
|
|
8325
8892
|
body: CreateGroupGalleryRequest;
|
|
8326
8893
|
path: {
|
|
@@ -8643,16 +9210,49 @@ type CreateGroupInviteResponses = {
|
|
|
8643
9210
|
*/
|
|
8644
9211
|
200: unknown;
|
|
8645
9212
|
};
|
|
8646
|
-
type
|
|
8647
|
-
body?:
|
|
9213
|
+
type DeclineGroupInvite = {
|
|
9214
|
+
body?: DeclineGroupInviteRequest;
|
|
8648
9215
|
path: {
|
|
8649
9216
|
/**
|
|
8650
9217
|
* Must be a valid group ID.
|
|
8651
9218
|
*/
|
|
8652
9219
|
groupId: string;
|
|
8653
|
-
|
|
8654
|
-
|
|
8655
|
-
|
|
9220
|
+
};
|
|
9221
|
+
query?: never;
|
|
9222
|
+
url: '/groups/{groupId}/invites';
|
|
9223
|
+
};
|
|
9224
|
+
type DeclineGroupInviteErrors = {
|
|
9225
|
+
/**
|
|
9226
|
+
* Bad request error response when declining a group invite.
|
|
9227
|
+
*/
|
|
9228
|
+
400: _Error;
|
|
9229
|
+
/**
|
|
9230
|
+
* Error response due to missing auth cookie.
|
|
9231
|
+
*/
|
|
9232
|
+
401: _Error;
|
|
9233
|
+
/**
|
|
9234
|
+
* Error response when trying to perform operations on a non-existing group.
|
|
9235
|
+
*/
|
|
9236
|
+
404: _Error;
|
|
9237
|
+
};
|
|
9238
|
+
type DeclineGroupInviteError = DeclineGroupInviteErrors[keyof DeclineGroupInviteErrors];
|
|
9239
|
+
type DeclineGroupInviteResponses = {
|
|
9240
|
+
/**
|
|
9241
|
+
* Successful response after declining a group invite.
|
|
9242
|
+
*/
|
|
9243
|
+
200: Success;
|
|
9244
|
+
};
|
|
9245
|
+
type DeclineGroupInviteResponse = DeclineGroupInviteResponses[keyof DeclineGroupInviteResponses];
|
|
9246
|
+
type DeleteGroupInvite = {
|
|
9247
|
+
body?: never;
|
|
9248
|
+
path: {
|
|
9249
|
+
/**
|
|
9250
|
+
* Must be a valid group ID.
|
|
9251
|
+
*/
|
|
9252
|
+
groupId: string;
|
|
9253
|
+
/**
|
|
9254
|
+
* Must be a valid user ID.
|
|
9255
|
+
*/
|
|
8656
9256
|
userId: string;
|
|
8657
9257
|
};
|
|
8658
9258
|
query?: never;
|
|
@@ -8676,14 +9276,19 @@ type DeleteGroupInviteResponses = {
|
|
|
8676
9276
|
200: unknown;
|
|
8677
9277
|
};
|
|
8678
9278
|
type JoinGroup = {
|
|
8679
|
-
body?:
|
|
9279
|
+
body?: JoinGroupRequest;
|
|
8680
9280
|
path: {
|
|
8681
9281
|
/**
|
|
8682
9282
|
* Must be a valid group ID.
|
|
8683
9283
|
*/
|
|
8684
9284
|
groupId: string;
|
|
8685
9285
|
};
|
|
8686
|
-
query?:
|
|
9286
|
+
query?: {
|
|
9287
|
+
/**
|
|
9288
|
+
* Manually override the failure that would occur if the user has blocked the group.
|
|
9289
|
+
*/
|
|
9290
|
+
confirmOverrideBlock?: boolean;
|
|
9291
|
+
};
|
|
8687
9292
|
url: '/groups/{groupId}/join';
|
|
8688
9293
|
};
|
|
8689
9294
|
type JoinGroupErrors = {
|
|
@@ -8786,6 +9391,58 @@ type GetGroupMembersResponses = {
|
|
|
8786
9391
|
200: Array<GroupMember>;
|
|
8787
9392
|
};
|
|
8788
9393
|
type GetGroupMembersResponse = GetGroupMembersResponses[keyof GetGroupMembersResponses];
|
|
9394
|
+
type SearchGroupMembers = {
|
|
9395
|
+
body?: never;
|
|
9396
|
+
path: {
|
|
9397
|
+
/**
|
|
9398
|
+
* Must be a valid group ID.
|
|
9399
|
+
*/
|
|
9400
|
+
groupId: string;
|
|
9401
|
+
};
|
|
9402
|
+
query: {
|
|
9403
|
+
/**
|
|
9404
|
+
* The number of objects to return.
|
|
9405
|
+
*/
|
|
9406
|
+
n?: number;
|
|
9407
|
+
/**
|
|
9408
|
+
* A zero-based offset from the default object sorting from where search results start.
|
|
9409
|
+
*/
|
|
9410
|
+
offset?: number;
|
|
9411
|
+
/**
|
|
9412
|
+
* Filter for member displayName.
|
|
9413
|
+
*/
|
|
9414
|
+
query: string;
|
|
9415
|
+
};
|
|
9416
|
+
url: '/groups/{groupId}/members/search';
|
|
9417
|
+
};
|
|
9418
|
+
type SearchGroupMembersErrors = {
|
|
9419
|
+
/**
|
|
9420
|
+
* Error response when trying to search list of users with an invalid request.
|
|
9421
|
+
*/
|
|
9422
|
+
400: _Error;
|
|
9423
|
+
/**
|
|
9424
|
+
* Error response due to missing auth cookie.
|
|
9425
|
+
*/
|
|
9426
|
+
401: _Error;
|
|
9427
|
+
/**
|
|
9428
|
+
* Error response when trying to perform operations on a non-existing group.
|
|
9429
|
+
*/
|
|
9430
|
+
404: _Error;
|
|
9431
|
+
};
|
|
9432
|
+
type SearchGroupMembersError = SearchGroupMembersErrors[keyof SearchGroupMembersErrors];
|
|
9433
|
+
type SearchGroupMembersResponses = {
|
|
9434
|
+
/**
|
|
9435
|
+
* Returns a list of GroupMember objects from a search.
|
|
9436
|
+
*/
|
|
9437
|
+
200: {
|
|
9438
|
+
results?: Array<GroupMember>;
|
|
9439
|
+
/**
|
|
9440
|
+
* Number of members returned
|
|
9441
|
+
*/
|
|
9442
|
+
total?: number;
|
|
9443
|
+
};
|
|
9444
|
+
};
|
|
9445
|
+
type SearchGroupMembersResponse = SearchGroupMembersResponses[keyof SearchGroupMembersResponses];
|
|
8789
9446
|
type KickGroupMember = {
|
|
8790
9447
|
body?: never;
|
|
8791
9448
|
path: {
|
|
@@ -8818,10 +9475,11 @@ type KickGroupMemberErrors = {
|
|
|
8818
9475
|
type KickGroupMemberError = KickGroupMemberErrors[keyof KickGroupMemberErrors];
|
|
8819
9476
|
type KickGroupMemberResponses = {
|
|
8820
9477
|
/**
|
|
8821
|
-
*
|
|
9478
|
+
* Successful response after deleting a group member.
|
|
8822
9479
|
*/
|
|
8823
|
-
200:
|
|
9480
|
+
200: Success;
|
|
8824
9481
|
};
|
|
9482
|
+
type KickGroupMemberResponse = KickGroupMemberResponses[keyof KickGroupMemberResponses];
|
|
8825
9483
|
type GetGroupMember = {
|
|
8826
9484
|
body?: never;
|
|
8827
9485
|
path: {
|
|
@@ -9394,6 +10052,110 @@ type UpdateGroupRoleResponses = {
|
|
|
9394
10052
|
200: Array<GroupRole>;
|
|
9395
10053
|
};
|
|
9396
10054
|
type UpdateGroupRoleResponse = UpdateGroupRoleResponses[keyof UpdateGroupRoleResponses];
|
|
10055
|
+
type CancelGroupTransfer = {
|
|
10056
|
+
body?: never;
|
|
10057
|
+
path: {
|
|
10058
|
+
/**
|
|
10059
|
+
* Must be a valid group ID.
|
|
10060
|
+
*/
|
|
10061
|
+
groupId: string;
|
|
10062
|
+
};
|
|
10063
|
+
query?: never;
|
|
10064
|
+
url: '/groups/{groupId}/transfer';
|
|
10065
|
+
};
|
|
10066
|
+
type CancelGroupTransferErrors = {
|
|
10067
|
+
/**
|
|
10068
|
+
* Error response when trying to cancel a transfer for a group without a pending transfer.
|
|
10069
|
+
*/
|
|
10070
|
+
400: _Error;
|
|
10071
|
+
/**
|
|
10072
|
+
* Error response due to missing auth cookie.
|
|
10073
|
+
*/
|
|
10074
|
+
401: _Error;
|
|
10075
|
+
/**
|
|
10076
|
+
* Error response when trying to perform operations on a non-existing group.
|
|
10077
|
+
*/
|
|
10078
|
+
404: _Error;
|
|
10079
|
+
};
|
|
10080
|
+
type CancelGroupTransferError = CancelGroupTransferErrors[keyof CancelGroupTransferErrors];
|
|
10081
|
+
type CancelGroupTransferResponses = {
|
|
10082
|
+
/**
|
|
10083
|
+
* Successful response after cancelling a group transfer.
|
|
10084
|
+
*/
|
|
10085
|
+
200: Success;
|
|
10086
|
+
};
|
|
10087
|
+
type CancelGroupTransferResponse = CancelGroupTransferResponses[keyof CancelGroupTransferResponses];
|
|
10088
|
+
type GetGroupTransferability = {
|
|
10089
|
+
body?: never;
|
|
10090
|
+
path: {
|
|
10091
|
+
/**
|
|
10092
|
+
* Must be a valid group ID.
|
|
10093
|
+
*/
|
|
10094
|
+
groupId: string;
|
|
10095
|
+
};
|
|
10096
|
+
query?: {
|
|
10097
|
+
/**
|
|
10098
|
+
* The UserID of the prospective transferee.
|
|
10099
|
+
*/
|
|
10100
|
+
transferTargetId?: UserId;
|
|
10101
|
+
};
|
|
10102
|
+
url: '/groups/{groupId}/transfer';
|
|
10103
|
+
};
|
|
10104
|
+
type GetGroupTransferabilityErrors = {
|
|
10105
|
+
/**
|
|
10106
|
+
* Error response due to missing auth cookie.
|
|
10107
|
+
*/
|
|
10108
|
+
401: _Error;
|
|
10109
|
+
/**
|
|
10110
|
+
* Error response when trying to perform operations on a group you are not member of.
|
|
10111
|
+
*/
|
|
10112
|
+
403: _Error;
|
|
10113
|
+
/**
|
|
10114
|
+
* Error response when trying to perform operations on a non-existing group.
|
|
10115
|
+
*/
|
|
10116
|
+
404: _Error;
|
|
10117
|
+
};
|
|
10118
|
+
type GetGroupTransferabilityError = GetGroupTransferabilityErrors[keyof GetGroupTransferabilityErrors];
|
|
10119
|
+
type GetGroupTransferabilityResponses = {
|
|
10120
|
+
/**
|
|
10121
|
+
* Returns a single GroupTransferable object.
|
|
10122
|
+
*/
|
|
10123
|
+
200: GroupTransferable;
|
|
10124
|
+
};
|
|
10125
|
+
type GetGroupTransferabilityResponse = GetGroupTransferabilityResponses[keyof GetGroupTransferabilityResponses];
|
|
10126
|
+
type InitiateOrAcceptGroupTransfer = {
|
|
10127
|
+
body?: TransferGroupRequest;
|
|
10128
|
+
path: {
|
|
10129
|
+
/**
|
|
10130
|
+
* Must be a valid group ID.
|
|
10131
|
+
*/
|
|
10132
|
+
groupId: string;
|
|
10133
|
+
};
|
|
10134
|
+
query?: never;
|
|
10135
|
+
url: '/groups/{groupId}/transfer';
|
|
10136
|
+
};
|
|
10137
|
+
type InitiateOrAcceptGroupTransferErrors = {
|
|
10138
|
+
/**
|
|
10139
|
+
* Error response due to missing auth cookie.
|
|
10140
|
+
*/
|
|
10141
|
+
401: _Error;
|
|
10142
|
+
/**
|
|
10143
|
+
* Error response when trying to transfer a group to an ineligible target user.
|
|
10144
|
+
*/
|
|
10145
|
+
403: _Error;
|
|
10146
|
+
/**
|
|
10147
|
+
* Error response when trying to perform operations on a non-existing group.
|
|
10148
|
+
*/
|
|
10149
|
+
404: _Error;
|
|
10150
|
+
};
|
|
10151
|
+
type InitiateOrAcceptGroupTransferError = InitiateOrAcceptGroupTransferErrors[keyof InitiateOrAcceptGroupTransferErrors];
|
|
10152
|
+
type InitiateOrAcceptGroupTransferResponses = {
|
|
10153
|
+
/**
|
|
10154
|
+
* Successful response after initiating or completing a group transfer.
|
|
10155
|
+
*/
|
|
10156
|
+
200: Success;
|
|
10157
|
+
};
|
|
10158
|
+
type InitiateOrAcceptGroupTransferResponse = InitiateOrAcceptGroupTransferResponses[keyof InitiateOrAcceptGroupTransferResponses];
|
|
9397
10159
|
type GetHealth = {
|
|
9398
10160
|
body?: never;
|
|
9399
10161
|
path?: never;
|
|
@@ -10999,6 +11761,99 @@ type GetProductListingAlternateResponses = {
|
|
|
10999
11761
|
200: ProductListing;
|
|
11000
11762
|
};
|
|
11001
11763
|
type GetProductListingAlternateResponse = GetProductListingAlternateResponses[keyof GetProductListingAlternateResponses];
|
|
11764
|
+
type ListProps = {
|
|
11765
|
+
body?: never;
|
|
11766
|
+
path?: never;
|
|
11767
|
+
query: {
|
|
11768
|
+
/**
|
|
11769
|
+
* The number of objects to return.
|
|
11770
|
+
*/
|
|
11771
|
+
n?: number;
|
|
11772
|
+
/**
|
|
11773
|
+
* A zero-based offset from the default object sorting from where search results start.
|
|
11774
|
+
*/
|
|
11775
|
+
offset?: number;
|
|
11776
|
+
/**
|
|
11777
|
+
* Must be a valid user ID.
|
|
11778
|
+
*/
|
|
11779
|
+
authorId: UserId;
|
|
11780
|
+
};
|
|
11781
|
+
url: '/props';
|
|
11782
|
+
};
|
|
11783
|
+
type ListPropsErrors = {
|
|
11784
|
+
/**
|
|
11785
|
+
* Error response due to missing auth cookie.
|
|
11786
|
+
*/
|
|
11787
|
+
401: _Error;
|
|
11788
|
+
/**
|
|
11789
|
+
* Error response due to missing permissions.
|
|
11790
|
+
*/
|
|
11791
|
+
403: _Error;
|
|
11792
|
+
};
|
|
11793
|
+
type ListPropsError = ListPropsErrors[keyof ListPropsErrors];
|
|
11794
|
+
type ListPropsResponses = {
|
|
11795
|
+
/**
|
|
11796
|
+
* Returns a list of Prop objects.
|
|
11797
|
+
*/
|
|
11798
|
+
200: Array<Prop>;
|
|
11799
|
+
};
|
|
11800
|
+
type ListPropsResponse = ListPropsResponses[keyof ListPropsResponses];
|
|
11801
|
+
type CreateProp = {
|
|
11802
|
+
body: CreatePropRequest;
|
|
11803
|
+
path?: never;
|
|
11804
|
+
query?: never;
|
|
11805
|
+
url: '/props';
|
|
11806
|
+
};
|
|
11807
|
+
type CreatePropErrors = {
|
|
11808
|
+
/**
|
|
11809
|
+
* Error response due to missing auth cookie.
|
|
11810
|
+
*/
|
|
11811
|
+
401: _Error;
|
|
11812
|
+
/**
|
|
11813
|
+
* Error response due to missing permissions.
|
|
11814
|
+
*/
|
|
11815
|
+
403: _Error;
|
|
11816
|
+
};
|
|
11817
|
+
type CreatePropError = CreatePropErrors[keyof CreatePropErrors];
|
|
11818
|
+
type CreatePropResponses = {
|
|
11819
|
+
/**
|
|
11820
|
+
* Returns a single Prop object.
|
|
11821
|
+
*/
|
|
11822
|
+
200: Prop;
|
|
11823
|
+
};
|
|
11824
|
+
type CreatePropResponse = CreatePropResponses[keyof CreatePropResponses];
|
|
11825
|
+
type DeleteProp = {
|
|
11826
|
+
body?: never;
|
|
11827
|
+
path: {
|
|
11828
|
+
/**
|
|
11829
|
+
* Prop ID.
|
|
11830
|
+
*/
|
|
11831
|
+
propId: string;
|
|
11832
|
+
};
|
|
11833
|
+
query?: never;
|
|
11834
|
+
url: '/props/{propId}';
|
|
11835
|
+
};
|
|
11836
|
+
type DeletePropErrors = {
|
|
11837
|
+
/**
|
|
11838
|
+
* Error response due to missing auth cookie.
|
|
11839
|
+
*/
|
|
11840
|
+
401: _Error;
|
|
11841
|
+
/**
|
|
11842
|
+
* Error response due to missing permissions.
|
|
11843
|
+
*/
|
|
11844
|
+
403: _Error;
|
|
11845
|
+
/**
|
|
11846
|
+
* Error response when trying to perform operations on a non-existing prop.
|
|
11847
|
+
*/
|
|
11848
|
+
404: _Error;
|
|
11849
|
+
};
|
|
11850
|
+
type DeletePropError = DeletePropErrors[keyof DeletePropErrors];
|
|
11851
|
+
type DeletePropResponses = {
|
|
11852
|
+
/**
|
|
11853
|
+
* The Prop is successfully deleted.
|
|
11854
|
+
*/
|
|
11855
|
+
200: unknown;
|
|
11856
|
+
};
|
|
11002
11857
|
type GetProp = {
|
|
11003
11858
|
body?: never;
|
|
11004
11859
|
path: {
|
|
@@ -11015,6 +11870,10 @@ type GetPropErrors = {
|
|
|
11015
11870
|
* Error response due to missing auth cookie.
|
|
11016
11871
|
*/
|
|
11017
11872
|
401: _Error;
|
|
11873
|
+
/**
|
|
11874
|
+
* Error response when trying to perform operations on a non-existing prop.
|
|
11875
|
+
*/
|
|
11876
|
+
404: _Error;
|
|
11018
11877
|
};
|
|
11019
11878
|
type GetPropError = GetPropErrors[keyof GetPropErrors];
|
|
11020
11879
|
type GetPropResponses = {
|
|
@@ -11024,6 +11883,138 @@ type GetPropResponses = {
|
|
|
11024
11883
|
200: Prop;
|
|
11025
11884
|
};
|
|
11026
11885
|
type GetPropResponse = GetPropResponses[keyof GetPropResponses];
|
|
11886
|
+
type UpdateProp = {
|
|
11887
|
+
body: UpdatePropRequest;
|
|
11888
|
+
path: {
|
|
11889
|
+
/**
|
|
11890
|
+
* Prop ID.
|
|
11891
|
+
*/
|
|
11892
|
+
propId: string;
|
|
11893
|
+
};
|
|
11894
|
+
query?: never;
|
|
11895
|
+
url: '/props/{propId}';
|
|
11896
|
+
};
|
|
11897
|
+
type UpdatePropErrors = {
|
|
11898
|
+
/**
|
|
11899
|
+
* Error response due to missing auth cookie.
|
|
11900
|
+
*/
|
|
11901
|
+
401: _Error;
|
|
11902
|
+
/**
|
|
11903
|
+
* Error response due to missing permissions.
|
|
11904
|
+
*/
|
|
11905
|
+
403: _Error;
|
|
11906
|
+
/**
|
|
11907
|
+
* Error response when trying to perform operations on a non-existing prop.
|
|
11908
|
+
*/
|
|
11909
|
+
404: _Error;
|
|
11910
|
+
};
|
|
11911
|
+
type UpdatePropError = UpdatePropErrors[keyof UpdatePropErrors];
|
|
11912
|
+
type UpdatePropResponses = {
|
|
11913
|
+
/**
|
|
11914
|
+
* Returns a single Prop object.
|
|
11915
|
+
*/
|
|
11916
|
+
200: Prop;
|
|
11917
|
+
};
|
|
11918
|
+
type UpdatePropResponse = UpdatePropResponses[keyof UpdatePropResponses];
|
|
11919
|
+
type UnpublishProp = {
|
|
11920
|
+
body?: never;
|
|
11921
|
+
path: {
|
|
11922
|
+
/**
|
|
11923
|
+
* Prop ID.
|
|
11924
|
+
*/
|
|
11925
|
+
propId: string;
|
|
11926
|
+
};
|
|
11927
|
+
query?: never;
|
|
11928
|
+
url: '/props/{propId}/publish';
|
|
11929
|
+
};
|
|
11930
|
+
type UnpublishPropErrors = {
|
|
11931
|
+
/**
|
|
11932
|
+
* Error response due to missing auth cookie.
|
|
11933
|
+
*/
|
|
11934
|
+
401: _Error;
|
|
11935
|
+
/**
|
|
11936
|
+
* Error response due to missing permissions.
|
|
11937
|
+
*/
|
|
11938
|
+
403: _Error;
|
|
11939
|
+
/**
|
|
11940
|
+
* Error response when trying to perform operations on a non-existing prop.
|
|
11941
|
+
*/
|
|
11942
|
+
404: _Error;
|
|
11943
|
+
};
|
|
11944
|
+
type UnpublishPropError = UnpublishPropErrors[keyof UnpublishPropErrors];
|
|
11945
|
+
type UnpublishPropResponses = {
|
|
11946
|
+
/**
|
|
11947
|
+
* Returns a single PropPublishStatus object.
|
|
11948
|
+
*/
|
|
11949
|
+
200: PropPublishStatus;
|
|
11950
|
+
};
|
|
11951
|
+
type UnpublishPropResponse = UnpublishPropResponses[keyof UnpublishPropResponses];
|
|
11952
|
+
type GetPropPublishStatus = {
|
|
11953
|
+
body?: never;
|
|
11954
|
+
path: {
|
|
11955
|
+
/**
|
|
11956
|
+
* Prop ID.
|
|
11957
|
+
*/
|
|
11958
|
+
propId: string;
|
|
11959
|
+
};
|
|
11960
|
+
query?: never;
|
|
11961
|
+
url: '/props/{propId}/publish';
|
|
11962
|
+
};
|
|
11963
|
+
type GetPropPublishStatusErrors = {
|
|
11964
|
+
/**
|
|
11965
|
+
* Error response due to missing auth cookie.
|
|
11966
|
+
*/
|
|
11967
|
+
401: _Error;
|
|
11968
|
+
/**
|
|
11969
|
+
* Error response due to missing permissions.
|
|
11970
|
+
*/
|
|
11971
|
+
403: _Error;
|
|
11972
|
+
/**
|
|
11973
|
+
* Error response when trying to perform operations on a non-existing prop.
|
|
11974
|
+
*/
|
|
11975
|
+
404: _Error;
|
|
11976
|
+
};
|
|
11977
|
+
type GetPropPublishStatusError = GetPropPublishStatusErrors[keyof GetPropPublishStatusErrors];
|
|
11978
|
+
type GetPropPublishStatusResponses = {
|
|
11979
|
+
/**
|
|
11980
|
+
* Returns a single PropPublishStatus object.
|
|
11981
|
+
*/
|
|
11982
|
+
200: PropPublishStatus;
|
|
11983
|
+
};
|
|
11984
|
+
type GetPropPublishStatusResponse = GetPropPublishStatusResponses[keyof GetPropPublishStatusResponses];
|
|
11985
|
+
type PublishProp = {
|
|
11986
|
+
body?: never;
|
|
11987
|
+
path: {
|
|
11988
|
+
/**
|
|
11989
|
+
* Prop ID.
|
|
11990
|
+
*/
|
|
11991
|
+
propId: string;
|
|
11992
|
+
};
|
|
11993
|
+
query?: never;
|
|
11994
|
+
url: '/props/{propId}/publish';
|
|
11995
|
+
};
|
|
11996
|
+
type PublishPropErrors = {
|
|
11997
|
+
/**
|
|
11998
|
+
* Error response due to missing auth cookie.
|
|
11999
|
+
*/
|
|
12000
|
+
401: _Error;
|
|
12001
|
+
/**
|
|
12002
|
+
* Error response due to missing permissions.
|
|
12003
|
+
*/
|
|
12004
|
+
403: _Error;
|
|
12005
|
+
/**
|
|
12006
|
+
* Error response when trying to perform operations on a non-existing prop.
|
|
12007
|
+
*/
|
|
12008
|
+
404: _Error;
|
|
12009
|
+
};
|
|
12010
|
+
type PublishPropError = PublishPropErrors[keyof PublishPropErrors];
|
|
12011
|
+
type PublishPropResponses = {
|
|
12012
|
+
/**
|
|
12013
|
+
* Returns a single PropPublishStatus object.
|
|
12014
|
+
*/
|
|
12015
|
+
200: PropPublishStatus;
|
|
12016
|
+
};
|
|
12017
|
+
type PublishPropResponse = PublishPropResponses[keyof PublishPropResponses];
|
|
11027
12018
|
type RequestInvite = {
|
|
11028
12019
|
/**
|
|
11029
12020
|
* Slot number of the Request Message to use when request an invite.
|
|
@@ -11583,6 +12574,10 @@ type SearchUsers = {
|
|
|
11583
12574
|
* A zero-based offset from the default object sorting from where search results start.
|
|
11584
12575
|
*/
|
|
11585
12576
|
offset?: number;
|
|
12577
|
+
/**
|
|
12578
|
+
* Not quite sure what this actually does (exists on the website but doesn't seem to be used)
|
|
12579
|
+
*/
|
|
12580
|
+
isInternalVariant?: boolean;
|
|
11586
12581
|
};
|
|
11587
12582
|
url: '/users';
|
|
11588
12583
|
};
|
|
@@ -11900,6 +12895,61 @@ type GetUserGroupsResponses = {
|
|
|
11900
12895
|
200: Array<LimitedUserGroups>;
|
|
11901
12896
|
};
|
|
11902
12897
|
type GetUserGroupsResponse = GetUserGroupsResponses[keyof GetUserGroupsResponses];
|
|
12898
|
+
type GetInvitedGroups = {
|
|
12899
|
+
body?: never;
|
|
12900
|
+
path: {
|
|
12901
|
+
/**
|
|
12902
|
+
* Must be a valid user ID.
|
|
12903
|
+
*/
|
|
12904
|
+
userId: string;
|
|
12905
|
+
};
|
|
12906
|
+
query?: never;
|
|
12907
|
+
url: '/users/{userId}/groups/invited';
|
|
12908
|
+
};
|
|
12909
|
+
type GetInvitedGroupsErrors = {
|
|
12910
|
+
/**
|
|
12911
|
+
* Error response due to missing auth cookie.
|
|
12912
|
+
*/
|
|
12913
|
+
401: _Error;
|
|
12914
|
+
};
|
|
12915
|
+
type GetInvitedGroupsError = GetInvitedGroupsErrors[keyof GetInvitedGroupsErrors];
|
|
12916
|
+
type GetInvitedGroupsResponses = {
|
|
12917
|
+
/**
|
|
12918
|
+
* Returns a list of Group objects.
|
|
12919
|
+
*/
|
|
12920
|
+
200: Array<Group>;
|
|
12921
|
+
};
|
|
12922
|
+
type GetInvitedGroupsResponse = GetInvitedGroupsResponses[keyof GetInvitedGroupsResponses];
|
|
12923
|
+
type GetUserAllGroupPermissions = {
|
|
12924
|
+
body?: never;
|
|
12925
|
+
path: {
|
|
12926
|
+
/**
|
|
12927
|
+
* Must be a valid user ID.
|
|
12928
|
+
*/
|
|
12929
|
+
userId: string;
|
|
12930
|
+
};
|
|
12931
|
+
query?: {
|
|
12932
|
+
/**
|
|
12933
|
+
* Comma-separated (no spaces!) list of GroupIDs to retrieve permissions for.
|
|
12934
|
+
*/
|
|
12935
|
+
groupIds?: string;
|
|
12936
|
+
};
|
|
12937
|
+
url: '/users/{userId}/groups/permissions';
|
|
12938
|
+
};
|
|
12939
|
+
type GetUserAllGroupPermissionsErrors = {
|
|
12940
|
+
/**
|
|
12941
|
+
* Error response due to missing auth cookie.
|
|
12942
|
+
*/
|
|
12943
|
+
401: _Error;
|
|
12944
|
+
};
|
|
12945
|
+
type GetUserAllGroupPermissionsError = GetUserAllGroupPermissionsErrors[keyof GetUserAllGroupPermissionsErrors];
|
|
12946
|
+
type GetUserAllGroupPermissionsResponses = {
|
|
12947
|
+
/**
|
|
12948
|
+
* The group permissions the user has for every joined group.
|
|
12949
|
+
*/
|
|
12950
|
+
200: UserAllGroupPermissions;
|
|
12951
|
+
};
|
|
12952
|
+
type GetUserAllGroupPermissionsResponse = GetUserAllGroupPermissionsResponses[keyof GetUserAllGroupPermissionsResponses];
|
|
11903
12953
|
type GetUserRepresentedGroup = {
|
|
11904
12954
|
body?: never;
|
|
11905
12955
|
path: {
|
|
@@ -11950,6 +13000,31 @@ type GetUserGroupRequestsResponses = {
|
|
|
11950
13000
|
200: Array<Group>;
|
|
11951
13001
|
};
|
|
11952
13002
|
type GetUserGroupRequestsResponse = GetUserGroupRequestsResponses[keyof GetUserGroupRequestsResponses];
|
|
13003
|
+
type GetBlockedGroups = {
|
|
13004
|
+
body?: never;
|
|
13005
|
+
path: {
|
|
13006
|
+
/**
|
|
13007
|
+
* Must be a valid user ID.
|
|
13008
|
+
*/
|
|
13009
|
+
userId: string;
|
|
13010
|
+
};
|
|
13011
|
+
query?: never;
|
|
13012
|
+
url: '/users/{userId}/groups/userblocked';
|
|
13013
|
+
};
|
|
13014
|
+
type GetBlockedGroupsErrors = {
|
|
13015
|
+
/**
|
|
13016
|
+
* Error response due to missing auth cookie.
|
|
13017
|
+
*/
|
|
13018
|
+
401: _Error;
|
|
13019
|
+
};
|
|
13020
|
+
type GetBlockedGroupsError = GetBlockedGroupsErrors[keyof GetBlockedGroupsErrors];
|
|
13021
|
+
type GetBlockedGroupsResponses = {
|
|
13022
|
+
/**
|
|
13023
|
+
* Returns a list of Group objects.
|
|
13024
|
+
*/
|
|
13025
|
+
200: Array<Group>;
|
|
13026
|
+
};
|
|
13027
|
+
type GetBlockedGroupsResponse = GetBlockedGroupsResponses[keyof GetBlockedGroupsResponses];
|
|
11953
13028
|
type GetUserGroupInstances = {
|
|
11954
13029
|
body?: never;
|
|
11955
13030
|
path: {
|
|
@@ -12111,6 +13186,30 @@ type GetMutualGroupsResponses = {
|
|
|
12111
13186
|
200: Array<LimitedUserGroups>;
|
|
12112
13187
|
};
|
|
12113
13188
|
type GetMutualGroupsResponse = GetMutualGroupsResponses[keyof GetMutualGroupsResponses];
|
|
13189
|
+
type DeleteAllUserPersistenceData = {
|
|
13190
|
+
body?: never;
|
|
13191
|
+
path: {
|
|
13192
|
+
/**
|
|
13193
|
+
* Must be a valid user ID.
|
|
13194
|
+
*/
|
|
13195
|
+
userId: string;
|
|
13196
|
+
};
|
|
13197
|
+
query?: never;
|
|
13198
|
+
url: '/users/{userId}/persist';
|
|
13199
|
+
};
|
|
13200
|
+
type DeleteAllUserPersistenceDataErrors = {
|
|
13201
|
+
/**
|
|
13202
|
+
* Error response due to missing auth cookie.
|
|
13203
|
+
*/
|
|
13204
|
+
401: _Error;
|
|
13205
|
+
};
|
|
13206
|
+
type DeleteAllUserPersistenceDataError = DeleteAllUserPersistenceDataErrors[keyof DeleteAllUserPersistenceDataErrors];
|
|
13207
|
+
type DeleteAllUserPersistenceDataResponses = {
|
|
13208
|
+
/**
|
|
13209
|
+
* The user's persistence data for all worlds is deleted.
|
|
13210
|
+
*/
|
|
13211
|
+
200: unknown;
|
|
13212
|
+
};
|
|
12114
13213
|
type RemoveTags = {
|
|
12115
13214
|
body: ChangeUserTagsRequest;
|
|
12116
13215
|
path: {
|
|
@@ -12882,6 +13981,18 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
12882
13981
|
* Returns an AdminAssetBundle
|
|
12883
13982
|
*/
|
|
12884
13983
|
getAdminAssetBundle<ThrowOnError extends boolean = false>(options: Options<GetAdminAssetBundle, ThrowOnError>): RequestResult<GetAdminAssetBundleResponses, unknown, ThrowOnError, "fields">;
|
|
13984
|
+
/**
|
|
13985
|
+
* Get Content Agreement Status
|
|
13986
|
+
*
|
|
13987
|
+
* Returns the agreement status of the currently authenticated user for the given agreementCode, contentId, and version.
|
|
13988
|
+
*/
|
|
13989
|
+
getContentAgreementStatus<ThrowOnError extends boolean = false>(options: Options<GetContentAgreementStatus, ThrowOnError>): RequestResult<GetContentAgreementStatusResponses, GetContentAgreementStatusErrors, ThrowOnError, "fields">;
|
|
13990
|
+
/**
|
|
13991
|
+
* Submit Content Agreement
|
|
13992
|
+
*
|
|
13993
|
+
* Returns the agreement of the currently authenticated user for the given agreementCode, contentId, and version.
|
|
13994
|
+
*/
|
|
13995
|
+
submitContentAgreement<ThrowOnError extends boolean = false>(options?: Options<SubmitContentAgreement, ThrowOnError>): RequestResult<SubmitContentAgreementResponses, SubmitContentAgreementErrors, ThrowOnError, "fields">;
|
|
12885
13996
|
/**
|
|
12886
13997
|
* Get File Version Analysis
|
|
12887
13998
|
*
|
|
@@ -12900,6 +14011,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
12900
14011
|
* Get the standard performance analysis for the uploaded assets of an avatar
|
|
12901
14012
|
*/
|
|
12902
14013
|
getFileAnalysisStandard<ThrowOnError extends boolean = false>(options: Options<GetFileAnalysisStandard, ThrowOnError>): RequestResult<GetFileAnalysisStandardResponses, GetFileAnalysisStandardErrors, ThrowOnError, "fields">;
|
|
14014
|
+
/**
|
|
14015
|
+
* Update Asset Review Notes
|
|
14016
|
+
*
|
|
14017
|
+
* Update notes regarding an asset review.
|
|
14018
|
+
*/
|
|
14019
|
+
updateAssetReviewNotes<ThrowOnError extends boolean = false>(options: Options<UpdateAssetReviewNotes, ThrowOnError>): RequestResult<UpdateAssetReviewNotesResponses, UpdateAssetReviewNotesErrors, ThrowOnError, "fields">;
|
|
12903
14020
|
/**
|
|
12904
14021
|
* Verify Auth Token
|
|
12905
14022
|
*
|
|
@@ -13441,6 +14558,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
13441
14558
|
* Returns a list of files
|
|
13442
14559
|
*/
|
|
13443
14560
|
getFiles<ThrowOnError extends boolean = false>(options?: Options<GetFiles, ThrowOnError>): RequestResult<GetFilesResponses, unknown, ThrowOnError, "fields">;
|
|
14561
|
+
/**
|
|
14562
|
+
* Set Group Gallery File Order
|
|
14563
|
+
*
|
|
14564
|
+
* Set the order of the files in a group gallery
|
|
14565
|
+
*/
|
|
14566
|
+
setGroupGalleryFileOrder<ThrowOnError extends boolean = false>(options?: Options<SetGroupGalleryFileOrder, ThrowOnError>): RequestResult<SetGroupGalleryFileOrderResponses, SetGroupGalleryFileOrderErrors, ThrowOnError, "fields">;
|
|
13444
14567
|
/**
|
|
13445
14568
|
* Upload gallery image
|
|
13446
14569
|
*
|
|
@@ -13503,6 +14626,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
13503
14626
|
* Creates an Announcement for a Group. Warning: This will also remove all announcements. To make proper announcements, use the posts endpoint instead
|
|
13504
14627
|
*/
|
|
13505
14628
|
createGroupAnnouncement<ThrowOnError extends boolean = false>(options: Options<CreateGroupAnnouncement, ThrowOnError>): RequestResult<CreateGroupAnnouncementResponses, CreateGroupAnnouncementErrors, ThrowOnError, "fields">;
|
|
14629
|
+
/**
|
|
14630
|
+
* Get Group Audit Log Entry Types
|
|
14631
|
+
*
|
|
14632
|
+
* Returns a list of audit log entry types for which the group has entries.
|
|
14633
|
+
*/
|
|
14634
|
+
getGroupAuditLogEntryTypes<ThrowOnError extends boolean = false>(options: Options<GetGroupAuditLogEntryTypes, ThrowOnError>): RequestResult<GetGroupAuditLogEntryTypesResponses, GetGroupAuditLogEntryTypesErrors, ThrowOnError, "fields">;
|
|
13506
14635
|
/**
|
|
13507
14636
|
* Get Group Audit Logs
|
|
13508
14637
|
*
|
|
@@ -13527,6 +14656,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
13527
14656
|
* Unbans a user from a Group.
|
|
13528
14657
|
*/
|
|
13529
14658
|
unbanGroupMember<ThrowOnError extends boolean = false>(options: Options<UnbanGroupMember, ThrowOnError>): RequestResult<UnbanGroupMemberResponses, UnbanGroupMemberErrors, ThrowOnError, "fields">;
|
|
14659
|
+
/**
|
|
14660
|
+
* Block Group
|
|
14661
|
+
*
|
|
14662
|
+
* Blocks a Group for the current user. To unblock a group, call kickGroupMember (DELETE /groups/{groupId}/members/{userId}).
|
|
14663
|
+
*/
|
|
14664
|
+
blockGroup<ThrowOnError extends boolean = false>(options: Options<BlockGroup, ThrowOnError>): RequestResult<BlockGroupResponses, BlockGroupErrors, ThrowOnError, "fields">;
|
|
13530
14665
|
/**
|
|
13531
14666
|
* Create Group Gallery
|
|
13532
14667
|
*
|
|
@@ -13581,6 +14716,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
13581
14716
|
* Sends an invite to a user to join the group.
|
|
13582
14717
|
*/
|
|
13583
14718
|
createGroupInvite<ThrowOnError extends boolean = false>(options: Options<CreateGroupInvite, ThrowOnError>): RequestResult<CreateGroupInviteResponses, CreateGroupInviteErrors, ThrowOnError, "fields">;
|
|
14719
|
+
/**
|
|
14720
|
+
* Decline Invite from Group
|
|
14721
|
+
*
|
|
14722
|
+
* Declines an invite to the user from a group.
|
|
14723
|
+
*/
|
|
14724
|
+
declineGroupInvite<ThrowOnError extends boolean = false>(options: Options<DeclineGroupInvite, ThrowOnError>): RequestResult<DeclineGroupInviteResponses, DeclineGroupInviteErrors, ThrowOnError, "fields">;
|
|
13584
14725
|
/**
|
|
13585
14726
|
* Delete User Invite
|
|
13586
14727
|
*
|
|
@@ -13606,10 +14747,16 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
13606
14747
|
* Information about the user calling the endpoint must be found in the `myMember` field of the Group object.
|
|
13607
14748
|
*/
|
|
13608
14749
|
getGroupMembers<ThrowOnError extends boolean = false>(options: Options<GetGroupMembers, ThrowOnError>): RequestResult<GetGroupMembersResponses, GetGroupMembersErrors, ThrowOnError, "fields">;
|
|
14750
|
+
/**
|
|
14751
|
+
* Search Group Members
|
|
14752
|
+
*
|
|
14753
|
+
* Search for members in the group by displayName.
|
|
14754
|
+
*/
|
|
14755
|
+
searchGroupMembers<ThrowOnError extends boolean = false>(options: Options<SearchGroupMembers, ThrowOnError>): RequestResult<SearchGroupMembersResponses, SearchGroupMembersErrors, ThrowOnError, "fields">;
|
|
13609
14756
|
/**
|
|
13610
14757
|
* Kick Group Member
|
|
13611
14758
|
*
|
|
13612
|
-
* Kicks a Group Member from the Group. The current user must have the "Remove Group Members" permission.
|
|
14759
|
+
* Kicks a Group Member from the Group. The current user must have the "Remove Group Members" permission. Also used for unblocking groups.
|
|
13613
14760
|
*/
|
|
13614
14761
|
kickGroupMember<ThrowOnError extends boolean = false>(options: Options<KickGroupMember, ThrowOnError>): RequestResult<KickGroupMemberResponses, KickGroupMemberErrors, ThrowOnError, "fields">;
|
|
13615
14762
|
/**
|
|
@@ -13716,6 +14863,24 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
13716
14863
|
* Updates a group role by ID.
|
|
13717
14864
|
*/
|
|
13718
14865
|
updateGroupRole<ThrowOnError extends boolean = false>(options: Options<UpdateGroupRole, ThrowOnError>): RequestResult<UpdateGroupRoleResponses, UpdateGroupRoleErrors, ThrowOnError, "fields">;
|
|
14866
|
+
/**
|
|
14867
|
+
* Cancel Group Transfer
|
|
14868
|
+
*
|
|
14869
|
+
* Cancel a Group Transfer.
|
|
14870
|
+
*/
|
|
14871
|
+
cancelGroupTransfer<ThrowOnError extends boolean = false>(options: Options<CancelGroupTransfer, ThrowOnError>): RequestResult<CancelGroupTransferResponses, CancelGroupTransferErrors, ThrowOnError, "fields">;
|
|
14872
|
+
/**
|
|
14873
|
+
* Get Group Transferability
|
|
14874
|
+
*
|
|
14875
|
+
* Returns the transferability of the group to a given user.
|
|
14876
|
+
*/
|
|
14877
|
+
getGroupTransferability<ThrowOnError extends boolean = false>(options: Options<GetGroupTransferability, ThrowOnError>): RequestResult<GetGroupTransferabilityResponses, GetGroupTransferabilityErrors, ThrowOnError, "fields">;
|
|
14878
|
+
/**
|
|
14879
|
+
* Initiate or Accept Group Transfer
|
|
14880
|
+
*
|
|
14881
|
+
* To initiate, must be logged in as the current owner and specify the transferTargetId in the body. To accept, must be logged in as the user targetted by a pending transfer, no body is required.
|
|
14882
|
+
*/
|
|
14883
|
+
initiateOrAcceptGroupTransfer<ThrowOnError extends boolean = false>(options: Options<InitiateOrAcceptGroupTransfer, ThrowOnError>): RequestResult<InitiateOrAcceptGroupTransferResponses, InitiateOrAcceptGroupTransferErrors, ThrowOnError, "fields">;
|
|
13719
14884
|
/**
|
|
13720
14885
|
* Check API Health
|
|
13721
14886
|
*
|
|
@@ -14111,12 +15276,54 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
14111
15276
|
* @deprecated
|
|
14112
15277
|
*/
|
|
14113
15278
|
getProductListingAlternate<ThrowOnError extends boolean = false>(options: Options<GetProductListingAlternate, ThrowOnError>): RequestResult<GetProductListingAlternateResponses, GetProductListingAlternateErrors, ThrowOnError, "fields">;
|
|
15279
|
+
/**
|
|
15280
|
+
* List Props
|
|
15281
|
+
*
|
|
15282
|
+
* Returns a list Prop objects.
|
|
15283
|
+
*/
|
|
15284
|
+
listProps<ThrowOnError extends boolean = false>(options: Options<ListProps, ThrowOnError>): RequestResult<ListPropsResponses, ListPropsErrors, ThrowOnError, "fields">;
|
|
15285
|
+
/**
|
|
15286
|
+
* Create Prop
|
|
15287
|
+
*
|
|
15288
|
+
* Create a Prop and return the new Prop object.
|
|
15289
|
+
*/
|
|
15290
|
+
createProp<ThrowOnError extends boolean = false>(options: Options<CreateProp, ThrowOnError>): RequestResult<CreatePropResponses, CreatePropErrors, ThrowOnError, "fields">;
|
|
15291
|
+
/**
|
|
15292
|
+
* Delete Prop
|
|
15293
|
+
*
|
|
15294
|
+
* Delete a Prop.
|
|
15295
|
+
*/
|
|
15296
|
+
deleteProp<ThrowOnError extends boolean = false>(options: Options<DeleteProp, ThrowOnError>): RequestResult<DeletePropResponses, DeletePropErrors, ThrowOnError, "fields">;
|
|
14114
15297
|
/**
|
|
14115
15298
|
* Get Prop
|
|
14116
15299
|
*
|
|
14117
15300
|
* Returns a Prop object.
|
|
14118
15301
|
*/
|
|
14119
15302
|
getProp<ThrowOnError extends boolean = false>(options: Options<GetProp, ThrowOnError>): RequestResult<GetPropResponses, GetPropErrors, ThrowOnError, "fields">;
|
|
15303
|
+
/**
|
|
15304
|
+
* Update Prop
|
|
15305
|
+
*
|
|
15306
|
+
* Updates a Prop and returns the updated Prop object. When updating the asset bundle, all of `name`, `assetUrl`, `platform`, `unityVersion`, `assetVersion`, `spawnType`, and `worldPlacementMask` must be present, as well as `propSignature` if this value is not blank.
|
|
15307
|
+
*/
|
|
15308
|
+
updateProp<ThrowOnError extends boolean = false>(options: Options<UpdateProp, ThrowOnError>): RequestResult<UpdatePropResponses, UpdatePropErrors, ThrowOnError, "fields">;
|
|
15309
|
+
/**
|
|
15310
|
+
* Unpublish Prop
|
|
15311
|
+
*
|
|
15312
|
+
* Unpublish a Prop and return the updated PropPublishStatus object.
|
|
15313
|
+
*/
|
|
15314
|
+
unpublishProp<ThrowOnError extends boolean = false>(options: Options<UnpublishProp, ThrowOnError>): RequestResult<UnpublishPropResponses, UnpublishPropErrors, ThrowOnError, "fields">;
|
|
15315
|
+
/**
|
|
15316
|
+
* Get Prop Publish Status
|
|
15317
|
+
*
|
|
15318
|
+
* Returns a PropPublishStatus object.
|
|
15319
|
+
*/
|
|
15320
|
+
getPropPublishStatus<ThrowOnError extends boolean = false>(options: Options<GetPropPublishStatus, ThrowOnError>): RequestResult<GetPropPublishStatusResponses, GetPropPublishStatusErrors, ThrowOnError, "fields">;
|
|
15321
|
+
/**
|
|
15322
|
+
* Publish Prop
|
|
15323
|
+
*
|
|
15324
|
+
* Publish a Prop and return the updated PropPublishStatus object.
|
|
15325
|
+
*/
|
|
15326
|
+
publishProp<ThrowOnError extends boolean = false>(options: Options<PublishProp, ThrowOnError>): RequestResult<PublishPropResponses, PublishPropErrors, ThrowOnError, "fields">;
|
|
14120
15327
|
/**
|
|
14121
15328
|
* Request Invite
|
|
14122
15329
|
*
|
|
@@ -14317,6 +15524,18 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
14317
15524
|
* Get user's public groups
|
|
14318
15525
|
*/
|
|
14319
15526
|
getUserGroups<ThrowOnError extends boolean = false>(options: Options<GetUserGroups, ThrowOnError>): RequestResult<GetUserGroupsResponses, GetUserGroupsErrors, ThrowOnError, "fields">;
|
|
15527
|
+
/**
|
|
15528
|
+
* Get User Group Invited
|
|
15529
|
+
*
|
|
15530
|
+
* Returns a list of Groups the user has been invited to.
|
|
15531
|
+
*/
|
|
15532
|
+
getInvitedGroups<ThrowOnError extends boolean = false>(options: Options<GetInvitedGroups, ThrowOnError>): RequestResult<GetInvitedGroupsResponses, GetInvitedGroupsErrors, ThrowOnError, "fields">;
|
|
15533
|
+
/**
|
|
15534
|
+
* Get user's permissions for all joined groups.
|
|
15535
|
+
*
|
|
15536
|
+
* Returns a mapping of GroupIDs to arrays of GroupPermissions.
|
|
15537
|
+
*/
|
|
15538
|
+
getUserAllGroupPermissions<ThrowOnError extends boolean = false>(options: Options<GetUserAllGroupPermissions, ThrowOnError>): RequestResult<GetUserAllGroupPermissionsResponses, GetUserAllGroupPermissionsErrors, ThrowOnError, "fields">;
|
|
14320
15539
|
/**
|
|
14321
15540
|
* Get user's current represented group
|
|
14322
15541
|
*
|
|
@@ -14329,6 +15548,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
14329
15548
|
* Returns a list of Groups the user has requested to be invited into.
|
|
14330
15549
|
*/
|
|
14331
15550
|
getUserGroupRequests<ThrowOnError extends boolean = false>(options: Options<GetUserGroupRequests, ThrowOnError>): RequestResult<GetUserGroupRequestsResponses, GetUserGroupRequestsErrors, ThrowOnError, "fields">;
|
|
15551
|
+
/**
|
|
15552
|
+
* Get User Group Blocks
|
|
15553
|
+
*
|
|
15554
|
+
* Returns a list of Groups the user has blocked.
|
|
15555
|
+
*/
|
|
15556
|
+
getBlockedGroups<ThrowOnError extends boolean = false>(options: Options<GetBlockedGroups, ThrowOnError>): RequestResult<GetBlockedGroupsResponses, GetBlockedGroupsErrors, ThrowOnError, "fields">;
|
|
14332
15557
|
/**
|
|
14333
15558
|
* Get User Group Instances
|
|
14334
15559
|
*
|
|
@@ -14359,6 +15584,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
14359
15584
|
* Gets a list of mutual groups between the logged in user and the specified user
|
|
14360
15585
|
*/
|
|
14361
15586
|
getMutualGroups<ThrowOnError extends boolean = false>(options: Options<GetMutualGroups, ThrowOnError>): RequestResult<GetMutualGroupsResponses, GetMutualGroupsErrors, ThrowOnError, "fields">;
|
|
15587
|
+
/**
|
|
15588
|
+
* Delete All User Persistence Data
|
|
15589
|
+
*
|
|
15590
|
+
* Deletes all of the user's persistence data for every world.
|
|
15591
|
+
*/
|
|
15592
|
+
deleteAllUserPersistenceData<ThrowOnError extends boolean = false>(options: Options<DeleteAllUserPersistenceData, ThrowOnError>): RequestResult<DeleteAllUserPersistenceDataResponses, DeleteAllUserPersistenceDataErrors, ThrowOnError, "fields">;
|
|
14362
15593
|
/**
|
|
14363
15594
|
* Remove User Tags
|
|
14364
15595
|
*
|
|
@@ -14629,4 +15860,4 @@ declare class VRChat extends VRChatInternal {
|
|
|
14629
15860
|
private saveCookies;
|
|
14630
15861
|
}
|
|
14631
15862
|
|
|
14632
|
-
export { type Disable2FaResult as $, type AdminUnityPackage as A, type BadgeId as B, type ClientOptions as C, type CurrentAvatarImageUrl as D, type CurrentAvatarThumbnailImageUrl as E, type FileAnalysisAvatarStats as F, type DeveloperType as G, type DiscordId as H, type DiscordDetails as I, type PastDisplayName as J, type GroupId as K, type LoginCredentials as L, type LocationId as M, type CurrentUserPresence as N, type UserState as O, type Platform as P, type UserStatus as Q, type Response$1 as R, type SubscriptionPeriod as S, TwoFactorMethods as T, type UserId as U, VRChat as V, type WorldId as W, type CurrentUser as X, type TwoFactorAuthType as Y, type RequiresTwoFactorAuth as Z, type _Error as _, VRChatError as a, type License as a$, type TwoFactorEmailCode as a0, type Verify2FaEmailCodeResult as a1, type TwoFactorAuthCode as a2, type Verify2FaResult as a3, type Pending2FaResult as a4, type AvatarModerationType as a5, type AvatarModeration as a6, type CreateAvatarModerationRequest as a7, type AvatarModerationCreated as a8, type OkStatus2 as a9, type CalendarEventAccess as aA, type CalendarEventCategory as aB, type CalendarId as aC, type FileId as aD, type LanguageCode as aE, type CalendarEventPlatform as aF, type GroupRoleId as aG, type CalendarEvent as aH, type PaginatedCalendarEventList as aI, type CalendarEventDiscoveryScope as aJ, type CalendarEventDiscoveryInclusion as aK, type CalendarEventDiscovery as aL, type CreateCalendarEventRequest as aM, type UpdateCalendarEventRequest as aN, type FollowCalendarEventRequest as aO, type ApiConfigAnnouncement as aP, type PerformanceLimiterInfo as aQ, type ApiConfigConstants as aR, type ApiConfigDownloadUrlList as aS, type DynamicContentRow as aT, type ApiConfigEvents as aU, type PlatformBuildInfo as aV, type ReportCategory as aW, type ReportReason as aX, type ApiConfig as aY, type LicenseAction as aZ, type LicenseType as a_, type FavoriteGroupLimits as aa, type FavoriteLimits as ab, type LimitedUserFriend as ac, type Success as ad, type NotificationType as ae, type Notification as af, type PlayerModerationType as ag, type PlayerModerationId as ah, type PlayerModeration as ai, type ModerateUserRequest as aj, type LicenseGroupId as ak, type UserSubscription as al, type TwoFactorRecoveryCodes as am, type AvatarStyleId as an, type AvatarStyle as ao, type SortOption as ap, type OrderOption as aq, type UnityPackageId as ar, type PerformanceRatings as as, type UnityPackage as at, type Avatar as au, type LocalDateTime as av, type CreateAvatarRequest as aw, type ServiceQueueStats as ax, type UpdateAvatarRequest as ay, type ServiceStatus as az, type VRChatAuthentication as b, type GroupGalleryImageId as b$, type ProductId as b0, type PurchaseProductListingRequest as b1, type ProductListingType as b2, type ProductPurchaseId as b3, type ProductPurchase as b4, type SortOptionProductPurchase as b5, type OrderOptionShort as b6, type StoreId as b7, type ProductType as b8, type Product as b9, type GroupDiscriminator as bA, type GroupGalleryId as bB, type GroupGallery as bC, type GroupMemberStatus as bD, type GroupShortCode as bE, type LimitedGroup as bF, type GroupJoinState as bG, type GroupPrivacy as bH, type GroupRoleTemplate as bI, type CreateGroupRequest as bJ, type GroupMemberId as bK, type GroupPermissions as bL, type GroupMyMember as bM, type GroupRole as bN, type Group as bO, type GroupRoleTemplateValues as bP, type UpdateGroupRequest as bQ, type GroupAnnouncementId as bR, type GroupAnnouncement as bS, type CreateGroupAnnouncementRequest as bT, type GroupAuditLogId as bU, type GroupAuditLogEntry as bV, type PaginatedGroupAuditLogEntryList as bW, type GroupMemberLimitedUser as bX, type GroupMember as bY, type BanGroupMemberRequest as bZ, type CreateGroupGalleryRequest as b_, type ProductListingVariantId as ba, type ProductListingVariant as bb, type ProductListing as bc, type StoreShelfId as bd, type StoreShelf as be, type StoreType as bf, type Store as bg, type StoreView as bh, type FavoriteGroupId as bi, type FavoriteType as bj, type FavoriteGroupVisibility as bk, type FavoriteGroup as bl, type UpdateFavoriteGroupRequest as bm, type FavoriteId as bn, type Favorite as bo, type AddFavoriteRequest as bp, type MimeType as bq, type CreateFileRequest as br, type FileStatus as bs, type FileData as bt, type FileVersion as bu, type File as bv, type CreateFileVersionRequest as bw, type FinishFileDataUploadRequest as bx, type FileUploadUrl as by, type FileVersionUploadStatus as bz, type VRChatOptions as c, type InviteRequest as c$, type GroupGalleryImage as c0, type UpdateGroupGalleryRequest as c1, type AddGroupGalleryImageRequest as c2, type InstanceId as c3, type InstanceContentSettings as c4, type UdonProductId as c5, type World as c6, type GroupInstance as c7, type CreateGroupInviteRequest as c8, type GroupSearchSort as c9, type LimitedUserInstance as cA, type Instance as cB, type InstanceShortNameResponse as cC, type InventoryEquipSlot as cD, type InventoryItemType as cE, type InventoryFlag as cF, type InventoryDefaultAttributes as cG, type InventoryItemId as cH, type InventoryTemplateId as cI, type PropId as cJ, type InventoryMetadata as cK, type InventoryUserAttributes as cL, type InventoryItem as cM, type Inventory as cN, type ShareInventoryItemDirectRequest as cO, type OkStatus as cP, type InventorySpawn as cQ, type InventoryDropId as cR, type InventoryNotificationDetails as cS, type InventoryDrop as cT, type InventoryTemplate as cU, type UpdateInventoryItemRequest as cV, type SuccessFlag as cW, type InventoryConsumptionResults as cX, type EquipInventoryItemRequest as cY, type SentNotification as cZ, type InviteResponse as c_, type GroupLimitedMember as ca, type GroupUserVisibility as cb, type UpdateGroupMemberRequest as cc, type GroupRoleIdList as cd, type GroupPermission as ce, type NotificationId as cf, type GroupPostVisibility as cg, type GroupPost as ch, type CreateGroupPostRequest as ci, type GroupJoinRequestAction as cj, type RespondGroupJoinRequest as ck, type CreateGroupRoleRequest as cl, type UpdateGroupRoleRequest as cm, type ApiHealth as cn, type InfoPushDataClickable as co, type InfoPushDataArticleContent as cp, type InfoPushDataArticle as cq, type InfoPushData as cr, type InfoPush as cs, type GroupAccessType as ct, type InstanceOwnerId as cu, type InstanceRegion as cv, type InstanceType as cw, type CreateInstanceRequest as cx, type Region as cy, type InstancePlatforms as cz, type LoginOptions as d, type TransactionId2 as d$, type Jam as d0, type Submission as d1, type LicenseGroup as d2, type InviteMessageType as d3, type InviteMessageId as d4, type InviteMessage as d5, type UpdateInviteMessageRequest as d6, type ModerationReportId as d7, type ModerationReport as d8, type PaginatedModerationReportList as d9, type LimitedUserSearch as dA, type User as dB, type UpdateUserRequest as dC, type ChangeUserTagsRequest as dD, type UpdateUserBadgeRequest as dE, type EmojiId as dF, type BoopRequest as dG, type UserCreditsEligible as dH, type FeedbackId as dI, type Feedback as dJ, type LimitedUserGroups as dK, type RepresentedGroup as dL, type Mutuals as dM, type MutualFriend as dN, type UserSubscriptionEligible as dO, type LimitedUnityPackage as dP, type LimitedWorld as dQ, type CreateWorldRequest as dR, type FavoritedWorld as dS, type UpdateWorldRequest as dT, type WorldMetadata as dU, type WorldPublishStatus as dV, type NotificationDetailInvite as dW, type NotificationDetailInviteResponse as dX, type NotificationDetailRequestInvite as dY, type NotificationDetailRequestInviteResponse as dZ, type NotificationDetailVoteToKick as d_, type ContentFilter as da, type SubmitModerationReportRequest as db, type NotificationV2Category as dc, type NotificationV2ResponseIcon as dd, type NotificationV2ResponseType as de, type NotificationV2Response as df, type NotificationV2Type as dg, type NotificationV2 as dh, type ReplyNotificationV2Request as di, type RespondNotificationV2Request as dj, type PrintId as dk, type Print as dl, type PropUnityPackage as dm, type Prop as dn, type RequestInviteRequest as dp, type TiliaStatus as dq, type TokenBundle as dr, type Balance as ds, type EconomyAccount as dt, type FriendStatus as du, type TiliaTos as dv, type UpdateTiliaTosRequest as dw, type UserNoteId as dx, type UserNote as dy, type UpdateUserNoteRequest as dz, type LoginResult as e, type TargetIds as e$, type AdminAssetBundleId as e0, type FileId2 as e1, type VersionId as e2, type ConfirmEmailUserId as e3, type ConfirmEmailToken as e4, type Email as e5, type DisplayName as e6, type UsernameQuery as e7, type ExcludeUserId as e8, type TargetAvatarId as e9, type CalendarDiscoveryPersonalized as eA, type CalendarDiscoveryMinimumInterestCount as eB, type CalendarDiscoveryMinimumRemainingMinutes as eC, type CalendarDiscoveryUpcomingOffsetMinutes as eD, type CalendarDiscoveryNextCursor as eE, type CalendarSearchTerm as eF, type UtcOffset as eG, type GroupId2 as eH, type CalendarId2 as eI, type Variant as eJ, type Branch as eK, type BuyerId as eL, type MostRecentFlag as eM, type SortProductPurchase as eN, type OrderShort as eO, type StoreId2 as eP, type HydrateListings as eQ, type HydrateProducts as eR, type StoreView2 as eS, type FavoriteGroupType as eT, type FavoriteGroupName as eU, type FavoriteId2 as eV, type FileType as eW, type StartDate as eX, type EndDate as eY, type ActorIds as eZ, type EventTypes as e_, type AvatarModerationType2 as ea, type Offset as eb, type Number as ec, type Offline as ed, type UserId2 as ee, type NotificationId2 as ef, type UserIdQuery as eg, type VerifyLoginPlaceToken as eh, type Featured as ei, type Sort as ej, type Order as ek, type Tag2 as el, type Notag as em, type ReleaseStatus2 as en, type MaxUnityVersion as eo, type MinUnityVersion as ep, type Platform2 as eq, type Search as er, type UserIdAdmin as es, type AvatarId2 as et, type MonthDate as eu, type CalendarDiscoveryScope as ev, type CalendarDiscoveryCategories as ew, type CalendarDiscoveryTags as ex, type CalendarDiscoveryFeatured as ey, type CalendarDiscoveryNonFeatured as ez, type TransactionAgreement as f, type GetFileAnalysisError as f$, type GroupGalleryId2 as f0, type GroupGalleryImageId2 as f1, type GroupMemberSort as f2, type GroupMemberRoleFilter as f3, type GroupRoleId2 as f4, type Require as f5, type Include as f6, type WorldId2 as f7, type InstanceId2 as f8, type InventoryHolderId as f9, type PermissionId2 as fA, type PrintId2 as fB, type PropId2 as fC, type GroupIdFilter as fD, type UserNoteId2 as fE, type BadgeId2 as fF, type SubscriptionId as fG, type ContentId as fH, type SteamId as fI, type Noplatform as fJ, type Fuzzy as fK, type AvatarSpecific as fL, type GetSteamTransactions as fM, type GetSteamTransactionsErrors as fN, type GetSteamTransactionsError as fO, type GetSteamTransactionsResponses as fP, type GetSteamTransactionsResponse as fQ, type GetSteamTransaction as fR, type GetSteamTransactionErrors as fS, type GetSteamTransactionError as fT, type GetSteamTransactionResponses as fU, type GetSteamTransactionResponse as fV, type GetAdminAssetBundle as fW, type GetAdminAssetBundleResponses as fX, type GetAdminAssetBundleResponse as fY, type GetFileAnalysis as fZ, type GetFileAnalysisErrors as f_, type InventoryEquipSlot2 as fa, type InventorySortOrder as fb, type InventoryItemTags as fc, type InventoryItemTypes as fd, type InventoryItemFlags as fe, type InventoryItemNotTypes as ff, type InventoryItemNotFlags as fg, type InventoryItemArchived as fh, type InventoryPedestalItemId as fi, type InventoryPedestalDuration as fj, type Active as fk, type InventorySpawnItemId as fl, type InventoryTemplateId2 as fm, type InventoryItemId2 as fn, type InventoryItemSlotAsId as fo, type JamId as fp, type LicenseGroupId2 as fq, type ProductId2 as fr, type Hydrate as fs, type MessageType as ft, type Slot as fu, type ModerationReportingUserId as fv, type ModerationReportStatus as fw, type ModerationReportType as fx, type ModerationReportId2 as fy, type Limit as fz, type TransactionId as g, type Verify2Fa as g$, type GetFileAnalysisResponses as g0, type GetFileAnalysisResponse as g1, type GetFileAnalysisSecurity as g2, type GetFileAnalysisSecurityErrors as g3, type GetFileAnalysisSecurityError as g4, type GetFileAnalysisSecurityResponses as g5, type GetFileAnalysisSecurityResponse as g6, type GetFileAnalysisStandard as g7, type GetFileAnalysisStandardErrors as g8, type GetFileAnalysisStandardError as g9, type Disable2FaResponses as gA, type Disable2FaResponse as gB, type Verify2FaEmailCode as gC, type Verify2FaEmailCodeErrors as gD, type Verify2FaEmailCodeError as gE, type Verify2FaEmailCodeResponses as gF, type Verify2FaEmailCodeResponse as gG, type VerifyRecoveryCode as gH, type VerifyRecoveryCodeErrors as gI, type VerifyRecoveryCodeError as gJ, type VerifyRecoveryCodeResponses as gK, type VerifyRecoveryCodeResponse as gL, type CancelPending2Fa as gM, type CancelPending2FaErrors as gN, type CancelPending2FaError as gO, type CancelPending2FaResponses as gP, type CancelPending2FaResponse as gQ, type Enable2Fa as gR, type Enable2FaErrors as gS, type Enable2FaError as gT, type Enable2FaResponses as gU, type Enable2FaResponse as gV, type VerifyPending2Fa as gW, type VerifyPending2FaErrors as gX, type VerifyPending2FaError as gY, type VerifyPending2FaResponses as gZ, type VerifyPending2FaResponse as g_, type GetFileAnalysisStandardResponses as ga, type GetFileAnalysisStandardResponse as gb, type VerifyAuthToken as gc, type VerifyAuthTokenErrors as gd, type VerifyAuthTokenError as ge, type VerifyAuthTokenResponses as gf, type VerifyAuthTokenResponse as gg, type ConfirmEmail as gh, type CheckUserExists as gi, type CheckUserExistsErrors as gj, type CheckUserExistsError as gk, type CheckUserExistsResponses as gl, type CheckUserExistsResponse as gm, type GetAssignedPermissions as gn, type GetAssignedPermissionsErrors as go, type GetAssignedPermissionsError as gp, type GetAssignedPermissionsResponses as gq, type GetAssignedPermissionsResponse as gr, type RegisterUserAccount as gs, type RegisterUserAccountErrors as gt, type RegisterUserAccountError as gu, type RegisterUserAccountResponses as gv, type RegisterUserAccountResponse as gw, type Disable2Fa as gx, type Disable2FaErrors as gy, type Disable2FaError as gz, type TransactionStatus as h, type DeleteNotificationResponse as h$, type Verify2FaErrors as h0, type Verify2FaError as h1, type Verify2FaResponses as h2, type Verify2FaResponse as h3, type GetCurrentUser as h4, type GetCurrentUserErrors as h5, type GetCurrentUserError as h6, type GetCurrentUserResponses as h7, type GetCurrentUserResponse as h8, type DeleteGlobalAvatarModeration as h9, type UnfriendError as hA, type UnfriendResponses as hB, type UnfriendResponse as hC, type GetNotifications as hD, type GetNotificationsErrors as hE, type GetNotificationsError as hF, type GetNotificationsResponses as hG, type GetNotificationsResponse as hH, type ClearNotifications as hI, type ClearNotificationsErrors as hJ, type ClearNotificationsError as hK, type ClearNotificationsResponses as hL, type ClearNotificationsResponse as hM, type GetNotification as hN, type GetNotificationErrors as hO, type GetNotificationError as hP, type GetNotificationResponses as hQ, type GetNotificationResponse as hR, type AcceptFriendRequest as hS, type AcceptFriendRequestErrors as hT, type AcceptFriendRequestError as hU, type AcceptFriendRequestResponses as hV, type AcceptFriendRequestResponse as hW, type DeleteNotification as hX, type DeleteNotificationErrors as hY, type DeleteNotificationError as hZ, type DeleteNotificationResponses as h_, type DeleteGlobalAvatarModerationErrors as ha, type DeleteGlobalAvatarModerationError as hb, type DeleteGlobalAvatarModerationResponses as hc, type DeleteGlobalAvatarModerationResponse as hd, type GetGlobalAvatarModerations as he, type GetGlobalAvatarModerationsErrors as hf, type GetGlobalAvatarModerationsError as hg, type GetGlobalAvatarModerationsResponses as hh, type GetGlobalAvatarModerationsResponse as hi, type CreateGlobalAvatarModeration as hj, type CreateGlobalAvatarModerationErrors as hk, type CreateGlobalAvatarModerationError as hl, type CreateGlobalAvatarModerationResponses as hm, type CreateGlobalAvatarModerationResponse as hn, type GetFavoriteLimits as ho, type GetFavoriteLimitsErrors as hp, type GetFavoriteLimitsError as hq, type GetFavoriteLimitsResponses as hr, type GetFavoriteLimitsResponse as hs, type GetFriends as ht, type GetFriendsErrors as hu, type GetFriendsError as hv, type GetFriendsResponses as hw, type GetFriendsResponse as hx, type Unfriend as hy, type UnfriendErrors as hz, type TransactionSteamWalletInfo as i, type GetImpostorQueueStatsError as i$, type MarkNotificationAsRead as i0, type MarkNotificationAsReadErrors as i1, type MarkNotificationAsReadError as i2, type MarkNotificationAsReadResponses as i3, type MarkNotificationAsReadResponse as i4, type ClearAllPlayerModerations as i5, type ClearAllPlayerModerationsErrors as i6, type ClearAllPlayerModerationsError as i7, type ClearAllPlayerModerationsResponses as i8, type ClearAllPlayerModerationsResponse as i9, type GetRecoveryCodesResponse as iA, type UnmoderateUser as iB, type UnmoderateUserErrors as iC, type UnmoderateUserError as iD, type UnmoderateUserResponses as iE, type UnmoderateUserResponse as iF, type VerifyLoginPlace as iG, type GetAvatarStyles as iH, type GetAvatarStylesResponses as iI, type GetAvatarStylesResponse as iJ, type SearchAvatars as iK, type SearchAvatarsErrors as iL, type SearchAvatarsError as iM, type SearchAvatarsResponses as iN, type SearchAvatarsResponse as iO, type CreateAvatar as iP, type CreateAvatarErrors as iQ, type CreateAvatarError as iR, type CreateAvatarResponses as iS, type CreateAvatarResponse as iT, type GetFavoritedAvatars as iU, type GetFavoritedAvatarsErrors as iV, type GetFavoritedAvatarsError as iW, type GetFavoritedAvatarsResponses as iX, type GetFavoritedAvatarsResponse as iY, type GetImpostorQueueStats as iZ, type GetImpostorQueueStatsErrors as i_, type GetPlayerModerations as ia, type GetPlayerModerationsErrors as ib, type GetPlayerModerationsError as ic, type GetPlayerModerationsResponses as id, type GetPlayerModerationsResponse as ie, type ModerateUser as ig, type ModerateUserErrors as ih, type ModerateUserError as ii, type ModerateUserResponses as ij, type ModerateUserResponse as ik, type ResendEmailConfirmation as il, type ResendEmailConfirmationErrors as im, type ResendEmailConfirmationError as io, type ResendEmailConfirmationResponses as ip, type ResendEmailConfirmationResponse as iq, type GetCurrentSubscriptions as ir, type GetCurrentSubscriptionsErrors as is, type GetCurrentSubscriptionsError as it, type GetCurrentSubscriptionsResponses as iu, type GetCurrentSubscriptionsResponse as iv, type GetRecoveryCodes as iw, type GetRecoveryCodesErrors as ix, type GetRecoveryCodesError as iy, type GetRecoveryCodesResponses as iz, type TransactionSteamInfo as j, type SearchCalendarEventsError as j$, type GetImpostorQueueStatsResponses as j0, type GetImpostorQueueStatsResponse as j1, type GetLicensedAvatars as j2, type GetLicensedAvatarsErrors as j3, type GetLicensedAvatarsError as j4, type GetLicensedAvatarsResponses as j5, type GetLicensedAvatarsResponse as j6, type DeleteAvatar as j7, type DeleteAvatarErrors as j8, type DeleteAvatarError as j9, type SelectFallbackAvatar as jA, type SelectFallbackAvatarErrors as jB, type SelectFallbackAvatarError as jC, type SelectFallbackAvatarResponses as jD, type SelectFallbackAvatarResponse as jE, type GetCalendarEvents as jF, type GetCalendarEventsErrors as jG, type GetCalendarEventsError as jH, type GetCalendarEventsResponses as jI, type GetCalendarEventsResponse as jJ, type DiscoverCalendarEvents as jK, type DiscoverCalendarEventsErrors as jL, type DiscoverCalendarEventsError as jM, type DiscoverCalendarEventsResponses as jN, type DiscoverCalendarEventsResponse as jO, type GetFeaturedCalendarEvents as jP, type GetFeaturedCalendarEventsErrors as jQ, type GetFeaturedCalendarEventsError as jR, type GetFeaturedCalendarEventsResponses as jS, type GetFeaturedCalendarEventsResponse as jT, type GetFollowedCalendarEvents as jU, type GetFollowedCalendarEventsErrors as jV, type GetFollowedCalendarEventsError as jW, type GetFollowedCalendarEventsResponses as jX, type GetFollowedCalendarEventsResponse as jY, type SearchCalendarEvents as jZ, type SearchCalendarEventsErrors as j_, type DeleteAvatarResponses as ja, type DeleteAvatarResponse as jb, type GetAvatar as jc, type GetAvatarErrors as jd, type GetAvatarError as je, type GetAvatarResponses as jf, type GetAvatarResponse as jg, type UpdateAvatar as jh, type UpdateAvatarErrors as ji, type UpdateAvatarError as jj, type UpdateAvatarResponses as jk, type UpdateAvatarResponse as jl, type DeleteImpostor as jm, type DeleteImpostorErrors as jn, type DeleteImpostorError as jo, type DeleteImpostorResponses as jp, type EnqueueImpostor as jq, type EnqueueImpostorErrors as jr, type EnqueueImpostorError as js, type EnqueueImpostorResponses as jt, type EnqueueImpostorResponse as ju, type SelectAvatar as jv, type SelectAvatarErrors as jw, type SelectAvatarError as jx, type SelectAvatarResponses as jy, type SelectAvatarResponse as jz, type Subscription as k, type GetProductPurchasesResponses as k$, type SearchCalendarEventsResponses as k0, type SearchCalendarEventsResponse as k1, type GetGroupCalendarEvents as k2, type GetGroupCalendarEventsErrors as k3, type GetGroupCalendarEventsError as k4, type GetGroupCalendarEventsResponses as k5, type GetGroupCalendarEventsResponse as k6, type CreateGroupCalendarEvent as k7, type CreateGroupCalendarEventErrors as k8, type CreateGroupCalendarEventError as k9, type UpdateGroupCalendarEventResponse as kA, type FollowGroupCalendarEvent as kB, type FollowGroupCalendarEventErrors as kC, type FollowGroupCalendarEventError as kD, type FollowGroupCalendarEventResponses as kE, type FollowGroupCalendarEventResponse as kF, type GetConfig as kG, type GetConfigResponses as kH, type GetConfigResponse as kI, type GetCss as kJ, type GetCssErrors as kK, type GetCssError as kL, type GetCssResponses as kM, type GetCssResponse as kN, type GetActiveLicenses as kO, type GetActiveLicensesErrors as kP, type GetActiveLicensesError as kQ, type GetActiveLicensesResponses as kR, type GetActiveLicensesResponse as kS, type PurchaseProductListing as kT, type PurchaseProductListingErrors as kU, type PurchaseProductListingError as kV, type PurchaseProductListingResponses as kW, type PurchaseProductListingResponse as kX, type GetProductPurchases as kY, type GetProductPurchasesErrors as kZ, type GetProductPurchasesError as k_, type CreateGroupCalendarEventResponses as ka, type CreateGroupCalendarEventResponse as kb, type GetGroupNextCalendarEvent as kc, type GetGroupNextCalendarEventErrors as kd, type GetGroupNextCalendarEventError as ke, type GetGroupNextCalendarEventResponses as kf, type GetGroupNextCalendarEventResponse as kg, type DeleteGroupCalendarEvent as kh, type DeleteGroupCalendarEventErrors as ki, type DeleteGroupCalendarEventError as kj, type DeleteGroupCalendarEventResponses as kk, type DeleteGroupCalendarEventResponse as kl, type GetGroupCalendarEvent as km, type GetGroupCalendarEventErrors as kn, type GetGroupCalendarEventError as ko, type GetGroupCalendarEventResponses as kp, type GetGroupCalendarEventResponse as kq, type GetGroupCalendarEventIcs as kr, type GetGroupCalendarEventIcsErrors as ks, type GetGroupCalendarEventIcsError as kt, type GetGroupCalendarEventIcsResponses as ku, type GetGroupCalendarEventIcsResponse as kv, type UpdateGroupCalendarEvent as kw, type UpdateGroupCalendarEventErrors as kx, type UpdateGroupCalendarEventError as ky, type UpdateGroupCalendarEventResponses as kz, type Transaction as l, type DownloadFileVersion as l$, type GetProductPurchasesResponse as l0, type GetStore as l1, type GetStoreErrors as l2, type GetStoreError as l3, type GetStoreResponses as l4, type GetStoreResponse as l5, type GetStoreShelves as l6, type GetStoreShelvesErrors as l7, type GetStoreShelvesError as l8, type GetStoreShelvesResponses as l9, type RemoveFavoriteError as lA, type RemoveFavoriteResponses as lB, type RemoveFavoriteResponse as lC, type CreateFile as lD, type CreateFileResponses as lE, type CreateFileResponse as lF, type UploadImage as lG, type UploadImageResponses as lH, type UploadImageResponse as lI, type DeleteFile as lJ, type DeleteFileErrors as lK, type DeleteFileError as lL, type DeleteFileResponses as lM, type DeleteFileResponse as lN, type GetFile as lO, type GetFileErrors as lP, type GetFileError as lQ, type GetFileResponses as lR, type GetFileResponse as lS, type CreateFileVersion as lT, type CreateFileVersionResponses as lU, type CreateFileVersionResponse as lV, type DeleteFileVersion as lW, type DeleteFileVersionErrors as lX, type DeleteFileVersionError as lY, type DeleteFileVersionResponses as lZ, type DeleteFileVersionResponse as l_, type GetStoreShelvesResponse as la, type ClearFavoriteGroup as lb, type ClearFavoriteGroupResponses as lc, type ClearFavoriteGroupResponse as ld, type GetFavoriteGroup as le, type GetFavoriteGroupResponses as lf, type GetFavoriteGroupResponse as lg, type UpdateFavoriteGroup as lh, type UpdateFavoriteGroupResponses as li, type GetFavoriteGroups as lj, type GetFavoriteGroupsErrors as lk, type GetFavoriteGroupsError as ll, type GetFavoriteGroupsResponses as lm, type GetFavoriteGroupsResponse as ln, type GetFavorites as lo, type GetFavoritesErrors as lp, type GetFavoritesError as lq, type GetFavoritesResponses as lr, type GetFavoritesResponse as ls, type AddFavorite as lt, type AddFavoriteErrors as lu, type AddFavoriteError as lv, type AddFavoriteResponses as lw, type AddFavoriteResponse as lx, type RemoveFavorite as ly, type RemoveFavoriteErrors as lz, type ReleaseStatus as m, type CreateGroupAnnouncementError as m$, type DownloadFileVersionErrors as m0, type DownloadFileVersionError as m1, type DownloadFileVersionResponses as m2, type DownloadFileVersionResponse as m3, type FinishFileDataUpload as m4, type FinishFileDataUploadResponses as m5, type FinishFileDataUploadResponse as m6, type StartFileDataUpload as m7, type StartFileDataUploadErrors as m8, type StartFileDataUploadError as m9, type DeleteGroup as mA, type DeleteGroupErrors as mB, type DeleteGroupError as mC, type DeleteGroupResponses as mD, type DeleteGroupResponse as mE, type GetGroup as mF, type GetGroupErrors as mG, type GetGroupError as mH, type GetGroupResponses as mI, type GetGroupResponse as mJ, type UpdateGroup as mK, type UpdateGroupErrors as mL, type UpdateGroupError as mM, type UpdateGroupResponses as mN, type UpdateGroupResponse as mO, type DeleteGroupAnnouncement as mP, type DeleteGroupAnnouncementErrors as mQ, type DeleteGroupAnnouncementError as mR, type DeleteGroupAnnouncementResponses as mS, type DeleteGroupAnnouncementResponse as mT, type GetGroupAnnouncements as mU, type GetGroupAnnouncementsErrors as mV, type GetGroupAnnouncementsError as mW, type GetGroupAnnouncementsResponses as mX, type GetGroupAnnouncementsResponse as mY, type CreateGroupAnnouncement as mZ, type CreateGroupAnnouncementErrors as m_, type StartFileDataUploadResponses as ma, type StartFileDataUploadResponse as mb, type GetFileDataUploadStatus as mc, type GetFileDataUploadStatusResponses as md, type GetFileDataUploadStatusResponse as me, type GetFiles as mf, type GetFilesResponses as mg, type GetFilesResponse as mh, type UploadGalleryImage as mi, type UploadGalleryImageResponses as mj, type UploadGalleryImageResponse as mk, type SearchGroups as ml, type SearchGroupsErrors as mm, type SearchGroupsError as mn, type SearchGroupsResponses as mo, type SearchGroupsResponse as mp, type CreateGroup as mq, type CreateGroupErrors as mr, type CreateGroupError as ms, type CreateGroupResponses as mt, type CreateGroupResponse as mu, type GetGroupRoleTemplates as mv, type GetGroupRoleTemplatesErrors as mw, type GetGroupRoleTemplatesError as mx, type GetGroupRoleTemplatesResponses as my, type GetGroupRoleTemplatesResponse as mz, type Tag as n, type CreateGroupInviteErrors as n$, type CreateGroupAnnouncementResponses as n0, type CreateGroupAnnouncementResponse as n1, type GetGroupAuditLogs as n2, type GetGroupAuditLogsErrors as n3, type GetGroupAuditLogsError as n4, type GetGroupAuditLogsResponses as n5, type GetGroupAuditLogsResponse as n6, type GetGroupBans as n7, type GetGroupBansErrors as n8, type GetGroupBansError as n9, type GetGroupGalleryImagesResponse as nA, type UpdateGroupGallery as nB, type UpdateGroupGalleryErrors as nC, type UpdateGroupGalleryError as nD, type UpdateGroupGalleryResponses as nE, type UpdateGroupGalleryResponse as nF, type AddGroupGalleryImage as nG, type AddGroupGalleryImageErrors as nH, type AddGroupGalleryImageError as nI, type AddGroupGalleryImageResponses as nJ, type AddGroupGalleryImageResponse as nK, type DeleteGroupGalleryImage as nL, type DeleteGroupGalleryImageErrors as nM, type DeleteGroupGalleryImageError as nN, type DeleteGroupGalleryImageResponses as nO, type DeleteGroupGalleryImageResponse as nP, type GetGroupInstances as nQ, type GetGroupInstancesErrors as nR, type GetGroupInstancesError as nS, type GetGroupInstancesResponses as nT, type GetGroupInstancesResponse as nU, type GetGroupInvites as nV, type GetGroupInvitesErrors as nW, type GetGroupInvitesError as nX, type GetGroupInvitesResponses as nY, type GetGroupInvitesResponse as nZ, type CreateGroupInvite as n_, type GetGroupBansResponses as na, type GetGroupBansResponse as nb, type BanGroupMember as nc, type BanGroupMemberErrors as nd, type BanGroupMemberError as ne, type BanGroupMemberResponses as nf, type BanGroupMemberResponse as ng, type UnbanGroupMember as nh, type UnbanGroupMemberErrors as ni, type UnbanGroupMemberError as nj, type UnbanGroupMemberResponses as nk, type UnbanGroupMemberResponse as nl, type CreateGroupGallery as nm, type CreateGroupGalleryErrors as nn, type CreateGroupGalleryError as no, type CreateGroupGalleryResponses as np, type CreateGroupGalleryResponse as nq, type DeleteGroupGallery as nr, type DeleteGroupGalleryErrors as ns, type DeleteGroupGalleryError as nt, type DeleteGroupGalleryResponses as nu, type DeleteGroupGalleryResponse as nv, type GetGroupGalleryImages as nw, type GetGroupGalleryImagesErrors as nx, type GetGroupGalleryImagesError as ny, type GetGroupGalleryImagesResponses as nz, type AdminAssetBundle as o, type DeleteGroupPostResponse as o$, type CreateGroupInviteError as o0, type CreateGroupInviteResponses as o1, type DeleteGroupInvite as o2, type DeleteGroupInviteErrors as o3, type DeleteGroupInviteError as o4, type DeleteGroupInviteResponses as o5, type JoinGroup as o6, type JoinGroupErrors as o7, type JoinGroupError as o8, type JoinGroupResponses as o9, type RemoveGroupMemberRoleError as oA, type RemoveGroupMemberRoleResponses as oB, type RemoveGroupMemberRoleResponse as oC, type AddGroupMemberRole as oD, type AddGroupMemberRoleErrors as oE, type AddGroupMemberRoleError as oF, type AddGroupMemberRoleResponses as oG, type AddGroupMemberRoleResponse as oH, type GetGroupPermissions as oI, type GetGroupPermissionsErrors as oJ, type GetGroupPermissionsError as oK, type GetGroupPermissionsResponses as oL, type GetGroupPermissionsResponse as oM, type GetGroupPosts as oN, type GetGroupPostsErrors as oO, type GetGroupPostsError as oP, type GetGroupPostsResponses as oQ, type GetGroupPostsResponse as oR, type AddGroupPost as oS, type AddGroupPostErrors as oT, type AddGroupPostError as oU, type AddGroupPostResponses as oV, type AddGroupPostResponse as oW, type DeleteGroupPost as oX, type DeleteGroupPostErrors as oY, type DeleteGroupPostError as oZ, type DeleteGroupPostResponses as o_, type JoinGroupResponse as oa, type LeaveGroup as ob, type LeaveGroupErrors as oc, type LeaveGroupError as od, type LeaveGroupResponses as oe, type GetGroupMembers as of, type GetGroupMembersErrors as og, type GetGroupMembersError as oh, type GetGroupMembersResponses as oi, type GetGroupMembersResponse as oj, type KickGroupMember as ok, type KickGroupMemberErrors as ol, type KickGroupMemberError as om, type KickGroupMemberResponses as on, type GetGroupMember as oo, type GetGroupMemberErrors as op, type GetGroupMemberError as oq, type GetGroupMemberResponses as or, type GetGroupMemberResponse as os, type UpdateGroupMember as ot, type UpdateGroupMemberErrors as ou, type UpdateGroupMemberError as ov, type UpdateGroupMemberResponses as ow, type UpdateGroupMemberResponse as ox, type RemoveGroupMemberRole as oy, type RemoveGroupMemberRoleErrors as oz, type FileAnalysis as p, type GetInstanceByShortNameErrors as p$, type UpdateGroupPost as p0, type UpdateGroupPostErrors as p1, type UpdateGroupPostError as p2, type UpdateGroupPostResponses as p3, type UpdateGroupPostResponse as p4, type UpdateGroupRepresentation as p5, type UpdateGroupRepresentationErrors as p6, type UpdateGroupRepresentationError as p7, type UpdateGroupRepresentationResponses as p8, type UpdateGroupRepresentationResponse as p9, type DeleteGroupRoleResponses as pA, type DeleteGroupRoleResponse as pB, type UpdateGroupRole as pC, type UpdateGroupRoleErrors as pD, type UpdateGroupRoleError as pE, type UpdateGroupRoleResponses as pF, type UpdateGroupRoleResponse as pG, type GetHealth as pH, type GetHealthResponses as pI, type GetHealthResponse as pJ, type UploadIcon as pK, type UploadIconResponses as pL, type UploadIconResponse as pM, type GetInfoPush as pN, type GetInfoPushResponses as pO, type GetInfoPushResponse as pP, type CreateInstance as pQ, type CreateInstanceErrors as pR, type CreateInstanceError as pS, type CreateInstanceResponses as pT, type CreateInstanceResponse as pU, type GetRecentLocations as pV, type GetRecentLocationsErrors as pW, type GetRecentLocationsError as pX, type GetRecentLocationsResponses as pY, type GetRecentLocationsResponse as pZ, type GetInstanceByShortName as p_, type CancelGroupRequest as pa, type CancelGroupRequestErrors as pb, type CancelGroupRequestError as pc, type CancelGroupRequestResponses as pd, type GetGroupRequests as pe, type GetGroupRequestsErrors as pf, type GetGroupRequestsError as pg, type GetGroupRequestsResponses as ph, type GetGroupRequestsResponse as pi, type RespondGroupJoinRequest2 as pj, type RespondGroupJoinRequestErrors as pk, type RespondGroupJoinRequestError as pl, type RespondGroupJoinRequestResponses as pm, type GetGroupRoles as pn, type GetGroupRolesErrors as po, type GetGroupRolesError as pp, type GetGroupRolesResponses as pq, type GetGroupRolesResponse as pr, type CreateGroupRole as ps, type CreateGroupRoleErrors as pt, type CreateGroupRoleError as pu, type CreateGroupRoleResponses as pv, type CreateGroupRoleResponse as pw, type DeleteGroupRole as px, type DeleteGroupRoleErrors as py, type DeleteGroupRoleError as pz, type VerifyAuthTokenResult as q, type UpdateOwnInventoryItem as q$, type GetInstanceByShortNameError as q0, type GetInstanceByShortNameResponses as q1, type GetInstanceByShortNameResponse as q2, type CloseInstance as q3, type CloseInstanceErrors as q4, type CloseInstanceError as q5, type CloseInstanceResponses as q6, type CloseInstanceResponse as q7, type GetInstance as q8, type GetInstanceErrors as q9, type GetInventoryCollectionsResponses as qA, type GetInventoryCollectionsResponse as qB, type GetInventoryDrops as qC, type GetInventoryDropsErrors as qD, type GetInventoryDropsError as qE, type GetInventoryDropsResponses as qF, type GetInventoryDropsResponse as qG, type SpawnInventoryItem as qH, type SpawnInventoryItemErrors as qI, type SpawnInventoryItemError as qJ, type SpawnInventoryItemResponses as qK, type SpawnInventoryItemResponse as qL, type GetInventoryTemplate as qM, type GetInventoryTemplateErrors as qN, type GetInventoryTemplateError as qO, type GetInventoryTemplateResponses as qP, type GetInventoryTemplateResponse as qQ, type DeleteOwnInventoryItem as qR, type DeleteOwnInventoryItemErrors as qS, type DeleteOwnInventoryItemError as qT, type DeleteOwnInventoryItemResponses as qU, type DeleteOwnInventoryItemResponse as qV, type GetOwnInventoryItem as qW, type GetOwnInventoryItemErrors as qX, type GetOwnInventoryItemError as qY, type GetOwnInventoryItemResponses as qZ, type GetOwnInventoryItemResponse as q_, type GetInstanceError as qa, type GetInstanceResponses as qb, type GetInstanceResponse as qc, type GetShortName as qd, type GetShortNameErrors as qe, type GetShortNameError as qf, type GetShortNameResponses as qg, type GetShortNameResponse as qh, type GetInventory as qi, type GetInventoryErrors as qj, type GetInventoryError as qk, type GetInventoryResponses as ql, type GetInventoryResponse as qm, type ShareInventoryItemDirect as qn, type ShareInventoryItemDirectErrors as qo, type ShareInventoryItemDirectError as qp, type ShareInventoryItemDirectResponses as qq, type ShareInventoryItemDirectResponse as qr, type ShareInventoryItemPedestal as qs, type ShareInventoryItemPedestalErrors as qt, type ShareInventoryItemPedestalError as qu, type ShareInventoryItemPedestalResponses as qv, type ShareInventoryItemPedestalResponse as qw, type GetInventoryCollections as qx, type GetInventoryCollectionsErrors as qy, type GetInventoryCollectionsError as qz, type UserExists as r, type GetLicenseGroupErrors as r$, type UpdateOwnInventoryItemErrors as r0, type UpdateOwnInventoryItemError as r1, type UpdateOwnInventoryItemResponses as r2, type UpdateOwnInventoryItemResponse as r3, type ConsumeOwnInventoryItem as r4, type ConsumeOwnInventoryItemErrors as r5, type ConsumeOwnInventoryItemError as r6, type ConsumeOwnInventoryItemResponses as r7, type ConsumeOwnInventoryItemResponse as r8, type UnequipOwnInventorySlot as r9, type InviteUserError as rA, type InviteUserResponses as rB, type InviteUserResponse as rC, type InviteUserWithPhoto as rD, type InviteUserWithPhotoErrors as rE, type InviteUserWithPhotoError as rF, type InviteUserWithPhotoResponses as rG, type InviteUserWithPhotoResponse as rH, type GetJams as rI, type GetJamsResponses as rJ, type GetJamsResponse as rK, type GetJam as rL, type GetJamErrors as rM, type GetJamError as rN, type GetJamResponses as rO, type GetJamResponse as rP, type GetJamSubmissions as rQ, type GetJamSubmissionsErrors as rR, type GetJamSubmissionsError as rS, type GetJamSubmissionsResponses as rT, type GetJamSubmissionsResponse as rU, type GetJavaScript as rV, type GetJavaScriptErrors as rW, type GetJavaScriptError as rX, type GetJavaScriptResponses as rY, type GetJavaScriptResponse as rZ, type GetLicenseGroup as r_, type UnequipOwnInventorySlotErrors as ra, type UnequipOwnInventorySlotError as rb, type UnequipOwnInventorySlotResponses as rc, type UnequipOwnInventorySlotResponse as rd, type EquipOwnInventoryItem as re, type EquipOwnInventoryItemErrors as rf, type EquipOwnInventoryItemError as rg, type EquipOwnInventoryItemResponses as rh, type EquipOwnInventoryItemResponse as ri, type InviteMyselfTo as rj, type InviteMyselfToErrors as rk, type InviteMyselfToError as rl, type InviteMyselfToResponses as rm, type InviteMyselfToResponse as rn, type RespondInvite as ro, type RespondInviteErrors as rp, type RespondInviteError as rq, type RespondInviteResponses as rr, type RespondInviteResponse as rs, type RespondInviteWithPhoto as rt, type RespondInviteWithPhotoErrors as ru, type RespondInviteWithPhotoError as rv, type RespondInviteWithPhotoResponses as rw, type RespondInviteWithPhotoResponse as rx, type InviteUser as ry, type InviteUserErrors as rz, type PermissionId as s, type GetNotificationV2 as s$, type GetLicenseGroupError as s0, type GetLicenseGroupResponses as s1, type GetLicenseGroupResponse as s2, type GetProductListing as s3, type GetProductListingErrors as s4, type GetProductListingError as s5, type GetProductListingResponses as s6, type GetProductListingResponse as s7, type Logout as s8, type LogoutErrors as s9, type GetModerationReportsResponses as sA, type GetModerationReportsResponse as sB, type SubmitModerationReport as sC, type SubmitModerationReportErrors as sD, type SubmitModerationReportError as sE, type SubmitModerationReportResponses as sF, type SubmitModerationReportResponse as sG, type DeleteModerationReport as sH, type DeleteModerationReportErrors as sI, type DeleteModerationReportError as sJ, type DeleteModerationReportResponses as sK, type DeleteModerationReportResponse as sL, type DeleteAllNotificationV2s as sM, type DeleteAllNotificationV2sErrors as sN, type DeleteAllNotificationV2sError as sO, type DeleteAllNotificationV2sResponses as sP, type DeleteAllNotificationV2sResponse as sQ, type GetNotificationV2s as sR, type GetNotificationV2sErrors as sS, type GetNotificationV2sError as sT, type GetNotificationV2sResponses as sU, type GetNotificationV2sResponse as sV, type DeleteNotificationV2 as sW, type DeleteNotificationV2Errors as sX, type DeleteNotificationV2Error as sY, type DeleteNotificationV2Responses as sZ, type DeleteNotificationV2Response as s_, type LogoutError as sa, type LogoutResponses as sb, type LogoutResponse as sc, type GetInviteMessages as sd, type GetInviteMessagesErrors as se, type GetInviteMessagesError as sf, type GetInviteMessagesResponses as sg, type GetInviteMessagesResponse as sh, type ResetInviteMessage as si, type ResetInviteMessageErrors as sj, type ResetInviteMessageError as sk, type ResetInviteMessageResponses as sl, type ResetInviteMessageResponse as sm, type GetInviteMessage as sn, type GetInviteMessageErrors as so, type GetInviteMessageError as sp, type GetInviteMessageResponses as sq, type GetInviteMessageResponse as sr, type UpdateInviteMessage as ss, type UpdateInviteMessageErrors as st, type UpdateInviteMessageError as su, type UpdateInviteMessageResponses as sv, type UpdateInviteMessageResponse as sw, type GetModerationReports as sx, type GetModerationReportsErrors as sy, type GetModerationReportsError as sz, type Permission as t, type RequestInviteWithPhoto as t$, type GetNotificationV2Errors as t0, type GetNotificationV2Error as t1, type GetNotificationV2Responses as t2, type GetNotificationV2Response as t3, type ReplyNotificationV2 as t4, type ReplyNotificationV2Errors as t5, type ReplyNotificationV2Error as t6, type ReplyNotificationV2Responses as t7, type ReplyNotificationV2Response as t8, type RespondNotificationV2 as t9, type DeletePrintError as tA, type DeletePrintResponses as tB, type GetPrint as tC, type GetPrintErrors as tD, type GetPrintError as tE, type GetPrintResponses as tF, type GetPrintResponse as tG, type EditPrint as tH, type EditPrintErrors as tI, type EditPrintError as tJ, type EditPrintResponses as tK, type EditPrintResponse as tL, type GetProductListingAlternate as tM, type GetProductListingAlternateErrors as tN, type GetProductListingAlternateError as tO, type GetProductListingAlternateResponses as tP, type GetProductListingAlternateResponse as tQ, type GetProp as tR, type GetPropErrors as tS, type GetPropError as tT, type GetPropResponses as tU, type GetPropResponse as tV, type RequestInvite as tW, type RequestInviteErrors as tX, type RequestInviteError as tY, type RequestInviteResponses as tZ, type RequestInviteResponse as t_, type RespondNotificationV2Errors as ta, type RespondNotificationV2Error as tb, type RespondNotificationV2Responses as tc, type RespondNotificationV2Response as td, type AcknowledgeNotificationV2 as te, type AcknowledgeNotificationV2Errors as tf, type AcknowledgeNotificationV2Error as tg, type AcknowledgeNotificationV2Responses as th, type AcknowledgeNotificationV2Response as ti, type GetPermission as tj, type GetPermissionErrors as tk, type GetPermissionError as tl, type GetPermissionResponses as tm, type GetPermissionResponse as tn, type UploadPrint as to, type UploadPrintErrors as tp, type UploadPrintError as tq, type UploadPrintResponses as tr, type UploadPrintResponse as ts, type GetUserPrints as tt, type GetUserPrintsErrors as tu, type GetUserPrintsError as tv, type GetUserPrintsResponses as tw, type GetUserPrintsResponse as tx, type DeletePrint as ty, type DeletePrintErrors as tz, type RegisterUserAccountRequest as u, type GetUserInventoryItemErrors as u$, type RequestInviteWithPhotoErrors as u0, type RequestInviteWithPhotoError as u1, type RequestInviteWithPhotoResponses as u2, type RequestInviteWithPhotoResponse as u3, type GetSubscriptions as u4, type GetSubscriptionsErrors as u5, type GetSubscriptionsError as u6, type GetSubscriptionsResponses as u7, type GetSubscriptionsResponse as u8, type GetTiliaStatus as u9, type GetBalanceResponse as uA, type GetBalanceEarnings as uB, type GetBalanceEarningsErrors as uC, type GetBalanceEarningsError as uD, type GetBalanceEarningsResponses as uE, type GetBalanceEarningsResponse as uF, type GetEconomyAccount as uG, type GetEconomyAccountErrors as uH, type GetEconomyAccountError as uI, type GetEconomyAccountResponses as uJ, type GetEconomyAccountResponse as uK, type DeleteFriendRequest as uL, type DeleteFriendRequestErrors as uM, type DeleteFriendRequestError as uN, type DeleteFriendRequestResponses as uO, type DeleteFriendRequestResponse as uP, type Friend as uQ, type FriendErrors as uR, type FriendError as uS, type FriendResponses as uT, type FriendResponse as uU, type GetFriendStatus as uV, type GetFriendStatusErrors as uW, type GetFriendStatusError as uX, type GetFriendStatusResponses as uY, type GetFriendStatusResponse as uZ, type GetUserInventoryItem as u_, type GetTiliaStatusErrors as ua, type GetTiliaStatusError as ub, type GetTiliaStatusResponses as uc, type GetTiliaStatusResponse as ud, type GetSystemTime as ue, type GetSystemTimeResponses as uf, type GetSystemTimeResponse as ug, type GetTokenBundles as uh, type GetTokenBundlesErrors as ui, type GetTokenBundlesError as uj, type GetTokenBundlesResponses as uk, type GetTokenBundlesResponse as ul, type GetBulkGiftPurchases as um, type GetBulkGiftPurchasesErrors as un, type GetBulkGiftPurchasesError as uo, type GetBulkGiftPurchasesResponses as up, type GetBulkGiftPurchasesResponse as uq, type GetRecentSubscription as ur, type GetRecentSubscriptionErrors as us, type GetRecentSubscriptionError as ut, type GetRecentSubscriptionResponses as uu, type GetRecentSubscriptionResponse as uv, type GetBalance as uw, type GetBalanceErrors as ux, type GetBalanceError as uy, type GetBalanceResponses as uz, type AccountDeletionLog as v, type BoopErrors as v$, type GetUserInventoryItemError as v0, type GetUserInventoryItemResponses as v1, type GetUserInventoryItemResponse as v2, type GetProductListings as v3, type GetProductListingsErrors as v4, type GetProductListingsError as v5, type GetProductListingsResponses as v6, type GetProductListingsResponse as v7, type GetTiliaTos as v8, type GetTiliaTosErrors as v9, type SearchUsersResponses as vA, type SearchUsersResponse as vB, type GetUser as vC, type GetUserErrors as vD, type GetUserError as vE, type GetUserResponses as vF, type GetUserResponse as vG, type UpdateUser as vH, type UpdateUserErrors as vI, type UpdateUserError as vJ, type UpdateUserResponses as vK, type UpdateUserResponse as vL, type AddTags as vM, type AddTagsErrors as vN, type AddTagsError as vO, type AddTagsResponses as vP, type AddTagsResponse as vQ, type GetOwnAvatar as vR, type GetOwnAvatarErrors as vS, type GetOwnAvatarError as vT, type GetOwnAvatarResponses as vU, type GetOwnAvatarResponse as vV, type UpdateBadge as vW, type UpdateBadgeErrors as vX, type UpdateBadgeError as vY, type UpdateBadgeResponses as vZ, type Boop as v_, type GetTiliaTosError as va, type GetTiliaTosResponses as vb, type GetTiliaTosResponse as vc, type UpdateTiliaTos as vd, type UpdateTiliaTosErrors as ve, type UpdateTiliaTosError as vf, type UpdateTiliaTosResponses as vg, type UpdateTiliaTosResponse as vh, type GetUserNotes as vi, type GetUserNotesErrors as vj, type GetUserNotesError as vk, type GetUserNotesResponses as vl, type GetUserNotesResponse as vm, type UpdateUserNote as vn, type UpdateUserNoteErrors as vo, type UpdateUserNoteError as vp, type UpdateUserNoteResponses as vq, type UpdateUserNoteResponse as vr, type GetUserNote as vs, type GetUserNoteErrors as vt, type GetUserNoteError as vu, type GetUserNoteResponses as vv, type GetUserNoteResponse as vw, type SearchUsers as vx, type SearchUsersErrors as vy, type SearchUsersError as vz, type AgeVerificationStatus as w, type GetUserSubscriptionEligible as w$, type BoopError as w0, type BoopResponses as w1, type BoopResponse as w2, type GetUserCreditsEligible as w3, type GetUserCreditsEligibleErrors as w4, type GetUserCreditsEligibleError as w5, type GetUserCreditsEligibleResponses as w6, type GetUserCreditsEligibleResponse as w7, type DeleteUser as w8, type DeleteUserErrors as w9, type GetUserGroupInstancesResponses as wA, type GetUserGroupInstancesResponse as wB, type GetUserGroupInstancesForGroup as wC, type GetUserGroupInstancesForGroupErrors as wD, type GetUserGroupInstancesForGroupError as wE, type GetUserGroupInstancesForGroupResponses as wF, type GetUserGroupInstancesForGroupResponse as wG, type GetMutuals as wH, type GetMutualsErrors as wI, type GetMutualsError as wJ, type GetMutualsResponses as wK, type GetMutualsResponse as wL, type GetMutualFriends as wM, type GetMutualFriendsErrors as wN, type GetMutualFriendsError as wO, type GetMutualFriendsResponses as wP, type GetMutualFriendsResponse as wQ, type GetMutualGroups as wR, type GetMutualGroupsErrors as wS, type GetMutualGroupsError as wT, type GetMutualGroupsResponses as wU, type GetMutualGroupsResponse as wV, type RemoveTags as wW, type RemoveTagsErrors as wX, type RemoveTagsError as wY, type RemoveTagsResponses as wZ, type RemoveTagsResponse as w_, type DeleteUserError as wa, type DeleteUserResponses as wb, type DeleteUserResponse as wc, type GetUserFeedback as wd, type GetUserFeedbackErrors as we, type GetUserFeedbackError as wf, type GetUserFeedbackResponses as wg, type GetUserFeedbackResponse as wh, type GetUserGroups as wi, type GetUserGroupsErrors as wj, type GetUserGroupsError as wk, type GetUserGroupsResponses as wl, type GetUserGroupsResponse as wm, type GetUserRepresentedGroup as wn, type GetUserRepresentedGroupErrors as wo, type GetUserRepresentedGroupError as wp, type GetUserRepresentedGroupResponses as wq, type GetUserRepresentedGroupResponse as wr, type GetUserGroupRequests as ws, type GetUserGroupRequestsErrors as wt, type GetUserGroupRequestsError as wu, type GetUserGroupRequestsResponses as wv, type GetUserGroupRequestsResponse as ww, type GetUserGroupInstances as wx, type GetUserGroupInstancesErrors as wy, type GetUserGroupInstancesError as wz, type AgeVerified as x, type GetWorldMetadataResponse as x$, type GetUserSubscriptionEligibleErrors as x0, type GetUserSubscriptionEligibleError as x1, type GetUserSubscriptionEligibleResponses as x2, type GetUserSubscriptionEligibleResponse as x3, type DeleteUserPersistence as x4, type DeleteUserPersistenceErrors as x5, type DeleteUserPersistenceError as x6, type DeleteUserPersistenceResponses as x7, type CheckUserPersistenceExists as x8, type CheckUserPersistenceExistsErrors as x9, type GetFavoritedWorldsErrors as xA, type GetFavoritedWorldsError as xB, type GetFavoritedWorldsResponses as xC, type GetFavoritedWorldsResponse as xD, type GetRecentWorlds as xE, type GetRecentWorldsErrors as xF, type GetRecentWorldsError as xG, type GetRecentWorldsResponses as xH, type GetRecentWorldsResponse as xI, type DeleteWorld as xJ, type DeleteWorldErrors as xK, type DeleteWorldError as xL, type DeleteWorldResponses as xM, type GetWorld as xN, type GetWorldErrors as xO, type GetWorldError as xP, type GetWorldResponses as xQ, type GetWorldResponse as xR, type UpdateWorld as xS, type UpdateWorldErrors as xT, type UpdateWorldError as xU, type UpdateWorldResponses as xV, type UpdateWorldResponse as xW, type GetWorldMetadata as xX, type GetWorldMetadataErrors as xY, type GetWorldMetadataError as xZ, type GetWorldMetadataResponses as x_, type CheckUserPersistenceExistsError as xa, type CheckUserPersistenceExistsResponses as xb, type GetUserByName as xc, type GetUserByNameErrors as xd, type GetUserByNameError as xe, type GetUserByNameResponses as xf, type GetUserByNameResponse as xg, type GetCurrentOnlineUsers as xh, type GetCurrentOnlineUsersResponses as xi, type GetCurrentOnlineUsersResponse as xj, type SearchWorlds as xk, type SearchWorldsErrors as xl, type SearchWorldsError as xm, type SearchWorldsResponses as xn, type SearchWorldsResponse as xo, type CreateWorld as xp, type CreateWorldErrors as xq, type CreateWorldError as xr, type CreateWorldResponses as xs, type CreateWorldResponse as xt, type GetActiveWorlds as xu, type GetActiveWorldsErrors as xv, type GetActiveWorldsError as xw, type GetActiveWorldsResponses as xx, type GetActiveWorldsResponse as xy, type GetFavoritedWorlds as xz, type Badge as y, type UnpublishWorld as y0, type UnpublishWorldErrors as y1, type UnpublishWorldError as y2, type UnpublishWorldResponses as y3, type GetWorldPublishStatus as y4, type GetWorldPublishStatusErrors as y5, type GetWorldPublishStatusError as y6, type GetWorldPublishStatusResponses as y7, type GetWorldPublishStatusResponse as y8, type PublishWorld as y9, type PublishWorldErrors as ya, type PublishWorldError as yb, type PublishWorldResponses as yc, type GetWorldInstance as yd, type GetWorldInstanceErrors as ye, type GetWorldInstanceError as yf, type GetWorldInstanceResponses as yg, type GetWorldInstanceResponse as yh, type VRChatWebsocketOptions as yi, VRChatWebsocket as yj, type AvatarId as z };
|
|
15863
|
+
export { type UserState as $, type AdminUnityPackage as A, type DeleteWorldResponses as A0, type GetWorld as A1, type GetWorldErrors as A2, type GetWorldError as A3, type GetWorldResponses as A4, type GetWorldResponse as A5, type UpdateWorld as A6, type UpdateWorldErrors as A7, type UpdateWorldError as A8, type UpdateWorldResponses as A9, type UpdateWorldResponse as Aa, type GetWorldMetadata as Ab, type GetWorldMetadataErrors as Ac, type GetWorldMetadataError as Ad, type GetWorldMetadataResponses as Ae, type GetWorldMetadataResponse as Af, type UnpublishWorld as Ag, type UnpublishWorldErrors as Ah, type UnpublishWorldError as Ai, type UnpublishWorldResponses as Aj, type GetWorldPublishStatus as Ak, type GetWorldPublishStatusErrors as Al, type GetWorldPublishStatusError as Am, type GetWorldPublishStatusResponses as An, type GetWorldPublishStatusResponse as Ao, type PublishWorld as Ap, type PublishWorldErrors as Aq, type PublishWorldError as Ar, type PublishWorldResponses as As, type GetWorldInstance as At, type GetWorldInstanceErrors as Au, type GetWorldInstanceError as Av, type GetWorldInstanceResponses as Aw, type GetWorldInstanceResponse as Ax, type VRChatWebsocketOptions as Ay, VRChatWebsocket as Az, type BadgeId as B, type ClientOptions as C, type AccountDeletionLog as D, type AgeVerificationStatus as E, type FileAnalysisAvatarStats as F, type AgeVerified as G, type Badge as H, type AvatarId as I, type CurrentAvatarImageUrl as J, type CurrentAvatarThumbnailImageUrl as K, type LoginCredentials as L, type DeveloperType as M, type DiscordId as N, type DiscordDetails as O, type Platform as P, type PastDisplayName as Q, type Response$1 as R, type SubscriptionPeriod as S, TwoFactorMethods as T, type UserId as U, VRChat as V, type WorldId as W, type GroupId as X, type LocationId as Y, type CurrentUserPresence as Z, type _Error as _, VRChatError as a, type PlatformBuildInfo as a$, type UserStatus as a0, type CurrentUser as a1, type TwoFactorAuthType as a2, type RequiresTwoFactorAuth as a3, type Disable2FaResult as a4, type TwoFactorEmailCode as a5, type Verify2FaEmailCodeResult as a6, type TwoFactorAuthCode as a7, type Verify2FaResult as a8, type Pending2FaResult as a9, type LocalDateTime as aA, type CreateAvatarRequest as aB, type ServiceQueueStats as aC, type UpdateAvatarRequest as aD, type ServiceStatus as aE, type CalendarEventAccess as aF, type CalendarEventCategory as aG, type CalendarId as aH, type FileId as aI, type LanguageCode as aJ, type CalendarEventPlatform as aK, type GroupRoleId as aL, type CalendarEvent as aM, type PaginatedCalendarEventList as aN, type CalendarEventDiscoveryScope as aO, type CalendarEventDiscoveryInclusion as aP, type CalendarEventDiscovery as aQ, type CreateCalendarEventRequest as aR, type UpdateCalendarEventRequest as aS, type FollowCalendarEventRequest as aT, type ApiConfigAnnouncement as aU, type ApiConfigAudioConfig as aV, type PerformanceLimiterInfo as aW, type ApiConfigConstants as aX, type ApiConfigDownloadUrlList as aY, type DynamicContentRow as aZ, type ApiConfigEvents as a_, type AvatarModerationType as aa, type AvatarModeration as ab, type CreateAvatarModerationRequest as ac, type AvatarModerationCreated as ad, type OkStatus2 as ae, type FavoriteGroupLimits as af, type FavoriteLimits as ag, type LimitedUserFriend as ah, type Success as ai, type NotificationType as aj, type Notification as ak, type PlayerModerationType as al, type PlayerModerationId as am, type PlayerModeration as an, type ModerateUserRequest as ao, type LicenseGroupId as ap, type UserSubscription as aq, type TwoFactorRecoveryCodes as ar, type AvatarStyleId as as, type AvatarStyle as at, type SortOption as au, type OrderOption as av, type UnityPackageId as aw, type PerformanceRatings as ax, type UnityPackage as ay, type Avatar as az, type VRChatAuthentication as b, type GroupRoleTemplateValues as b$, type ReportCategory as b0, type ReportReason as b1, type ApiConfig as b2, type LicenseAction as b3, type LicenseType as b4, type License as b5, type ProductId as b6, type PurchaseProductListingRequest as b7, type ProductListingType as b8, type ProductPurchaseId as b9, type ImageMask as bA, type FileStatus as bB, type FileData as bC, type FileVersion as bD, type File as bE, type ImagePurpose as bF, type CreateFileVersionRequest as bG, type FinishFileDataUploadRequest as bH, type FileUploadUrl as bI, type FileVersionUploadStatus as bJ, type GroupGalleryId as bK, type GroupGalleryFileOrderRequest as bL, type GroupGalleryFileOrder as bM, type GroupDiscriminator as bN, type GroupGallery as bO, type GroupMemberStatus as bP, type GroupShortCode as bQ, type LimitedGroup as bR, type GroupJoinState as bS, type GroupPrivacy as bT, type GroupRoleTemplate as bU, type CreateGroupRequest as bV, type GroupMemberId as bW, type GroupPermissions as bX, type GroupMyMember as bY, type GroupRole as bZ, type Group as b_, type ProductPurchase as ba, type SortOptionProductPurchase as bb, type OrderOptionShort as bc, type StoreId as bd, type ProductType as be, type Product as bf, type ProductListingVariantId as bg, type ProductListingVariant as bh, type ProductListing as bi, type StoreShelfId as bj, type StoreShelf as bk, type StoreType as bl, type Store as bm, type StoreView as bn, type FavoriteGroupId as bo, type FavoriteType as bp, type FavoriteGroupVisibility as bq, type FavoriteGroup as br, type UpdateFavoriteGroupRequest as bs, type FavoriteId as bt, type Favorite as bu, type AddFavoriteRequest as bv, type MimeType as bw, type CreateFileRequest as bx, type ImageAnimationStyle as by, type ImageLoopStyle as bz, type VRChatOptions as c, type InventoryMetadata as c$, type UpdateGroupRequest as c0, type GroupAnnouncementId as c1, type GroupAnnouncement as c2, type CreateGroupAnnouncementRequest as c3, type GroupAuditLogEntryType as c4, type GroupAuditLogId as c5, type GroupAuditLogEntry as c6, type PaginatedGroupAuditLogEntryList as c7, type GroupMemberLimitedUser as c8, type GroupMember as c9, type CreateGroupRoleRequest as cA, type UpdateGroupRoleRequest as cB, type GroupTransferable as cC, type TransferGroupRequest as cD, type ApiHealth as cE, type InfoPushDataClickable as cF, type InfoPushDataArticleContent as cG, type InfoPushDataArticle as cH, type InfoPushData as cI, type InfoPush as cJ, type GroupAccessType as cK, type InstanceOwnerId as cL, type InstanceRegion as cM, type InstanceType as cN, type CreateInstanceRequest as cO, type Region as cP, type InstancePlatforms as cQ, type LimitedUserInstance as cR, type Instance as cS, type InstanceShortNameResponse as cT, type InventoryEquipSlot as cU, type InventoryItemType as cV, type InventoryFlag as cW, type InventoryDefaultAttributes as cX, type InventoryItemId as cY, type InventoryTemplateId as cZ, type PropId as c_, type BanGroupMemberRequest as ca, type CreateGroupGalleryRequest as cb, type GroupGalleryImageId as cc, type GroupGalleryImage as cd, type UpdateGroupGalleryRequest as ce, type AddGroupGalleryImageRequest as cf, type InstanceId as cg, type InstanceContentSettings as ch, type UdonProductId as ci, type World as cj, type GroupInstance as ck, type DeclineGroupInviteRequest as cl, type CreateGroupInviteRequest as cm, type JoinGroupRequest as cn, type GroupSearchSort as co, type GroupLimitedMember as cp, type GroupUserVisibility as cq, type UpdateGroupMemberRequest as cr, type GroupRoleIdList as cs, type GroupPermission as ct, type NotificationId as cu, type GroupPostVisibility as cv, type GroupPost as cw, type CreateGroupPostRequest as cx, type GroupJoinRequestAction as cy, type RespondGroupJoinRequest as cz, type LoginOptions as d, type RequestInviteRequest as d$, type InventoryUserAttributes as d0, type InventoryItem as d1, type Inventory as d2, type ShareInventoryItemDirectRequest as d3, type OkStatus as d4, type InventorySpawn as d5, type InventoryDropId as d6, type InventoryNotificationDetails as d7, type InventoryDrop as d8, type InventoryTemplate as d9, type SubmitModerationReportRequest as dA, type NotificationV2Category as dB, type NotificationV2DataEmpty as dC, type NotificationV2DataBadgeEarned as dD, type NotificationV2DataBoop as dE, type NotificationV2DataEventAnnouncement as dF, type NotificationV2DataGroupAnnouncement as dG, type NotificationV2DataGroupInformative as dH, type NotificationV2DataGroupTransfer as dI, type EmojiId as dJ, type NotificationV2DetailsBoop as dK, type NotificationV2ResponseIcon as dL, type NotificationV2ResponseType as dM, type NotificationV2Response as dN, type NotificationV2Type as dO, type NotificationV2 as dP, type ReplyNotificationV2Request as dQ, type RespondNotificationV2Request as dR, type PrintId as dS, type Print as dT, type PropSpawnType as dU, type PropUnityPackage as dV, type PropPlacementMask as dW, type Prop as dX, type CreatePropRequest as dY, type UpdatePropRequest as dZ, type PropPublishStatus as d_, type UpdateInventoryItemRequest as da, type SuccessFlag as db, type InventoryConsumptionResults as dc, type EquipInventoryItemRequest as dd, type NotificationDetailEmpty as de, type NotificationDetailBoop as df, type NotificationDetailInvite as dg, type NotificationDetailInviteResponse as dh, type NotificationDetailRequestInvite as di, type NotificationDetailRequestInviteResponse as dj, type NotificationDetailVoteToKick as dk, type SentNotification as dl, type InviteResponse as dm, type InviteRequest as dn, type Jam as dp, type Submission as dq, type LicenseGroup as dr, type InviteMessageType as ds, type InviteMessageId as dt, type InviteMessage as du, type UpdateInviteMessageRequest as dv, type ModerationReportId as dw, type ModerationReport as dx, type PaginatedModerationReportList as dy, type ContentFilter as dz, type LoginResult as e, type UserIdAdmin as e$, type TiliaStatus as e0, type TokenBundle as e1, type Balance as e2, type EconomyAccount as e3, type FriendStatus as e4, type TiliaTos as e5, type UpdateTiliaTosRequest as e6, type UserNoteId as e7, type UserNote as e8, type UpdateUserNoteRequest as e9, type AssetReviewId as eA, type ConfirmEmailUserId as eB, type ConfirmEmailToken as eC, type Email as eD, type DisplayName as eE, type UsernameQuery as eF, type ExcludeUserId as eG, type TargetAvatarId as eH, type AvatarModerationType2 as eI, type Offset as eJ, type Number as eK, type Offline as eL, type UserId2 as eM, type NotificationId2 as eN, type UserIdQuery as eO, type VerifyLoginPlaceToken as eP, type Featured as eQ, type Sort as eR, type Order as eS, type Tag2 as eT, type Notag as eU, type ReleaseStatus2 as eV, type MaxUnityVersion as eW, type MinUnityVersion as eX, type Platform2 as eY, type IsInternalVariant as eZ, type Search as e_, type LimitedUserSearch as ea, type User as eb, type UpdateUserRequest as ec, type ChangeUserTagsRequest as ed, type UpdateUserBadgeRequest as ee, type BoopRequest as ef, type UserCreditsEligible as eg, type FeedbackId as eh, type Feedback as ei, type LimitedUserGroups as ej, type UserAllGroupPermissions as ek, type RepresentedGroup as el, type Mutuals as em, type MutualFriend as en, type UserSubscriptionEligible as eo, type LimitedUnityPackage as ep, type LimitedWorld as eq, type CreateWorldRequest as er, type FavoritedWorld as es, type UpdateWorldRequest as et, type WorldMetadata as eu, type WorldPublishStatus as ev, type TransactionId2 as ew, type AdminAssetBundleId as ex, type FileId2 as ey, type VersionId as ez, type TransactionAgreement as f, type Hydrate as f$, type AvatarId2 as f0, type MonthDate as f1, type CalendarDiscoveryScope as f2, type CalendarDiscoveryCategories as f3, type CalendarDiscoveryTags as f4, type CalendarDiscoveryFeatured as f5, type CalendarDiscoveryNonFeatured as f6, type CalendarDiscoveryPersonalized as f7, type CalendarDiscoveryMinimumInterestCount as f8, type CalendarDiscoveryMinimumRemainingMinutes as f9, type GroupGalleryImageId2 as fA, type GroupMemberSort as fB, type GroupMemberRoleFilter as fC, type GroupRoleId2 as fD, type Require as fE, type Include as fF, type WorldId2 as fG, type InstanceId2 as fH, type InventoryHolderId as fI, type InventoryEquipSlot2 as fJ, type InventorySortOrder as fK, type InventoryItemTags as fL, type InventoryItemTypes as fM, type InventoryItemFlags as fN, type InventoryItemNotTypes as fO, type InventoryItemNotFlags as fP, type InventoryItemArchived as fQ, type InventoryPedestalItemId as fR, type InventoryPedestalDuration as fS, type Active as fT, type InventorySpawnItemId as fU, type InventoryTemplateId2 as fV, type InventoryItemId2 as fW, type InventoryItemSlotAsId as fX, type JamId as fY, type LicenseGroupId2 as fZ, type ProductId2 as f_, type CalendarDiscoveryUpcomingOffsetMinutes as fa, type CalendarDiscoveryNextCursor as fb, type CalendarSearchTerm as fc, type UtcOffset as fd, type GroupId2 as fe, type CalendarId2 as ff, type Variant as fg, type Branch as fh, type BuyerId as fi, type MostRecentFlag as fj, type SortProductPurchase as fk, type OrderShort as fl, type StoreId2 as fm, type HydrateListings as fn, type HydrateProducts as fo, type StoreView2 as fp, type FavoriteGroupType as fq, type FavoriteGroupName as fr, type FavoriteId2 as fs, type FileType as ft, type StartDate as fu, type EndDate as fv, type ActorIds as fw, type EventTypes as fx, type TargetIds as fy, type GroupGalleryId2 as fz, type TransactionId as g, type VerifyAuthTokenErrors as g$, type MessageType as g0, type Slot as g1, type ModerationReportingUserId as g2, type ModerationReportStatus as g3, type ModerationReportType as g4, type ModerationReportId2 as g5, type Limit as g6, type PermissionId2 as g7, type PrintId2 as g8, type AuthorId as g9, type GetContentAgreementStatusResponses as gA, type GetContentAgreementStatusResponse as gB, type SubmitContentAgreement as gC, type SubmitContentAgreementErrors as gD, type SubmitContentAgreementError as gE, type SubmitContentAgreementResponses as gF, type SubmitContentAgreementResponse as gG, type GetFileAnalysis as gH, type GetFileAnalysisErrors as gI, type GetFileAnalysisError as gJ, type GetFileAnalysisResponses as gK, type GetFileAnalysisResponse as gL, type GetFileAnalysisSecurity as gM, type GetFileAnalysisSecurityErrors as gN, type GetFileAnalysisSecurityError as gO, type GetFileAnalysisSecurityResponses as gP, type GetFileAnalysisSecurityResponse as gQ, type GetFileAnalysisStandard as gR, type GetFileAnalysisStandardErrors as gS, type GetFileAnalysisStandardError as gT, type GetFileAnalysisStandardResponses as gU, type GetFileAnalysisStandardResponse as gV, type UpdateAssetReviewNotes as gW, type UpdateAssetReviewNotesErrors as gX, type UpdateAssetReviewNotesError as gY, type UpdateAssetReviewNotesResponses as gZ, type VerifyAuthToken as g_, type PropId2 as ga, type GroupIdFilter as gb, type UserNoteId2 as gc, type BadgeId2 as gd, type SubscriptionId as ge, type ContentId as gf, type SteamId as gg, type Noplatform as gh, type Fuzzy as gi, type AvatarSpecific as gj, type GetSteamTransactions as gk, type GetSteamTransactionsErrors as gl, type GetSteamTransactionsError as gm, type GetSteamTransactionsResponses as gn, type GetSteamTransactionsResponse as go, type GetSteamTransaction as gp, type GetSteamTransactionErrors as gq, type GetSteamTransactionError as gr, type GetSteamTransactionResponses as gs, type GetSteamTransactionResponse as gt, type GetAdminAssetBundle as gu, type GetAdminAssetBundleResponses as gv, type GetAdminAssetBundleResponse as gw, type GetContentAgreementStatus as gx, type GetContentAgreementStatusErrors as gy, type GetContentAgreementStatusError as gz, type TransactionStatus as h, type DeleteGlobalAvatarModerationResponse as h$, type VerifyAuthTokenError as h0, type VerifyAuthTokenResponses as h1, type VerifyAuthTokenResponse as h2, type ConfirmEmail as h3, type CheckUserExists as h4, type CheckUserExistsErrors as h5, type CheckUserExistsError as h6, type CheckUserExistsResponses as h7, type CheckUserExistsResponse as h8, type GetAssignedPermissions as h9, type CancelPending2FaError as hA, type CancelPending2FaResponses as hB, type CancelPending2FaResponse as hC, type Enable2Fa as hD, type Enable2FaErrors as hE, type Enable2FaError as hF, type Enable2FaResponses as hG, type Enable2FaResponse as hH, type VerifyPending2Fa as hI, type VerifyPending2FaErrors as hJ, type VerifyPending2FaError as hK, type VerifyPending2FaResponses as hL, type VerifyPending2FaResponse as hM, type Verify2Fa as hN, type Verify2FaErrors as hO, type Verify2FaError as hP, type Verify2FaResponses as hQ, type Verify2FaResponse as hR, type GetCurrentUser as hS, type GetCurrentUserErrors as hT, type GetCurrentUserError as hU, type GetCurrentUserResponses as hV, type GetCurrentUserResponse as hW, type DeleteGlobalAvatarModeration as hX, type DeleteGlobalAvatarModerationErrors as hY, type DeleteGlobalAvatarModerationError as hZ, type DeleteGlobalAvatarModerationResponses as h_, type GetAssignedPermissionsErrors as ha, type GetAssignedPermissionsError as hb, type GetAssignedPermissionsResponses as hc, type GetAssignedPermissionsResponse as hd, type RegisterUserAccount as he, type RegisterUserAccountErrors as hf, type RegisterUserAccountError as hg, type RegisterUserAccountResponses as hh, type RegisterUserAccountResponse as hi, type Disable2Fa as hj, type Disable2FaErrors as hk, type Disable2FaError as hl, type Disable2FaResponses as hm, type Disable2FaResponse as hn, type Verify2FaEmailCode as ho, type Verify2FaEmailCodeErrors as hp, type Verify2FaEmailCodeError as hq, type Verify2FaEmailCodeResponses as hr, type Verify2FaEmailCodeResponse as hs, type VerifyRecoveryCode as ht, type VerifyRecoveryCodeErrors as hu, type VerifyRecoveryCodeError as hv, type VerifyRecoveryCodeResponses as hw, type VerifyRecoveryCodeResponse as hx, type CancelPending2Fa as hy, type CancelPending2FaErrors as hz, type TransactionSteamWalletInfo as i, type GetPlayerModerationsErrors as i$, type GetGlobalAvatarModerations as i0, type GetGlobalAvatarModerationsErrors as i1, type GetGlobalAvatarModerationsError as i2, type GetGlobalAvatarModerationsResponses as i3, type GetGlobalAvatarModerationsResponse as i4, type CreateGlobalAvatarModeration as i5, type CreateGlobalAvatarModerationErrors as i6, type CreateGlobalAvatarModerationError as i7, type CreateGlobalAvatarModerationResponses as i8, type CreateGlobalAvatarModerationResponse as i9, type ClearNotificationsResponse as iA, type GetNotification as iB, type GetNotificationErrors as iC, type GetNotificationError as iD, type GetNotificationResponses as iE, type GetNotificationResponse as iF, type AcceptFriendRequest as iG, type AcceptFriendRequestErrors as iH, type AcceptFriendRequestError as iI, type AcceptFriendRequestResponses as iJ, type AcceptFriendRequestResponse as iK, type DeleteNotification as iL, type DeleteNotificationErrors as iM, type DeleteNotificationError as iN, type DeleteNotificationResponses as iO, type DeleteNotificationResponse as iP, type MarkNotificationAsRead as iQ, type MarkNotificationAsReadErrors as iR, type MarkNotificationAsReadError as iS, type MarkNotificationAsReadResponses as iT, type MarkNotificationAsReadResponse as iU, type ClearAllPlayerModerations as iV, type ClearAllPlayerModerationsErrors as iW, type ClearAllPlayerModerationsError as iX, type ClearAllPlayerModerationsResponses as iY, type ClearAllPlayerModerationsResponse as iZ, type GetPlayerModerations as i_, type GetFavoriteLimits as ia, type GetFavoriteLimitsErrors as ib, type GetFavoriteLimitsError as ic, type GetFavoriteLimitsResponses as id, type GetFavoriteLimitsResponse as ie, type GetFriends as ig, type GetFriendsErrors as ih, type GetFriendsError as ii, type GetFriendsResponses as ij, type GetFriendsResponse as ik, type Unfriend as il, type UnfriendErrors as im, type UnfriendError as io, type UnfriendResponses as ip, type UnfriendResponse as iq, type GetNotifications as ir, type GetNotificationsErrors as is, type GetNotificationsError as it, type GetNotificationsResponses as iu, type GetNotificationsResponse as iv, type ClearNotifications as iw, type ClearNotificationsErrors as ix, type ClearNotificationsError as iy, type ClearNotificationsResponses as iz, type TransactionSteamInfo as j, type GetAvatarErrors as j$, type GetPlayerModerationsError as j0, type GetPlayerModerationsResponses as j1, type GetPlayerModerationsResponse as j2, type ModerateUser as j3, type ModerateUserErrors as j4, type ModerateUserError as j5, type ModerateUserResponses as j6, type ModerateUserResponse as j7, type ResendEmailConfirmation as j8, type ResendEmailConfirmationErrors as j9, type SearchAvatarsResponse as jA, type CreateAvatar as jB, type CreateAvatarErrors as jC, type CreateAvatarError as jD, type CreateAvatarResponses as jE, type CreateAvatarResponse as jF, type GetFavoritedAvatars as jG, type GetFavoritedAvatarsErrors as jH, type GetFavoritedAvatarsError as jI, type GetFavoritedAvatarsResponses as jJ, type GetFavoritedAvatarsResponse as jK, type GetImpostorQueueStats as jL, type GetImpostorQueueStatsErrors as jM, type GetImpostorQueueStatsError as jN, type GetImpostorQueueStatsResponses as jO, type GetImpostorQueueStatsResponse as jP, type GetLicensedAvatars as jQ, type GetLicensedAvatarsErrors as jR, type GetLicensedAvatarsError as jS, type GetLicensedAvatarsResponses as jT, type GetLicensedAvatarsResponse as jU, type DeleteAvatar as jV, type DeleteAvatarErrors as jW, type DeleteAvatarError as jX, type DeleteAvatarResponses as jY, type DeleteAvatarResponse as jZ, type GetAvatar as j_, type ResendEmailConfirmationError as ja, type ResendEmailConfirmationResponses as jb, type ResendEmailConfirmationResponse as jc, type GetCurrentSubscriptions as jd, type GetCurrentSubscriptionsErrors as je, type GetCurrentSubscriptionsError as jf, type GetCurrentSubscriptionsResponses as jg, type GetCurrentSubscriptionsResponse as jh, type GetRecoveryCodes as ji, type GetRecoveryCodesErrors as jj, type GetRecoveryCodesError as jk, type GetRecoveryCodesResponses as jl, type GetRecoveryCodesResponse as jm, type UnmoderateUser as jn, type UnmoderateUserErrors as jo, type UnmoderateUserError as jp, type UnmoderateUserResponses as jq, type UnmoderateUserResponse as jr, type VerifyLoginPlace as js, type GetAvatarStyles as jt, type GetAvatarStylesResponses as ju, type GetAvatarStylesResponse as jv, type SearchAvatars as jw, type SearchAvatarsErrors as jx, type SearchAvatarsError as jy, type SearchAvatarsResponses as jz, type Subscription as k, type GetGroupNextCalendarEventErrors as k$, type GetAvatarError as k0, type GetAvatarResponses as k1, type GetAvatarResponse as k2, type UpdateAvatar as k3, type UpdateAvatarErrors as k4, type UpdateAvatarError as k5, type UpdateAvatarResponses as k6, type UpdateAvatarResponse as k7, type DeleteImpostor as k8, type DeleteImpostorErrors as k9, type DiscoverCalendarEventsResponse as kA, type GetFeaturedCalendarEvents as kB, type GetFeaturedCalendarEventsErrors as kC, type GetFeaturedCalendarEventsError as kD, type GetFeaturedCalendarEventsResponses as kE, type GetFeaturedCalendarEventsResponse as kF, type GetFollowedCalendarEvents as kG, type GetFollowedCalendarEventsErrors as kH, type GetFollowedCalendarEventsError as kI, type GetFollowedCalendarEventsResponses as kJ, type GetFollowedCalendarEventsResponse as kK, type SearchCalendarEvents as kL, type SearchCalendarEventsErrors as kM, type SearchCalendarEventsError as kN, type SearchCalendarEventsResponses as kO, type SearchCalendarEventsResponse as kP, type GetGroupCalendarEvents as kQ, type GetGroupCalendarEventsErrors as kR, type GetGroupCalendarEventsError as kS, type GetGroupCalendarEventsResponses as kT, type GetGroupCalendarEventsResponse as kU, type CreateGroupCalendarEvent as kV, type CreateGroupCalendarEventErrors as kW, type CreateGroupCalendarEventError as kX, type CreateGroupCalendarEventResponses as kY, type CreateGroupCalendarEventResponse as kZ, type GetGroupNextCalendarEvent as k_, type DeleteImpostorError as ka, type DeleteImpostorResponses as kb, type EnqueueImpostor as kc, type EnqueueImpostorErrors as kd, type EnqueueImpostorError as ke, type EnqueueImpostorResponses as kf, type EnqueueImpostorResponse as kg, type SelectAvatar as kh, type SelectAvatarErrors as ki, type SelectAvatarError as kj, type SelectAvatarResponses as kk, type SelectAvatarResponse as kl, type SelectFallbackAvatar as km, type SelectFallbackAvatarErrors as kn, type SelectFallbackAvatarError as ko, type SelectFallbackAvatarResponses as kp, type SelectFallbackAvatarResponse as kq, type GetCalendarEvents as kr, type GetCalendarEventsErrors as ks, type GetCalendarEventsError as kt, type GetCalendarEventsResponses as ku, type GetCalendarEventsResponse as kv, type DiscoverCalendarEvents as kw, type DiscoverCalendarEventsErrors as kx, type DiscoverCalendarEventsError as ky, type DiscoverCalendarEventsResponses as kz, type Transaction as l, type ClearFavoriteGroupResponse as l$, type GetGroupNextCalendarEventError as l0, type GetGroupNextCalendarEventResponses as l1, type GetGroupNextCalendarEventResponse as l2, type DeleteGroupCalendarEvent as l3, type DeleteGroupCalendarEventErrors as l4, type DeleteGroupCalendarEventError as l5, type DeleteGroupCalendarEventResponses as l6, type DeleteGroupCalendarEventResponse as l7, type GetGroupCalendarEvent as l8, type GetGroupCalendarEventErrors as l9, type GetActiveLicenses as lA, type GetActiveLicensesErrors as lB, type GetActiveLicensesError as lC, type GetActiveLicensesResponses as lD, type GetActiveLicensesResponse as lE, type PurchaseProductListing as lF, type PurchaseProductListingErrors as lG, type PurchaseProductListingError as lH, type PurchaseProductListingResponses as lI, type PurchaseProductListingResponse as lJ, type GetProductPurchases as lK, type GetProductPurchasesErrors as lL, type GetProductPurchasesError as lM, type GetProductPurchasesResponses as lN, type GetProductPurchasesResponse as lO, type GetStore as lP, type GetStoreErrors as lQ, type GetStoreError as lR, type GetStoreResponses as lS, type GetStoreResponse as lT, type GetStoreShelves as lU, type GetStoreShelvesErrors as lV, type GetStoreShelvesError as lW, type GetStoreShelvesResponses as lX, type GetStoreShelvesResponse as lY, type ClearFavoriteGroup as lZ, type ClearFavoriteGroupResponses as l_, type GetGroupCalendarEventError as la, type GetGroupCalendarEventResponses as lb, type GetGroupCalendarEventResponse as lc, type GetGroupCalendarEventIcs as ld, type GetGroupCalendarEventIcsErrors as le, type GetGroupCalendarEventIcsError as lf, type GetGroupCalendarEventIcsResponses as lg, type GetGroupCalendarEventIcsResponse as lh, type UpdateGroupCalendarEvent as li, type UpdateGroupCalendarEventErrors as lj, type UpdateGroupCalendarEventError as lk, type UpdateGroupCalendarEventResponses as ll, type UpdateGroupCalendarEventResponse as lm, type FollowGroupCalendarEvent as ln, type FollowGroupCalendarEventErrors as lo, type FollowGroupCalendarEventError as lp, type FollowGroupCalendarEventResponses as lq, type FollowGroupCalendarEventResponse as lr, type GetConfig as ls, type GetConfigResponses as lt, type GetConfigResponse as lu, type GetCss as lv, type GetCssErrors as lw, type GetCssError as lx, type GetCssResponses as ly, type GetCssResponse as lz, type ReleaseStatus as m, type GetFileDataUploadStatusResponses as m$, type GetFavoriteGroup as m0, type GetFavoriteGroupResponses as m1, type GetFavoriteGroupResponse as m2, type UpdateFavoriteGroup as m3, type UpdateFavoriteGroupResponses as m4, type GetFavoriteGroups as m5, type GetFavoriteGroupsErrors as m6, type GetFavoriteGroupsError as m7, type GetFavoriteGroupsResponses as m8, type GetFavoriteGroupsResponse as m9, type GetFile as mA, type GetFileErrors as mB, type GetFileError as mC, type GetFileResponses as mD, type GetFileResponse as mE, type CreateFileVersion as mF, type CreateFileVersionResponses as mG, type CreateFileVersionResponse as mH, type DeleteFileVersion as mI, type DeleteFileVersionErrors as mJ, type DeleteFileVersionError as mK, type DeleteFileVersionResponses as mL, type DeleteFileVersionResponse as mM, type DownloadFileVersion as mN, type DownloadFileVersionErrors as mO, type DownloadFileVersionError as mP, type DownloadFileVersionResponses as mQ, type DownloadFileVersionResponse as mR, type FinishFileDataUpload as mS, type FinishFileDataUploadResponses as mT, type FinishFileDataUploadResponse as mU, type StartFileDataUpload as mV, type StartFileDataUploadErrors as mW, type StartFileDataUploadError as mX, type StartFileDataUploadResponses as mY, type StartFileDataUploadResponse as mZ, type GetFileDataUploadStatus as m_, type GetFavorites as ma, type GetFavoritesErrors as mb, type GetFavoritesError as mc, type GetFavoritesResponses as md, type GetFavoritesResponse as me, type AddFavorite as mf, type AddFavoriteErrors as mg, type AddFavoriteError as mh, type AddFavoriteResponses as mi, type AddFavoriteResponse as mj, type RemoveFavorite as mk, type RemoveFavoriteErrors as ml, type RemoveFavoriteError as mm, type RemoveFavoriteResponses as mn, type RemoveFavoriteResponse as mo, type CreateFile as mp, type CreateFileResponses as mq, type CreateFileResponse as mr, type UploadImage as ms, type UploadImageResponses as mt, type UploadImageResponse as mu, type DeleteFile as mv, type DeleteFileErrors as mw, type DeleteFileError as mx, type DeleteFileResponses as my, type DeleteFileResponse as mz, type Tag as n, type GetGroupAuditLogsErrors as n$, type GetFileDataUploadStatusResponse as n0, type GetFiles as n1, type GetFilesResponses as n2, type GetFilesResponse as n3, type SetGroupGalleryFileOrder as n4, type SetGroupGalleryFileOrderErrors as n5, type SetGroupGalleryFileOrderError as n6, type SetGroupGalleryFileOrderResponses as n7, type SetGroupGalleryFileOrderResponse as n8, type UploadGalleryImage as n9, type GetGroupResponse as nA, type UpdateGroup as nB, type UpdateGroupErrors as nC, type UpdateGroupError as nD, type UpdateGroupResponses as nE, type UpdateGroupResponse as nF, type DeleteGroupAnnouncement as nG, type DeleteGroupAnnouncementErrors as nH, type DeleteGroupAnnouncementError as nI, type DeleteGroupAnnouncementResponses as nJ, type DeleteGroupAnnouncementResponse as nK, type GetGroupAnnouncements as nL, type GetGroupAnnouncementsErrors as nM, type GetGroupAnnouncementsError as nN, type GetGroupAnnouncementsResponses as nO, type GetGroupAnnouncementsResponse as nP, type CreateGroupAnnouncement as nQ, type CreateGroupAnnouncementErrors as nR, type CreateGroupAnnouncementError as nS, type CreateGroupAnnouncementResponses as nT, type CreateGroupAnnouncementResponse as nU, type GetGroupAuditLogEntryTypes as nV, type GetGroupAuditLogEntryTypesErrors as nW, type GetGroupAuditLogEntryTypesError as nX, type GetGroupAuditLogEntryTypesResponses as nY, type GetGroupAuditLogEntryTypesResponse as nZ, type GetGroupAuditLogs as n_, type UploadGalleryImageResponses as na, type UploadGalleryImageResponse as nb, type SearchGroups as nc, type SearchGroupsErrors as nd, type SearchGroupsError as ne, type SearchGroupsResponses as nf, type SearchGroupsResponse as ng, type CreateGroup as nh, type CreateGroupErrors as ni, type CreateGroupError as nj, type CreateGroupResponses as nk, type CreateGroupResponse as nl, type GetGroupRoleTemplates as nm, type GetGroupRoleTemplatesErrors as nn, type GetGroupRoleTemplatesError as no, type GetGroupRoleTemplatesResponses as np, type GetGroupRoleTemplatesResponse as nq, type DeleteGroup as nr, type DeleteGroupErrors as ns, type DeleteGroupError as nt, type DeleteGroupResponses as nu, type DeleteGroupResponse as nv, type GetGroup as nw, type GetGroupErrors as nx, type GetGroupError as ny, type GetGroupResponses as nz, type AdminAssetBundle as o, type CreateGroupInvite as o$, type GetGroupAuditLogsError as o0, type GetGroupAuditLogsResponses as o1, type GetGroupAuditLogsResponse as o2, type GetGroupBans as o3, type GetGroupBansErrors as o4, type GetGroupBansError as o5, type GetGroupBansResponses as o6, type GetGroupBansResponse as o7, type BanGroupMember as o8, type BanGroupMemberErrors as o9, type GetGroupGalleryImagesResponses as oA, type GetGroupGalleryImagesResponse as oB, type UpdateGroupGallery as oC, type UpdateGroupGalleryErrors as oD, type UpdateGroupGalleryError as oE, type UpdateGroupGalleryResponses as oF, type UpdateGroupGalleryResponse as oG, type AddGroupGalleryImage as oH, type AddGroupGalleryImageErrors as oI, type AddGroupGalleryImageError as oJ, type AddGroupGalleryImageResponses as oK, type AddGroupGalleryImageResponse as oL, type DeleteGroupGalleryImage as oM, type DeleteGroupGalleryImageErrors as oN, type DeleteGroupGalleryImageError as oO, type DeleteGroupGalleryImageResponses as oP, type DeleteGroupGalleryImageResponse as oQ, type GetGroupInstances as oR, type GetGroupInstancesErrors as oS, type GetGroupInstancesError as oT, type GetGroupInstancesResponses as oU, type GetGroupInstancesResponse as oV, type GetGroupInvites as oW, type GetGroupInvitesErrors as oX, type GetGroupInvitesError as oY, type GetGroupInvitesResponses as oZ, type GetGroupInvitesResponse as o_, type BanGroupMemberError as oa, type BanGroupMemberResponses as ob, type BanGroupMemberResponse as oc, type UnbanGroupMember as od, type UnbanGroupMemberErrors as oe, type UnbanGroupMemberError as of, type UnbanGroupMemberResponses as og, type UnbanGroupMemberResponse as oh, type BlockGroup as oi, type BlockGroupErrors as oj, type BlockGroupError as ok, type BlockGroupResponses as ol, type BlockGroupResponse as om, type CreateGroupGallery as on, type CreateGroupGalleryErrors as oo, type CreateGroupGalleryError as op, type CreateGroupGalleryResponses as oq, type CreateGroupGalleryResponse as or, type DeleteGroupGallery as os, type DeleteGroupGalleryErrors as ot, type DeleteGroupGalleryError as ou, type DeleteGroupGalleryResponses as ov, type DeleteGroupGalleryResponse as ow, type GetGroupGalleryImages as ox, type GetGroupGalleryImagesErrors as oy, type GetGroupGalleryImagesError as oz, type AgreementCode as p, type GetGroupPostsError as p$, type CreateGroupInviteErrors as p0, type CreateGroupInviteError as p1, type CreateGroupInviteResponses as p2, type DeclineGroupInvite as p3, type DeclineGroupInviteErrors as p4, type DeclineGroupInviteError as p5, type DeclineGroupInviteResponses as p6, type DeclineGroupInviteResponse as p7, type DeleteGroupInvite as p8, type DeleteGroupInviteErrors as p9, type GetGroupMember as pA, type GetGroupMemberErrors as pB, type GetGroupMemberError as pC, type GetGroupMemberResponses as pD, type GetGroupMemberResponse as pE, type UpdateGroupMember as pF, type UpdateGroupMemberErrors as pG, type UpdateGroupMemberError as pH, type UpdateGroupMemberResponses as pI, type UpdateGroupMemberResponse as pJ, type RemoveGroupMemberRole as pK, type RemoveGroupMemberRoleErrors as pL, type RemoveGroupMemberRoleError as pM, type RemoveGroupMemberRoleResponses as pN, type RemoveGroupMemberRoleResponse as pO, type AddGroupMemberRole as pP, type AddGroupMemberRoleErrors as pQ, type AddGroupMemberRoleError as pR, type AddGroupMemberRoleResponses as pS, type AddGroupMemberRoleResponse as pT, type GetGroupPermissions as pU, type GetGroupPermissionsErrors as pV, type GetGroupPermissionsError as pW, type GetGroupPermissionsResponses as pX, type GetGroupPermissionsResponse as pY, type GetGroupPosts as pZ, type GetGroupPostsErrors as p_, type DeleteGroupInviteError as pa, type DeleteGroupInviteResponses as pb, type JoinGroup as pc, type JoinGroupErrors as pd, type JoinGroupError as pe, type JoinGroupResponses as pf, type JoinGroupResponse as pg, type LeaveGroup as ph, type LeaveGroupErrors as pi, type LeaveGroupError as pj, type LeaveGroupResponses as pk, type GetGroupMembers as pl, type GetGroupMembersErrors as pm, type GetGroupMembersError as pn, type GetGroupMembersResponses as po, type GetGroupMembersResponse as pp, type SearchGroupMembers as pq, type SearchGroupMembersErrors as pr, type SearchGroupMembersError as ps, type SearchGroupMembersResponses as pt, type SearchGroupMembersResponse as pu, type KickGroupMember as pv, type KickGroupMemberErrors as pw, type KickGroupMemberError as px, type KickGroupMemberResponses as py, type KickGroupMemberResponse as pz, type AgreementStatus as q, type GetGroupTransferabilityResponses as q$, type GetGroupPostsResponses as q0, type GetGroupPostsResponse as q1, type AddGroupPost as q2, type AddGroupPostErrors as q3, type AddGroupPostError as q4, type AddGroupPostResponses as q5, type AddGroupPostResponse as q6, type DeleteGroupPost as q7, type DeleteGroupPostErrors as q8, type DeleteGroupPostError as q9, type GetGroupRolesErrors as qA, type GetGroupRolesError as qB, type GetGroupRolesResponses as qC, type GetGroupRolesResponse as qD, type CreateGroupRole as qE, type CreateGroupRoleErrors as qF, type CreateGroupRoleError as qG, type CreateGroupRoleResponses as qH, type CreateGroupRoleResponse as qI, type DeleteGroupRole as qJ, type DeleteGroupRoleErrors as qK, type DeleteGroupRoleError as qL, type DeleteGroupRoleResponses as qM, type DeleteGroupRoleResponse as qN, type UpdateGroupRole as qO, type UpdateGroupRoleErrors as qP, type UpdateGroupRoleError as qQ, type UpdateGroupRoleResponses as qR, type UpdateGroupRoleResponse as qS, type CancelGroupTransfer as qT, type CancelGroupTransferErrors as qU, type CancelGroupTransferError as qV, type CancelGroupTransferResponses as qW, type CancelGroupTransferResponse as qX, type GetGroupTransferability as qY, type GetGroupTransferabilityErrors as qZ, type GetGroupTransferabilityError as q_, type DeleteGroupPostResponses as qa, type DeleteGroupPostResponse as qb, type UpdateGroupPost as qc, type UpdateGroupPostErrors as qd, type UpdateGroupPostError as qe, type UpdateGroupPostResponses as qf, type UpdateGroupPostResponse as qg, type UpdateGroupRepresentation as qh, type UpdateGroupRepresentationErrors as qi, type UpdateGroupRepresentationError as qj, type UpdateGroupRepresentationResponses as qk, type UpdateGroupRepresentationResponse as ql, type CancelGroupRequest as qm, type CancelGroupRequestErrors as qn, type CancelGroupRequestError as qo, type CancelGroupRequestResponses as qp, type GetGroupRequests as qq, type GetGroupRequestsErrors as qr, type GetGroupRequestsError as qs, type GetGroupRequestsResponses as qt, type GetGroupRequestsResponse as qu, type RespondGroupJoinRequest2 as qv, type RespondGroupJoinRequestErrors as qw, type RespondGroupJoinRequestError as qx, type RespondGroupJoinRequestResponses as qy, type GetGroupRoles as qz, type AgreementRequest as r, type GetInventoryCollectionsResponses as r$, type GetGroupTransferabilityResponse as r0, type InitiateOrAcceptGroupTransfer as r1, type InitiateOrAcceptGroupTransferErrors as r2, type InitiateOrAcceptGroupTransferError as r3, type InitiateOrAcceptGroupTransferResponses as r4, type InitiateOrAcceptGroupTransferResponse as r5, type GetHealth as r6, type GetHealthResponses as r7, type GetHealthResponse as r8, type UploadIcon as r9, type GetInstanceErrors as rA, type GetInstanceError as rB, type GetInstanceResponses as rC, type GetInstanceResponse as rD, type GetShortName as rE, type GetShortNameErrors as rF, type GetShortNameError as rG, type GetShortNameResponses as rH, type GetShortNameResponse as rI, type GetInventory as rJ, type GetInventoryErrors as rK, type GetInventoryError as rL, type GetInventoryResponses as rM, type GetInventoryResponse as rN, type ShareInventoryItemDirect as rO, type ShareInventoryItemDirectErrors as rP, type ShareInventoryItemDirectError as rQ, type ShareInventoryItemDirectResponses as rR, type ShareInventoryItemDirectResponse as rS, type ShareInventoryItemPedestal as rT, type ShareInventoryItemPedestalErrors as rU, type ShareInventoryItemPedestalError as rV, type ShareInventoryItemPedestalResponses as rW, type ShareInventoryItemPedestalResponse as rX, type GetInventoryCollections as rY, type GetInventoryCollectionsErrors as rZ, type GetInventoryCollectionsError as r_, type UploadIconResponses as ra, type UploadIconResponse as rb, type GetInfoPush as rc, type GetInfoPushResponses as rd, type GetInfoPushResponse as re, type CreateInstance as rf, type CreateInstanceErrors as rg, type CreateInstanceError as rh, type CreateInstanceResponses as ri, type CreateInstanceResponse as rj, type GetRecentLocations as rk, type GetRecentLocationsErrors as rl, type GetRecentLocationsError as rm, type GetRecentLocationsResponses as rn, type GetRecentLocationsResponse as ro, type GetInstanceByShortName as rp, type GetInstanceByShortNameErrors as rq, type GetInstanceByShortNameError as rr, type GetInstanceByShortNameResponses as rs, type GetInstanceByShortNameResponse as rt, type CloseInstance as ru, type CloseInstanceErrors as rv, type CloseInstanceError as rw, type CloseInstanceResponses as rx, type CloseInstanceResponse as ry, type GetInstance as rz, type Agreement as s, type InviteUserError as s$, type GetInventoryCollectionsResponse as s0, type GetInventoryDrops as s1, type GetInventoryDropsErrors as s2, type GetInventoryDropsError as s3, type GetInventoryDropsResponses as s4, type GetInventoryDropsResponse as s5, type SpawnInventoryItem as s6, type SpawnInventoryItemErrors as s7, type SpawnInventoryItemError as s8, type SpawnInventoryItemResponses as s9, type UnequipOwnInventorySlot as sA, type UnequipOwnInventorySlotErrors as sB, type UnequipOwnInventorySlotError as sC, type UnequipOwnInventorySlotResponses as sD, type UnequipOwnInventorySlotResponse as sE, type EquipOwnInventoryItem as sF, type EquipOwnInventoryItemErrors as sG, type EquipOwnInventoryItemError as sH, type EquipOwnInventoryItemResponses as sI, type EquipOwnInventoryItemResponse as sJ, type InviteMyselfTo as sK, type InviteMyselfToErrors as sL, type InviteMyselfToError as sM, type InviteMyselfToResponses as sN, type InviteMyselfToResponse as sO, type RespondInvite as sP, type RespondInviteErrors as sQ, type RespondInviteError as sR, type RespondInviteResponses as sS, type RespondInviteResponse as sT, type RespondInviteWithPhoto as sU, type RespondInviteWithPhotoErrors as sV, type RespondInviteWithPhotoError as sW, type RespondInviteWithPhotoResponses as sX, type RespondInviteWithPhotoResponse as sY, type InviteUser as sZ, type InviteUserErrors as s_, type SpawnInventoryItemResponse as sa, type GetInventoryTemplate as sb, type GetInventoryTemplateErrors as sc, type GetInventoryTemplateError as sd, type GetInventoryTemplateResponses as se, type GetInventoryTemplateResponse as sf, type DeleteOwnInventoryItem as sg, type DeleteOwnInventoryItemErrors as sh, type DeleteOwnInventoryItemError as si, type DeleteOwnInventoryItemResponses as sj, type DeleteOwnInventoryItemResponse as sk, type GetOwnInventoryItem as sl, type GetOwnInventoryItemErrors as sm, type GetOwnInventoryItemError as sn, type GetOwnInventoryItemResponses as so, type GetOwnInventoryItemResponse as sp, type UpdateOwnInventoryItem as sq, type UpdateOwnInventoryItemErrors as sr, type UpdateOwnInventoryItemError as ss, type UpdateOwnInventoryItemResponses as st, type UpdateOwnInventoryItemResponse as su, type ConsumeOwnInventoryItem as sv, type ConsumeOwnInventoryItemErrors as sw, type ConsumeOwnInventoryItemError as sx, type ConsumeOwnInventoryItemResponses as sy, type ConsumeOwnInventoryItemResponse as sz, type FileAnalysis as t, type GetModerationReportsResponses as t$, type InviteUserResponses as t0, type InviteUserResponse as t1, type InviteUserWithPhoto as t2, type InviteUserWithPhotoErrors as t3, type InviteUserWithPhotoError as t4, type InviteUserWithPhotoResponses as t5, type InviteUserWithPhotoResponse as t6, type GetJams as t7, type GetJamsResponses as t8, type GetJamsResponse as t9, type LogoutErrors as tA, type LogoutError as tB, type LogoutResponses as tC, type LogoutResponse as tD, type GetInviteMessages as tE, type GetInviteMessagesErrors as tF, type GetInviteMessagesError as tG, type GetInviteMessagesResponses as tH, type GetInviteMessagesResponse as tI, type ResetInviteMessage as tJ, type ResetInviteMessageErrors as tK, type ResetInviteMessageError as tL, type ResetInviteMessageResponses as tM, type ResetInviteMessageResponse as tN, type GetInviteMessage as tO, type GetInviteMessageErrors as tP, type GetInviteMessageError as tQ, type GetInviteMessageResponses as tR, type GetInviteMessageResponse as tS, type UpdateInviteMessage as tT, type UpdateInviteMessageErrors as tU, type UpdateInviteMessageError as tV, type UpdateInviteMessageResponses as tW, type UpdateInviteMessageResponse as tX, type GetModerationReports as tY, type GetModerationReportsErrors as tZ, type GetModerationReportsError as t_, type GetJam as ta, type GetJamErrors as tb, type GetJamError as tc, type GetJamResponses as td, type GetJamResponse as te, type GetJamSubmissions as tf, type GetJamSubmissionsErrors as tg, type GetJamSubmissionsError as th, type GetJamSubmissionsResponses as ti, type GetJamSubmissionsResponse as tj, type GetJavaScript as tk, type GetJavaScriptErrors as tl, type GetJavaScriptError as tm, type GetJavaScriptResponses as tn, type GetJavaScriptResponse as to, type GetLicenseGroup as tp, type GetLicenseGroupErrors as tq, type GetLicenseGroupError as tr, type GetLicenseGroupResponses as ts, type GetLicenseGroupResponse as tt, type GetProductListing as tu, type GetProductListingErrors as tv, type GetProductListingError as tw, type GetProductListingResponses as tx, type GetProductListingResponse as ty, type Logout as tz, type UpdateAssetReviewNotesRequest as u, type DeletePrintError as u$, type GetModerationReportsResponse as u0, type SubmitModerationReport as u1, type SubmitModerationReportErrors as u2, type SubmitModerationReportError as u3, type SubmitModerationReportResponses as u4, type SubmitModerationReportResponse as u5, type DeleteModerationReport as u6, type DeleteModerationReportErrors as u7, type DeleteModerationReportError as u8, type DeleteModerationReportResponses as u9, type RespondNotificationV2 as uA, type RespondNotificationV2Errors as uB, type RespondNotificationV2Error as uC, type RespondNotificationV2Responses as uD, type RespondNotificationV2Response as uE, type AcknowledgeNotificationV2 as uF, type AcknowledgeNotificationV2Errors as uG, type AcknowledgeNotificationV2Error as uH, type AcknowledgeNotificationV2Responses as uI, type AcknowledgeNotificationV2Response as uJ, type GetPermission as uK, type GetPermissionErrors as uL, type GetPermissionError as uM, type GetPermissionResponses as uN, type GetPermissionResponse as uO, type UploadPrint as uP, type UploadPrintErrors as uQ, type UploadPrintError as uR, type UploadPrintResponses as uS, type UploadPrintResponse as uT, type GetUserPrints as uU, type GetUserPrintsErrors as uV, type GetUserPrintsError as uW, type GetUserPrintsResponses as uX, type GetUserPrintsResponse as uY, type DeletePrint as uZ, type DeletePrintErrors as u_, type DeleteModerationReportResponse as ua, type DeleteAllNotificationV2s as ub, type DeleteAllNotificationV2sErrors as uc, type DeleteAllNotificationV2sError as ud, type DeleteAllNotificationV2sResponses as ue, type DeleteAllNotificationV2sResponse as uf, type GetNotificationV2s as ug, type GetNotificationV2sErrors as uh, type GetNotificationV2sError as ui, type GetNotificationV2sResponses as uj, type GetNotificationV2sResponse as uk, type DeleteNotificationV2 as ul, type DeleteNotificationV2Errors as um, type DeleteNotificationV2Error as un, type DeleteNotificationV2Responses as uo, type DeleteNotificationV2Response as up, type GetNotificationV2 as uq, type GetNotificationV2Errors as ur, type GetNotificationV2Error as us, type GetNotificationV2Responses as ut, type GetNotificationV2Response as uu, type ReplyNotificationV2 as uv, type ReplyNotificationV2Errors as uw, type ReplyNotificationV2Error as ux, type ReplyNotificationV2Responses as uy, type ReplyNotificationV2Response as uz, type VerifyAuthTokenResult as v, type RequestInviteWithPhotoResponses as v$, type DeletePrintResponses as v0, type GetPrint as v1, type GetPrintErrors as v2, type GetPrintError as v3, type GetPrintResponses as v4, type GetPrintResponse as v5, type EditPrint as v6, type EditPrintErrors as v7, type EditPrintError as v8, type EditPrintResponses as v9, type UpdatePropErrors as vA, type UpdatePropError as vB, type UpdatePropResponses as vC, type UpdatePropResponse as vD, type UnpublishProp as vE, type UnpublishPropErrors as vF, type UnpublishPropError as vG, type UnpublishPropResponses as vH, type UnpublishPropResponse as vI, type GetPropPublishStatus as vJ, type GetPropPublishStatusErrors as vK, type GetPropPublishStatusError as vL, type GetPropPublishStatusResponses as vM, type GetPropPublishStatusResponse as vN, type PublishProp as vO, type PublishPropErrors as vP, type PublishPropError as vQ, type PublishPropResponses as vR, type PublishPropResponse as vS, type RequestInvite as vT, type RequestInviteErrors as vU, type RequestInviteError as vV, type RequestInviteResponses as vW, type RequestInviteResponse as vX, type RequestInviteWithPhoto as vY, type RequestInviteWithPhotoErrors as vZ, type RequestInviteWithPhotoError as v_, type EditPrintResponse as va, type GetProductListingAlternate as vb, type GetProductListingAlternateErrors as vc, type GetProductListingAlternateError as vd, type GetProductListingAlternateResponses as ve, type GetProductListingAlternateResponse as vf, type ListProps as vg, type ListPropsErrors as vh, type ListPropsError as vi, type ListPropsResponses as vj, type ListPropsResponse as vk, type CreateProp as vl, type CreatePropErrors as vm, type CreatePropError as vn, type CreatePropResponses as vo, type CreatePropResponse as vp, type DeleteProp as vq, type DeletePropErrors as vr, type DeletePropError as vs, type DeletePropResponses as vt, type GetProp as vu, type GetPropErrors as vv, type GetPropError as vw, type GetPropResponses as vx, type GetPropResponse as vy, type UpdateProp as vz, type UserExists as w, type GetUserInventoryItemResponse as w$, type RequestInviteWithPhotoResponse as w0, type GetSubscriptions as w1, type GetSubscriptionsErrors as w2, type GetSubscriptionsError as w3, type GetSubscriptionsResponses as w4, type GetSubscriptionsResponse as w5, type GetTiliaStatus as w6, type GetTiliaStatusErrors as w7, type GetTiliaStatusError as w8, type GetTiliaStatusResponses as w9, type GetBalanceEarningsError as wA, type GetBalanceEarningsResponses as wB, type GetBalanceEarningsResponse as wC, type GetEconomyAccount as wD, type GetEconomyAccountErrors as wE, type GetEconomyAccountError as wF, type GetEconomyAccountResponses as wG, type GetEconomyAccountResponse as wH, type DeleteFriendRequest as wI, type DeleteFriendRequestErrors as wJ, type DeleteFriendRequestError as wK, type DeleteFriendRequestResponses as wL, type DeleteFriendRequestResponse as wM, type Friend as wN, type FriendErrors as wO, type FriendError as wP, type FriendResponses as wQ, type FriendResponse as wR, type GetFriendStatus as wS, type GetFriendStatusErrors as wT, type GetFriendStatusError as wU, type GetFriendStatusResponses as wV, type GetFriendStatusResponse as wW, type GetUserInventoryItem as wX, type GetUserInventoryItemErrors as wY, type GetUserInventoryItemError as wZ, type GetUserInventoryItemResponses as w_, type GetTiliaStatusResponse as wa, type GetSystemTime as wb, type GetSystemTimeResponses as wc, type GetSystemTimeResponse as wd, type GetTokenBundles as we, type GetTokenBundlesErrors as wf, type GetTokenBundlesError as wg, type GetTokenBundlesResponses as wh, type GetTokenBundlesResponse as wi, type GetBulkGiftPurchases as wj, type GetBulkGiftPurchasesErrors as wk, type GetBulkGiftPurchasesError as wl, type GetBulkGiftPurchasesResponses as wm, type GetBulkGiftPurchasesResponse as wn, type GetRecentSubscription as wo, type GetRecentSubscriptionErrors as wp, type GetRecentSubscriptionError as wq, type GetRecentSubscriptionResponses as wr, type GetRecentSubscriptionResponse as ws, type GetBalance as wt, type GetBalanceErrors as wu, type GetBalanceError as wv, type GetBalanceResponses as ww, type GetBalanceResponse as wx, type GetBalanceEarnings as wy, type GetBalanceEarningsErrors as wz, type PermissionId as x, type BoopResponse as x$, type GetProductListings as x0, type GetProductListingsErrors as x1, type GetProductListingsError as x2, type GetProductListingsResponses as x3, type GetProductListingsResponse as x4, type GetTiliaTos as x5, type GetTiliaTosErrors as x6, type GetTiliaTosError as x7, type GetTiliaTosResponses as x8, type GetTiliaTosResponse as x9, type GetUserErrors as xA, type GetUserError as xB, type GetUserResponses as xC, type GetUserResponse as xD, type UpdateUser as xE, type UpdateUserErrors as xF, type UpdateUserError as xG, type UpdateUserResponses as xH, type UpdateUserResponse as xI, type AddTags as xJ, type AddTagsErrors as xK, type AddTagsError as xL, type AddTagsResponses as xM, type AddTagsResponse as xN, type GetOwnAvatar as xO, type GetOwnAvatarErrors as xP, type GetOwnAvatarError as xQ, type GetOwnAvatarResponses as xR, type GetOwnAvatarResponse as xS, type UpdateBadge as xT, type UpdateBadgeErrors as xU, type UpdateBadgeError as xV, type UpdateBadgeResponses as xW, type Boop as xX, type BoopErrors as xY, type BoopError as xZ, type BoopResponses as x_, type UpdateTiliaTos as xa, type UpdateTiliaTosErrors as xb, type UpdateTiliaTosError as xc, type UpdateTiliaTosResponses as xd, type UpdateTiliaTosResponse as xe, type GetUserNotes as xf, type GetUserNotesErrors as xg, type GetUserNotesError as xh, type GetUserNotesResponses as xi, type GetUserNotesResponse as xj, type UpdateUserNote as xk, type UpdateUserNoteErrors as xl, type UpdateUserNoteError as xm, type UpdateUserNoteResponses as xn, type UpdateUserNoteResponse as xo, type GetUserNote as xp, type GetUserNoteErrors as xq, type GetUserNoteError as xr, type GetUserNoteResponses as xs, type GetUserNoteResponse as xt, type SearchUsers as xu, type SearchUsersErrors as xv, type SearchUsersError as xw, type SearchUsersResponses as xx, type SearchUsersResponse as xy, type GetUser as xz, type Permission as y, type GetMutualFriendsResponses as y$, type GetUserCreditsEligible as y0, type GetUserCreditsEligibleErrors as y1, type GetUserCreditsEligibleError as y2, type GetUserCreditsEligibleResponses as y3, type GetUserCreditsEligibleResponse as y4, type DeleteUser as y5, type DeleteUserErrors as y6, type DeleteUserError as y7, type DeleteUserResponses as y8, type DeleteUserResponse as y9, type GetUserGroupRequestsErrors as yA, type GetUserGroupRequestsError as yB, type GetUserGroupRequestsResponses as yC, type GetUserGroupRequestsResponse as yD, type GetBlockedGroups as yE, type GetBlockedGroupsErrors as yF, type GetBlockedGroupsError as yG, type GetBlockedGroupsResponses as yH, type GetBlockedGroupsResponse as yI, type GetUserGroupInstances as yJ, type GetUserGroupInstancesErrors as yK, type GetUserGroupInstancesError as yL, type GetUserGroupInstancesResponses as yM, type GetUserGroupInstancesResponse as yN, type GetUserGroupInstancesForGroup as yO, type GetUserGroupInstancesForGroupErrors as yP, type GetUserGroupInstancesForGroupError as yQ, type GetUserGroupInstancesForGroupResponses as yR, type GetUserGroupInstancesForGroupResponse as yS, type GetMutuals as yT, type GetMutualsErrors as yU, type GetMutualsError as yV, type GetMutualsResponses as yW, type GetMutualsResponse as yX, type GetMutualFriends as yY, type GetMutualFriendsErrors as yZ, type GetMutualFriendsError as y_, type GetUserFeedback as ya, type GetUserFeedbackErrors as yb, type GetUserFeedbackError as yc, type GetUserFeedbackResponses as yd, type GetUserFeedbackResponse as ye, type GetUserGroups as yf, type GetUserGroupsErrors as yg, type GetUserGroupsError as yh, type GetUserGroupsResponses as yi, type GetUserGroupsResponse as yj, type GetInvitedGroups as yk, type GetInvitedGroupsErrors as yl, type GetInvitedGroupsError as ym, type GetInvitedGroupsResponses as yn, type GetInvitedGroupsResponse as yo, type GetUserAllGroupPermissions as yp, type GetUserAllGroupPermissionsErrors as yq, type GetUserAllGroupPermissionsError as yr, type GetUserAllGroupPermissionsResponses as ys, type GetUserAllGroupPermissionsResponse as yt, type GetUserRepresentedGroup as yu, type GetUserRepresentedGroupErrors as yv, type GetUserRepresentedGroupError as yw, type GetUserRepresentedGroupResponses as yx, type GetUserRepresentedGroupResponse as yy, type GetUserGroupRequests as yz, type RegisterUserAccountRequest as z, type DeleteWorldError as z$, type GetMutualFriendsResponse as z0, type GetMutualGroups as z1, type GetMutualGroupsErrors as z2, type GetMutualGroupsError as z3, type GetMutualGroupsResponses as z4, type GetMutualGroupsResponse as z5, type DeleteAllUserPersistenceData as z6, type DeleteAllUserPersistenceDataErrors as z7, type DeleteAllUserPersistenceDataError as z8, type DeleteAllUserPersistenceDataResponses as z9, type SearchWorlds as zA, type SearchWorldsErrors as zB, type SearchWorldsError as zC, type SearchWorldsResponses as zD, type SearchWorldsResponse as zE, type CreateWorld as zF, type CreateWorldErrors as zG, type CreateWorldError as zH, type CreateWorldResponses as zI, type CreateWorldResponse as zJ, type GetActiveWorlds as zK, type GetActiveWorldsErrors as zL, type GetActiveWorldsError as zM, type GetActiveWorldsResponses as zN, type GetActiveWorldsResponse as zO, type GetFavoritedWorlds as zP, type GetFavoritedWorldsErrors as zQ, type GetFavoritedWorldsError as zR, type GetFavoritedWorldsResponses as zS, type GetFavoritedWorldsResponse as zT, type GetRecentWorlds as zU, type GetRecentWorldsErrors as zV, type GetRecentWorldsError as zW, type GetRecentWorldsResponses as zX, type GetRecentWorldsResponse as zY, type DeleteWorld as zZ, type DeleteWorldErrors as z_, type RemoveTags as za, type RemoveTagsErrors as zb, type RemoveTagsError as zc, type RemoveTagsResponses as zd, type RemoveTagsResponse as ze, type GetUserSubscriptionEligible as zf, type GetUserSubscriptionEligibleErrors as zg, type GetUserSubscriptionEligibleError as zh, type GetUserSubscriptionEligibleResponses as zi, type GetUserSubscriptionEligibleResponse as zj, type DeleteUserPersistence as zk, type DeleteUserPersistenceErrors as zl, type DeleteUserPersistenceError as zm, type DeleteUserPersistenceResponses as zn, type CheckUserPersistenceExists as zo, type CheckUserPersistenceExistsErrors as zp, type CheckUserPersistenceExistsError as zq, type CheckUserPersistenceExistsResponses as zr, type GetUserByName as zs, type GetUserByNameErrors as zt, type GetUserByNameError as zu, type GetUserByNameResponses as zv, type GetUserByNameResponse as zw, type GetCurrentOnlineUsers as zx, type GetCurrentOnlineUsersResponses as zy, type GetCurrentOnlineUsersResponse as zz };
|