vrchat 2.21.7 → 2.21.8-nightly.11
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-JjkmMGls.d.mts → client-CBBkyDvF.d.mts} +945 -335
- package/dist/{client-JjkmMGls.d.ts → client-CBBkyDvF.d.ts} +945 -335
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +198 -22
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +198 -22
- 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
|
@@ -562,6 +562,10 @@ type Agreement = {
|
|
|
562
562
|
*/
|
|
563
563
|
version: number;
|
|
564
564
|
};
|
|
565
|
+
/**
|
|
566
|
+
* FileID
|
|
567
|
+
*/
|
|
568
|
+
type FileId = string;
|
|
565
569
|
/**
|
|
566
570
|
* FileAnalysisAvatarStats
|
|
567
571
|
*/
|
|
@@ -1202,6 +1206,10 @@ type Notification = {
|
|
|
1202
1206
|
senderUsername?: string;
|
|
1203
1207
|
type: NotificationType;
|
|
1204
1208
|
};
|
|
1209
|
+
/**
|
|
1210
|
+
* NotificationID
|
|
1211
|
+
*/
|
|
1212
|
+
type NotificationId = string;
|
|
1205
1213
|
/**
|
|
1206
1214
|
* PlayerModerationType
|
|
1207
1215
|
*/
|
|
@@ -1498,10 +1506,6 @@ type CalendarEventCategory = 'arts' | 'avatars' | 'dance' | 'education' | 'explo
|
|
|
1498
1506
|
* CalendarID
|
|
1499
1507
|
*/
|
|
1500
1508
|
type CalendarId = string;
|
|
1501
|
-
/**
|
|
1502
|
-
* FileID
|
|
1503
|
-
*/
|
|
1504
|
-
type FileId = string;
|
|
1505
1509
|
/**
|
|
1506
1510
|
* LanguageCode
|
|
1507
1511
|
*
|
|
@@ -1528,7 +1532,7 @@ type CalendarEvent = {
|
|
|
1528
1532
|
createdAt?: Date;
|
|
1529
1533
|
deletedAt?: Date | null;
|
|
1530
1534
|
description: string;
|
|
1531
|
-
durationInMs?:
|
|
1535
|
+
durationInMs?: bigint;
|
|
1532
1536
|
endsAt: Date;
|
|
1533
1537
|
featured?: boolean;
|
|
1534
1538
|
guestEarlyJoinMinutes?: number;
|
|
@@ -1542,12 +1546,24 @@ type CalendarEvent = {
|
|
|
1542
1546
|
* Languages that might be spoken at this event
|
|
1543
1547
|
*/
|
|
1544
1548
|
languages?: Array<LanguageCode>;
|
|
1549
|
+
/**
|
|
1550
|
+
* So far if it exists, always the string "single"
|
|
1551
|
+
*/
|
|
1552
|
+
occurrenceKind?: string;
|
|
1545
1553
|
ownerId?: GroupId;
|
|
1546
1554
|
platforms?: Array<CalendarEventPlatform>;
|
|
1555
|
+
/**
|
|
1556
|
+
* So far unused, always "null"
|
|
1557
|
+
*/
|
|
1558
|
+
recurrence?: string | null;
|
|
1547
1559
|
/**
|
|
1548
1560
|
* Group roles that may join this event
|
|
1549
1561
|
*/
|
|
1550
1562
|
roleIds?: Array<GroupRoleId> | null;
|
|
1563
|
+
/**
|
|
1564
|
+
* So far unused, always "null"
|
|
1565
|
+
*/
|
|
1566
|
+
seriesId?: string | null;
|
|
1551
1567
|
startsAt: Date;
|
|
1552
1568
|
/**
|
|
1553
1569
|
* Custom tags for this event
|
|
@@ -2578,16 +2594,55 @@ type License = {
|
|
|
2578
2594
|
forName: string;
|
|
2579
2595
|
forType: LicenseType;
|
|
2580
2596
|
};
|
|
2597
|
+
/**
|
|
2598
|
+
* EarningsMetrics
|
|
2599
|
+
*/
|
|
2600
|
+
type EarningsMetrics = {
|
|
2601
|
+
breakdown: Array<{
|
|
2602
|
+
[key: string]: unknown;
|
|
2603
|
+
}>;
|
|
2604
|
+
sellerId: UserId;
|
|
2605
|
+
totals: {
|
|
2606
|
+
otpEarnings: number;
|
|
2607
|
+
otpPurchaseCount: number;
|
|
2608
|
+
subscriberEarnings: number;
|
|
2609
|
+
subscriberMonths: number;
|
|
2610
|
+
totalEarnings: number;
|
|
2611
|
+
};
|
|
2612
|
+
};
|
|
2613
|
+
/**
|
|
2614
|
+
* ProductPurchaseLocationType
|
|
2615
|
+
*/
|
|
2616
|
+
type ProductPurchaseLocationType = 'client_avatar_marketplace' | 'client_creator_store' | 'client_group_store' | 'client_world_component' | 'client_world_store' | 'undefined' | 'web_any' | 'web_avatar_marketplace' | 'web_creator_store' | 'web_group_store' | 'web_world_store';
|
|
2617
|
+
/**
|
|
2618
|
+
* StoreID
|
|
2619
|
+
*/
|
|
2620
|
+
type StoreId = string;
|
|
2581
2621
|
/**
|
|
2582
2622
|
* ProductID
|
|
2583
2623
|
*/
|
|
2584
2624
|
type ProductId = string;
|
|
2625
|
+
/**
|
|
2626
|
+
* ProductListingVariantID
|
|
2627
|
+
*/
|
|
2628
|
+
type ProductListingVariantId = string;
|
|
2585
2629
|
/**
|
|
2586
2630
|
* PurchaseProductListingRequest
|
|
2587
2631
|
*/
|
|
2588
2632
|
type PurchaseProductListingRequest = {
|
|
2633
|
+
/**
|
|
2634
|
+
* PurchaseContextData
|
|
2635
|
+
*/
|
|
2636
|
+
contextData?: {
|
|
2637
|
+
locationType: ProductPurchaseLocationType;
|
|
2638
|
+
storeId?: StoreId;
|
|
2639
|
+
worldId?: WorldId;
|
|
2640
|
+
};
|
|
2589
2641
|
listingId: ProductId;
|
|
2642
|
+
listingVariantId?: ProductListingVariantId;
|
|
2590
2643
|
quantity: number;
|
|
2644
|
+
receiverId?: UserId;
|
|
2645
|
+
stackable?: boolean;
|
|
2591
2646
|
totalPrice: number;
|
|
2592
2647
|
};
|
|
2593
2648
|
/**
|
|
@@ -2655,9 +2710,11 @@ type SortOptionProductPurchase = 'purchaseDate';
|
|
|
2655
2710
|
*/
|
|
2656
2711
|
type OrderOptionShort = 'asc' | 'desc';
|
|
2657
2712
|
/**
|
|
2658
|
-
*
|
|
2713
|
+
* SellerEligibility
|
|
2659
2714
|
*/
|
|
2660
|
-
type
|
|
2715
|
+
type SellerEligibility = {
|
|
2716
|
+
eligible: boolean;
|
|
2717
|
+
};
|
|
2661
2718
|
/**
|
|
2662
2719
|
* ProductType
|
|
2663
2720
|
*/
|
|
@@ -2684,10 +2741,6 @@ type Product = {
|
|
|
2684
2741
|
updated?: Date | null;
|
|
2685
2742
|
useForSubscriberList?: boolean;
|
|
2686
2743
|
};
|
|
2687
|
-
/**
|
|
2688
|
-
* ProductListingVariantID
|
|
2689
|
-
*/
|
|
2690
|
-
type ProductListingVariantId = string;
|
|
2691
2744
|
/**
|
|
2692
2745
|
* ProductListingVariant
|
|
2693
2746
|
*/
|
|
@@ -2798,13 +2851,17 @@ type Store = {
|
|
|
2798
2851
|
*/
|
|
2799
2852
|
type StoreView = 'all' | 'draft' | 'preview' | 'public' | 'publicPreview';
|
|
2800
2853
|
/**
|
|
2801
|
-
*
|
|
2854
|
+
* FavoriteType
|
|
2802
2855
|
*/
|
|
2803
|
-
type
|
|
2856
|
+
type FavoriteType = 'avatar' | 'friend' | 'vrcPlusWorld' | 'world';
|
|
2804
2857
|
/**
|
|
2805
|
-
*
|
|
2858
|
+
* FavoriteName
|
|
2859
|
+
*/
|
|
2860
|
+
type FavoriteName = string;
|
|
2861
|
+
/**
|
|
2862
|
+
* FavoriteGroupID
|
|
2806
2863
|
*/
|
|
2807
|
-
type
|
|
2864
|
+
type FavoriteGroupId = string;
|
|
2808
2865
|
/**
|
|
2809
2866
|
* FavoriteGroupVisibility
|
|
2810
2867
|
*/
|
|
@@ -2869,7 +2926,7 @@ type AddFavoriteRequest = {
|
|
|
2869
2926
|
/**
|
|
2870
2927
|
* MIMEType
|
|
2871
2928
|
*/
|
|
2872
|
-
type MimeType = 'application/gzip' | 'application/octet-stream' | 'application/x-avatar' | 'application/x-rsync-delta' | 'application/x-rsync-signature' | 'application/x-world' | 'image/bmp' | 'image/gif' | 'image/jpeg' | 'image/jpg' | 'image/png' | 'image/svg+xml' | 'image/tiff' | 'image/webp';
|
|
2929
|
+
type MimeType = 'application/gzip' | 'application/octet-stream' | 'application/x-avatar' | 'application/x-prop' | 'application/x-rsync-delta' | 'application/x-rsync-signature' | 'application/x-world' | 'image/bmp' | 'image/gif' | 'image/jpeg' | 'image/jpg' | 'image/png' | 'image/svg+xml' | 'image/tiff' | 'image/webp';
|
|
2873
2930
|
/**
|
|
2874
2931
|
* CreateFileRequest
|
|
2875
2932
|
*/
|
|
@@ -3146,7 +3203,7 @@ type GroupMemberId = string;
|
|
|
3146
3203
|
/**
|
|
3147
3204
|
* GroupPermissions
|
|
3148
3205
|
*/
|
|
3149
|
-
type GroupPermissions = '*' | 'group-announcement-manage' | 'group-audit-view' | 'group-bans-manage' | 'group-calendar-manage' | 'group-data-manage' | 'group-default-role-manage' | 'group-galleries-manage' | 'group-instance-age-gated-create' | 'group-instance-calendar-link' | 'group-instance-join' | 'group-instance-manage' | 'group-instance-moderate' | 'group-instance-open-create' | 'group-instance-plus-create' | 'group-instance-plus-portal' | 'group-instance-plus-portal-unlocked' | 'group-instance-public-create' | 'group-instance-queue-priority' | 'group-instance-restricted-create' | 'group-invites-manage' | 'group-members-manage' | 'group-members-remove' | 'group-members-viewall' | 'group-roles-assign' | 'group-roles-manage';
|
|
3206
|
+
type GroupPermissions = '*' | 'group-announcement-manage' | 'group-audit-view' | 'group-bans-manage' | 'group-calendar-manage' | 'group-data-manage' | 'group-default-role-manage' | 'group-galleries-manage' | 'group-instance-age-gated-create' | 'group-instance-announcement-create' | 'group-instance-calendar-link' | 'group-instance-join' | 'group-instance-manage' | 'group-instance-moderate' | 'group-instance-open-create' | 'group-instance-plus-create' | 'group-instance-plus-portal' | 'group-instance-plus-portal-unlocked' | 'group-instance-public-create' | 'group-instance-queue-priority' | 'group-instance-restricted-create' | 'group-invites-manage' | 'group-members-manage' | 'group-members-remove' | 'group-members-viewall' | 'group-roles-assign' | 'group-roles-manage';
|
|
3150
3207
|
/**
|
|
3151
3208
|
* GroupMyMember
|
|
3152
3209
|
*/
|
|
@@ -3366,43 +3423,57 @@ type GroupMemberLimitedUser = {
|
|
|
3366
3423
|
id?: UserId;
|
|
3367
3424
|
profilePicOverride?: string;
|
|
3368
3425
|
thumbnailUrl?: string | null;
|
|
3369
|
-
};
|
|
3426
|
+
} | null;
|
|
3370
3427
|
/**
|
|
3371
3428
|
* GroupMember
|
|
3429
|
+
*
|
|
3430
|
+
* May be null when attempting to retrieve group membership for a user who is not part of the group
|
|
3372
3431
|
*/
|
|
3373
3432
|
type GroupMember = {
|
|
3433
|
+
/**
|
|
3434
|
+
* Only missing when explicitly fetching own user.
|
|
3435
|
+
*/
|
|
3374
3436
|
acceptedByDisplayName?: string | null;
|
|
3437
|
+
/**
|
|
3438
|
+
* Only missing when explicitly fetching own user.
|
|
3439
|
+
*/
|
|
3375
3440
|
acceptedById?: string | null;
|
|
3376
3441
|
/**
|
|
3377
|
-
* Only
|
|
3442
|
+
* Only missing when explicitly fetching own user.
|
|
3378
3443
|
*/
|
|
3379
3444
|
bannedAt?: Date | null;
|
|
3380
3445
|
/**
|
|
3381
|
-
* Only
|
|
3446
|
+
* Only missing when explicitly fetching own user.
|
|
3382
3447
|
*/
|
|
3383
3448
|
createdAt?: Date | null;
|
|
3384
|
-
groupId
|
|
3449
|
+
groupId: GroupId;
|
|
3450
|
+
/**
|
|
3451
|
+
* Missing when explicitly fetching own user, or when group isn't linked to a purchase.
|
|
3452
|
+
*/
|
|
3385
3453
|
hasJoinedFromPurchase?: boolean;
|
|
3386
|
-
id
|
|
3454
|
+
id: GroupMemberId;
|
|
3387
3455
|
/**
|
|
3388
3456
|
* Whether the user is representing the group. This makes the group show up above the name tag in-game.
|
|
3389
3457
|
*/
|
|
3390
|
-
isRepresenting
|
|
3391
|
-
isSubscribedToAnnouncements
|
|
3458
|
+
isRepresenting: boolean;
|
|
3459
|
+
isSubscribedToAnnouncements: boolean;
|
|
3460
|
+
/**
|
|
3461
|
+
* Only missing when explicitly fetching own user.
|
|
3462
|
+
*/
|
|
3392
3463
|
isSubscribedToEventAnnouncements?: boolean;
|
|
3393
|
-
joinedAt
|
|
3394
|
-
lastPostReadAt
|
|
3395
|
-
mRoleIds
|
|
3464
|
+
joinedAt: Date | null;
|
|
3465
|
+
lastPostReadAt: Date | null;
|
|
3466
|
+
mRoleIds: Array<GroupRoleId>;
|
|
3396
3467
|
/**
|
|
3397
|
-
* Only
|
|
3468
|
+
* Only missing when explicitly fetching own user.
|
|
3398
3469
|
*/
|
|
3399
3470
|
managerNotes?: string | null;
|
|
3400
|
-
membershipStatus
|
|
3401
|
-
roleIds
|
|
3471
|
+
membershipStatus: GroupMemberStatus;
|
|
3472
|
+
roleIds: Array<GroupRoleId>;
|
|
3402
3473
|
user?: GroupMemberLimitedUser;
|
|
3403
|
-
userId
|
|
3404
|
-
visibility
|
|
3405
|
-
};
|
|
3474
|
+
userId: UserId;
|
|
3475
|
+
visibility: string;
|
|
3476
|
+
} | null;
|
|
3406
3477
|
/**
|
|
3407
3478
|
* BanGroupMemberRequest
|
|
3408
3479
|
*/
|
|
@@ -3616,41 +3687,6 @@ type JoinGroupRequest = {
|
|
|
3616
3687
|
* GroupSearchSort
|
|
3617
3688
|
*/
|
|
3618
3689
|
type GroupSearchSort = 'joinedAt:asc' | 'joinedAt:desc';
|
|
3619
|
-
/**
|
|
3620
|
-
* GroupLimitedMember
|
|
3621
|
-
*
|
|
3622
|
-
* May be null when attempting to retrieve group membership for a user who is not part of the group
|
|
3623
|
-
*/
|
|
3624
|
-
type GroupLimitedMember = {
|
|
3625
|
-
/**
|
|
3626
|
-
* Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user.
|
|
3627
|
-
*/
|
|
3628
|
-
bannedAt?: Date | null;
|
|
3629
|
-
/**
|
|
3630
|
-
* Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user.
|
|
3631
|
-
*/
|
|
3632
|
-
createdAt?: Date | null;
|
|
3633
|
-
groupId?: GroupId;
|
|
3634
|
-
hasJoinedFromPurchase?: boolean;
|
|
3635
|
-
id?: GroupMemberId;
|
|
3636
|
-
/**
|
|
3637
|
-
* Whether the user is representing the group. This makes the group show up above the name tag in-game.
|
|
3638
|
-
*/
|
|
3639
|
-
isRepresenting?: boolean;
|
|
3640
|
-
isSubscribedToAnnouncements?: boolean;
|
|
3641
|
-
isSubscribedToEventAnnouncements?: boolean;
|
|
3642
|
-
joinedAt?: Date | null;
|
|
3643
|
-
lastPostReadAt?: Date | null;
|
|
3644
|
-
mRoleIds?: Array<GroupRoleId>;
|
|
3645
|
-
/**
|
|
3646
|
-
* Only visible via the /groups/:groupId/members endpoint, **not** when fetching a specific user.
|
|
3647
|
-
*/
|
|
3648
|
-
managerNotes?: string | null;
|
|
3649
|
-
membershipStatus?: GroupMemberStatus;
|
|
3650
|
-
roleIds?: Array<GroupRoleId>;
|
|
3651
|
-
userId?: UserId;
|
|
3652
|
-
visibility?: string;
|
|
3653
|
-
} | null;
|
|
3654
3690
|
/**
|
|
3655
3691
|
* GroupUserVisibility
|
|
3656
3692
|
*/
|
|
@@ -3697,10 +3733,6 @@ type GroupPermission = {
|
|
|
3697
3733
|
*/
|
|
3698
3734
|
name?: string;
|
|
3699
3735
|
};
|
|
3700
|
-
/**
|
|
3701
|
-
* NotificationID
|
|
3702
|
-
*/
|
|
3703
|
-
type NotificationId = string;
|
|
3704
3736
|
/**
|
|
3705
3737
|
* GroupPostVisibility
|
|
3706
3738
|
*/
|
|
@@ -4335,12 +4367,16 @@ type InviteRequest = {
|
|
|
4335
4367
|
instanceId: InstanceId;
|
|
4336
4368
|
messageSlot?: number;
|
|
4337
4369
|
};
|
|
4370
|
+
/**
|
|
4371
|
+
* JamID
|
|
4372
|
+
*/
|
|
4373
|
+
type JamId = string;
|
|
4338
4374
|
/**
|
|
4339
4375
|
* Jam
|
|
4340
4376
|
*/
|
|
4341
4377
|
type Jam = {
|
|
4342
4378
|
description: string;
|
|
4343
|
-
id:
|
|
4379
|
+
id: JamId;
|
|
4344
4380
|
isVisible: boolean;
|
|
4345
4381
|
moreInfo: string;
|
|
4346
4382
|
/**
|
|
@@ -4361,20 +4397,39 @@ type Jam = {
|
|
|
4361
4397
|
updated_at: Date;
|
|
4362
4398
|
};
|
|
4363
4399
|
/**
|
|
4364
|
-
*
|
|
4400
|
+
* JamSubmissionID
|
|
4401
|
+
*/
|
|
4402
|
+
type JamSubmissionId = string;
|
|
4403
|
+
/**
|
|
4404
|
+
* JamSubmission
|
|
4365
4405
|
*/
|
|
4366
|
-
type
|
|
4406
|
+
type JamSubmission = {
|
|
4367
4407
|
/**
|
|
4368
4408
|
* Either world ID or avatar ID
|
|
4369
4409
|
*/
|
|
4370
4410
|
contentId: string;
|
|
4371
4411
|
created_at: Date;
|
|
4372
4412
|
description: string;
|
|
4373
|
-
id:
|
|
4374
|
-
jamId:
|
|
4413
|
+
id: JamSubmissionId;
|
|
4414
|
+
jamId: JamId;
|
|
4375
4415
|
ratingScore?: number;
|
|
4376
4416
|
submitterId: UserId;
|
|
4377
4417
|
};
|
|
4418
|
+
/**
|
|
4419
|
+
* CreateJamSubmissionRequest
|
|
4420
|
+
*
|
|
4421
|
+
* Submit content for a Jam. Both content upload by submitter and jam submission itself must be made within the jam's designated times.
|
|
4422
|
+
*/
|
|
4423
|
+
type CreateJamSubmissionRequest = {
|
|
4424
|
+
/**
|
|
4425
|
+
* The id of the uploaded content (e.g., avatar, world) being submitted.
|
|
4426
|
+
*/
|
|
4427
|
+
contentId: string;
|
|
4428
|
+
/**
|
|
4429
|
+
* A description of the content being submitted.
|
|
4430
|
+
*/
|
|
4431
|
+
description: string;
|
|
4432
|
+
};
|
|
4378
4433
|
/**
|
|
4379
4434
|
* LicenseGroup
|
|
4380
4435
|
*/
|
|
@@ -4796,6 +4851,49 @@ type PropPublishStatus = {
|
|
|
4796
4851
|
type RequestInviteRequest = {
|
|
4797
4852
|
requestSlot?: number;
|
|
4798
4853
|
};
|
|
4854
|
+
/**
|
|
4855
|
+
* RewardRedemptionRequest
|
|
4856
|
+
*/
|
|
4857
|
+
type RewardRedemptionRequest = {
|
|
4858
|
+
code: string;
|
|
4859
|
+
};
|
|
4860
|
+
/**
|
|
4861
|
+
* RewardBadge
|
|
4862
|
+
*/
|
|
4863
|
+
type RewardBadge = {
|
|
4864
|
+
createdAt: Date;
|
|
4865
|
+
createdBy: UserId;
|
|
4866
|
+
description: string;
|
|
4867
|
+
fileName: string;
|
|
4868
|
+
hidden: boolean;
|
|
4869
|
+
id: BadgeId;
|
|
4870
|
+
imageUrl: string;
|
|
4871
|
+
isLocalizationEnabled: boolean;
|
|
4872
|
+
machineName?: string;
|
|
4873
|
+
name: string;
|
|
4874
|
+
type: string;
|
|
4875
|
+
updatedAt: Date;
|
|
4876
|
+
};
|
|
4877
|
+
/**
|
|
4878
|
+
* RewardRedemption
|
|
4879
|
+
*/
|
|
4880
|
+
type RewardRedemption = {
|
|
4881
|
+
data: {
|
|
4882
|
+
badge?: RewardBadge;
|
|
4883
|
+
item?: InventoryTemplate;
|
|
4884
|
+
};
|
|
4885
|
+
/**
|
|
4886
|
+
* One of `badge`, `item`, ...
|
|
4887
|
+
*/
|
|
4888
|
+
type: string;
|
|
4889
|
+
};
|
|
4890
|
+
/**
|
|
4891
|
+
* RewardRedemptionResult
|
|
4892
|
+
*/
|
|
4893
|
+
type RewardRedemptionResult = {
|
|
4894
|
+
redeemedRewards: Array<RewardRedemption>;
|
|
4895
|
+
redemptionCode: string;
|
|
4896
|
+
};
|
|
4799
4897
|
/**
|
|
4800
4898
|
* TiliaStatus
|
|
4801
4899
|
*/
|
|
@@ -4847,6 +4945,34 @@ type EconomyAccount = {
|
|
|
4847
4945
|
source: string;
|
|
4848
4946
|
userId: UserId;
|
|
4849
4947
|
} | null;
|
|
4948
|
+
/**
|
|
4949
|
+
* ProductPurchaseRecord
|
|
4950
|
+
*/
|
|
4951
|
+
type ProductPurchaseRecord = {
|
|
4952
|
+
amount: number;
|
|
4953
|
+
balance: number;
|
|
4954
|
+
date: Date;
|
|
4955
|
+
fromUserDisplayName: string;
|
|
4956
|
+
listingDisplayName: string;
|
|
4957
|
+
listingType: ProductListingType;
|
|
4958
|
+
/**
|
|
4959
|
+
* Where (first- or third-party) the purchase was made
|
|
4960
|
+
*/
|
|
4961
|
+
platform: string;
|
|
4962
|
+
purchaseId: ProductPurchaseId;
|
|
4963
|
+
reason: number;
|
|
4964
|
+
reasonLabel: string;
|
|
4965
|
+
transactionId: number;
|
|
4966
|
+
transactionLineId: number;
|
|
4967
|
+
};
|
|
4968
|
+
/**
|
|
4969
|
+
* ProductPurchaseHistory
|
|
4970
|
+
*/
|
|
4971
|
+
type ProductPurchaseHistory = {
|
|
4972
|
+
endDate: Date;
|
|
4973
|
+
startDate: Date;
|
|
4974
|
+
transactions: Array<ProductPurchaseRecord>;
|
|
4975
|
+
};
|
|
4850
4976
|
/**
|
|
4851
4977
|
* FriendStatus
|
|
4852
4978
|
*/
|
|
@@ -5175,6 +5301,21 @@ type UserSubscriptionEligible = {
|
|
|
5175
5301
|
subscriptionEligible: boolean;
|
|
5176
5302
|
subscriptionOnAltAccount: boolean;
|
|
5177
5303
|
};
|
|
5304
|
+
/**
|
|
5305
|
+
* TutorialKey
|
|
5306
|
+
*
|
|
5307
|
+
* The ID of a tutorial, in the format `{platform}:{tutorial}:{version}`. `undefined:undefined:v1` is used as a null-ish or sentinel value.
|
|
5308
|
+
*/
|
|
5309
|
+
type TutorialKey = string;
|
|
5310
|
+
/**
|
|
5311
|
+
* TutorialStatus
|
|
5312
|
+
*/
|
|
5313
|
+
type TutorialStatus = {
|
|
5314
|
+
completed: boolean;
|
|
5315
|
+
completedAnyTutorial: boolean;
|
|
5316
|
+
completedTutorials: Array<TutorialKey>;
|
|
5317
|
+
tutorialKey: TutorialKey;
|
|
5318
|
+
};
|
|
5178
5319
|
/**
|
|
5179
5320
|
* LimitedUnityPackage
|
|
5180
5321
|
*/
|
|
@@ -5303,6 +5444,15 @@ type UpdateWorldRequest = {
|
|
|
5303
5444
|
unityPackageUrl?: string;
|
|
5304
5445
|
unityVersion?: string;
|
|
5305
5446
|
};
|
|
5447
|
+
/**
|
|
5448
|
+
* ChangeWorldTagsRequest
|
|
5449
|
+
*/
|
|
5450
|
+
type ChangeWorldTagsRequest = {
|
|
5451
|
+
/**
|
|
5452
|
+
* The tags being added or removed.
|
|
5453
|
+
*/
|
|
5454
|
+
tags: Array<Tag>;
|
|
5455
|
+
};
|
|
5306
5456
|
/**
|
|
5307
5457
|
* WorldMetadata
|
|
5308
5458
|
*/
|
|
@@ -5329,7 +5479,7 @@ type AdminAssetBundleId = string;
|
|
|
5329
5479
|
/**
|
|
5330
5480
|
* Must be a valid file ID.
|
|
5331
5481
|
*/
|
|
5332
|
-
type FileId2 =
|
|
5482
|
+
type FileId2 = FileId;
|
|
5333
5483
|
/**
|
|
5334
5484
|
* Version ID of the asset.
|
|
5335
5485
|
*/
|
|
@@ -5341,7 +5491,7 @@ type AssetReviewId = string;
|
|
|
5341
5491
|
/**
|
|
5342
5492
|
* Target user for which to verify email.
|
|
5343
5493
|
*/
|
|
5344
|
-
type ConfirmEmailUserId =
|
|
5494
|
+
type ConfirmEmailUserId = UserId;
|
|
5345
5495
|
/**
|
|
5346
5496
|
* Token to verify email.
|
|
5347
5497
|
*/
|
|
@@ -5361,7 +5511,7 @@ type UsernameQuery = string;
|
|
|
5361
5511
|
/**
|
|
5362
5512
|
* Exclude by UserID.
|
|
5363
5513
|
*/
|
|
5364
|
-
type ExcludeUserId =
|
|
5514
|
+
type ExcludeUserId = UserId;
|
|
5365
5515
|
/**
|
|
5366
5516
|
* Must be a valid avatar ID.
|
|
5367
5517
|
*/
|
|
@@ -5385,15 +5535,15 @@ type Offline = boolean;
|
|
|
5385
5535
|
/**
|
|
5386
5536
|
* Must be a valid user ID.
|
|
5387
5537
|
*/
|
|
5388
|
-
type UserId2 =
|
|
5538
|
+
type UserId2 = UserId;
|
|
5389
5539
|
/**
|
|
5390
5540
|
* Must be a valid notification ID.
|
|
5391
5541
|
*/
|
|
5392
|
-
type NotificationId2 =
|
|
5542
|
+
type NotificationId2 = NotificationId;
|
|
5393
5543
|
/**
|
|
5394
5544
|
* Filter by UserID.
|
|
5395
5545
|
*/
|
|
5396
|
-
type UserIdQuery =
|
|
5546
|
+
type UserIdQuery = UserId;
|
|
5397
5547
|
/**
|
|
5398
5548
|
* Token to verify login attempt.
|
|
5399
5549
|
*/
|
|
@@ -5445,7 +5595,7 @@ type Search = string;
|
|
|
5445
5595
|
/**
|
|
5446
5596
|
* Target user to see information on, admin-only.
|
|
5447
5597
|
*/
|
|
5448
|
-
type UserIdAdmin =
|
|
5598
|
+
type UserIdAdmin = UserId;
|
|
5449
5599
|
/**
|
|
5450
5600
|
* Must be a valid avatar ID.
|
|
5451
5601
|
*/
|
|
@@ -5505,11 +5655,11 @@ type UtcOffset = number;
|
|
|
5505
5655
|
/**
|
|
5506
5656
|
* Must be a valid group ID.
|
|
5507
5657
|
*/
|
|
5508
|
-
type GroupId2 =
|
|
5658
|
+
type GroupId2 = GroupId;
|
|
5509
5659
|
/**
|
|
5510
5660
|
* Must be a valid calendar ID.
|
|
5511
5661
|
*/
|
|
5512
|
-
type CalendarId2 =
|
|
5662
|
+
type CalendarId2 = CalendarId;
|
|
5513
5663
|
/**
|
|
5514
5664
|
* Specifies which `variant` of the site. Public is the end-user site, while `internal` is the staff-only site with special pages for moderation and management.
|
|
5515
5665
|
*/
|
|
@@ -5531,6 +5681,10 @@ type SortProductPurchase = SortOptionProductPurchase;
|
|
|
5531
5681
|
* Result ordering
|
|
5532
5682
|
*/
|
|
5533
5683
|
type OrderShort = OrderOptionShort;
|
|
5684
|
+
/**
|
|
5685
|
+
* Must be a valid purchase ID.
|
|
5686
|
+
*/
|
|
5687
|
+
type ProductPurchaseId2 = ProductPurchaseId;
|
|
5534
5688
|
type StoreId2 = StoreId;
|
|
5535
5689
|
/**
|
|
5536
5690
|
* Listings fields will be populated.
|
|
@@ -5544,15 +5698,15 @@ type StoreView2 = StoreView;
|
|
|
5544
5698
|
/**
|
|
5545
5699
|
* The type of group to fetch, must be a valid FavoriteType.
|
|
5546
5700
|
*/
|
|
5547
|
-
type FavoriteGroupType =
|
|
5701
|
+
type FavoriteGroupType = FavoriteType;
|
|
5548
5702
|
/**
|
|
5549
5703
|
* The name of the group to fetch, must be a name of a FavoriteGroup.
|
|
5550
5704
|
*/
|
|
5551
|
-
type FavoriteGroupName =
|
|
5705
|
+
type FavoriteGroupName = FavoriteName;
|
|
5552
5706
|
/**
|
|
5553
5707
|
* Must be a valid favorite ID.
|
|
5554
5708
|
*/
|
|
5555
|
-
type FavoriteId2 =
|
|
5709
|
+
type FavoriteId2 = FavoriteId;
|
|
5556
5710
|
/**
|
|
5557
5711
|
* Type of file.
|
|
5558
5712
|
*/
|
|
@@ -5580,11 +5734,11 @@ type TargetIds = string;
|
|
|
5580
5734
|
/**
|
|
5581
5735
|
* Must be a valid group gallery ID.
|
|
5582
5736
|
*/
|
|
5583
|
-
type GroupGalleryId2 =
|
|
5737
|
+
type GroupGalleryId2 = GroupGalleryId;
|
|
5584
5738
|
/**
|
|
5585
5739
|
* Must be a valid group gallery image ID.
|
|
5586
5740
|
*/
|
|
5587
|
-
type GroupGalleryImageId2 =
|
|
5741
|
+
type GroupGalleryImageId2 = GroupGalleryImageId;
|
|
5588
5742
|
/**
|
|
5589
5743
|
* The sort order of Group Member results
|
|
5590
5744
|
*/
|
|
@@ -5596,7 +5750,7 @@ type GroupMemberRoleFilter = GroupRoleId;
|
|
|
5596
5750
|
/**
|
|
5597
5751
|
* Must be a valid group role ID.
|
|
5598
5752
|
*/
|
|
5599
|
-
type GroupRoleId2 =
|
|
5753
|
+
type GroupRoleId2 = GroupRoleId;
|
|
5600
5754
|
/**
|
|
5601
5755
|
* Tags to include (comma-separated). All of the tags needs to be present.
|
|
5602
5756
|
*/
|
|
@@ -5608,11 +5762,11 @@ type Include = Tag;
|
|
|
5608
5762
|
/**
|
|
5609
5763
|
* Must be a valid world ID.
|
|
5610
5764
|
*/
|
|
5611
|
-
type WorldId2 =
|
|
5765
|
+
type WorldId2 = WorldId;
|
|
5612
5766
|
/**
|
|
5613
5767
|
* Must be a valid instance ID.
|
|
5614
5768
|
*/
|
|
5615
|
-
type InstanceId2 =
|
|
5769
|
+
type InstanceId2 = InstanceId;
|
|
5616
5770
|
/**
|
|
5617
5771
|
* The UserID of the owner of the inventory; defaults to the currently authenticated user.
|
|
5618
5772
|
*/
|
|
@@ -5668,27 +5822,39 @@ type InventorySpawnItemId = InventoryItemId;
|
|
|
5668
5822
|
/**
|
|
5669
5823
|
* Must be a valid inventory template ID.
|
|
5670
5824
|
*/
|
|
5671
|
-
type InventoryTemplateId2 =
|
|
5825
|
+
type InventoryTemplateId2 = InventoryTemplateId;
|
|
5672
5826
|
/**
|
|
5673
5827
|
* Must be a valid inventory item ID.
|
|
5674
5828
|
*/
|
|
5675
|
-
type InventoryItemId2 =
|
|
5829
|
+
type InventoryItemId2 = InventoryItemId;
|
|
5676
5830
|
/**
|
|
5677
5831
|
* Selector for inventory slot management.
|
|
5678
5832
|
*/
|
|
5679
5833
|
type InventoryItemSlotAsId = InventoryEquipSlot;
|
|
5680
5834
|
/**
|
|
5681
|
-
* Must be a valid
|
|
5835
|
+
* Must be a valid jam ID.
|
|
5682
5836
|
*/
|
|
5683
|
-
type
|
|
5837
|
+
type JamId2 = JamId;
|
|
5838
|
+
/**
|
|
5839
|
+
* Filter for particular content submitted, e.g., a groupId, userId, avatarId, etc.
|
|
5840
|
+
*/
|
|
5841
|
+
type ContentId = string;
|
|
5842
|
+
/**
|
|
5843
|
+
* Must be a valid user ID.
|
|
5844
|
+
*/
|
|
5845
|
+
type SubmitterId = UserId;
|
|
5846
|
+
/**
|
|
5847
|
+
* Must be a valid jam submission ID.
|
|
5848
|
+
*/
|
|
5849
|
+
type JamSubmissionId2 = JamSubmissionId;
|
|
5684
5850
|
/**
|
|
5685
5851
|
* Must be a valid license group ID.
|
|
5686
5852
|
*/
|
|
5687
|
-
type LicenseGroupId2 =
|
|
5853
|
+
type LicenseGroupId2 = LicenseGroupId;
|
|
5688
5854
|
/**
|
|
5689
5855
|
* Must be a valid product ID.
|
|
5690
5856
|
*/
|
|
5691
|
-
type ProductId2 =
|
|
5857
|
+
type ProductId2 = ProductId;
|
|
5692
5858
|
/**
|
|
5693
5859
|
* Populates some fields and changes types of others for certain objects.
|
|
5694
5860
|
*/
|
|
@@ -5724,11 +5890,11 @@ type Limit = number;
|
|
|
5724
5890
|
/**
|
|
5725
5891
|
* Must be a valid permission ID.
|
|
5726
5892
|
*/
|
|
5727
|
-
type PermissionId2 =
|
|
5893
|
+
type PermissionId2 = PermissionId;
|
|
5728
5894
|
/**
|
|
5729
5895
|
* Print ID.
|
|
5730
5896
|
*/
|
|
5731
|
-
type PrintId2 =
|
|
5897
|
+
type PrintId2 = PrintId;
|
|
5732
5898
|
/**
|
|
5733
5899
|
* Must be a valid user ID.
|
|
5734
5900
|
*/
|
|
@@ -5736,24 +5902,36 @@ type AuthorId = UserId;
|
|
|
5736
5902
|
/**
|
|
5737
5903
|
* Prop ID.
|
|
5738
5904
|
*/
|
|
5739
|
-
type PropId2 =
|
|
5905
|
+
type PropId2 = PropId;
|
|
5906
|
+
/**
|
|
5907
|
+
* The start date of the search range.
|
|
5908
|
+
*/
|
|
5909
|
+
type DateMin = Date;
|
|
5910
|
+
/**
|
|
5911
|
+
* The end date of the search range.
|
|
5912
|
+
*/
|
|
5913
|
+
type DateMax = Date;
|
|
5914
|
+
/**
|
|
5915
|
+
* Must be a valid user ID.
|
|
5916
|
+
*/
|
|
5917
|
+
type FromUserId = UserId;
|
|
5918
|
+
/**
|
|
5919
|
+
* Must be a valid user ID.
|
|
5920
|
+
*/
|
|
5921
|
+
type ToUserId = UserId;
|
|
5740
5922
|
/**
|
|
5741
5923
|
* Must be a valid group ID.
|
|
5742
5924
|
*/
|
|
5743
|
-
type GroupIdFilter =
|
|
5925
|
+
type GroupIdFilter = GroupId;
|
|
5744
5926
|
/**
|
|
5745
5927
|
* Must be a valid user note ID.
|
|
5746
5928
|
*/
|
|
5747
|
-
type UserNoteId2 =
|
|
5929
|
+
type UserNoteId2 = UserNoteId;
|
|
5748
5930
|
/**
|
|
5749
5931
|
* Must be a valid badge ID.
|
|
5750
5932
|
*/
|
|
5751
|
-
type BadgeId2 =
|
|
5933
|
+
type BadgeId2 = BadgeId;
|
|
5752
5934
|
type SubscriptionId = string;
|
|
5753
|
-
/**
|
|
5754
|
-
* Filter for users' previously submitted feedback, e.g., a groupId, userId, avatarId, etc.
|
|
5755
|
-
*/
|
|
5756
|
-
type ContentId = boolean;
|
|
5757
5935
|
/**
|
|
5758
5936
|
* The Steam ID of the user.
|
|
5759
5937
|
*/
|
|
@@ -5767,6 +5945,10 @@ type Fuzzy = boolean;
|
|
|
5767
5945
|
* Only search for avatar worlds.
|
|
5768
5946
|
*/
|
|
5769
5947
|
type AvatarSpecific = boolean;
|
|
5948
|
+
/**
|
|
5949
|
+
* A platform the world supports.
|
|
5950
|
+
*/
|
|
5951
|
+
type PublishedPlatform = Platform;
|
|
5770
5952
|
type GetSteamTransactions = {
|
|
5771
5953
|
body?: never;
|
|
5772
5954
|
path?: never;
|
|
@@ -5889,7 +6071,7 @@ type GetFileAnalysis = {
|
|
|
5889
6071
|
/**
|
|
5890
6072
|
* Must be a valid file ID.
|
|
5891
6073
|
*/
|
|
5892
|
-
fileId:
|
|
6074
|
+
fileId: FileId;
|
|
5893
6075
|
/**
|
|
5894
6076
|
* Version ID of the asset.
|
|
5895
6077
|
*/
|
|
@@ -5922,7 +6104,7 @@ type GetFileAnalysisSecurity = {
|
|
|
5922
6104
|
/**
|
|
5923
6105
|
* Must be a valid file ID.
|
|
5924
6106
|
*/
|
|
5925
|
-
fileId:
|
|
6107
|
+
fileId: FileId;
|
|
5926
6108
|
/**
|
|
5927
6109
|
* Version ID of the asset.
|
|
5928
6110
|
*/
|
|
@@ -5955,7 +6137,7 @@ type GetFileAnalysisStandard = {
|
|
|
5955
6137
|
/**
|
|
5956
6138
|
* Must be a valid file ID.
|
|
5957
6139
|
*/
|
|
5958
|
-
fileId:
|
|
6140
|
+
fileId: FileId;
|
|
5959
6141
|
/**
|
|
5960
6142
|
* Version ID of the asset.
|
|
5961
6143
|
*/
|
|
@@ -6033,7 +6215,7 @@ type ConfirmEmail = {
|
|
|
6033
6215
|
/**
|
|
6034
6216
|
* Target user for which to verify email.
|
|
6035
6217
|
*/
|
|
6036
|
-
id:
|
|
6218
|
+
id: UserId;
|
|
6037
6219
|
/**
|
|
6038
6220
|
* Token to verify email.
|
|
6039
6221
|
*/
|
|
@@ -6060,7 +6242,7 @@ type CheckUserExists = {
|
|
|
6060
6242
|
/**
|
|
6061
6243
|
* Exclude by UserID.
|
|
6062
6244
|
*/
|
|
6063
|
-
excludeUserId?:
|
|
6245
|
+
excludeUserId?: UserId;
|
|
6064
6246
|
};
|
|
6065
6247
|
url: '/auth/exists';
|
|
6066
6248
|
};
|
|
@@ -6406,7 +6588,7 @@ type Unfriend = {
|
|
|
6406
6588
|
/**
|
|
6407
6589
|
* Must be a valid user ID.
|
|
6408
6590
|
*/
|
|
6409
|
-
userId:
|
|
6591
|
+
userId: UserId;
|
|
6410
6592
|
};
|
|
6411
6593
|
query?: never;
|
|
6412
6594
|
url: '/auth/user/friends/{userId}';
|
|
@@ -6504,7 +6686,7 @@ type GetNotification = {
|
|
|
6504
6686
|
/**
|
|
6505
6687
|
* Must be a valid notification ID.
|
|
6506
6688
|
*/
|
|
6507
|
-
notificationId:
|
|
6689
|
+
notificationId: NotificationId;
|
|
6508
6690
|
};
|
|
6509
6691
|
query?: never;
|
|
6510
6692
|
url: '/auth/user/notifications/{notificationId}';
|
|
@@ -6533,7 +6715,7 @@ type AcceptFriendRequest = {
|
|
|
6533
6715
|
/**
|
|
6534
6716
|
* Must be a valid notification ID.
|
|
6535
6717
|
*/
|
|
6536
|
-
notificationId:
|
|
6718
|
+
notificationId: NotificationId;
|
|
6537
6719
|
};
|
|
6538
6720
|
query?: never;
|
|
6539
6721
|
url: '/auth/user/notifications/{notificationId}/accept';
|
|
@@ -6562,7 +6744,7 @@ type DeleteNotification = {
|
|
|
6562
6744
|
/**
|
|
6563
6745
|
* Must be a valid notification ID.
|
|
6564
6746
|
*/
|
|
6565
|
-
notificationId:
|
|
6747
|
+
notificationId: NotificationId;
|
|
6566
6748
|
};
|
|
6567
6749
|
query?: never;
|
|
6568
6750
|
url: '/auth/user/notifications/{notificationId}/hide';
|
|
@@ -6587,7 +6769,7 @@ type MarkNotificationAsRead = {
|
|
|
6587
6769
|
/**
|
|
6588
6770
|
* Must be a valid notification ID.
|
|
6589
6771
|
*/
|
|
6590
|
-
notificationId:
|
|
6772
|
+
notificationId: NotificationId;
|
|
6591
6773
|
};
|
|
6592
6774
|
query?: never;
|
|
6593
6775
|
url: '/auth/user/notifications/{notificationId}/see';
|
|
@@ -6762,7 +6944,7 @@ type VerifyLoginPlace = {
|
|
|
6762
6944
|
/**
|
|
6763
6945
|
* Filter by UserID.
|
|
6764
6946
|
*/
|
|
6765
|
-
userId?:
|
|
6947
|
+
userId?: UserId;
|
|
6766
6948
|
/**
|
|
6767
6949
|
* Token to verify login attempt.
|
|
6768
6950
|
*/
|
|
@@ -6802,7 +6984,7 @@ type SearchAvatars = {
|
|
|
6802
6984
|
/**
|
|
6803
6985
|
* Filter by UserID.
|
|
6804
6986
|
*/
|
|
6805
|
-
userId?:
|
|
6987
|
+
userId?: UserId;
|
|
6806
6988
|
/**
|
|
6807
6989
|
* The number of objects to return.
|
|
6808
6990
|
*/
|
|
@@ -6939,7 +7121,7 @@ type GetFavoritedAvatars = {
|
|
|
6939
7121
|
/**
|
|
6940
7122
|
* Target user to see information on, admin-only.
|
|
6941
7123
|
*/
|
|
6942
|
-
userId?:
|
|
7124
|
+
userId?: UserId;
|
|
6943
7125
|
};
|
|
6944
7126
|
url: '/avatars/favorites';
|
|
6945
7127
|
};
|
|
@@ -7427,7 +7609,7 @@ type GetGroupCalendarEvents = {
|
|
|
7427
7609
|
/**
|
|
7428
7610
|
* Must be a valid group ID.
|
|
7429
7611
|
*/
|
|
7430
|
-
groupId:
|
|
7612
|
+
groupId: GroupId;
|
|
7431
7613
|
};
|
|
7432
7614
|
query?: {
|
|
7433
7615
|
/**
|
|
@@ -7465,7 +7647,7 @@ type CreateGroupCalendarEvent = {
|
|
|
7465
7647
|
/**
|
|
7466
7648
|
* Must be a valid group ID.
|
|
7467
7649
|
*/
|
|
7468
|
-
groupId:
|
|
7650
|
+
groupId: GroupId;
|
|
7469
7651
|
};
|
|
7470
7652
|
query?: never;
|
|
7471
7653
|
url: '/calendar/{groupId}/event';
|
|
@@ -7498,7 +7680,7 @@ type GetGroupNextCalendarEvent = {
|
|
|
7498
7680
|
/**
|
|
7499
7681
|
* Must be a valid group ID.
|
|
7500
7682
|
*/
|
|
7501
|
-
groupId:
|
|
7683
|
+
groupId: GroupId;
|
|
7502
7684
|
};
|
|
7503
7685
|
query?: never;
|
|
7504
7686
|
url: '/calendar/{groupId}/next';
|
|
@@ -7527,11 +7709,11 @@ type DeleteGroupCalendarEvent = {
|
|
|
7527
7709
|
/**
|
|
7528
7710
|
* Must be a valid group ID.
|
|
7529
7711
|
*/
|
|
7530
|
-
groupId:
|
|
7712
|
+
groupId: GroupId;
|
|
7531
7713
|
/**
|
|
7532
7714
|
* Must be a valid calendar ID.
|
|
7533
7715
|
*/
|
|
7534
|
-
calendarId:
|
|
7716
|
+
calendarId: CalendarId;
|
|
7535
7717
|
};
|
|
7536
7718
|
query?: never;
|
|
7537
7719
|
url: '/calendar/{groupId}/{calendarId}';
|
|
@@ -7560,11 +7742,11 @@ type GetGroupCalendarEvent = {
|
|
|
7560
7742
|
/**
|
|
7561
7743
|
* Must be a valid group ID.
|
|
7562
7744
|
*/
|
|
7563
|
-
groupId:
|
|
7745
|
+
groupId: GroupId;
|
|
7564
7746
|
/**
|
|
7565
7747
|
* Must be a valid calendar ID.
|
|
7566
7748
|
*/
|
|
7567
|
-
calendarId:
|
|
7749
|
+
calendarId: CalendarId;
|
|
7568
7750
|
};
|
|
7569
7751
|
query?: never;
|
|
7570
7752
|
url: '/calendar/{groupId}/{calendarId}';
|
|
@@ -7589,11 +7771,11 @@ type GetGroupCalendarEventIcs = {
|
|
|
7589
7771
|
/**
|
|
7590
7772
|
* Must be a valid group ID.
|
|
7591
7773
|
*/
|
|
7592
|
-
groupId:
|
|
7774
|
+
groupId: GroupId;
|
|
7593
7775
|
/**
|
|
7594
7776
|
* Must be a valid calendar ID.
|
|
7595
7777
|
*/
|
|
7596
|
-
calendarId:
|
|
7778
|
+
calendarId: CalendarId;
|
|
7597
7779
|
};
|
|
7598
7780
|
query?: never;
|
|
7599
7781
|
url: '/calendar/{groupId}/{calendarId}.ics';
|
|
@@ -7622,11 +7804,11 @@ type UpdateGroupCalendarEvent = {
|
|
|
7622
7804
|
/**
|
|
7623
7805
|
* Must be a valid group ID.
|
|
7624
7806
|
*/
|
|
7625
|
-
groupId:
|
|
7807
|
+
groupId: GroupId;
|
|
7626
7808
|
/**
|
|
7627
7809
|
* Must be a valid calendar ID.
|
|
7628
7810
|
*/
|
|
7629
|
-
calendarId:
|
|
7811
|
+
calendarId: CalendarId;
|
|
7630
7812
|
};
|
|
7631
7813
|
query?: never;
|
|
7632
7814
|
url: '/calendar/{groupId}/{calendarId}/event';
|
|
@@ -7651,11 +7833,11 @@ type FollowGroupCalendarEvent = {
|
|
|
7651
7833
|
/**
|
|
7652
7834
|
* Must be a valid group ID.
|
|
7653
7835
|
*/
|
|
7654
|
-
groupId:
|
|
7836
|
+
groupId: GroupId;
|
|
7655
7837
|
/**
|
|
7656
7838
|
* Must be a valid calendar ID.
|
|
7657
7839
|
*/
|
|
7658
|
-
calendarId:
|
|
7840
|
+
calendarId: CalendarId;
|
|
7659
7841
|
};
|
|
7660
7842
|
query?: never;
|
|
7661
7843
|
url: '/calendar/{groupId}/{calendarId}/follow';
|
|
@@ -7736,6 +7918,26 @@ type GetActiveLicensesResponses = {
|
|
|
7736
7918
|
200: Array<License>;
|
|
7737
7919
|
};
|
|
7738
7920
|
type GetActiveLicensesResponse = GetActiveLicensesResponses[keyof GetActiveLicensesResponses];
|
|
7921
|
+
type GetEarningsMetrics = {
|
|
7922
|
+
body?: never;
|
|
7923
|
+
path?: never;
|
|
7924
|
+
query?: never;
|
|
7925
|
+
url: '/economy/metrics/earnings';
|
|
7926
|
+
};
|
|
7927
|
+
type GetEarningsMetricsErrors = {
|
|
7928
|
+
/**
|
|
7929
|
+
* Error response due to missing auth cookie.
|
|
7930
|
+
*/
|
|
7931
|
+
401: _Error;
|
|
7932
|
+
};
|
|
7933
|
+
type GetEarningsMetricsError = GetEarningsMetricsErrors[keyof GetEarningsMetricsErrors];
|
|
7934
|
+
type GetEarningsMetricsResponses = {
|
|
7935
|
+
/**
|
|
7936
|
+
* Returns a single EarningsMetrics object.
|
|
7937
|
+
*/
|
|
7938
|
+
200: EarningsMetrics;
|
|
7939
|
+
};
|
|
7940
|
+
type GetEarningsMetricsResponse = GetEarningsMetricsResponses[keyof GetEarningsMetricsResponses];
|
|
7739
7941
|
type PurchaseProductListing = {
|
|
7740
7942
|
body?: PurchaseProductListingRequest;
|
|
7741
7943
|
path?: never;
|
|
@@ -7798,6 +8000,78 @@ type GetProductPurchasesResponses = {
|
|
|
7798
8000
|
200: Array<ProductPurchase>;
|
|
7799
8001
|
};
|
|
7800
8002
|
type GetProductPurchasesResponse = GetProductPurchasesResponses[keyof GetProductPurchasesResponses];
|
|
8003
|
+
type GetProductPurchase = {
|
|
8004
|
+
body?: never;
|
|
8005
|
+
path: {
|
|
8006
|
+
/**
|
|
8007
|
+
* Must be a valid purchase ID.
|
|
8008
|
+
*/
|
|
8009
|
+
productPurchaseId: ProductPurchaseId;
|
|
8010
|
+
};
|
|
8011
|
+
query?: never;
|
|
8012
|
+
url: '/economy/purchases/{productPurchaseId}';
|
|
8013
|
+
};
|
|
8014
|
+
type GetProductPurchaseErrors = {
|
|
8015
|
+
/**
|
|
8016
|
+
* Error response due to missing auth cookie.
|
|
8017
|
+
*/
|
|
8018
|
+
401: _Error;
|
|
8019
|
+
};
|
|
8020
|
+
type GetProductPurchaseError = GetProductPurchaseErrors[keyof GetProductPurchaseErrors];
|
|
8021
|
+
type GetProductPurchaseResponses = {
|
|
8022
|
+
/**
|
|
8023
|
+
* Returns a single ProductPurchase object.
|
|
8024
|
+
*/
|
|
8025
|
+
200: ProductPurchase;
|
|
8026
|
+
};
|
|
8027
|
+
type GetProductPurchaseResponse = GetProductPurchaseResponses[keyof GetProductPurchaseResponses];
|
|
8028
|
+
type GetProductPurchaseStacks = {
|
|
8029
|
+
body?: never;
|
|
8030
|
+
path: {
|
|
8031
|
+
/**
|
|
8032
|
+
* Must be a valid purchase ID.
|
|
8033
|
+
*/
|
|
8034
|
+
productPurchaseId: ProductPurchaseId;
|
|
8035
|
+
};
|
|
8036
|
+
query?: never;
|
|
8037
|
+
url: '/economy/purchases/{productPurchaseId}/stacks';
|
|
8038
|
+
};
|
|
8039
|
+
type GetProductPurchaseStacksErrors = {
|
|
8040
|
+
/**
|
|
8041
|
+
* Error response due to missing auth cookie.
|
|
8042
|
+
*/
|
|
8043
|
+
401: _Error;
|
|
8044
|
+
};
|
|
8045
|
+
type GetProductPurchaseStacksError = GetProductPurchaseStacksErrors[keyof GetProductPurchaseStacksErrors];
|
|
8046
|
+
type GetProductPurchaseStacksResponses = {
|
|
8047
|
+
/**
|
|
8048
|
+
* Returns a list of stacks for a product purchase.
|
|
8049
|
+
*/
|
|
8050
|
+
200: Array<{
|
|
8051
|
+
[key: string]: unknown;
|
|
8052
|
+
}>;
|
|
8053
|
+
};
|
|
8054
|
+
type GetProductPurchaseStacksResponse = GetProductPurchaseStacksResponses[keyof GetProductPurchaseStacksResponses];
|
|
8055
|
+
type GetSellerEligibility = {
|
|
8056
|
+
body?: never;
|
|
8057
|
+
path?: never;
|
|
8058
|
+
query?: never;
|
|
8059
|
+
url: '/economy/seller/eligibility';
|
|
8060
|
+
};
|
|
8061
|
+
type GetSellerEligibilityErrors = {
|
|
8062
|
+
/**
|
|
8063
|
+
* Error response due to missing auth cookie.
|
|
8064
|
+
*/
|
|
8065
|
+
401: _Error;
|
|
8066
|
+
};
|
|
8067
|
+
type GetSellerEligibilityError = GetSellerEligibilityErrors[keyof GetSellerEligibilityErrors];
|
|
8068
|
+
type GetSellerEligibilityResponses = {
|
|
8069
|
+
/**
|
|
8070
|
+
* Returns a single SellerEligibility object.
|
|
8071
|
+
*/
|
|
8072
|
+
200: SellerEligibility;
|
|
8073
|
+
};
|
|
8074
|
+
type GetSellerEligibilityResponse = GetSellerEligibilityResponses[keyof GetSellerEligibilityResponses];
|
|
7801
8075
|
type GetStore = {
|
|
7802
8076
|
body?: never;
|
|
7803
8077
|
path?: never;
|
|
@@ -7861,15 +8135,15 @@ type ClearFavoriteGroup = {
|
|
|
7861
8135
|
/**
|
|
7862
8136
|
* The type of group to fetch, must be a valid FavoriteType.
|
|
7863
8137
|
*/
|
|
7864
|
-
favoriteGroupType:
|
|
8138
|
+
favoriteGroupType: FavoriteType;
|
|
7865
8139
|
/**
|
|
7866
8140
|
* The name of the group to fetch, must be a name of a FavoriteGroup.
|
|
7867
8141
|
*/
|
|
7868
|
-
favoriteGroupName:
|
|
8142
|
+
favoriteGroupName: FavoriteName;
|
|
7869
8143
|
/**
|
|
7870
8144
|
* Must be a valid user ID.
|
|
7871
8145
|
*/
|
|
7872
|
-
userId:
|
|
8146
|
+
userId: UserId;
|
|
7873
8147
|
};
|
|
7874
8148
|
query?: never;
|
|
7875
8149
|
url: '/favorite/group/{favoriteGroupType}/{favoriteGroupName}/{userId}';
|
|
@@ -7887,15 +8161,15 @@ type GetFavoriteGroup = {
|
|
|
7887
8161
|
/**
|
|
7888
8162
|
* The type of group to fetch, must be a valid FavoriteType.
|
|
7889
8163
|
*/
|
|
7890
|
-
favoriteGroupType:
|
|
8164
|
+
favoriteGroupType: FavoriteType;
|
|
7891
8165
|
/**
|
|
7892
8166
|
* The name of the group to fetch, must be a name of a FavoriteGroup.
|
|
7893
8167
|
*/
|
|
7894
|
-
favoriteGroupName:
|
|
8168
|
+
favoriteGroupName: FavoriteName;
|
|
7895
8169
|
/**
|
|
7896
8170
|
* Must be a valid user ID.
|
|
7897
8171
|
*/
|
|
7898
|
-
userId:
|
|
8172
|
+
userId: UserId;
|
|
7899
8173
|
};
|
|
7900
8174
|
query?: never;
|
|
7901
8175
|
url: '/favorite/group/{favoriteGroupType}/{favoriteGroupName}/{userId}';
|
|
@@ -7913,15 +8187,15 @@ type UpdateFavoriteGroup = {
|
|
|
7913
8187
|
/**
|
|
7914
8188
|
* The type of group to fetch, must be a valid FavoriteType.
|
|
7915
8189
|
*/
|
|
7916
|
-
favoriteGroupType:
|
|
8190
|
+
favoriteGroupType: FavoriteType;
|
|
7917
8191
|
/**
|
|
7918
8192
|
* The name of the group to fetch, must be a name of a FavoriteGroup.
|
|
7919
8193
|
*/
|
|
7920
|
-
favoriteGroupName:
|
|
8194
|
+
favoriteGroupName: FavoriteName;
|
|
7921
8195
|
/**
|
|
7922
8196
|
* Must be a valid user ID.
|
|
7923
8197
|
*/
|
|
7924
|
-
userId:
|
|
8198
|
+
userId: UserId;
|
|
7925
8199
|
};
|
|
7926
8200
|
query?: never;
|
|
7927
8201
|
url: '/favorite/group/{favoriteGroupType}/{favoriteGroupName}/{userId}';
|
|
@@ -7947,7 +8221,7 @@ type GetFavoriteGroups = {
|
|
|
7947
8221
|
/**
|
|
7948
8222
|
* Target user to see information on, admin-only.
|
|
7949
8223
|
*/
|
|
7950
|
-
userId?:
|
|
8224
|
+
userId?: UserId;
|
|
7951
8225
|
/**
|
|
7952
8226
|
* The owner of whoms favorite groups to return. Must be a UserID.
|
|
7953
8227
|
*/
|
|
@@ -8036,7 +8310,7 @@ type RemoveFavorite = {
|
|
|
8036
8310
|
/**
|
|
8037
8311
|
* Must be a valid favorite ID.
|
|
8038
8312
|
*/
|
|
8039
|
-
favoriteId:
|
|
8313
|
+
favoriteId: FavoriteId;
|
|
8040
8314
|
};
|
|
8041
8315
|
query?: never;
|
|
8042
8316
|
url: '/favorites/{favoriteId}';
|
|
@@ -8108,7 +8382,7 @@ type DeleteFile = {
|
|
|
8108
8382
|
/**
|
|
8109
8383
|
* Must be a valid file ID.
|
|
8110
8384
|
*/
|
|
8111
|
-
fileId:
|
|
8385
|
+
fileId: FileId;
|
|
8112
8386
|
};
|
|
8113
8387
|
query?: never;
|
|
8114
8388
|
url: '/file/{fileId}';
|
|
@@ -8133,7 +8407,7 @@ type GetFile = {
|
|
|
8133
8407
|
/**
|
|
8134
8408
|
* Must be a valid file ID.
|
|
8135
8409
|
*/
|
|
8136
|
-
fileId:
|
|
8410
|
+
fileId: FileId;
|
|
8137
8411
|
};
|
|
8138
8412
|
query?: never;
|
|
8139
8413
|
url: '/file/{fileId}';
|
|
@@ -8158,7 +8432,7 @@ type CreateFileVersion = {
|
|
|
8158
8432
|
/**
|
|
8159
8433
|
* Must be a valid file ID.
|
|
8160
8434
|
*/
|
|
8161
|
-
fileId:
|
|
8435
|
+
fileId: FileId;
|
|
8162
8436
|
};
|
|
8163
8437
|
query?: never;
|
|
8164
8438
|
url: '/file/{fileId}';
|
|
@@ -8176,7 +8450,7 @@ type DeleteFileVersion = {
|
|
|
8176
8450
|
/**
|
|
8177
8451
|
* Must be a valid file ID.
|
|
8178
8452
|
*/
|
|
8179
|
-
fileId:
|
|
8453
|
+
fileId: FileId;
|
|
8180
8454
|
/**
|
|
8181
8455
|
* Version ID of the asset.
|
|
8182
8456
|
*/
|
|
@@ -8209,7 +8483,7 @@ type DownloadFileVersion = {
|
|
|
8209
8483
|
/**
|
|
8210
8484
|
* Must be a valid file ID.
|
|
8211
8485
|
*/
|
|
8212
|
-
fileId:
|
|
8486
|
+
fileId: FileId;
|
|
8213
8487
|
/**
|
|
8214
8488
|
* Version ID of the asset.
|
|
8215
8489
|
*/
|
|
@@ -8244,7 +8518,7 @@ type FinishFileDataUpload = {
|
|
|
8244
8518
|
/**
|
|
8245
8519
|
* Must be a valid file ID.
|
|
8246
8520
|
*/
|
|
8247
|
-
fileId:
|
|
8521
|
+
fileId: FileId;
|
|
8248
8522
|
/**
|
|
8249
8523
|
* Version ID of the asset.
|
|
8250
8524
|
*/
|
|
@@ -8270,7 +8544,7 @@ type StartFileDataUpload = {
|
|
|
8270
8544
|
/**
|
|
8271
8545
|
* Must be a valid file ID.
|
|
8272
8546
|
*/
|
|
8273
|
-
fileId:
|
|
8547
|
+
fileId: FileId;
|
|
8274
8548
|
/**
|
|
8275
8549
|
* Version ID of the asset.
|
|
8276
8550
|
*/
|
|
@@ -8310,7 +8584,7 @@ type GetFileDataUploadStatus = {
|
|
|
8310
8584
|
/**
|
|
8311
8585
|
* Must be a valid file ID.
|
|
8312
8586
|
*/
|
|
8313
|
-
fileId:
|
|
8587
|
+
fileId: FileId;
|
|
8314
8588
|
/**
|
|
8315
8589
|
* Version ID of the asset.
|
|
8316
8590
|
*/
|
|
@@ -8481,7 +8755,7 @@ type DeleteGroup = {
|
|
|
8481
8755
|
/**
|
|
8482
8756
|
* Must be a valid group ID.
|
|
8483
8757
|
*/
|
|
8484
|
-
groupId:
|
|
8758
|
+
groupId: GroupId;
|
|
8485
8759
|
};
|
|
8486
8760
|
query?: {
|
|
8487
8761
|
hardDelete?: boolean;
|
|
@@ -8512,7 +8786,7 @@ type GetGroup = {
|
|
|
8512
8786
|
/**
|
|
8513
8787
|
* Must be a valid group ID.
|
|
8514
8788
|
*/
|
|
8515
|
-
groupId:
|
|
8789
|
+
groupId: GroupId;
|
|
8516
8790
|
};
|
|
8517
8791
|
query?: {
|
|
8518
8792
|
/**
|
|
@@ -8546,7 +8820,7 @@ type UpdateGroup = {
|
|
|
8546
8820
|
/**
|
|
8547
8821
|
* Must be a valid group ID.
|
|
8548
8822
|
*/
|
|
8549
|
-
groupId:
|
|
8823
|
+
groupId: GroupId;
|
|
8550
8824
|
};
|
|
8551
8825
|
query?: never;
|
|
8552
8826
|
url: '/groups/{groupId}';
|
|
@@ -8575,7 +8849,7 @@ type DeleteGroupAnnouncement = {
|
|
|
8575
8849
|
/**
|
|
8576
8850
|
* Must be a valid group ID.
|
|
8577
8851
|
*/
|
|
8578
|
-
groupId:
|
|
8852
|
+
groupId: GroupId;
|
|
8579
8853
|
};
|
|
8580
8854
|
query?: never;
|
|
8581
8855
|
url: '/groups/{groupId}/announcement';
|
|
@@ -8604,7 +8878,7 @@ type GetGroupAnnouncements = {
|
|
|
8604
8878
|
/**
|
|
8605
8879
|
* Must be a valid group ID.
|
|
8606
8880
|
*/
|
|
8607
|
-
groupId:
|
|
8881
|
+
groupId: GroupId;
|
|
8608
8882
|
};
|
|
8609
8883
|
query?: never;
|
|
8610
8884
|
url: '/groups/{groupId}/announcement';
|
|
@@ -8633,7 +8907,7 @@ type CreateGroupAnnouncement = {
|
|
|
8633
8907
|
/**
|
|
8634
8908
|
* Must be a valid group ID.
|
|
8635
8909
|
*/
|
|
8636
|
-
groupId:
|
|
8910
|
+
groupId: GroupId;
|
|
8637
8911
|
};
|
|
8638
8912
|
query?: never;
|
|
8639
8913
|
url: '/groups/{groupId}/announcement';
|
|
@@ -8662,7 +8936,7 @@ type GetGroupAuditLogEntryTypes = {
|
|
|
8662
8936
|
/**
|
|
8663
8937
|
* Must be a valid group ID.
|
|
8664
8938
|
*/
|
|
8665
|
-
groupId:
|
|
8939
|
+
groupId: GroupId;
|
|
8666
8940
|
};
|
|
8667
8941
|
query?: never;
|
|
8668
8942
|
url: '/groups/{groupId}/auditLogTypes';
|
|
@@ -8691,7 +8965,7 @@ type GetGroupAuditLogs = {
|
|
|
8691
8965
|
/**
|
|
8692
8966
|
* Must be a valid group ID.
|
|
8693
8967
|
*/
|
|
8694
|
-
groupId:
|
|
8968
|
+
groupId: GroupId;
|
|
8695
8969
|
};
|
|
8696
8970
|
query?: {
|
|
8697
8971
|
/**
|
|
@@ -8749,7 +9023,7 @@ type GetGroupBans = {
|
|
|
8749
9023
|
/**
|
|
8750
9024
|
* Must be a valid group ID.
|
|
8751
9025
|
*/
|
|
8752
|
-
groupId:
|
|
9026
|
+
groupId: GroupId;
|
|
8753
9027
|
};
|
|
8754
9028
|
query?: {
|
|
8755
9029
|
/**
|
|
@@ -8791,7 +9065,7 @@ type BanGroupMember = {
|
|
|
8791
9065
|
/**
|
|
8792
9066
|
* Must be a valid group ID.
|
|
8793
9067
|
*/
|
|
8794
|
-
groupId:
|
|
9068
|
+
groupId: GroupId;
|
|
8795
9069
|
};
|
|
8796
9070
|
query?: never;
|
|
8797
9071
|
url: '/groups/{groupId}/bans';
|
|
@@ -8824,11 +9098,11 @@ type UnbanGroupMember = {
|
|
|
8824
9098
|
/**
|
|
8825
9099
|
* Must be a valid group ID.
|
|
8826
9100
|
*/
|
|
8827
|
-
groupId:
|
|
9101
|
+
groupId: GroupId;
|
|
8828
9102
|
/**
|
|
8829
9103
|
* Must be a valid user ID.
|
|
8830
9104
|
*/
|
|
8831
|
-
userId:
|
|
9105
|
+
userId: UserId;
|
|
8832
9106
|
};
|
|
8833
9107
|
query?: never;
|
|
8834
9108
|
url: '/groups/{groupId}/bans/{userId}';
|
|
@@ -8857,7 +9131,7 @@ type BlockGroup = {
|
|
|
8857
9131
|
/**
|
|
8858
9132
|
* Must be a valid group ID.
|
|
8859
9133
|
*/
|
|
8860
|
-
groupId:
|
|
9134
|
+
groupId: GroupId;
|
|
8861
9135
|
};
|
|
8862
9136
|
query?: never;
|
|
8863
9137
|
url: '/groups/{groupId}/block';
|
|
@@ -8894,7 +9168,7 @@ type CreateGroupGallery = {
|
|
|
8894
9168
|
/**
|
|
8895
9169
|
* Must be a valid group ID.
|
|
8896
9170
|
*/
|
|
8897
|
-
groupId:
|
|
9171
|
+
groupId: GroupId;
|
|
8898
9172
|
};
|
|
8899
9173
|
query?: never;
|
|
8900
9174
|
url: '/groups/{groupId}/galleries';
|
|
@@ -8923,11 +9197,11 @@ type DeleteGroupGallery = {
|
|
|
8923
9197
|
/**
|
|
8924
9198
|
* Must be a valid group ID.
|
|
8925
9199
|
*/
|
|
8926
|
-
groupId:
|
|
9200
|
+
groupId: GroupId;
|
|
8927
9201
|
/**
|
|
8928
9202
|
* Must be a valid group gallery ID.
|
|
8929
9203
|
*/
|
|
8930
|
-
groupGalleryId:
|
|
9204
|
+
groupGalleryId: GroupGalleryId;
|
|
8931
9205
|
};
|
|
8932
9206
|
query?: never;
|
|
8933
9207
|
url: '/groups/{groupId}/galleries/{groupGalleryId}';
|
|
@@ -8956,11 +9230,11 @@ type GetGroupGalleryImages = {
|
|
|
8956
9230
|
/**
|
|
8957
9231
|
* Must be a valid group ID.
|
|
8958
9232
|
*/
|
|
8959
|
-
groupId:
|
|
9233
|
+
groupId: GroupId;
|
|
8960
9234
|
/**
|
|
8961
9235
|
* Must be a valid group gallery ID.
|
|
8962
9236
|
*/
|
|
8963
|
-
groupGalleryId:
|
|
9237
|
+
groupGalleryId: GroupGalleryId;
|
|
8964
9238
|
};
|
|
8965
9239
|
query?: {
|
|
8966
9240
|
/**
|
|
@@ -9002,11 +9276,11 @@ type UpdateGroupGallery = {
|
|
|
9002
9276
|
/**
|
|
9003
9277
|
* Must be a valid group ID.
|
|
9004
9278
|
*/
|
|
9005
|
-
groupId:
|
|
9279
|
+
groupId: GroupId;
|
|
9006
9280
|
/**
|
|
9007
9281
|
* Must be a valid group gallery ID.
|
|
9008
9282
|
*/
|
|
9009
|
-
groupGalleryId:
|
|
9283
|
+
groupGalleryId: GroupGalleryId;
|
|
9010
9284
|
};
|
|
9011
9285
|
query?: never;
|
|
9012
9286
|
url: '/groups/{groupId}/galleries/{groupGalleryId}';
|
|
@@ -9035,11 +9309,11 @@ type AddGroupGalleryImage = {
|
|
|
9035
9309
|
/**
|
|
9036
9310
|
* Must be a valid group ID.
|
|
9037
9311
|
*/
|
|
9038
|
-
groupId:
|
|
9312
|
+
groupId: GroupId;
|
|
9039
9313
|
/**
|
|
9040
9314
|
* Must be a valid group gallery ID.
|
|
9041
9315
|
*/
|
|
9042
|
-
groupGalleryId:
|
|
9316
|
+
groupGalleryId: GroupGalleryId;
|
|
9043
9317
|
};
|
|
9044
9318
|
query?: never;
|
|
9045
9319
|
url: '/groups/{groupId}/galleries/{groupGalleryId}/images';
|
|
@@ -9068,15 +9342,15 @@ type DeleteGroupGalleryImage = {
|
|
|
9068
9342
|
/**
|
|
9069
9343
|
* Must be a valid group ID.
|
|
9070
9344
|
*/
|
|
9071
|
-
groupId:
|
|
9345
|
+
groupId: GroupId;
|
|
9072
9346
|
/**
|
|
9073
9347
|
* Must be a valid group gallery ID.
|
|
9074
9348
|
*/
|
|
9075
|
-
groupGalleryId:
|
|
9349
|
+
groupGalleryId: GroupGalleryId;
|
|
9076
9350
|
/**
|
|
9077
9351
|
* Must be a valid group gallery image ID.
|
|
9078
9352
|
*/
|
|
9079
|
-
groupGalleryImageId:
|
|
9353
|
+
groupGalleryImageId: GroupGalleryImageId;
|
|
9080
9354
|
};
|
|
9081
9355
|
query?: never;
|
|
9082
9356
|
url: '/groups/{groupId}/galleries/{groupGalleryId}/images/{groupGalleryImageId}';
|
|
@@ -9109,7 +9383,7 @@ type GetGroupInstances = {
|
|
|
9109
9383
|
/**
|
|
9110
9384
|
* Must be a valid group ID.
|
|
9111
9385
|
*/
|
|
9112
|
-
groupId:
|
|
9386
|
+
groupId: GroupId;
|
|
9113
9387
|
};
|
|
9114
9388
|
query?: never;
|
|
9115
9389
|
url: '/groups/{groupId}/instances';
|
|
@@ -9138,7 +9412,7 @@ type GetGroupInvites = {
|
|
|
9138
9412
|
/**
|
|
9139
9413
|
* Must be a valid group ID.
|
|
9140
9414
|
*/
|
|
9141
|
-
groupId:
|
|
9415
|
+
groupId: GroupId;
|
|
9142
9416
|
};
|
|
9143
9417
|
query?: {
|
|
9144
9418
|
/**
|
|
@@ -9180,7 +9454,7 @@ type CreateGroupInvite = {
|
|
|
9180
9454
|
/**
|
|
9181
9455
|
* Must be a valid group ID.
|
|
9182
9456
|
*/
|
|
9183
|
-
groupId:
|
|
9457
|
+
groupId: GroupId;
|
|
9184
9458
|
};
|
|
9185
9459
|
query?: never;
|
|
9186
9460
|
url: '/groups/{groupId}/invites';
|
|
@@ -9216,7 +9490,7 @@ type DeclineGroupInvite = {
|
|
|
9216
9490
|
/**
|
|
9217
9491
|
* Must be a valid group ID.
|
|
9218
9492
|
*/
|
|
9219
|
-
groupId:
|
|
9493
|
+
groupId: GroupId;
|
|
9220
9494
|
};
|
|
9221
9495
|
query?: never;
|
|
9222
9496
|
url: '/groups/{groupId}/invites';
|
|
@@ -9249,11 +9523,11 @@ type DeleteGroupInvite = {
|
|
|
9249
9523
|
/**
|
|
9250
9524
|
* Must be a valid group ID.
|
|
9251
9525
|
*/
|
|
9252
|
-
groupId:
|
|
9526
|
+
groupId: GroupId;
|
|
9253
9527
|
/**
|
|
9254
9528
|
* Must be a valid user ID.
|
|
9255
9529
|
*/
|
|
9256
|
-
userId:
|
|
9530
|
+
userId: UserId;
|
|
9257
9531
|
};
|
|
9258
9532
|
query?: never;
|
|
9259
9533
|
url: '/groups/{groupId}/invites/{userId}';
|
|
@@ -9281,7 +9555,7 @@ type JoinGroup = {
|
|
|
9281
9555
|
/**
|
|
9282
9556
|
* Must be a valid group ID.
|
|
9283
9557
|
*/
|
|
9284
|
-
groupId:
|
|
9558
|
+
groupId: GroupId;
|
|
9285
9559
|
};
|
|
9286
9560
|
query?: {
|
|
9287
9561
|
/**
|
|
@@ -9319,7 +9593,7 @@ type LeaveGroup = {
|
|
|
9319
9593
|
/**
|
|
9320
9594
|
* Must be a valid group ID.
|
|
9321
9595
|
*/
|
|
9322
|
-
groupId:
|
|
9596
|
+
groupId: GroupId;
|
|
9323
9597
|
};
|
|
9324
9598
|
query?: never;
|
|
9325
9599
|
url: '/groups/{groupId}/leave';
|
|
@@ -9347,7 +9621,7 @@ type GetGroupMembers = {
|
|
|
9347
9621
|
/**
|
|
9348
9622
|
* Must be a valid group ID.
|
|
9349
9623
|
*/
|
|
9350
|
-
groupId:
|
|
9624
|
+
groupId: GroupId;
|
|
9351
9625
|
};
|
|
9352
9626
|
query?: {
|
|
9353
9627
|
/**
|
|
@@ -9397,7 +9671,7 @@ type SearchGroupMembers = {
|
|
|
9397
9671
|
/**
|
|
9398
9672
|
* Must be a valid group ID.
|
|
9399
9673
|
*/
|
|
9400
|
-
groupId:
|
|
9674
|
+
groupId: GroupId;
|
|
9401
9675
|
};
|
|
9402
9676
|
query: {
|
|
9403
9677
|
/**
|
|
@@ -9449,11 +9723,11 @@ type KickGroupMember = {
|
|
|
9449
9723
|
/**
|
|
9450
9724
|
* Must be a valid group ID.
|
|
9451
9725
|
*/
|
|
9452
|
-
groupId:
|
|
9726
|
+
groupId: GroupId;
|
|
9453
9727
|
/**
|
|
9454
9728
|
* Must be a valid user ID.
|
|
9455
9729
|
*/
|
|
9456
|
-
userId:
|
|
9730
|
+
userId: UserId;
|
|
9457
9731
|
};
|
|
9458
9732
|
query?: never;
|
|
9459
9733
|
url: '/groups/{groupId}/members/{userId}';
|
|
@@ -9486,11 +9760,11 @@ type GetGroupMember = {
|
|
|
9486
9760
|
/**
|
|
9487
9761
|
* Must be a valid group ID.
|
|
9488
9762
|
*/
|
|
9489
|
-
groupId:
|
|
9763
|
+
groupId: GroupId;
|
|
9490
9764
|
/**
|
|
9491
9765
|
* Must be a valid user ID.
|
|
9492
9766
|
*/
|
|
9493
|
-
userId:
|
|
9767
|
+
userId: UserId;
|
|
9494
9768
|
};
|
|
9495
9769
|
query?: never;
|
|
9496
9770
|
url: '/groups/{groupId}/members/{userId}';
|
|
@@ -9514,7 +9788,7 @@ type GetGroupMemberResponses = {
|
|
|
9514
9788
|
/**
|
|
9515
9789
|
* Returns a list of GroupMember objects.
|
|
9516
9790
|
*/
|
|
9517
|
-
200:
|
|
9791
|
+
200: GroupMember;
|
|
9518
9792
|
};
|
|
9519
9793
|
type GetGroupMemberResponse = GetGroupMemberResponses[keyof GetGroupMemberResponses];
|
|
9520
9794
|
type UpdateGroupMember = {
|
|
@@ -9523,11 +9797,11 @@ type UpdateGroupMember = {
|
|
|
9523
9797
|
/**
|
|
9524
9798
|
* Must be a valid group ID.
|
|
9525
9799
|
*/
|
|
9526
|
-
groupId:
|
|
9800
|
+
groupId: GroupId;
|
|
9527
9801
|
/**
|
|
9528
9802
|
* Must be a valid user ID.
|
|
9529
9803
|
*/
|
|
9530
|
-
userId:
|
|
9804
|
+
userId: UserId;
|
|
9531
9805
|
};
|
|
9532
9806
|
query?: never;
|
|
9533
9807
|
url: '/groups/{groupId}/members/{userId}';
|
|
@@ -9547,7 +9821,7 @@ type UpdateGroupMemberResponses = {
|
|
|
9547
9821
|
/**
|
|
9548
9822
|
* Returns a list of GroupMember objects.
|
|
9549
9823
|
*/
|
|
9550
|
-
200:
|
|
9824
|
+
200: GroupMember;
|
|
9551
9825
|
};
|
|
9552
9826
|
type UpdateGroupMemberResponse = UpdateGroupMemberResponses[keyof UpdateGroupMemberResponses];
|
|
9553
9827
|
type RemoveGroupMemberRole = {
|
|
@@ -9556,15 +9830,15 @@ type RemoveGroupMemberRole = {
|
|
|
9556
9830
|
/**
|
|
9557
9831
|
* Must be a valid group ID.
|
|
9558
9832
|
*/
|
|
9559
|
-
groupId:
|
|
9833
|
+
groupId: GroupId;
|
|
9560
9834
|
/**
|
|
9561
9835
|
* Must be a valid user ID.
|
|
9562
9836
|
*/
|
|
9563
|
-
userId:
|
|
9837
|
+
userId: UserId;
|
|
9564
9838
|
/**
|
|
9565
9839
|
* Must be a valid group role ID.
|
|
9566
9840
|
*/
|
|
9567
|
-
groupRoleId:
|
|
9841
|
+
groupRoleId: GroupRoleId;
|
|
9568
9842
|
};
|
|
9569
9843
|
query?: never;
|
|
9570
9844
|
url: '/groups/{groupId}/members/{userId}/roles/{groupRoleId}';
|
|
@@ -9593,15 +9867,15 @@ type AddGroupMemberRole = {
|
|
|
9593
9867
|
/**
|
|
9594
9868
|
* Must be a valid group ID.
|
|
9595
9869
|
*/
|
|
9596
|
-
groupId:
|
|
9870
|
+
groupId: GroupId;
|
|
9597
9871
|
/**
|
|
9598
9872
|
* Must be a valid user ID.
|
|
9599
9873
|
*/
|
|
9600
|
-
userId:
|
|
9874
|
+
userId: UserId;
|
|
9601
9875
|
/**
|
|
9602
9876
|
* Must be a valid group role ID.
|
|
9603
9877
|
*/
|
|
9604
|
-
groupRoleId:
|
|
9878
|
+
groupRoleId: GroupRoleId;
|
|
9605
9879
|
};
|
|
9606
9880
|
query?: never;
|
|
9607
9881
|
url: '/groups/{groupId}/members/{userId}/roles/{groupRoleId}';
|
|
@@ -9630,7 +9904,7 @@ type GetGroupPermissions = {
|
|
|
9630
9904
|
/**
|
|
9631
9905
|
* Must be a valid group ID.
|
|
9632
9906
|
*/
|
|
9633
|
-
groupId:
|
|
9907
|
+
groupId: GroupId;
|
|
9634
9908
|
};
|
|
9635
9909
|
query?: never;
|
|
9636
9910
|
url: '/groups/{groupId}/permissions';
|
|
@@ -9663,7 +9937,7 @@ type GetGroupPosts = {
|
|
|
9663
9937
|
/**
|
|
9664
9938
|
* Must be a valid group ID.
|
|
9665
9939
|
*/
|
|
9666
|
-
groupId:
|
|
9940
|
+
groupId: GroupId;
|
|
9667
9941
|
};
|
|
9668
9942
|
query?: {
|
|
9669
9943
|
/**
|
|
@@ -9703,7 +9977,7 @@ type AddGroupPost = {
|
|
|
9703
9977
|
/**
|
|
9704
9978
|
* Must be a valid group ID.
|
|
9705
9979
|
*/
|
|
9706
|
-
groupId:
|
|
9980
|
+
groupId: GroupId;
|
|
9707
9981
|
};
|
|
9708
9982
|
query?: never;
|
|
9709
9983
|
url: '/groups/{groupId}/posts';
|
|
@@ -9728,11 +10002,11 @@ type DeleteGroupPost = {
|
|
|
9728
10002
|
/**
|
|
9729
10003
|
* Must be a valid group ID.
|
|
9730
10004
|
*/
|
|
9731
|
-
groupId:
|
|
10005
|
+
groupId: GroupId;
|
|
9732
10006
|
/**
|
|
9733
10007
|
* Must be a valid notification ID.
|
|
9734
10008
|
*/
|
|
9735
|
-
notificationId:
|
|
10009
|
+
notificationId: NotificationId;
|
|
9736
10010
|
};
|
|
9737
10011
|
query?: never;
|
|
9738
10012
|
url: '/groups/{groupId}/posts/{notificationId}';
|
|
@@ -9761,11 +10035,11 @@ type UpdateGroupPost = {
|
|
|
9761
10035
|
/**
|
|
9762
10036
|
* Must be a valid group ID.
|
|
9763
10037
|
*/
|
|
9764
|
-
groupId:
|
|
10038
|
+
groupId: GroupId;
|
|
9765
10039
|
/**
|
|
9766
10040
|
* Must be a valid notification ID.
|
|
9767
10041
|
*/
|
|
9768
|
-
notificationId:
|
|
10042
|
+
notificationId: NotificationId;
|
|
9769
10043
|
};
|
|
9770
10044
|
query?: never;
|
|
9771
10045
|
url: '/groups/{groupId}/posts/{notificationId}';
|
|
@@ -9799,7 +10073,7 @@ type UpdateGroupRepresentation = {
|
|
|
9799
10073
|
/**
|
|
9800
10074
|
* Must be a valid group ID.
|
|
9801
10075
|
*/
|
|
9802
|
-
groupId:
|
|
10076
|
+
groupId: GroupId;
|
|
9803
10077
|
};
|
|
9804
10078
|
query?: never;
|
|
9805
10079
|
url: '/groups/{groupId}/representation';
|
|
@@ -9828,7 +10102,7 @@ type CancelGroupRequest = {
|
|
|
9828
10102
|
/**
|
|
9829
10103
|
* Must be a valid group ID.
|
|
9830
10104
|
*/
|
|
9831
|
-
groupId:
|
|
10105
|
+
groupId: GroupId;
|
|
9832
10106
|
};
|
|
9833
10107
|
query?: never;
|
|
9834
10108
|
url: '/groups/{groupId}/requests';
|
|
@@ -9860,7 +10134,7 @@ type GetGroupRequests = {
|
|
|
9860
10134
|
/**
|
|
9861
10135
|
* Must be a valid group ID.
|
|
9862
10136
|
*/
|
|
9863
|
-
groupId:
|
|
10137
|
+
groupId: GroupId;
|
|
9864
10138
|
};
|
|
9865
10139
|
query?: {
|
|
9866
10140
|
/**
|
|
@@ -9906,11 +10180,11 @@ type RespondGroupJoinRequest2 = {
|
|
|
9906
10180
|
/**
|
|
9907
10181
|
* Must be a valid group ID.
|
|
9908
10182
|
*/
|
|
9909
|
-
groupId:
|
|
10183
|
+
groupId: GroupId;
|
|
9910
10184
|
/**
|
|
9911
10185
|
* Must be a valid user ID.
|
|
9912
10186
|
*/
|
|
9913
|
-
userId:
|
|
10187
|
+
userId: UserId;
|
|
9914
10188
|
};
|
|
9915
10189
|
query?: never;
|
|
9916
10190
|
url: '/groups/{groupId}/requests/{userId}';
|
|
@@ -9938,7 +10212,7 @@ type GetGroupRoles = {
|
|
|
9938
10212
|
/**
|
|
9939
10213
|
* Must be a valid group ID.
|
|
9940
10214
|
*/
|
|
9941
|
-
groupId:
|
|
10215
|
+
groupId: GroupId;
|
|
9942
10216
|
};
|
|
9943
10217
|
query?: never;
|
|
9944
10218
|
url: '/groups/{groupId}/roles';
|
|
@@ -9967,7 +10241,7 @@ type CreateGroupRole = {
|
|
|
9967
10241
|
/**
|
|
9968
10242
|
* Must be a valid group ID.
|
|
9969
10243
|
*/
|
|
9970
|
-
groupId:
|
|
10244
|
+
groupId: GroupId;
|
|
9971
10245
|
};
|
|
9972
10246
|
query?: never;
|
|
9973
10247
|
url: '/groups/{groupId}/roles';
|
|
@@ -9996,11 +10270,11 @@ type DeleteGroupRole = {
|
|
|
9996
10270
|
/**
|
|
9997
10271
|
* Must be a valid group ID.
|
|
9998
10272
|
*/
|
|
9999
|
-
groupId:
|
|
10273
|
+
groupId: GroupId;
|
|
10000
10274
|
/**
|
|
10001
10275
|
* Must be a valid group role ID.
|
|
10002
10276
|
*/
|
|
10003
|
-
groupRoleId:
|
|
10277
|
+
groupRoleId: GroupRoleId;
|
|
10004
10278
|
};
|
|
10005
10279
|
query?: never;
|
|
10006
10280
|
url: '/groups/{groupId}/roles/{groupRoleId}';
|
|
@@ -10029,11 +10303,11 @@ type UpdateGroupRole = {
|
|
|
10029
10303
|
/**
|
|
10030
10304
|
* Must be a valid group ID.
|
|
10031
10305
|
*/
|
|
10032
|
-
groupId:
|
|
10306
|
+
groupId: GroupId;
|
|
10033
10307
|
/**
|
|
10034
10308
|
* Must be a valid group role ID.
|
|
10035
10309
|
*/
|
|
10036
|
-
groupRoleId:
|
|
10310
|
+
groupRoleId: GroupRoleId;
|
|
10037
10311
|
};
|
|
10038
10312
|
query?: never;
|
|
10039
10313
|
url: '/groups/{groupId}/roles/{groupRoleId}';
|
|
@@ -10058,7 +10332,7 @@ type CancelGroupTransfer = {
|
|
|
10058
10332
|
/**
|
|
10059
10333
|
* Must be a valid group ID.
|
|
10060
10334
|
*/
|
|
10061
|
-
groupId:
|
|
10335
|
+
groupId: GroupId;
|
|
10062
10336
|
};
|
|
10063
10337
|
query?: never;
|
|
10064
10338
|
url: '/groups/{groupId}/transfer';
|
|
@@ -10091,7 +10365,7 @@ type GetGroupTransferability = {
|
|
|
10091
10365
|
/**
|
|
10092
10366
|
* Must be a valid group ID.
|
|
10093
10367
|
*/
|
|
10094
|
-
groupId:
|
|
10368
|
+
groupId: GroupId;
|
|
10095
10369
|
};
|
|
10096
10370
|
query?: {
|
|
10097
10371
|
/**
|
|
@@ -10129,7 +10403,7 @@ type InitiateOrAcceptGroupTransfer = {
|
|
|
10129
10403
|
/**
|
|
10130
10404
|
* Must be a valid group ID.
|
|
10131
10405
|
*/
|
|
10132
|
-
groupId:
|
|
10406
|
+
groupId: GroupId;
|
|
10133
10407
|
};
|
|
10134
10408
|
query?: never;
|
|
10135
10409
|
url: '/groups/{groupId}/transfer';
|
|
@@ -10293,11 +10567,11 @@ type CloseInstance = {
|
|
|
10293
10567
|
/**
|
|
10294
10568
|
* Must be a valid world ID.
|
|
10295
10569
|
*/
|
|
10296
|
-
worldId:
|
|
10570
|
+
worldId: WorldId;
|
|
10297
10571
|
/**
|
|
10298
10572
|
* Must be a valid instance ID.
|
|
10299
10573
|
*/
|
|
10300
|
-
instanceId:
|
|
10574
|
+
instanceId: InstanceId;
|
|
10301
10575
|
};
|
|
10302
10576
|
query?: {
|
|
10303
10577
|
/**
|
|
@@ -10340,11 +10614,11 @@ type GetInstance = {
|
|
|
10340
10614
|
/**
|
|
10341
10615
|
* Must be a valid world ID.
|
|
10342
10616
|
*/
|
|
10343
|
-
worldId:
|
|
10617
|
+
worldId: WorldId;
|
|
10344
10618
|
/**
|
|
10345
10619
|
* Must be a valid instance ID.
|
|
10346
10620
|
*/
|
|
10347
|
-
instanceId:
|
|
10621
|
+
instanceId: InstanceId;
|
|
10348
10622
|
};
|
|
10349
10623
|
query?: never;
|
|
10350
10624
|
url: '/instances/{worldId}:{instanceId}';
|
|
@@ -10369,11 +10643,11 @@ type GetShortName = {
|
|
|
10369
10643
|
/**
|
|
10370
10644
|
* Must be a valid world ID.
|
|
10371
10645
|
*/
|
|
10372
|
-
worldId:
|
|
10646
|
+
worldId: WorldId;
|
|
10373
10647
|
/**
|
|
10374
10648
|
* Must be a valid instance ID.
|
|
10375
10649
|
*/
|
|
10376
|
-
instanceId:
|
|
10650
|
+
instanceId: InstanceId;
|
|
10377
10651
|
};
|
|
10378
10652
|
query?: never;
|
|
10379
10653
|
url: '/instances/{worldId}:{instanceId}/shortName';
|
|
@@ -10595,7 +10869,7 @@ type GetInventoryTemplate = {
|
|
|
10595
10869
|
/**
|
|
10596
10870
|
* Must be a valid inventory template ID.
|
|
10597
10871
|
*/
|
|
10598
|
-
inventoryTemplateId:
|
|
10872
|
+
inventoryTemplateId: InventoryTemplateId;
|
|
10599
10873
|
};
|
|
10600
10874
|
query?: never;
|
|
10601
10875
|
url: '/inventory/template/{inventoryTemplateId}';
|
|
@@ -10620,7 +10894,7 @@ type DeleteOwnInventoryItem = {
|
|
|
10620
10894
|
/**
|
|
10621
10895
|
* Must be a valid inventory item ID.
|
|
10622
10896
|
*/
|
|
10623
|
-
inventoryItemId:
|
|
10897
|
+
inventoryItemId: InventoryItemId;
|
|
10624
10898
|
};
|
|
10625
10899
|
query?: never;
|
|
10626
10900
|
url: '/inventory/{inventoryItemId}';
|
|
@@ -10645,7 +10919,7 @@ type GetOwnInventoryItem = {
|
|
|
10645
10919
|
/**
|
|
10646
10920
|
* Must be a valid inventory item ID.
|
|
10647
10921
|
*/
|
|
10648
|
-
inventoryItemId:
|
|
10922
|
+
inventoryItemId: InventoryItemId;
|
|
10649
10923
|
};
|
|
10650
10924
|
query?: never;
|
|
10651
10925
|
url: '/inventory/{inventoryItemId}';
|
|
@@ -10670,7 +10944,7 @@ type UpdateOwnInventoryItem = {
|
|
|
10670
10944
|
/**
|
|
10671
10945
|
* Must be a valid inventory item ID.
|
|
10672
10946
|
*/
|
|
10673
|
-
inventoryItemId:
|
|
10947
|
+
inventoryItemId: InventoryItemId;
|
|
10674
10948
|
};
|
|
10675
10949
|
query?: never;
|
|
10676
10950
|
url: '/inventory/{inventoryItemId}';
|
|
@@ -10695,7 +10969,7 @@ type ConsumeOwnInventoryItem = {
|
|
|
10695
10969
|
/**
|
|
10696
10970
|
* Must be a valid inventory item ID.
|
|
10697
10971
|
*/
|
|
10698
|
-
inventoryItemId:
|
|
10972
|
+
inventoryItemId: InventoryItemId;
|
|
10699
10973
|
};
|
|
10700
10974
|
query?: never;
|
|
10701
10975
|
url: '/inventory/{inventoryItemId}/consume';
|
|
@@ -10749,7 +11023,7 @@ type EquipOwnInventoryItem = {
|
|
|
10749
11023
|
/**
|
|
10750
11024
|
* Must be a valid inventory item ID.
|
|
10751
11025
|
*/
|
|
10752
|
-
inventoryItemId:
|
|
11026
|
+
inventoryItemId: InventoryItemId;
|
|
10753
11027
|
};
|
|
10754
11028
|
query?: never;
|
|
10755
11029
|
url: '/inventory/{inventoryItemId}/equip';
|
|
@@ -10778,11 +11052,11 @@ type InviteMyselfTo = {
|
|
|
10778
11052
|
/**
|
|
10779
11053
|
* Must be a valid world ID.
|
|
10780
11054
|
*/
|
|
10781
|
-
worldId:
|
|
11055
|
+
worldId: WorldId;
|
|
10782
11056
|
/**
|
|
10783
11057
|
* Must be a valid instance ID.
|
|
10784
11058
|
*/
|
|
10785
|
-
instanceId:
|
|
11059
|
+
instanceId: InstanceId;
|
|
10786
11060
|
};
|
|
10787
11061
|
query?: never;
|
|
10788
11062
|
url: '/invite/myself/to/{worldId}:{instanceId}';
|
|
@@ -10814,7 +11088,7 @@ type RespondInvite = {
|
|
|
10814
11088
|
/**
|
|
10815
11089
|
* Must be a valid notification ID.
|
|
10816
11090
|
*/
|
|
10817
|
-
notificationId:
|
|
11091
|
+
notificationId: NotificationId;
|
|
10818
11092
|
};
|
|
10819
11093
|
query?: never;
|
|
10820
11094
|
url: '/invite/{notificationId}/response';
|
|
@@ -10845,7 +11119,7 @@ type RespondInviteWithPhoto = {
|
|
|
10845
11119
|
/**
|
|
10846
11120
|
* Must be a valid notification ID.
|
|
10847
11121
|
*/
|
|
10848
|
-
notificationId:
|
|
11122
|
+
notificationId: NotificationId;
|
|
10849
11123
|
};
|
|
10850
11124
|
query?: never;
|
|
10851
11125
|
url: '/invite/{notificationId}/response/photo';
|
|
@@ -10873,7 +11147,7 @@ type InviteUser = {
|
|
|
10873
11147
|
/**
|
|
10874
11148
|
* Must be a valid user ID.
|
|
10875
11149
|
*/
|
|
10876
|
-
userId:
|
|
11150
|
+
userId: UserId;
|
|
10877
11151
|
};
|
|
10878
11152
|
query?: never;
|
|
10879
11153
|
url: '/invite/{userId}';
|
|
@@ -10904,7 +11178,7 @@ type InviteUserWithPhoto = {
|
|
|
10904
11178
|
/**
|
|
10905
11179
|
* Must be a valid user ID.
|
|
10906
11180
|
*/
|
|
10907
|
-
userId:
|
|
11181
|
+
userId: UserId;
|
|
10908
11182
|
};
|
|
10909
11183
|
query?: never;
|
|
10910
11184
|
url: '/invite/{userId}/photo';
|
|
@@ -10945,9 +11219,9 @@ type GetJam = {
|
|
|
10945
11219
|
body?: never;
|
|
10946
11220
|
path: {
|
|
10947
11221
|
/**
|
|
10948
|
-
* Must be a valid
|
|
11222
|
+
* Must be a valid jam ID.
|
|
10949
11223
|
*/
|
|
10950
|
-
jamId:
|
|
11224
|
+
jamId: JamId;
|
|
10951
11225
|
};
|
|
10952
11226
|
query?: never;
|
|
10953
11227
|
url: '/jams/{jamId}';
|
|
@@ -10970,11 +11244,20 @@ type GetJamSubmissions = {
|
|
|
10970
11244
|
body?: never;
|
|
10971
11245
|
path: {
|
|
10972
11246
|
/**
|
|
10973
|
-
* Must be a valid
|
|
11247
|
+
* Must be a valid jam ID.
|
|
10974
11248
|
*/
|
|
10975
|
-
jamId:
|
|
11249
|
+
jamId: JamId;
|
|
11250
|
+
};
|
|
11251
|
+
query?: {
|
|
11252
|
+
/**
|
|
11253
|
+
* Filter for particular content submitted, e.g., a groupId, userId, avatarId, etc.
|
|
11254
|
+
*/
|
|
11255
|
+
contentId?: string;
|
|
11256
|
+
/**
|
|
11257
|
+
* Must be a valid user ID.
|
|
11258
|
+
*/
|
|
11259
|
+
submitterId?: UserId;
|
|
10976
11260
|
};
|
|
10977
|
-
query?: never;
|
|
10978
11261
|
url: '/jams/{jamId}/submissions';
|
|
10979
11262
|
};
|
|
10980
11263
|
type GetJamSubmissionsErrors = {
|
|
@@ -10986,11 +11269,77 @@ type GetJamSubmissionsErrors = {
|
|
|
10986
11269
|
type GetJamSubmissionsError = GetJamSubmissionsErrors[keyof GetJamSubmissionsErrors];
|
|
10987
11270
|
type GetJamSubmissionsResponses = {
|
|
10988
11271
|
/**
|
|
10989
|
-
* Returns a list of
|
|
11272
|
+
* Returns a list of JamSubmission objects.
|
|
10990
11273
|
*/
|
|
10991
|
-
200: Array<
|
|
11274
|
+
200: Array<JamSubmission>;
|
|
10992
11275
|
};
|
|
10993
11276
|
type GetJamSubmissionsResponse = GetJamSubmissionsResponses[keyof GetJamSubmissionsResponses];
|
|
11277
|
+
type SubmitJamContent = {
|
|
11278
|
+
body?: CreateJamSubmissionRequest;
|
|
11279
|
+
path: {
|
|
11280
|
+
/**
|
|
11281
|
+
* Must be a valid jam ID.
|
|
11282
|
+
*/
|
|
11283
|
+
jamId: JamId;
|
|
11284
|
+
};
|
|
11285
|
+
query?: never;
|
|
11286
|
+
url: '/jams/{jamId}/submissions';
|
|
11287
|
+
};
|
|
11288
|
+
type SubmitJamContentErrors = {
|
|
11289
|
+
/**
|
|
11290
|
+
* Error response due to missing auth cookie.
|
|
11291
|
+
*/
|
|
11292
|
+
401: _Error;
|
|
11293
|
+
/**
|
|
11294
|
+
* Error response when trying to show information about a non-existent jam.
|
|
11295
|
+
*/
|
|
11296
|
+
404: _Error;
|
|
11297
|
+
};
|
|
11298
|
+
type SubmitJamContentError = SubmitJamContentErrors[keyof SubmitJamContentErrors];
|
|
11299
|
+
type SubmitJamContentResponses = {
|
|
11300
|
+
/**
|
|
11301
|
+
* Returns a single JamSubmission object.
|
|
11302
|
+
*/
|
|
11303
|
+
200: JamSubmission;
|
|
11304
|
+
};
|
|
11305
|
+
type SubmitJamContentResponse = SubmitJamContentResponses[keyof SubmitJamContentResponses];
|
|
11306
|
+
type DeleteJamSubmission = {
|
|
11307
|
+
body?: never;
|
|
11308
|
+
path: {
|
|
11309
|
+
/**
|
|
11310
|
+
* Must be a valid jam ID.
|
|
11311
|
+
*/
|
|
11312
|
+
jamId: JamId;
|
|
11313
|
+
/**
|
|
11314
|
+
* Must be a valid jam submission ID.
|
|
11315
|
+
*/
|
|
11316
|
+
jamSubmissionId: JamSubmissionId;
|
|
11317
|
+
};
|
|
11318
|
+
query?: never;
|
|
11319
|
+
url: '/jams/{jamId}/submissions/{jamSubmissionId}';
|
|
11320
|
+
};
|
|
11321
|
+
type DeleteJamSubmissionErrors = {
|
|
11322
|
+
/**
|
|
11323
|
+
* Error response due to missing auth cookie.
|
|
11324
|
+
*/
|
|
11325
|
+
401: _Error;
|
|
11326
|
+
/**
|
|
11327
|
+
* Error response due to missing permissions.
|
|
11328
|
+
*/
|
|
11329
|
+
403: _Error;
|
|
11330
|
+
/**
|
|
11331
|
+
* Error response when trying to show information about a non-existent jam.
|
|
11332
|
+
*/
|
|
11333
|
+
404: _Error;
|
|
11334
|
+
};
|
|
11335
|
+
type DeleteJamSubmissionError = DeleteJamSubmissionErrors[keyof DeleteJamSubmissionErrors];
|
|
11336
|
+
type DeleteJamSubmissionResponses = {
|
|
11337
|
+
/**
|
|
11338
|
+
* Returns an Success object.
|
|
11339
|
+
*/
|
|
11340
|
+
200: Success;
|
|
11341
|
+
};
|
|
11342
|
+
type DeleteJamSubmissionResponse = DeleteJamSubmissionResponses[keyof DeleteJamSubmissionResponses];
|
|
10994
11343
|
type GetJavaScript = {
|
|
10995
11344
|
body?: never;
|
|
10996
11345
|
path?: never;
|
|
@@ -11026,7 +11375,7 @@ type GetLicenseGroup = {
|
|
|
11026
11375
|
/**
|
|
11027
11376
|
* Must be a valid license group ID.
|
|
11028
11377
|
*/
|
|
11029
|
-
licenseGroupId:
|
|
11378
|
+
licenseGroupId: LicenseGroupId;
|
|
11030
11379
|
};
|
|
11031
11380
|
query?: never;
|
|
11032
11381
|
url: '/licenseGroups/{licenseGroupId}';
|
|
@@ -11051,7 +11400,7 @@ type GetProductListing = {
|
|
|
11051
11400
|
/**
|
|
11052
11401
|
* Must be a valid product ID.
|
|
11053
11402
|
*/
|
|
11054
|
-
productId:
|
|
11403
|
+
productId: ProductId;
|
|
11055
11404
|
};
|
|
11056
11405
|
query?: {
|
|
11057
11406
|
/**
|
|
@@ -11101,7 +11450,7 @@ type GetInviteMessages = {
|
|
|
11101
11450
|
/**
|
|
11102
11451
|
* Must be a valid user ID.
|
|
11103
11452
|
*/
|
|
11104
|
-
userId:
|
|
11453
|
+
userId: UserId;
|
|
11105
11454
|
/**
|
|
11106
11455
|
* The type of message to fetch, must be a valid InviteMessageType.
|
|
11107
11456
|
*/
|
|
@@ -11134,7 +11483,7 @@ type ResetInviteMessage = {
|
|
|
11134
11483
|
/**
|
|
11135
11484
|
* Must be a valid user ID.
|
|
11136
11485
|
*/
|
|
11137
|
-
userId:
|
|
11486
|
+
userId: UserId;
|
|
11138
11487
|
/**
|
|
11139
11488
|
* The type of message to fetch, must be a valid InviteMessageType.
|
|
11140
11489
|
*/
|
|
@@ -11179,7 +11528,7 @@ type GetInviteMessage = {
|
|
|
11179
11528
|
/**
|
|
11180
11529
|
* Must be a valid user ID.
|
|
11181
11530
|
*/
|
|
11182
|
-
userId:
|
|
11531
|
+
userId: UserId;
|
|
11183
11532
|
/**
|
|
11184
11533
|
* The type of message to fetch, must be a valid InviteMessageType.
|
|
11185
11534
|
*/
|
|
@@ -11223,7 +11572,7 @@ type UpdateInviteMessage = {
|
|
|
11223
11572
|
/**
|
|
11224
11573
|
* Must be a valid user ID.
|
|
11225
11574
|
*/
|
|
11226
|
-
userId:
|
|
11575
|
+
userId: UserId;
|
|
11227
11576
|
/**
|
|
11228
11577
|
* The type of message to fetch, must be a valid InviteMessageType.
|
|
11229
11578
|
*/
|
|
@@ -11403,7 +11752,7 @@ type DeleteNotificationV2 = {
|
|
|
11403
11752
|
/**
|
|
11404
11753
|
* Must be a valid notification ID.
|
|
11405
11754
|
*/
|
|
11406
|
-
notificationId:
|
|
11755
|
+
notificationId: NotificationId;
|
|
11407
11756
|
};
|
|
11408
11757
|
query?: never;
|
|
11409
11758
|
url: '/notifications/{notificationId}';
|
|
@@ -11436,7 +11785,7 @@ type GetNotificationV2 = {
|
|
|
11436
11785
|
/**
|
|
11437
11786
|
* Must be a valid notification ID.
|
|
11438
11787
|
*/
|
|
11439
|
-
notificationId:
|
|
11788
|
+
notificationId: NotificationId;
|
|
11440
11789
|
};
|
|
11441
11790
|
query?: never;
|
|
11442
11791
|
url: '/notifications/{notificationId}';
|
|
@@ -11469,7 +11818,7 @@ type ReplyNotificationV2 = {
|
|
|
11469
11818
|
/**
|
|
11470
11819
|
* Must be a valid notification ID.
|
|
11471
11820
|
*/
|
|
11472
|
-
notificationId:
|
|
11821
|
+
notificationId: NotificationId;
|
|
11473
11822
|
};
|
|
11474
11823
|
query?: never;
|
|
11475
11824
|
url: '/notifications/{notificationId}/reply';
|
|
@@ -11502,7 +11851,7 @@ type RespondNotificationV2 = {
|
|
|
11502
11851
|
/**
|
|
11503
11852
|
* Must be a valid notification ID.
|
|
11504
11853
|
*/
|
|
11505
|
-
notificationId:
|
|
11854
|
+
notificationId: NotificationId;
|
|
11506
11855
|
};
|
|
11507
11856
|
query?: never;
|
|
11508
11857
|
url: '/notifications/{notificationId}/respond';
|
|
@@ -11535,7 +11884,7 @@ type AcknowledgeNotificationV2 = {
|
|
|
11535
11884
|
/**
|
|
11536
11885
|
* Must be a valid notification ID.
|
|
11537
11886
|
*/
|
|
11538
|
-
notificationId:
|
|
11887
|
+
notificationId: NotificationId;
|
|
11539
11888
|
};
|
|
11540
11889
|
query?: never;
|
|
11541
11890
|
url: '/notifications/{notificationId}/see';
|
|
@@ -11564,7 +11913,7 @@ type GetPermission = {
|
|
|
11564
11913
|
/**
|
|
11565
11914
|
* Must be a valid permission ID.
|
|
11566
11915
|
*/
|
|
11567
|
-
permissionId:
|
|
11916
|
+
permissionId: PermissionId;
|
|
11568
11917
|
};
|
|
11569
11918
|
query?: never;
|
|
11570
11919
|
url: '/permissions/{permissionId}';
|
|
@@ -11630,7 +11979,7 @@ type GetUserPrints = {
|
|
|
11630
11979
|
/**
|
|
11631
11980
|
* Must be a valid user ID.
|
|
11632
11981
|
*/
|
|
11633
|
-
userId:
|
|
11982
|
+
userId: UserId;
|
|
11634
11983
|
};
|
|
11635
11984
|
query?: never;
|
|
11636
11985
|
url: '/prints/user/{userId}';
|
|
@@ -11659,7 +12008,7 @@ type DeletePrint = {
|
|
|
11659
12008
|
/**
|
|
11660
12009
|
* Print ID.
|
|
11661
12010
|
*/
|
|
11662
|
-
printId:
|
|
12011
|
+
printId: PrintId;
|
|
11663
12012
|
};
|
|
11664
12013
|
query?: never;
|
|
11665
12014
|
url: '/prints/{printId}';
|
|
@@ -11683,7 +12032,7 @@ type GetPrint = {
|
|
|
11683
12032
|
/**
|
|
11684
12033
|
* Print ID.
|
|
11685
12034
|
*/
|
|
11686
|
-
printId:
|
|
12035
|
+
printId: PrintId;
|
|
11687
12036
|
};
|
|
11688
12037
|
query?: never;
|
|
11689
12038
|
url: '/prints/{printId}';
|
|
@@ -11717,7 +12066,7 @@ type EditPrint = {
|
|
|
11717
12066
|
/**
|
|
11718
12067
|
* Print ID.
|
|
11719
12068
|
*/
|
|
11720
|
-
printId:
|
|
12069
|
+
printId: PrintId;
|
|
11721
12070
|
};
|
|
11722
12071
|
query?: never;
|
|
11723
12072
|
url: '/prints/{printId}';
|
|
@@ -11742,7 +12091,7 @@ type GetProductListingAlternate = {
|
|
|
11742
12091
|
/**
|
|
11743
12092
|
* Must be a valid product ID.
|
|
11744
12093
|
*/
|
|
11745
|
-
productId:
|
|
12094
|
+
productId: ProductId;
|
|
11746
12095
|
};
|
|
11747
12096
|
query?: never;
|
|
11748
12097
|
url: '/products/{productId}';
|
|
@@ -11828,7 +12177,7 @@ type DeleteProp = {
|
|
|
11828
12177
|
/**
|
|
11829
12178
|
* Prop ID.
|
|
11830
12179
|
*/
|
|
11831
|
-
propId:
|
|
12180
|
+
propId: PropId;
|
|
11832
12181
|
};
|
|
11833
12182
|
query?: never;
|
|
11834
12183
|
url: '/props/{propId}';
|
|
@@ -11860,7 +12209,7 @@ type GetProp = {
|
|
|
11860
12209
|
/**
|
|
11861
12210
|
* Prop ID.
|
|
11862
12211
|
*/
|
|
11863
|
-
propId:
|
|
12212
|
+
propId: PropId;
|
|
11864
12213
|
};
|
|
11865
12214
|
query?: never;
|
|
11866
12215
|
url: '/props/{propId}';
|
|
@@ -11889,7 +12238,7 @@ type UpdateProp = {
|
|
|
11889
12238
|
/**
|
|
11890
12239
|
* Prop ID.
|
|
11891
12240
|
*/
|
|
11892
|
-
propId:
|
|
12241
|
+
propId: PropId;
|
|
11893
12242
|
};
|
|
11894
12243
|
query?: never;
|
|
11895
12244
|
url: '/props/{propId}';
|
|
@@ -11922,7 +12271,7 @@ type UnpublishProp = {
|
|
|
11922
12271
|
/**
|
|
11923
12272
|
* Prop ID.
|
|
11924
12273
|
*/
|
|
11925
|
-
propId:
|
|
12274
|
+
propId: PropId;
|
|
11926
12275
|
};
|
|
11927
12276
|
query?: never;
|
|
11928
12277
|
url: '/props/{propId}/publish';
|
|
@@ -11955,7 +12304,7 @@ type GetPropPublishStatus = {
|
|
|
11955
12304
|
/**
|
|
11956
12305
|
* Prop ID.
|
|
11957
12306
|
*/
|
|
11958
|
-
propId:
|
|
12307
|
+
propId: PropId;
|
|
11959
12308
|
};
|
|
11960
12309
|
query?: never;
|
|
11961
12310
|
url: '/props/{propId}/publish';
|
|
@@ -11988,7 +12337,7 @@ type PublishProp = {
|
|
|
11988
12337
|
/**
|
|
11989
12338
|
* Prop ID.
|
|
11990
12339
|
*/
|
|
11991
|
-
propId:
|
|
12340
|
+
propId: PropId;
|
|
11992
12341
|
};
|
|
11993
12342
|
query?: never;
|
|
11994
12343
|
url: '/props/{propId}/publish';
|
|
@@ -12024,7 +12373,7 @@ type RequestInvite = {
|
|
|
12024
12373
|
/**
|
|
12025
12374
|
* Must be a valid user ID.
|
|
12026
12375
|
*/
|
|
12027
|
-
userId:
|
|
12376
|
+
userId: UserId;
|
|
12028
12377
|
};
|
|
12029
12378
|
query?: never;
|
|
12030
12379
|
url: '/requestInvite/{userId}';
|
|
@@ -12055,7 +12404,7 @@ type RequestInviteWithPhoto = {
|
|
|
12055
12404
|
/**
|
|
12056
12405
|
* Must be a valid user ID.
|
|
12057
12406
|
*/
|
|
12058
|
-
userId:
|
|
12407
|
+
userId: UserId;
|
|
12059
12408
|
};
|
|
12060
12409
|
query?: never;
|
|
12061
12410
|
url: '/requestInvite/{userId}/photo';
|
|
@@ -12074,6 +12423,26 @@ type RequestInviteWithPhotoResponses = {
|
|
|
12074
12423
|
200: Notification;
|
|
12075
12424
|
};
|
|
12076
12425
|
type RequestInviteWithPhotoResponse = RequestInviteWithPhotoResponses[keyof RequestInviteWithPhotoResponses];
|
|
12426
|
+
type RedeemReward = {
|
|
12427
|
+
body: RewardRedemptionRequest;
|
|
12428
|
+
path?: never;
|
|
12429
|
+
query?: never;
|
|
12430
|
+
url: '/reward/redeem';
|
|
12431
|
+
};
|
|
12432
|
+
type RedeemRewardErrors = {
|
|
12433
|
+
/**
|
|
12434
|
+
* Error response due to missing auth cookie.
|
|
12435
|
+
*/
|
|
12436
|
+
401: _Error;
|
|
12437
|
+
};
|
|
12438
|
+
type RedeemRewardError = RedeemRewardErrors[keyof RedeemRewardErrors];
|
|
12439
|
+
type RedeemRewardResponses = {
|
|
12440
|
+
/**
|
|
12441
|
+
* Returns a single RewardRedemptionResult object.
|
|
12442
|
+
*/
|
|
12443
|
+
200: Array<RewardRedemptionResult>;
|
|
12444
|
+
};
|
|
12445
|
+
type RedeemRewardResponse = RedeemRewardResponses[keyof RedeemRewardResponses];
|
|
12077
12446
|
type GetSubscriptions = {
|
|
12078
12447
|
body?: never;
|
|
12079
12448
|
path?: never;
|
|
@@ -12197,7 +12566,7 @@ type GetBalance = {
|
|
|
12197
12566
|
/**
|
|
12198
12567
|
* Must be a valid user ID.
|
|
12199
12568
|
*/
|
|
12200
|
-
userId:
|
|
12569
|
+
userId: UserId;
|
|
12201
12570
|
};
|
|
12202
12571
|
query?: never;
|
|
12203
12572
|
url: '/user/{userId}/balance';
|
|
@@ -12222,7 +12591,7 @@ type GetBalanceEarnings = {
|
|
|
12222
12591
|
/**
|
|
12223
12592
|
* Must be a valid user ID.
|
|
12224
12593
|
*/
|
|
12225
|
-
userId:
|
|
12594
|
+
userId: UserId;
|
|
12226
12595
|
};
|
|
12227
12596
|
query?: never;
|
|
12228
12597
|
url: '/user/{userId}/balance/earnings';
|
|
@@ -12247,7 +12616,7 @@ type GetEconomyAccount = {
|
|
|
12247
12616
|
/**
|
|
12248
12617
|
* Must be a valid user ID.
|
|
12249
12618
|
*/
|
|
12250
|
-
userId:
|
|
12619
|
+
userId: UserId;
|
|
12251
12620
|
};
|
|
12252
12621
|
query?: never;
|
|
12253
12622
|
url: '/user/{userId}/economy/account';
|
|
@@ -12266,13 +12635,67 @@ type GetEconomyAccountResponses = {
|
|
|
12266
12635
|
200: EconomyAccount;
|
|
12267
12636
|
};
|
|
12268
12637
|
type GetEconomyAccountResponse = GetEconomyAccountResponses[keyof GetEconomyAccountResponses];
|
|
12638
|
+
type GetProductPurchaseHistory = {
|
|
12639
|
+
body?: never;
|
|
12640
|
+
path: {
|
|
12641
|
+
/**
|
|
12642
|
+
* Must be a valid user ID.
|
|
12643
|
+
*/
|
|
12644
|
+
userId: UserId;
|
|
12645
|
+
};
|
|
12646
|
+
query?: {
|
|
12647
|
+
/**
|
|
12648
|
+
* The number of objects to return.
|
|
12649
|
+
*/
|
|
12650
|
+
n?: number;
|
|
12651
|
+
/**
|
|
12652
|
+
* The start date of the search range.
|
|
12653
|
+
*/
|
|
12654
|
+
dateMin?: Date;
|
|
12655
|
+
/**
|
|
12656
|
+
* The end date of the search range.
|
|
12657
|
+
*/
|
|
12658
|
+
dateMax?: Date;
|
|
12659
|
+
/**
|
|
12660
|
+
* Must be a valid user ID.
|
|
12661
|
+
*/
|
|
12662
|
+
fromUserId?: UserId;
|
|
12663
|
+
/**
|
|
12664
|
+
* Must be a valid user ID.
|
|
12665
|
+
*/
|
|
12666
|
+
toUserId?: UserId;
|
|
12667
|
+
/**
|
|
12668
|
+
* The sort order of the results.
|
|
12669
|
+
*/
|
|
12670
|
+
sort?: SortOptionProductPurchase;
|
|
12671
|
+
/**
|
|
12672
|
+
* Result ordering
|
|
12673
|
+
*/
|
|
12674
|
+
order?: OrderOptionShort;
|
|
12675
|
+
};
|
|
12676
|
+
url: '/user/{userId}/economy/transactions';
|
|
12677
|
+
};
|
|
12678
|
+
type GetProductPurchaseHistoryErrors = {
|
|
12679
|
+
/**
|
|
12680
|
+
* Error response due to missing auth cookie.
|
|
12681
|
+
*/
|
|
12682
|
+
401: _Error;
|
|
12683
|
+
};
|
|
12684
|
+
type GetProductPurchaseHistoryError = GetProductPurchaseHistoryErrors[keyof GetProductPurchaseHistoryErrors];
|
|
12685
|
+
type GetProductPurchaseHistoryResponses = {
|
|
12686
|
+
/**
|
|
12687
|
+
* Returns a single ProductPurchaseHistory object.
|
|
12688
|
+
*/
|
|
12689
|
+
200: ProductPurchaseHistory;
|
|
12690
|
+
};
|
|
12691
|
+
type GetProductPurchaseHistoryResponse = GetProductPurchaseHistoryResponses[keyof GetProductPurchaseHistoryResponses];
|
|
12269
12692
|
type DeleteFriendRequest = {
|
|
12270
12693
|
body?: never;
|
|
12271
12694
|
path: {
|
|
12272
12695
|
/**
|
|
12273
12696
|
* Must be a valid user ID.
|
|
12274
12697
|
*/
|
|
12275
|
-
userId:
|
|
12698
|
+
userId: UserId;
|
|
12276
12699
|
};
|
|
12277
12700
|
query?: never;
|
|
12278
12701
|
url: '/user/{userId}/friendRequest';
|
|
@@ -12301,7 +12724,7 @@ type Friend = {
|
|
|
12301
12724
|
/**
|
|
12302
12725
|
* Must be a valid user ID.
|
|
12303
12726
|
*/
|
|
12304
|
-
userId:
|
|
12727
|
+
userId: UserId;
|
|
12305
12728
|
};
|
|
12306
12729
|
query?: never;
|
|
12307
12730
|
url: '/user/{userId}/friendRequest';
|
|
@@ -12334,7 +12757,7 @@ type GetFriendStatus = {
|
|
|
12334
12757
|
/**
|
|
12335
12758
|
* Must be a valid user ID.
|
|
12336
12759
|
*/
|
|
12337
|
-
userId:
|
|
12760
|
+
userId: UserId;
|
|
12338
12761
|
};
|
|
12339
12762
|
query?: never;
|
|
12340
12763
|
url: '/user/{userId}/friendStatus';
|
|
@@ -12359,11 +12782,11 @@ type GetUserInventoryItem = {
|
|
|
12359
12782
|
/**
|
|
12360
12783
|
* Must be a valid user ID.
|
|
12361
12784
|
*/
|
|
12362
|
-
userId:
|
|
12785
|
+
userId: UserId;
|
|
12363
12786
|
/**
|
|
12364
12787
|
* Must be a valid inventory item ID.
|
|
12365
12788
|
*/
|
|
12366
|
-
inventoryItemId:
|
|
12789
|
+
inventoryItemId: InventoryItemId;
|
|
12367
12790
|
};
|
|
12368
12791
|
query?: never;
|
|
12369
12792
|
url: '/user/{userId}/inventory/{inventoryItemId}';
|
|
@@ -12388,7 +12811,7 @@ type GetProductListings = {
|
|
|
12388
12811
|
/**
|
|
12389
12812
|
* Must be a valid user ID.
|
|
12390
12813
|
*/
|
|
12391
|
-
userId:
|
|
12814
|
+
userId: UserId;
|
|
12392
12815
|
};
|
|
12393
12816
|
query?: {
|
|
12394
12817
|
/**
|
|
@@ -12406,7 +12829,7 @@ type GetProductListings = {
|
|
|
12406
12829
|
/**
|
|
12407
12830
|
* Must be a valid group ID.
|
|
12408
12831
|
*/
|
|
12409
|
-
groupId?:
|
|
12832
|
+
groupId?: GroupId;
|
|
12410
12833
|
/**
|
|
12411
12834
|
* Filter for users' listings and inventory bundles.
|
|
12412
12835
|
*/
|
|
@@ -12434,7 +12857,7 @@ type GetTiliaTos = {
|
|
|
12434
12857
|
/**
|
|
12435
12858
|
* Must be a valid user ID.
|
|
12436
12859
|
*/
|
|
12437
|
-
userId:
|
|
12860
|
+
userId: UserId;
|
|
12438
12861
|
};
|
|
12439
12862
|
query?: never;
|
|
12440
12863
|
url: '/user/{userId}/tilia/tos';
|
|
@@ -12459,7 +12882,7 @@ type UpdateTiliaTos = {
|
|
|
12459
12882
|
/**
|
|
12460
12883
|
* Must be a valid user ID.
|
|
12461
12884
|
*/
|
|
12462
|
-
userId:
|
|
12885
|
+
userId: UserId;
|
|
12463
12886
|
};
|
|
12464
12887
|
query?: never;
|
|
12465
12888
|
url: '/user/{userId}/tilia/tos';
|
|
@@ -12535,7 +12958,7 @@ type GetUserNote = {
|
|
|
12535
12958
|
/**
|
|
12536
12959
|
* Must be a valid user note ID.
|
|
12537
12960
|
*/
|
|
12538
|
-
userNoteId:
|
|
12961
|
+
userNoteId: UserNoteId;
|
|
12539
12962
|
};
|
|
12540
12963
|
query?: never;
|
|
12541
12964
|
url: '/userNotes/{userNoteId}';
|
|
@@ -12605,7 +13028,7 @@ type GetUser = {
|
|
|
12605
13028
|
/**
|
|
12606
13029
|
* Must be a valid user ID.
|
|
12607
13030
|
*/
|
|
12608
|
-
userId:
|
|
13031
|
+
userId: UserId;
|
|
12609
13032
|
};
|
|
12610
13033
|
query?: never;
|
|
12611
13034
|
url: '/users/{userId}';
|
|
@@ -12630,7 +13053,7 @@ type UpdateUser = {
|
|
|
12630
13053
|
/**
|
|
12631
13054
|
* Must be a valid user ID.
|
|
12632
13055
|
*/
|
|
12633
|
-
userId:
|
|
13056
|
+
userId: UserId;
|
|
12634
13057
|
};
|
|
12635
13058
|
query?: never;
|
|
12636
13059
|
url: '/users/{userId}';
|
|
@@ -12659,7 +13082,7 @@ type AddTags = {
|
|
|
12659
13082
|
/**
|
|
12660
13083
|
* Must be a valid user ID.
|
|
12661
13084
|
*/
|
|
12662
|
-
userId:
|
|
13085
|
+
userId: UserId;
|
|
12663
13086
|
};
|
|
12664
13087
|
query?: never;
|
|
12665
13088
|
url: '/users/{userId}/addTags';
|
|
@@ -12688,7 +13111,7 @@ type GetOwnAvatar = {
|
|
|
12688
13111
|
/**
|
|
12689
13112
|
* Must be a valid user ID.
|
|
12690
13113
|
*/
|
|
12691
|
-
userId:
|
|
13114
|
+
userId: UserId;
|
|
12692
13115
|
};
|
|
12693
13116
|
query?: never;
|
|
12694
13117
|
url: '/users/{userId}/avatar';
|
|
@@ -12717,11 +13140,11 @@ type UpdateBadge = {
|
|
|
12717
13140
|
/**
|
|
12718
13141
|
* Must be a valid user ID.
|
|
12719
13142
|
*/
|
|
12720
|
-
userId:
|
|
13143
|
+
userId: UserId;
|
|
12721
13144
|
/**
|
|
12722
13145
|
* Must be a valid badge ID.
|
|
12723
13146
|
*/
|
|
12724
|
-
badgeId:
|
|
13147
|
+
badgeId: BadgeId;
|
|
12725
13148
|
};
|
|
12726
13149
|
query?: never;
|
|
12727
13150
|
url: '/users/{userId}/badges/{badgeId}';
|
|
@@ -12753,7 +13176,7 @@ type Boop = {
|
|
|
12753
13176
|
/**
|
|
12754
13177
|
* Must be a valid user ID.
|
|
12755
13178
|
*/
|
|
12756
|
-
userId:
|
|
13179
|
+
userId: UserId;
|
|
12757
13180
|
};
|
|
12758
13181
|
query?: never;
|
|
12759
13182
|
url: '/users/{userId}/boop';
|
|
@@ -12786,7 +13209,7 @@ type GetUserCreditsEligible = {
|
|
|
12786
13209
|
/**
|
|
12787
13210
|
* Must be a valid user ID.
|
|
12788
13211
|
*/
|
|
12789
|
-
userId:
|
|
13212
|
+
userId: UserId;
|
|
12790
13213
|
};
|
|
12791
13214
|
query: {
|
|
12792
13215
|
subscriptionId: string;
|
|
@@ -12813,7 +13236,7 @@ type DeleteUser = {
|
|
|
12813
13236
|
/**
|
|
12814
13237
|
* Must be a valid user ID.
|
|
12815
13238
|
*/
|
|
12816
|
-
userId:
|
|
13239
|
+
userId: UserId;
|
|
12817
13240
|
};
|
|
12818
13241
|
query?: never;
|
|
12819
13242
|
url: '/users/{userId}/delete';
|
|
@@ -12838,13 +13261,13 @@ type GetUserFeedback = {
|
|
|
12838
13261
|
/**
|
|
12839
13262
|
* Must be a valid user ID.
|
|
12840
13263
|
*/
|
|
12841
|
-
userId:
|
|
13264
|
+
userId: UserId;
|
|
12842
13265
|
};
|
|
12843
13266
|
query?: {
|
|
12844
13267
|
/**
|
|
12845
|
-
* Filter for
|
|
13268
|
+
* Filter for particular content submitted, e.g., a groupId, userId, avatarId, etc.
|
|
12846
13269
|
*/
|
|
12847
|
-
contentId?:
|
|
13270
|
+
contentId?: string;
|
|
12848
13271
|
/**
|
|
12849
13272
|
* The number of objects to return.
|
|
12850
13273
|
*/
|
|
@@ -12876,7 +13299,7 @@ type GetUserGroups = {
|
|
|
12876
13299
|
/**
|
|
12877
13300
|
* Must be a valid user ID.
|
|
12878
13301
|
*/
|
|
12879
|
-
userId:
|
|
13302
|
+
userId: UserId;
|
|
12880
13303
|
};
|
|
12881
13304
|
query?: never;
|
|
12882
13305
|
url: '/users/{userId}/groups';
|
|
@@ -12901,7 +13324,7 @@ type GetInvitedGroups = {
|
|
|
12901
13324
|
/**
|
|
12902
13325
|
* Must be a valid user ID.
|
|
12903
13326
|
*/
|
|
12904
|
-
userId:
|
|
13327
|
+
userId: UserId;
|
|
12905
13328
|
};
|
|
12906
13329
|
query?: never;
|
|
12907
13330
|
url: '/users/{userId}/groups/invited';
|
|
@@ -12926,7 +13349,7 @@ type GetUserAllGroupPermissions = {
|
|
|
12926
13349
|
/**
|
|
12927
13350
|
* Must be a valid user ID.
|
|
12928
13351
|
*/
|
|
12929
|
-
userId:
|
|
13352
|
+
userId: UserId;
|
|
12930
13353
|
};
|
|
12931
13354
|
query?: {
|
|
12932
13355
|
/**
|
|
@@ -12956,7 +13379,7 @@ type GetUserRepresentedGroup = {
|
|
|
12956
13379
|
/**
|
|
12957
13380
|
* Must be a valid user ID.
|
|
12958
13381
|
*/
|
|
12959
|
-
userId:
|
|
13382
|
+
userId: UserId;
|
|
12960
13383
|
};
|
|
12961
13384
|
query?: never;
|
|
12962
13385
|
url: '/users/{userId}/groups/represented';
|
|
@@ -12981,7 +13404,7 @@ type GetUserGroupRequests = {
|
|
|
12981
13404
|
/**
|
|
12982
13405
|
* Must be a valid user ID.
|
|
12983
13406
|
*/
|
|
12984
|
-
userId:
|
|
13407
|
+
userId: UserId;
|
|
12985
13408
|
};
|
|
12986
13409
|
query?: never;
|
|
12987
13410
|
url: '/users/{userId}/groups/requested';
|
|
@@ -13006,7 +13429,7 @@ type GetBlockedGroups = {
|
|
|
13006
13429
|
/**
|
|
13007
13430
|
* Must be a valid user ID.
|
|
13008
13431
|
*/
|
|
13009
|
-
userId:
|
|
13432
|
+
userId: UserId;
|
|
13010
13433
|
};
|
|
13011
13434
|
query?: never;
|
|
13012
13435
|
url: '/users/{userId}/groups/userblocked';
|
|
@@ -13031,7 +13454,7 @@ type GetUserGroupInstances = {
|
|
|
13031
13454
|
/**
|
|
13032
13455
|
* Must be a valid user ID.
|
|
13033
13456
|
*/
|
|
13034
|
-
userId:
|
|
13457
|
+
userId: UserId;
|
|
13035
13458
|
};
|
|
13036
13459
|
query?: never;
|
|
13037
13460
|
url: '/users/{userId}/instances/groups';
|
|
@@ -13063,11 +13486,11 @@ type GetUserGroupInstancesForGroup = {
|
|
|
13063
13486
|
/**
|
|
13064
13487
|
* Must be a valid user ID.
|
|
13065
13488
|
*/
|
|
13066
|
-
userId:
|
|
13489
|
+
userId: UserId;
|
|
13067
13490
|
/**
|
|
13068
13491
|
* Must be a valid group ID.
|
|
13069
13492
|
*/
|
|
13070
|
-
groupId:
|
|
13493
|
+
groupId: GroupId;
|
|
13071
13494
|
};
|
|
13072
13495
|
query?: never;
|
|
13073
13496
|
url: '/users/{userId}/instances/groups/{groupId}';
|
|
@@ -13099,7 +13522,7 @@ type GetMutuals = {
|
|
|
13099
13522
|
/**
|
|
13100
13523
|
* Must be a valid user ID.
|
|
13101
13524
|
*/
|
|
13102
|
-
userId:
|
|
13525
|
+
userId: UserId;
|
|
13103
13526
|
};
|
|
13104
13527
|
query?: never;
|
|
13105
13528
|
url: '/users/{userId}/mutuals';
|
|
@@ -13124,7 +13547,7 @@ type GetMutualFriends = {
|
|
|
13124
13547
|
/**
|
|
13125
13548
|
* Must be a valid user ID.
|
|
13126
13549
|
*/
|
|
13127
|
-
userId:
|
|
13550
|
+
userId: UserId;
|
|
13128
13551
|
};
|
|
13129
13552
|
query?: {
|
|
13130
13553
|
/**
|
|
@@ -13158,7 +13581,7 @@ type GetMutualGroups = {
|
|
|
13158
13581
|
/**
|
|
13159
13582
|
* Must be a valid user ID.
|
|
13160
13583
|
*/
|
|
13161
|
-
userId:
|
|
13584
|
+
userId: UserId;
|
|
13162
13585
|
};
|
|
13163
13586
|
query?: {
|
|
13164
13587
|
/**
|
|
@@ -13192,7 +13615,7 @@ type DeleteAllUserPersistenceData = {
|
|
|
13192
13615
|
/**
|
|
13193
13616
|
* Must be a valid user ID.
|
|
13194
13617
|
*/
|
|
13195
|
-
userId:
|
|
13618
|
+
userId: UserId;
|
|
13196
13619
|
};
|
|
13197
13620
|
query?: never;
|
|
13198
13621
|
url: '/users/{userId}/persist';
|
|
@@ -13216,7 +13639,7 @@ type RemoveTags = {
|
|
|
13216
13639
|
/**
|
|
13217
13640
|
* Must be a valid user ID.
|
|
13218
13641
|
*/
|
|
13219
|
-
userId:
|
|
13642
|
+
userId: UserId;
|
|
13220
13643
|
};
|
|
13221
13644
|
query?: never;
|
|
13222
13645
|
url: '/users/{userId}/removeTags';
|
|
@@ -13245,7 +13668,7 @@ type GetUserSubscriptionEligible = {
|
|
|
13245
13668
|
/**
|
|
13246
13669
|
* Must be a valid user ID.
|
|
13247
13670
|
*/
|
|
13248
|
-
userId:
|
|
13671
|
+
userId: UserId;
|
|
13249
13672
|
};
|
|
13250
13673
|
query?: {
|
|
13251
13674
|
/**
|
|
@@ -13269,17 +13692,42 @@ type GetUserSubscriptionEligibleResponses = {
|
|
|
13269
13692
|
200: UserSubscriptionEligible;
|
|
13270
13693
|
};
|
|
13271
13694
|
type GetUserSubscriptionEligibleResponse = GetUserSubscriptionEligibleResponses[keyof GetUserSubscriptionEligibleResponses];
|
|
13695
|
+
type GetUserTutorialStatus = {
|
|
13696
|
+
body?: never;
|
|
13697
|
+
path: {
|
|
13698
|
+
/**
|
|
13699
|
+
* Must be a valid user ID.
|
|
13700
|
+
*/
|
|
13701
|
+
userId: UserId;
|
|
13702
|
+
};
|
|
13703
|
+
query?: never;
|
|
13704
|
+
url: '/users/{userId}/tutorial';
|
|
13705
|
+
};
|
|
13706
|
+
type GetUserTutorialStatusErrors = {
|
|
13707
|
+
/**
|
|
13708
|
+
* Error response due to missing auth cookie.
|
|
13709
|
+
*/
|
|
13710
|
+
401: _Error;
|
|
13711
|
+
};
|
|
13712
|
+
type GetUserTutorialStatusError = GetUserTutorialStatusErrors[keyof GetUserTutorialStatusErrors];
|
|
13713
|
+
type GetUserTutorialStatusResponses = {
|
|
13714
|
+
/**
|
|
13715
|
+
* Returns a single TutorialStatus object.
|
|
13716
|
+
*/
|
|
13717
|
+
200: TutorialStatus;
|
|
13718
|
+
};
|
|
13719
|
+
type GetUserTutorialStatusResponse = GetUserTutorialStatusResponses[keyof GetUserTutorialStatusResponses];
|
|
13272
13720
|
type DeleteUserPersistence = {
|
|
13273
13721
|
body?: never;
|
|
13274
13722
|
path: {
|
|
13275
13723
|
/**
|
|
13276
13724
|
* Must be a valid user ID.
|
|
13277
13725
|
*/
|
|
13278
|
-
userId:
|
|
13726
|
+
userId: UserId;
|
|
13279
13727
|
/**
|
|
13280
13728
|
* Must be a valid world ID.
|
|
13281
13729
|
*/
|
|
13282
|
-
worldId:
|
|
13730
|
+
worldId: WorldId;
|
|
13283
13731
|
};
|
|
13284
13732
|
query?: never;
|
|
13285
13733
|
url: '/users/{userId}/{worldId}/persist';
|
|
@@ -13307,11 +13755,11 @@ type CheckUserPersistenceExists = {
|
|
|
13307
13755
|
/**
|
|
13308
13756
|
* Must be a valid user ID.
|
|
13309
13757
|
*/
|
|
13310
|
-
userId:
|
|
13758
|
+
userId: UserId;
|
|
13311
13759
|
/**
|
|
13312
13760
|
* Must be a valid world ID.
|
|
13313
13761
|
*/
|
|
13314
|
-
worldId:
|
|
13762
|
+
worldId: WorldId;
|
|
13315
13763
|
};
|
|
13316
13764
|
query?: never;
|
|
13317
13765
|
url: '/users/{userId}/{worldId}/persist/exists';
|
|
@@ -13390,7 +13838,7 @@ type SearchWorlds = {
|
|
|
13390
13838
|
/**
|
|
13391
13839
|
* Filter by UserID.
|
|
13392
13840
|
*/
|
|
13393
|
-
userId?:
|
|
13841
|
+
userId?: UserId;
|
|
13394
13842
|
/**
|
|
13395
13843
|
* The number of objects to return.
|
|
13396
13844
|
*/
|
|
@@ -13609,7 +14057,7 @@ type GetFavoritedWorlds = {
|
|
|
13609
14057
|
/**
|
|
13610
14058
|
* Target user to see information on, admin-only.
|
|
13611
14059
|
*/
|
|
13612
|
-
userId?:
|
|
14060
|
+
userId?: UserId;
|
|
13613
14061
|
};
|
|
13614
14062
|
url: '/worlds/favorites';
|
|
13615
14063
|
};
|
|
@@ -13686,7 +14134,7 @@ type GetRecentWorlds = {
|
|
|
13686
14134
|
/**
|
|
13687
14135
|
* Target user to see information on, admin-only.
|
|
13688
14136
|
*/
|
|
13689
|
-
userId?:
|
|
14137
|
+
userId?: UserId;
|
|
13690
14138
|
};
|
|
13691
14139
|
url: '/worlds/recent';
|
|
13692
14140
|
};
|
|
@@ -13714,7 +14162,7 @@ type DeleteWorld = {
|
|
|
13714
14162
|
/**
|
|
13715
14163
|
* Must be a valid world ID.
|
|
13716
14164
|
*/
|
|
13717
|
-
worldId:
|
|
14165
|
+
worldId: WorldId;
|
|
13718
14166
|
};
|
|
13719
14167
|
query?: never;
|
|
13720
14168
|
url: '/worlds/{worldId}';
|
|
@@ -13742,7 +14190,7 @@ type GetWorld = {
|
|
|
13742
14190
|
/**
|
|
13743
14191
|
* Must be a valid world ID.
|
|
13744
14192
|
*/
|
|
13745
|
-
worldId:
|
|
14193
|
+
worldId: WorldId;
|
|
13746
14194
|
};
|
|
13747
14195
|
query?: never;
|
|
13748
14196
|
url: '/worlds/{worldId}';
|
|
@@ -13767,7 +14215,7 @@ type UpdateWorld = {
|
|
|
13767
14215
|
/**
|
|
13768
14216
|
* Must be a valid world ID.
|
|
13769
14217
|
*/
|
|
13770
|
-
worldId:
|
|
14218
|
+
worldId: WorldId;
|
|
13771
14219
|
};
|
|
13772
14220
|
query?: never;
|
|
13773
14221
|
url: '/worlds/{worldId}';
|
|
@@ -13790,13 +14238,42 @@ type UpdateWorldResponses = {
|
|
|
13790
14238
|
200: World;
|
|
13791
14239
|
};
|
|
13792
14240
|
type UpdateWorldResponse = UpdateWorldResponses[keyof UpdateWorldResponses];
|
|
14241
|
+
type AddWorldTags = {
|
|
14242
|
+
body: ChangeWorldTagsRequest;
|
|
14243
|
+
path: {
|
|
14244
|
+
/**
|
|
14245
|
+
* Must be a valid world ID.
|
|
14246
|
+
*/
|
|
14247
|
+
worldId: WorldId;
|
|
14248
|
+
};
|
|
14249
|
+
query?: never;
|
|
14250
|
+
url: '/worlds/{worldId}/addTags';
|
|
14251
|
+
};
|
|
14252
|
+
type AddWorldTagsErrors = {
|
|
14253
|
+
/**
|
|
14254
|
+
* Error response when a world owner attempts to add an invalid, restricted, or duplicate tag to a world's profile, attempts to add tags above the limit for its profile, or attempts to remove invalid, restricted, or absent tag from its profile.
|
|
14255
|
+
*/
|
|
14256
|
+
400: _Error;
|
|
14257
|
+
/**
|
|
14258
|
+
* Error response due to missing auth cookie.
|
|
14259
|
+
*/
|
|
14260
|
+
401: _Error;
|
|
14261
|
+
};
|
|
14262
|
+
type AddWorldTagsError = AddWorldTagsErrors[keyof AddWorldTagsErrors];
|
|
14263
|
+
type AddWorldTagsResponses = {
|
|
14264
|
+
/**
|
|
14265
|
+
* Returns a single World object.
|
|
14266
|
+
*/
|
|
14267
|
+
200: World;
|
|
14268
|
+
};
|
|
14269
|
+
type AddWorldTagsResponse = AddWorldTagsResponses[keyof AddWorldTagsResponses];
|
|
13793
14270
|
type GetWorldMetadata = {
|
|
13794
14271
|
body?: never;
|
|
13795
14272
|
path: {
|
|
13796
14273
|
/**
|
|
13797
14274
|
* Must be a valid world ID.
|
|
13798
14275
|
*/
|
|
13799
|
-
worldId:
|
|
14276
|
+
worldId: WorldId;
|
|
13800
14277
|
};
|
|
13801
14278
|
query?: never;
|
|
13802
14279
|
url: '/worlds/{worldId}/metadata';
|
|
@@ -13815,13 +14292,45 @@ type GetWorldMetadataResponses = {
|
|
|
13815
14292
|
200: WorldMetadata;
|
|
13816
14293
|
};
|
|
13817
14294
|
type GetWorldMetadataResponse = GetWorldMetadataResponses[keyof GetWorldMetadataResponses];
|
|
14295
|
+
type DeleteWorldPlatform = {
|
|
14296
|
+
body?: never;
|
|
14297
|
+
path: {
|
|
14298
|
+
/**
|
|
14299
|
+
* Must be a valid world ID.
|
|
14300
|
+
*/
|
|
14301
|
+
worldId: WorldId;
|
|
14302
|
+
/**
|
|
14303
|
+
* A platform the world supports.
|
|
14304
|
+
*/
|
|
14305
|
+
publishedPlatform: Platform;
|
|
14306
|
+
};
|
|
14307
|
+
query?: never;
|
|
14308
|
+
url: '/worlds/{worldId}/platform/{publishedPlatform}';
|
|
14309
|
+
};
|
|
14310
|
+
type DeleteWorldPlatformErrors = {
|
|
14311
|
+
/**
|
|
14312
|
+
* Error response due to missing auth cookie.
|
|
14313
|
+
*/
|
|
14314
|
+
401: _Error;
|
|
14315
|
+
/**
|
|
14316
|
+
* Error response when trying to show information about a non-existent world. Sometimes returns with `model <worldId> not found` instead of `World <worldId not found`.
|
|
14317
|
+
*/
|
|
14318
|
+
404: _Error;
|
|
14319
|
+
};
|
|
14320
|
+
type DeleteWorldPlatformError = DeleteWorldPlatformErrors[keyof DeleteWorldPlatformErrors];
|
|
14321
|
+
type DeleteWorldPlatformResponses = {
|
|
14322
|
+
/**
|
|
14323
|
+
* OK
|
|
14324
|
+
*/
|
|
14325
|
+
200: unknown;
|
|
14326
|
+
};
|
|
13818
14327
|
type UnpublishWorld = {
|
|
13819
14328
|
body?: never;
|
|
13820
14329
|
path: {
|
|
13821
14330
|
/**
|
|
13822
14331
|
* Must be a valid world ID.
|
|
13823
14332
|
*/
|
|
13824
|
-
worldId:
|
|
14333
|
+
worldId: WorldId;
|
|
13825
14334
|
};
|
|
13826
14335
|
query?: never;
|
|
13827
14336
|
url: '/worlds/{worldId}/publish';
|
|
@@ -13849,7 +14358,7 @@ type GetWorldPublishStatus = {
|
|
|
13849
14358
|
/**
|
|
13850
14359
|
* Must be a valid world ID.
|
|
13851
14360
|
*/
|
|
13852
|
-
worldId:
|
|
14361
|
+
worldId: WorldId;
|
|
13853
14362
|
};
|
|
13854
14363
|
query?: never;
|
|
13855
14364
|
url: '/worlds/{worldId}/publish';
|
|
@@ -13878,7 +14387,7 @@ type PublishWorld = {
|
|
|
13878
14387
|
/**
|
|
13879
14388
|
* Must be a valid world ID.
|
|
13880
14389
|
*/
|
|
13881
|
-
worldId:
|
|
14390
|
+
worldId: WorldId;
|
|
13882
14391
|
};
|
|
13883
14392
|
query?: never;
|
|
13884
14393
|
url: '/worlds/{worldId}/publish';
|
|
@@ -13900,17 +14409,46 @@ type PublishWorldResponses = {
|
|
|
13900
14409
|
*/
|
|
13901
14410
|
200: unknown;
|
|
13902
14411
|
};
|
|
14412
|
+
type RemoveWorldTags = {
|
|
14413
|
+
body: ChangeWorldTagsRequest;
|
|
14414
|
+
path: {
|
|
14415
|
+
/**
|
|
14416
|
+
* Must be a valid world ID.
|
|
14417
|
+
*/
|
|
14418
|
+
worldId: WorldId;
|
|
14419
|
+
};
|
|
14420
|
+
query?: never;
|
|
14421
|
+
url: '/worlds/{worldId}/removeTags';
|
|
14422
|
+
};
|
|
14423
|
+
type RemoveWorldTagsErrors = {
|
|
14424
|
+
/**
|
|
14425
|
+
* Error response when a world owner attempts to add an invalid, restricted, or duplicate tag to a world's profile, attempts to add tags above the limit for its profile, or attempts to remove invalid, restricted, or absent tag from its profile.
|
|
14426
|
+
*/
|
|
14427
|
+
400: _Error;
|
|
14428
|
+
/**
|
|
14429
|
+
* Error response due to missing auth cookie.
|
|
14430
|
+
*/
|
|
14431
|
+
401: _Error;
|
|
14432
|
+
};
|
|
14433
|
+
type RemoveWorldTagsError = RemoveWorldTagsErrors[keyof RemoveWorldTagsErrors];
|
|
14434
|
+
type RemoveWorldTagsResponses = {
|
|
14435
|
+
/**
|
|
14436
|
+
* Returns a single World object.
|
|
14437
|
+
*/
|
|
14438
|
+
200: World;
|
|
14439
|
+
};
|
|
14440
|
+
type RemoveWorldTagsResponse = RemoveWorldTagsResponses[keyof RemoveWorldTagsResponses];
|
|
13903
14441
|
type GetWorldInstance = {
|
|
13904
14442
|
body?: never;
|
|
13905
14443
|
path: {
|
|
13906
14444
|
/**
|
|
13907
14445
|
* Must be a valid world ID.
|
|
13908
14446
|
*/
|
|
13909
|
-
worldId:
|
|
14447
|
+
worldId: WorldId;
|
|
13910
14448
|
/**
|
|
13911
14449
|
* Must be a valid instance ID.
|
|
13912
14450
|
*/
|
|
13913
|
-
instanceId:
|
|
14451
|
+
instanceId: InstanceId;
|
|
13914
14452
|
};
|
|
13915
14453
|
query?: never;
|
|
13916
14454
|
url: '/worlds/{worldId}/{instanceId}';
|
|
@@ -14416,6 +14954,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
14416
14954
|
* Gets active licenses
|
|
14417
14955
|
*/
|
|
14418
14956
|
getActiveLicenses<ThrowOnError extends boolean = false>(options?: Options<GetActiveLicenses, ThrowOnError>): RequestResult<GetActiveLicensesResponses, GetActiveLicensesErrors, ThrowOnError, "fields">;
|
|
14957
|
+
/**
|
|
14958
|
+
* Get Earnings Metrics
|
|
14959
|
+
*
|
|
14960
|
+
* Gets earnings totals and breakdown metrics for the currently authenticated user.
|
|
14961
|
+
*/
|
|
14962
|
+
getEarningsMetrics<ThrowOnError extends boolean = false>(options?: Options<GetEarningsMetrics, ThrowOnError>): RequestResult<GetEarningsMetricsResponses, GetEarningsMetricsErrors, ThrowOnError, "fields">;
|
|
14419
14963
|
/**
|
|
14420
14964
|
* Purchase Product Listing
|
|
14421
14965
|
*
|
|
@@ -14428,6 +14972,24 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
14428
14972
|
* Gets product purchases
|
|
14429
14973
|
*/
|
|
14430
14974
|
getProductPurchases<ThrowOnError extends boolean = false>(options: Options<GetProductPurchases, ThrowOnError>): RequestResult<GetProductPurchasesResponses, GetProductPurchasesErrors, ThrowOnError, "fields">;
|
|
14975
|
+
/**
|
|
14976
|
+
* Get Product Purchase
|
|
14977
|
+
*
|
|
14978
|
+
* Gets a single product purchase
|
|
14979
|
+
*/
|
|
14980
|
+
getProductPurchase<ThrowOnError extends boolean = false>(options: Options<GetProductPurchase, ThrowOnError>): RequestResult<GetProductPurchaseResponses, GetProductPurchaseErrors, ThrowOnError, "fields">;
|
|
14981
|
+
/**
|
|
14982
|
+
* Get Product Purchase Stacks
|
|
14983
|
+
*
|
|
14984
|
+
* Gets stacks for a product purchase
|
|
14985
|
+
*/
|
|
14986
|
+
getProductPurchaseStacks<ThrowOnError extends boolean = false>(options: Options<GetProductPurchaseStacks, ThrowOnError>): RequestResult<GetProductPurchaseStacksResponses, GetProductPurchaseStacksErrors, ThrowOnError, "fields">;
|
|
14987
|
+
/**
|
|
14988
|
+
* Get Seller Eligibility
|
|
14989
|
+
*
|
|
14990
|
+
* Get the eligibility of the currently authenticated user to become a seller
|
|
14991
|
+
*/
|
|
14992
|
+
getSellerEligibility<ThrowOnError extends boolean = false>(options?: Options<GetSellerEligibility, ThrowOnError>): RequestResult<GetSellerEligibilityResponses, GetSellerEligibilityErrors, ThrowOnError, "fields">;
|
|
14431
14993
|
/**
|
|
14432
14994
|
* Get Store
|
|
14433
14995
|
*
|
|
@@ -14762,7 +15324,7 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
14762
15324
|
/**
|
|
14763
15325
|
* Get Group Member
|
|
14764
15326
|
*
|
|
14765
|
-
* Returns a
|
|
15327
|
+
* Returns a GroupMember.
|
|
14766
15328
|
*/
|
|
14767
15329
|
getGroupMember<ThrowOnError extends boolean = false>(options: Options<GetGroupMember, ThrowOnError>): RequestResult<GetGroupMemberResponses, GetGroupMemberErrors, ThrowOnError, "fields">;
|
|
14768
15330
|
/**
|
|
@@ -15081,9 +15643,21 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
15081
15643
|
/**
|
|
15082
15644
|
* Show jam submissions
|
|
15083
15645
|
*
|
|
15084
|
-
* Returns all submissions of a jam.
|
|
15646
|
+
* Returns all submissions of a jam. Can filter by contentId (for world or avatar jams) or submitterId (for a participant).
|
|
15085
15647
|
*/
|
|
15086
15648
|
getJamSubmissions<ThrowOnError extends boolean = false>(options: Options<GetJamSubmissions, ThrowOnError>): RequestResult<GetJamSubmissionsResponses, GetJamSubmissionsErrors, ThrowOnError, "fields">;
|
|
15649
|
+
/**
|
|
15650
|
+
* Submit Jam Content
|
|
15651
|
+
*
|
|
15652
|
+
* Submits content to a jam. The content must have been uploaded by the submitter, and both the content upload and jam submission must be made within the jam's designated times.
|
|
15653
|
+
*/
|
|
15654
|
+
submitJamContent<ThrowOnError extends boolean = false>(options: Options<SubmitJamContent, ThrowOnError>): RequestResult<SubmitJamContentResponses, SubmitJamContentErrors, ThrowOnError, "fields">;
|
|
15655
|
+
/**
|
|
15656
|
+
* Delete Jam Submission
|
|
15657
|
+
*
|
|
15658
|
+
* Withdraws a content submission from a jam.
|
|
15659
|
+
*/
|
|
15660
|
+
deleteJamSubmission<ThrowOnError extends boolean = false>(options: Options<DeleteJamSubmission, ThrowOnError>): RequestResult<DeleteJamSubmissionResponses, DeleteJamSubmissionErrors, ThrowOnError, "fields">;
|
|
15087
15661
|
/**
|
|
15088
15662
|
* Download JavaScript
|
|
15089
15663
|
*
|
|
@@ -15336,6 +15910,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
15336
15910
|
* Requests with photo an invite from a user. Returns the Notification of type `requestInvite` that was sent.
|
|
15337
15911
|
*/
|
|
15338
15912
|
requestInviteWithPhoto<ThrowOnError extends boolean = false>(options: Options<RequestInviteWithPhoto, ThrowOnError>): RequestResult<RequestInviteWithPhotoResponses, RequestInviteWithPhotoErrors, ThrowOnError, "fields">;
|
|
15913
|
+
/**
|
|
15914
|
+
* Redeem Reward
|
|
15915
|
+
*
|
|
15916
|
+
* Redeem a reward for the currently logged in user.
|
|
15917
|
+
*/
|
|
15918
|
+
redeemReward<ThrowOnError extends boolean = false>(options: Options<RedeemReward, ThrowOnError>): RequestResult<RedeemRewardResponses, RedeemRewardErrors, ThrowOnError, "fields">;
|
|
15339
15919
|
/**
|
|
15340
15920
|
* List Subscriptions
|
|
15341
15921
|
*
|
|
@@ -15392,6 +15972,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
15392
15972
|
* Gets the economy account of a user
|
|
15393
15973
|
*/
|
|
15394
15974
|
getEconomyAccount<ThrowOnError extends boolean = false>(options: Options<GetEconomyAccount, ThrowOnError>): RequestResult<GetEconomyAccountResponses, GetEconomyAccountErrors, ThrowOnError, "fields">;
|
|
15975
|
+
/**
|
|
15976
|
+
* Get Product Purchase History
|
|
15977
|
+
*
|
|
15978
|
+
* Gets a history of product purchases
|
|
15979
|
+
*/
|
|
15980
|
+
getProductPurchaseHistory<ThrowOnError extends boolean = false>(options: Options<GetProductPurchaseHistory, ThrowOnError>): RequestResult<GetProductPurchaseHistoryResponses, GetProductPurchaseHistoryErrors, ThrowOnError, "fields">;
|
|
15395
15981
|
/**
|
|
15396
15982
|
* Delete Friend Request
|
|
15397
15983
|
*
|
|
@@ -15602,6 +16188,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
15602
16188
|
* Get the user's eligibility status for subscriptions.
|
|
15603
16189
|
*/
|
|
15604
16190
|
getUserSubscriptionEligible<ThrowOnError extends boolean = false>(options: Options<GetUserSubscriptionEligible, ThrowOnError>): RequestResult<GetUserSubscriptionEligibleResponses, GetUserSubscriptionEligibleErrors, ThrowOnError, "fields">;
|
|
16191
|
+
/**
|
|
16192
|
+
* Get User Tutorial Status
|
|
16193
|
+
*
|
|
16194
|
+
* Gets the status of completed or outstanding tutorials for the specified user.
|
|
16195
|
+
*/
|
|
16196
|
+
getUserTutorialStatus<ThrowOnError extends boolean = false>(options: Options<GetUserTutorialStatus, ThrowOnError>): RequestResult<GetUserTutorialStatusResponses, GetUserTutorialStatusErrors, ThrowOnError, "fields">;
|
|
15605
16197
|
/**
|
|
15606
16198
|
* Delete User Persistence
|
|
15607
16199
|
*
|
|
@@ -15682,6 +16274,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
15682
16274
|
* Update information about a specific World.
|
|
15683
16275
|
*/
|
|
15684
16276
|
updateWorld<ThrowOnError extends boolean = false>(options: Options<UpdateWorld, ThrowOnError>): RequestResult<UpdateWorldResponses, UpdateWorldErrors, ThrowOnError, "fields">;
|
|
16277
|
+
/**
|
|
16278
|
+
* Add World Tags
|
|
16279
|
+
*
|
|
16280
|
+
* Adds tags to the world's profile
|
|
16281
|
+
*/
|
|
16282
|
+
addWorldTags<ThrowOnError extends boolean = false>(options: Options<AddWorldTags, ThrowOnError>): RequestResult<AddWorldTagsResponses, AddWorldTagsErrors, ThrowOnError, "fields">;
|
|
15685
16283
|
/**
|
|
15686
16284
|
* Get World Metadata
|
|
15687
16285
|
*
|
|
@@ -15690,6 +16288,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
15690
16288
|
* @deprecated
|
|
15691
16289
|
*/
|
|
15692
16290
|
getWorldMetadata<ThrowOnError extends boolean = false>(options: Options<GetWorldMetadata, ThrowOnError>): RequestResult<GetWorldMetadataResponses, GetWorldMetadataErrors, ThrowOnError, "fields">;
|
|
16291
|
+
/**
|
|
16292
|
+
* Delete World Platform
|
|
16293
|
+
*
|
|
16294
|
+
* Deletes a world platform.
|
|
16295
|
+
*/
|
|
16296
|
+
deleteWorldPlatform<ThrowOnError extends boolean = false>(options: Options<DeleteWorldPlatform, ThrowOnError>): RequestResult<DeleteWorldPlatformResponses, DeleteWorldPlatformErrors, ThrowOnError, "fields">;
|
|
15693
16297
|
/**
|
|
15694
16298
|
* Unpublish World
|
|
15695
16299
|
*
|
|
@@ -15708,6 +16312,12 @@ declare class VRChatInternal extends HeyApiClient {
|
|
|
15708
16312
|
* Publish a world. You can only publish one world per week.
|
|
15709
16313
|
*/
|
|
15710
16314
|
publishWorld<ThrowOnError extends boolean = false>(options: Options<PublishWorld, ThrowOnError>): RequestResult<PublishWorldResponses, PublishWorldErrors, ThrowOnError, "fields">;
|
|
16315
|
+
/**
|
|
16316
|
+
* Remove World Tags
|
|
16317
|
+
*
|
|
16318
|
+
* Removes tags from the world's profile
|
|
16319
|
+
*/
|
|
16320
|
+
removeWorldTags<ThrowOnError extends boolean = false>(options: Options<RemoveWorldTags, ThrowOnError>): RequestResult<RemoveWorldTagsResponses, RemoveWorldTagsErrors, ThrowOnError, "fields">;
|
|
15711
16321
|
/**
|
|
15712
16322
|
* Get World Instance
|
|
15713
16323
|
*
|
|
@@ -15739,7 +16349,7 @@ interface VRChatApplication {
|
|
|
15739
16349
|
|
|
15740
16350
|
interface EventData {
|
|
15741
16351
|
"group-member-updated": {
|
|
15742
|
-
member:
|
|
16352
|
+
member: GroupMember;
|
|
15743
16353
|
};
|
|
15744
16354
|
"group-role-updated": {
|
|
15745
16355
|
role: GroupRole;
|
|
@@ -15860,4 +16470,4 @@ declare class VRChat extends VRChatInternal {
|
|
|
15860
16470
|
private saveCookies;
|
|
15861
16471
|
}
|
|
15862
16472
|
|
|
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 };
|
|
16473
|
+
export { type CurrentUserPresence as $, type AdminUnityPackage as A, type GetRecentWorldsResponses as A$, type GetMutualGroups as A0, type GetMutualGroupsErrors as A1, type GetMutualGroupsError as A2, type GetMutualGroupsResponses as A3, type GetMutualGroupsResponse as A4, type DeleteAllUserPersistenceData as A5, type DeleteAllUserPersistenceDataErrors as A6, type DeleteAllUserPersistenceDataError as A7, type DeleteAllUserPersistenceDataResponses as A8, type RemoveTags as A9, type GetUserByNameResponse as AA, type GetCurrentOnlineUsers as AB, type GetCurrentOnlineUsersResponses as AC, type GetCurrentOnlineUsersResponse as AD, type SearchWorlds as AE, type SearchWorldsErrors as AF, type SearchWorldsError as AG, type SearchWorldsResponses as AH, type SearchWorldsResponse as AI, type CreateWorld as AJ, type CreateWorldErrors as AK, type CreateWorldError as AL, type CreateWorldResponses as AM, type CreateWorldResponse as AN, type GetActiveWorlds as AO, type GetActiveWorldsErrors as AP, type GetActiveWorldsError as AQ, type GetActiveWorldsResponses as AR, type GetActiveWorldsResponse as AS, type GetFavoritedWorlds as AT, type GetFavoritedWorldsErrors as AU, type GetFavoritedWorldsError as AV, type GetFavoritedWorldsResponses as AW, type GetFavoritedWorldsResponse as AX, type GetRecentWorlds as AY, type GetRecentWorldsErrors as AZ, type GetRecentWorldsError as A_, type RemoveTagsErrors as Aa, type RemoveTagsError as Ab, type RemoveTagsResponses as Ac, type RemoveTagsResponse as Ad, type GetUserSubscriptionEligible as Ae, type GetUserSubscriptionEligibleErrors as Af, type GetUserSubscriptionEligibleError as Ag, type GetUserSubscriptionEligibleResponses as Ah, type GetUserSubscriptionEligibleResponse as Ai, type GetUserTutorialStatus as Aj, type GetUserTutorialStatusErrors as Ak, type GetUserTutorialStatusError as Al, type GetUserTutorialStatusResponses as Am, type GetUserTutorialStatusResponse as An, type DeleteUserPersistence as Ao, type DeleteUserPersistenceErrors as Ap, type DeleteUserPersistenceError as Aq, type DeleteUserPersistenceResponses as Ar, type CheckUserPersistenceExists as As, type CheckUserPersistenceExistsErrors as At, type CheckUserPersistenceExistsError as Au, type CheckUserPersistenceExistsResponses as Av, type GetUserByName as Aw, type GetUserByNameErrors as Ax, type GetUserByNameError as Ay, type GetUserByNameResponses as Az, type BadgeId as B, type GetRecentWorldsResponse as B0, type DeleteWorld as B1, type DeleteWorldErrors as B2, type DeleteWorldError as B3, type DeleteWorldResponses as B4, type GetWorld as B5, type GetWorldErrors as B6, type GetWorldError as B7, type GetWorldResponses as B8, type GetWorldResponse as B9, type GetWorldPublishStatusResponses as BA, type GetWorldPublishStatusResponse as BB, type PublishWorld as BC, type PublishWorldErrors as BD, type PublishWorldError as BE, type PublishWorldResponses as BF, type RemoveWorldTags as BG, type RemoveWorldTagsErrors as BH, type RemoveWorldTagsError as BI, type RemoveWorldTagsResponses as BJ, type RemoveWorldTagsResponse as BK, type GetWorldInstance as BL, type GetWorldInstanceErrors as BM, type GetWorldInstanceError as BN, type GetWorldInstanceResponses as BO, type GetWorldInstanceResponse as BP, type VRChatWebsocketOptions as BQ, VRChatWebsocket as BR, type UpdateWorld as Ba, type UpdateWorldErrors as Bb, type UpdateWorldError as Bc, type UpdateWorldResponses as Bd, type UpdateWorldResponse as Be, type AddWorldTags as Bf, type AddWorldTagsErrors as Bg, type AddWorldTagsError as Bh, type AddWorldTagsResponses as Bi, type AddWorldTagsResponse as Bj, type GetWorldMetadata as Bk, type GetWorldMetadataErrors as Bl, type GetWorldMetadataError as Bm, type GetWorldMetadataResponses as Bn, type GetWorldMetadataResponse as Bo, type DeleteWorldPlatform as Bp, type DeleteWorldPlatformErrors as Bq, type DeleteWorldPlatformError as Br, type DeleteWorldPlatformResponses as Bs, type UnpublishWorld as Bt, type UnpublishWorldErrors as Bu, type UnpublishWorldError as Bv, type UnpublishWorldResponses as Bw, type GetWorldPublishStatus as Bx, type GetWorldPublishStatusErrors as By, type GetWorldPublishStatusError as Bz, type ClientOptions as C, type RegisterUserAccountRequest as D, type AccountDeletionLog as E, type FileId as F, type AgeVerificationStatus as G, type AgeVerified as H, type Badge as I, type AvatarId as J, type CurrentAvatarImageUrl as K, type LoginCredentials as L, type CurrentAvatarThumbnailImageUrl as M, type DeveloperType as N, type DiscordId as O, type Platform as P, type DiscordDetails 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 PastDisplayName as X, type GroupId as Y, type LocationId as Z, type _Error as _, VRChatError as a, type ApiConfigEvents as a$, type UserState as a0, type UserStatus as a1, type CurrentUser as a2, type TwoFactorAuthType as a3, type RequiresTwoFactorAuth as a4, type Disable2FaResult as a5, type TwoFactorEmailCode as a6, type Verify2FaEmailCodeResult as a7, type TwoFactorAuthCode as a8, type Verify2FaResult as a9, type UnityPackage as aA, type Avatar as aB, type LocalDateTime as aC, type CreateAvatarRequest as aD, type ServiceQueueStats as aE, type UpdateAvatarRequest as aF, type ServiceStatus as aG, type CalendarEventAccess as aH, type CalendarEventCategory as aI, type CalendarId as aJ, type LanguageCode as aK, type CalendarEventPlatform as aL, type GroupRoleId as aM, type CalendarEvent as aN, type PaginatedCalendarEventList as aO, type CalendarEventDiscoveryScope as aP, type CalendarEventDiscoveryInclusion as aQ, type CalendarEventDiscovery as aR, type CreateCalendarEventRequest as aS, type UpdateCalendarEventRequest as aT, type FollowCalendarEventRequest as aU, type ApiConfigAnnouncement as aV, type ApiConfigAudioConfig as aW, type PerformanceLimiterInfo as aX, type ApiConfigConstants as aY, type ApiConfigDownloadUrlList as aZ, type DynamicContentRow as a_, type Pending2FaResult as aa, type AvatarModerationType as ab, type AvatarModeration as ac, type CreateAvatarModerationRequest as ad, type AvatarModerationCreated as ae, type OkStatus2 as af, type FavoriteGroupLimits as ag, type FavoriteLimits as ah, type LimitedUserFriend as ai, type Success as aj, type NotificationType as ak, type Notification as al, type NotificationId as am, type PlayerModerationType as an, type PlayerModerationId as ao, type PlayerModeration as ap, type ModerateUserRequest as aq, type LicenseGroupId as ar, type UserSubscription as as, type TwoFactorRecoveryCodes as at, type AvatarStyleId as au, type AvatarStyle as av, type SortOption as aw, type OrderOption as ax, type UnityPackageId as ay, type PerformanceRatings as az, type VRChatAuthentication as b, type GroupMemberId as b$, type PlatformBuildInfo as b0, type ReportCategory as b1, type ReportReason as b2, type ApiConfig as b3, type LicenseAction as b4, type LicenseType as b5, type License as b6, type EarningsMetrics as b7, type ProductPurchaseLocationType as b8, type StoreId as b9, type AddFavoriteRequest as bA, type MimeType as bB, type CreateFileRequest as bC, type ImageAnimationStyle as bD, type ImageLoopStyle as bE, type ImageMask as bF, type FileStatus as bG, type FileData as bH, type FileVersion as bI, type File as bJ, type ImagePurpose as bK, type CreateFileVersionRequest as bL, type FinishFileDataUploadRequest as bM, type FileUploadUrl as bN, type FileVersionUploadStatus as bO, type GroupGalleryId as bP, type GroupGalleryFileOrderRequest as bQ, type GroupGalleryFileOrder as bR, type GroupDiscriminator as bS, type GroupGallery as bT, type GroupMemberStatus as bU, type GroupShortCode as bV, type LimitedGroup as bW, type GroupJoinState as bX, type GroupPrivacy as bY, type GroupRoleTemplate as bZ, type CreateGroupRequest as b_, type ProductId as ba, type ProductListingVariantId as bb, type PurchaseProductListingRequest as bc, type ProductListingType as bd, type ProductPurchaseId as be, type ProductPurchase as bf, type SortOptionProductPurchase as bg, type OrderOptionShort as bh, type SellerEligibility as bi, type ProductType as bj, type Product as bk, type ProductListingVariant as bl, type ProductListing as bm, type StoreShelfId as bn, type StoreShelf as bo, type StoreType as bp, type Store as bq, type StoreView as br, type FavoriteType as bs, type FavoriteName as bt, type FavoriteGroupId as bu, type FavoriteGroupVisibility as bv, type FavoriteGroup as bw, type UpdateFavoriteGroupRequest as bx, type FavoriteId as by, type Favorite as bz, type VRChatOptions as c, type InventoryItemId as c$, type GroupPermissions as c0, type GroupMyMember as c1, type GroupRole as c2, type Group as c3, type GroupRoleTemplateValues as c4, type UpdateGroupRequest as c5, type GroupAnnouncementId as c6, type GroupAnnouncement as c7, type CreateGroupAnnouncementRequest as c8, type GroupAuditLogEntryType as c9, type CreateGroupPostRequest as cA, type GroupJoinRequestAction as cB, type RespondGroupJoinRequest as cC, type CreateGroupRoleRequest as cD, type UpdateGroupRoleRequest as cE, type GroupTransferable as cF, type TransferGroupRequest as cG, type ApiHealth as cH, type InfoPushDataClickable as cI, type InfoPushDataArticleContent as cJ, type InfoPushDataArticle as cK, type InfoPushData as cL, type InfoPush as cM, type GroupAccessType as cN, type InstanceOwnerId as cO, type InstanceRegion as cP, type InstanceType as cQ, type CreateInstanceRequest as cR, type Region as cS, type InstancePlatforms as cT, type LimitedUserInstance as cU, type Instance as cV, type InstanceShortNameResponse as cW, type InventoryEquipSlot as cX, type InventoryItemType as cY, type InventoryFlag as cZ, type InventoryDefaultAttributes as c_, type GroupAuditLogId as ca, type GroupAuditLogEntry as cb, type PaginatedGroupAuditLogEntryList as cc, type GroupMemberLimitedUser as cd, type GroupMember as ce, type BanGroupMemberRequest as cf, type CreateGroupGalleryRequest as cg, type GroupGalleryImageId as ch, type GroupGalleryImage as ci, type UpdateGroupGalleryRequest as cj, type AddGroupGalleryImageRequest as ck, type InstanceId as cl, type InstanceContentSettings as cm, type UdonProductId as cn, type World as co, type GroupInstance as cp, type DeclineGroupInviteRequest as cq, type CreateGroupInviteRequest as cr, type JoinGroupRequest as cs, type GroupSearchSort as ct, type GroupUserVisibility as cu, type UpdateGroupMemberRequest as cv, type GroupRoleIdList as cw, type GroupPermission as cx, type GroupPostVisibility as cy, type GroupPost as cz, type LoginOptions as d, type PropUnityPackage as d$, type InventoryTemplateId as d0, type PropId as d1, type InventoryMetadata as d2, type InventoryUserAttributes as d3, type InventoryItem as d4, type Inventory as d5, type ShareInventoryItemDirectRequest as d6, type OkStatus as d7, type InventorySpawn as d8, type InventoryDropId as d9, type InviteMessage as dA, type UpdateInviteMessageRequest as dB, type ModerationReportId as dC, type ModerationReport as dD, type PaginatedModerationReportList as dE, type ContentFilter as dF, type SubmitModerationReportRequest as dG, type NotificationV2Category as dH, type NotificationV2DataEmpty as dI, type NotificationV2DataBadgeEarned as dJ, type NotificationV2DataBoop as dK, type NotificationV2DataEventAnnouncement as dL, type NotificationV2DataGroupAnnouncement as dM, type NotificationV2DataGroupInformative as dN, type NotificationV2DataGroupTransfer as dO, type EmojiId as dP, type NotificationV2DetailsBoop as dQ, type NotificationV2ResponseIcon as dR, type NotificationV2ResponseType as dS, type NotificationV2Response as dT, type NotificationV2Type as dU, type NotificationV2 as dV, type ReplyNotificationV2Request as dW, type RespondNotificationV2Request as dX, type PrintId as dY, type Print as dZ, type PropSpawnType as d_, type InventoryNotificationDetails as da, type InventoryDrop as db, type InventoryTemplate as dc, type UpdateInventoryItemRequest as dd, type SuccessFlag as de, type InventoryConsumptionResults as df, type EquipInventoryItemRequest as dg, type NotificationDetailEmpty as dh, type NotificationDetailBoop as di, type NotificationDetailInvite as dj, type NotificationDetailInviteResponse as dk, type NotificationDetailRequestInvite as dl, type NotificationDetailRequestInviteResponse as dm, type NotificationDetailVoteToKick as dn, type SentNotification as dp, type InviteResponse as dq, type InviteRequest as dr, type JamId as ds, type Jam as dt, type JamSubmissionId as du, type JamSubmission as dv, type CreateJamSubmissionRequest as dw, type LicenseGroup as dx, type InviteMessageType as dy, type InviteMessageId as dz, type LoginResult as e, type UserId2 as e$, type PropPlacementMask as e0, type Prop as e1, type CreatePropRequest as e2, type UpdatePropRequest as e3, type PropPublishStatus as e4, type RequestInviteRequest as e5, type RewardRedemptionRequest as e6, type RewardBadge as e7, type RewardRedemption as e8, type RewardRedemptionResult as e9, type UserSubscriptionEligible as eA, type TutorialKey as eB, type TutorialStatus as eC, type LimitedUnityPackage as eD, type LimitedWorld as eE, type CreateWorldRequest as eF, type FavoritedWorld as eG, type UpdateWorldRequest as eH, type ChangeWorldTagsRequest as eI, type WorldMetadata as eJ, type WorldPublishStatus as eK, type TransactionId2 as eL, type AdminAssetBundleId as eM, type FileId2 as eN, type VersionId as eO, type AssetReviewId as eP, type ConfirmEmailUserId as eQ, type ConfirmEmailToken as eR, type Email as eS, type DisplayName as eT, type UsernameQuery as eU, type ExcludeUserId as eV, type TargetAvatarId as eW, type AvatarModerationType2 as eX, type Offset as eY, type Number as eZ, type Offline as e_, type TiliaStatus as ea, type TokenBundle as eb, type Balance as ec, type EconomyAccount as ed, type ProductPurchaseRecord as ee, type ProductPurchaseHistory as ef, type FriendStatus as eg, type TiliaTos as eh, type UpdateTiliaTosRequest as ei, type UserNoteId as ej, type UserNote as ek, type UpdateUserNoteRequest as el, type LimitedUserSearch as em, type User as en, type UpdateUserRequest as eo, type ChangeUserTagsRequest as ep, type UpdateUserBadgeRequest as eq, type BoopRequest as er, type UserCreditsEligible as es, type FeedbackId as et, type Feedback as eu, type LimitedUserGroups as ev, type UserAllGroupPermissions as ew, type RepresentedGroup as ex, type Mutuals as ey, type MutualFriend as ez, type TransactionAgreement as f, type InventoryItemTags as f$, type NotificationId2 as f0, type UserIdQuery as f1, type VerifyLoginPlaceToken as f2, type Featured as f3, type Sort as f4, type Order as f5, type Tag2 as f6, type Notag as f7, type ReleaseStatus2 as f8, type MaxUnityVersion as f9, type OrderShort as fA, type ProductPurchaseId2 as fB, type StoreId2 as fC, type HydrateListings as fD, type HydrateProducts as fE, type StoreView2 as fF, type FavoriteGroupType as fG, type FavoriteGroupName as fH, type FavoriteId2 as fI, type FileType as fJ, type StartDate as fK, type EndDate as fL, type ActorIds as fM, type EventTypes as fN, type TargetIds as fO, type GroupGalleryId2 as fP, type GroupGalleryImageId2 as fQ, type GroupMemberSort as fR, type GroupMemberRoleFilter as fS, type GroupRoleId2 as fT, type Require as fU, type Include as fV, type WorldId2 as fW, type InstanceId2 as fX, type InventoryHolderId as fY, type InventoryEquipSlot2 as fZ, type InventorySortOrder as f_, type MinUnityVersion as fa, type Platform2 as fb, type IsInternalVariant as fc, type Search as fd, type UserIdAdmin as fe, type AvatarId2 as ff, type MonthDate as fg, type CalendarDiscoveryScope as fh, type CalendarDiscoveryCategories as fi, type CalendarDiscoveryTags as fj, type CalendarDiscoveryFeatured as fk, type CalendarDiscoveryNonFeatured as fl, type CalendarDiscoveryPersonalized as fm, type CalendarDiscoveryMinimumInterestCount as fn, type CalendarDiscoveryMinimumRemainingMinutes as fo, type CalendarDiscoveryUpcomingOffsetMinutes as fp, type CalendarDiscoveryNextCursor as fq, type CalendarSearchTerm as fr, type UtcOffset as fs, type GroupId2 as ft, type CalendarId2 as fu, type Variant as fv, type Branch as fw, type BuyerId as fx, type MostRecentFlag as fy, type SortProductPurchase as fz, type TransactionId as g, type SubmitContentAgreementError as g$, type InventoryItemTypes as g0, type InventoryItemFlags as g1, type InventoryItemNotTypes as g2, type InventoryItemNotFlags as g3, type InventoryItemArchived as g4, type InventoryPedestalItemId as g5, type InventoryPedestalDuration as g6, type Active as g7, type InventorySpawnItemId as g8, type InventoryTemplateId2 as g9, type BadgeId2 as gA, type SubscriptionId as gB, type SteamId as gC, type Noplatform as gD, type Fuzzy as gE, type AvatarSpecific as gF, type PublishedPlatform as gG, type GetSteamTransactions as gH, type GetSteamTransactionsErrors as gI, type GetSteamTransactionsError as gJ, type GetSteamTransactionsResponses as gK, type GetSteamTransactionsResponse as gL, type GetSteamTransaction as gM, type GetSteamTransactionErrors as gN, type GetSteamTransactionError as gO, type GetSteamTransactionResponses as gP, type GetSteamTransactionResponse as gQ, type GetAdminAssetBundle as gR, type GetAdminAssetBundleResponses as gS, type GetAdminAssetBundleResponse as gT, type GetContentAgreementStatus as gU, type GetContentAgreementStatusErrors as gV, type GetContentAgreementStatusError as gW, type GetContentAgreementStatusResponses as gX, type GetContentAgreementStatusResponse as gY, type SubmitContentAgreement as gZ, type SubmitContentAgreementErrors as g_, type InventoryItemId2 as ga, type InventoryItemSlotAsId as gb, type JamId2 as gc, type ContentId as gd, type SubmitterId as ge, type JamSubmissionId2 as gf, type LicenseGroupId2 as gg, type ProductId2 as gh, type Hydrate as gi, type MessageType as gj, type Slot as gk, type ModerationReportingUserId as gl, type ModerationReportStatus as gm, type ModerationReportType as gn, type ModerationReportId2 as go, type Limit as gp, type PermissionId2 as gq, type PrintId2 as gr, type AuthorId as gs, type PropId2 as gt, type DateMin as gu, type DateMax as gv, type FromUserId as gw, type ToUserId as gx, type GroupIdFilter as gy, type UserNoteId2 as gz, type TransactionStatus as h, type Enable2FaErrors as h$, type SubmitContentAgreementResponses as h0, type SubmitContentAgreementResponse as h1, type GetFileAnalysis as h2, type GetFileAnalysisErrors as h3, type GetFileAnalysisError as h4, type GetFileAnalysisResponses as h5, type GetFileAnalysisResponse as h6, type GetFileAnalysisSecurity as h7, type GetFileAnalysisSecurityErrors as h8, type GetFileAnalysisSecurityError as h9, type GetAssignedPermissionsResponse as hA, type RegisterUserAccount as hB, type RegisterUserAccountErrors as hC, type RegisterUserAccountError as hD, type RegisterUserAccountResponses as hE, type RegisterUserAccountResponse as hF, type Disable2Fa as hG, type Disable2FaErrors as hH, type Disable2FaError as hI, type Disable2FaResponses as hJ, type Disable2FaResponse as hK, type Verify2FaEmailCode as hL, type Verify2FaEmailCodeErrors as hM, type Verify2FaEmailCodeError as hN, type Verify2FaEmailCodeResponses as hO, type Verify2FaEmailCodeResponse as hP, type VerifyRecoveryCode as hQ, type VerifyRecoveryCodeErrors as hR, type VerifyRecoveryCodeError as hS, type VerifyRecoveryCodeResponses as hT, type VerifyRecoveryCodeResponse as hU, type CancelPending2Fa as hV, type CancelPending2FaErrors as hW, type CancelPending2FaError as hX, type CancelPending2FaResponses as hY, type CancelPending2FaResponse as hZ, type Enable2Fa as h_, type GetFileAnalysisSecurityResponses as ha, type GetFileAnalysisSecurityResponse as hb, type GetFileAnalysisStandard as hc, type GetFileAnalysisStandardErrors as hd, type GetFileAnalysisStandardError as he, type GetFileAnalysisStandardResponses as hf, type GetFileAnalysisStandardResponse as hg, type UpdateAssetReviewNotes as hh, type UpdateAssetReviewNotesErrors as hi, type UpdateAssetReviewNotesError as hj, type UpdateAssetReviewNotesResponses as hk, type VerifyAuthToken as hl, type VerifyAuthTokenErrors as hm, type VerifyAuthTokenError as hn, type VerifyAuthTokenResponses as ho, type VerifyAuthTokenResponse as hp, type ConfirmEmail as hq, type CheckUserExists as hr, type CheckUserExistsErrors as hs, type CheckUserExistsError as ht, type CheckUserExistsResponses as hu, type CheckUserExistsResponse as hv, type GetAssignedPermissions as hw, type GetAssignedPermissionsErrors as hx, type GetAssignedPermissionsError as hy, type GetAssignedPermissionsResponses as hz, type TransactionSteamWalletInfo as i, type GetNotificationResponses as i$, type Enable2FaError as i0, type Enable2FaResponses as i1, type Enable2FaResponse as i2, type VerifyPending2Fa as i3, type VerifyPending2FaErrors as i4, type VerifyPending2FaError as i5, type VerifyPending2FaResponses as i6, type VerifyPending2FaResponse as i7, type Verify2Fa as i8, type Verify2FaErrors as i9, type GetFavoriteLimitsErrors as iA, type GetFavoriteLimitsError as iB, type GetFavoriteLimitsResponses as iC, type GetFavoriteLimitsResponse as iD, type GetFriends as iE, type GetFriendsErrors as iF, type GetFriendsError as iG, type GetFriendsResponses as iH, type GetFriendsResponse as iI, type Unfriend as iJ, type UnfriendErrors as iK, type UnfriendError as iL, type UnfriendResponses as iM, type UnfriendResponse as iN, type GetNotifications as iO, type GetNotificationsErrors as iP, type GetNotificationsError as iQ, type GetNotificationsResponses as iR, type GetNotificationsResponse as iS, type ClearNotifications as iT, type ClearNotificationsErrors as iU, type ClearNotificationsError as iV, type ClearNotificationsResponses as iW, type ClearNotificationsResponse as iX, type GetNotification as iY, type GetNotificationErrors as iZ, type GetNotificationError as i_, type Verify2FaError as ia, type Verify2FaResponses as ib, type Verify2FaResponse as ic, type GetCurrentUser as id, type GetCurrentUserErrors as ie, type GetCurrentUserError as ig, type GetCurrentUserResponses as ih, type GetCurrentUserResponse as ii, type DeleteGlobalAvatarModeration as ij, type DeleteGlobalAvatarModerationErrors as ik, type DeleteGlobalAvatarModerationError as il, type DeleteGlobalAvatarModerationResponses as im, type DeleteGlobalAvatarModerationResponse as io, type GetGlobalAvatarModerations as ip, type GetGlobalAvatarModerationsErrors as iq, type GetGlobalAvatarModerationsError as ir, type GetGlobalAvatarModerationsResponses as is, type GetGlobalAvatarModerationsResponse as it, type CreateGlobalAvatarModeration as iu, type CreateGlobalAvatarModerationErrors as iv, type CreateGlobalAvatarModerationError as iw, type CreateGlobalAvatarModerationResponses as ix, type CreateGlobalAvatarModerationResponse as iy, type GetFavoriteLimits as iz, type TransactionSteamInfo as j, type CreateAvatarResponses as j$, type GetNotificationResponse as j0, type AcceptFriendRequest as j1, type AcceptFriendRequestErrors as j2, type AcceptFriendRequestError as j3, type AcceptFriendRequestResponses as j4, type AcceptFriendRequestResponse as j5, type DeleteNotification as j6, type DeleteNotificationErrors as j7, type DeleteNotificationError as j8, type DeleteNotificationResponses as j9, type GetCurrentSubscriptions as jA, type GetCurrentSubscriptionsErrors as jB, type GetCurrentSubscriptionsError as jC, type GetCurrentSubscriptionsResponses as jD, type GetCurrentSubscriptionsResponse as jE, type GetRecoveryCodes as jF, type GetRecoveryCodesErrors as jG, type GetRecoveryCodesError as jH, type GetRecoveryCodesResponses as jI, type GetRecoveryCodesResponse as jJ, type UnmoderateUser as jK, type UnmoderateUserErrors as jL, type UnmoderateUserError as jM, type UnmoderateUserResponses as jN, type UnmoderateUserResponse as jO, type VerifyLoginPlace as jP, type GetAvatarStyles as jQ, type GetAvatarStylesResponses as jR, type GetAvatarStylesResponse as jS, type SearchAvatars as jT, type SearchAvatarsErrors as jU, type SearchAvatarsError as jV, type SearchAvatarsResponses as jW, type SearchAvatarsResponse as jX, type CreateAvatar as jY, type CreateAvatarErrors as jZ, type CreateAvatarError as j_, type DeleteNotificationResponse as ja, type MarkNotificationAsRead as jb, type MarkNotificationAsReadErrors as jc, type MarkNotificationAsReadError as jd, type MarkNotificationAsReadResponses as je, type MarkNotificationAsReadResponse as jf, type ClearAllPlayerModerations as jg, type ClearAllPlayerModerationsErrors as jh, type ClearAllPlayerModerationsError as ji, type ClearAllPlayerModerationsResponses as jj, type ClearAllPlayerModerationsResponse as jk, type GetPlayerModerations as jl, type GetPlayerModerationsErrors as jm, type GetPlayerModerationsError as jn, type GetPlayerModerationsResponses as jo, type GetPlayerModerationsResponse as jp, type ModerateUser as jq, type ModerateUserErrors as jr, type ModerateUserError as js, type ModerateUserResponses as jt, type ModerateUserResponse as ju, type ResendEmailConfirmation as jv, type ResendEmailConfirmationErrors as jw, type ResendEmailConfirmationError as jx, type ResendEmailConfirmationResponses as jy, type ResendEmailConfirmationResponse as jz, type Subscription as k, type GetFeaturedCalendarEventsResponses as k$, type CreateAvatarResponse as k0, type GetFavoritedAvatars as k1, type GetFavoritedAvatarsErrors as k2, type GetFavoritedAvatarsError as k3, type GetFavoritedAvatarsResponses as k4, type GetFavoritedAvatarsResponse as k5, type GetImpostorQueueStats as k6, type GetImpostorQueueStatsErrors as k7, type GetImpostorQueueStatsError as k8, type GetImpostorQueueStatsResponses as k9, type EnqueueImpostorErrors as kA, type EnqueueImpostorError as kB, type EnqueueImpostorResponses as kC, type EnqueueImpostorResponse as kD, type SelectAvatar as kE, type SelectAvatarErrors as kF, type SelectAvatarError as kG, type SelectAvatarResponses as kH, type SelectAvatarResponse as kI, type SelectFallbackAvatar as kJ, type SelectFallbackAvatarErrors as kK, type SelectFallbackAvatarError as kL, type SelectFallbackAvatarResponses as kM, type SelectFallbackAvatarResponse as kN, type GetCalendarEvents as kO, type GetCalendarEventsErrors as kP, type GetCalendarEventsError as kQ, type GetCalendarEventsResponses as kR, type GetCalendarEventsResponse as kS, type DiscoverCalendarEvents as kT, type DiscoverCalendarEventsErrors as kU, type DiscoverCalendarEventsError as kV, type DiscoverCalendarEventsResponses as kW, type DiscoverCalendarEventsResponse as kX, type GetFeaturedCalendarEvents as kY, type GetFeaturedCalendarEventsErrors as kZ, type GetFeaturedCalendarEventsError as k_, type GetImpostorQueueStatsResponse as ka, type GetLicensedAvatars as kb, type GetLicensedAvatarsErrors as kc, type GetLicensedAvatarsError as kd, type GetLicensedAvatarsResponses as ke, type GetLicensedAvatarsResponse as kf, type DeleteAvatar as kg, type DeleteAvatarErrors as kh, type DeleteAvatarError as ki, type DeleteAvatarResponses as kj, type DeleteAvatarResponse as kk, type GetAvatar as kl, type GetAvatarErrors as km, type GetAvatarError as kn, type GetAvatarResponses as ko, type GetAvatarResponse as kp, type UpdateAvatar as kq, type UpdateAvatarErrors as kr, type UpdateAvatarError as ks, type UpdateAvatarResponses as kt, type UpdateAvatarResponse as ku, type DeleteImpostor as kv, type DeleteImpostorErrors as kw, type DeleteImpostorError as kx, type DeleteImpostorResponses as ky, type EnqueueImpostor as kz, type Transaction as l, type GetActiveLicensesResponse as l$, type GetFeaturedCalendarEventsResponse as l0, type GetFollowedCalendarEvents as l1, type GetFollowedCalendarEventsErrors as l2, type GetFollowedCalendarEventsError as l3, type GetFollowedCalendarEventsResponses as l4, type GetFollowedCalendarEventsResponse as l5, type SearchCalendarEvents as l6, type SearchCalendarEventsErrors as l7, type SearchCalendarEventsError as l8, type SearchCalendarEventsResponses as l9, type GetGroupCalendarEventIcs as lA, type GetGroupCalendarEventIcsErrors as lB, type GetGroupCalendarEventIcsError as lC, type GetGroupCalendarEventIcsResponses as lD, type GetGroupCalendarEventIcsResponse as lE, type UpdateGroupCalendarEvent as lF, type UpdateGroupCalendarEventErrors as lG, type UpdateGroupCalendarEventError as lH, type UpdateGroupCalendarEventResponses as lI, type UpdateGroupCalendarEventResponse as lJ, type FollowGroupCalendarEvent as lK, type FollowGroupCalendarEventErrors as lL, type FollowGroupCalendarEventError as lM, type FollowGroupCalendarEventResponses as lN, type FollowGroupCalendarEventResponse as lO, type GetConfig as lP, type GetConfigResponses as lQ, type GetConfigResponse as lR, type GetCss as lS, type GetCssErrors as lT, type GetCssError as lU, type GetCssResponses as lV, type GetCssResponse as lW, type GetActiveLicenses as lX, type GetActiveLicensesErrors as lY, type GetActiveLicensesError as lZ, type GetActiveLicensesResponses as l_, type SearchCalendarEventsResponse as la, type GetGroupCalendarEvents as lb, type GetGroupCalendarEventsErrors as lc, type GetGroupCalendarEventsError as ld, type GetGroupCalendarEventsResponses as le, type GetGroupCalendarEventsResponse as lf, type CreateGroupCalendarEvent as lg, type CreateGroupCalendarEventErrors as lh, type CreateGroupCalendarEventError as li, type CreateGroupCalendarEventResponses as lj, type CreateGroupCalendarEventResponse as lk, type GetGroupNextCalendarEvent as ll, type GetGroupNextCalendarEventErrors as lm, type GetGroupNextCalendarEventError as ln, type GetGroupNextCalendarEventResponses as lo, type GetGroupNextCalendarEventResponse as lp, type DeleteGroupCalendarEvent as lq, type DeleteGroupCalendarEventErrors as lr, type DeleteGroupCalendarEventError as ls, type DeleteGroupCalendarEventResponses as lt, type DeleteGroupCalendarEventResponse as lu, type GetGroupCalendarEvent as lv, type GetGroupCalendarEventErrors as lw, type GetGroupCalendarEventError as lx, type GetGroupCalendarEventResponses as ly, type GetGroupCalendarEventResponse as lz, type ReleaseStatus as m, type RemoveFavorite as m$, type GetEarningsMetrics as m0, type GetEarningsMetricsErrors as m1, type GetEarningsMetricsError as m2, type GetEarningsMetricsResponses as m3, type GetEarningsMetricsResponse as m4, type PurchaseProductListing as m5, type PurchaseProductListingErrors as m6, type PurchaseProductListingError as m7, type PurchaseProductListingResponses as m8, type PurchaseProductListingResponse as m9, type GetStoreShelvesErrors as mA, type GetStoreShelvesError as mB, type GetStoreShelvesResponses as mC, type GetStoreShelvesResponse as mD, type ClearFavoriteGroup as mE, type ClearFavoriteGroupResponses as mF, type ClearFavoriteGroupResponse as mG, type GetFavoriteGroup as mH, type GetFavoriteGroupResponses as mI, type GetFavoriteGroupResponse as mJ, type UpdateFavoriteGroup as mK, type UpdateFavoriteGroupResponses as mL, type GetFavoriteGroups as mM, type GetFavoriteGroupsErrors as mN, type GetFavoriteGroupsError as mO, type GetFavoriteGroupsResponses as mP, type GetFavoriteGroupsResponse as mQ, type GetFavorites as mR, type GetFavoritesErrors as mS, type GetFavoritesError as mT, type GetFavoritesResponses as mU, type GetFavoritesResponse as mV, type AddFavorite as mW, type AddFavoriteErrors as mX, type AddFavoriteError as mY, type AddFavoriteResponses as mZ, type AddFavoriteResponse as m_, type GetProductPurchases as ma, type GetProductPurchasesErrors as mb, type GetProductPurchasesError as mc, type GetProductPurchasesResponses as md, type GetProductPurchasesResponse as me, type GetProductPurchase as mf, type GetProductPurchaseErrors as mg, type GetProductPurchaseError as mh, type GetProductPurchaseResponses as mi, type GetProductPurchaseResponse as mj, type GetProductPurchaseStacks as mk, type GetProductPurchaseStacksErrors as ml, type GetProductPurchaseStacksError as mm, type GetProductPurchaseStacksResponses as mn, type GetProductPurchaseStacksResponse as mo, type GetSellerEligibility as mp, type GetSellerEligibilityErrors as mq, type GetSellerEligibilityError as mr, type GetSellerEligibilityResponses as ms, type GetSellerEligibilityResponse as mt, type GetStore as mu, type GetStoreErrors as mv, type GetStoreError as mw, type GetStoreResponses as mx, type GetStoreResponse as my, type GetStoreShelves as mz, type Tag as n, type CreateGroupResponses as n$, type RemoveFavoriteErrors as n0, type RemoveFavoriteError as n1, type RemoveFavoriteResponses as n2, type RemoveFavoriteResponse as n3, type CreateFile as n4, type CreateFileResponses as n5, type CreateFileResponse as n6, type UploadImage as n7, type UploadImageResponses as n8, type UploadImageResponse as n9, type StartFileDataUpload as nA, type StartFileDataUploadErrors as nB, type StartFileDataUploadError as nC, type StartFileDataUploadResponses as nD, type StartFileDataUploadResponse as nE, type GetFileDataUploadStatus as nF, type GetFileDataUploadStatusResponses as nG, type GetFileDataUploadStatusResponse as nH, type GetFiles as nI, type GetFilesResponses as nJ, type GetFilesResponse as nK, type SetGroupGalleryFileOrder as nL, type SetGroupGalleryFileOrderErrors as nM, type SetGroupGalleryFileOrderError as nN, type SetGroupGalleryFileOrderResponses as nO, type SetGroupGalleryFileOrderResponse as nP, type UploadGalleryImage as nQ, type UploadGalleryImageResponses as nR, type UploadGalleryImageResponse as nS, type SearchGroups as nT, type SearchGroupsErrors as nU, type SearchGroupsError as nV, type SearchGroupsResponses as nW, type SearchGroupsResponse as nX, type CreateGroup as nY, type CreateGroupErrors as nZ, type CreateGroupError as n_, type DeleteFile as na, type DeleteFileErrors as nb, type DeleteFileError as nc, type DeleteFileResponses as nd, type DeleteFileResponse as ne, type GetFile as nf, type GetFileErrors as ng, type GetFileError as nh, type GetFileResponses as ni, type GetFileResponse as nj, type CreateFileVersion as nk, type CreateFileVersionResponses as nl, type CreateFileVersionResponse as nm, type DeleteFileVersion as nn, type DeleteFileVersionErrors as no, type DeleteFileVersionError as np, type DeleteFileVersionResponses as nq, type DeleteFileVersionResponse as nr, type DownloadFileVersion as ns, type DownloadFileVersionErrors as nt, type DownloadFileVersionError as nu, type DownloadFileVersionResponses as nv, type DownloadFileVersionResponse as nw, type FinishFileDataUpload as nx, type FinishFileDataUploadResponses as ny, type FinishFileDataUploadResponse as nz, type AdminAssetBundle as o, type BlockGroupError as o$, type CreateGroupResponse as o0, type GetGroupRoleTemplates as o1, type GetGroupRoleTemplatesErrors as o2, type GetGroupRoleTemplatesError as o3, type GetGroupRoleTemplatesResponses as o4, type GetGroupRoleTemplatesResponse as o5, type DeleteGroup as o6, type DeleteGroupErrors as o7, type DeleteGroupError as o8, type DeleteGroupResponses as o9, type GetGroupAuditLogEntryTypes as oA, type GetGroupAuditLogEntryTypesErrors as oB, type GetGroupAuditLogEntryTypesError as oC, type GetGroupAuditLogEntryTypesResponses as oD, type GetGroupAuditLogEntryTypesResponse as oE, type GetGroupAuditLogs as oF, type GetGroupAuditLogsErrors as oG, type GetGroupAuditLogsError as oH, type GetGroupAuditLogsResponses as oI, type GetGroupAuditLogsResponse as oJ, type GetGroupBans as oK, type GetGroupBansErrors as oL, type GetGroupBansError as oM, type GetGroupBansResponses as oN, type GetGroupBansResponse as oO, type BanGroupMember as oP, type BanGroupMemberErrors as oQ, type BanGroupMemberError as oR, type BanGroupMemberResponses as oS, type BanGroupMemberResponse as oT, type UnbanGroupMember as oU, type UnbanGroupMemberErrors as oV, type UnbanGroupMemberError as oW, type UnbanGroupMemberResponses as oX, type UnbanGroupMemberResponse as oY, type BlockGroup as oZ, type BlockGroupErrors as o_, type DeleteGroupResponse as oa, type GetGroup as ob, type GetGroupErrors as oc, type GetGroupError as od, type GetGroupResponses as oe, type GetGroupResponse as of, type UpdateGroup as og, type UpdateGroupErrors as oh, type UpdateGroupError as oi, type UpdateGroupResponses as oj, type UpdateGroupResponse as ok, type DeleteGroupAnnouncement as ol, type DeleteGroupAnnouncementErrors as om, type DeleteGroupAnnouncementError as on, type DeleteGroupAnnouncementResponses as oo, type DeleteGroupAnnouncementResponse as op, type GetGroupAnnouncements as oq, type GetGroupAnnouncementsErrors as or, type GetGroupAnnouncementsError as os, type GetGroupAnnouncementsResponses as ot, type GetGroupAnnouncementsResponse as ou, type CreateGroupAnnouncement as ov, type CreateGroupAnnouncementErrors as ow, type CreateGroupAnnouncementError as ox, type CreateGroupAnnouncementResponses as oy, type CreateGroupAnnouncementResponse as oz, type AgreementCode as p, type LeaveGroupResponses as p$, type BlockGroupResponses as p0, type BlockGroupResponse as p1, type CreateGroupGallery as p2, type CreateGroupGalleryErrors as p3, type CreateGroupGalleryError as p4, type CreateGroupGalleryResponses as p5, type CreateGroupGalleryResponse as p6, type DeleteGroupGallery as p7, type DeleteGroupGalleryErrors as p8, type DeleteGroupGalleryError as p9, type GetGroupInstancesResponse as pA, type GetGroupInvites as pB, type GetGroupInvitesErrors as pC, type GetGroupInvitesError as pD, type GetGroupInvitesResponses as pE, type GetGroupInvitesResponse as pF, type CreateGroupInvite as pG, type CreateGroupInviteErrors as pH, type CreateGroupInviteError as pI, type CreateGroupInviteResponses as pJ, type DeclineGroupInvite as pK, type DeclineGroupInviteErrors as pL, type DeclineGroupInviteError as pM, type DeclineGroupInviteResponses as pN, type DeclineGroupInviteResponse as pO, type DeleteGroupInvite as pP, type DeleteGroupInviteErrors as pQ, type DeleteGroupInviteError as pR, type DeleteGroupInviteResponses as pS, type JoinGroup as pT, type JoinGroupErrors as pU, type JoinGroupError as pV, type JoinGroupResponses as pW, type JoinGroupResponse as pX, type LeaveGroup as pY, type LeaveGroupErrors as pZ, type LeaveGroupError as p_, type DeleteGroupGalleryResponses as pa, type DeleteGroupGalleryResponse as pb, type GetGroupGalleryImages as pc, type GetGroupGalleryImagesErrors as pd, type GetGroupGalleryImagesError as pe, type GetGroupGalleryImagesResponses as pf, type GetGroupGalleryImagesResponse as pg, type UpdateGroupGallery as ph, type UpdateGroupGalleryErrors as pi, type UpdateGroupGalleryError as pj, type UpdateGroupGalleryResponses as pk, type UpdateGroupGalleryResponse as pl, type AddGroupGalleryImage as pm, type AddGroupGalleryImageErrors as pn, type AddGroupGalleryImageError as po, type AddGroupGalleryImageResponses as pp, type AddGroupGalleryImageResponse as pq, type DeleteGroupGalleryImage as pr, type DeleteGroupGalleryImageErrors as ps, type DeleteGroupGalleryImageError as pt, type DeleteGroupGalleryImageResponses as pu, type DeleteGroupGalleryImageResponse as pv, type GetGroupInstances as pw, type GetGroupInstancesErrors as px, type GetGroupInstancesError as py, type GetGroupInstancesResponses as pz, type AgreementStatus as q, type UpdateGroupRepresentationResponses as q$, type GetGroupMembers as q0, type GetGroupMembersErrors as q1, type GetGroupMembersError as q2, type GetGroupMembersResponses as q3, type GetGroupMembersResponse as q4, type SearchGroupMembers as q5, type SearchGroupMembersErrors as q6, type SearchGroupMembersError as q7, type SearchGroupMembersResponses as q8, type SearchGroupMembersResponse as q9, type GetGroupPermissionsErrors as qA, type GetGroupPermissionsError as qB, type GetGroupPermissionsResponses as qC, type GetGroupPermissionsResponse as qD, type GetGroupPosts as qE, type GetGroupPostsErrors as qF, type GetGroupPostsError as qG, type GetGroupPostsResponses as qH, type GetGroupPostsResponse as qI, type AddGroupPost as qJ, type AddGroupPostErrors as qK, type AddGroupPostError as qL, type AddGroupPostResponses as qM, type AddGroupPostResponse as qN, type DeleteGroupPost as qO, type DeleteGroupPostErrors as qP, type DeleteGroupPostError as qQ, type DeleteGroupPostResponses as qR, type DeleteGroupPostResponse as qS, type UpdateGroupPost as qT, type UpdateGroupPostErrors as qU, type UpdateGroupPostError as qV, type UpdateGroupPostResponses as qW, type UpdateGroupPostResponse as qX, type UpdateGroupRepresentation as qY, type UpdateGroupRepresentationErrors as qZ, type UpdateGroupRepresentationError as q_, type KickGroupMember as qa, type KickGroupMemberErrors as qb, type KickGroupMemberError as qc, type KickGroupMemberResponses as qd, type KickGroupMemberResponse as qe, type GetGroupMember as qf, type GetGroupMemberErrors as qg, type GetGroupMemberError as qh, type GetGroupMemberResponses as qi, type GetGroupMemberResponse as qj, type UpdateGroupMember as qk, type UpdateGroupMemberErrors as ql, type UpdateGroupMemberError as qm, type UpdateGroupMemberResponses as qn, type UpdateGroupMemberResponse as qo, type RemoveGroupMemberRole as qp, type RemoveGroupMemberRoleErrors as qq, type RemoveGroupMemberRoleError as qr, type RemoveGroupMemberRoleResponses as qs, type RemoveGroupMemberRoleResponse as qt, type AddGroupMemberRole as qu, type AddGroupMemberRoleErrors as qv, type AddGroupMemberRoleError as qw, type AddGroupMemberRoleResponses as qx, type AddGroupMemberRoleResponse as qy, type GetGroupPermissions as qz, type AgreementRequest as r, type GetRecentLocations as r$, type UpdateGroupRepresentationResponse as r0, type CancelGroupRequest as r1, type CancelGroupRequestErrors as r2, type CancelGroupRequestError as r3, type CancelGroupRequestResponses as r4, type GetGroupRequests as r5, type GetGroupRequestsErrors as r6, type GetGroupRequestsError as r7, type GetGroupRequestsResponses as r8, type GetGroupRequestsResponse as r9, type CancelGroupTransferError as rA, type CancelGroupTransferResponses as rB, type CancelGroupTransferResponse as rC, type GetGroupTransferability as rD, type GetGroupTransferabilityErrors as rE, type GetGroupTransferabilityError as rF, type GetGroupTransferabilityResponses as rG, type GetGroupTransferabilityResponse as rH, type InitiateOrAcceptGroupTransfer as rI, type InitiateOrAcceptGroupTransferErrors as rJ, type InitiateOrAcceptGroupTransferError as rK, type InitiateOrAcceptGroupTransferResponses as rL, type InitiateOrAcceptGroupTransferResponse as rM, type GetHealth as rN, type GetHealthResponses as rO, type GetHealthResponse as rP, type UploadIcon as rQ, type UploadIconResponses as rR, type UploadIconResponse as rS, type GetInfoPush as rT, type GetInfoPushResponses as rU, type GetInfoPushResponse as rV, type CreateInstance as rW, type CreateInstanceErrors as rX, type CreateInstanceError as rY, type CreateInstanceResponses as rZ, type CreateInstanceResponse as r_, type RespondGroupJoinRequest2 as ra, type RespondGroupJoinRequestErrors as rb, type RespondGroupJoinRequestError as rc, type RespondGroupJoinRequestResponses as rd, type GetGroupRoles as re, type GetGroupRolesErrors as rf, type GetGroupRolesError as rg, type GetGroupRolesResponses as rh, type GetGroupRolesResponse as ri, type CreateGroupRole as rj, type CreateGroupRoleErrors as rk, type CreateGroupRoleError as rl, type CreateGroupRoleResponses as rm, type CreateGroupRoleResponse as rn, type DeleteGroupRole as ro, type DeleteGroupRoleErrors as rp, type DeleteGroupRoleError as rq, type DeleteGroupRoleResponses as rr, type DeleteGroupRoleResponse as rs, type UpdateGroupRole as rt, type UpdateGroupRoleErrors as ru, type UpdateGroupRoleError as rv, type UpdateGroupRoleResponses as rw, type UpdateGroupRoleResponse as rx, type CancelGroupTransfer as ry, type CancelGroupTransferErrors as rz, type Agreement as s, type DeleteOwnInventoryItemResponse as s$, type GetRecentLocationsErrors as s0, type GetRecentLocationsError as s1, type GetRecentLocationsResponses as s2, type GetRecentLocationsResponse as s3, type GetInstanceByShortName as s4, type GetInstanceByShortNameErrors as s5, type GetInstanceByShortNameError as s6, type GetInstanceByShortNameResponses as s7, type GetInstanceByShortNameResponse as s8, type CloseInstance as s9, type ShareInventoryItemPedestalError as sA, type ShareInventoryItemPedestalResponses as sB, type ShareInventoryItemPedestalResponse as sC, type GetInventoryCollections as sD, type GetInventoryCollectionsErrors as sE, type GetInventoryCollectionsError as sF, type GetInventoryCollectionsResponses as sG, type GetInventoryCollectionsResponse as sH, type GetInventoryDrops as sI, type GetInventoryDropsErrors as sJ, type GetInventoryDropsError as sK, type GetInventoryDropsResponses as sL, type GetInventoryDropsResponse as sM, type SpawnInventoryItem as sN, type SpawnInventoryItemErrors as sO, type SpawnInventoryItemError as sP, type SpawnInventoryItemResponses as sQ, type SpawnInventoryItemResponse as sR, type GetInventoryTemplate as sS, type GetInventoryTemplateErrors as sT, type GetInventoryTemplateError as sU, type GetInventoryTemplateResponses as sV, type GetInventoryTemplateResponse as sW, type DeleteOwnInventoryItem as sX, type DeleteOwnInventoryItemErrors as sY, type DeleteOwnInventoryItemError as sZ, type DeleteOwnInventoryItemResponses as s_, type CloseInstanceErrors as sa, type CloseInstanceError as sb, type CloseInstanceResponses as sc, type CloseInstanceResponse as sd, type GetInstance as se, type GetInstanceErrors as sf, type GetInstanceError as sg, type GetInstanceResponses as sh, type GetInstanceResponse as si, type GetShortName as sj, type GetShortNameErrors as sk, type GetShortNameError as sl, type GetShortNameResponses as sm, type GetShortNameResponse as sn, type GetInventory as so, type GetInventoryErrors as sp, type GetInventoryError as sq, type GetInventoryResponses as sr, type GetInventoryResponse as ss, type ShareInventoryItemDirect as st, type ShareInventoryItemDirectErrors as su, type ShareInventoryItemDirectError as sv, type ShareInventoryItemDirectResponses as sw, type ShareInventoryItemDirectResponse as sx, type ShareInventoryItemPedestal as sy, type ShareInventoryItemPedestalErrors as sz, type FileAnalysisAvatarStats as t, type SubmitJamContent as t$, type GetOwnInventoryItem as t0, type GetOwnInventoryItemErrors as t1, type GetOwnInventoryItemError as t2, type GetOwnInventoryItemResponses as t3, type GetOwnInventoryItemResponse as t4, type UpdateOwnInventoryItem as t5, type UpdateOwnInventoryItemErrors as t6, type UpdateOwnInventoryItemError as t7, type UpdateOwnInventoryItemResponses as t8, type UpdateOwnInventoryItemResponse as t9, type RespondInviteWithPhotoErrors as tA, type RespondInviteWithPhotoError as tB, type RespondInviteWithPhotoResponses as tC, type RespondInviteWithPhotoResponse as tD, type InviteUser as tE, type InviteUserErrors as tF, type InviteUserError as tG, type InviteUserResponses as tH, type InviteUserResponse as tI, type InviteUserWithPhoto as tJ, type InviteUserWithPhotoErrors as tK, type InviteUserWithPhotoError as tL, type InviteUserWithPhotoResponses as tM, type InviteUserWithPhotoResponse as tN, type GetJams as tO, type GetJamsResponses as tP, type GetJamsResponse as tQ, type GetJam as tR, type GetJamErrors as tS, type GetJamError as tT, type GetJamResponses as tU, type GetJamResponse as tV, type GetJamSubmissions as tW, type GetJamSubmissionsErrors as tX, type GetJamSubmissionsError as tY, type GetJamSubmissionsResponses as tZ, type GetJamSubmissionsResponse as t_, type ConsumeOwnInventoryItem as ta, type ConsumeOwnInventoryItemErrors as tb, type ConsumeOwnInventoryItemError as tc, type ConsumeOwnInventoryItemResponses as td, type ConsumeOwnInventoryItemResponse as te, type UnequipOwnInventorySlot as tf, type UnequipOwnInventorySlotErrors as tg, type UnequipOwnInventorySlotError as th, type UnequipOwnInventorySlotResponses as ti, type UnequipOwnInventorySlotResponse as tj, type EquipOwnInventoryItem as tk, type EquipOwnInventoryItemErrors as tl, type EquipOwnInventoryItemError as tm, type EquipOwnInventoryItemResponses as tn, type EquipOwnInventoryItemResponse as to, type InviteMyselfTo as tp, type InviteMyselfToErrors as tq, type InviteMyselfToError as tr, type InviteMyselfToResponses as ts, type InviteMyselfToResponse as tt, type RespondInvite as tu, type RespondInviteErrors as tv, type RespondInviteError as tw, type RespondInviteResponses as tx, type RespondInviteResponse as ty, type RespondInviteWithPhoto as tz, type FileAnalysis as u, type DeleteModerationReportResponse as u$, type SubmitJamContentErrors as u0, type SubmitJamContentError as u1, type SubmitJamContentResponses as u2, type SubmitJamContentResponse as u3, type DeleteJamSubmission as u4, type DeleteJamSubmissionErrors as u5, type DeleteJamSubmissionError as u6, type DeleteJamSubmissionResponses as u7, type DeleteJamSubmissionResponse as u8, type GetJavaScript as u9, type ResetInviteMessageError as uA, type ResetInviteMessageResponses as uB, type ResetInviteMessageResponse as uC, type GetInviteMessage as uD, type GetInviteMessageErrors as uE, type GetInviteMessageError as uF, type GetInviteMessageResponses as uG, type GetInviteMessageResponse as uH, type UpdateInviteMessage as uI, type UpdateInviteMessageErrors as uJ, type UpdateInviteMessageError as uK, type UpdateInviteMessageResponses as uL, type UpdateInviteMessageResponse as uM, type GetModerationReports as uN, type GetModerationReportsErrors as uO, type GetModerationReportsError as uP, type GetModerationReportsResponses as uQ, type GetModerationReportsResponse as uR, type SubmitModerationReport as uS, type SubmitModerationReportErrors as uT, type SubmitModerationReportError as uU, type SubmitModerationReportResponses as uV, type SubmitModerationReportResponse as uW, type DeleteModerationReport as uX, type DeleteModerationReportErrors as uY, type DeleteModerationReportError as uZ, type DeleteModerationReportResponses as u_, type GetJavaScriptErrors as ua, type GetJavaScriptError as ub, type GetJavaScriptResponses as uc, type GetJavaScriptResponse as ud, type GetLicenseGroup as ue, type GetLicenseGroupErrors as uf, type GetLicenseGroupError as ug, type GetLicenseGroupResponses as uh, type GetLicenseGroupResponse as ui, type GetProductListing as uj, type GetProductListingErrors as uk, type GetProductListingError as ul, type GetProductListingResponses as um, type GetProductListingResponse as un, type Logout as uo, type LogoutErrors as up, type LogoutError as uq, type LogoutResponses as ur, type LogoutResponse as us, type GetInviteMessages as ut, type GetInviteMessagesErrors as uu, type GetInviteMessagesError as uv, type GetInviteMessagesResponses as uw, type GetInviteMessagesResponse as ux, type ResetInviteMessage as uy, type ResetInviteMessageErrors as uz, type UpdateAssetReviewNotesRequest as v, type EditPrintResponse as v$, type DeleteAllNotificationV2s as v0, type DeleteAllNotificationV2sErrors as v1, type DeleteAllNotificationV2sError as v2, type DeleteAllNotificationV2sResponses as v3, type DeleteAllNotificationV2sResponse as v4, type GetNotificationV2s as v5, type GetNotificationV2sErrors as v6, type GetNotificationV2sError as v7, type GetNotificationV2sResponses as v8, type GetNotificationV2sResponse as v9, type GetPermissionErrors as vA, type GetPermissionError as vB, type GetPermissionResponses as vC, type GetPermissionResponse as vD, type UploadPrint as vE, type UploadPrintErrors as vF, type UploadPrintError as vG, type UploadPrintResponses as vH, type UploadPrintResponse as vI, type GetUserPrints as vJ, type GetUserPrintsErrors as vK, type GetUserPrintsError as vL, type GetUserPrintsResponses as vM, type GetUserPrintsResponse as vN, type DeletePrint as vO, type DeletePrintErrors as vP, type DeletePrintError as vQ, type DeletePrintResponses as vR, type GetPrint as vS, type GetPrintErrors as vT, type GetPrintError as vU, type GetPrintResponses as vV, type GetPrintResponse as vW, type EditPrint as vX, type EditPrintErrors as vY, type EditPrintError as vZ, type EditPrintResponses as v_, type DeleteNotificationV2 as va, type DeleteNotificationV2Errors as vb, type DeleteNotificationV2Error as vc, type DeleteNotificationV2Responses as vd, type DeleteNotificationV2Response as ve, type GetNotificationV2 as vf, type GetNotificationV2Errors as vg, type GetNotificationV2Error as vh, type GetNotificationV2Responses as vi, type GetNotificationV2Response as vj, type ReplyNotificationV2 as vk, type ReplyNotificationV2Errors as vl, type ReplyNotificationV2Error as vm, type ReplyNotificationV2Responses as vn, type ReplyNotificationV2Response as vo, type RespondNotificationV2 as vp, type RespondNotificationV2Errors as vq, type RespondNotificationV2Error as vr, type RespondNotificationV2Responses as vs, type RespondNotificationV2Response as vt, type AcknowledgeNotificationV2 as vu, type AcknowledgeNotificationV2Errors as vv, type AcknowledgeNotificationV2Error as vw, type AcknowledgeNotificationV2Responses as vx, type AcknowledgeNotificationV2Response as vy, type GetPermission as vz, type VerifyAuthTokenResult as w, type GetSubscriptionsResponse as w$, type GetProductListingAlternate as w0, type GetProductListingAlternateErrors as w1, type GetProductListingAlternateError as w2, type GetProductListingAlternateResponses as w3, type GetProductListingAlternateResponse as w4, type ListProps as w5, type ListPropsErrors as w6, type ListPropsError as w7, type ListPropsResponses as w8, type ListPropsResponse as w9, type GetPropPublishStatusError as wA, type GetPropPublishStatusResponses as wB, type GetPropPublishStatusResponse as wC, type PublishProp as wD, type PublishPropErrors as wE, type PublishPropError as wF, type PublishPropResponses as wG, type PublishPropResponse as wH, type RequestInvite as wI, type RequestInviteErrors as wJ, type RequestInviteError as wK, type RequestInviteResponses as wL, type RequestInviteResponse as wM, type RequestInviteWithPhoto as wN, type RequestInviteWithPhotoErrors as wO, type RequestInviteWithPhotoError as wP, type RequestInviteWithPhotoResponses as wQ, type RequestInviteWithPhotoResponse as wR, type RedeemReward as wS, type RedeemRewardErrors as wT, type RedeemRewardError as wU, type RedeemRewardResponses as wV, type RedeemRewardResponse as wW, type GetSubscriptions as wX, type GetSubscriptionsErrors as wY, type GetSubscriptionsError as wZ, type GetSubscriptionsResponses as w_, type CreateProp as wa, type CreatePropErrors as wb, type CreatePropError as wc, type CreatePropResponses as wd, type CreatePropResponse as we, type DeleteProp as wf, type DeletePropErrors as wg, type DeletePropError as wh, type DeletePropResponses as wi, type GetProp as wj, type GetPropErrors as wk, type GetPropError as wl, type GetPropResponses as wm, type GetPropResponse as wn, type UpdateProp as wo, type UpdatePropErrors as wp, type UpdatePropError as wq, type UpdatePropResponses as wr, type UpdatePropResponse as ws, type UnpublishProp as wt, type UnpublishPropErrors as wu, type UnpublishPropError as wv, type UnpublishPropResponses as ww, type UnpublishPropResponse as wx, type GetPropPublishStatus as wy, type GetPropPublishStatusErrors as wz, type UserExists as x, type GetProductListings as x$, type GetTiliaStatus as x0, type GetTiliaStatusErrors as x1, type GetTiliaStatusError as x2, type GetTiliaStatusResponses as x3, type GetTiliaStatusResponse as x4, type GetSystemTime as x5, type GetSystemTimeResponses as x6, type GetSystemTimeResponse as x7, type GetTokenBundles as x8, type GetTokenBundlesErrors as x9, type GetEconomyAccountResponses as xA, type GetEconomyAccountResponse as xB, type GetProductPurchaseHistory as xC, type GetProductPurchaseHistoryErrors as xD, type GetProductPurchaseHistoryError as xE, type GetProductPurchaseHistoryResponses as xF, type GetProductPurchaseHistoryResponse as xG, type DeleteFriendRequest as xH, type DeleteFriendRequestErrors as xI, type DeleteFriendRequestError as xJ, type DeleteFriendRequestResponses as xK, type DeleteFriendRequestResponse as xL, type Friend as xM, type FriendErrors as xN, type FriendError as xO, type FriendResponses as xP, type FriendResponse as xQ, type GetFriendStatus as xR, type GetFriendStatusErrors as xS, type GetFriendStatusError as xT, type GetFriendStatusResponses as xU, type GetFriendStatusResponse as xV, type GetUserInventoryItem as xW, type GetUserInventoryItemErrors as xX, type GetUserInventoryItemError as xY, type GetUserInventoryItemResponses as xZ, type GetUserInventoryItemResponse as x_, type GetTokenBundlesError as xa, type GetTokenBundlesResponses as xb, type GetTokenBundlesResponse as xc, type GetBulkGiftPurchases as xd, type GetBulkGiftPurchasesErrors as xe, type GetBulkGiftPurchasesError as xf, type GetBulkGiftPurchasesResponses as xg, type GetBulkGiftPurchasesResponse as xh, type GetRecentSubscription as xi, type GetRecentSubscriptionErrors as xj, type GetRecentSubscriptionError as xk, type GetRecentSubscriptionResponses as xl, type GetRecentSubscriptionResponse as xm, type GetBalance as xn, type GetBalanceErrors as xo, type GetBalanceError as xp, type GetBalanceResponses as xq, type GetBalanceResponse as xr, type GetBalanceEarnings as xs, type GetBalanceEarningsErrors as xt, type GetBalanceEarningsError as xu, type GetBalanceEarningsResponses as xv, type GetBalanceEarningsResponse as xw, type GetEconomyAccount as xx, type GetEconomyAccountErrors as xy, type GetEconomyAccountError as xz, type PermissionId as y, type GetUserCreditsEligible as y$, type GetProductListingsErrors as y0, type GetProductListingsError as y1, type GetProductListingsResponses as y2, type GetProductListingsResponse as y3, type GetTiliaTos as y4, type GetTiliaTosErrors as y5, type GetTiliaTosError as y6, type GetTiliaTosResponses as y7, type GetTiliaTosResponse as y8, type UpdateTiliaTos as y9, type GetUserError as yA, type GetUserResponses as yB, type GetUserResponse as yC, type UpdateUser as yD, type UpdateUserErrors as yE, type UpdateUserError as yF, type UpdateUserResponses as yG, type UpdateUserResponse as yH, type AddTags as yI, type AddTagsErrors as yJ, type AddTagsError as yK, type AddTagsResponses as yL, type AddTagsResponse as yM, type GetOwnAvatar as yN, type GetOwnAvatarErrors as yO, type GetOwnAvatarError as yP, type GetOwnAvatarResponses as yQ, type GetOwnAvatarResponse as yR, type UpdateBadge as yS, type UpdateBadgeErrors as yT, type UpdateBadgeError as yU, type UpdateBadgeResponses as yV, type Boop as yW, type BoopErrors as yX, type BoopError as yY, type BoopResponses as yZ, type BoopResponse as y_, type UpdateTiliaTosErrors as ya, type UpdateTiliaTosError as yb, type UpdateTiliaTosResponses as yc, type UpdateTiliaTosResponse as yd, type GetUserNotes as ye, type GetUserNotesErrors as yf, type GetUserNotesError as yg, type GetUserNotesResponses as yh, type GetUserNotesResponse as yi, type UpdateUserNote as yj, type UpdateUserNoteErrors as yk, type UpdateUserNoteError as yl, type UpdateUserNoteResponses as ym, type UpdateUserNoteResponse as yn, type GetUserNote as yo, type GetUserNoteErrors as yp, type GetUserNoteError as yq, type GetUserNoteResponses as yr, type GetUserNoteResponse as ys, type SearchUsers as yt, type SearchUsersErrors as yu, type SearchUsersError as yv, type SearchUsersResponses as yw, type SearchUsersResponse as yx, type GetUser as yy, type GetUserErrors as yz, type Permission as z, type GetMutualFriendsResponse as z$, type GetUserCreditsEligibleErrors as z0, type GetUserCreditsEligibleError as z1, type GetUserCreditsEligibleResponses as z2, type GetUserCreditsEligibleResponse as z3, type DeleteUser as z4, type DeleteUserErrors as z5, type DeleteUserError as z6, type DeleteUserResponses as z7, type DeleteUserResponse as z8, type GetUserFeedback as z9, type GetUserGroupRequestsError as zA, type GetUserGroupRequestsResponses as zB, type GetUserGroupRequestsResponse as zC, type GetBlockedGroups as zD, type GetBlockedGroupsErrors as zE, type GetBlockedGroupsError as zF, type GetBlockedGroupsResponses as zG, type GetBlockedGroupsResponse as zH, type GetUserGroupInstances as zI, type GetUserGroupInstancesErrors as zJ, type GetUserGroupInstancesError as zK, type GetUserGroupInstancesResponses as zL, type GetUserGroupInstancesResponse as zM, type GetUserGroupInstancesForGroup as zN, type GetUserGroupInstancesForGroupErrors as zO, type GetUserGroupInstancesForGroupError as zP, type GetUserGroupInstancesForGroupResponses as zQ, type GetUserGroupInstancesForGroupResponse as zR, type GetMutuals as zS, type GetMutualsErrors as zT, type GetMutualsError as zU, type GetMutualsResponses as zV, type GetMutualsResponse as zW, type GetMutualFriends as zX, type GetMutualFriendsErrors as zY, type GetMutualFriendsError as zZ, type GetMutualFriendsResponses as z_, type GetUserFeedbackErrors as za, type GetUserFeedbackError as zb, type GetUserFeedbackResponses as zc, type GetUserFeedbackResponse as zd, type GetUserGroups as ze, type GetUserGroupsErrors as zf, type GetUserGroupsError as zg, type GetUserGroupsResponses as zh, type GetUserGroupsResponse as zi, type GetInvitedGroups as zj, type GetInvitedGroupsErrors as zk, type GetInvitedGroupsError as zl, type GetInvitedGroupsResponses as zm, type GetInvitedGroupsResponse as zn, type GetUserAllGroupPermissions as zo, type GetUserAllGroupPermissionsErrors as zp, type GetUserAllGroupPermissionsError as zq, type GetUserAllGroupPermissionsResponses as zr, type GetUserAllGroupPermissionsResponse as zs, type GetUserRepresentedGroup as zt, type GetUserRepresentedGroupErrors as zu, type GetUserRepresentedGroupError as zv, type GetUserRepresentedGroupResponses as zw, type GetUserRepresentedGroupResponse as zx, type GetUserGroupRequests as zy, type GetUserGroupRequestsErrors as zz };
|