@connectedxm/admin 0.0.18 → 0.0.20
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/.vscode/settings.json +8 -1
- package/connectedxm-admin-v0.0.18-beta-4.tgz +0 -0
- package/dist/index.d.mts +896 -92
- package/dist/index.d.ts +896 -92
- package/dist/index.js +1540 -335
- package/dist/index.mjs +1450 -330
- package/package.json +1 -2
- package/connectedxm-admin-v0.0.1-5.beta-3.tgz +0 -0
package/dist/index.d.mts
CHANGED
|
@@ -2,7 +2,7 @@ import * as axios from 'axios';
|
|
|
2
2
|
import { AxiosError, AxiosInstance } from 'axios';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
5
|
-
import { QueryClient, QueryKey, InfiniteData, UseQueryOptions, UseInfiniteQueryOptions, UseMutationOptions, MutationFunction } from '@tanstack/react-query';
|
|
5
|
+
import { QueryClient, QueryKey, InfiniteData, UseQueryOptions, UseInfiniteQueryOptions, Updater, SetDataOptions, UseMutationOptions, MutationFunction } from '@tanstack/react-query';
|
|
6
6
|
import * as _tanstack_query_core from '@tanstack/query-core';
|
|
7
7
|
|
|
8
8
|
interface ConnectedXMResponse<TData> {
|
|
@@ -11,14 +11,55 @@ interface ConnectedXMResponse<TData> {
|
|
|
11
11
|
count?: number;
|
|
12
12
|
data: TData;
|
|
13
13
|
}
|
|
14
|
+
declare enum OrganizationActionType {
|
|
15
|
+
create = "create",
|
|
16
|
+
read = "read",
|
|
17
|
+
update = "update",
|
|
18
|
+
delete = "delete"
|
|
19
|
+
}
|
|
20
|
+
declare enum OrganizationModuleType {
|
|
21
|
+
accounts = "accounts",
|
|
22
|
+
events = "events",
|
|
23
|
+
listings = "listings",
|
|
24
|
+
activities = "activities",
|
|
25
|
+
groups = "groups",
|
|
26
|
+
contents = "contents",
|
|
27
|
+
chat = "chat",
|
|
28
|
+
support = "support",
|
|
29
|
+
sponsors = "sponsors",
|
|
30
|
+
benefits = "benefits",
|
|
31
|
+
advertisements = "advertisements",
|
|
32
|
+
announcements = "announcements",
|
|
33
|
+
subscriptions = "subscriptions",
|
|
34
|
+
threads = "threads"
|
|
35
|
+
}
|
|
36
|
+
interface BaseOrganizationModuleAction {
|
|
37
|
+
id: number;
|
|
38
|
+
organizationId: string;
|
|
39
|
+
organization: Organization;
|
|
40
|
+
moduleId: number;
|
|
41
|
+
module: OrganizationModule;
|
|
42
|
+
actionType: OrganizationActionType;
|
|
43
|
+
superEnabled: boolean;
|
|
44
|
+
enabled: boolean;
|
|
45
|
+
}
|
|
46
|
+
interface OrganizationModuleAction extends BaseOrganizationModuleAction {
|
|
47
|
+
}
|
|
48
|
+
interface BaseOrganizationModule {
|
|
49
|
+
id: number;
|
|
50
|
+
organizationId: string;
|
|
51
|
+
moduleType: OrganizationModuleType;
|
|
52
|
+
organization: Organization;
|
|
53
|
+
superEnabled: boolean;
|
|
54
|
+
enabled: boolean;
|
|
55
|
+
requireAuth: boolean;
|
|
56
|
+
}
|
|
57
|
+
interface OrganizationModule extends BaseOrganizationModule {
|
|
58
|
+
actions: BaseOrganizationModuleAction[];
|
|
59
|
+
}
|
|
14
60
|
declare enum Currency {
|
|
15
61
|
USD = "USD"
|
|
16
62
|
}
|
|
17
|
-
declare enum ContentType {
|
|
18
|
-
article = "article",
|
|
19
|
-
podcast = "podcast",
|
|
20
|
-
video = "video"
|
|
21
|
-
}
|
|
22
63
|
declare enum ContentGuestType {
|
|
23
64
|
guest = "guest",
|
|
24
65
|
host = "host",
|
|
@@ -296,17 +337,12 @@ interface BaseActivity {
|
|
|
296
337
|
readMore: boolean;
|
|
297
338
|
linkPreview: BaseLinkPreview;
|
|
298
339
|
giphyId: string | null;
|
|
299
|
-
imageId: string;
|
|
300
|
-
image: BaseImage;
|
|
301
|
-
accountId: string;
|
|
340
|
+
imageId: string | null;
|
|
341
|
+
image: BaseImage | null;
|
|
302
342
|
account: BaseAccount;
|
|
303
|
-
groupId: string | null;
|
|
304
|
-
group: BaseGroup | null;
|
|
305
343
|
eventId: string | null;
|
|
306
|
-
|
|
344
|
+
groupId: string | null;
|
|
307
345
|
contentId: string | null;
|
|
308
|
-
content: BaseChannelContent | null;
|
|
309
|
-
interests: BaseInterest[];
|
|
310
346
|
createdAt: string;
|
|
311
347
|
updatedAt: string;
|
|
312
348
|
_count: {
|
|
@@ -317,6 +353,12 @@ interface BaseActivity {
|
|
|
317
353
|
};
|
|
318
354
|
}
|
|
319
355
|
interface Activity extends BaseActivity {
|
|
356
|
+
video: BaseVideo | null;
|
|
357
|
+
group: BaseGroup | null;
|
|
358
|
+
event: BaseEvent | null;
|
|
359
|
+
content: BaseChannelContent | null;
|
|
360
|
+
interests: BaseInterest[];
|
|
361
|
+
videoId: string | null;
|
|
320
362
|
html: string | null;
|
|
321
363
|
text: string | null;
|
|
322
364
|
messageExtended: boolean;
|
|
@@ -460,8 +502,8 @@ interface BaseChannelContent {
|
|
|
460
502
|
title: string | null;
|
|
461
503
|
description: string | null;
|
|
462
504
|
duration: string | null;
|
|
463
|
-
|
|
464
|
-
|
|
505
|
+
email: boolean;
|
|
506
|
+
push: boolean;
|
|
465
507
|
}
|
|
466
508
|
interface ChannelContent extends BaseChannelContent {
|
|
467
509
|
body: string | null;
|
|
@@ -475,6 +517,21 @@ interface ChannelContent extends BaseChannelContent {
|
|
|
475
517
|
youtubeUrl: string | null;
|
|
476
518
|
authors: BaseAccount[];
|
|
477
519
|
mentions: BaseAccount[];
|
|
520
|
+
publishSchedule: BaseSchedule | null;
|
|
521
|
+
createdAt: string;
|
|
522
|
+
updatedAt: string;
|
|
523
|
+
_count: {
|
|
524
|
+
likes: number;
|
|
525
|
+
activities: number;
|
|
526
|
+
};
|
|
527
|
+
}
|
|
528
|
+
interface BaseChannelContentLike {
|
|
529
|
+
accountId: string;
|
|
530
|
+
channelId: string;
|
|
531
|
+
contentId: string;
|
|
532
|
+
}
|
|
533
|
+
interface ChannelContentLike extends BaseChannelContentLike {
|
|
534
|
+
account: BaseAccount;
|
|
478
535
|
createdAt: string;
|
|
479
536
|
updatedAt: string;
|
|
480
537
|
}
|
|
@@ -497,6 +554,9 @@ interface BaseChannel {
|
|
|
497
554
|
visible: boolean;
|
|
498
555
|
imageId: string;
|
|
499
556
|
image: BaseImage;
|
|
557
|
+
bannerId: string | null;
|
|
558
|
+
banner: BaseImage | null;
|
|
559
|
+
subscriberCount: number;
|
|
500
560
|
}
|
|
501
561
|
interface Channel extends BaseChannel {
|
|
502
562
|
externalUrl: string | null;
|
|
@@ -508,8 +568,7 @@ interface Channel extends BaseChannel {
|
|
|
508
568
|
updatedAt: string;
|
|
509
569
|
hosts: BaseAccount[];
|
|
510
570
|
_count: {
|
|
511
|
-
|
|
512
|
-
contents: number;
|
|
571
|
+
contents: true;
|
|
513
572
|
};
|
|
514
573
|
}
|
|
515
574
|
interface BaseChannelSubscriber {
|
|
@@ -1371,6 +1430,9 @@ interface RegistrationQuestion extends BaseRegistrationQuestion {
|
|
|
1371
1430
|
response?: string;
|
|
1372
1431
|
createdAt: string;
|
|
1373
1432
|
updatedAt: string;
|
|
1433
|
+
_count: {
|
|
1434
|
+
responses: number;
|
|
1435
|
+
};
|
|
1374
1436
|
}
|
|
1375
1437
|
interface RegistrationQuestionTranslation {
|
|
1376
1438
|
id: number;
|
|
@@ -1948,6 +2010,8 @@ interface BaseUser {
|
|
|
1948
2010
|
interface User extends BaseUser {
|
|
1949
2011
|
createdAt: string;
|
|
1950
2012
|
updatedAt: string;
|
|
2013
|
+
cfImageId: string;
|
|
2014
|
+
imageUrl: string;
|
|
1951
2015
|
}
|
|
1952
2016
|
declare enum VideoSource {
|
|
1953
2017
|
admin = "admin",
|
|
@@ -1975,36 +2039,176 @@ interface Video extends BaseVideo {
|
|
|
1975
2039
|
}
|
|
1976
2040
|
interface BaseChannelContentGuest {
|
|
1977
2041
|
id: string;
|
|
1978
|
-
type: keyof typeof ContentGuestType;
|
|
1979
2042
|
slug: string;
|
|
2043
|
+
contentId: string;
|
|
2044
|
+
accountId: string | null;
|
|
2045
|
+
account: BaseAccount | null;
|
|
2046
|
+
type: ContentGuestType;
|
|
1980
2047
|
name: string;
|
|
1981
|
-
title: string;
|
|
1982
|
-
bio: string;
|
|
1983
|
-
company: string;
|
|
1984
|
-
companyLink: string;
|
|
1985
|
-
companyBio: string;
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
website: string;
|
|
1989
|
-
facebook: string;
|
|
1990
|
-
twitter: string;
|
|
1991
|
-
instagram: string;
|
|
1992
|
-
linkedIn: string;
|
|
1993
|
-
tikTok: string;
|
|
1994
|
-
youtube: string;
|
|
1995
|
-
discord: string;
|
|
2048
|
+
title: string | null;
|
|
2049
|
+
bio: string | null;
|
|
2050
|
+
company: string | null;
|
|
2051
|
+
companyLink: string | null;
|
|
2052
|
+
companyBio: string | null;
|
|
2053
|
+
imageId: string | null;
|
|
2054
|
+
image: BaseImage | null;
|
|
2055
|
+
website: string | null;
|
|
2056
|
+
facebook: string | null;
|
|
2057
|
+
twitter: string | null;
|
|
2058
|
+
instagram: string | null;
|
|
2059
|
+
linkedIn: string | null;
|
|
2060
|
+
tikTok: string | null;
|
|
2061
|
+
youtube: string | null;
|
|
2062
|
+
discord: string | null;
|
|
2063
|
+
createdAt: string;
|
|
2064
|
+
updatedAt: string;
|
|
2065
|
+
}
|
|
2066
|
+
interface ChannelContentGuest extends BaseChannelContentGuest {
|
|
2067
|
+
}
|
|
2068
|
+
interface ChannelContentGuestTranslation {
|
|
2069
|
+
id: number;
|
|
2070
|
+
locale: string;
|
|
2071
|
+
title: string | null;
|
|
2072
|
+
bio: string | null;
|
|
2073
|
+
companyBio: string | null;
|
|
2074
|
+
createdAt: string;
|
|
2075
|
+
updatedAt: string;
|
|
1996
2076
|
}
|
|
1997
2077
|
interface BaseFile {
|
|
1998
2078
|
id: number;
|
|
1999
2079
|
name: string;
|
|
2000
2080
|
r2Path: string;
|
|
2001
2081
|
source: FileSource;
|
|
2082
|
+
kilobytes: number;
|
|
2002
2083
|
url?: string;
|
|
2003
2084
|
createdAt: string;
|
|
2004
2085
|
updatedAt: string;
|
|
2005
2086
|
}
|
|
2006
2087
|
interface File extends BaseFile {
|
|
2007
2088
|
}
|
|
2089
|
+
declare enum ThreadInvitationStatus {
|
|
2090
|
+
invited = "invited",
|
|
2091
|
+
rejected = "rejected"
|
|
2092
|
+
}
|
|
2093
|
+
interface ThreadInvitation {
|
|
2094
|
+
id: string;
|
|
2095
|
+
organizationId: string;
|
|
2096
|
+
threadId: string;
|
|
2097
|
+
thread: BaseThread;
|
|
2098
|
+
status: ThreadInvitationStatus;
|
|
2099
|
+
role: ThreadMemberRole;
|
|
2100
|
+
invitedById: string;
|
|
2101
|
+
invitedBy: BaseAccount;
|
|
2102
|
+
invitedId: string;
|
|
2103
|
+
invited: BaseAccount;
|
|
2104
|
+
createdAt: string;
|
|
2105
|
+
updatedAt: string;
|
|
2106
|
+
}
|
|
2107
|
+
interface BaseThread {
|
|
2108
|
+
id: string;
|
|
2109
|
+
name: string;
|
|
2110
|
+
description: string | null;
|
|
2111
|
+
imageId: string | null;
|
|
2112
|
+
image: BaseImage | null;
|
|
2113
|
+
featured: boolean;
|
|
2114
|
+
visible: boolean;
|
|
2115
|
+
access: ThreadAccessLevel;
|
|
2116
|
+
members: ThreadMember[];
|
|
2117
|
+
eventId: string | null;
|
|
2118
|
+
groupId: string | null;
|
|
2119
|
+
createdAt: string;
|
|
2120
|
+
}
|
|
2121
|
+
declare enum ThreadMemberRole {
|
|
2122
|
+
member = "member",
|
|
2123
|
+
moderator = "moderator"
|
|
2124
|
+
}
|
|
2125
|
+
declare enum ThreadMessageType {
|
|
2126
|
+
user = "user",
|
|
2127
|
+
bot = "bot",
|
|
2128
|
+
system = "system"
|
|
2129
|
+
}
|
|
2130
|
+
interface ThreadMessageReaction {
|
|
2131
|
+
id: string;
|
|
2132
|
+
organizationId: string;
|
|
2133
|
+
threadId: string;
|
|
2134
|
+
messageId: string;
|
|
2135
|
+
message: BaseThreadMessage;
|
|
2136
|
+
accountId: string;
|
|
2137
|
+
account: BaseAccount;
|
|
2138
|
+
emojiName: string;
|
|
2139
|
+
createdAt: string;
|
|
2140
|
+
updatedAt: string;
|
|
2141
|
+
}
|
|
2142
|
+
interface BaseThreadMessage {
|
|
2143
|
+
id: string;
|
|
2144
|
+
organizationId: string;
|
|
2145
|
+
threadId: string;
|
|
2146
|
+
body: string;
|
|
2147
|
+
createdAt: string;
|
|
2148
|
+
replyToId: string | null;
|
|
2149
|
+
reactions: ThreadMessageReaction[];
|
|
2150
|
+
account: BaseAccount;
|
|
2151
|
+
}
|
|
2152
|
+
interface ThreadMessage {
|
|
2153
|
+
id: string;
|
|
2154
|
+
organizationId: string;
|
|
2155
|
+
threadId: string;
|
|
2156
|
+
thread: BaseThread;
|
|
2157
|
+
accountId: string;
|
|
2158
|
+
account: BaseAccount;
|
|
2159
|
+
type: ThreadMessageType;
|
|
2160
|
+
body: string;
|
|
2161
|
+
reactions: ThreadMessageReaction[];
|
|
2162
|
+
replyToId: string | null;
|
|
2163
|
+
replyTo: BaseThreadMessage | null;
|
|
2164
|
+
replies: BaseThreadMessage[];
|
|
2165
|
+
mentions: BaseAccount[];
|
|
2166
|
+
files: BaseFile[];
|
|
2167
|
+
images: BaseImage[];
|
|
2168
|
+
videos: BaseVideo[];
|
|
2169
|
+
editedAt: string | null;
|
|
2170
|
+
sentAt: string;
|
|
2171
|
+
createdAt: string;
|
|
2172
|
+
updatedAt: string;
|
|
2173
|
+
}
|
|
2174
|
+
interface BaseThreadMember {
|
|
2175
|
+
}
|
|
2176
|
+
interface ThreadMember extends BaseThreadMember {
|
|
2177
|
+
id: string;
|
|
2178
|
+
organizationId: string;
|
|
2179
|
+
threadId: string;
|
|
2180
|
+
thread: BaseThread;
|
|
2181
|
+
accountId: string;
|
|
2182
|
+
account: BaseAccount;
|
|
2183
|
+
role: ThreadMemberRole;
|
|
2184
|
+
accepted: boolean;
|
|
2185
|
+
lastReadAt: string | null;
|
|
2186
|
+
notifications: boolean;
|
|
2187
|
+
createdAt: string;
|
|
2188
|
+
updatedAt: string;
|
|
2189
|
+
}
|
|
2190
|
+
interface Thread extends BaseThread {
|
|
2191
|
+
organizationId: string;
|
|
2192
|
+
organization: BaseOrganization;
|
|
2193
|
+
featured: boolean;
|
|
2194
|
+
visible: boolean;
|
|
2195
|
+
access: ThreadAccessLevel;
|
|
2196
|
+
id: string;
|
|
2197
|
+
name: string;
|
|
2198
|
+
description: string | null;
|
|
2199
|
+
lastMessageAt: string | null;
|
|
2200
|
+
groupId: string | null;
|
|
2201
|
+
group: BaseGroup | null;
|
|
2202
|
+
eventId: string | null;
|
|
2203
|
+
event: BaseEvent | null;
|
|
2204
|
+
members: ThreadMember[];
|
|
2205
|
+
messages: ThreadMessage[];
|
|
2206
|
+
invitations: ThreadInvitation[];
|
|
2207
|
+
image: BaseImage | null;
|
|
2208
|
+
imageId: string | null;
|
|
2209
|
+
createdAt: string;
|
|
2210
|
+
updatedAt: string;
|
|
2211
|
+
}
|
|
2008
2212
|
interface PaypalActivationFormParams {
|
|
2009
2213
|
clientId: string;
|
|
2010
2214
|
clientSecret: string;
|
|
@@ -2219,6 +2423,7 @@ interface ChannelCollectionUpdateInputs {
|
|
|
2219
2423
|
interface ChannelCreateInputs {
|
|
2220
2424
|
name: string;
|
|
2221
2425
|
imageId: string;
|
|
2426
|
+
bannerId?: string | null;
|
|
2222
2427
|
slug?: string | null;
|
|
2223
2428
|
featured?: boolean | null;
|
|
2224
2429
|
description?: string | null;
|
|
@@ -2242,6 +2447,7 @@ interface ChannelTranslationUpdateInputs {
|
|
|
2242
2447
|
interface ChannelUpdateInputs {
|
|
2243
2448
|
name?: string | null;
|
|
2244
2449
|
imageId?: string | null;
|
|
2450
|
+
bannerId?: string | null;
|
|
2245
2451
|
slug?: string | null;
|
|
2246
2452
|
featured?: boolean | null;
|
|
2247
2453
|
description?: string | null;
|
|
@@ -2256,7 +2462,6 @@ interface ChannelUpdateInputs {
|
|
|
2256
2462
|
}
|
|
2257
2463
|
interface ChannelContentCreateInputs {
|
|
2258
2464
|
title: string;
|
|
2259
|
-
type: keyof typeof ContentType;
|
|
2260
2465
|
published?: string | null;
|
|
2261
2466
|
channelId?: string | null;
|
|
2262
2467
|
featured?: boolean | null;
|
|
@@ -2266,8 +2471,9 @@ interface ChannelContentCreateInputs {
|
|
|
2266
2471
|
duration?: string | null;
|
|
2267
2472
|
body?: string | null;
|
|
2268
2473
|
imageUrl?: string | null;
|
|
2269
|
-
|
|
2270
|
-
|
|
2474
|
+
imageId?: string | null;
|
|
2475
|
+
audioId?: string | null;
|
|
2476
|
+
videoId?: string | null;
|
|
2271
2477
|
externalUrl?: string | null;
|
|
2272
2478
|
appleUrl?: string | null;
|
|
2273
2479
|
spotifyUrl?: string | null;
|
|
@@ -2276,7 +2482,7 @@ interface ChannelContentCreateInputs {
|
|
|
2276
2482
|
}
|
|
2277
2483
|
interface ChannelContentGuestCreateInputs {
|
|
2278
2484
|
name: string;
|
|
2279
|
-
type
|
|
2485
|
+
type: keyof typeof ContentGuestType | null;
|
|
2280
2486
|
slug?: string | null;
|
|
2281
2487
|
title?: string | null;
|
|
2282
2488
|
bio?: string | null;
|
|
@@ -2325,7 +2531,6 @@ interface ChannelContentTranslationUpdateInputs {
|
|
|
2325
2531
|
body?: string | null;
|
|
2326
2532
|
}
|
|
2327
2533
|
interface ChannelContentUpdateInputs {
|
|
2328
|
-
type?: keyof typeof ContentType | null;
|
|
2329
2534
|
published?: string | null;
|
|
2330
2535
|
channelId?: string | null;
|
|
2331
2536
|
featured?: boolean | null;
|
|
@@ -2336,13 +2541,16 @@ interface ChannelContentUpdateInputs {
|
|
|
2336
2541
|
duration?: string | null;
|
|
2337
2542
|
body?: string | null;
|
|
2338
2543
|
imageUrl?: string | null;
|
|
2339
|
-
|
|
2340
|
-
|
|
2544
|
+
imageId?: string | null;
|
|
2545
|
+
audioId?: number | null;
|
|
2546
|
+
videoId?: string | null;
|
|
2341
2547
|
externalUrl?: string | null;
|
|
2342
2548
|
appleUrl?: string | null;
|
|
2343
2549
|
spotifyUrl?: string | null;
|
|
2344
2550
|
googleUrl?: string | null;
|
|
2345
2551
|
youtubeUrl?: string | null;
|
|
2552
|
+
email?: boolean;
|
|
2553
|
+
push?: boolean;
|
|
2346
2554
|
}
|
|
2347
2555
|
interface EventActivationCreateInputs {
|
|
2348
2556
|
name: string;
|
|
@@ -2355,6 +2563,8 @@ interface EventActivationCreateInputs {
|
|
|
2355
2563
|
startAfter?: string | null;
|
|
2356
2564
|
protected?: boolean | null;
|
|
2357
2565
|
protectionCode?: number | string | null;
|
|
2566
|
+
email?: boolean;
|
|
2567
|
+
push?: boolean;
|
|
2358
2568
|
}
|
|
2359
2569
|
interface EventActivationTranslationUpdateInputs {
|
|
2360
2570
|
name?: string | null;
|
|
@@ -2823,6 +3033,10 @@ interface ImageCreateInputs {
|
|
|
2823
3033
|
description?: string | null;
|
|
2824
3034
|
type: ImageType;
|
|
2825
3035
|
}
|
|
3036
|
+
interface UserImageUpdateInputs {
|
|
3037
|
+
imageDataUri?: string | undefined;
|
|
3038
|
+
userId?: string | undefined;
|
|
3039
|
+
}
|
|
2826
3040
|
interface ImageUpdateInputs {
|
|
2827
3041
|
name?: string | null;
|
|
2828
3042
|
description?: string | null;
|
|
@@ -2832,11 +3046,23 @@ interface InterestCreateInputs {
|
|
|
2832
3046
|
name: string;
|
|
2833
3047
|
imageId?: string | null;
|
|
2834
3048
|
featured?: boolean | null;
|
|
3049
|
+
accountId?: string | null;
|
|
3050
|
+
groupId?: string | null;
|
|
3051
|
+
eventId?: string | null;
|
|
3052
|
+
activityId?: string | null;
|
|
3053
|
+
channelId?: string | null;
|
|
3054
|
+
contentId?: string | null;
|
|
2835
3055
|
}
|
|
2836
3056
|
interface InterestUpdateInputs {
|
|
2837
3057
|
name?: string | null;
|
|
2838
3058
|
imageId?: string | null;
|
|
2839
3059
|
featured?: boolean | null;
|
|
3060
|
+
accountId?: string | null;
|
|
3061
|
+
groupId?: string | null;
|
|
3062
|
+
eventId?: string | null;
|
|
3063
|
+
activityId?: string | null;
|
|
3064
|
+
channelId?: string | null;
|
|
3065
|
+
contentId?: string | null;
|
|
2840
3066
|
}
|
|
2841
3067
|
interface InvoiceCreateInputs {
|
|
2842
3068
|
title: string;
|
|
@@ -3201,6 +3427,9 @@ interface ThreadCreateInputs {
|
|
|
3201
3427
|
visible?: boolean | null;
|
|
3202
3428
|
groupId?: string | null;
|
|
3203
3429
|
eventId?: string | null;
|
|
3430
|
+
imageId?: string | null;
|
|
3431
|
+
firstMessage?: string | null;
|
|
3432
|
+
accountIds?: string | null;
|
|
3204
3433
|
}
|
|
3205
3434
|
interface ThreadUpdateInputs {
|
|
3206
3435
|
name?: string | null;
|
|
@@ -3210,6 +3439,9 @@ interface ThreadUpdateInputs {
|
|
|
3210
3439
|
access?: keyof typeof ThreadAccessLevel | null;
|
|
3211
3440
|
groupId?: string | null;
|
|
3212
3441
|
eventId?: string | null;
|
|
3442
|
+
imageId?: string | null;
|
|
3443
|
+
firstMessage?: string | null;
|
|
3444
|
+
accountIds?: string | null;
|
|
3213
3445
|
}
|
|
3214
3446
|
interface EventTicketCreateInputs {
|
|
3215
3447
|
name: string;
|
|
@@ -3303,11 +3535,21 @@ interface UserCreateInputs {
|
|
|
3303
3535
|
}
|
|
3304
3536
|
interface UserUpdateInputs {
|
|
3305
3537
|
title?: string | null;
|
|
3538
|
+
firstName?: string;
|
|
3539
|
+
lastName?: string;
|
|
3306
3540
|
}
|
|
3307
3541
|
interface VideoUpdateInputs {
|
|
3308
3542
|
name?: string;
|
|
3309
3543
|
thumbnailPct?: number | null;
|
|
3310
3544
|
}
|
|
3545
|
+
interface OrganizationModuleUpdateInputs {
|
|
3546
|
+
enabled?: boolean;
|
|
3547
|
+
requireAuth?: boolean;
|
|
3548
|
+
}
|
|
3549
|
+
interface OrganizationModuleActionUpdateInputs {
|
|
3550
|
+
enabled?: boolean;
|
|
3551
|
+
actionType?: OrganizationActionType;
|
|
3552
|
+
}
|
|
3311
3553
|
|
|
3312
3554
|
declare const AppendInfiniteQuery: <TData>(queryClient: QueryClient, key: QueryKey, newData: any) => void;
|
|
3313
3555
|
|
|
@@ -4376,6 +4618,59 @@ declare const GetChannelTranslations: ({ pageParam, pageSize, orderBy, search, c
|
|
|
4376
4618
|
*/
|
|
4377
4619
|
declare const useGetChannelTranslations: (channelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ChannelTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4378
4620
|
|
|
4621
|
+
/**
|
|
4622
|
+
* @category Keys
|
|
4623
|
+
* @group Channels
|
|
4624
|
+
*/
|
|
4625
|
+
declare const CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_KEY: (channelId: string, contentId: string, guestId: string) => string[];
|
|
4626
|
+
/**
|
|
4627
|
+
* @category Setters
|
|
4628
|
+
* @group Channels
|
|
4629
|
+
*/
|
|
4630
|
+
declare const SET_CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [channelId: string, contentId: string, guestId: string], response: Awaited<ReturnType<typeof GetChannelContentGuestTranslations>>) => void;
|
|
4631
|
+
interface GetChannelContentGuestTranslationsProps extends InfiniteQueryParams {
|
|
4632
|
+
channelId: string;
|
|
4633
|
+
contentId: string;
|
|
4634
|
+
guestId: string;
|
|
4635
|
+
}
|
|
4636
|
+
/**
|
|
4637
|
+
* @category Queries
|
|
4638
|
+
* @group Channels
|
|
4639
|
+
*/
|
|
4640
|
+
declare const GetChannelContentGuestTranslations: ({ channelId, contentId, guestId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetChannelContentGuestTranslationsProps) => Promise<ConnectedXMResponse<ChannelContentGuestTranslation[]>>;
|
|
4641
|
+
/**
|
|
4642
|
+
* @category Hooks
|
|
4643
|
+
* @group Channels
|
|
4644
|
+
*/
|
|
4645
|
+
declare const useGetChannelContentGuestTranslations: (channelId?: string, contentId?: string, guestId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContentGuestTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ChannelContentGuestTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4646
|
+
|
|
4647
|
+
/**
|
|
4648
|
+
* @category Keys
|
|
4649
|
+
* @group Channels
|
|
4650
|
+
*/
|
|
4651
|
+
declare const CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_KEY: (channelId: string, contentId: string, guestId: string, locale: string) => string[];
|
|
4652
|
+
/**
|
|
4653
|
+
* @category Setters
|
|
4654
|
+
* @group Channels
|
|
4655
|
+
*/
|
|
4656
|
+
declare const SET_CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_DATA: (client: any, keyParams: [channelId: string, contentId: string, guestId: string, locale: string], response: Awaited<ReturnType<typeof GetChannelContentGuestTranslation>>) => void;
|
|
4657
|
+
interface GetChannelContentGuestTranslationProps extends SingleQueryParams {
|
|
4658
|
+
channelId: string;
|
|
4659
|
+
contentId: string;
|
|
4660
|
+
guestId: string;
|
|
4661
|
+
locale: string;
|
|
4662
|
+
}
|
|
4663
|
+
/**
|
|
4664
|
+
* @category Queries
|
|
4665
|
+
* @group Channels
|
|
4666
|
+
*/
|
|
4667
|
+
declare const GetChannelContentGuestTranslation: ({ channelId, contentId, guestId, locale, adminApiParams, }: GetChannelContentGuestTranslationProps) => Promise<ConnectedXMResponse<ChannelContentGuestTranslation>>;
|
|
4668
|
+
/**
|
|
4669
|
+
* @category Hooks
|
|
4670
|
+
* @group Channels
|
|
4671
|
+
*/
|
|
4672
|
+
declare const useGetChannelContentGuestTranslation: (channelId?: string, contentId?: string, guestId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentGuestTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContentGuestTranslation>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4673
|
+
|
|
4379
4674
|
/**
|
|
4380
4675
|
* @category Keys
|
|
4381
4676
|
* @group Channels
|
|
@@ -4478,12 +4773,12 @@ declare const useGetChannelContentActivities: (channelId?: string, contentId?: s
|
|
|
4478
4773
|
* @category Keys
|
|
4479
4774
|
* @group Channels
|
|
4480
4775
|
*/
|
|
4481
|
-
declare const CHANNEL_CONTENT_GUEST_QUERY_KEY: (channelId: string, contentId: string) => string[];
|
|
4776
|
+
declare const CHANNEL_CONTENT_GUEST_QUERY_KEY: (channelId: string, contentId: string, guestId: string) => string[];
|
|
4482
4777
|
/**
|
|
4483
4778
|
* @category Setters
|
|
4484
4779
|
* @group Channels
|
|
4485
4780
|
*/
|
|
4486
|
-
declare const SET_CHANNEL_CONTENT_GUEST_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string], response: Awaited<ReturnType<typeof GetChannelContentGuest>>) => void;
|
|
4781
|
+
declare const SET_CHANNEL_CONTENT_GUEST_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string, guestId: string], response: Awaited<ReturnType<typeof GetChannelContentGuest>>) => void;
|
|
4487
4782
|
interface GetChannelContentGuestsProps$1 extends SingleQueryParams {
|
|
4488
4783
|
channelId: string;
|
|
4489
4784
|
contentId: string;
|
|
@@ -4494,12 +4789,12 @@ interface GetChannelContentGuestsProps$1 extends SingleQueryParams {
|
|
|
4494
4789
|
* @category Queries
|
|
4495
4790
|
* @group Channels
|
|
4496
4791
|
*/
|
|
4497
|
-
declare const GetChannelContentGuest: ({ channelId, contentId, guestId, adminApiParams, }: GetChannelContentGuestsProps$1) => Promise<ConnectedXMResponse<
|
|
4792
|
+
declare const GetChannelContentGuest: ({ channelId, contentId, guestId, adminApiParams, }: GetChannelContentGuestsProps$1) => Promise<ConnectedXMResponse<ChannelContentGuest>>;
|
|
4498
4793
|
/**
|
|
4499
4794
|
* @category Hooks
|
|
4500
4795
|
* @group Channels
|
|
4501
4796
|
*/
|
|
4502
|
-
declare const useGetChannelContentGuest: (channelId?: string, contentId?: string, guestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentGuest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<
|
|
4797
|
+
declare const useGetChannelContentGuest: (channelId?: string, contentId?: string, guestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentGuest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContentGuest>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4503
4798
|
|
|
4504
4799
|
/**
|
|
4505
4800
|
* @category Keys
|
|
@@ -4520,12 +4815,12 @@ interface GetChannelContentGuestsProps extends InfiniteQueryParams {
|
|
|
4520
4815
|
* @category Queries
|
|
4521
4816
|
* @group Channels
|
|
4522
4817
|
*/
|
|
4523
|
-
declare const GetChannelContentGuests: ({ channelId, contentId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetChannelContentGuestsProps) => Promise<ConnectedXMResponse<
|
|
4818
|
+
declare const GetChannelContentGuests: ({ channelId, contentId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetChannelContentGuestsProps) => Promise<ConnectedXMResponse<ChannelContentGuest[]>>;
|
|
4524
4819
|
/**
|
|
4525
4820
|
* @category Hooks
|
|
4526
4821
|
* @group Channels
|
|
4527
4822
|
*/
|
|
4528
|
-
declare const useGetChannelContentGuests: (channelId?: string, contentId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContentGuests>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<
|
|
4823
|
+
declare const useGetChannelContentGuests: (channelId?: string, contentId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContentGuests>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChannelContentGuest[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4529
4824
|
|
|
4530
4825
|
/**
|
|
4531
4826
|
* @category Keys
|
|
@@ -4625,6 +4920,31 @@ declare const GetChannelSubscribers: ({ pageParam, pageSize, orderBy, search, ch
|
|
|
4625
4920
|
*/
|
|
4626
4921
|
declare const useGetChannelSubscribers: (channelId?: string, status?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelSubscribers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BaseChannelSubscriber[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4627
4922
|
|
|
4923
|
+
/**
|
|
4924
|
+
* @category Keys
|
|
4925
|
+
* @group Channels
|
|
4926
|
+
*/
|
|
4927
|
+
declare const CHANNEL_CONTENT_LIKES_QUERY_KEY: (channelId: string, contentId: string) => string[];
|
|
4928
|
+
/**
|
|
4929
|
+
* @category Setters
|
|
4930
|
+
* @group Channels
|
|
4931
|
+
*/
|
|
4932
|
+
declare const SET_CHANNEL_CONTENT_LIKES_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string], response: Awaited<ReturnType<typeof GetChannelContentLikes>>) => void;
|
|
4933
|
+
interface GetContentLikesProps extends InfiniteQueryParams {
|
|
4934
|
+
channelId: string;
|
|
4935
|
+
contentId: string;
|
|
4936
|
+
}
|
|
4937
|
+
/**
|
|
4938
|
+
* @category Queries
|
|
4939
|
+
* @group Channels
|
|
4940
|
+
*/
|
|
4941
|
+
declare const GetChannelContentLikes: ({ channelId, contentId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetContentLikesProps) => Promise<ConnectedXMResponse<ChannelContentLike[]>>;
|
|
4942
|
+
/**
|
|
4943
|
+
* @category Hooks
|
|
4944
|
+
* @group Channels
|
|
4945
|
+
*/
|
|
4946
|
+
declare const useGetChannelContentLikes: (channelId?: string, contentId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContentLikes>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChannelContentLike[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4947
|
+
|
|
4628
4948
|
/**
|
|
4629
4949
|
* @category Key
|
|
4630
4950
|
* @group Emails
|
|
@@ -7622,20 +7942,21 @@ declare const useGetEventPurchase: (eventId?: string, purchaseId?: string, optio
|
|
|
7622
7942
|
* @category Keys
|
|
7623
7943
|
* @group Events
|
|
7624
7944
|
*/
|
|
7625
|
-
declare const EVENT_PURCHASES_QUERY_KEY: (eventId: string) => string[];
|
|
7945
|
+
declare const EVENT_PURCHASES_QUERY_KEY: (eventId: string, checkedIn?: boolean) => string[];
|
|
7626
7946
|
interface GetEventPurchasesProps extends InfiniteQueryParams {
|
|
7627
7947
|
eventId: string;
|
|
7948
|
+
checkedIn?: boolean;
|
|
7628
7949
|
}
|
|
7629
7950
|
/**
|
|
7630
7951
|
* @category Queries
|
|
7631
7952
|
* @group Events
|
|
7632
7953
|
*/
|
|
7633
|
-
declare const GetEventPurchases: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventPurchasesProps) => Promise<ConnectedXMResponse<Purchase[]>>;
|
|
7954
|
+
declare const GetEventPurchases: ({ eventId, checkedIn, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventPurchasesProps) => Promise<ConnectedXMResponse<Purchase[]>>;
|
|
7634
7955
|
/**
|
|
7635
7956
|
* @category Hooks
|
|
7636
7957
|
* @group Events
|
|
7637
7958
|
*/
|
|
7638
|
-
declare const useGetEventPurchases: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPurchases>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Purchase[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
7959
|
+
declare const useGetEventPurchases: (eventId?: string, checkedIn?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPurchases>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Purchase[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
7639
7960
|
|
|
7640
7961
|
/**
|
|
7641
7962
|
* @category Keys
|
|
@@ -8629,6 +8950,29 @@ declare const GetLevels: ({ pageParam, pageSize, orderBy, search, adminApiParams
|
|
|
8629
8950
|
*/
|
|
8630
8951
|
declare const useGetLevels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetLevels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Level[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
8631
8952
|
|
|
8953
|
+
/**
|
|
8954
|
+
* @category Keys
|
|
8955
|
+
* @group Organization
|
|
8956
|
+
*/
|
|
8957
|
+
declare const ORGANIZATION_MODULES_QUERY_KEY: () => string[];
|
|
8958
|
+
/**
|
|
8959
|
+
* @category Setters
|
|
8960
|
+
* @group Organization
|
|
8961
|
+
*/
|
|
8962
|
+
declare const SET_ORGANIZATION_MODULES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ORGANIZATION_MODULES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetOrganizationModules>>) => void;
|
|
8963
|
+
interface GetOrganizationModulesProps extends InfiniteQueryParams {
|
|
8964
|
+
}
|
|
8965
|
+
/**
|
|
8966
|
+
* @category Queries
|
|
8967
|
+
* @group Organization
|
|
8968
|
+
*/
|
|
8969
|
+
declare const GetOrganizationModules: ({ adminApiParams, }: GetOrganizationModulesProps) => Promise<ConnectedXMResponse<OrganizationModule[]>>;
|
|
8970
|
+
/**
|
|
8971
|
+
* @category Hooks
|
|
8972
|
+
* @group Organization
|
|
8973
|
+
*/
|
|
8974
|
+
declare const useGetOrganizationModules: (options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetOrganizationModules>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<OrganizationModule[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
8975
|
+
|
|
8632
8976
|
/**
|
|
8633
8977
|
* @category Keys
|
|
8634
8978
|
* @group Organization
|
|
@@ -9777,11 +10121,207 @@ declare const GetVideos: ({ pageParam, pageSize, orderBy, search, source, adminA
|
|
|
9777
10121
|
*/
|
|
9778
10122
|
declare const useGetVideos: (source?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetVideos>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Video[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
9779
10123
|
|
|
9780
|
-
|
|
9781
|
-
|
|
9782
|
-
|
|
9783
|
-
|
|
9784
|
-
|
|
10124
|
+
/**
|
|
10125
|
+
* @category Keys
|
|
10126
|
+
* @group Threads
|
|
10127
|
+
*/
|
|
10128
|
+
declare const THREADS_QUERY_KEY: (access?: "public" | "private", groupId?: string, eventId?: string) => string[];
|
|
10129
|
+
/**
|
|
10130
|
+
* @category Setters
|
|
10131
|
+
* @group Threads
|
|
10132
|
+
*/
|
|
10133
|
+
declare const SET_THREADS_QUERY_DATA: (client: QueryClient, keyParams: [access?: "public" | "private" | undefined, groupId?: string | undefined, eventId?: string | undefined], response: Awaited<ReturnType<typeof GetThreads>>) => void;
|
|
10134
|
+
interface GetThreadsProps extends InfiniteQueryParams {
|
|
10135
|
+
access?: "public" | "private";
|
|
10136
|
+
groupId?: string;
|
|
10137
|
+
eventId?: string;
|
|
10138
|
+
}
|
|
10139
|
+
/**
|
|
10140
|
+
* @category Queries
|
|
10141
|
+
* @thread Threads
|
|
10142
|
+
*/
|
|
10143
|
+
declare const GetThreads: ({ pageParam, pageSize, orderBy, access, groupId, eventId, search, adminApiParams, }: GetThreadsProps) => Promise<ConnectedXMResponse<Thread[]>>;
|
|
10144
|
+
/**
|
|
10145
|
+
* @category Hooks
|
|
10146
|
+
* @thread Threads
|
|
10147
|
+
*/
|
|
10148
|
+
declare const useGetThreads: (access: "public" | "private", groupId?: string, eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreads>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Thread[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
10149
|
+
|
|
10150
|
+
/**
|
|
10151
|
+
* @category Keys
|
|
10152
|
+
* @thread Threads
|
|
10153
|
+
*/
|
|
10154
|
+
declare const THREAD_QUERY_KEY: (threadId: string, messageId?: string) => (string | undefined)[];
|
|
10155
|
+
/**
|
|
10156
|
+
* @category Setters
|
|
10157
|
+
* @thread Threads
|
|
10158
|
+
*/
|
|
10159
|
+
declare const SET_THREAD_QUERY_DATA: (client: QueryClient, keyParams: [threadId: string, messageId?: string | undefined], response: Updater<any, Awaited<ReturnType<typeof GetThread>>>, options?: SetDataOptions) => void;
|
|
10160
|
+
interface GetThreadProps extends SingleQueryParams {
|
|
10161
|
+
threadId: string;
|
|
10162
|
+
}
|
|
10163
|
+
/**
|
|
10164
|
+
* @category Queries
|
|
10165
|
+
* @thread Threads
|
|
10166
|
+
*/
|
|
10167
|
+
declare const GetThread: ({ threadId, adminApiParams, }: GetThreadProps) => Promise<ConnectedXMResponse<Thread>>;
|
|
10168
|
+
/**
|
|
10169
|
+
* @category Hooks
|
|
10170
|
+
* @group Threads
|
|
10171
|
+
*/
|
|
10172
|
+
declare const useGetThread: (threadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThread>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
10173
|
+
|
|
10174
|
+
/**
|
|
10175
|
+
* @category Keys
|
|
10176
|
+
* @thread Thread Members
|
|
10177
|
+
*/
|
|
10178
|
+
declare const THREAD_MEMBER_QUERY_KEY: (threadId: string, accountId: string) => string[];
|
|
10179
|
+
interface GetThreadMemberProps extends SingleQueryParams {
|
|
10180
|
+
threadId: string;
|
|
10181
|
+
accountId: string;
|
|
10182
|
+
}
|
|
10183
|
+
/**
|
|
10184
|
+
* @category Queries
|
|
10185
|
+
* @thread Thread Members
|
|
10186
|
+
*/
|
|
10187
|
+
declare const GetThreadMember: ({ threadId, accountId, adminApiParams, }: GetThreadMemberProps) => Promise<ConnectedXMResponse<ThreadMember>>;
|
|
10188
|
+
/**
|
|
10189
|
+
* @category Hooks
|
|
10190
|
+
* @thread Thread Members
|
|
10191
|
+
*/
|
|
10192
|
+
declare const useGetThreadMember: (threadId?: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadMember>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ThreadMember>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
10193
|
+
|
|
10194
|
+
/**
|
|
10195
|
+
* @category Keys
|
|
10196
|
+
* @thread Thread Members
|
|
10197
|
+
*/
|
|
10198
|
+
declare const THREAD_MEMBERS_QUERY_KEY: (threadId: string) => string[];
|
|
10199
|
+
interface GetThreadMembersProps extends InfiniteQueryParams {
|
|
10200
|
+
threadId: string;
|
|
10201
|
+
role?: string;
|
|
10202
|
+
}
|
|
10203
|
+
/**
|
|
10204
|
+
* @category Queries
|
|
10205
|
+
* @thread Thread Members
|
|
10206
|
+
*/
|
|
10207
|
+
declare const GetThreadMembers: ({ threadId, pageParam, pageSize, orderBy, search, role, adminApiParams, }: GetThreadMembersProps) => Promise<ConnectedXMResponse<ThreadMember[]>>;
|
|
10208
|
+
/**
|
|
10209
|
+
* @category Hooks
|
|
10210
|
+
* @thread Thread Members
|
|
10211
|
+
*/
|
|
10212
|
+
declare const useGetThreadMembers: (threadId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreadMembers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ThreadMember[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
10213
|
+
|
|
10214
|
+
declare const THREAD_MESSAGES_QUERY_KEY: (threadId: string, messageId?: string) => QueryKey;
|
|
10215
|
+
declare const SET_THREAD_MESSAGES_QUERY_DATA: (client: QueryClient, keyParams: [threadId: string, messageId?: string | undefined], response: Awaited<ReturnType<typeof GetThreadMessages>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
10216
|
+
interface GetThreadMessagesProps extends InfiniteQueryParams {
|
|
10217
|
+
threadId: string;
|
|
10218
|
+
}
|
|
10219
|
+
declare const GetThreadMessages: ({ threadId, pageParam, pageSize, orderBy, search, queryClient, adminApiParams, }: GetThreadMessagesProps) => Promise<ConnectedXMResponse<ThreadMessage[]>>;
|
|
10220
|
+
declare const useGetThreadMessages: (threadId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreadMessages>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ThreadMessage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
10221
|
+
|
|
10222
|
+
declare const THREAD_MESSAGE_QUERY_KEY: (threadId: string, messageId: string) => QueryKey;
|
|
10223
|
+
declare const SET_THREAD_MESSAGE_QUERY_DATA: (client: QueryClient, keyParams: [threadId: string, messageId: string], response: Awaited<ReturnType<typeof GetThreadMessage>>, options?: SetDataOptions) => void;
|
|
10224
|
+
interface GetThreadMessageProps {
|
|
10225
|
+
threadId: string;
|
|
10226
|
+
messageId: string;
|
|
10227
|
+
adminApiParams?: any;
|
|
10228
|
+
}
|
|
10229
|
+
declare const GetThreadMessage: ({ threadId, messageId, adminApiParams, }: GetThreadMessageProps) => Promise<ConnectedXMResponse<ThreadMessage>>;
|
|
10230
|
+
declare const useGetThreadMessage: (threadId: string, messageId: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadMessage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ThreadMessage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
10231
|
+
|
|
10232
|
+
declare const THREAD_MESSAGE_REPLIES_QUERY_KEY: (threadId: string, messageId: string) => QueryKey;
|
|
10233
|
+
declare const SET_THREAD_MESSAGE_REPLIES_QUERY_DATA: (client: QueryClient, keyParams: [threadId: string, messageId: string], response: Awaited<ReturnType<typeof GetThreadMessageReplies>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
10234
|
+
interface GetThreadMessageRepliesProps extends InfiniteQueryParams {
|
|
10235
|
+
threadId: string;
|
|
10236
|
+
messageId: string;
|
|
10237
|
+
}
|
|
10238
|
+
declare const GetThreadMessageReplies: ({ threadId, messageId, pageParam, pageSize, orderBy, search, queryClient, adminApiParams, }: GetThreadMessageRepliesProps) => Promise<ConnectedXMResponse<ThreadMessage[]>>;
|
|
10239
|
+
declare const useGetThreadMessageReplies: (threadId?: string, messageId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreadMessageReplies>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ThreadMessage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
10240
|
+
|
|
10241
|
+
/**
|
|
10242
|
+
* @category Keys
|
|
10243
|
+
* @thread Thread Groups
|
|
10244
|
+
*/
|
|
10245
|
+
declare const THREAD_GROUPS_QUERY_KEY: () => string[];
|
|
10246
|
+
interface GetThreadGroupsProps extends InfiniteQueryParams {
|
|
10247
|
+
}
|
|
10248
|
+
/**
|
|
10249
|
+
* @category Queries
|
|
10250
|
+
* @thread Thread Groups
|
|
10251
|
+
*/
|
|
10252
|
+
declare const GetThreadGroups: ({ adminApiParams, }: GetThreadGroupsProps) => Promise<ConnectedXMResponse<Thread[]>>;
|
|
10253
|
+
/**
|
|
10254
|
+
* @category Hooks
|
|
10255
|
+
* @thread Thread Groups
|
|
10256
|
+
*/
|
|
10257
|
+
declare const useGetThreadGroups: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreadGroups>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Thread[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
10258
|
+
|
|
10259
|
+
/**
|
|
10260
|
+
* @category Keys
|
|
10261
|
+
* @thread Threads Group
|
|
10262
|
+
*/
|
|
10263
|
+
declare const THREAD_GROUP_QUERY_KEY: (groupId: string) => string[];
|
|
10264
|
+
interface GetThreadsGroupProps extends SingleQueryParams {
|
|
10265
|
+
groupId: string;
|
|
10266
|
+
}
|
|
10267
|
+
/**
|
|
10268
|
+
* @category Queries
|
|
10269
|
+
* @thread Thread Groups
|
|
10270
|
+
*/
|
|
10271
|
+
declare const GetThreadsGroup: ({ groupId, adminApiParams, }: GetThreadsGroupProps) => Promise<ConnectedXMResponse<Thread>>;
|
|
10272
|
+
/**
|
|
10273
|
+
* @category Hooks
|
|
10274
|
+
* @thread Thread Groups
|
|
10275
|
+
*/
|
|
10276
|
+
declare const useGetThreadsGroup: (groupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadsGroup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
10277
|
+
|
|
10278
|
+
/**
|
|
10279
|
+
* @category Keys
|
|
10280
|
+
* @thread Thread Events
|
|
10281
|
+
*/
|
|
10282
|
+
declare const THREAD_EVENTS_QUERY_KEY: () => string[];
|
|
10283
|
+
interface GetThreadEventsProps extends InfiniteQueryParams {
|
|
10284
|
+
}
|
|
10285
|
+
/**
|
|
10286
|
+
* @category Queries
|
|
10287
|
+
* @thread Thread Events
|
|
10288
|
+
*/
|
|
10289
|
+
declare const GetThreadEvents: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetThreadEventsProps) => Promise<ConnectedXMResponse<Thread[]>>;
|
|
10290
|
+
/**
|
|
10291
|
+
* @category Hooks
|
|
10292
|
+
* @thread Thread Events
|
|
10293
|
+
*/
|
|
10294
|
+
declare const useGetThreadEvents: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreadEvents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Thread[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
10295
|
+
|
|
10296
|
+
/**
|
|
10297
|
+
* @category Keys
|
|
10298
|
+
* @thread Threads
|
|
10299
|
+
*/
|
|
10300
|
+
declare const THREAD_MODERATORS_QUERY_KEY: (threadId: string) => (string | undefined)[];
|
|
10301
|
+
/**
|
|
10302
|
+
* @category Setters
|
|
10303
|
+
* @thread Threads
|
|
10304
|
+
*/
|
|
10305
|
+
declare const SET_THREAD_MODERATORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_MODERATORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreadModerators>>) => void;
|
|
10306
|
+
interface GetThreadModeratorsProps extends InfiniteQueryParams {
|
|
10307
|
+
threadId: string;
|
|
10308
|
+
}
|
|
10309
|
+
/**
|
|
10310
|
+
* @category Queries
|
|
10311
|
+
* @thread Threads
|
|
10312
|
+
*/
|
|
10313
|
+
declare const GetThreadModerators: ({ threadId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetThreadModeratorsProps) => Promise<ConnectedXMResponse<ThreadMember[]>>;
|
|
10314
|
+
/**
|
|
10315
|
+
* @category Hooks
|
|
10316
|
+
* @thread Threads
|
|
10317
|
+
*/
|
|
10318
|
+
declare const useGetThreadModerators: (threadId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreadModerators>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ThreadMember[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
10319
|
+
|
|
10320
|
+
interface MutationParams {
|
|
10321
|
+
adminApiParams: AdminApiParams;
|
|
10322
|
+
queryClient?: QueryClient;
|
|
10323
|
+
}
|
|
10324
|
+
interface ConnectedXMMutationOptions<TResponseData, TMutationParams> extends UseMutationOptions<TResponseData, AxiosError<TResponseData>, TMutationParams> {
|
|
9785
10325
|
}
|
|
9786
10326
|
declare const useConnectedMutation: <TMutationParams extends MutationParams, TResponseData extends ConnectedXMResponse<any>>(mutation: MutationFunction<TResponseData, TMutationParams>, options?: Omit<ConnectedXMMutationOptions<TResponseData, Omit<TMutationParams, "queryClient" | "adminApiParams">>, "mutationFn">, permission?: {
|
|
9787
10327
|
domain: PermissionDomain | PermissionDomain[];
|
|
@@ -10492,6 +11032,28 @@ declare const CreateChannelTranslation: ({ channelId, locale, autoTranslate, adm
|
|
|
10492
11032
|
*/
|
|
10493
11033
|
declare const useCreateChannelTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateChannelTranslation>>, Omit<CreateChannelTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelTranslation>, axios.AxiosError<ConnectedXMResponse<ChannelTranslation>, any>, Omit<CreateChannelTranslationParams, "queryClient" | "adminApiParams">, unknown>;
|
|
10494
11034
|
|
|
11035
|
+
/**
|
|
11036
|
+
* @category Params
|
|
11037
|
+
* @group Channel-Translation
|
|
11038
|
+
*/
|
|
11039
|
+
interface CreateChannelContentGuestTranslationParams extends MutationParams {
|
|
11040
|
+
channelId: string;
|
|
11041
|
+
contentId: string;
|
|
11042
|
+
guestId: string;
|
|
11043
|
+
locale: string;
|
|
11044
|
+
autoTranslate?: boolean;
|
|
11045
|
+
}
|
|
11046
|
+
/**
|
|
11047
|
+
* @category Methods
|
|
11048
|
+
* @group Channel-Translation
|
|
11049
|
+
*/
|
|
11050
|
+
declare const CreateChannelContentGuestTranslation: ({ channelId, contentId, guestId, locale, autoTranslate, adminApiParams, queryClient, }: CreateChannelContentGuestTranslationParams) => Promise<ConnectedXMResponse<ChannelContentGuestTranslation>>;
|
|
11051
|
+
/**
|
|
11052
|
+
* @category Mutations
|
|
11053
|
+
* @group Channel-Translation
|
|
11054
|
+
*/
|
|
11055
|
+
declare const useCreateChannelContentGuestTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateChannelContentGuestTranslation>>, Omit<CreateChannelContentGuestTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelContentGuestTranslation>, axios.AxiosError<ConnectedXMResponse<ChannelContentGuestTranslation>, any>, Omit<CreateChannelContentGuestTranslationParams, "queryClient" | "adminApiParams">, unknown>;
|
|
11056
|
+
|
|
10495
11057
|
/**
|
|
10496
11058
|
* @category Params
|
|
10497
11059
|
* @group Channel-Translation
|
|
@@ -10531,6 +11093,27 @@ declare const DeleteChannelTranslation: ({ channelId, locale, adminApiParams, qu
|
|
|
10531
11093
|
*/
|
|
10532
11094
|
declare const useDeleteChannelTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteChannelTranslation>>, Omit<DeleteChannelTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<any, any>, Omit<DeleteChannelTranslationParams, "queryClient" | "adminApiParams">, unknown>;
|
|
10533
11095
|
|
|
11096
|
+
/**
|
|
11097
|
+
* @category Params
|
|
11098
|
+
* @group Channel-Translation
|
|
11099
|
+
*/
|
|
11100
|
+
interface DeleteChannelContentGuestTranslationParams extends MutationParams {
|
|
11101
|
+
contentId: string;
|
|
11102
|
+
channelId: string;
|
|
11103
|
+
guestId: string;
|
|
11104
|
+
locale: string;
|
|
11105
|
+
}
|
|
11106
|
+
/**
|
|
11107
|
+
* @category Methods
|
|
11108
|
+
* @group Channel-Translation
|
|
11109
|
+
*/
|
|
11110
|
+
declare const DeleteChannelContentGuestTranslation: ({ channelId, contentId, guestId, locale, adminApiParams, queryClient, }: DeleteChannelContentGuestTranslationParams) => Promise<any>;
|
|
11111
|
+
/**
|
|
11112
|
+
* @category Mutations
|
|
11113
|
+
* @group Channel-Translation
|
|
11114
|
+
*/
|
|
11115
|
+
declare const useDeleteChannelContentGuestTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteChannelContentGuestTranslation>>, Omit<DeleteChannelContentGuestTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<any, any>, Omit<DeleteChannelContentGuestTranslationParams, "queryClient" | "adminApiParams">, unknown>;
|
|
11116
|
+
|
|
10534
11117
|
/**
|
|
10535
11118
|
* @category Params
|
|
10536
11119
|
* @group Channel-Translation
|
|
@@ -10574,23 +11157,25 @@ declare const useUpdateChannelTranslation: (options?: Omit<ConnectedXMMutationOp
|
|
|
10574
11157
|
|
|
10575
11158
|
/**
|
|
10576
11159
|
* @category Params
|
|
10577
|
-
* @group Channel
|
|
11160
|
+
* @group Channel-Translation
|
|
10578
11161
|
*/
|
|
10579
|
-
interface
|
|
10580
|
-
contentId: string;
|
|
11162
|
+
interface UpdateChannelContentGuestTranslationParams extends MutationParams {
|
|
10581
11163
|
channelId: string;
|
|
10582
|
-
|
|
11164
|
+
contentId: string;
|
|
11165
|
+
guestId: string;
|
|
11166
|
+
locale: ISupportedLocale;
|
|
11167
|
+
guestTranslation: ChannelContentGuestTranslationUpdateInputs;
|
|
10583
11168
|
}
|
|
10584
11169
|
/**
|
|
10585
11170
|
* @category Methods
|
|
10586
|
-
* @group Channel
|
|
11171
|
+
* @group Channel-Translation
|
|
10587
11172
|
*/
|
|
10588
|
-
declare const
|
|
11173
|
+
declare const UpdateChannelContentGuestTranslation: ({ channelId, contentId, guestId, guestTranslation, locale, adminApiParams, queryClient, }: UpdateChannelContentGuestTranslationParams) => Promise<ConnectedXMResponse<ChannelContentGuestTranslation>>;
|
|
10589
11174
|
/**
|
|
10590
11175
|
* @category Mutations
|
|
10591
|
-
* @group Channel
|
|
11176
|
+
* @group Channel-Translation
|
|
10592
11177
|
*/
|
|
10593
|
-
declare const
|
|
11178
|
+
declare const useUpdateChannelContentGuestTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateChannelContentGuestTranslation>>, Omit<UpdateChannelContentGuestTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelContentGuestTranslation>, axios.AxiosError<ConnectedXMResponse<ChannelContentGuestTranslation>, any>, Omit<UpdateChannelContentGuestTranslationParams, "queryClient" | "adminApiParams">, unknown>;
|
|
10594
11179
|
|
|
10595
11180
|
/**
|
|
10596
11181
|
* @category Params
|
|
@@ -10689,21 +11274,21 @@ declare const useDeleteChannelContent: (options?: Omit<ConnectedXMMutationOption
|
|
|
10689
11274
|
* @category Params
|
|
10690
11275
|
* @group Channel
|
|
10691
11276
|
*/
|
|
10692
|
-
interface
|
|
11277
|
+
interface DeleteChannelContentGuestParams extends MutationParams {
|
|
10693
11278
|
contentId: string;
|
|
10694
11279
|
channelId: string;
|
|
10695
|
-
|
|
11280
|
+
guestId: string;
|
|
10696
11281
|
}
|
|
10697
11282
|
/**
|
|
10698
11283
|
* @category Methods
|
|
10699
11284
|
* @group Channel
|
|
10700
11285
|
*/
|
|
10701
|
-
declare const
|
|
11286
|
+
declare const DeleteChannelContentGuest: ({ contentId, guestId, channelId, adminApiParams, queryClient, }: DeleteChannelContentGuestParams) => Promise<ConnectedXMResponse<ChannelContent>>;
|
|
10702
11287
|
/**
|
|
10703
11288
|
* @category Mutations
|
|
10704
11289
|
* @group Channel
|
|
10705
11290
|
*/
|
|
10706
|
-
declare const
|
|
11291
|
+
declare const useDeleteChannelContentGuest: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteChannelContentGuest>>, Omit<DeleteChannelContentGuestParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelContent>, axios.AxiosError<ConnectedXMResponse<ChannelContent>, any>, Omit<DeleteChannelContentGuestParams, "queryClient" | "adminApiParams">, unknown>;
|
|
10707
11292
|
|
|
10708
11293
|
/**
|
|
10709
11294
|
* @category Params
|
|
@@ -10777,12 +11362,12 @@ interface UpdateChannelContentGuestParams extends MutationParams {
|
|
|
10777
11362
|
* @category Methods
|
|
10778
11363
|
* @group Channels
|
|
10779
11364
|
*/
|
|
10780
|
-
declare const UpdateChannelContentGuest: ({ contentId, channelId, guestId, contentGuest: content, adminApiParams, queryClient, }: UpdateChannelContentGuestParams) => Promise<ConnectedXMResponse<
|
|
11365
|
+
declare const UpdateChannelContentGuest: ({ contentId, channelId, guestId, contentGuest: content, adminApiParams, queryClient, }: UpdateChannelContentGuestParams) => Promise<ConnectedXMResponse<ChannelContentGuest>>;
|
|
10781
11366
|
/**
|
|
10782
11367
|
* @category Mutations
|
|
10783
11368
|
* @group Channels
|
|
10784
11369
|
*/
|
|
10785
|
-
declare const useUpdateChannelContentGuest: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateChannelContentGuest>>, Omit<UpdateChannelContentGuestParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<
|
|
11370
|
+
declare const useUpdateChannelContentGuest: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateChannelContentGuest>>, Omit<UpdateChannelContentGuestParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelContentGuest>, axios.AxiosError<ConnectedXMResponse<ChannelContentGuest>, any>, Omit<UpdateChannelContentGuestParams, "queryClient" | "adminApiParams">, unknown>;
|
|
10786
11371
|
|
|
10787
11372
|
/**
|
|
10788
11373
|
* @category Params
|
|
@@ -10804,6 +11389,70 @@ declare const UpdateChannelSubscriber: ({ accountId, channelId, channelSubscribe
|
|
|
10804
11389
|
*/
|
|
10805
11390
|
declare const useUpdateChannelSubscriber: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateChannelSubscriber>>, Omit<UpdateChannelSubscriberParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BaseChannelSubscriber>, axios.AxiosError<ConnectedXMResponse<BaseChannelSubscriber>, any>, Omit<UpdateChannelSubscriberParams, "queryClient" | "adminApiParams">, unknown>;
|
|
10806
11391
|
|
|
11392
|
+
/**
|
|
11393
|
+
* @category Params
|
|
11394
|
+
* @group Channels
|
|
11395
|
+
*/
|
|
11396
|
+
interface CreateChannelContentGuestParams extends MutationParams {
|
|
11397
|
+
contentId: string;
|
|
11398
|
+
channelId: string;
|
|
11399
|
+
contentGuest: ChannelContentGuestCreateInputs;
|
|
11400
|
+
}
|
|
11401
|
+
/**
|
|
11402
|
+
* @category Methods
|
|
11403
|
+
* @group Channels
|
|
11404
|
+
*/
|
|
11405
|
+
declare const CreateChannelContentGuest: ({ contentId, channelId, contentGuest: content, adminApiParams, queryClient, }: CreateChannelContentGuestParams) => Promise<ConnectedXMResponse<ChannelContentGuest>>;
|
|
11406
|
+
/**
|
|
11407
|
+
* @category Mutations
|
|
11408
|
+
* @group Channels
|
|
11409
|
+
*/
|
|
11410
|
+
declare const useCreateChannelContentGuest: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateChannelContentGuest>>, Omit<CreateChannelContentGuestParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelContentGuest>, axios.AxiosError<ConnectedXMResponse<ChannelContentGuest>, any>, Omit<CreateChannelContentGuestParams, "queryClient" | "adminApiParams">, unknown>;
|
|
11411
|
+
|
|
11412
|
+
/**
|
|
11413
|
+
* @category Params
|
|
11414
|
+
* @group Channel
|
|
11415
|
+
*/
|
|
11416
|
+
interface UpdateChannelContentPublishScheduleParams extends MutationParams {
|
|
11417
|
+
contentId: string;
|
|
11418
|
+
channelId: string;
|
|
11419
|
+
schedule: {
|
|
11420
|
+
date: string;
|
|
11421
|
+
email: boolean;
|
|
11422
|
+
push: boolean;
|
|
11423
|
+
visible: boolean;
|
|
11424
|
+
};
|
|
11425
|
+
}
|
|
11426
|
+
/**
|
|
11427
|
+
* @category Methods
|
|
11428
|
+
* @group Channel
|
|
11429
|
+
*/
|
|
11430
|
+
declare const UpdateChannelContentPublishSchedule: ({ contentId, channelId, schedule, adminApiParams, queryClient, }: UpdateChannelContentPublishScheduleParams) => Promise<ConnectedXMResponse<ChannelContent>>;
|
|
11431
|
+
/**
|
|
11432
|
+
* @category Mutations
|
|
11433
|
+
* @group Channel
|
|
11434
|
+
*/
|
|
11435
|
+
declare const useUpdateChannelContentPublishSchedule: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateChannelContentPublishSchedule>>, Omit<UpdateChannelContentPublishScheduleParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelContent>, axios.AxiosError<ConnectedXMResponse<ChannelContent>, any>, Omit<UpdateChannelContentPublishScheduleParams, "queryClient" | "adminApiParams">, unknown>;
|
|
11436
|
+
|
|
11437
|
+
/**
|
|
11438
|
+
* @category Params
|
|
11439
|
+
* @group Channel
|
|
11440
|
+
*/
|
|
11441
|
+
interface CancelChannelContentPublishScheduleParams extends MutationParams {
|
|
11442
|
+
contentId: string;
|
|
11443
|
+
channelId: string;
|
|
11444
|
+
}
|
|
11445
|
+
/**
|
|
11446
|
+
* @category Methods
|
|
11447
|
+
* @group Channel
|
|
11448
|
+
*/
|
|
11449
|
+
declare const CancelChannelContentPublishSchedule: ({ contentId, channelId, adminApiParams, queryClient, }: CancelChannelContentPublishScheduleParams) => Promise<ConnectedXMResponse<ChannelContent>>;
|
|
11450
|
+
/**
|
|
11451
|
+
* @category Mutations
|
|
11452
|
+
* @group Channel
|
|
11453
|
+
*/
|
|
11454
|
+
declare const useCancelChannelContentPublishSchedule: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CancelChannelContentPublishSchedule>>, Omit<CancelChannelContentPublishScheduleParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelContent>, axios.AxiosError<ConnectedXMResponse<ChannelContent>, any>, Omit<CancelChannelContentPublishScheduleParams, "queryClient" | "adminApiParams">, unknown>;
|
|
11455
|
+
|
|
10807
11456
|
/**
|
|
10808
11457
|
* @category Params
|
|
10809
11458
|
* @group Event-Activations-Translations
|
|
@@ -11602,6 +12251,26 @@ declare const DeleteEventFaqSectionQuestion: ({ eventId, sectionId, questionId,
|
|
|
11602
12251
|
*/
|
|
11603
12252
|
declare const useDeleteEventFaqSectionQuestion: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteEventFaqSectionQuestion>>, Omit<DeleteEventFaqSectionQuestionParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteEventFaqSectionQuestionParams, "queryClient" | "adminApiParams">, unknown>;
|
|
11604
12253
|
|
|
12254
|
+
/**
|
|
12255
|
+
* @category Params
|
|
12256
|
+
* @group Event-Sections
|
|
12257
|
+
*/
|
|
12258
|
+
interface ReorderEventFaqSectionQuestionsParams extends MutationParams {
|
|
12259
|
+
eventId: string;
|
|
12260
|
+
sectionId: string;
|
|
12261
|
+
questionIds: string[];
|
|
12262
|
+
}
|
|
12263
|
+
/**
|
|
12264
|
+
* @category Methods
|
|
12265
|
+
* @group Event-Sections
|
|
12266
|
+
*/
|
|
12267
|
+
declare const ReorderEventFaqSectionQuestions: ({ eventId, sectionId, questionIds, adminApiParams, queryClient, }: ReorderEventFaqSectionQuestionsParams) => Promise<ConnectedXMResponse<Faq[]>>;
|
|
12268
|
+
/**
|
|
12269
|
+
* @category Mutations
|
|
12270
|
+
* @group Event-Sections
|
|
12271
|
+
*/
|
|
12272
|
+
declare const useReorderEventFaqSectionQuestions: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof ReorderEventFaqSectionQuestions>>, Omit<ReorderEventFaqSectionQuestionsParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Faq[]>, axios.AxiosError<ConnectedXMResponse<Faq[]>, any>, Omit<ReorderEventFaqSectionQuestionsParams, "queryClient" | "adminApiParams">, unknown>;
|
|
12273
|
+
|
|
11605
12274
|
/**
|
|
11606
12275
|
* @category Params
|
|
11607
12276
|
* @group Event-Faqs
|
|
@@ -11643,26 +12312,6 @@ declare const UpdateEventFaqSectionQuestion: ({ sectionId, eventId, questionId,
|
|
|
11643
12312
|
*/
|
|
11644
12313
|
declare const useUpdateEventFaqSectionQuestion: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventFaqSectionQuestion>>, Omit<UpdateEventFaqSectionQuestionParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Faq>, axios.AxiosError<ConnectedXMResponse<Faq>, any>, Omit<UpdateEventFaqSectionQuestionParams, "queryClient" | "adminApiParams">, unknown>;
|
|
11645
12314
|
|
|
11646
|
-
/**
|
|
11647
|
-
* @category Params
|
|
11648
|
-
* @group Event-Sections
|
|
11649
|
-
*/
|
|
11650
|
-
interface ReorderEventFaqSectionQuestionsParams extends MutationParams {
|
|
11651
|
-
eventId: string;
|
|
11652
|
-
sectionId: string;
|
|
11653
|
-
questionIds: string[];
|
|
11654
|
-
}
|
|
11655
|
-
/**
|
|
11656
|
-
* @category Methods
|
|
11657
|
-
* @group Event-Sections
|
|
11658
|
-
*/
|
|
11659
|
-
declare const ReorderEventFaqSectionQuestions: ({ eventId, sectionId, questionIds, adminApiParams, queryClient, }: ReorderEventFaqSectionQuestionsParams) => Promise<ConnectedXMResponse<Faq[]>>;
|
|
11660
|
-
/**
|
|
11661
|
-
* @category Mutations
|
|
11662
|
-
* @group Event-Sections
|
|
11663
|
-
*/
|
|
11664
|
-
declare const useReorderEventFaqSectionQuestions: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof ReorderEventFaqSectionQuestions>>, Omit<ReorderEventFaqSectionQuestionsParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Faq[]>, axios.AxiosError<ConnectedXMResponse<Faq[]>, any>, Omit<ReorderEventFaqSectionQuestionsParams, "queryClient" | "adminApiParams">, unknown>;
|
|
11665
|
-
|
|
11666
12315
|
/**
|
|
11667
12316
|
* @category Params
|
|
11668
12317
|
* @group Event-OnSite
|
|
@@ -15070,6 +15719,44 @@ declare const UpdateLevel: ({ levelId, level, adminApiParams, queryClient, }: Up
|
|
|
15070
15719
|
*/
|
|
15071
15720
|
declare const useUpdateLevel: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateLevel>>, Omit<UpdateLevelParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Level>, axios.AxiosError<ConnectedXMResponse<Level>, any>, Omit<UpdateLevelParams, "queryClient" | "adminApiParams">, unknown>;
|
|
15072
15721
|
|
|
15722
|
+
/**
|
|
15723
|
+
* @category Params
|
|
15724
|
+
* @group Organization
|
|
15725
|
+
*/
|
|
15726
|
+
interface UpdateOrganizationModulesParams extends MutationParams {
|
|
15727
|
+
module: OrganizationModuleUpdateInputs;
|
|
15728
|
+
moduleType: OrganizationModuleType;
|
|
15729
|
+
}
|
|
15730
|
+
/**
|
|
15731
|
+
* @category Methods
|
|
15732
|
+
* @group Organization
|
|
15733
|
+
*/
|
|
15734
|
+
declare const UpdateOrganizationModule: ({ module, moduleType, adminApiParams, queryClient, }: UpdateOrganizationModulesParams) => Promise<ConnectedXMResponse<OrganizationModule>>;
|
|
15735
|
+
/**
|
|
15736
|
+
* @category Mutations
|
|
15737
|
+
* @group Organization
|
|
15738
|
+
*/
|
|
15739
|
+
declare const useUpdateOrganizationModules: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateOrganizationModule>>, Omit<UpdateOrganizationModulesParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<OrganizationModule>, axios.AxiosError<ConnectedXMResponse<OrganizationModule>, any>, Omit<UpdateOrganizationModulesParams, "queryClient" | "adminApiParams">, unknown>;
|
|
15740
|
+
|
|
15741
|
+
/**
|
|
15742
|
+
* @category Params
|
|
15743
|
+
* @group Organization
|
|
15744
|
+
*/
|
|
15745
|
+
interface UpdateOrganizationModuleActionsParams extends MutationParams {
|
|
15746
|
+
moduleType: OrganizationModuleType;
|
|
15747
|
+
moduleActions: OrganizationModuleActionUpdateInputs[];
|
|
15748
|
+
}
|
|
15749
|
+
/**
|
|
15750
|
+
* @category Methods
|
|
15751
|
+
* @group Organization
|
|
15752
|
+
*/
|
|
15753
|
+
declare const UpdateOrganizationModuleActions: ({ moduleType, moduleActions, adminApiParams, queryClient, }: UpdateOrganizationModuleActionsParams) => Promise<ConnectedXMResponse<OrganizationModule>>;
|
|
15754
|
+
/**
|
|
15755
|
+
* @category Mutations
|
|
15756
|
+
* @group Organization
|
|
15757
|
+
*/
|
|
15758
|
+
declare const useUpdateOrganizationModuleActions: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateOrganizationModuleActions>>, Omit<UpdateOrganizationModuleActionsParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<OrganizationModule>, axios.AxiosError<ConnectedXMResponse<OrganizationModule>, any>, Omit<UpdateOrganizationModuleActionsParams, "queryClient" | "adminApiParams">, unknown>;
|
|
15759
|
+
|
|
15073
15760
|
/**
|
|
15074
15761
|
* @category Params
|
|
15075
15762
|
* @group Organization-Pages-Translations
|
|
@@ -15210,13 +15897,13 @@ declare const useToggleOrganizationPaymentIntegration: (options?: Omit<Connected
|
|
|
15210
15897
|
*/
|
|
15211
15898
|
interface UpdateOrganizationTriggerParams extends MutationParams {
|
|
15212
15899
|
type: OrganizationTriggerType;
|
|
15213
|
-
|
|
15900
|
+
trigger: TriggerUpdateInputs;
|
|
15214
15901
|
}
|
|
15215
15902
|
/**
|
|
15216
15903
|
* @category Methods
|
|
15217
15904
|
* @group Organization-Triggers
|
|
15218
15905
|
*/
|
|
15219
|
-
declare const UpdateOrganizationTrigger: ({ type,
|
|
15906
|
+
declare const UpdateOrganizationTrigger: ({ type, trigger, adminApiParams, queryClient, }: UpdateOrganizationTriggerParams) => Promise<ConnectedXMResponse<OrganizationTrigger>>;
|
|
15220
15907
|
/**
|
|
15221
15908
|
* @category Mutations
|
|
15222
15909
|
* @group Organization-Triggers
|
|
@@ -15429,6 +16116,24 @@ declare const UpdateReport: ({ reportId, report, adminApiParams, queryClient, }:
|
|
|
15429
16116
|
*/
|
|
15430
16117
|
declare const useUpdateReport: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateReport>>, Omit<UpdateReportParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Report>, axios.AxiosError<ConnectedXMResponse<Report>, any>, Omit<UpdateReportParams, "queryClient" | "adminApiParams">, unknown>;
|
|
15431
16118
|
|
|
16119
|
+
/**
|
|
16120
|
+
* @category Params
|
|
16121
|
+
* @group Images
|
|
16122
|
+
*/
|
|
16123
|
+
interface UpdateUserImageParams extends MutationParams {
|
|
16124
|
+
image: UserImageUpdateInputs;
|
|
16125
|
+
}
|
|
16126
|
+
/**
|
|
16127
|
+
* @category Methods
|
|
16128
|
+
* @group Images
|
|
16129
|
+
*/
|
|
16130
|
+
declare const UpdateUserImage: ({ image, adminApiParams, queryClient, }: UpdateUserImageParams) => Promise<ConnectedXMResponse<User>>;
|
|
16131
|
+
/**
|
|
16132
|
+
* @category Mutations
|
|
16133
|
+
* @group Images
|
|
16134
|
+
*/
|
|
16135
|
+
declare const useUpdateUserImage: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateUserImage>>, Omit<UpdateUserImageParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<User>, axios.AxiosError<ConnectedXMResponse<User>, any>, Omit<UpdateUserImageParams, "queryClient" | "adminApiParams">, unknown>;
|
|
16136
|
+
|
|
15432
16137
|
/**
|
|
15433
16138
|
* @category Params
|
|
15434
16139
|
* @group Self
|
|
@@ -16138,4 +16843,103 @@ declare const UpdateVideo: ({ videoId, video, adminApiParams, queryClient, }: Up
|
|
|
16138
16843
|
*/
|
|
16139
16844
|
declare const useUpdateVideo: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateVideo>>, Omit<UpdateVideoParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Video>, axios.AxiosError<ConnectedXMResponse<Video>, any>, Omit<UpdateVideoParams, "queryClient" | "adminApiParams">, unknown>;
|
|
16140
16845
|
|
|
16141
|
-
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_COGNITO_USERS_QUERY_KEY, ACCOUNT_COGNITO_USER_QUERY_KEY, ACCOUNT_COMMENTS_QUERY_KEY, ACCOUNT_DELEGATES_QUERY_KEY, ACCOUNT_DELEGATE_OF_QUERY_KEY, ACCOUNT_EMAILS_QUERY_KEY, ACCOUNT_EVENTS_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWING_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_INTERESTS_QUERY_KEY, ACCOUNT_LIKES_QUERY_KEY, ACCOUNT_QUERY_KEY, ACCOUNT_REGISTRATIONS_QUERY_KEY, ACCOUNT_RESHARES_QUERY_KEY, ACCOUNT_TIERS_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_INTERESTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ACTIVITY_RESHARES_QUERY_KEY, ADVERTISEMENTS_QUERY_KEY, ADVERTISEMENT_CLICKS_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, ADVERTISEMENT_VIEWS_QUERY_KEY, ANNOUNCEMENTS_QUERY_KEY, ANNOUNCEMENT_EMAILS_QUERY_KEY, ANNOUNCEMENT_QUERY_KEY, type APILog, API_LOGS_QUERY_KEY, API_LOG_QUERY_KEY, type Account, type AccountCreateInputs, AccountType, type AccountUpdateInputs, type ActivationCompletion, type ActivationTranslation, type Activity, type ActivityCreateInputs, type ActivityUpdateInputs, AddAccountDelegate, type AddAccountDelegateParams, AddAccountFollower, type AddAccountFollowerParams, AddAccountFollowing, type AddAccountFollowingParams, AddAccountGroup, type AddAccountGroupParams, AddAccountInterest, type AddAccountInterestParams, AddAccountTier, type AddAccountTierParams, AddActivityInterest, type AddActivityInterestParams, AddChannelContentGuest, type AddChannelContentGuestParams, AddChannelSubscriber, type AddChannelsubscriberParams, AddEventAddOnTicket, type AddEventAddOnTicketParams, AddEventAddOnTier, type AddEventAddOnTierParams, AddEventBenefit, type AddEventBenefitParams, AddEventCoHost, type AddEventCoHostParams, AddEventPageImage, type AddEventPageImageParams, AddEventQuestionChoiceSubQuestion, type AddEventQuestionChoiceSubQuestionParams, AddEventRegistrationPurchaseAddOn, type AddEventRegistrationPurchaseAddOnParams, AddEventReservationSectionTicket, type AddEventReservationSectionTicketParams, AddEventReservationSectionTier, type AddEventReservationSectionTierParams, AddEventSectionAddOn, type AddEventSectionAddOnParams, AddEventSectionQuestion, type AddEventSectionQuestionParams, AddEventSectionTicket, type AddEventSectionTicketParams, AddEventSectionTier, type AddEventSectionTierParams, AddEventSessionAccount, type AddEventSessionAccountParams, AddEventSessionSpeaker, type AddEventSessionSpeakerParams, AddEventSessionSponsor, type AddEventSessionSponsorParams, AddEventSessionTrack, type AddEventSessionTrackParams, AddEventSpeakerSession, type AddEventSpeakerSessionParams, AddEventSponsorAccount, type AddEventSponsorAccountParams, AddEventTicketAddOn, type AddEventTicketAddOnParams, AddEventTicketTier, type AddEventTicketTierParams, AddEventTrackSession, type AddEventTrackSessionParams, AddEventTrackSponsor, type AddEventTrackSponsorParams, AddGroupEvent, type AddGroupEventParams, AddGroupInterest, type AddGroupInterestParams, AddGroupMember, type AddGroupMemberParams, AddGroupModerator, type AddGroupModeratorParams, AddGroupSponsor, type AddGroupSponsorParams, AddLevelAccount, type AddLevelAccountParams, AddOrganizationUser, type AddOrganizationUserParams, AddSeriesEvent, type AddSeriesEventParams, AddSubscriptionProductTier, type AddSubscriptionProductTierParams, AddTierAccount, type AddTierAccountParams, type AdminApiParams, type Advertisement, type AdvertisementClick, type AdvertisementCreateInputs, AdvertisementType, type AdvertisementUpdateInputs, type AdvertisementView, type Announcement, type AnnouncementCreateInputs, type AnnouncementUpdateInputs, AppendInfiniteQuery, ApplyEventRegistrationCoupon, type ApplyEventRegistrationCouponParams, ApproveEvent, type ApproveEventParams, BENEFITS_QUERY_KEY, BENEFIT_CLICKS_QUERY_KEY, BENEFIT_QUERY_KEY, BENEFIT_TRANSLATIONS_QUERY_KEY, BENEFIT_TRANSLATION_QUERY_KEY, BadgeFieldTransformation, BadgeFieldType, type BarChartSummaryData, type BaseAccount, type BaseActivationCompletion, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChannel, type BaseChannelContent, type BaseChannelContentGuest, type BaseChannelSubscriber, type BaseCoupon, type BaseEmailReceipt, type BaseEvent, type BaseEventActivation, type BaseEventAddOn, type BaseEventEmail, type BaseEventOnSite, type BaseEventOnSiteBadgeField, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseEventSession, type BaseEventSpeaker, type BaseEventTicket, type BaseEventTrack, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseImport, type BaseImportItem, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLevel, type BaseLike, type BaseLinkPreview, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistration, type BaseRegistrationBypass, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionChoiceSubQuestion, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionResponseChange, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseRegistrationSectionQuestion, type BaseRegistrationStatusChange, type BaseSchedule, type BaseSeries, type BaseStreamInput, type BaseSubscription, type BaseSubscriptionPayment, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTier, type BaseTransfer, type BaseTransferLog, type BaseUser, type BaseVideo, type Benefit, type BenefitClick, type BenefitCreateInputs, type BenefitTranslation, type BenefitTranslationUpdateInputs, type BenefitUpdateInputs, CHANNELS_QUERY_KEY, CHANNEL_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_GUEST_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_CONTENT_TRANSLATIONS_QUERY_KEY, CHANNEL_CONTENT_TRANSLATION_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIBERS_QUERY_KEY, CHANNEL_SUBSCRIBER_QUERY_KEY, CHANNEL_TRANSLATIONS_QUERY_KEY, CHANNEL_TRANSLATION_QUERY_KEY, CacheIndividualQueries, CancelAnnouncementSchedule, type CancelAnnouncementScheduleParams, CancelEventRegistrationPurchaseTransfer, type CancelEventRegistrationPurchaseTransferParams, CancelSubscription, type CancelSubscriptionParams, type Channel, type ChannelCollectionCreateInputs, type ChannelCollectionTranslationUpdateInputs, type ChannelCollectionUpdateInputs, type ChannelContent, type ChannelContentCreateInputs, type ChannelContentGuestCreateInputs, type ChannelContentGuestTranslationUpdateInputs, type ChannelContentGuestUpdateInputs, type ChannelContentTranslation, type ChannelContentTranslationUpdateInputs, type ChannelContentUpdateInputs, type ChannelCreateInputs, ChannelFormat, type ChannelSubscriberUpdateInputs, type ChannelTranslation, type ChannelTranslationUpdateInputs, type ChannelUpdateInputs, type CognitoUser, type CognitoUserStatus, ConfirmAccountCognitoUser, type ConfirmAccountCognitoUserParams, type ConnectedXMMutationOptions, ConnectedXMProvider, type ConnectedXMResponse, ContentGuestType, ContentStatus, ContentType, type CountChartSummaryData, type Coupon, CreateAccount, type CreateAccountParams, CreateAdvertisement, type CreateAdvertisementParams, CreateAnnouncement, type CreateAnnouncementParams, CreateBenefit, type CreateBenefitParams, CreateBenefitTranslation, type CreateBenefitTranslationParams, CreateChannel, CreateChannelContent, type CreateChannelContentParams, CreateChannelContentTranslation, type CreateChannelContentTranslationParams, type CreateChannelParams, CreateChannelTranslation, type CreateChannelTranslationParams, CreateEvent, CreateEventActivation, CreateEventActivationCompletion, type CreateEventActivationCompletionParams, type CreateEventActivationParams, CreateEventActivationTranslation, type CreateEventActivationTranslationParams, CreateEventAddOn, type CreateEventAddOnParams, CreateEventAddOnTranslation, type CreateEventAddOnTranslationParams, CreateEventCoupon, type CreateEventCouponParams, CreateEventFaqSection, type CreateEventFaqSectionParams, CreateEventFaqSectionQuestion, type CreateEventFaqSectionQuestionParams, CreateEventFaqSectionQuestionTranslation, type CreateEventFaqSectionQuestionTranslationParams, CreateEventFaqSectionTranslation, type CreateEventFaqSectionTranslationParams, CreateEventPage, type CreateEventPageParams, CreateEventPageTranslation, type CreateEventPageTranslationParams, type CreateEventParams, CreateEventQuestion, CreateEventQuestionChoice, type CreateEventQuestionChoiceParams, CreateEventQuestionChoiceTranslation, type CreateEventQuestionChoiceTranslationParams, type CreateEventQuestionParams, CreateEventQuestionSearchValues, type CreateEventQuestionSearchValuesParams, CreateEventQuestionTranslation, type CreateEventQuestionTranslationParams, CreateEventRegistration, CreateEventRegistrationBypass, type CreateEventRegistrationBypassParams, type CreateEventRegistrationParams, CreateEventRegistrationPurchase, type CreateEventRegistrationPurchaseParams, CreateEventReservationSection, CreateEventReservationSectionLocation, type CreateEventReservationSectionLocationParams, CreateEventReservationSectionLocationTranslation, type CreateEventReservationSectionLocationTranslationParams, type CreateEventReservationSectionParams, CreateEventReservationSectionTranslation, type CreateEventReservationSectionTranslationParams, CreateEventSection, type CreateEventSectionParams, CreateEventSectionTranslation, type CreateEventSectionTranslationParams, CreateEventSession, type CreateEventSessionParams, CreateEventSessionTranslation, type CreateEventSessionTranslationParams, CreateEventSpeaker, type CreateEventSpeakerParams, CreateEventSpeakerTranslation, type CreateEventSpeakerTranslationParams, CreateEventTicket, type CreateEventTicketParams, CreateEventTicketTranslation, type CreateEventTicketTranslationParams, CreateEventTrack, type CreateEventTrackParams, CreateEventTrackTranslation, type CreateEventTrackTranslationParams, CreateEventTranslation, type CreateEventTranslationParams, CreateGroup, type CreateGroupParams, CreateGroupTranslation, type CreateGroupTranslationParams, CreateImage, type CreateImageParams, CreateImport, type CreateImportParams, CreateInterest, type CreateInterestParams, CreateInvoice, CreateInvoiceLineItem, type CreateInvoiceLineItemParams, type CreateInvoiceParams, CreateLevel, type CreateLevelParams, CreateLevelTranslation, type CreateLevelTranslationParams, CreateOrganizationPageTranslation, type CreateOrganizationPageTranslationParams, CreateOrganizationPaymentIntegration, type CreateOrganizationPaymentIntegrationParams, CreateOrganizationTeamMember, type CreateOrganizationTeamMemberParams, CreateReport, type CreateReportParams, CreateSeries, type CreateSeriesParams, CreateStreamInput, CreateStreamInputOutput, type CreateStreamInputOutputParams, type CreateStreamInputParams, CreateSubscription, type CreateSubscriptionParams, CreateSubscriptionProduct, type CreateSubscriptionProductParams, CreateSubscriptionProductPrice, type CreateSubscriptionProductPriceParams, CreateSupportTicket, CreateSupportTicketNote, type CreateSupportTicketNoteParams, type CreateSupportTicketParams, CreateTier, type CreateTierParams, Currency, DelegateRole, DeleteAccount, type DeleteAccountParams, DeleteActivity, type DeleteActivityParams, DeleteAdvertisement, type DeleteAdvertisementParams, DeleteBenefit, type DeleteBenefitParams, DeleteBenefitTranslation, type DeleteBenefitTranslationParams, DeleteChannel, DeleteChannelContent, type DeleteChannelContentParams, DeleteChannelContentTranslation, type DeleteChannelContentTranslationParams, type DeleteChannelParams, DeleteChannelTranslation, type DeleteChannelTranslationParams, DeleteEvent, DeleteEventActivation, DeleteEventActivationCompletion, type DeleteEventActivationCompletionParams, type DeleteEventActivationParams, DeleteEventActivationTranslation, type DeleteEventActivationTranslationParams, DeleteEventAddOn, type DeleteEventAddOnParams, DeleteEventAddOnTranslation, type DeleteEventAddOnTranslationParams, DeleteEventCoupon, type DeleteEventCouponParams, DeleteEventFaqSection, type DeleteEventFaqSectionParams, DeleteEventFaqSectionQuestion, type DeleteEventFaqSectionQuestionParams, DeleteEventFaqSectionQuestionTranslation, type DeleteEventFaqSectionQuestionTranslationParams, DeleteEventFaqSectionTranslation, type DeleteEventFaqSectionTranslationParams, DeleteEventPage, type DeleteEventPageParams, DeleteEventPageTranslation, type DeleteEventPageTranslationParams, type DeleteEventParams, DeleteEventQuestion, DeleteEventQuestionChoice, type DeleteEventQuestionChoiceParams, DeleteEventQuestionChoiceTranslation, type DeleteEventQuestionChoiceTranslationParams, type DeleteEventQuestionParams, DeleteEventQuestionSearchValue, type DeleteEventQuestionSearchValueParams, DeleteEventQuestionSearchValues, type DeleteEventQuestionSearchValuesParams, DeleteEventQuestionTranslation, type DeleteEventQuestionTranslationParams, DeleteEventRegistration, DeleteEventRegistrationBypass, type DeleteEventRegistrationBypassParams, type DeleteEventRegistrationParams, DeleteEventRegistrationPurchase, type DeleteEventRegistrationPurchaseParams, DeleteEventReservationSection, DeleteEventReservationSectionLocation, type DeleteEventReservationSectionLocationParams, DeleteEventReservationSectionLocationTranslation, type DeleteEventReservationSectionLocationTranslationParams, type DeleteEventReservationSectionParams, DeleteEventReservationSectionTranslation, type DeleteEventReservationSectionTranslationParams, DeleteEventSection, type DeleteEventSectionParams, DeleteEventSectionTranslation, type DeleteEventSectionTranslationParams, DeleteEventSession, type DeleteEventSessionParams, DeleteEventSessionTranslation, type DeleteEventSessionTranslationParams, DeleteEventSpeaker, type DeleteEventSpeakerParams, DeleteEventSpeakerTranslation, type DeleteEventSpeakerTranslationParams, DeleteEventTicket, type DeleteEventTicketParams, DeleteEventTicketTranslation, type DeleteEventTicketTranslationParams, DeleteEventTrack, type DeleteEventTrackParams, DeleteEventTrackTranslation, type DeleteEventTrackTranslationParams, DeleteEventTranslation, type DeleteEventTranslationParams, DeleteFile, type DeleteFileParams, DeleteGroup, type DeleteGroupParams, DeleteGroupTranslation, type DeleteGroupTranslationParams, DeleteImage, type DeleteImageParams, DeleteInterest, type DeleteInterestParams, DeleteInvoice, DeleteInvoiceLineItem, type DeleteInvoiceLineItemParams, type DeleteInvoiceParams, DeleteLevel, type DeleteLevelParams, DeleteLevelTranslation, type DeleteLevelTranslationParams, DeleteManyImages, type DeleteManyImagesParams, DeleteManyVideos, type DeleteManyVideosParams, DeleteOrganizationPageTranslation, type DeleteOrganizationPageTranslationParams, DeleteOrganizationPaymentIntegration, type DeleteOrganizationPaymentIntegrationParams, DeleteOrganizationTeamMember, type DeleteOrganizationTeamMemberParams, DeleteOrganizationUser, type DeleteOrganizationUserParams, DeleteReport, type DeleteReportParams, DeleteSeries, type DeleteSeriesParams, DeleteStreamInput, DeleteStreamInputOutput, type DeleteStreamInputOutputParams, type DeleteStreamInputParams, DeleteSubscriptionProduct, type DeleteSubscriptionProductParams, DeleteSupportTicket, DeleteSupportTicketNote, type DeleteSupportTicketNoteParams, type DeleteSupportTicketParams, DeleteTier, type DeleteTierParams, DeleteVideo, type DeleteVideoParams, EMAIL_RECEIPTS_QUERY_KEY, EMAIL_RECEIPT_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACCOUNT_REGISTRATION_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_COMPLETIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_TRANSLATIONS_QUERY_KEY, EVENT_ACTIVATION_TRANSLATION_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_ADD_ONS_QUERY_KEY, EVENT_ADD_ON_PURCHASES_QUERY_KEY, EVENT_ADD_ON_QUERY_KEY, EVENT_ADD_ON_TICKETS_QUERY_KEY, EVENT_ADD_ON_TIERS_QUERY_KEY, EVENT_ADD_ON_TRANSLATIONS_QUERY_KEY, EVENT_ADD_ON_TRANSLATION_QUERY_KEY, EVENT_COUPONS_QUERY_KEY, EVENT_COUPON_QUERY_KEY, EVENT_COUPON_REGISTRATIONS_QUERY_KEY, EVENT_CO_HOSTS_QUERY_KEY, EVENT_EMAIL_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_TRANSLATIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_TRANSLATION_QUERY_KEY, EVENT_FAQ_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_FAQ_SECTION_TRANSLATION_QUERY_KEY, EVENT_ON_SITE_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_IMAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_PAGE_TRANSLATIONS_QUERY_KEY, EVENT_PAGE_TRANSLATION_QUERY_KEY, EVENT_PURCHASES_QUERY_KEY, EVENT_PURCHASE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTIONS_QUERY_KEY, EVENT_QUESTION_CHOICES_QUERY_KEY, EVENT_QUESTION_CHOICE_QUERY_KEY, EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_KEY, EVENT_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY, EVENT_QUESTION_CHOICE_TRANSLATION_QUERY_KEY, EVENT_QUESTION_QUERY_KEY, EVENT_QUESTION_RESPONSES_QUERY_KEY, EVENT_QUESTION_SEARCH_VALUES_QUERY_KEY, EVENT_QUESTION_SEARCH_VALUE_QUERY_KEY, EVENT_QUESTION_SUMMARIES_QUERY_KEY, EVENT_QUESTION_SUMMARY_QUERY_KEY, EVENT_QUESTION_TRANSLATIONS_QUERY_KEY, EVENT_QUESTION_TRANSLATION_QUERY_KEY, EVENT_REGISTRATIONS_QUERY_KEY, EVENT_REGISTRATION_BYPASS_LIST_QUERY_KEY, EVENT_REGISTRATION_BYPASS_QUERY_KEY, EVENT_REGISTRATION_COUNTS_QUERY_KEY, EVENT_REGISTRATION_COUPONS_QUERY_KEY, EVENT_REGISTRATION_PAYMENTS_QUERY_KEY, EVENT_REGISTRATION_PAYMENT_QUERY_KEY, EVENT_REGISTRATION_PURCHASES_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_RESPONSES_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_RESPONSE_CHANGES_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_RESPONSE_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_TRANSFER_LOGS_QUERY_KEY, EVENT_REGISTRATION_QUERY_KEY, EVENT_RESERVATION_SECTIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATION_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATION_TRANSLATIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATION_TRANSLATION_QUERY_KEY, EVENT_RESERVATION_SECTION_QUERY_KEY, EVENT_RESERVATION_SECTION_TICKETS_QUERY_KEY, EVENT_RESERVATION_SECTION_TIERS_QUERY_KEY, EVENT_RESERVATION_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_TRANSLATION_QUERY_KEY, EVENT_SECTIONS_QUERY_KEY, EVENT_SECTION_ADDONS_QUERY_KEY, EVENT_SECTION_QUERY_KEY, EVENT_SECTION_QUESTIONS_QUERY_KEY, EVENT_SECTION_TICKETS_QUERY_KEY, EVENT_SECTION_TIERS_QUERY_KEY, EVENT_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_SECTION_TRANSLATION_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_ACCOUNTS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SESSION_SPEAKERS_QUERY_KEY, EVENT_SESSION_SPONSORS_QUERY_KEY, EVENT_SESSION_TRACKS_QUERY_KEY, EVENT_SESSION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_TRANSLATION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPEAKER_SESSIONS_QUERY_KEY, EVENT_SPEAKER_TRANSLATIONS_QUERY_KEY, EVENT_SPEAKER_TRANSLATION_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_SPONSOR_ACCOUNTS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, EVENT_TICKET_ADD_ONS_QUERY_KEY, EVENT_TICKET_COUPONS_QUERY_KEY, EVENT_TICKET_PURCHASES_QUERY_KEY, EVENT_TICKET_QUERY_KEY, EVENT_TICKET_TIERS_QUERY_KEY, EVENT_TICKET_TRANSLATIONS_QUERY_KEY, EVENT_TICKET_TRANSLATION_QUERY_KEY, EVENT_TRACKS_QUERY_KEY, EVENT_TRACK_QUERY_KEY, EVENT_TRACK_SESSIONS_QUERY_KEY, EVENT_TRACK_SPONSORS_QUERY_KEY, EVENT_TRACK_TRANSLATIONS_QUERY_KEY, EVENT_TRACK_TRANSLATION_QUERY_KEY, EVENT_TRANSLATIONS_QUERY_KEY, EVENT_TRANSLATION_QUERY_KEY, EVENT_ZPL_TEMPLATE_BADGE_FIELDS_QUERY_KEY, EVENT_ZPL_TEMPLATE_BADGE_FIELD_QUERY_KEY, type EmailReceipt, EmailReceiptStatus, type Event, type EventActivation, type EventActivationCompletionCreateInputs, type EventActivationCompletionUpdateInputs, type EventActivationCreateInputs, type EventActivationTranslation, type EventActivationTranslationUpdateInputs, type EventActivationUpdateInputs, type EventAddOn, type EventAddOnCreateInputs, type EventAddOnTranslation, type EventAddOnTranslationUpdateInputs, type EventAddOnUpdateInputs, type EventBadgeFieldUpdateInputs, type EventCouponCreateInputs, type EventCouponUpdateInputs, type EventCreateInputs, type EventEmail, EventEmailType, type EventEmailUpdateInputs, type EventFaqSectionCreateInputs, type EventFaqSectionQuestionCreateInputs, type EventFaqSectionQuestionTranslationUpdateInputs, type EventFaqSectionQuestionUpdateInputs, type EventFaqSectionTranslationUpdateInputs, type EventFaqSectionUpdateInputs, type EventListing, type EventOnSite, type EventOnSiteBadgeField, type EventPage, type EventPageCreateInputs, type EventPageTranslation, type EventPageTranslationUpdateInputs, type EventPageUpdateInputs, type EventPurchaseCreateInputs, type EventPurchaseUpdateInputs, type EventQuestionChoiceCreateInputs, type EventQuestionChoiceTranslationUpdateInputs, type EventQuestionChoiceUpdateInputs, type EventQuestionCreateInputs, type EventQuestionSearchInputs, type EventQuestionSearchValueUpdateInputs, type EventQuestionTranslationUpdateInputs, type EventQuestionUpdateInputs, type EventRegistrationBypassCreateInputs, type EventRegistrationBypassUpdateInputs, type EventRegistrationUpdateInputs, type EventReservationSection, type EventReservationSectionCreateInputs, type EventReservationSectionLocation, type EventReservationSectionLocationCreateInputs, type EventReservationSectionLocationTranslation, type EventReservationSectionLocationTranslationUpdateInputs, type EventReservationSectionLocationUpdateInputs, type EventReservationSectionTranslation, type EventReservationSectionTranslationUpdateInputs, type EventReservationSectionUpdateInputs, type EventReservationSelectInputs, type EventSectionCreateInputs, type EventSectionTranslationUpdateInputs, type EventSectionUpdateInputs, type EventSession, type EventSessionCreateInputs, type EventSessionTranslation, type EventSessionTranslationUpdateInputs, type EventSessionUpdateInputs, EventSource, type EventSpeaker, type EventSpeakerCreateInputs, type EventSpeakerTranslation, type EventSpeakerTranslationUpdateInputs, type EventSpeakerUpdateInputs, type EventTicket, type EventTicketCreateInputs, type EventTicketTranslation, type EventTicketTranslationUpdateInputs, type EventTicketUpdateInputs, type EventTrack, type EventTrackCreateInputs, type EventTrackTranslation, type EventTrackTranslationUpdateInputs, type EventTrackUpdateInputs, type EventTranslation, type EventTranslationUpdateInputs, EventType, type EventUpdateInputs, ExportStatus, FEATURED_EVENTS_QUERY_KEY, FILES_QUERY_KEY, FILE_QUERY_KEY, type Faq, type FaqSection, type FaqSectionTranslation, type FaqTranslation, type File, FileSource, type FileUpdateInputs, GROUPS_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INTERESTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_INVITATION_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_MODERATORS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GROUP_TRANSLATIONS_QUERY_KEY, GROUP_TRANSLATION_QUERY_KEY, GetAPILog, GetAPILogs, GetAcccountEmailReceipts, GetAccount, GetAccountActivities, GetAccountCognitoUser, GetAccountCognitoUsers, GetAccountComments, GetAccountDelegateOf, GetAccountDelegates, GetAccountEvents, GetAccountFollowers, GetAccountFollowing, GetAccountGroups, GetAccountInterests, GetAccountLikes, GetAccountRegistrations, GetAccountReshares, GetAccountTiers, GetAccounts, GetActivities, GetActivity, GetActivityComments, GetActivityInterests, GetActivityLikes, GetActivityReshares, GetAdminAPI, GetAdvertisement, GetAdvertisementClicks, GetAdvertisementViews, GetAdvertisements, GetAnnouncement, GetAnnouncementEmailReceipts, GetAnnouncements, GetBaseInfiniteQueryKeys, GetBenefit, GetBenefitClicks, GetBenefitTranslation, GetBenefitTranslations, GetBenefits, GetChannel, GetChannelActivities, GetChannelContent, GetChannelContentActivities, GetChannelContentGuest, GetChannelContentGuests, GetChannelContentTranslation, GetChannelContentTranslations, GetChannelContents, GetChannelSubscriber, GetChannelSubscribers, GetChannelTranslation, GetChannelTranslations, GetChannels, GetEmailReceipt, GetEmailReceipts, GetErrorMessage, GetEvent, GetEventAccountRegistration, GetEventActivation, GetEventActivationCompletions, GetEventActivationTranslation, GetEventActivationTranslations, GetEventActivations, GetEventActivities, GetEventAddOn, GetEventAddOnPurchases, GetEventAddOnTickets, GetEventAddOnTiers, GetEventAddOnTranslation, GetEventAddOnTranslations, GetEventAddOns, GetEventCoHosts, GetEventCoupon, GetEventCouponRegistrations, GetEventCoupons, GetEventEmail, GetEventFaqSection, GetEventFaqSectionQuestion, GetEventFaqSectionQuestionTranslation, GetEventFaqSectionQuestionTranslations, GetEventFaqSectionQuestions, GetEventFaqSectionTranslation, GetEventFaqSectionTranslations, GetEventFaqSections, GetEventOnSite, GetEventPage, GetEventPageImages, GetEventPageTranslation, GetEventPageTranslations, GetEventPages, GetEventPurchase, GetEventPurchases, GetEventQuestion, GetEventQuestionChoice, GetEventQuestionChoiceSubQuestions, GetEventQuestionChoiceTranslation, GetEventQuestionChoiceTranslations, GetEventQuestionChoices, GetEventQuestionResponses, GetEventQuestionSearchValue, GetEventQuestionSearchValues, GetEventQuestionSummaries, GetEventQuestionSummary, GetEventQuestionTranslation, GetEventQuestionTranslations, GetEventQuestions, GetEventRegistration, GetEventRegistrationBypass, GetEventRegistrationBypassList, GetEventRegistrationCounts, GetEventRegistrationCoupons, GetEventRegistrationPayment, GetEventRegistrationPayments, GetEventRegistrationPurchase, GetEventRegistrationPurchaseAddOns, GetEventRegistrationPurchaseResponse, GetEventRegistrationPurchaseResponseChanges, GetEventRegistrationPurchaseResponses, GetEventRegistrationPurchaseSections, GetEventRegistrationPurchases, GetEventRegistrationTransferLogs, GetEventRegistrations, GetEventSection, GetEventSectionAddOns, GetEventSectionQuestions, GetEventSectionTickets, GetEventSectionTiers, GetEventSectionTranslation, GetEventSectionTranslations, GetEventSections, GetEventSession, GetEventSessionAccounts, GetEventSessionSpeakers, GetEventSessionSponsors, GetEventSessionTracks, GetEventSessionTranslation, GetEventSessionTranslations, GetEventSessions, GetEventSpeaker, GetEventSpeakerSessions, GetEventSpeakerTranslation, GetEventSpeakerTranslations, GetEventSpeakers, GetEventSponsorAccounts, GetEventSponsors, GetEventTicket, GetEventTicketAddOns, GetEventTicketCoupons, GetEventTicketPurchases, GetEventTicketTiers, GetEventTicketTranslation, GetEventTicketTranslations, GetEventTickets, GetEventTrack, GetEventTrackSessions, GetEventTrackSponsors, GetEventTrackTranslation, GetEventTrackTranslations, GetEventTracks, GetEventTranslation, GetEventTranslations, GetEventZplTemplateBadgeField, GetEventZplTemplateBadgeFields, GetEvents, GetFeaturedEvents, GetFile, GetFiles, GetGroup, GetGroupActivities, GetGroupEvents, GetGroupInterests, GetGroupInvitation, GetGroupInvitations, GetGroupMembers, GetGroupModerators, GetGroupRequest, GetGroupRequests, GetGroupSponsors, GetGroupTranslation, GetGroupTranslations, GetGroups, GetImage, GetImageUsage, GetImageVariant, GetImages, GetImportItems, GetImports, GetInterest, GetInterestAccounts, GetInterestActivities, GetInterestEvents, GetInterestGroups, GetInterests, GetInvoice, GetInvoiceLineItem, GetInvoiceLineItems, GetInvoicePayment, GetInvoicePayments, GetInvoices, GetLevel, GetLevelAccounts, GetLevelTranslation, GetLevelTranslations, GetLevels, GetOrganization, GetOrganizationMembership, GetOrganizationPage, GetOrganizationPageTranslation, GetOrganizationPageTranslations, GetOrganizationPaymentIntegration, GetOrganizationPaymentIntegrations, GetOrganizationPaymentLink, GetOrganizationTeamMember, GetOrganizationTeamMembers, GetOrganizationTrigger, GetOrganizationUsers, GetPayment, GetPayments, GetPurchase, GetPurchases, GetReport, GetReportParent, GetReportParents, GetReports, GetReservationSection, GetReservationSectionLocation, GetReservationSectionLocationTranslation, GetReservationSectionLocationTranslations, GetReservationSectionLocations, GetReservationSectionTickets, GetReservationSectionTiers, GetReservationSectionTranslation, GetReservationSectionTranslations, GetReservationSections, GetSelf, GetSelfOrgMembership, GetSelfOrganizations, GetSeries, GetSeriesEvents, GetSeriesList, GetStreamInput, GetStreamInputOutput, GetStreamInputOutputs, GetStreamInputs, GetSubscription, GetSubscriptionPayments, GetSubscriptionProduct, GetSubscriptionProductPrice, GetSubscriptionProductPrices, GetSubscriptionProductSubscriptions, GetSubscriptionProductTiers, GetSubscriptionProducts, GetSubscriptions, GetSupportTicket, GetSupportTickets, GetTier, GetTierAccounts, GetTierSubscribers, GetTiers, GetUnapprovedEvents, GetVideo, GetVideos, type Group, GroupAccess, type GroupCreateInputs, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupMembershipUpdateInputs, type GroupRequest, GroupRequestStatus, type GroupTranslation, type GroupTranslationUpdateInputs, type GroupUpdateInputs, IMAGES_QUERY_KEY, IMAGE_QUERY_KEY, IMAGE_USAGE_QUERY_KEY, IMPORTS_QUERY_KEY, IMPORT_ITEMS_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACCOUNTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_EVENTS_QUERY_KEY, INTEREST_GROUPS_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_LINE_ITEMS_QUERY_KEY, INVOICE_LINE_ITEM_QUERY_KEY, INVOICE_PAYMENTS_QUERY_KEY, INVOICE_PAYMENT_QUERY_KEY, INVOICE_QUERY_KEY, type ISupportedLocale, type Image, type ImageCreateInputs, ImageType, type ImageUpdateInputs, type ImageVariant, type ImageWCopyUri, ImpersonateAccount, type ImpersonateAccountParams, type Import, type ImportItem, ImportItemStatus, type InfiniteQueryOptions, type InfiniteQueryParams, type Integrations, type Interest, type InterestCreateInputs, type InterestUpdateInputs, type Invoice, type InvoiceCreateInputs, type InvoiceLineItem, type InvoiceLineItemCreateInputs, type InvoiceLineItemUpdateInputs, InvoiceStatus, type InvoiceUpdateInputs, LEVELS_QUERY_KEY, LEVEL_ACCOUNTS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_TRANSLATIONS_QUERY_KEY, LEVEL_TRANSLATION_QUERY_KEY, type LeadCreateInputs, type LeadUpdateInputs, type Level, type LevelCreateInputs, type LevelTranslationUpdateInputs, type LevelUpdateInputs, type Like, type LineChartSummaryData, type LinkPreview, MergeInfinitePages, type ModulePermissions, type MutationParams, type Notification, type NotificationPreferences, type NotificationPreferencesCreateInputs, type NotificationPreferencesUpdateInputs, NotificationType, ORGANIZATION_MEMBERSHIP_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAGE_TRANSLATIONS_QUERY_KEY, ORGANIZATION_PAGE_TRANSLATION_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATIONS_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_LINK_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_TEAM_MEMBERS_QUERY_KEY, ORGANIZATION_TEAM_MEMBER_QUERY_KEY, ORGANIZATION_TRIGGER_QUERY_KEY, ORGANIZATION_USERS_QUERY_KEY, type Organization, type OrganizationMembership, type OrganizationMembershipUpdateInputs, type OrganizationPageCreateInputs, type OrganizationPageTranslationUpdateInputs, type OrganizationPageUpdateInputs, type OrganizationTeamMemberCreateInputs, type OrganizationTeamMemberUpdateInputs, type OrganizationTrigger, OrganizationTriggerType, type OrganizationUpdateInputs, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, PURCHASES_QUERY_KEY, PURCHASE_QUERY_KEY, type Page, type PageTranslation, PageType, type Payment, type PaymentIntegration, type PaymentIntentPurchaseMetadataInputs, PaymentType, type PaypalActivationFormParams, type PermissionDomain, type PermissionType, type Purchase, type PushDevice, PushDeviceAppType, type PushDeviceCreateInputs, type PushDeviceUpdateInputs, PushService, type Question, REPORTS_QUERY_KEY, REPORT_PARENTS_QUERY_KEY, REPORT_PARENT_QUERY_KEY, REPORT_QUERY_KEY, RefundEventRegistrationPayment, type RefundEventRegistrationPaymentParams, type Registration, type RegistrationBypass, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionChoiceSubQuestion, type RegistrationQuestionChoiceTranslation, type RegistrationQuestionResponse, type RegistrationQuestionResponseChange, type RegistrationQuestionSearchValue, type RegistrationQuestionTranslation, RegistrationQuestionType, type RegistrationQuestionWithResponse, type RegistrationSection, type RegistrationSectionQuestion, type RegistrationSectionTranslation, RegistrationStatus, type RegistrationStatusChange, RemoveAccountDelegate, type RemoveAccountDelegateParams, RemoveAccountFollower, type RemoveAccountFollowerParams, RemoveAccountFollowing, type RemoveAccountFollowingParams, RemoveAccountGroup, type RemoveAccountGroupParams, RemoveAccountInterest, type RemoveAccountInterestParams, RemoveAccountTier, type RemoveAccountTierParams, RemoveActivityInterest, type RemoveActivityInterestParams, RemoveChannelContentGuest, type RemoveChannelContentGuestParams, RemoveChannelSubscriber, type RemoveChannelSubscriberParams, RemoveEventAddOnTicket, type RemoveEventAddOnTicketParams, RemoveEventAddOnTier, type RemoveEventAddOnTierParams, RemoveEventBenefit, type RemoveEventBenefitParams, RemoveEventCoHost, type RemoveEventCoHostParams, RemoveEventPageImage, type RemoveEventPageImageParams, RemoveEventQuestionChoiceSubQuestion, type RemoveEventQuestionChoiceSubQuestionParams, RemoveEventRegistrationCoupon, type RemoveEventRegistrationCouponParams, RemoveEventRegistrationPurchaseAddOn, type RemoveEventRegistrationPurchaseAddOnParams, RemoveEventReservationSectionTicket, type RemoveEventReservationSectionTicketParams, RemoveEventReservationSectionTier, type RemoveEventReservationSectionTierParams, RemoveEventSectionAddOn, type RemoveEventSectionAddOnParams, RemoveEventSectionQuestion, type RemoveEventSectionQuestionParams, RemoveEventSectionTicket, type RemoveEventSectionTicketParams, RemoveEventSectionTier, type RemoveEventSectionTierParams, RemoveEventSessionAccount, type RemoveEventSessionAccountParams, RemoveEventSessionSpeaker, type RemoveEventSessionSpeakerParams, RemoveEventSessionSponsor, type RemoveEventSessionSponsorParams, RemoveEventSessionTrack, type RemoveEventSessionTrackParams, RemoveEventSpeakerSession, type RemoveEventSpeakerSessionParams, RemoveEventSponsorAccount, type RemoveEventSponsorAccountParams, RemoveEventTicketAddOn, type RemoveEventTicketAddOnParams, RemoveEventTicketTier, type RemoveEventTicketTierParams, RemoveEventTrackSession, type RemoveEventTrackSessionParams, RemoveEventTrackSponsor, type RemoveEventTrackSponsorParams, RemoveGroupEvent, type RemoveGroupEventParams, RemoveGroupInterest, type RemoveGroupInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveGroupModerator, type RemoveGroupModeratorParams, RemoveGroupSponsor, type RemoveGroupSponsorParams, RemoveLevelAccount, type RemoveLevelAccountParams, RemoveSeriesEvent, type RemoveSeriesEventParams, RemoveSubscriptionProductTier, type RemoveSubscriptionProductTierParams, RemoveTierAccount, type RemoveTierAccountParams, ReorderEventFaqSectionQuestions, type ReorderEventFaqSectionQuestionsParams, ReorderEventQuestionChoices, type ReorderEventQuestionChoicesParams, ReorderEventSectionQuestions, type ReorderEventSectionQuestionsParams, type Report, type ReportCreateInputs, type ReportParent, ReportType, type ReportUpdateInputs, ResendEventRegistrationConfirmationEmail, type ResendEventRegistrationConfirmationEmailParams, SEARCH_ORGANIZATION_QUERY_KEY, SELF_MEMBERSHIP_QUERY_KEY, SELF_ORGANIZATIONS_QUERY_KEY, SELF_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_COMMENTS_QUERY_DATA, SET_ACCOUNT_DELEGATES_QUERY_DATA, SET_ACCOUNT_DELEGATE_OF_QUERY_DATA, SET_ACCOUNT_EMAILS_QUERY_DATA, SET_ACCOUNT_EVENTS_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWING_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_INTERESTS_QUERY_DATA, SET_ACCOUNT_LIKES_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACCOUNT_REGISTRATIONS_QUERY_DATA, SET_ACCOUNT_RESHARES_QUERY_DATA, SET_ACCOUNT_TIERS_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_INTEREST_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ACTIVITY_RESHARES_QUERY_DATA, SET_ADVERTISEMENTS_QUERY_DATA, SET_ADVERTISEMENT_CLICKS_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ADVERTISEMENT_VIEWS_QUERY_DATA, SET_ANNOUNCEMENTS_QUERY_DATA, SET_ANNOUNCEMENT_EMAILS_QUERY_DATA, SET_ANNOUNCEMENT_QUERY_DATA, SET_API_LOGS_QUERY_DATA, SET_API_LOG_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BENEFIT_CLICKS_QUERY_DATA, SET_BENEFIT_QUERY_DATA, SET_BENEFIT_TRANSLATIONS_QUERY_DATA, SET_BENEFIT_TRANSLATION_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_ACTIVITIES_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_ACTIVITIES_QUERY_DATA, SET_CHANNEL_CONTENT_GUESTS_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_CONTENT_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_CONTENT_TRANSLATION_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_CHANNEL_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_TRANSLATION_QUERY_DATA, SET_EMAIL_RECEIPTS_QUERY_DATA, SET_EMAIL_RECEIPT_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACCOUNT_REGISTRATION_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETIONS_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVATION_TRANSLATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_TRANSLATION_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_ADD_ONS_QUERY_DATA, SET_EVENT_ADD_ON_PURCHASES_QUERY_DATA, SET_EVENT_ADD_ON_QUERY_DATA, SET_EVENT_ADD_ON_TICKETS_QUERY_DATA, SET_EVENT_ADD_ON_TIERS_QUERY_DATA, SET_EVENT_ADD_ON_TRANSLATIONS_QUERY_DATA, SET_EVENT_ADD_ON_TRANSLATION_QUERY_DATA, SET_EVENT_COUPONS_QUERY_DATA, SET_EVENT_COUPON_QUERY_DATA, SET_EVENT_COUPON_REGISTRATIONS_QUERY_DATA, SET_EVENT_CO_HOSTS_QUERY_DATA, SET_EVENT_EMAIL_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_TRANSLATION_QUERY_DATA, SET_EVENT_FAQ_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_TRANSLATION_QUERY_DATA, SET_EVENT_ON_SITE_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_IMAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_PAGE_TRANSLATIONS_QUERY_DATA, SET_EVENT_PAGE_TRANSLATION_QUERY_DATA, SET_EVENT_PURCHASE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_QUESTIONS_QUERY_DATA, SET_EVENT_QUESTION_CHOICES_QUERY_DATA, SET_EVENT_QUESTION_CHOICE_QUERY_DATA, SET_EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_DATA, SET_EVENT_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA, SET_EVENT_QUESTION_CHOICE_TRANSLATION_QUERY_DATA, SET_EVENT_QUESTION_QUERY_DATA, SET_EVENT_QUESTION_RESPONSES_QUERY_DATA, SET_EVENT_QUESTION_SEARCH_VALUES_QUERY_DATA, SET_EVENT_QUESTION_SEARCH_VALUE_QUERY_DATA, SET_EVENT_QUESTION_SUMMARIES_QUERY_DATA, SET_EVENT_QUESTION_SUMMARY_QUERY_DATA, SET_EVENT_QUESTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_QUESTION_TRANSLATION_QUERY_DATA, SET_EVENT_REGISTRATIONS_QUERY_DATA, SET_EVENT_REGISTRATION_BYPASS_QUERY_DATA, SET_EVENT_REGISTRATION_COUNTS_QUERY_DATA, SET_EVENT_REGISTRATION_COUPONS_QUERY_DATA, SET_EVENT_REGISTRATION_PAYMENTS_QUERY_DATA, SET_EVENT_REGISTRATION_PAYMENT_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASES_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_RESPONSES_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_RESPONSE_CHANGES_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_RESPONSE_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_TRANSFER_LOGS_QUERY_DATA, SET_EVENT_REGISTRATION_QUERY_DATA, SET_EVENT_RESERVATION_SECTIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATION_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATION_TRANSLATIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATION_TRANSLATION_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TICKETS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TIERS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TRANSLATION_QUERY_DATA, SET_EVENT_SECTIONS_QUERY_DATA, SET_EVENT_SECTION_ADDONS_QUERY_DATA, SET_EVENT_SECTION_QUERY_DATA, SET_EVENT_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_SECTION_TICKETS_QUERY_DATA, SET_EVENT_SECTION_TIERS_QUERY_DATA, SET_EVENT_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SECTION_TRANSLATION_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_ACCOUNTS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SESSION_SPEAKERS_QUERY_DATA, SET_EVENT_SESSION_SPONSORS_QUERY_DATA, SET_EVENT_SESSION_TRACKS_QUERY_DATA, SET_EVENT_SESSION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_TRANSLATION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPEAKER_SESSIONS_QUERY_DATA, SET_EVENT_SPEAKER_TRANSLATIONS_QUERY_DATA, SET_EVENT_SPEAKER_TRANSLATION_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_SPONSOR_ACCOUNTS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_EVENT_TICKET_ADD_ONS_QUERY_DATA, SET_EVENT_TICKET_COUPONS_QUERY_DATA, SET_EVENT_TICKET_PURCHASES_QUERY_DATA, SET_EVENT_TICKET_QUERY_DATA, SET_EVENT_TICKET_TIERS_QUERY_DATA, SET_EVENT_TICKET_TRANSLATIONS_QUERY_DATA, SET_EVENT_TICKET_TRANSLATION_QUERY_DATA, SET_EVENT_TRACKS_QUERY_DATA, SET_EVENT_TRACK_QUERY_DATA, SET_EVENT_TRACK_SESSIONS_QUERY_DATA, SET_EVENT_TRACK_SPONSORS_QUERY_DATA, SET_EVENT_TRACK_TRANSLATIONS_QUERY_DATA, SET_EVENT_TRACK_TRANSLATION_QUERY_DATA, SET_EVENT_TRANSLATIONS_QUERY_DATA, SET_EVENT_TRANSLATION_QUERY_DATA, SET_EVENT_ZPL_TEMPLATE_BADGE_FIELDS_QUERY_DATA, SET_EVENT_ZPL_TEMPLATE_BADGE_FIELD_QUERY_DATA, SET_FEATURED_EVENTS_QUERY_DATA, SET_FILES_QUERY_DATA, SET_FILE_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INTERESTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_INVITATION_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_MODERATORS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_GROUP_TRANSLATIONS_QUERY_DATA, SET_GROUP_TRANSLATION_QUERY_DATA, SET_IMAGES_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_IMAGE_USAGE_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INTEREST_ACCOUNTS_QUERY_DATA, SET_INTEREST_ACTIVITIES_QUERY_DATA, SET_INTEREST_EVENTS_QUERY_DATA, SET_INTEREST_GROUPS_QUERY_DATA, SET_INTEREST_QUERY_DATA, SET_INVOICES_QUERY_DATA, SET_INVOICE_LINE_ITEMS_QUERY_DATA, SET_INVOICE_LINE_ITEM_QUERY_DATA, SET_INVOICE_PAYMENTS_QUERY_DATA, SET_INVOICE_PAYMENT_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_ACCOUNTS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_TRANSLATIONS_QUERY_DATA, SET_LEVEL_TRANSLATION_QUERY_DATA, SET_ORGANIZATION_MEMBERSHIP_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_ORGANIZATION_PAGE_TRANSLATIONS_QUERY_DATA, SET_ORGANIZATION_PAGE_TRANSLATION_QUERY_DATA, SET_ORGANIZATION_PAYMENT_INTEGRATIONS_QUERY_DATA, SET_ORGANIZATION_PAYMENT_INTEGRATION_QUERY_DATA, SET_ORGANIZATION_QUERY_DATA, SET_ORGANIZATION_STRIPE_LINK_QUERY_DATA, SET_ORGANIZATION_TEAM_MEMBERS_QUERY_DATA, SET_ORGANIZATION_TEAM_MEMBER_QUERY_DATA, SET_ORGANIZATION_TRIGGER_QUERY_DATA, SET_ORGANIZATION_USERS_QUERY_DATA, SET_PAYMENTS_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PURCHASES_QUERY_DATA, SET_PURCHASE_QUERY_DATA, SET_REPORTS_QUERY_DATA, SET_REPORT_PARENTS_QUERY_DATA, SET_REPORT_PARENT_QUERY_DATA, SET_REPORT_QUERY_DATA, SET_SEARCH_ORGANIZATION_QUERY_DATA, SET_SELF_MEMBERSHIP_QUERY_DATA, SET_SELF_ORGANIZATIONS_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_STREAM_INPUTS_QUERY_DATA, SET_STREAM_INPUT_OUTPUTS_QUERY_DATA, SET_STREAM_INPUT_OUTPUT_QUERY_DATA, SET_STREAM_INPUT_QUERY_DATA, SET_SUBSCRIPTIONS_QUERY_DATA, SET_SUBSCRIPTION_PAYMENTS_QUERY_DATA, SET_SUBSCRIPTION_PRODUCTS_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_PRICES_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_PRICE_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_TIERS_QUERY_DATA, SET_SUBSCRIPTION_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_TIERS_QUERY_DATA, SET_TIER_ACCOUNTS_QUERY_DATA, SET_TIER_QUERY_DATA, SET_TIER_SUBSCRIBERS_QUERY_DATA, SET_UNAPPROVED_EVENTS_QUERY_DATA, SET_VIDEOS_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_INPUTS_QUERY_KEY, STREAM_INPUT_OUTPUTS_QUERY_KEY, STREAM_INPUT_OUTPUT_QUERY_KEY, STREAM_QUERY_KEY, SUBSCRIPTIONS_QUERY_KEY, SUBSCRIPTION_PAYMENTS_QUERY_KEY, SUBSCRIPTION_PRODUCTS_QUERY_KEY, SUBSCRIPTION_PRODUCT_PRICES_QUERY_KEY, SUBSCRIPTION_PRODUCT_PRICE_QUERY_KEY, SUBSCRIPTION_PRODUCT_QUERY_KEY, SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_KEY, SUBSCRIPTION_PRODUCT_TIERS_QUERY_KEY, SUBSCRIPTION_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, type Schedule, type SearchField, SearchOrganization, SelectEventRegistrationPurchaseReservation, type SelectEventRegistrationPurchaseReservationParams, type Self, SelfLeaveOrganization, type SelfLeaveOrganizationParams, type Series, type SeriesCreateInputs, type SeriesUpdateInputs, type SingleQueryOptions, type SingleQueryParams, type SponsorshipLevelTranslation, type StreamInput, type StreamInputConfig, type StreamInputCreateInputs, type StreamInputDetails, type StreamInputOutput, type StreamInputOutputCreateInputs, type StreamInputOutputUpdateInputs, type StreamInputUpdateInputs, type StreamOutputCreateInputs, type Subscription, type SubscriptionCreateInputs, type SubscriptionPayment, type SubscriptionProduct, type SubscriptionProductCreateInputs, type SubscriptionProductPrice, type SubscriptionProductPriceCreateInputs, SubscriptionProductPriceInterval, SubscriptionProductPriceType, type SubscriptionProductPriceUpdateInputs, type SubscriptionProductUpdateInputs, SubscriptionStatus, type SubscriptionUpdateInputs, type SummaryData, type SupportTicket, type SupportTicketCreateInputs, type SupportTicketNote, SupportTicketType, type SupportTicketUpdateInputs, SwitchImage, type SwitchImageParams, TIERS_QUERY_KEY, TIER_ACCOUNTS_QUERY_KEY, TIER_QUERY_KEY, TIER_SUBSCRIBERS_QUERY_KEY, type TableChartSummaryData, type TeamCreateInputs, type TeamMember, type TeamUpdateInputs, ThreadAccessLevel, type ThreadCreateInputs, type ThreadUpdateInputs, TicketEventAccessLevel, TicketVisibility, type Tier, type TierCreateInputs, type TierUpdateInputs, ToggleOrganizationPaymentIntegration, type ToggleOrganizationPaymentIntegrationParams, type Transfer, TransferEventRegistrationPurchase, type TransferEventRegistrationPurchaseParams, type TransferLog, TransformPrice, type TriggerCreateInputs, type TriggerUpdateInputs, UNAPPROVED_EVENTS_QUERY_KEY, UpdateAccount, UpdateAccountCognitoUserPassword, type UpdateAccountCognitoUserPasswordParams, type UpdateAccountParams, UpdateActivity, type UpdateActivityParams, UpdateAdvertisement, type UpdateAdvertisementParams, UpdateAnnouncement, type UpdateAnnouncementParams, UpdateAnnouncementSchedule, type UpdateAnnouncementScheduleParams, UpdateBenefit, type UpdateBenefitParams, UpdateBenefitTranslation, type UpdateBenefitTranslationParams, UpdateChannel, UpdateChannelContent, UpdateChannelContentGuest, type UpdateChannelContentGuestParams, type UpdateChannelContentParams, UpdateChannelContentTranslation, type UpdateChannelContentTranslationParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateChannelTranslation, type UpdateChannelTranslationParams, UpdateEvent, UpdateEventActivation, UpdateEventActivationCompletion, type UpdateEventActivationCompletionParams, type UpdateEventActivationParams, UpdateEventActivationTranslation, type UpdateEventActivationTranslationParams, UpdateEventAddOn, type UpdateEventAddOnParams, UpdateEventAddOnTranslation, type UpdateEventAddOnTranslationParams, UpdateEventCheckinCode, type UpdateEventCheckinCodeParams, UpdateEventCoupon, type UpdateEventCouponParams, UpdateEventEmail, type UpdateEventEmailParams, UpdateEventFaqSection, type UpdateEventFaqSectionParams, UpdateEventFaqSectionQuestion, type UpdateEventFaqSectionQuestionParams, UpdateEventFaqSectionQuestionTranslation, type UpdateEventFaqSectionQuestionTranslationParams, UpdateEventFaqSectionTranslation, type UpdateEventFaqSectionTranslationParams, UpdateEventPage, type UpdateEventPageParams, UpdateEventPageTranslation, type UpdateEventPageTranslationParams, type UpdateEventParams, UpdateEventQuestion, UpdateEventQuestionChoice, type UpdateEventQuestionChoiceParams, UpdateEventQuestionChoiceSubQuestion, type UpdateEventQuestionChoiceSubQuestionParams, UpdateEventQuestionChoiceTranslation, type UpdateEventQuestionChoiceTranslationParams, type UpdateEventQuestionParams, UpdateEventQuestionSearchValue, type UpdateEventQuestionSearchValueParams, UpdateEventQuestionTranslation, type UpdateEventQuestionTranslationParams, UpdateEventRegistration, UpdateEventRegistrationBypass, type UpdateEventRegistrationBypassParams, type UpdateEventRegistrationParams, UpdateEventRegistrationPurchase, type UpdateEventRegistrationPurchaseParams, UpdateEventRegistrationPurchaseResponse, type UpdateEventRegistrationPurchaseResponseParams, UpdateEventRegistrationPurchaseResponses, type UpdateEventRegistrationPurchaseResponsesParams, UpdateEventReservationSection, UpdateEventReservationSectionLocation, type UpdateEventReservationSectionLocationParams, UpdateEventReservationSectionLocationTranslation, type UpdateEventReservationSectionLocationTranslationParams, type UpdateEventReservationSectionParams, UpdateEventReservationSectionTranslation, type UpdateEventReservationSectionTranslationParams, UpdateEventSection, type UpdateEventSectionParams, UpdateEventSectionQuestion, type UpdateEventSectionQuestionParams, UpdateEventSectionTranslation, type UpdateEventSectionTranslationParams, UpdateEventSession, type UpdateEventSessionParams, UpdateEventSessionTranslation, type UpdateEventSessionTranslationParams, UpdateEventSpeaker, type UpdateEventSpeakerParams, UpdateEventSpeakerTranslation, type UpdateEventSpeakerTranslationParams, UpdateEventTicket, type UpdateEventTicketParams, UpdateEventTicketTranslation, type UpdateEventTicketTranslationParams, UpdateEventTrack, type UpdateEventTrackParams, UpdateEventTrackTranslation, type UpdateEventTrackTranslationParams, UpdateEventTranslation, type UpdateEventTranslationParams, UpdateEventZplTemplate, UpdateEventZplTemplateBadgeField, type UpdateEventZplTemplateBadgeFieldParams, type UpdateEventZplTemplateParams, UpdateFile, type UpdateFileParams, UpdateGroup, type UpdateGroupParams, UpdateGroupTranslation, type UpdateGroupTranslationParams, UpdateImage, type UpdateImageParams, UpdateInterest, type UpdateInterestParams, UpdateInvoice, UpdateInvoiceLineItem, type UpdateInvoiceLineItemParams, type UpdateInvoiceParams, UpdateLevel, type UpdateLevelParams, UpdateLevelTranslation, type UpdateLevelTranslationParams, UpdateOrganization, UpdateOrganizationIntegrations, type UpdateOrganizationIntegrationsParams, UpdateOrganizationMembership, type UpdateOrganizationMembershipParams, UpdateOrganizationPage, type UpdateOrganizationPageParams, UpdateOrganizationPageTranslation, type UpdateOrganizationPageTranslationParams, type UpdateOrganizationParams, UpdateOrganizationTeamMember, type UpdateOrganizationTeamMemberParams, UpdateOrganizationTrigger, type UpdateOrganizationTriggerParams, UpdateReport, type UpdateReportParams, UpdateSelf, type UpdateSelfParams, UpdateSeries, type UpdateSeriesParams, UpdateStream, UpdateStreamConfig, type UpdateStreamConfigParams, UpdateStreamInputOutput, type UpdateStreamInputOutputParams, type UpdateStreamParams, UpdateSubscription, type UpdateSubscriptionParams, UpdateSubscriptionProduct, type UpdateSubscriptionProductParams, UpdateSubscriptionProductPrice, type UpdateSubscriptionProductPriceParams, UpdateSupportTicket, type UpdateSupportTicketParams, UpdateTier, type UpdateTierParams, UpdateVideo, type UpdateVideoParams, UploadFile, type UploadFileParams, type User, type UserCreateInputs, UserRole, type UserUpdateInputs, VIDEOS_QUERY_KEY, VIDEO_QUERY_KEY, type Video, VideoSource, VideoStatus, type VideoUpdateInputs, isUUID, setFirstPageData, useAddAccountDelegate, useAddAccountFollower, useAddAccountFollowing, useAddAccountGroup, useAddAccountInterest, useAddAccountTier, useAddActivityInterest, useAddChannelContentGuest, useAddChannelSubscriber, useAddEventAddOnTicket, useAddEventAddOnTier, useAddEventBenefit, useAddEventCoHost, useAddEventPageImage, useAddEventQuestionChoiceSubQuestion, useAddEventRegistrationPurchaseAddOn, useAddEventReservationSectionTicket, useAddEventReservationSectionTier, useAddEventSectionAddOn, useAddEventSectionQuestion, useAddEventSectionTicket, useAddEventSectionTier, useAddEventSessionAccount, useAddEventSessionSpeaker, useAddEventSessionSponsor, useAddEventSessionTrack, useAddEventSpeakerSession, useAddEventSponsorAccount, useAddEventTicketAddOn, useAddEventTicketTier, useAddEventTrackSession, useAddEventTrackSponsor, useAddGroupEvent, useAddGroupInterest, useAddGroupMember, useAddGroupModerator, useAddGroupSponsor, useAddLevelAccount, useAddOrganizationUser, useAddSeriesEvent, useAddSubscriptionProductTier, useAddTierAccount, useApplyEventRegistrationCoupon, useApproveEvent, useCancelAnnouncementSchedule, useCancelEventRegistrationPurchaseTransfer, useCancelSubscription, useConfirmAccountCognitoUser, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateAccount, useCreateAdvertisement, useCreateAnnouncement, useCreateBenefit, useCreateBenefitTranslation, useCreateChannel, useCreateChannelContent, useCreateChannelContentTranslation, useCreateChannelTranslation, useCreateEvent, useCreateEventActivation, useCreateEventActivationCompletion, useCreateEventActivationTranslation, useCreateEventAddOn, useCreateEventAddOnTranslation, useCreateEventCoupon, useCreateEventFaqSection, useCreateEventFaqSectionQuestion, useCreateEventFaqSectionQuestionTranslation, useCreateEventFaqSectionTranslation, useCreateEventPage, useCreateEventPageTranslation, useCreateEventQuestion, useCreateEventQuestionChoice, useCreateEventQuestionChoiceTranslation, useCreateEventQuestionSearchValues, useCreateEventQuestionTranslation, useCreateEventRegistration, useCreateEventRegistrationBypass, useCreateEventRegistrationPurchase, useCreateEventReservationSection, useCreateEventReservationSectionLocation, useCreateEventReservationSectionLocationTranslation, useCreateEventReservationSectionTranslation, useCreateEventSection, useCreateEventSectionTranslation, useCreateEventSession, useCreateEventSessionTranslation, useCreateEventSpeaker, useCreateEventSpeakerTranslation, useCreateEventTicket, useCreateEventTicketTranslation, useCreateEventTrack, useCreateEventTrackTranslation, useCreateEventTranslation, useCreateGroup, useCreateGroupTranslation, useCreateImage, useCreateImport, useCreateInterest, useCreateInvoice, useCreateInvoiceLineItem, useCreateLevel, useCreateLevelTranslation, useCreateOrganizationPageTranslation, useCreateOrganizationPaymentIntegration, useCreateOrganizationTeamMember, useCreateReport, useCreateSeries, useCreateStreamInput, useCreateStreamInputOutput, useCreateSubscription, useCreateSubscriptionProduct, useCreateSubscriptionProductPrice, useCreateSupportTicket, useCreateSupportTicketNote, useCreateTier, useDeleteAccount, useDeleteActivity, useDeleteAdvertisement, useDeleteBenefit, useDeleteBenefitTranslation, useDeleteChannel, useDeleteChannelContent, useDeleteChannelContentTranslation, useDeleteChannelTranslation, useDeleteEvent, useDeleteEventActivation, useDeleteEventActivationCompletion, useDeleteEventActivationTranslation, useDeleteEventAddOn, useDeleteEventAddOnTranslation, useDeleteEventCoupon, useDeleteEventFaqSection, useDeleteEventFaqSectionQuestion, useDeleteEventFaqSectionQuestionTranslation, useDeleteEventFaqSectionTranslation, useDeleteEventPage, useDeleteEventPageTranslation, useDeleteEventQuestion, useDeleteEventQuestionChoice, useDeleteEventQuestionChoiceTranslation, useDeleteEventQuestionSearchValue, useDeleteEventQuestionSearchValues, useDeleteEventQuestionTranslation, useDeleteEventRegistration, useDeleteEventRegistrationBypass, useDeleteEventRegistrationPurchase, useDeleteEventReservationSection, useDeleteEventReservationSectionLocation, useDeleteEventReservationSectionLocationTranslation, useDeleteEventReservationSectionTranslation, useDeleteEventSection, useDeleteEventSectionTranslation, useDeleteEventSession, useDeleteEventSessionTranslation, useDeleteEventSpeaker, useDeleteEventSpeakerTranslation, useDeleteEventTicket, useDeleteEventTicketTranslation, useDeleteEventTrack, useDeleteEventTrackTranslation, useDeleteEventTranslation, useDeleteFile, useDeleteGroup, useDeleteGroupTranslation, useDeleteImage, useDeleteInterest, useDeleteInvoice, useDeleteInvoiceLineItem, useDeleteLevel, useDeleteLevelTranslation, useDeleteManyImages, useDeleteManyVideos, useDeleteOrganizationPageTranslation, useDeleteOrganizationPaymentIntegration, useDeleteOrganizationTeamMember, useDeleteOrganizationUser, useDeleteReport, useDeleteSeries, useDeleteStreamInput, useDeleteStreamInputOutput, useDeleteSubscriptionProduct, useDeleteSupportTicket, useDeleteSupportTicketNote, useDeleteTier, useDeleteVideo, useGetAPILog, useGetAPILogs, useGetAcccountEmailReceipts, useGetAccount, useGetAccountActivities, useGetAccountCognitoUser, useGetAccountCognitoUsers, useGetAccountComments, useGetAccountDelegateOf, useGetAccountDelegates, useGetAccountEvents, useGetAccountFollowers, useGetAccountFollowing, useGetAccountGroups, useGetAccountInterests, useGetAccountLikes, useGetAccountRegistrations, useGetAccountReshares, useGetAccountTiers, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityInterests, useGetActivityLikes, useGetActivityReshares, useGetAdvertisement, useGetAdvertisementClicks, useGetAdvertisementViews, useGetAdvertisements, useGetAnnouncement, useGetAnnouncementEmailReceipts, useGetAnnouncements, useGetBenefit, useGetBenefitClicks, useGetBenefitTranslation, useGetBenefitTranslations, useGetBenefits, useGetChannel, useGetChannelActivities, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuest, useGetChannelContentGuests, useGetChannelContentTranslation, useGetChannelContentTranslations, useGetChannelContents, useGetChannelSubscriber, useGetChannelSubscribers, useGetChannelTranslation, useGetChannelTranslations, useGetChannels, useGetEmailReceipt, useGetEmailReceipts, useGetEvent, useGetEventAccountRegistration, useGetEventActivation, useGetEventActivationCompletions, useGetEventActivationTranslation, useGetEventActivationTranslations, useGetEventActivations, useGetEventActivities, useGetEventAddOn, useGetEventAddOnPurchases, useGetEventAddOnTickets, useGetEventAddOnTiers, useGetEventAddOnTranslation, useGetEventAddOnTranslations, useGetEventAddOns, useGetEventCoHosts, useGetEventCoupon, useGetEventCouponRegistrations, useGetEventCoupons, useGetEventEmail, useGetEventFaqSection, useGetEventFaqSectionQuestion, useGetEventFaqSectionQuestionTranslation, useGetEventFaqSectionQuestionTranslations, useGetEventFaqSectionQuestions, useGetEventFaqSectionTranslation, useGetEventFaqSectionTranslations, useGetEventFaqSections, useGetEventOnSite, useGetEventPage, useGetEventPageImages, useGetEventPageTranslation, useGetEventPageTranslations, useGetEventPages, useGetEventPurchase, useGetEventPurchases, useGetEventQuestion, useGetEventQuestionChoice, useGetEventQuestionChoiceSubQuestions, useGetEventQuestionChoiceTranslation, useGetEventQuestionChoiceTranslations, useGetEventQuestionChoices, useGetEventQuestionResponses, useGetEventQuestionSearchValue, useGetEventQuestionSearchValues, useGetEventQuestionSummaries, useGetEventQuestionSummary, useGetEventQuestionTranslation, useGetEventQuestionTranslations, useGetEventQuestions, useGetEventRegistration, useGetEventRegistrationBypass, useGetEventRegistrationBypassList, useGetEventRegistrationCounts, useGetEventRegistrationCoupons, useGetEventRegistrationPayment, useGetEventRegistrationPayments, useGetEventRegistrationPurchase, useGetEventRegistrationPurchaseAddOns, useGetEventRegistrationPurchaseResponse, useGetEventRegistrationPurchaseResponseChanges, useGetEventRegistrationPurchaseResponses, useGetEventRegistrationPurchaseSections, useGetEventRegistrationPurchases, useGetEventRegistrationTransferLogs, useGetEventRegistrations, useGetEventSection, useGetEventSectionAddOns, useGetEventSectionQuestions, useGetEventSectionTickets, useGetEventSectionTiers, useGetEventSectionTranslation, useGetEventSectionTranslations, useGetEventSections, useGetEventSession, useGetEventSessionAccounts, useGetEventSessionSpeakers, useGetEventSessionSponsors, useGetEventSessionTracks, useGetEventSessionTranslation, useGetEventSessionTranslations, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakerTranslation, useGetEventSpeakerTranslations, useGetEventSpeakers, useGetEventSponsorAccounts, useGetEventSponsors, useGetEventTicket, useGetEventTicketAddOns, useGetEventTicketCoupons, useGetEventTicketPurchases, useGetEventTicketTiers, useGetEventTicketTranslation, useGetEventTicketTranslations, useGetEventTickets, useGetEventTrack, useGetEventTrackSessions, useGetEventTrackSponsors, useGetEventTrackTranslation, useGetEventTrackTranslations, useGetEventTracks, useGetEventTranslation, useGetEventTranslations, useGetEventZplTemplateBadgeField, useGetEventZplTemplateBadgeFields, useGetEvents, useGetFeaturedEvents, useGetFile, useGetFiles, useGetGroup, useGetGroupActivities, useGetGroupEvents, useGetGroupInterests, useGetGroupInvitation, useGetGroupInvitations, useGetGroupMembers, useGetGroupModerators, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroupTranslation, useGetGroupTranslations, useGetGroups, useGetImage, useGetImageUsage, useGetImages, useGetImportItems, useGetImports, useGetInterest, useGetInterestAccounts, useGetInterestActivities, useGetInterestEvents, useGetInterestGroups, useGetInterests, useGetInvoice, useGetInvoiceLineItem, useGetInvoiceLineItems, useGetInvoicePayment, useGetInvoicePayments, useGetInvoices, useGetLevel, useGetLevelAccounts, useGetLevelTranslation, useGetLevelTranslations, useGetLevels, useGetOrganization, useGetOrganizationMembership, useGetOrganizationPage, useGetOrganizationPageTranslation, useGetOrganizationPageTranslations, useGetOrganizationPaymentIntegration, useGetOrganizationPaymentIntegrations, useGetOrganizationPaymentLink, useGetOrganizationTeamMember, useGetOrganizationTeamMembers, useGetOrganizationTrigger, useGetOrganizationUsers, useGetPayment, useGetPayments, useGetPurchase, useGetPurchases, useGetReport, useGetReportParent, useGetReportParents, useGetReports, useGetReservationSection, useGetReservationSectionLocation, useGetReservationSectionLocationTranslation, useGetReservationSectionLocationTranslations, useGetReservationSectionLocations, useGetReservationSectionTickets, useGetReservationSectionTiers, useGetReservationSectionTranslation, useGetReservationSectionTranslations, useGetReservationSections, useGetSelf, useGetSelfOrgMembership, useGetSelfOrganizations, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetStreamInput, useGetStreamInputOutput, useGetStreamInputOutputs, useGetStreamInputs, useGetSubscription, useGetSubscriptionPayments, useGetSubscriptionProduct, useGetSubscriptionProductPrice, useGetSubscriptionProductPrices, useGetSubscriptionProductSubscriptions, useGetSubscriptionProductTiers, useGetSubscriptionProducts, useGetSubscriptions, useGetSupportTicket, useGetSupportTickets, useGetTier, useGetTierAccounts, useGetTierSubscribers, useGetTiers, useGetUnapprovedEvents, useGetVideo, useGetVideos, useImpersonateAccount, useRefundEventRegistrationPayment, useRemoveAccountDelegate, useRemoveAccountFollower, useRemoveAccountFollowing, useRemoveAccountGroup, useRemoveAccountInterest, useRemoveAccountTier, useRemoveActivityInterest, useRemoveChannelContentGuest, useRemoveChannelSubscriber, useRemoveEventAddOnTicket, useRemoveEventAddOnTier, useRemoveEventBenefit, useRemoveEventCoHost, useRemoveEventPageImage, useRemoveEventQuestionChoiceSubQuestion, useRemoveEventRegistrationCoupon, useRemoveEventRegistrationPurchaseAddOn, useRemoveEventReservationSectionTicket, useRemoveEventReservationSectionTier, useRemoveEventSectionAddOn, useRemoveEventSectionQuestion, useRemoveEventSectionTicket, useRemoveEventSectionTier, useRemoveEventSessionAccount, useRemoveEventSessionSpeaker, useRemoveEventSessionSponsor, useRemoveEventSessionTrack, useRemoveEventSpeakerSession, useRemoveEventSponsorAccount, useRemoveEventTicketAddOn, useRemoveEventTicketTier, useRemoveEventTrackSession, useRemoveEventTrackSponsor, useRemoveGroupEvent, useRemoveGroupInterest, useRemoveGroupMember, useRemoveGroupModerator, useRemoveGroupSponsor, useRemoveLevelAccount, useRemoveSeriesEvent, useRemoveSubscriptionProductTier, useRemoveTierAccount, useReorderEventFaqSectionQuestions, useReorderEventQuestionChoices, useReorderEventSectionQuestions, useResendEventRegistrationConfirmationEmail, useSearchOrganization, useSelectEventRegistrationPurchaseReservation, useSelfLeaveOrganization, useSwitchImage, useToggleOrganizationPaymentIntegration, useTransferEventRegistrationPurchase, useUpdateAccount, useUpdateAccountCognitoUserPassword, useUpdateActivity, useUpdateAdvertisement, useUpdateAnnouncement, useUpdateAnnouncementSchedule, useUpdateBenefit, useUpdateBenefitTranslation, useUpdateChannel, useUpdateChannelContent, useUpdateChannelContentGuest, useUpdateChannelContentTranslation, useUpdateChannelSubscriber, useUpdateChannelTranslation, useUpdateEvent, useUpdateEventActivation, useUpdateEventActivationCompletion, useUpdateEventActivationTranslation, useUpdateEventAddOn, useUpdateEventAddOnTranslation, useUpdateEventCheckinCode, useUpdateEventCoupon, useUpdateEventEmail, useUpdateEventFaqSection, useUpdateEventFaqSectionQuestion, useUpdateEventFaqSectionQuestionTranslation, useUpdateEventFaqSectionTranslation, useUpdateEventPage, useUpdateEventPageTranslation, useUpdateEventQuestion, useUpdateEventQuestionChoice, useUpdateEventQuestionChoiceSubQuestion, useUpdateEventQuestionChoiceTranslation, useUpdateEventQuestionSearchValue, useUpdateEventQuestionTranslation, useUpdateEventRegistration, useUpdateEventRegistrationBypass, useUpdateEventRegistrationPurchase, useUpdateEventRegistrationPurchaseResponse, useUpdateEventRegistrationPurchaseResponses, useUpdateEventReservationSection, useUpdateEventReservationSectionLocation, useUpdateEventReservationSectionLocationTranslation, useUpdateEventReservationSectionTranslation, useUpdateEventSection, useUpdateEventSectionQuestion, useUpdateEventSectionTranslation, useUpdateEventSession, useUpdateEventSessionTranslation, useUpdateEventSpeaker, useUpdateEventSpeakerTranslation, useUpdateEventTicket, useUpdateEventTicketTranslation, useUpdateEventTrack, useUpdateEventTrackTranslation, useUpdateEventTranslation, useUpdateEventZplTemplate, useUpdateEventZplTemplateBadgeField, useUpdateFile, useUpdateGroup, useUpdateGroupTranslation, useUpdateImage, useUpdateInterest, useUpdateInvoice, useUpdateInvoiceLineItem, useUpdateLevel, useUpdateLevelTranslation, useUpdateOrganization, useUpdateOrganizationIntegrations, useUpdateOrganizationMembership, useUpdateOrganizationPage, useUpdateOrganizationPageTranslation, useUpdateOrganizationTeamMember, useUpdateOrganizationTrigger, useUpdateReport, useUpdateSelf, useUpdateSeries, useUpdateStreamConfig, useUpdateStreamInput, useUpdateStreamInputOutput, useUpdateSubscription, useUpdateSubscriptionProduct, useUpdateSubscriptionProductPrice, useUpdateSupportTicket, useUpdateTier, useUpdateVideo, useUploadFile };
|
|
16846
|
+
/**
|
|
16847
|
+
* @category Params
|
|
16848
|
+
* @group Thread
|
|
16849
|
+
*/
|
|
16850
|
+
interface CreateThreadParams extends MutationParams {
|
|
16851
|
+
thread: ThreadCreateInputs;
|
|
16852
|
+
accountIds?: string[];
|
|
16853
|
+
firstMessage?: string;
|
|
16854
|
+
imageDataUri?: string;
|
|
16855
|
+
}
|
|
16856
|
+
/**
|
|
16857
|
+
* @category Methods
|
|
16858
|
+
* @group Thread
|
|
16859
|
+
*/
|
|
16860
|
+
declare const CreateThread: ({ thread, accountIds, firstMessage, imageDataUri, adminApiParams, queryClient, }: CreateThreadParams) => Promise<ConnectedXMResponse<Thread>>;
|
|
16861
|
+
/**
|
|
16862
|
+
* @category Mutations
|
|
16863
|
+
* @group Thread
|
|
16864
|
+
*/
|
|
16865
|
+
declare const useCreateThread: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateThread>>, Omit<CreateThreadParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<Thread>, any>, Omit<CreateThreadParams, "queryClient" | "adminApiParams">, unknown>;
|
|
16866
|
+
|
|
16867
|
+
/**
|
|
16868
|
+
* @category Params
|
|
16869
|
+
* @group Threads
|
|
16870
|
+
*/
|
|
16871
|
+
interface UpdateThreadParams extends MutationParams {
|
|
16872
|
+
threadId: string;
|
|
16873
|
+
thread: ThreadUpdateInputs;
|
|
16874
|
+
imageDataUri?: string;
|
|
16875
|
+
}
|
|
16876
|
+
/**
|
|
16877
|
+
* @category Methods
|
|
16878
|
+
* @group Threads
|
|
16879
|
+
*/
|
|
16880
|
+
declare const UpdateThread: ({ threadId, thread, imageDataUri, adminApiParams, queryClient, }: UpdateThreadParams) => Promise<ConnectedXMResponse<Thread>>;
|
|
16881
|
+
/**
|
|
16882
|
+
* @category Mutations
|
|
16883
|
+
* @group Threads
|
|
16884
|
+
*/
|
|
16885
|
+
declare const useUpdateThread: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateThread>>, Omit<UpdateThreadParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<Thread>, any>, Omit<UpdateThreadParams, "queryClient" | "adminApiParams">, unknown>;
|
|
16886
|
+
|
|
16887
|
+
/**
|
|
16888
|
+
* @category Params
|
|
16889
|
+
* @group Threads
|
|
16890
|
+
*/
|
|
16891
|
+
interface AddThreadMemberParams extends MutationParams {
|
|
16892
|
+
threadId: string;
|
|
16893
|
+
accountId: string;
|
|
16894
|
+
role: "moderator" | "member";
|
|
16895
|
+
}
|
|
16896
|
+
/**
|
|
16897
|
+
* @category Methods
|
|
16898
|
+
* @group Threads
|
|
16899
|
+
*/
|
|
16900
|
+
declare const AddThreadMember: ({ threadId, accountId, role, adminApiParams, queryClient, }: AddThreadMemberParams) => Promise<ConnectedXMResponse<ThreadMember>>;
|
|
16901
|
+
/**
|
|
16902
|
+
* @category Mutations
|
|
16903
|
+
* @group Threads
|
|
16904
|
+
*/
|
|
16905
|
+
declare const useAddThreadMember: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof AddThreadMember>>, Omit<AddThreadMemberParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadMember>, axios.AxiosError<ConnectedXMResponse<ThreadMember>, any>, Omit<AddThreadMemberParams, "queryClient" | "adminApiParams">, unknown>;
|
|
16906
|
+
|
|
16907
|
+
/**
|
|
16908
|
+
* @category Params
|
|
16909
|
+
* @thread Threads
|
|
16910
|
+
*/
|
|
16911
|
+
interface RemoveThreadMemberParams extends MutationParams {
|
|
16912
|
+
threadId: string;
|
|
16913
|
+
accountId: string;
|
|
16914
|
+
}
|
|
16915
|
+
/**
|
|
16916
|
+
* @category Methods
|
|
16917
|
+
* @thread Threads
|
|
16918
|
+
*/
|
|
16919
|
+
declare const RemoveThreadMember: ({ threadId, accountId, adminApiParams, queryClient, }: RemoveThreadMemberParams) => Promise<ConnectedXMResponse<GroupMembership>>;
|
|
16920
|
+
/**
|
|
16921
|
+
* @category Mutations
|
|
16922
|
+
* @thread Threads
|
|
16923
|
+
*/
|
|
16924
|
+
declare const useRemoveThreadMember: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof RemoveThreadMember>>, Omit<RemoveThreadMemberParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupMembership>, axios.AxiosError<ConnectedXMResponse<GroupMembership>, any>, Omit<RemoveThreadMemberParams, "queryClient" | "adminApiParams">, unknown>;
|
|
16925
|
+
|
|
16926
|
+
/**
|
|
16927
|
+
* @category Params
|
|
16928
|
+
* @group Threads
|
|
16929
|
+
*/
|
|
16930
|
+
interface RemoveThreadModeratorParams extends MutationParams {
|
|
16931
|
+
threadId: string;
|
|
16932
|
+
accountId: string;
|
|
16933
|
+
}
|
|
16934
|
+
/**
|
|
16935
|
+
* @category Methods
|
|
16936
|
+
* @group Threads
|
|
16937
|
+
*/
|
|
16938
|
+
declare const RemoveThreadModerator: ({ threadId, accountId, adminApiParams, queryClient, }: RemoveThreadModeratorParams) => Promise<ConnectedXMResponse<GroupMembership>>;
|
|
16939
|
+
/**
|
|
16940
|
+
* @category Mutations
|
|
16941
|
+
* @group Threads
|
|
16942
|
+
*/
|
|
16943
|
+
declare const useRemoveThreadModerator: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof RemoveThreadModerator>>, Omit<RemoveThreadModeratorParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupMembership>, axios.AxiosError<ConnectedXMResponse<GroupMembership>, any>, Omit<RemoveThreadModeratorParams, "queryClient" | "adminApiParams">, unknown>;
|
|
16944
|
+
|
|
16945
|
+
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_COGNITO_USERS_QUERY_KEY, ACCOUNT_COGNITO_USER_QUERY_KEY, ACCOUNT_COMMENTS_QUERY_KEY, ACCOUNT_DELEGATES_QUERY_KEY, ACCOUNT_DELEGATE_OF_QUERY_KEY, ACCOUNT_EMAILS_QUERY_KEY, ACCOUNT_EVENTS_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWING_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_INTERESTS_QUERY_KEY, ACCOUNT_LIKES_QUERY_KEY, ACCOUNT_QUERY_KEY, ACCOUNT_REGISTRATIONS_QUERY_KEY, ACCOUNT_RESHARES_QUERY_KEY, ACCOUNT_TIERS_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_INTERESTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ACTIVITY_RESHARES_QUERY_KEY, ADVERTISEMENTS_QUERY_KEY, ADVERTISEMENT_CLICKS_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, ADVERTISEMENT_VIEWS_QUERY_KEY, ANNOUNCEMENTS_QUERY_KEY, ANNOUNCEMENT_EMAILS_QUERY_KEY, ANNOUNCEMENT_QUERY_KEY, type APILog, API_LOGS_QUERY_KEY, API_LOG_QUERY_KEY, type Account, type AccountCreateInputs, AccountType, type AccountUpdateInputs, type ActivationCompletion, type ActivationTranslation, type Activity, type ActivityCreateInputs, type ActivityUpdateInputs, AddAccountDelegate, type AddAccountDelegateParams, AddAccountFollower, type AddAccountFollowerParams, AddAccountFollowing, type AddAccountFollowingParams, AddAccountGroup, type AddAccountGroupParams, AddAccountInterest, type AddAccountInterestParams, AddAccountTier, type AddAccountTierParams, AddActivityInterest, type AddActivityInterestParams, AddChannelSubscriber, type AddChannelsubscriberParams, AddEventAddOnTicket, type AddEventAddOnTicketParams, AddEventAddOnTier, type AddEventAddOnTierParams, AddEventBenefit, type AddEventBenefitParams, AddEventCoHost, type AddEventCoHostParams, AddEventPageImage, type AddEventPageImageParams, AddEventQuestionChoiceSubQuestion, type AddEventQuestionChoiceSubQuestionParams, AddEventRegistrationPurchaseAddOn, type AddEventRegistrationPurchaseAddOnParams, AddEventReservationSectionTicket, type AddEventReservationSectionTicketParams, AddEventReservationSectionTier, type AddEventReservationSectionTierParams, AddEventSectionAddOn, type AddEventSectionAddOnParams, AddEventSectionQuestion, type AddEventSectionQuestionParams, AddEventSectionTicket, type AddEventSectionTicketParams, AddEventSectionTier, type AddEventSectionTierParams, AddEventSessionAccount, type AddEventSessionAccountParams, AddEventSessionSpeaker, type AddEventSessionSpeakerParams, AddEventSessionSponsor, type AddEventSessionSponsorParams, AddEventSessionTrack, type AddEventSessionTrackParams, AddEventSpeakerSession, type AddEventSpeakerSessionParams, AddEventSponsorAccount, type AddEventSponsorAccountParams, AddEventTicketAddOn, type AddEventTicketAddOnParams, AddEventTicketTier, type AddEventTicketTierParams, AddEventTrackSession, type AddEventTrackSessionParams, AddEventTrackSponsor, type AddEventTrackSponsorParams, AddGroupEvent, type AddGroupEventParams, AddGroupInterest, type AddGroupInterestParams, AddGroupMember, type AddGroupMemberParams, AddGroupModerator, type AddGroupModeratorParams, AddGroupSponsor, type AddGroupSponsorParams, AddLevelAccount, type AddLevelAccountParams, AddOrganizationUser, type AddOrganizationUserParams, AddSeriesEvent, type AddSeriesEventParams, AddSubscriptionProductTier, type AddSubscriptionProductTierParams, AddThreadMember, type AddThreadMemberParams, AddTierAccount, type AddTierAccountParams, type AdminApiParams, type Advertisement, type AdvertisementClick, type AdvertisementCreateInputs, AdvertisementType, type AdvertisementUpdateInputs, type AdvertisementView, type Announcement, type AnnouncementCreateInputs, type AnnouncementUpdateInputs, AppendInfiniteQuery, ApplyEventRegistrationCoupon, type ApplyEventRegistrationCouponParams, ApproveEvent, type ApproveEventParams, BENEFITS_QUERY_KEY, BENEFIT_CLICKS_QUERY_KEY, BENEFIT_QUERY_KEY, BENEFIT_TRANSLATIONS_QUERY_KEY, BENEFIT_TRANSLATION_QUERY_KEY, BadgeFieldTransformation, BadgeFieldType, type BarChartSummaryData, type BaseAccount, type BaseActivationCompletion, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChannel, type BaseChannelContent, type BaseChannelContentGuest, type BaseChannelContentLike, type BaseChannelSubscriber, type BaseCoupon, type BaseEmailReceipt, type BaseEvent, type BaseEventActivation, type BaseEventAddOn, type BaseEventEmail, type BaseEventOnSite, type BaseEventOnSiteBadgeField, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseEventSession, type BaseEventSpeaker, type BaseEventTicket, type BaseEventTrack, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseImport, type BaseImportItem, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLevel, type BaseLike, type BaseLinkPreview, type BaseNotification, type BaseOrganization, type BaseOrganizationModule, type BaseOrganizationModuleAction, type BasePage, type BasePayment, type BasePurchase, type BaseRegistration, type BaseRegistrationBypass, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionChoiceSubQuestion, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionResponseChange, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseRegistrationSectionQuestion, type BaseRegistrationStatusChange, type BaseSchedule, type BaseSeries, type BaseStreamInput, type BaseSubscription, type BaseSubscriptionPayment, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseThread, type BaseThreadMember, type BaseThreadMessage, type BaseTier, type BaseTransfer, type BaseTransferLog, type BaseUser, type BaseVideo, type Benefit, type BenefitClick, type BenefitCreateInputs, type BenefitTranslation, type BenefitTranslationUpdateInputs, type BenefitUpdateInputs, CHANNELS_QUERY_KEY, CHANNEL_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_GUEST_QUERY_KEY, CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_KEY, CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_KEY, CHANNEL_CONTENT_LIKES_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_CONTENT_TRANSLATIONS_QUERY_KEY, CHANNEL_CONTENT_TRANSLATION_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIBERS_QUERY_KEY, CHANNEL_SUBSCRIBER_QUERY_KEY, CHANNEL_TRANSLATIONS_QUERY_KEY, CHANNEL_TRANSLATION_QUERY_KEY, CacheIndividualQueries, CancelAnnouncementSchedule, type CancelAnnouncementScheduleParams, CancelChannelContentPublishSchedule, type CancelChannelContentPublishScheduleParams, CancelEventRegistrationPurchaseTransfer, type CancelEventRegistrationPurchaseTransferParams, CancelSubscription, type CancelSubscriptionParams, type Channel, type ChannelCollectionCreateInputs, type ChannelCollectionTranslationUpdateInputs, type ChannelCollectionUpdateInputs, type ChannelContent, type ChannelContentCreateInputs, type ChannelContentGuest, type ChannelContentGuestCreateInputs, type ChannelContentGuestTranslation, type ChannelContentGuestTranslationUpdateInputs, type ChannelContentGuestUpdateInputs, type ChannelContentLike, type ChannelContentTranslation, type ChannelContentTranslationUpdateInputs, type ChannelContentUpdateInputs, type ChannelCreateInputs, ChannelFormat, type ChannelSubscriberUpdateInputs, type ChannelTranslation, type ChannelTranslationUpdateInputs, type ChannelUpdateInputs, type CognitoUser, type CognitoUserStatus, ConfirmAccountCognitoUser, type ConfirmAccountCognitoUserParams, type ConnectedXMMutationOptions, ConnectedXMProvider, type ConnectedXMResponse, ContentGuestType, ContentStatus, type CountChartSummaryData, type Coupon, CreateAccount, type CreateAccountParams, CreateAdvertisement, type CreateAdvertisementParams, CreateAnnouncement, type CreateAnnouncementParams, CreateBenefit, type CreateBenefitParams, CreateBenefitTranslation, type CreateBenefitTranslationParams, CreateChannel, CreateChannelContent, CreateChannelContentGuest, type CreateChannelContentGuestParams, CreateChannelContentGuestTranslation, type CreateChannelContentGuestTranslationParams, type CreateChannelContentParams, CreateChannelContentTranslation, type CreateChannelContentTranslationParams, type CreateChannelParams, CreateChannelTranslation, type CreateChannelTranslationParams, CreateEvent, CreateEventActivation, CreateEventActivationCompletion, type CreateEventActivationCompletionParams, type CreateEventActivationParams, CreateEventActivationTranslation, type CreateEventActivationTranslationParams, CreateEventAddOn, type CreateEventAddOnParams, CreateEventAddOnTranslation, type CreateEventAddOnTranslationParams, CreateEventCoupon, type CreateEventCouponParams, CreateEventFaqSection, type CreateEventFaqSectionParams, CreateEventFaqSectionQuestion, type CreateEventFaqSectionQuestionParams, CreateEventFaqSectionQuestionTranslation, type CreateEventFaqSectionQuestionTranslationParams, CreateEventFaqSectionTranslation, type CreateEventFaqSectionTranslationParams, CreateEventPage, type CreateEventPageParams, CreateEventPageTranslation, type CreateEventPageTranslationParams, type CreateEventParams, CreateEventQuestion, CreateEventQuestionChoice, type CreateEventQuestionChoiceParams, CreateEventQuestionChoiceTranslation, type CreateEventQuestionChoiceTranslationParams, type CreateEventQuestionParams, CreateEventQuestionSearchValues, type CreateEventQuestionSearchValuesParams, CreateEventQuestionTranslation, type CreateEventQuestionTranslationParams, CreateEventRegistration, CreateEventRegistrationBypass, type CreateEventRegistrationBypassParams, type CreateEventRegistrationParams, CreateEventRegistrationPurchase, type CreateEventRegistrationPurchaseParams, CreateEventReservationSection, CreateEventReservationSectionLocation, type CreateEventReservationSectionLocationParams, CreateEventReservationSectionLocationTranslation, type CreateEventReservationSectionLocationTranslationParams, type CreateEventReservationSectionParams, CreateEventReservationSectionTranslation, type CreateEventReservationSectionTranslationParams, CreateEventSection, type CreateEventSectionParams, CreateEventSectionTranslation, type CreateEventSectionTranslationParams, CreateEventSession, type CreateEventSessionParams, CreateEventSessionTranslation, type CreateEventSessionTranslationParams, CreateEventSpeaker, type CreateEventSpeakerParams, CreateEventSpeakerTranslation, type CreateEventSpeakerTranslationParams, CreateEventTicket, type CreateEventTicketParams, CreateEventTicketTranslation, type CreateEventTicketTranslationParams, CreateEventTrack, type CreateEventTrackParams, CreateEventTrackTranslation, type CreateEventTrackTranslationParams, CreateEventTranslation, type CreateEventTranslationParams, CreateGroup, type CreateGroupParams, CreateGroupTranslation, type CreateGroupTranslationParams, CreateImage, type CreateImageParams, CreateImport, type CreateImportParams, CreateInterest, type CreateInterestParams, CreateInvoice, CreateInvoiceLineItem, type CreateInvoiceLineItemParams, type CreateInvoiceParams, CreateLevel, type CreateLevelParams, CreateLevelTranslation, type CreateLevelTranslationParams, CreateOrganizationPageTranslation, type CreateOrganizationPageTranslationParams, CreateOrganizationPaymentIntegration, type CreateOrganizationPaymentIntegrationParams, CreateOrganizationTeamMember, type CreateOrganizationTeamMemberParams, CreateReport, type CreateReportParams, CreateSeries, type CreateSeriesParams, CreateStreamInput, CreateStreamInputOutput, type CreateStreamInputOutputParams, type CreateStreamInputParams, CreateSubscription, type CreateSubscriptionParams, CreateSubscriptionProduct, type CreateSubscriptionProductParams, CreateSubscriptionProductPrice, type CreateSubscriptionProductPriceParams, CreateSupportTicket, CreateSupportTicketNote, type CreateSupportTicketNoteParams, type CreateSupportTicketParams, CreateThread, type CreateThreadParams, CreateTier, type CreateTierParams, Currency, DelegateRole, DeleteAccount, type DeleteAccountParams, DeleteActivity, type DeleteActivityParams, DeleteAdvertisement, type DeleteAdvertisementParams, DeleteBenefit, type DeleteBenefitParams, DeleteBenefitTranslation, type DeleteBenefitTranslationParams, DeleteChannel, DeleteChannelContent, DeleteChannelContentGuest, type DeleteChannelContentGuestParams, DeleteChannelContentGuestTranslation, type DeleteChannelContentGuestTranslationParams, type DeleteChannelContentParams, DeleteChannelContentTranslation, type DeleteChannelContentTranslationParams, type DeleteChannelParams, DeleteChannelTranslation, type DeleteChannelTranslationParams, DeleteEvent, DeleteEventActivation, DeleteEventActivationCompletion, type DeleteEventActivationCompletionParams, type DeleteEventActivationParams, DeleteEventActivationTranslation, type DeleteEventActivationTranslationParams, DeleteEventAddOn, type DeleteEventAddOnParams, DeleteEventAddOnTranslation, type DeleteEventAddOnTranslationParams, DeleteEventCoupon, type DeleteEventCouponParams, DeleteEventFaqSection, type DeleteEventFaqSectionParams, DeleteEventFaqSectionQuestion, type DeleteEventFaqSectionQuestionParams, DeleteEventFaqSectionQuestionTranslation, type DeleteEventFaqSectionQuestionTranslationParams, DeleteEventFaqSectionTranslation, type DeleteEventFaqSectionTranslationParams, DeleteEventPage, type DeleteEventPageParams, DeleteEventPageTranslation, type DeleteEventPageTranslationParams, type DeleteEventParams, DeleteEventQuestion, DeleteEventQuestionChoice, type DeleteEventQuestionChoiceParams, DeleteEventQuestionChoiceTranslation, type DeleteEventQuestionChoiceTranslationParams, type DeleteEventQuestionParams, DeleteEventQuestionSearchValue, type DeleteEventQuestionSearchValueParams, DeleteEventQuestionSearchValues, type DeleteEventQuestionSearchValuesParams, DeleteEventQuestionTranslation, type DeleteEventQuestionTranslationParams, DeleteEventRegistration, DeleteEventRegistrationBypass, type DeleteEventRegistrationBypassParams, type DeleteEventRegistrationParams, DeleteEventRegistrationPurchase, type DeleteEventRegistrationPurchaseParams, DeleteEventReservationSection, DeleteEventReservationSectionLocation, type DeleteEventReservationSectionLocationParams, DeleteEventReservationSectionLocationTranslation, type DeleteEventReservationSectionLocationTranslationParams, type DeleteEventReservationSectionParams, DeleteEventReservationSectionTranslation, type DeleteEventReservationSectionTranslationParams, DeleteEventSection, type DeleteEventSectionParams, DeleteEventSectionTranslation, type DeleteEventSectionTranslationParams, DeleteEventSession, type DeleteEventSessionParams, DeleteEventSessionTranslation, type DeleteEventSessionTranslationParams, DeleteEventSpeaker, type DeleteEventSpeakerParams, DeleteEventSpeakerTranslation, type DeleteEventSpeakerTranslationParams, DeleteEventTicket, type DeleteEventTicketParams, DeleteEventTicketTranslation, type DeleteEventTicketTranslationParams, DeleteEventTrack, type DeleteEventTrackParams, DeleteEventTrackTranslation, type DeleteEventTrackTranslationParams, DeleteEventTranslation, type DeleteEventTranslationParams, DeleteFile, type DeleteFileParams, DeleteGroup, type DeleteGroupParams, DeleteGroupTranslation, type DeleteGroupTranslationParams, DeleteImage, type DeleteImageParams, DeleteInterest, type DeleteInterestParams, DeleteInvoice, DeleteInvoiceLineItem, type DeleteInvoiceLineItemParams, type DeleteInvoiceParams, DeleteLevel, type DeleteLevelParams, DeleteLevelTranslation, type DeleteLevelTranslationParams, DeleteManyImages, type DeleteManyImagesParams, DeleteManyVideos, type DeleteManyVideosParams, DeleteOrganizationPageTranslation, type DeleteOrganizationPageTranslationParams, DeleteOrganizationPaymentIntegration, type DeleteOrganizationPaymentIntegrationParams, DeleteOrganizationTeamMember, type DeleteOrganizationTeamMemberParams, DeleteOrganizationUser, type DeleteOrganizationUserParams, DeleteReport, type DeleteReportParams, DeleteSeries, type DeleteSeriesParams, DeleteStreamInput, DeleteStreamInputOutput, type DeleteStreamInputOutputParams, type DeleteStreamInputParams, DeleteSubscriptionProduct, type DeleteSubscriptionProductParams, DeleteSupportTicket, DeleteSupportTicketNote, type DeleteSupportTicketNoteParams, type DeleteSupportTicketParams, DeleteTier, type DeleteTierParams, DeleteVideo, type DeleteVideoParams, EMAIL_RECEIPTS_QUERY_KEY, EMAIL_RECEIPT_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACCOUNT_REGISTRATION_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_COMPLETIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_TRANSLATIONS_QUERY_KEY, EVENT_ACTIVATION_TRANSLATION_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_ADD_ONS_QUERY_KEY, EVENT_ADD_ON_PURCHASES_QUERY_KEY, EVENT_ADD_ON_QUERY_KEY, EVENT_ADD_ON_TICKETS_QUERY_KEY, EVENT_ADD_ON_TIERS_QUERY_KEY, EVENT_ADD_ON_TRANSLATIONS_QUERY_KEY, EVENT_ADD_ON_TRANSLATION_QUERY_KEY, EVENT_COUPONS_QUERY_KEY, EVENT_COUPON_QUERY_KEY, EVENT_COUPON_REGISTRATIONS_QUERY_KEY, EVENT_CO_HOSTS_QUERY_KEY, EVENT_EMAIL_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_TRANSLATIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_TRANSLATION_QUERY_KEY, EVENT_FAQ_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_FAQ_SECTION_TRANSLATION_QUERY_KEY, EVENT_ON_SITE_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_IMAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_PAGE_TRANSLATIONS_QUERY_KEY, EVENT_PAGE_TRANSLATION_QUERY_KEY, EVENT_PURCHASES_QUERY_KEY, EVENT_PURCHASE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTIONS_QUERY_KEY, EVENT_QUESTION_CHOICES_QUERY_KEY, EVENT_QUESTION_CHOICE_QUERY_KEY, EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_KEY, EVENT_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY, EVENT_QUESTION_CHOICE_TRANSLATION_QUERY_KEY, EVENT_QUESTION_QUERY_KEY, EVENT_QUESTION_RESPONSES_QUERY_KEY, EVENT_QUESTION_SEARCH_VALUES_QUERY_KEY, EVENT_QUESTION_SEARCH_VALUE_QUERY_KEY, EVENT_QUESTION_SUMMARIES_QUERY_KEY, EVENT_QUESTION_SUMMARY_QUERY_KEY, EVENT_QUESTION_TRANSLATIONS_QUERY_KEY, EVENT_QUESTION_TRANSLATION_QUERY_KEY, EVENT_REGISTRATIONS_QUERY_KEY, EVENT_REGISTRATION_BYPASS_LIST_QUERY_KEY, EVENT_REGISTRATION_BYPASS_QUERY_KEY, EVENT_REGISTRATION_COUNTS_QUERY_KEY, EVENT_REGISTRATION_COUPONS_QUERY_KEY, EVENT_REGISTRATION_PAYMENTS_QUERY_KEY, EVENT_REGISTRATION_PAYMENT_QUERY_KEY, EVENT_REGISTRATION_PURCHASES_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_RESPONSES_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_RESPONSE_CHANGES_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_RESPONSE_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_TRANSFER_LOGS_QUERY_KEY, EVENT_REGISTRATION_QUERY_KEY, EVENT_RESERVATION_SECTIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATION_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATION_TRANSLATIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATION_TRANSLATION_QUERY_KEY, EVENT_RESERVATION_SECTION_QUERY_KEY, EVENT_RESERVATION_SECTION_TICKETS_QUERY_KEY, EVENT_RESERVATION_SECTION_TIERS_QUERY_KEY, EVENT_RESERVATION_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_TRANSLATION_QUERY_KEY, EVENT_SECTIONS_QUERY_KEY, EVENT_SECTION_ADDONS_QUERY_KEY, EVENT_SECTION_QUERY_KEY, EVENT_SECTION_QUESTIONS_QUERY_KEY, EVENT_SECTION_TICKETS_QUERY_KEY, EVENT_SECTION_TIERS_QUERY_KEY, EVENT_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_SECTION_TRANSLATION_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_ACCOUNTS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SESSION_SPEAKERS_QUERY_KEY, EVENT_SESSION_SPONSORS_QUERY_KEY, EVENT_SESSION_TRACKS_QUERY_KEY, EVENT_SESSION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_TRANSLATION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPEAKER_SESSIONS_QUERY_KEY, EVENT_SPEAKER_TRANSLATIONS_QUERY_KEY, EVENT_SPEAKER_TRANSLATION_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_SPONSOR_ACCOUNTS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, EVENT_TICKET_ADD_ONS_QUERY_KEY, EVENT_TICKET_COUPONS_QUERY_KEY, EVENT_TICKET_PURCHASES_QUERY_KEY, EVENT_TICKET_QUERY_KEY, EVENT_TICKET_TIERS_QUERY_KEY, EVENT_TICKET_TRANSLATIONS_QUERY_KEY, EVENT_TICKET_TRANSLATION_QUERY_KEY, EVENT_TRACKS_QUERY_KEY, EVENT_TRACK_QUERY_KEY, EVENT_TRACK_SESSIONS_QUERY_KEY, EVENT_TRACK_SPONSORS_QUERY_KEY, EVENT_TRACK_TRANSLATIONS_QUERY_KEY, EVENT_TRACK_TRANSLATION_QUERY_KEY, EVENT_TRANSLATIONS_QUERY_KEY, EVENT_TRANSLATION_QUERY_KEY, EVENT_ZPL_TEMPLATE_BADGE_FIELDS_QUERY_KEY, EVENT_ZPL_TEMPLATE_BADGE_FIELD_QUERY_KEY, type EmailReceipt, EmailReceiptStatus, type Event, type EventActivation, type EventActivationCompletionCreateInputs, type EventActivationCompletionUpdateInputs, type EventActivationCreateInputs, type EventActivationTranslation, type EventActivationTranslationUpdateInputs, type EventActivationUpdateInputs, type EventAddOn, type EventAddOnCreateInputs, type EventAddOnTranslation, type EventAddOnTranslationUpdateInputs, type EventAddOnUpdateInputs, type EventBadgeFieldUpdateInputs, type EventCouponCreateInputs, type EventCouponUpdateInputs, type EventCreateInputs, type EventEmail, EventEmailType, type EventEmailUpdateInputs, type EventFaqSectionCreateInputs, type EventFaqSectionQuestionCreateInputs, type EventFaqSectionQuestionTranslationUpdateInputs, type EventFaqSectionQuestionUpdateInputs, type EventFaqSectionTranslationUpdateInputs, type EventFaqSectionUpdateInputs, type EventListing, type EventOnSite, type EventOnSiteBadgeField, type EventPage, type EventPageCreateInputs, type EventPageTranslation, type EventPageTranslationUpdateInputs, type EventPageUpdateInputs, type EventPurchaseCreateInputs, type EventPurchaseUpdateInputs, type EventQuestionChoiceCreateInputs, type EventQuestionChoiceTranslationUpdateInputs, type EventQuestionChoiceUpdateInputs, type EventQuestionCreateInputs, type EventQuestionSearchInputs, type EventQuestionSearchValueUpdateInputs, type EventQuestionTranslationUpdateInputs, type EventQuestionUpdateInputs, type EventRegistrationBypassCreateInputs, type EventRegistrationBypassUpdateInputs, type EventRegistrationUpdateInputs, type EventReservationSection, type EventReservationSectionCreateInputs, type EventReservationSectionLocation, type EventReservationSectionLocationCreateInputs, type EventReservationSectionLocationTranslation, type EventReservationSectionLocationTranslationUpdateInputs, type EventReservationSectionLocationUpdateInputs, type EventReservationSectionTranslation, type EventReservationSectionTranslationUpdateInputs, type EventReservationSectionUpdateInputs, type EventReservationSelectInputs, type EventSectionCreateInputs, type EventSectionTranslationUpdateInputs, type EventSectionUpdateInputs, type EventSession, type EventSessionCreateInputs, type EventSessionTranslation, type EventSessionTranslationUpdateInputs, type EventSessionUpdateInputs, EventSource, type EventSpeaker, type EventSpeakerCreateInputs, type EventSpeakerTranslation, type EventSpeakerTranslationUpdateInputs, type EventSpeakerUpdateInputs, type EventTicket, type EventTicketCreateInputs, type EventTicketTranslation, type EventTicketTranslationUpdateInputs, type EventTicketUpdateInputs, type EventTrack, type EventTrackCreateInputs, type EventTrackTranslation, type EventTrackTranslationUpdateInputs, type EventTrackUpdateInputs, type EventTranslation, type EventTranslationUpdateInputs, EventType, type EventUpdateInputs, ExportStatus, FEATURED_EVENTS_QUERY_KEY, FILES_QUERY_KEY, FILE_QUERY_KEY, type Faq, type FaqSection, type FaqSectionTranslation, type FaqTranslation, type File, FileSource, type FileUpdateInputs, GROUPS_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INTERESTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_INVITATION_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_MODERATORS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GROUP_TRANSLATIONS_QUERY_KEY, GROUP_TRANSLATION_QUERY_KEY, GetAPILog, GetAPILogs, GetAcccountEmailReceipts, GetAccount, GetAccountActivities, GetAccountCognitoUser, GetAccountCognitoUsers, GetAccountComments, GetAccountDelegateOf, GetAccountDelegates, GetAccountEvents, GetAccountFollowers, GetAccountFollowing, GetAccountGroups, GetAccountInterests, GetAccountLikes, GetAccountRegistrations, GetAccountReshares, GetAccountTiers, GetAccounts, GetActivities, GetActivity, GetActivityComments, GetActivityInterests, GetActivityLikes, GetActivityReshares, GetAdminAPI, GetAdvertisement, GetAdvertisementClicks, GetAdvertisementViews, GetAdvertisements, GetAnnouncement, GetAnnouncementEmailReceipts, GetAnnouncements, GetBaseInfiniteQueryKeys, GetBenefit, GetBenefitClicks, GetBenefitTranslation, GetBenefitTranslations, GetBenefits, GetChannel, GetChannelActivities, GetChannelContent, GetChannelContentActivities, GetChannelContentGuest, GetChannelContentGuestTranslation, GetChannelContentGuestTranslations, GetChannelContentGuests, GetChannelContentLikes, GetChannelContentTranslation, GetChannelContentTranslations, GetChannelContents, GetChannelSubscriber, GetChannelSubscribers, GetChannelTranslation, GetChannelTranslations, GetChannels, GetEmailReceipt, GetEmailReceipts, GetErrorMessage, GetEvent, GetEventAccountRegistration, GetEventActivation, GetEventActivationCompletions, GetEventActivationTranslation, GetEventActivationTranslations, GetEventActivations, GetEventActivities, GetEventAddOn, GetEventAddOnPurchases, GetEventAddOnTickets, GetEventAddOnTiers, GetEventAddOnTranslation, GetEventAddOnTranslations, GetEventAddOns, GetEventCoHosts, GetEventCoupon, GetEventCouponRegistrations, GetEventCoupons, GetEventEmail, GetEventFaqSection, GetEventFaqSectionQuestion, GetEventFaqSectionQuestionTranslation, GetEventFaqSectionQuestionTranslations, GetEventFaqSectionQuestions, GetEventFaqSectionTranslation, GetEventFaqSectionTranslations, GetEventFaqSections, GetEventOnSite, GetEventPage, GetEventPageImages, GetEventPageTranslation, GetEventPageTranslations, GetEventPages, GetEventPurchase, GetEventPurchases, GetEventQuestion, GetEventQuestionChoice, GetEventQuestionChoiceSubQuestions, GetEventQuestionChoiceTranslation, GetEventQuestionChoiceTranslations, GetEventQuestionChoices, GetEventQuestionResponses, GetEventQuestionSearchValue, GetEventQuestionSearchValues, GetEventQuestionSummaries, GetEventQuestionSummary, GetEventQuestionTranslation, GetEventQuestionTranslations, GetEventQuestions, GetEventRegistration, GetEventRegistrationBypass, GetEventRegistrationBypassList, GetEventRegistrationCounts, GetEventRegistrationCoupons, GetEventRegistrationPayment, GetEventRegistrationPayments, GetEventRegistrationPurchase, GetEventRegistrationPurchaseAddOns, GetEventRegistrationPurchaseResponse, GetEventRegistrationPurchaseResponseChanges, GetEventRegistrationPurchaseResponses, GetEventRegistrationPurchaseSections, GetEventRegistrationPurchases, GetEventRegistrationTransferLogs, GetEventRegistrations, GetEventSection, GetEventSectionAddOns, GetEventSectionQuestions, GetEventSectionTickets, GetEventSectionTiers, GetEventSectionTranslation, GetEventSectionTranslations, GetEventSections, GetEventSession, GetEventSessionAccounts, GetEventSessionSpeakers, GetEventSessionSponsors, GetEventSessionTracks, GetEventSessionTranslation, GetEventSessionTranslations, GetEventSessions, GetEventSpeaker, GetEventSpeakerSessions, GetEventSpeakerTranslation, GetEventSpeakerTranslations, GetEventSpeakers, GetEventSponsorAccounts, GetEventSponsors, GetEventTicket, GetEventTicketAddOns, GetEventTicketCoupons, GetEventTicketPurchases, GetEventTicketTiers, GetEventTicketTranslation, GetEventTicketTranslations, GetEventTickets, GetEventTrack, GetEventTrackSessions, GetEventTrackSponsors, GetEventTrackTranslation, GetEventTrackTranslations, GetEventTracks, GetEventTranslation, GetEventTranslations, GetEventZplTemplateBadgeField, GetEventZplTemplateBadgeFields, GetEvents, GetFeaturedEvents, GetFile, GetFiles, GetGroup, GetGroupActivities, GetGroupEvents, GetGroupInterests, GetGroupInvitation, GetGroupInvitations, GetGroupMembers, GetGroupModerators, GetGroupRequest, GetGroupRequests, GetGroupSponsors, GetGroupTranslation, GetGroupTranslations, GetGroups, GetImage, GetImageUsage, GetImageVariant, GetImages, GetImportItems, GetImports, GetInterest, GetInterestAccounts, GetInterestActivities, GetInterestEvents, GetInterestGroups, GetInterests, GetInvoice, GetInvoiceLineItem, GetInvoiceLineItems, GetInvoicePayment, GetInvoicePayments, GetInvoices, GetLevel, GetLevelAccounts, GetLevelTranslation, GetLevelTranslations, GetLevels, GetOrganization, GetOrganizationMembership, GetOrganizationModules, GetOrganizationPage, GetOrganizationPageTranslation, GetOrganizationPageTranslations, GetOrganizationPaymentIntegration, GetOrganizationPaymentIntegrations, GetOrganizationPaymentLink, GetOrganizationTeamMember, GetOrganizationTeamMembers, GetOrganizationTrigger, GetOrganizationUsers, GetPayment, GetPayments, GetPurchase, GetPurchases, GetReport, GetReportParent, GetReportParents, GetReports, GetReservationSection, GetReservationSectionLocation, GetReservationSectionLocationTranslation, GetReservationSectionLocationTranslations, GetReservationSectionLocations, GetReservationSectionTickets, GetReservationSectionTiers, GetReservationSectionTranslation, GetReservationSectionTranslations, GetReservationSections, GetSelf, GetSelfOrgMembership, GetSelfOrganizations, GetSeries, GetSeriesEvents, GetSeriesList, GetStreamInput, GetStreamInputOutput, GetStreamInputOutputs, GetStreamInputs, GetSubscription, GetSubscriptionPayments, GetSubscriptionProduct, GetSubscriptionProductPrice, GetSubscriptionProductPrices, GetSubscriptionProductSubscriptions, GetSubscriptionProductTiers, GetSubscriptionProducts, GetSubscriptions, GetSupportTicket, GetSupportTickets, GetThread, GetThreadEvents, GetThreadGroups, GetThreadMember, GetThreadMembers, GetThreadMessage, type GetThreadMessageProps, GetThreadMessageReplies, type GetThreadMessageRepliesProps, GetThreadMessages, type GetThreadMessagesProps, GetThreadModerators, GetThreads, GetThreadsGroup, GetTier, GetTierAccounts, GetTierSubscribers, GetTiers, GetUnapprovedEvents, GetVideo, GetVideos, type Group, GroupAccess, type GroupCreateInputs, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupMembershipUpdateInputs, type GroupRequest, GroupRequestStatus, type GroupTranslation, type GroupTranslationUpdateInputs, type GroupUpdateInputs, IMAGES_QUERY_KEY, IMAGE_QUERY_KEY, IMAGE_USAGE_QUERY_KEY, IMPORTS_QUERY_KEY, IMPORT_ITEMS_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACCOUNTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_EVENTS_QUERY_KEY, INTEREST_GROUPS_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_LINE_ITEMS_QUERY_KEY, INVOICE_LINE_ITEM_QUERY_KEY, INVOICE_PAYMENTS_QUERY_KEY, INVOICE_PAYMENT_QUERY_KEY, INVOICE_QUERY_KEY, type ISupportedLocale, type Image, type ImageCreateInputs, ImageType, type ImageUpdateInputs, type ImageVariant, type ImageWCopyUri, ImpersonateAccount, type ImpersonateAccountParams, type Import, type ImportItem, ImportItemStatus, type InfiniteQueryOptions, type InfiniteQueryParams, type Integrations, type Interest, type InterestCreateInputs, type InterestUpdateInputs, type Invoice, type InvoiceCreateInputs, type InvoiceLineItem, type InvoiceLineItemCreateInputs, type InvoiceLineItemUpdateInputs, InvoiceStatus, type InvoiceUpdateInputs, LEVELS_QUERY_KEY, LEVEL_ACCOUNTS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_TRANSLATIONS_QUERY_KEY, LEVEL_TRANSLATION_QUERY_KEY, type LeadCreateInputs, type LeadUpdateInputs, type Level, type LevelCreateInputs, type LevelTranslationUpdateInputs, type LevelUpdateInputs, type Like, type LineChartSummaryData, type LinkPreview, MergeInfinitePages, type ModulePermissions, type MutationParams, type Notification, type NotificationPreferences, type NotificationPreferencesCreateInputs, type NotificationPreferencesUpdateInputs, NotificationType, ORGANIZATION_MEMBERSHIP_QUERY_KEY, ORGANIZATION_MODULES_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAGE_TRANSLATIONS_QUERY_KEY, ORGANIZATION_PAGE_TRANSLATION_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATIONS_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_LINK_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_TEAM_MEMBERS_QUERY_KEY, ORGANIZATION_TEAM_MEMBER_QUERY_KEY, ORGANIZATION_TRIGGER_QUERY_KEY, ORGANIZATION_USERS_QUERY_KEY, type Organization, OrganizationActionType, type OrganizationMembership, type OrganizationMembershipUpdateInputs, type OrganizationModule, type OrganizationModuleAction, type OrganizationModuleActionUpdateInputs, OrganizationModuleType, type OrganizationModuleUpdateInputs, type OrganizationPageCreateInputs, type OrganizationPageTranslationUpdateInputs, type OrganizationPageUpdateInputs, type OrganizationTeamMemberCreateInputs, type OrganizationTeamMemberUpdateInputs, type OrganizationTrigger, OrganizationTriggerType, type OrganizationUpdateInputs, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, PURCHASES_QUERY_KEY, PURCHASE_QUERY_KEY, type Page, type PageTranslation, PageType, type Payment, type PaymentIntegration, type PaymentIntentPurchaseMetadataInputs, PaymentType, type PaypalActivationFormParams, type PermissionDomain, type PermissionType, type Purchase, type PushDevice, PushDeviceAppType, type PushDeviceCreateInputs, type PushDeviceUpdateInputs, PushService, type Question, REPORTS_QUERY_KEY, REPORT_PARENTS_QUERY_KEY, REPORT_PARENT_QUERY_KEY, REPORT_QUERY_KEY, RefundEventRegistrationPayment, type RefundEventRegistrationPaymentParams, type Registration, type RegistrationBypass, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionChoiceSubQuestion, type RegistrationQuestionChoiceTranslation, type RegistrationQuestionResponse, type RegistrationQuestionResponseChange, type RegistrationQuestionSearchValue, type RegistrationQuestionTranslation, RegistrationQuestionType, type RegistrationQuestionWithResponse, type RegistrationSection, type RegistrationSectionQuestion, type RegistrationSectionTranslation, RegistrationStatus, type RegistrationStatusChange, RemoveAccountDelegate, type RemoveAccountDelegateParams, RemoveAccountFollower, type RemoveAccountFollowerParams, RemoveAccountFollowing, type RemoveAccountFollowingParams, RemoveAccountGroup, type RemoveAccountGroupParams, RemoveAccountInterest, type RemoveAccountInterestParams, RemoveAccountTier, type RemoveAccountTierParams, RemoveActivityInterest, type RemoveActivityInterestParams, RemoveChannelSubscriber, type RemoveChannelSubscriberParams, RemoveEventAddOnTicket, type RemoveEventAddOnTicketParams, RemoveEventAddOnTier, type RemoveEventAddOnTierParams, RemoveEventBenefit, type RemoveEventBenefitParams, RemoveEventCoHost, type RemoveEventCoHostParams, RemoveEventPageImage, type RemoveEventPageImageParams, RemoveEventQuestionChoiceSubQuestion, type RemoveEventQuestionChoiceSubQuestionParams, RemoveEventRegistrationCoupon, type RemoveEventRegistrationCouponParams, RemoveEventRegistrationPurchaseAddOn, type RemoveEventRegistrationPurchaseAddOnParams, RemoveEventReservationSectionTicket, type RemoveEventReservationSectionTicketParams, RemoveEventReservationSectionTier, type RemoveEventReservationSectionTierParams, RemoveEventSectionAddOn, type RemoveEventSectionAddOnParams, RemoveEventSectionQuestion, type RemoveEventSectionQuestionParams, RemoveEventSectionTicket, type RemoveEventSectionTicketParams, RemoveEventSectionTier, type RemoveEventSectionTierParams, RemoveEventSessionAccount, type RemoveEventSessionAccountParams, RemoveEventSessionSpeaker, type RemoveEventSessionSpeakerParams, RemoveEventSessionSponsor, type RemoveEventSessionSponsorParams, RemoveEventSessionTrack, type RemoveEventSessionTrackParams, RemoveEventSpeakerSession, type RemoveEventSpeakerSessionParams, RemoveEventSponsorAccount, type RemoveEventSponsorAccountParams, RemoveEventTicketAddOn, type RemoveEventTicketAddOnParams, RemoveEventTicketTier, type RemoveEventTicketTierParams, RemoveEventTrackSession, type RemoveEventTrackSessionParams, RemoveEventTrackSponsor, type RemoveEventTrackSponsorParams, RemoveGroupEvent, type RemoveGroupEventParams, RemoveGroupInterest, type RemoveGroupInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveGroupModerator, type RemoveGroupModeratorParams, RemoveGroupSponsor, type RemoveGroupSponsorParams, RemoveLevelAccount, type RemoveLevelAccountParams, RemoveSeriesEvent, type RemoveSeriesEventParams, RemoveSubscriptionProductTier, type RemoveSubscriptionProductTierParams, RemoveThreadMember, type RemoveThreadMemberParams, RemoveThreadModerator, type RemoveThreadModeratorParams, RemoveTierAccount, type RemoveTierAccountParams, ReorderEventFaqSectionQuestions, type ReorderEventFaqSectionQuestionsParams, ReorderEventQuestionChoices, type ReorderEventQuestionChoicesParams, ReorderEventSectionQuestions, type ReorderEventSectionQuestionsParams, type Report, type ReportCreateInputs, type ReportParent, ReportType, type ReportUpdateInputs, ResendEventRegistrationConfirmationEmail, type ResendEventRegistrationConfirmationEmailParams, SEARCH_ORGANIZATION_QUERY_KEY, SELF_MEMBERSHIP_QUERY_KEY, SELF_ORGANIZATIONS_QUERY_KEY, SELF_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_COMMENTS_QUERY_DATA, SET_ACCOUNT_DELEGATES_QUERY_DATA, SET_ACCOUNT_DELEGATE_OF_QUERY_DATA, SET_ACCOUNT_EMAILS_QUERY_DATA, SET_ACCOUNT_EVENTS_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWING_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_INTERESTS_QUERY_DATA, SET_ACCOUNT_LIKES_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACCOUNT_REGISTRATIONS_QUERY_DATA, SET_ACCOUNT_RESHARES_QUERY_DATA, SET_ACCOUNT_TIERS_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_INTEREST_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ACTIVITY_RESHARES_QUERY_DATA, SET_ADVERTISEMENTS_QUERY_DATA, SET_ADVERTISEMENT_CLICKS_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ADVERTISEMENT_VIEWS_QUERY_DATA, SET_ANNOUNCEMENTS_QUERY_DATA, SET_ANNOUNCEMENT_EMAILS_QUERY_DATA, SET_ANNOUNCEMENT_QUERY_DATA, SET_API_LOGS_QUERY_DATA, SET_API_LOG_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BENEFIT_CLICKS_QUERY_DATA, SET_BENEFIT_QUERY_DATA, SET_BENEFIT_TRANSLATIONS_QUERY_DATA, SET_BENEFIT_TRANSLATION_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_ACTIVITIES_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_ACTIVITIES_QUERY_DATA, SET_CHANNEL_CONTENT_GUESTS_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_DATA, SET_CHANNEL_CONTENT_LIKES_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_CONTENT_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_CONTENT_TRANSLATION_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_CHANNEL_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_TRANSLATION_QUERY_DATA, SET_EMAIL_RECEIPTS_QUERY_DATA, SET_EMAIL_RECEIPT_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACCOUNT_REGISTRATION_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETIONS_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVATION_TRANSLATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_TRANSLATION_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_ADD_ONS_QUERY_DATA, SET_EVENT_ADD_ON_PURCHASES_QUERY_DATA, SET_EVENT_ADD_ON_QUERY_DATA, SET_EVENT_ADD_ON_TICKETS_QUERY_DATA, SET_EVENT_ADD_ON_TIERS_QUERY_DATA, SET_EVENT_ADD_ON_TRANSLATIONS_QUERY_DATA, SET_EVENT_ADD_ON_TRANSLATION_QUERY_DATA, SET_EVENT_COUPONS_QUERY_DATA, SET_EVENT_COUPON_QUERY_DATA, SET_EVENT_COUPON_REGISTRATIONS_QUERY_DATA, SET_EVENT_CO_HOSTS_QUERY_DATA, SET_EVENT_EMAIL_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_TRANSLATION_QUERY_DATA, SET_EVENT_FAQ_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_TRANSLATION_QUERY_DATA, SET_EVENT_ON_SITE_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_IMAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_PAGE_TRANSLATIONS_QUERY_DATA, SET_EVENT_PAGE_TRANSLATION_QUERY_DATA, SET_EVENT_PURCHASE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_QUESTIONS_QUERY_DATA, SET_EVENT_QUESTION_CHOICES_QUERY_DATA, SET_EVENT_QUESTION_CHOICE_QUERY_DATA, SET_EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_DATA, SET_EVENT_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA, SET_EVENT_QUESTION_CHOICE_TRANSLATION_QUERY_DATA, SET_EVENT_QUESTION_QUERY_DATA, SET_EVENT_QUESTION_RESPONSES_QUERY_DATA, SET_EVENT_QUESTION_SEARCH_VALUES_QUERY_DATA, SET_EVENT_QUESTION_SEARCH_VALUE_QUERY_DATA, SET_EVENT_QUESTION_SUMMARIES_QUERY_DATA, SET_EVENT_QUESTION_SUMMARY_QUERY_DATA, SET_EVENT_QUESTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_QUESTION_TRANSLATION_QUERY_DATA, SET_EVENT_REGISTRATIONS_QUERY_DATA, SET_EVENT_REGISTRATION_BYPASS_QUERY_DATA, SET_EVENT_REGISTRATION_COUNTS_QUERY_DATA, SET_EVENT_REGISTRATION_COUPONS_QUERY_DATA, SET_EVENT_REGISTRATION_PAYMENTS_QUERY_DATA, SET_EVENT_REGISTRATION_PAYMENT_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASES_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_RESPONSES_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_RESPONSE_CHANGES_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_RESPONSE_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_TRANSFER_LOGS_QUERY_DATA, SET_EVENT_REGISTRATION_QUERY_DATA, SET_EVENT_RESERVATION_SECTIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATION_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATION_TRANSLATIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATION_TRANSLATION_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TICKETS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TIERS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TRANSLATION_QUERY_DATA, SET_EVENT_SECTIONS_QUERY_DATA, SET_EVENT_SECTION_ADDONS_QUERY_DATA, SET_EVENT_SECTION_QUERY_DATA, SET_EVENT_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_SECTION_TICKETS_QUERY_DATA, SET_EVENT_SECTION_TIERS_QUERY_DATA, SET_EVENT_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SECTION_TRANSLATION_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_ACCOUNTS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SESSION_SPEAKERS_QUERY_DATA, SET_EVENT_SESSION_SPONSORS_QUERY_DATA, SET_EVENT_SESSION_TRACKS_QUERY_DATA, SET_EVENT_SESSION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_TRANSLATION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPEAKER_SESSIONS_QUERY_DATA, SET_EVENT_SPEAKER_TRANSLATIONS_QUERY_DATA, SET_EVENT_SPEAKER_TRANSLATION_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_SPONSOR_ACCOUNTS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_EVENT_TICKET_ADD_ONS_QUERY_DATA, SET_EVENT_TICKET_COUPONS_QUERY_DATA, SET_EVENT_TICKET_PURCHASES_QUERY_DATA, SET_EVENT_TICKET_QUERY_DATA, SET_EVENT_TICKET_TIERS_QUERY_DATA, SET_EVENT_TICKET_TRANSLATIONS_QUERY_DATA, SET_EVENT_TICKET_TRANSLATION_QUERY_DATA, SET_EVENT_TRACKS_QUERY_DATA, SET_EVENT_TRACK_QUERY_DATA, SET_EVENT_TRACK_SESSIONS_QUERY_DATA, SET_EVENT_TRACK_SPONSORS_QUERY_DATA, SET_EVENT_TRACK_TRANSLATIONS_QUERY_DATA, SET_EVENT_TRACK_TRANSLATION_QUERY_DATA, SET_EVENT_TRANSLATIONS_QUERY_DATA, SET_EVENT_TRANSLATION_QUERY_DATA, SET_EVENT_ZPL_TEMPLATE_BADGE_FIELDS_QUERY_DATA, SET_EVENT_ZPL_TEMPLATE_BADGE_FIELD_QUERY_DATA, SET_FEATURED_EVENTS_QUERY_DATA, SET_FILES_QUERY_DATA, SET_FILE_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INTERESTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_INVITATION_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_MODERATORS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_GROUP_TRANSLATIONS_QUERY_DATA, SET_GROUP_TRANSLATION_QUERY_DATA, SET_IMAGES_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_IMAGE_USAGE_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INTEREST_ACCOUNTS_QUERY_DATA, SET_INTEREST_ACTIVITIES_QUERY_DATA, SET_INTEREST_EVENTS_QUERY_DATA, SET_INTEREST_GROUPS_QUERY_DATA, SET_INTEREST_QUERY_DATA, SET_INVOICES_QUERY_DATA, SET_INVOICE_LINE_ITEMS_QUERY_DATA, SET_INVOICE_LINE_ITEM_QUERY_DATA, SET_INVOICE_PAYMENTS_QUERY_DATA, SET_INVOICE_PAYMENT_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_ACCOUNTS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_TRANSLATIONS_QUERY_DATA, SET_LEVEL_TRANSLATION_QUERY_DATA, SET_ORGANIZATION_MEMBERSHIP_QUERY_DATA, SET_ORGANIZATION_MODULES_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_ORGANIZATION_PAGE_TRANSLATIONS_QUERY_DATA, SET_ORGANIZATION_PAGE_TRANSLATION_QUERY_DATA, SET_ORGANIZATION_PAYMENT_INTEGRATIONS_QUERY_DATA, SET_ORGANIZATION_PAYMENT_INTEGRATION_QUERY_DATA, SET_ORGANIZATION_QUERY_DATA, SET_ORGANIZATION_STRIPE_LINK_QUERY_DATA, SET_ORGANIZATION_TEAM_MEMBERS_QUERY_DATA, SET_ORGANIZATION_TEAM_MEMBER_QUERY_DATA, SET_ORGANIZATION_TRIGGER_QUERY_DATA, SET_ORGANIZATION_USERS_QUERY_DATA, SET_PAYMENTS_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PURCHASES_QUERY_DATA, SET_PURCHASE_QUERY_DATA, SET_REPORTS_QUERY_DATA, SET_REPORT_PARENTS_QUERY_DATA, SET_REPORT_PARENT_QUERY_DATA, SET_REPORT_QUERY_DATA, SET_SEARCH_ORGANIZATION_QUERY_DATA, SET_SELF_MEMBERSHIP_QUERY_DATA, SET_SELF_ORGANIZATIONS_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_STREAM_INPUTS_QUERY_DATA, SET_STREAM_INPUT_OUTPUTS_QUERY_DATA, SET_STREAM_INPUT_OUTPUT_QUERY_DATA, SET_STREAM_INPUT_QUERY_DATA, SET_SUBSCRIPTIONS_QUERY_DATA, SET_SUBSCRIPTION_PAYMENTS_QUERY_DATA, SET_SUBSCRIPTION_PRODUCTS_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_PRICES_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_PRICE_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_TIERS_QUERY_DATA, SET_SUBSCRIPTION_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_THREADS_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_MESSAGE_REPLIES_QUERY_DATA, SET_THREAD_MODERATORS_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TIERS_QUERY_DATA, SET_TIER_ACCOUNTS_QUERY_DATA, SET_TIER_QUERY_DATA, SET_TIER_SUBSCRIBERS_QUERY_DATA, SET_UNAPPROVED_EVENTS_QUERY_DATA, SET_VIDEOS_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_INPUTS_QUERY_KEY, STREAM_INPUT_OUTPUTS_QUERY_KEY, STREAM_INPUT_OUTPUT_QUERY_KEY, STREAM_QUERY_KEY, SUBSCRIPTIONS_QUERY_KEY, SUBSCRIPTION_PAYMENTS_QUERY_KEY, SUBSCRIPTION_PRODUCTS_QUERY_KEY, SUBSCRIPTION_PRODUCT_PRICES_QUERY_KEY, SUBSCRIPTION_PRODUCT_PRICE_QUERY_KEY, SUBSCRIPTION_PRODUCT_QUERY_KEY, SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_KEY, SUBSCRIPTION_PRODUCT_TIERS_QUERY_KEY, SUBSCRIPTION_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, type Schedule, type SearchField, SearchOrganization, SelectEventRegistrationPurchaseReservation, type SelectEventRegistrationPurchaseReservationParams, type Self, SelfLeaveOrganization, type SelfLeaveOrganizationParams, type Series, type SeriesCreateInputs, type SeriesUpdateInputs, type SingleQueryOptions, type SingleQueryParams, type SponsorshipLevelTranslation, type StreamInput, type StreamInputConfig, type StreamInputCreateInputs, type StreamInputDetails, type StreamInputOutput, type StreamInputOutputCreateInputs, type StreamInputOutputUpdateInputs, type StreamInputUpdateInputs, type StreamOutputCreateInputs, type Subscription, type SubscriptionCreateInputs, type SubscriptionPayment, type SubscriptionProduct, type SubscriptionProductCreateInputs, type SubscriptionProductPrice, type SubscriptionProductPriceCreateInputs, SubscriptionProductPriceInterval, SubscriptionProductPriceType, type SubscriptionProductPriceUpdateInputs, type SubscriptionProductUpdateInputs, SubscriptionStatus, type SubscriptionUpdateInputs, type SummaryData, type SupportTicket, type SupportTicketCreateInputs, type SupportTicketNote, SupportTicketType, type SupportTicketUpdateInputs, SwitchImage, type SwitchImageParams, THREADS_QUERY_KEY, THREAD_EVENTS_QUERY_KEY, THREAD_GROUPS_QUERY_KEY, THREAD_GROUP_QUERY_KEY, THREAD_MEMBERS_QUERY_KEY, THREAD_MEMBER_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_MESSAGE_REPLIES_QUERY_KEY, THREAD_MODERATORS_QUERY_KEY, THREAD_QUERY_KEY, TIERS_QUERY_KEY, TIER_ACCOUNTS_QUERY_KEY, TIER_QUERY_KEY, TIER_SUBSCRIBERS_QUERY_KEY, type TableChartSummaryData, type TeamCreateInputs, type TeamMember, type TeamUpdateInputs, type Thread, ThreadAccessLevel, type ThreadCreateInputs, type ThreadInvitation, ThreadInvitationStatus, type ThreadMember, ThreadMemberRole, type ThreadMessage, type ThreadMessageReaction, ThreadMessageType, type ThreadUpdateInputs, TicketEventAccessLevel, TicketVisibility, type Tier, type TierCreateInputs, type TierUpdateInputs, ToggleOrganizationPaymentIntegration, type ToggleOrganizationPaymentIntegrationParams, type Transfer, TransferEventRegistrationPurchase, type TransferEventRegistrationPurchaseParams, type TransferLog, TransformPrice, type TriggerCreateInputs, type TriggerUpdateInputs, UNAPPROVED_EVENTS_QUERY_KEY, UpdateAccount, UpdateAccountCognitoUserPassword, type UpdateAccountCognitoUserPasswordParams, type UpdateAccountParams, UpdateActivity, type UpdateActivityParams, UpdateAdvertisement, type UpdateAdvertisementParams, UpdateAnnouncement, type UpdateAnnouncementParams, UpdateAnnouncementSchedule, type UpdateAnnouncementScheduleParams, UpdateBenefit, type UpdateBenefitParams, UpdateBenefitTranslation, type UpdateBenefitTranslationParams, UpdateChannel, UpdateChannelContent, UpdateChannelContentGuest, type UpdateChannelContentGuestParams, UpdateChannelContentGuestTranslation, type UpdateChannelContentGuestTranslationParams, type UpdateChannelContentParams, UpdateChannelContentPublishSchedule, type UpdateChannelContentPublishScheduleParams, UpdateChannelContentTranslation, type UpdateChannelContentTranslationParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateChannelTranslation, type UpdateChannelTranslationParams, UpdateEvent, UpdateEventActivation, UpdateEventActivationCompletion, type UpdateEventActivationCompletionParams, type UpdateEventActivationParams, UpdateEventActivationTranslation, type UpdateEventActivationTranslationParams, UpdateEventAddOn, type UpdateEventAddOnParams, UpdateEventAddOnTranslation, type UpdateEventAddOnTranslationParams, UpdateEventCheckinCode, type UpdateEventCheckinCodeParams, UpdateEventCoupon, type UpdateEventCouponParams, UpdateEventEmail, type UpdateEventEmailParams, UpdateEventFaqSection, type UpdateEventFaqSectionParams, UpdateEventFaqSectionQuestion, type UpdateEventFaqSectionQuestionParams, UpdateEventFaqSectionQuestionTranslation, type UpdateEventFaqSectionQuestionTranslationParams, UpdateEventFaqSectionTranslation, type UpdateEventFaqSectionTranslationParams, UpdateEventPage, type UpdateEventPageParams, UpdateEventPageTranslation, type UpdateEventPageTranslationParams, type UpdateEventParams, UpdateEventQuestion, UpdateEventQuestionChoice, type UpdateEventQuestionChoiceParams, UpdateEventQuestionChoiceSubQuestion, type UpdateEventQuestionChoiceSubQuestionParams, UpdateEventQuestionChoiceTranslation, type UpdateEventQuestionChoiceTranslationParams, type UpdateEventQuestionParams, UpdateEventQuestionSearchValue, type UpdateEventQuestionSearchValueParams, UpdateEventQuestionTranslation, type UpdateEventQuestionTranslationParams, UpdateEventRegistration, UpdateEventRegistrationBypass, type UpdateEventRegistrationBypassParams, type UpdateEventRegistrationParams, UpdateEventRegistrationPurchase, type UpdateEventRegistrationPurchaseParams, UpdateEventRegistrationPurchaseResponse, type UpdateEventRegistrationPurchaseResponseParams, UpdateEventRegistrationPurchaseResponses, type UpdateEventRegistrationPurchaseResponsesParams, UpdateEventReservationSection, UpdateEventReservationSectionLocation, type UpdateEventReservationSectionLocationParams, UpdateEventReservationSectionLocationTranslation, type UpdateEventReservationSectionLocationTranslationParams, type UpdateEventReservationSectionParams, UpdateEventReservationSectionTranslation, type UpdateEventReservationSectionTranslationParams, UpdateEventSection, type UpdateEventSectionParams, UpdateEventSectionQuestion, type UpdateEventSectionQuestionParams, UpdateEventSectionTranslation, type UpdateEventSectionTranslationParams, UpdateEventSession, type UpdateEventSessionParams, UpdateEventSessionTranslation, type UpdateEventSessionTranslationParams, UpdateEventSpeaker, type UpdateEventSpeakerParams, UpdateEventSpeakerTranslation, type UpdateEventSpeakerTranslationParams, UpdateEventTicket, type UpdateEventTicketParams, UpdateEventTicketTranslation, type UpdateEventTicketTranslationParams, UpdateEventTrack, type UpdateEventTrackParams, UpdateEventTrackTranslation, type UpdateEventTrackTranslationParams, UpdateEventTranslation, type UpdateEventTranslationParams, UpdateEventZplTemplate, UpdateEventZplTemplateBadgeField, type UpdateEventZplTemplateBadgeFieldParams, type UpdateEventZplTemplateParams, UpdateFile, type UpdateFileParams, UpdateGroup, type UpdateGroupParams, UpdateGroupTranslation, type UpdateGroupTranslationParams, UpdateImage, type UpdateImageParams, UpdateInterest, type UpdateInterestParams, UpdateInvoice, UpdateInvoiceLineItem, type UpdateInvoiceLineItemParams, type UpdateInvoiceParams, UpdateLevel, type UpdateLevelParams, UpdateLevelTranslation, type UpdateLevelTranslationParams, UpdateOrganization, UpdateOrganizationIntegrations, type UpdateOrganizationIntegrationsParams, UpdateOrganizationMembership, type UpdateOrganizationMembershipParams, UpdateOrganizationModule, UpdateOrganizationModuleActions, type UpdateOrganizationModuleActionsParams, type UpdateOrganizationModulesParams, UpdateOrganizationPage, type UpdateOrganizationPageParams, UpdateOrganizationPageTranslation, type UpdateOrganizationPageTranslationParams, type UpdateOrganizationParams, UpdateOrganizationTeamMember, type UpdateOrganizationTeamMemberParams, UpdateOrganizationTrigger, type UpdateOrganizationTriggerParams, UpdateReport, type UpdateReportParams, UpdateSelf, type UpdateSelfParams, UpdateSeries, type UpdateSeriesParams, UpdateStream, UpdateStreamConfig, type UpdateStreamConfigParams, UpdateStreamInputOutput, type UpdateStreamInputOutputParams, type UpdateStreamParams, UpdateSubscription, type UpdateSubscriptionParams, UpdateSubscriptionProduct, type UpdateSubscriptionProductParams, UpdateSubscriptionProductPrice, type UpdateSubscriptionProductPriceParams, UpdateSupportTicket, type UpdateSupportTicketParams, UpdateThread, type UpdateThreadParams, UpdateTier, type UpdateTierParams, UpdateUserImage, type UpdateUserImageParams, UpdateVideo, type UpdateVideoParams, UploadFile, type UploadFileParams, type User, type UserCreateInputs, type UserImageUpdateInputs, UserRole, type UserUpdateInputs, VIDEOS_QUERY_KEY, VIDEO_QUERY_KEY, type Video, VideoSource, VideoStatus, type VideoUpdateInputs, isUUID, setFirstPageData, useAddAccountDelegate, useAddAccountFollower, useAddAccountFollowing, useAddAccountGroup, useAddAccountInterest, useAddAccountTier, useAddActivityInterest, useAddChannelSubscriber, useAddEventAddOnTicket, useAddEventAddOnTier, useAddEventBenefit, useAddEventCoHost, useAddEventPageImage, useAddEventQuestionChoiceSubQuestion, useAddEventRegistrationPurchaseAddOn, useAddEventReservationSectionTicket, useAddEventReservationSectionTier, useAddEventSectionAddOn, useAddEventSectionQuestion, useAddEventSectionTicket, useAddEventSectionTier, useAddEventSessionAccount, useAddEventSessionSpeaker, useAddEventSessionSponsor, useAddEventSessionTrack, useAddEventSpeakerSession, useAddEventSponsorAccount, useAddEventTicketAddOn, useAddEventTicketTier, useAddEventTrackSession, useAddEventTrackSponsor, useAddGroupEvent, useAddGroupInterest, useAddGroupMember, useAddGroupModerator, useAddGroupSponsor, useAddLevelAccount, useAddOrganizationUser, useAddSeriesEvent, useAddSubscriptionProductTier, useAddThreadMember, useAddTierAccount, useApplyEventRegistrationCoupon, useApproveEvent, useCancelAnnouncementSchedule, useCancelChannelContentPublishSchedule, useCancelEventRegistrationPurchaseTransfer, useCancelSubscription, useConfirmAccountCognitoUser, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateAccount, useCreateAdvertisement, useCreateAnnouncement, useCreateBenefit, useCreateBenefitTranslation, useCreateChannel, useCreateChannelContent, useCreateChannelContentGuest, useCreateChannelContentGuestTranslation, useCreateChannelContentTranslation, useCreateChannelTranslation, useCreateEvent, useCreateEventActivation, useCreateEventActivationCompletion, useCreateEventActivationTranslation, useCreateEventAddOn, useCreateEventAddOnTranslation, useCreateEventCoupon, useCreateEventFaqSection, useCreateEventFaqSectionQuestion, useCreateEventFaqSectionQuestionTranslation, useCreateEventFaqSectionTranslation, useCreateEventPage, useCreateEventPageTranslation, useCreateEventQuestion, useCreateEventQuestionChoice, useCreateEventQuestionChoiceTranslation, useCreateEventQuestionSearchValues, useCreateEventQuestionTranslation, useCreateEventRegistration, useCreateEventRegistrationBypass, useCreateEventRegistrationPurchase, useCreateEventReservationSection, useCreateEventReservationSectionLocation, useCreateEventReservationSectionLocationTranslation, useCreateEventReservationSectionTranslation, useCreateEventSection, useCreateEventSectionTranslation, useCreateEventSession, useCreateEventSessionTranslation, useCreateEventSpeaker, useCreateEventSpeakerTranslation, useCreateEventTicket, useCreateEventTicketTranslation, useCreateEventTrack, useCreateEventTrackTranslation, useCreateEventTranslation, useCreateGroup, useCreateGroupTranslation, useCreateImage, useCreateImport, useCreateInterest, useCreateInvoice, useCreateInvoiceLineItem, useCreateLevel, useCreateLevelTranslation, useCreateOrganizationPageTranslation, useCreateOrganizationPaymentIntegration, useCreateOrganizationTeamMember, useCreateReport, useCreateSeries, useCreateStreamInput, useCreateStreamInputOutput, useCreateSubscription, useCreateSubscriptionProduct, useCreateSubscriptionProductPrice, useCreateSupportTicket, useCreateSupportTicketNote, useCreateThread, useCreateTier, useDeleteAccount, useDeleteActivity, useDeleteAdvertisement, useDeleteBenefit, useDeleteBenefitTranslation, useDeleteChannel, useDeleteChannelContent, useDeleteChannelContentGuest, useDeleteChannelContentGuestTranslation, useDeleteChannelContentTranslation, useDeleteChannelTranslation, useDeleteEvent, useDeleteEventActivation, useDeleteEventActivationCompletion, useDeleteEventActivationTranslation, useDeleteEventAddOn, useDeleteEventAddOnTranslation, useDeleteEventCoupon, useDeleteEventFaqSection, useDeleteEventFaqSectionQuestion, useDeleteEventFaqSectionQuestionTranslation, useDeleteEventFaqSectionTranslation, useDeleteEventPage, useDeleteEventPageTranslation, useDeleteEventQuestion, useDeleteEventQuestionChoice, useDeleteEventQuestionChoiceTranslation, useDeleteEventQuestionSearchValue, useDeleteEventQuestionSearchValues, useDeleteEventQuestionTranslation, useDeleteEventRegistration, useDeleteEventRegistrationBypass, useDeleteEventRegistrationPurchase, useDeleteEventReservationSection, useDeleteEventReservationSectionLocation, useDeleteEventReservationSectionLocationTranslation, useDeleteEventReservationSectionTranslation, useDeleteEventSection, useDeleteEventSectionTranslation, useDeleteEventSession, useDeleteEventSessionTranslation, useDeleteEventSpeaker, useDeleteEventSpeakerTranslation, useDeleteEventTicket, useDeleteEventTicketTranslation, useDeleteEventTrack, useDeleteEventTrackTranslation, useDeleteEventTranslation, useDeleteFile, useDeleteGroup, useDeleteGroupTranslation, useDeleteImage, useDeleteInterest, useDeleteInvoice, useDeleteInvoiceLineItem, useDeleteLevel, useDeleteLevelTranslation, useDeleteManyImages, useDeleteManyVideos, useDeleteOrganizationPageTranslation, useDeleteOrganizationPaymentIntegration, useDeleteOrganizationTeamMember, useDeleteOrganizationUser, useDeleteReport, useDeleteSeries, useDeleteStreamInput, useDeleteStreamInputOutput, useDeleteSubscriptionProduct, useDeleteSupportTicket, useDeleteSupportTicketNote, useDeleteTier, useDeleteVideo, useGetAPILog, useGetAPILogs, useGetAcccountEmailReceipts, useGetAccount, useGetAccountActivities, useGetAccountCognitoUser, useGetAccountCognitoUsers, useGetAccountComments, useGetAccountDelegateOf, useGetAccountDelegates, useGetAccountEvents, useGetAccountFollowers, useGetAccountFollowing, useGetAccountGroups, useGetAccountInterests, useGetAccountLikes, useGetAccountRegistrations, useGetAccountReshares, useGetAccountTiers, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityInterests, useGetActivityLikes, useGetActivityReshares, useGetAdvertisement, useGetAdvertisementClicks, useGetAdvertisementViews, useGetAdvertisements, useGetAnnouncement, useGetAnnouncementEmailReceipts, useGetAnnouncements, useGetBenefit, useGetBenefitClicks, useGetBenefitTranslation, useGetBenefitTranslations, useGetBenefits, useGetChannel, useGetChannelActivities, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuest, useGetChannelContentGuestTranslation, useGetChannelContentGuestTranslations, useGetChannelContentGuests, useGetChannelContentLikes, useGetChannelContentTranslation, useGetChannelContentTranslations, useGetChannelContents, useGetChannelSubscriber, useGetChannelSubscribers, useGetChannelTranslation, useGetChannelTranslations, useGetChannels, useGetEmailReceipt, useGetEmailReceipts, useGetEvent, useGetEventAccountRegistration, useGetEventActivation, useGetEventActivationCompletions, useGetEventActivationTranslation, useGetEventActivationTranslations, useGetEventActivations, useGetEventActivities, useGetEventAddOn, useGetEventAddOnPurchases, useGetEventAddOnTickets, useGetEventAddOnTiers, useGetEventAddOnTranslation, useGetEventAddOnTranslations, useGetEventAddOns, useGetEventCoHosts, useGetEventCoupon, useGetEventCouponRegistrations, useGetEventCoupons, useGetEventEmail, useGetEventFaqSection, useGetEventFaqSectionQuestion, useGetEventFaqSectionQuestionTranslation, useGetEventFaqSectionQuestionTranslations, useGetEventFaqSectionQuestions, useGetEventFaqSectionTranslation, useGetEventFaqSectionTranslations, useGetEventFaqSections, useGetEventOnSite, useGetEventPage, useGetEventPageImages, useGetEventPageTranslation, useGetEventPageTranslations, useGetEventPages, useGetEventPurchase, useGetEventPurchases, useGetEventQuestion, useGetEventQuestionChoice, useGetEventQuestionChoiceSubQuestions, useGetEventQuestionChoiceTranslation, useGetEventQuestionChoiceTranslations, useGetEventQuestionChoices, useGetEventQuestionResponses, useGetEventQuestionSearchValue, useGetEventQuestionSearchValues, useGetEventQuestionSummaries, useGetEventQuestionSummary, useGetEventQuestionTranslation, useGetEventQuestionTranslations, useGetEventQuestions, useGetEventRegistration, useGetEventRegistrationBypass, useGetEventRegistrationBypassList, useGetEventRegistrationCounts, useGetEventRegistrationCoupons, useGetEventRegistrationPayment, useGetEventRegistrationPayments, useGetEventRegistrationPurchase, useGetEventRegistrationPurchaseAddOns, useGetEventRegistrationPurchaseResponse, useGetEventRegistrationPurchaseResponseChanges, useGetEventRegistrationPurchaseResponses, useGetEventRegistrationPurchaseSections, useGetEventRegistrationPurchases, useGetEventRegistrationTransferLogs, useGetEventRegistrations, useGetEventSection, useGetEventSectionAddOns, useGetEventSectionQuestions, useGetEventSectionTickets, useGetEventSectionTiers, useGetEventSectionTranslation, useGetEventSectionTranslations, useGetEventSections, useGetEventSession, useGetEventSessionAccounts, useGetEventSessionSpeakers, useGetEventSessionSponsors, useGetEventSessionTracks, useGetEventSessionTranslation, useGetEventSessionTranslations, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakerTranslation, useGetEventSpeakerTranslations, useGetEventSpeakers, useGetEventSponsorAccounts, useGetEventSponsors, useGetEventTicket, useGetEventTicketAddOns, useGetEventTicketCoupons, useGetEventTicketPurchases, useGetEventTicketTiers, useGetEventTicketTranslation, useGetEventTicketTranslations, useGetEventTickets, useGetEventTrack, useGetEventTrackSessions, useGetEventTrackSponsors, useGetEventTrackTranslation, useGetEventTrackTranslations, useGetEventTracks, useGetEventTranslation, useGetEventTranslations, useGetEventZplTemplateBadgeField, useGetEventZplTemplateBadgeFields, useGetEvents, useGetFeaturedEvents, useGetFile, useGetFiles, useGetGroup, useGetGroupActivities, useGetGroupEvents, useGetGroupInterests, useGetGroupInvitation, useGetGroupInvitations, useGetGroupMembers, useGetGroupModerators, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroupTranslation, useGetGroupTranslations, useGetGroups, useGetImage, useGetImageUsage, useGetImages, useGetImportItems, useGetImports, useGetInterest, useGetInterestAccounts, useGetInterestActivities, useGetInterestEvents, useGetInterestGroups, useGetInterests, useGetInvoice, useGetInvoiceLineItem, useGetInvoiceLineItems, useGetInvoicePayment, useGetInvoicePayments, useGetInvoices, useGetLevel, useGetLevelAccounts, useGetLevelTranslation, useGetLevelTranslations, useGetLevels, useGetOrganization, useGetOrganizationMembership, useGetOrganizationModules, useGetOrganizationPage, useGetOrganizationPageTranslation, useGetOrganizationPageTranslations, useGetOrganizationPaymentIntegration, useGetOrganizationPaymentIntegrations, useGetOrganizationPaymentLink, useGetOrganizationTeamMember, useGetOrganizationTeamMembers, useGetOrganizationTrigger, useGetOrganizationUsers, useGetPayment, useGetPayments, useGetPurchase, useGetPurchases, useGetReport, useGetReportParent, useGetReportParents, useGetReports, useGetReservationSection, useGetReservationSectionLocation, useGetReservationSectionLocationTranslation, useGetReservationSectionLocationTranslations, useGetReservationSectionLocations, useGetReservationSectionTickets, useGetReservationSectionTiers, useGetReservationSectionTranslation, useGetReservationSectionTranslations, useGetReservationSections, useGetSelf, useGetSelfOrgMembership, useGetSelfOrganizations, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetStreamInput, useGetStreamInputOutput, useGetStreamInputOutputs, useGetStreamInputs, useGetSubscription, useGetSubscriptionPayments, useGetSubscriptionProduct, useGetSubscriptionProductPrice, useGetSubscriptionProductPrices, useGetSubscriptionProductSubscriptions, useGetSubscriptionProductTiers, useGetSubscriptionProducts, useGetSubscriptions, useGetSupportTicket, useGetSupportTickets, useGetThread, useGetThreadEvents, useGetThreadGroups, useGetThreadMember, useGetThreadMembers, useGetThreadMessage, useGetThreadMessageReplies, useGetThreadMessages, useGetThreadModerators, useGetThreads, useGetThreadsGroup, useGetTier, useGetTierAccounts, useGetTierSubscribers, useGetTiers, useGetUnapprovedEvents, useGetVideo, useGetVideos, useImpersonateAccount, useRefundEventRegistrationPayment, useRemoveAccountDelegate, useRemoveAccountFollower, useRemoveAccountFollowing, useRemoveAccountGroup, useRemoveAccountInterest, useRemoveAccountTier, useRemoveActivityInterest, useRemoveChannelSubscriber, useRemoveEventAddOnTicket, useRemoveEventAddOnTier, useRemoveEventBenefit, useRemoveEventCoHost, useRemoveEventPageImage, useRemoveEventQuestionChoiceSubQuestion, useRemoveEventRegistrationCoupon, useRemoveEventRegistrationPurchaseAddOn, useRemoveEventReservationSectionTicket, useRemoveEventReservationSectionTier, useRemoveEventSectionAddOn, useRemoveEventSectionQuestion, useRemoveEventSectionTicket, useRemoveEventSectionTier, useRemoveEventSessionAccount, useRemoveEventSessionSpeaker, useRemoveEventSessionSponsor, useRemoveEventSessionTrack, useRemoveEventSpeakerSession, useRemoveEventSponsorAccount, useRemoveEventTicketAddOn, useRemoveEventTicketTier, useRemoveEventTrackSession, useRemoveEventTrackSponsor, useRemoveGroupEvent, useRemoveGroupInterest, useRemoveGroupMember, useRemoveGroupModerator, useRemoveGroupSponsor, useRemoveLevelAccount, useRemoveSeriesEvent, useRemoveSubscriptionProductTier, useRemoveThreadMember, useRemoveThreadModerator, useRemoveTierAccount, useReorderEventFaqSectionQuestions, useReorderEventQuestionChoices, useReorderEventSectionQuestions, useResendEventRegistrationConfirmationEmail, useSearchOrganization, useSelectEventRegistrationPurchaseReservation, useSelfLeaveOrganization, useSwitchImage, useToggleOrganizationPaymentIntegration, useTransferEventRegistrationPurchase, useUpdateAccount, useUpdateAccountCognitoUserPassword, useUpdateActivity, useUpdateAdvertisement, useUpdateAnnouncement, useUpdateAnnouncementSchedule, useUpdateBenefit, useUpdateBenefitTranslation, useUpdateChannel, useUpdateChannelContent, useUpdateChannelContentGuest, useUpdateChannelContentGuestTranslation, useUpdateChannelContentPublishSchedule, useUpdateChannelContentTranslation, useUpdateChannelSubscriber, useUpdateChannelTranslation, useUpdateEvent, useUpdateEventActivation, useUpdateEventActivationCompletion, useUpdateEventActivationTranslation, useUpdateEventAddOn, useUpdateEventAddOnTranslation, useUpdateEventCheckinCode, useUpdateEventCoupon, useUpdateEventEmail, useUpdateEventFaqSection, useUpdateEventFaqSectionQuestion, useUpdateEventFaqSectionQuestionTranslation, useUpdateEventFaqSectionTranslation, useUpdateEventPage, useUpdateEventPageTranslation, useUpdateEventQuestion, useUpdateEventQuestionChoice, useUpdateEventQuestionChoiceSubQuestion, useUpdateEventQuestionChoiceTranslation, useUpdateEventQuestionSearchValue, useUpdateEventQuestionTranslation, useUpdateEventRegistration, useUpdateEventRegistrationBypass, useUpdateEventRegistrationPurchase, useUpdateEventRegistrationPurchaseResponse, useUpdateEventRegistrationPurchaseResponses, useUpdateEventReservationSection, useUpdateEventReservationSectionLocation, useUpdateEventReservationSectionLocationTranslation, useUpdateEventReservationSectionTranslation, useUpdateEventSection, useUpdateEventSectionQuestion, useUpdateEventSectionTranslation, useUpdateEventSession, useUpdateEventSessionTranslation, useUpdateEventSpeaker, useUpdateEventSpeakerTranslation, useUpdateEventTicket, useUpdateEventTicketTranslation, useUpdateEventTrack, useUpdateEventTrackTranslation, useUpdateEventTranslation, useUpdateEventZplTemplate, useUpdateEventZplTemplateBadgeField, useUpdateFile, useUpdateGroup, useUpdateGroupTranslation, useUpdateImage, useUpdateInterest, useUpdateInvoice, useUpdateInvoiceLineItem, useUpdateLevel, useUpdateLevelTranslation, useUpdateOrganization, useUpdateOrganizationIntegrations, useUpdateOrganizationMembership, useUpdateOrganizationModuleActions, useUpdateOrganizationModules, useUpdateOrganizationPage, useUpdateOrganizationPageTranslation, useUpdateOrganizationTeamMember, useUpdateOrganizationTrigger, useUpdateReport, useUpdateSelf, useUpdateSeries, useUpdateStreamConfig, useUpdateStreamInput, useUpdateStreamInputOutput, useUpdateSubscription, useUpdateSubscriptionProduct, useUpdateSubscriptionProductPrice, useUpdateSupportTicket, useUpdateThread, useUpdateTier, useUpdateUserImage, useUpdateVideo, useUploadFile };
|