@connectedxm/admin 0.0.18 → 0.0.19
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/connectedxm-admin-v0.0.18-beta-4.tgz +0 -0
- package/dist/index.d.mts +715 -67
- package/dist/index.d.ts +715 -67
- package/dist/index.js +1240 -188
- package/dist/index.mjs +1162 -183
- 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> {
|
|
@@ -14,11 +14,6 @@ interface ConnectedXMResponse<TData> {
|
|
|
14
14
|
declare enum Currency {
|
|
15
15
|
USD = "USD"
|
|
16
16
|
}
|
|
17
|
-
declare enum ContentType {
|
|
18
|
-
article = "article",
|
|
19
|
-
podcast = "podcast",
|
|
20
|
-
video = "video"
|
|
21
|
-
}
|
|
22
17
|
declare enum ContentGuestType {
|
|
23
18
|
guest = "guest",
|
|
24
19
|
host = "host",
|
|
@@ -296,17 +291,9 @@ interface BaseActivity {
|
|
|
296
291
|
readMore: boolean;
|
|
297
292
|
linkPreview: BaseLinkPreview;
|
|
298
293
|
giphyId: string | null;
|
|
299
|
-
imageId: string;
|
|
300
|
-
image: BaseImage;
|
|
301
|
-
accountId: string;
|
|
294
|
+
imageId: string | null;
|
|
295
|
+
image: BaseImage | null;
|
|
302
296
|
account: BaseAccount;
|
|
303
|
-
groupId: string | null;
|
|
304
|
-
group: BaseGroup | null;
|
|
305
|
-
eventId: string | null;
|
|
306
|
-
event: BaseEvent | null;
|
|
307
|
-
contentId: string | null;
|
|
308
|
-
content: BaseChannelContent | null;
|
|
309
|
-
interests: BaseInterest[];
|
|
310
297
|
createdAt: string;
|
|
311
298
|
updatedAt: string;
|
|
312
299
|
_count: {
|
|
@@ -317,6 +304,12 @@ interface BaseActivity {
|
|
|
317
304
|
};
|
|
318
305
|
}
|
|
319
306
|
interface Activity extends BaseActivity {
|
|
307
|
+
video: BaseVideo | null;
|
|
308
|
+
group: BaseGroup | null;
|
|
309
|
+
event: BaseEvent | null;
|
|
310
|
+
content: BaseChannelContent | null;
|
|
311
|
+
interests: BaseInterest[];
|
|
312
|
+
videoId: string | null;
|
|
320
313
|
html: string | null;
|
|
321
314
|
text: string | null;
|
|
322
315
|
messageExtended: boolean;
|
|
@@ -460,8 +453,8 @@ interface BaseChannelContent {
|
|
|
460
453
|
title: string | null;
|
|
461
454
|
description: string | null;
|
|
462
455
|
duration: string | null;
|
|
463
|
-
|
|
464
|
-
|
|
456
|
+
email: boolean;
|
|
457
|
+
push: boolean;
|
|
465
458
|
}
|
|
466
459
|
interface ChannelContent extends BaseChannelContent {
|
|
467
460
|
body: string | null;
|
|
@@ -475,6 +468,21 @@ interface ChannelContent extends BaseChannelContent {
|
|
|
475
468
|
youtubeUrl: string | null;
|
|
476
469
|
authors: BaseAccount[];
|
|
477
470
|
mentions: BaseAccount[];
|
|
471
|
+
publishSchedule: BaseSchedule | null;
|
|
472
|
+
createdAt: string;
|
|
473
|
+
updatedAt: string;
|
|
474
|
+
_count: {
|
|
475
|
+
likes: number;
|
|
476
|
+
activities: number;
|
|
477
|
+
};
|
|
478
|
+
}
|
|
479
|
+
interface BaseChannelContentLike {
|
|
480
|
+
accountId: string;
|
|
481
|
+
channelId: string;
|
|
482
|
+
contentId: string;
|
|
483
|
+
}
|
|
484
|
+
interface ChannelContentLike extends BaseChannelContentLike {
|
|
485
|
+
account: BaseAccount;
|
|
478
486
|
createdAt: string;
|
|
479
487
|
updatedAt: string;
|
|
480
488
|
}
|
|
@@ -497,6 +505,9 @@ interface BaseChannel {
|
|
|
497
505
|
visible: boolean;
|
|
498
506
|
imageId: string;
|
|
499
507
|
image: BaseImage;
|
|
508
|
+
bannerId: string | null;
|
|
509
|
+
banner: BaseImage | null;
|
|
510
|
+
subscriberCount: number;
|
|
500
511
|
}
|
|
501
512
|
interface Channel extends BaseChannel {
|
|
502
513
|
externalUrl: string | null;
|
|
@@ -508,8 +519,7 @@ interface Channel extends BaseChannel {
|
|
|
508
519
|
updatedAt: string;
|
|
509
520
|
hosts: BaseAccount[];
|
|
510
521
|
_count: {
|
|
511
|
-
|
|
512
|
-
contents: number;
|
|
522
|
+
contents: true;
|
|
513
523
|
};
|
|
514
524
|
}
|
|
515
525
|
interface BaseChannelSubscriber {
|
|
@@ -1371,6 +1381,9 @@ interface RegistrationQuestion extends BaseRegistrationQuestion {
|
|
|
1371
1381
|
response?: string;
|
|
1372
1382
|
createdAt: string;
|
|
1373
1383
|
updatedAt: string;
|
|
1384
|
+
_count: {
|
|
1385
|
+
responses: number;
|
|
1386
|
+
};
|
|
1374
1387
|
}
|
|
1375
1388
|
interface RegistrationQuestionTranslation {
|
|
1376
1389
|
id: number;
|
|
@@ -1975,36 +1988,176 @@ interface Video extends BaseVideo {
|
|
|
1975
1988
|
}
|
|
1976
1989
|
interface BaseChannelContentGuest {
|
|
1977
1990
|
id: string;
|
|
1978
|
-
type: keyof typeof ContentGuestType;
|
|
1979
1991
|
slug: string;
|
|
1992
|
+
contentId: string;
|
|
1993
|
+
accountId: string | null;
|
|
1994
|
+
account: BaseAccount | null;
|
|
1995
|
+
type: ContentGuestType;
|
|
1980
1996
|
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;
|
|
1997
|
+
title: string | null;
|
|
1998
|
+
bio: string | null;
|
|
1999
|
+
company: string | null;
|
|
2000
|
+
companyLink: string | null;
|
|
2001
|
+
companyBio: string | null;
|
|
2002
|
+
imageId: string | null;
|
|
2003
|
+
image: BaseImage | null;
|
|
2004
|
+
website: string | null;
|
|
2005
|
+
facebook: string | null;
|
|
2006
|
+
twitter: string | null;
|
|
2007
|
+
instagram: string | null;
|
|
2008
|
+
linkedIn: string | null;
|
|
2009
|
+
tikTok: string | null;
|
|
2010
|
+
youtube: string | null;
|
|
2011
|
+
discord: string | null;
|
|
2012
|
+
createdAt: string;
|
|
2013
|
+
updatedAt: string;
|
|
2014
|
+
}
|
|
2015
|
+
interface ChannelContentGuest extends BaseChannelContentGuest {
|
|
2016
|
+
}
|
|
2017
|
+
interface ChannelContentGuestTranslation {
|
|
2018
|
+
id: number;
|
|
2019
|
+
locale: string;
|
|
2020
|
+
title: string | null;
|
|
2021
|
+
bio: string | null;
|
|
2022
|
+
companyBio: string | null;
|
|
2023
|
+
createdAt: string;
|
|
2024
|
+
updatedAt: string;
|
|
1996
2025
|
}
|
|
1997
2026
|
interface BaseFile {
|
|
1998
2027
|
id: number;
|
|
1999
2028
|
name: string;
|
|
2000
2029
|
r2Path: string;
|
|
2001
2030
|
source: FileSource;
|
|
2031
|
+
kilobytes: number;
|
|
2002
2032
|
url?: string;
|
|
2003
2033
|
createdAt: string;
|
|
2004
2034
|
updatedAt: string;
|
|
2005
2035
|
}
|
|
2006
2036
|
interface File extends BaseFile {
|
|
2007
2037
|
}
|
|
2038
|
+
declare enum ThreadInvitationStatus {
|
|
2039
|
+
invited = "invited",
|
|
2040
|
+
rejected = "rejected"
|
|
2041
|
+
}
|
|
2042
|
+
interface ThreadInvitation {
|
|
2043
|
+
id: string;
|
|
2044
|
+
organizationId: string;
|
|
2045
|
+
threadId: string;
|
|
2046
|
+
thread: BaseThread;
|
|
2047
|
+
status: ThreadInvitationStatus;
|
|
2048
|
+
role: ThreadMemberRole;
|
|
2049
|
+
invitedById: string;
|
|
2050
|
+
invitedBy: BaseAccount;
|
|
2051
|
+
invitedId: string;
|
|
2052
|
+
invited: BaseAccount;
|
|
2053
|
+
createdAt: string;
|
|
2054
|
+
updatedAt: string;
|
|
2055
|
+
}
|
|
2056
|
+
interface BaseThread {
|
|
2057
|
+
id: string;
|
|
2058
|
+
name: string;
|
|
2059
|
+
description: string | null;
|
|
2060
|
+
imageId: string | null;
|
|
2061
|
+
image: BaseImage | null;
|
|
2062
|
+
featured: boolean;
|
|
2063
|
+
visible: boolean;
|
|
2064
|
+
access: ThreadAccessLevel;
|
|
2065
|
+
members: ThreadMember[];
|
|
2066
|
+
eventId: string | null;
|
|
2067
|
+
groupId: string | null;
|
|
2068
|
+
createdAt: string;
|
|
2069
|
+
}
|
|
2070
|
+
declare enum ThreadMemberRole {
|
|
2071
|
+
member = "member",
|
|
2072
|
+
moderator = "moderator"
|
|
2073
|
+
}
|
|
2074
|
+
declare enum ThreadMessageType {
|
|
2075
|
+
user = "user",
|
|
2076
|
+
bot = "bot",
|
|
2077
|
+
system = "system"
|
|
2078
|
+
}
|
|
2079
|
+
interface ThreadMessageReaction {
|
|
2080
|
+
id: string;
|
|
2081
|
+
organizationId: string;
|
|
2082
|
+
threadId: string;
|
|
2083
|
+
messageId: string;
|
|
2084
|
+
message: BaseThreadMessage;
|
|
2085
|
+
accountId: string;
|
|
2086
|
+
account: BaseAccount;
|
|
2087
|
+
emojiName: string;
|
|
2088
|
+
createdAt: string;
|
|
2089
|
+
updatedAt: string;
|
|
2090
|
+
}
|
|
2091
|
+
interface BaseThreadMessage {
|
|
2092
|
+
id: string;
|
|
2093
|
+
organizationId: string;
|
|
2094
|
+
threadId: string;
|
|
2095
|
+
body: string;
|
|
2096
|
+
createdAt: string;
|
|
2097
|
+
replyToId: string | null;
|
|
2098
|
+
reactions: ThreadMessageReaction[];
|
|
2099
|
+
account: BaseAccount;
|
|
2100
|
+
}
|
|
2101
|
+
interface ThreadMessage {
|
|
2102
|
+
id: string;
|
|
2103
|
+
organizationId: string;
|
|
2104
|
+
threadId: string;
|
|
2105
|
+
thread: BaseThread;
|
|
2106
|
+
accountId: string;
|
|
2107
|
+
account: BaseAccount;
|
|
2108
|
+
type: ThreadMessageType;
|
|
2109
|
+
body: string;
|
|
2110
|
+
reactions: ThreadMessageReaction[];
|
|
2111
|
+
replyToId: string | null;
|
|
2112
|
+
replyTo: BaseThreadMessage | null;
|
|
2113
|
+
replies: BaseThreadMessage[];
|
|
2114
|
+
mentions: BaseAccount[];
|
|
2115
|
+
files: BaseFile[];
|
|
2116
|
+
images: BaseImage[];
|
|
2117
|
+
videos: BaseVideo[];
|
|
2118
|
+
editedAt: string | null;
|
|
2119
|
+
sentAt: string;
|
|
2120
|
+
createdAt: string;
|
|
2121
|
+
updatedAt: string;
|
|
2122
|
+
}
|
|
2123
|
+
interface BaseThreadMember {
|
|
2124
|
+
}
|
|
2125
|
+
interface ThreadMember extends BaseThreadMember {
|
|
2126
|
+
id: string;
|
|
2127
|
+
organizationId: string;
|
|
2128
|
+
threadId: string;
|
|
2129
|
+
thread: BaseThread;
|
|
2130
|
+
accountId: string;
|
|
2131
|
+
account: BaseAccount;
|
|
2132
|
+
role: ThreadMemberRole;
|
|
2133
|
+
accepted: boolean;
|
|
2134
|
+
lastReadAt: string | null;
|
|
2135
|
+
notifications: boolean;
|
|
2136
|
+
createdAt: string;
|
|
2137
|
+
updatedAt: string;
|
|
2138
|
+
}
|
|
2139
|
+
interface Thread extends BaseThread {
|
|
2140
|
+
organizationId: string;
|
|
2141
|
+
organization: BaseOrganization;
|
|
2142
|
+
featured: boolean;
|
|
2143
|
+
visible: boolean;
|
|
2144
|
+
access: ThreadAccessLevel;
|
|
2145
|
+
id: string;
|
|
2146
|
+
name: string;
|
|
2147
|
+
description: string | null;
|
|
2148
|
+
lastMessageAt: string | null;
|
|
2149
|
+
groupId: string | null;
|
|
2150
|
+
group: BaseGroup | null;
|
|
2151
|
+
eventId: string | null;
|
|
2152
|
+
event: BaseEvent | null;
|
|
2153
|
+
members: ThreadMember[];
|
|
2154
|
+
messages: ThreadMessage[];
|
|
2155
|
+
invitations: ThreadInvitation[];
|
|
2156
|
+
image: BaseImage | null;
|
|
2157
|
+
imageId: string | null;
|
|
2158
|
+
createdAt: string;
|
|
2159
|
+
updatedAt: string;
|
|
2160
|
+
}
|
|
2008
2161
|
interface PaypalActivationFormParams {
|
|
2009
2162
|
clientId: string;
|
|
2010
2163
|
clientSecret: string;
|
|
@@ -2219,6 +2372,7 @@ interface ChannelCollectionUpdateInputs {
|
|
|
2219
2372
|
interface ChannelCreateInputs {
|
|
2220
2373
|
name: string;
|
|
2221
2374
|
imageId: string;
|
|
2375
|
+
bannerId?: string | null;
|
|
2222
2376
|
slug?: string | null;
|
|
2223
2377
|
featured?: boolean | null;
|
|
2224
2378
|
description?: string | null;
|
|
@@ -2242,6 +2396,7 @@ interface ChannelTranslationUpdateInputs {
|
|
|
2242
2396
|
interface ChannelUpdateInputs {
|
|
2243
2397
|
name?: string | null;
|
|
2244
2398
|
imageId?: string | null;
|
|
2399
|
+
bannerId?: string | null;
|
|
2245
2400
|
slug?: string | null;
|
|
2246
2401
|
featured?: boolean | null;
|
|
2247
2402
|
description?: string | null;
|
|
@@ -2256,7 +2411,6 @@ interface ChannelUpdateInputs {
|
|
|
2256
2411
|
}
|
|
2257
2412
|
interface ChannelContentCreateInputs {
|
|
2258
2413
|
title: string;
|
|
2259
|
-
type: keyof typeof ContentType;
|
|
2260
2414
|
published?: string | null;
|
|
2261
2415
|
channelId?: string | null;
|
|
2262
2416
|
featured?: boolean | null;
|
|
@@ -2266,8 +2420,9 @@ interface ChannelContentCreateInputs {
|
|
|
2266
2420
|
duration?: string | null;
|
|
2267
2421
|
body?: string | null;
|
|
2268
2422
|
imageUrl?: string | null;
|
|
2269
|
-
|
|
2270
|
-
|
|
2423
|
+
imageId?: string | null;
|
|
2424
|
+
audioId?: string | null;
|
|
2425
|
+
videoId?: string | null;
|
|
2271
2426
|
externalUrl?: string | null;
|
|
2272
2427
|
appleUrl?: string | null;
|
|
2273
2428
|
spotifyUrl?: string | null;
|
|
@@ -2276,7 +2431,7 @@ interface ChannelContentCreateInputs {
|
|
|
2276
2431
|
}
|
|
2277
2432
|
interface ChannelContentGuestCreateInputs {
|
|
2278
2433
|
name: string;
|
|
2279
|
-
type
|
|
2434
|
+
type: keyof typeof ContentGuestType | null;
|
|
2280
2435
|
slug?: string | null;
|
|
2281
2436
|
title?: string | null;
|
|
2282
2437
|
bio?: string | null;
|
|
@@ -2325,7 +2480,6 @@ interface ChannelContentTranslationUpdateInputs {
|
|
|
2325
2480
|
body?: string | null;
|
|
2326
2481
|
}
|
|
2327
2482
|
interface ChannelContentUpdateInputs {
|
|
2328
|
-
type?: keyof typeof ContentType | null;
|
|
2329
2483
|
published?: string | null;
|
|
2330
2484
|
channelId?: string | null;
|
|
2331
2485
|
featured?: boolean | null;
|
|
@@ -2336,13 +2490,16 @@ interface ChannelContentUpdateInputs {
|
|
|
2336
2490
|
duration?: string | null;
|
|
2337
2491
|
body?: string | null;
|
|
2338
2492
|
imageUrl?: string | null;
|
|
2339
|
-
|
|
2340
|
-
|
|
2493
|
+
imageId?: string | null;
|
|
2494
|
+
audioId?: number | null;
|
|
2495
|
+
videoId?: string | null;
|
|
2341
2496
|
externalUrl?: string | null;
|
|
2342
2497
|
appleUrl?: string | null;
|
|
2343
2498
|
spotifyUrl?: string | null;
|
|
2344
2499
|
googleUrl?: string | null;
|
|
2345
2500
|
youtubeUrl?: string | null;
|
|
2501
|
+
email?: boolean;
|
|
2502
|
+
push?: boolean;
|
|
2346
2503
|
}
|
|
2347
2504
|
interface EventActivationCreateInputs {
|
|
2348
2505
|
name: string;
|
|
@@ -2355,6 +2512,8 @@ interface EventActivationCreateInputs {
|
|
|
2355
2512
|
startAfter?: string | null;
|
|
2356
2513
|
protected?: boolean | null;
|
|
2357
2514
|
protectionCode?: number | string | null;
|
|
2515
|
+
email?: boolean;
|
|
2516
|
+
push?: boolean;
|
|
2358
2517
|
}
|
|
2359
2518
|
interface EventActivationTranslationUpdateInputs {
|
|
2360
2519
|
name?: string | null;
|
|
@@ -3201,6 +3360,9 @@ interface ThreadCreateInputs {
|
|
|
3201
3360
|
visible?: boolean | null;
|
|
3202
3361
|
groupId?: string | null;
|
|
3203
3362
|
eventId?: string | null;
|
|
3363
|
+
imageId?: string | null;
|
|
3364
|
+
firstMessage?: string | null;
|
|
3365
|
+
accountIds?: string | null;
|
|
3204
3366
|
}
|
|
3205
3367
|
interface ThreadUpdateInputs {
|
|
3206
3368
|
name?: string | null;
|
|
@@ -3210,6 +3372,9 @@ interface ThreadUpdateInputs {
|
|
|
3210
3372
|
access?: keyof typeof ThreadAccessLevel | null;
|
|
3211
3373
|
groupId?: string | null;
|
|
3212
3374
|
eventId?: string | null;
|
|
3375
|
+
imageId?: string | null;
|
|
3376
|
+
firstMessage?: string | null;
|
|
3377
|
+
accountIds?: string | null;
|
|
3213
3378
|
}
|
|
3214
3379
|
interface EventTicketCreateInputs {
|
|
3215
3380
|
name: string;
|
|
@@ -4376,6 +4541,59 @@ declare const GetChannelTranslations: ({ pageParam, pageSize, orderBy, search, c
|
|
|
4376
4541
|
*/
|
|
4377
4542
|
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
4543
|
|
|
4544
|
+
/**
|
|
4545
|
+
* @category Keys
|
|
4546
|
+
* @group Channels
|
|
4547
|
+
*/
|
|
4548
|
+
declare const CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_KEY: (channelId: string, contentId: string, guestId: string) => string[];
|
|
4549
|
+
/**
|
|
4550
|
+
* @category Setters
|
|
4551
|
+
* @group Channels
|
|
4552
|
+
*/
|
|
4553
|
+
declare const SET_CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [channelId: string, contentId: string, guestId: string], response: Awaited<ReturnType<typeof GetChannelContentGuestTranslations>>) => void;
|
|
4554
|
+
interface GetChannelContentGuestTranslationsProps extends InfiniteQueryParams {
|
|
4555
|
+
channelId: string;
|
|
4556
|
+
contentId: string;
|
|
4557
|
+
guestId: string;
|
|
4558
|
+
}
|
|
4559
|
+
/**
|
|
4560
|
+
* @category Queries
|
|
4561
|
+
* @group Channels
|
|
4562
|
+
*/
|
|
4563
|
+
declare const GetChannelContentGuestTranslations: ({ channelId, contentId, guestId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetChannelContentGuestTranslationsProps) => Promise<ConnectedXMResponse<ChannelContentGuestTranslation[]>>;
|
|
4564
|
+
/**
|
|
4565
|
+
* @category Hooks
|
|
4566
|
+
* @group Channels
|
|
4567
|
+
*/
|
|
4568
|
+
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>>;
|
|
4569
|
+
|
|
4570
|
+
/**
|
|
4571
|
+
* @category Keys
|
|
4572
|
+
* @group Channels
|
|
4573
|
+
*/
|
|
4574
|
+
declare const CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_KEY: (channelId: string, contentId: string, guestId: string, locale: string) => string[];
|
|
4575
|
+
/**
|
|
4576
|
+
* @category Setters
|
|
4577
|
+
* @group Channels
|
|
4578
|
+
*/
|
|
4579
|
+
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;
|
|
4580
|
+
interface GetChannelContentGuestTranslationProps extends SingleQueryParams {
|
|
4581
|
+
channelId: string;
|
|
4582
|
+
contentId: string;
|
|
4583
|
+
guestId: string;
|
|
4584
|
+
locale: string;
|
|
4585
|
+
}
|
|
4586
|
+
/**
|
|
4587
|
+
* @category Queries
|
|
4588
|
+
* @group Channels
|
|
4589
|
+
*/
|
|
4590
|
+
declare const GetChannelContentGuestTranslation: ({ channelId, contentId, guestId, locale, adminApiParams, }: GetChannelContentGuestTranslationProps) => Promise<ConnectedXMResponse<ChannelContentGuestTranslation>>;
|
|
4591
|
+
/**
|
|
4592
|
+
* @category Hooks
|
|
4593
|
+
* @group Channels
|
|
4594
|
+
*/
|
|
4595
|
+
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>>;
|
|
4596
|
+
|
|
4379
4597
|
/**
|
|
4380
4598
|
* @category Keys
|
|
4381
4599
|
* @group Channels
|
|
@@ -4478,12 +4696,12 @@ declare const useGetChannelContentActivities: (channelId?: string, contentId?: s
|
|
|
4478
4696
|
* @category Keys
|
|
4479
4697
|
* @group Channels
|
|
4480
4698
|
*/
|
|
4481
|
-
declare const CHANNEL_CONTENT_GUEST_QUERY_KEY: (channelId: string, contentId: string) => string[];
|
|
4699
|
+
declare const CHANNEL_CONTENT_GUEST_QUERY_KEY: (channelId: string, contentId: string, guestId: string) => string[];
|
|
4482
4700
|
/**
|
|
4483
4701
|
* @category Setters
|
|
4484
4702
|
* @group Channels
|
|
4485
4703
|
*/
|
|
4486
|
-
declare const SET_CHANNEL_CONTENT_GUEST_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string], response: Awaited<ReturnType<typeof GetChannelContentGuest>>) => void;
|
|
4704
|
+
declare const SET_CHANNEL_CONTENT_GUEST_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string, guestId: string], response: Awaited<ReturnType<typeof GetChannelContentGuest>>) => void;
|
|
4487
4705
|
interface GetChannelContentGuestsProps$1 extends SingleQueryParams {
|
|
4488
4706
|
channelId: string;
|
|
4489
4707
|
contentId: string;
|
|
@@ -4494,12 +4712,12 @@ interface GetChannelContentGuestsProps$1 extends SingleQueryParams {
|
|
|
4494
4712
|
* @category Queries
|
|
4495
4713
|
* @group Channels
|
|
4496
4714
|
*/
|
|
4497
|
-
declare const GetChannelContentGuest: ({ channelId, contentId, guestId, adminApiParams, }: GetChannelContentGuestsProps$1) => Promise<ConnectedXMResponse<
|
|
4715
|
+
declare const GetChannelContentGuest: ({ channelId, contentId, guestId, adminApiParams, }: GetChannelContentGuestsProps$1) => Promise<ConnectedXMResponse<ChannelContentGuest>>;
|
|
4498
4716
|
/**
|
|
4499
4717
|
* @category Hooks
|
|
4500
4718
|
* @group Channels
|
|
4501
4719
|
*/
|
|
4502
|
-
declare const useGetChannelContentGuest: (channelId?: string, contentId?: string, guestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentGuest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<
|
|
4720
|
+
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
4721
|
|
|
4504
4722
|
/**
|
|
4505
4723
|
* @category Keys
|
|
@@ -4520,12 +4738,12 @@ interface GetChannelContentGuestsProps extends InfiniteQueryParams {
|
|
|
4520
4738
|
* @category Queries
|
|
4521
4739
|
* @group Channels
|
|
4522
4740
|
*/
|
|
4523
|
-
declare const GetChannelContentGuests: ({ channelId, contentId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetChannelContentGuestsProps) => Promise<ConnectedXMResponse<
|
|
4741
|
+
declare const GetChannelContentGuests: ({ channelId, contentId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetChannelContentGuestsProps) => Promise<ConnectedXMResponse<ChannelContentGuest[]>>;
|
|
4524
4742
|
/**
|
|
4525
4743
|
* @category Hooks
|
|
4526
4744
|
* @group Channels
|
|
4527
4745
|
*/
|
|
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<
|
|
4746
|
+
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
4747
|
|
|
4530
4748
|
/**
|
|
4531
4749
|
* @category Keys
|
|
@@ -4625,6 +4843,31 @@ declare const GetChannelSubscribers: ({ pageParam, pageSize, orderBy, search, ch
|
|
|
4625
4843
|
*/
|
|
4626
4844
|
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
4845
|
|
|
4846
|
+
/**
|
|
4847
|
+
* @category Keys
|
|
4848
|
+
* @group Channels
|
|
4849
|
+
*/
|
|
4850
|
+
declare const CHANNEL_CONTENT_LIKES_QUERY_KEY: (channelId: string, contentId: string) => string[];
|
|
4851
|
+
/**
|
|
4852
|
+
* @category Setters
|
|
4853
|
+
* @group Channels
|
|
4854
|
+
*/
|
|
4855
|
+
declare const SET_CHANNEL_CONTENT_LIKES_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string], response: Awaited<ReturnType<typeof GetChannelContentLikes>>) => void;
|
|
4856
|
+
interface GetContentLikesProps extends InfiniteQueryParams {
|
|
4857
|
+
channelId: string;
|
|
4858
|
+
contentId: string;
|
|
4859
|
+
}
|
|
4860
|
+
/**
|
|
4861
|
+
* @category Queries
|
|
4862
|
+
* @group Channels
|
|
4863
|
+
*/
|
|
4864
|
+
declare const GetChannelContentLikes: ({ channelId, contentId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetContentLikesProps) => Promise<ConnectedXMResponse<ChannelContentLike[]>>;
|
|
4865
|
+
/**
|
|
4866
|
+
* @category Hooks
|
|
4867
|
+
* @group Channels
|
|
4868
|
+
*/
|
|
4869
|
+
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>>;
|
|
4870
|
+
|
|
4628
4871
|
/**
|
|
4629
4872
|
* @category Key
|
|
4630
4873
|
* @group Emails
|
|
@@ -7622,20 +7865,21 @@ declare const useGetEventPurchase: (eventId?: string, purchaseId?: string, optio
|
|
|
7622
7865
|
* @category Keys
|
|
7623
7866
|
* @group Events
|
|
7624
7867
|
*/
|
|
7625
|
-
declare const EVENT_PURCHASES_QUERY_KEY: (eventId: string) => string[];
|
|
7868
|
+
declare const EVENT_PURCHASES_QUERY_KEY: (eventId: string, checkedIn?: boolean) => string[];
|
|
7626
7869
|
interface GetEventPurchasesProps extends InfiniteQueryParams {
|
|
7627
7870
|
eventId: string;
|
|
7871
|
+
checkedIn?: boolean;
|
|
7628
7872
|
}
|
|
7629
7873
|
/**
|
|
7630
7874
|
* @category Queries
|
|
7631
7875
|
* @group Events
|
|
7632
7876
|
*/
|
|
7633
|
-
declare const GetEventPurchases: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventPurchasesProps) => Promise<ConnectedXMResponse<Purchase[]>>;
|
|
7877
|
+
declare const GetEventPurchases: ({ eventId, checkedIn, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventPurchasesProps) => Promise<ConnectedXMResponse<Purchase[]>>;
|
|
7634
7878
|
/**
|
|
7635
7879
|
* @category Hooks
|
|
7636
7880
|
* @group Events
|
|
7637
7881
|
*/
|
|
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>>;
|
|
7882
|
+
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
7883
|
|
|
7640
7884
|
/**
|
|
7641
7885
|
* @category Keys
|
|
@@ -9777,6 +10021,202 @@ declare const GetVideos: ({ pageParam, pageSize, orderBy, search, source, adminA
|
|
|
9777
10021
|
*/
|
|
9778
10022
|
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
10023
|
|
|
10024
|
+
/**
|
|
10025
|
+
* @category Keys
|
|
10026
|
+
* @group Threads
|
|
10027
|
+
*/
|
|
10028
|
+
declare const THREADS_QUERY_KEY: (access?: "public" | "private", groupId?: string, eventId?: string) => string[];
|
|
10029
|
+
/**
|
|
10030
|
+
* @category Setters
|
|
10031
|
+
* @group Threads
|
|
10032
|
+
*/
|
|
10033
|
+
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;
|
|
10034
|
+
interface GetThreadsProps extends InfiniteQueryParams {
|
|
10035
|
+
access?: "public" | "private";
|
|
10036
|
+
groupId?: string;
|
|
10037
|
+
eventId?: string;
|
|
10038
|
+
}
|
|
10039
|
+
/**
|
|
10040
|
+
* @category Queries
|
|
10041
|
+
* @thread Threads
|
|
10042
|
+
*/
|
|
10043
|
+
declare const GetThreads: ({ pageParam, pageSize, orderBy, access, groupId, eventId, search, adminApiParams, }: GetThreadsProps) => Promise<ConnectedXMResponse<Thread[]>>;
|
|
10044
|
+
/**
|
|
10045
|
+
* @category Hooks
|
|
10046
|
+
* @thread Threads
|
|
10047
|
+
*/
|
|
10048
|
+
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>>;
|
|
10049
|
+
|
|
10050
|
+
/**
|
|
10051
|
+
* @category Keys
|
|
10052
|
+
* @thread Threads
|
|
10053
|
+
*/
|
|
10054
|
+
declare const THREAD_QUERY_KEY: (threadId: string, messageId?: string) => (string | undefined)[];
|
|
10055
|
+
/**
|
|
10056
|
+
* @category Setters
|
|
10057
|
+
* @thread Threads
|
|
10058
|
+
*/
|
|
10059
|
+
declare const SET_THREAD_QUERY_DATA: (client: QueryClient, keyParams: [threadId: string, messageId?: string | undefined], response: Updater<any, Awaited<ReturnType<typeof GetThread>>>, options?: SetDataOptions) => void;
|
|
10060
|
+
interface GetThreadProps extends SingleQueryParams {
|
|
10061
|
+
threadId: string;
|
|
10062
|
+
}
|
|
10063
|
+
/**
|
|
10064
|
+
* @category Queries
|
|
10065
|
+
* @thread Threads
|
|
10066
|
+
*/
|
|
10067
|
+
declare const GetThread: ({ threadId, adminApiParams, }: GetThreadProps) => Promise<ConnectedXMResponse<Thread>>;
|
|
10068
|
+
/**
|
|
10069
|
+
* @category Hooks
|
|
10070
|
+
* @group Threads
|
|
10071
|
+
*/
|
|
10072
|
+
declare const useGetThread: (threadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThread>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
10073
|
+
|
|
10074
|
+
/**
|
|
10075
|
+
* @category Keys
|
|
10076
|
+
* @thread Thread Members
|
|
10077
|
+
*/
|
|
10078
|
+
declare const THREAD_MEMBER_QUERY_KEY: (threadId: string, accountId: string) => string[];
|
|
10079
|
+
interface GetThreadMemberProps extends SingleQueryParams {
|
|
10080
|
+
threadId: string;
|
|
10081
|
+
accountId: string;
|
|
10082
|
+
}
|
|
10083
|
+
/**
|
|
10084
|
+
* @category Queries
|
|
10085
|
+
* @thread Thread Members
|
|
10086
|
+
*/
|
|
10087
|
+
declare const GetThreadMember: ({ threadId, accountId, adminApiParams, }: GetThreadMemberProps) => Promise<ConnectedXMResponse<ThreadMember>>;
|
|
10088
|
+
/**
|
|
10089
|
+
* @category Hooks
|
|
10090
|
+
* @thread Thread Members
|
|
10091
|
+
*/
|
|
10092
|
+
declare const useGetThreadMember: (threadId?: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadMember>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ThreadMember>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
10093
|
+
|
|
10094
|
+
/**
|
|
10095
|
+
* @category Keys
|
|
10096
|
+
* @thread Thread Members
|
|
10097
|
+
*/
|
|
10098
|
+
declare const THREAD_MEMBERS_QUERY_KEY: (threadId: string) => string[];
|
|
10099
|
+
interface GetThreadMembersProps extends InfiniteQueryParams {
|
|
10100
|
+
threadId: string;
|
|
10101
|
+
role?: string;
|
|
10102
|
+
}
|
|
10103
|
+
/**
|
|
10104
|
+
* @category Queries
|
|
10105
|
+
* @thread Thread Members
|
|
10106
|
+
*/
|
|
10107
|
+
declare const GetThreadMembers: ({ threadId, pageParam, pageSize, orderBy, search, role, adminApiParams, }: GetThreadMembersProps) => Promise<ConnectedXMResponse<ThreadMember[]>>;
|
|
10108
|
+
/**
|
|
10109
|
+
* @category Hooks
|
|
10110
|
+
* @thread Thread Members
|
|
10111
|
+
*/
|
|
10112
|
+
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>>;
|
|
10113
|
+
|
|
10114
|
+
declare const THREAD_MESSAGES_QUERY_KEY: (threadId: string, messageId?: string) => QueryKey;
|
|
10115
|
+
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;
|
|
10116
|
+
interface GetThreadMessagesProps extends InfiniteQueryParams {
|
|
10117
|
+
threadId: string;
|
|
10118
|
+
}
|
|
10119
|
+
declare const GetThreadMessages: ({ threadId, pageParam, pageSize, orderBy, search, queryClient, adminApiParams, }: GetThreadMessagesProps) => Promise<ConnectedXMResponse<ThreadMessage[]>>;
|
|
10120
|
+
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>>;
|
|
10121
|
+
|
|
10122
|
+
declare const THREAD_MESSAGE_QUERY_KEY: (threadId: string, messageId: string) => QueryKey;
|
|
10123
|
+
declare const SET_THREAD_MESSAGE_QUERY_DATA: (client: QueryClient, keyParams: [threadId: string, messageId: string], response: Awaited<ReturnType<typeof GetThreadMessage>>, options?: SetDataOptions) => void;
|
|
10124
|
+
interface GetThreadMessageProps {
|
|
10125
|
+
threadId: string;
|
|
10126
|
+
messageId: string;
|
|
10127
|
+
adminApiParams?: any;
|
|
10128
|
+
}
|
|
10129
|
+
declare const GetThreadMessage: ({ threadId, messageId, adminApiParams, }: GetThreadMessageProps) => Promise<ConnectedXMResponse<ThreadMessage>>;
|
|
10130
|
+
declare const useGetThreadMessage: (threadId: string, messageId: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadMessage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ThreadMessage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
10131
|
+
|
|
10132
|
+
declare const THREAD_MESSAGE_REPLIES_QUERY_KEY: (threadId: string, messageId: string) => QueryKey;
|
|
10133
|
+
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;
|
|
10134
|
+
interface GetThreadMessageRepliesProps extends InfiniteQueryParams {
|
|
10135
|
+
threadId: string;
|
|
10136
|
+
messageId: string;
|
|
10137
|
+
}
|
|
10138
|
+
declare const GetThreadMessageReplies: ({ threadId, messageId, pageParam, pageSize, orderBy, search, queryClient, adminApiParams, }: GetThreadMessageRepliesProps) => Promise<ConnectedXMResponse<ThreadMessage[]>>;
|
|
10139
|
+
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>>;
|
|
10140
|
+
|
|
10141
|
+
/**
|
|
10142
|
+
* @category Keys
|
|
10143
|
+
* @thread Thread Groups
|
|
10144
|
+
*/
|
|
10145
|
+
declare const THREAD_GROUPS_QUERY_KEY: () => string[];
|
|
10146
|
+
interface GetThreadGroupsProps extends InfiniteQueryParams {
|
|
10147
|
+
}
|
|
10148
|
+
/**
|
|
10149
|
+
* @category Queries
|
|
10150
|
+
* @thread Thread Groups
|
|
10151
|
+
*/
|
|
10152
|
+
declare const GetThreadGroups: ({ adminApiParams, }: GetThreadGroupsProps) => Promise<ConnectedXMResponse<Thread[]>>;
|
|
10153
|
+
/**
|
|
10154
|
+
* @category Hooks
|
|
10155
|
+
* @thread Thread Groups
|
|
10156
|
+
*/
|
|
10157
|
+
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>>;
|
|
10158
|
+
|
|
10159
|
+
/**
|
|
10160
|
+
* @category Keys
|
|
10161
|
+
* @thread Threads Group
|
|
10162
|
+
*/
|
|
10163
|
+
declare const THREAD_GROUP_QUERY_KEY: (groupId: string) => string[];
|
|
10164
|
+
interface GetThreadsGroupProps extends SingleQueryParams {
|
|
10165
|
+
groupId: string;
|
|
10166
|
+
}
|
|
10167
|
+
/**
|
|
10168
|
+
* @category Queries
|
|
10169
|
+
* @thread Thread Groups
|
|
10170
|
+
*/
|
|
10171
|
+
declare const GetThreadsGroup: ({ groupId, adminApiParams, }: GetThreadsGroupProps) => Promise<ConnectedXMResponse<Thread>>;
|
|
10172
|
+
/**
|
|
10173
|
+
* @category Hooks
|
|
10174
|
+
* @thread Thread Groups
|
|
10175
|
+
*/
|
|
10176
|
+
declare const useGetThreadsGroup: (groupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadsGroup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
10177
|
+
|
|
10178
|
+
/**
|
|
10179
|
+
* @category Keys
|
|
10180
|
+
* @thread Thread Events
|
|
10181
|
+
*/
|
|
10182
|
+
declare const THREAD_EVENTS_QUERY_KEY: () => string[];
|
|
10183
|
+
interface GetThreadEventsProps extends InfiniteQueryParams {
|
|
10184
|
+
}
|
|
10185
|
+
/**
|
|
10186
|
+
* @category Queries
|
|
10187
|
+
* @thread Thread Events
|
|
10188
|
+
*/
|
|
10189
|
+
declare const GetThreadEvents: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetThreadEventsProps) => Promise<ConnectedXMResponse<Thread[]>>;
|
|
10190
|
+
/**
|
|
10191
|
+
* @category Hooks
|
|
10192
|
+
* @thread Thread Events
|
|
10193
|
+
*/
|
|
10194
|
+
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>>;
|
|
10195
|
+
|
|
10196
|
+
/**
|
|
10197
|
+
* @category Keys
|
|
10198
|
+
* @thread Threads
|
|
10199
|
+
*/
|
|
10200
|
+
declare const THREAD_MODERATORS_QUERY_KEY: (threadId: string) => (string | undefined)[];
|
|
10201
|
+
/**
|
|
10202
|
+
* @category Setters
|
|
10203
|
+
* @thread Threads
|
|
10204
|
+
*/
|
|
10205
|
+
declare const SET_THREAD_MODERATORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_MODERATORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreadModerators>>) => void;
|
|
10206
|
+
interface GetThreadModeratorsProps extends InfiniteQueryParams {
|
|
10207
|
+
threadId: string;
|
|
10208
|
+
}
|
|
10209
|
+
/**
|
|
10210
|
+
* @category Queries
|
|
10211
|
+
* @thread Threads
|
|
10212
|
+
*/
|
|
10213
|
+
declare const GetThreadModerators: ({ threadId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetThreadModeratorsProps) => Promise<ConnectedXMResponse<ThreadMember[]>>;
|
|
10214
|
+
/**
|
|
10215
|
+
* @category Hooks
|
|
10216
|
+
* @thread Threads
|
|
10217
|
+
*/
|
|
10218
|
+
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>>;
|
|
10219
|
+
|
|
9780
10220
|
interface MutationParams {
|
|
9781
10221
|
adminApiParams: AdminApiParams;
|
|
9782
10222
|
queryClient?: QueryClient;
|
|
@@ -10492,6 +10932,28 @@ declare const CreateChannelTranslation: ({ channelId, locale, autoTranslate, adm
|
|
|
10492
10932
|
*/
|
|
10493
10933
|
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
10934
|
|
|
10935
|
+
/**
|
|
10936
|
+
* @category Params
|
|
10937
|
+
* @group Channel-Translation
|
|
10938
|
+
*/
|
|
10939
|
+
interface CreateChannelContentGuestTranslationParams extends MutationParams {
|
|
10940
|
+
channelId: string;
|
|
10941
|
+
contentId: string;
|
|
10942
|
+
guestId: string;
|
|
10943
|
+
locale: string;
|
|
10944
|
+
autoTranslate?: boolean;
|
|
10945
|
+
}
|
|
10946
|
+
/**
|
|
10947
|
+
* @category Methods
|
|
10948
|
+
* @group Channel-Translation
|
|
10949
|
+
*/
|
|
10950
|
+
declare const CreateChannelContentGuestTranslation: ({ channelId, contentId, guestId, locale, autoTranslate, adminApiParams, queryClient, }: CreateChannelContentGuestTranslationParams) => Promise<ConnectedXMResponse<ChannelContentGuestTranslation>>;
|
|
10951
|
+
/**
|
|
10952
|
+
* @category Mutations
|
|
10953
|
+
* @group Channel-Translation
|
|
10954
|
+
*/
|
|
10955
|
+
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>;
|
|
10956
|
+
|
|
10495
10957
|
/**
|
|
10496
10958
|
* @category Params
|
|
10497
10959
|
* @group Channel-Translation
|
|
@@ -10531,6 +10993,27 @@ declare const DeleteChannelTranslation: ({ channelId, locale, adminApiParams, qu
|
|
|
10531
10993
|
*/
|
|
10532
10994
|
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
10995
|
|
|
10996
|
+
/**
|
|
10997
|
+
* @category Params
|
|
10998
|
+
* @group Channel-Translation
|
|
10999
|
+
*/
|
|
11000
|
+
interface DeleteChannelContentGuestTranslationParams extends MutationParams {
|
|
11001
|
+
contentId: string;
|
|
11002
|
+
channelId: string;
|
|
11003
|
+
guestId: string;
|
|
11004
|
+
locale: string;
|
|
11005
|
+
}
|
|
11006
|
+
/**
|
|
11007
|
+
* @category Methods
|
|
11008
|
+
* @group Channel-Translation
|
|
11009
|
+
*/
|
|
11010
|
+
declare const DeleteChannelContentGuestTranslation: ({ channelId, contentId, guestId, locale, adminApiParams, queryClient, }: DeleteChannelContentGuestTranslationParams) => Promise<any>;
|
|
11011
|
+
/**
|
|
11012
|
+
* @category Mutations
|
|
11013
|
+
* @group Channel-Translation
|
|
11014
|
+
*/
|
|
11015
|
+
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>;
|
|
11016
|
+
|
|
10534
11017
|
/**
|
|
10535
11018
|
* @category Params
|
|
10536
11019
|
* @group Channel-Translation
|
|
@@ -10574,23 +11057,25 @@ declare const useUpdateChannelTranslation: (options?: Omit<ConnectedXMMutationOp
|
|
|
10574
11057
|
|
|
10575
11058
|
/**
|
|
10576
11059
|
* @category Params
|
|
10577
|
-
* @group Channel
|
|
11060
|
+
* @group Channel-Translation
|
|
10578
11061
|
*/
|
|
10579
|
-
interface
|
|
10580
|
-
contentId: string;
|
|
11062
|
+
interface UpdateChannelContentGuestTranslationParams extends MutationParams {
|
|
10581
11063
|
channelId: string;
|
|
10582
|
-
|
|
11064
|
+
contentId: string;
|
|
11065
|
+
guestId: string;
|
|
11066
|
+
locale: ISupportedLocale;
|
|
11067
|
+
guestTranslation: ChannelContentGuestTranslationUpdateInputs;
|
|
10583
11068
|
}
|
|
10584
11069
|
/**
|
|
10585
11070
|
* @category Methods
|
|
10586
|
-
* @group Channel
|
|
11071
|
+
* @group Channel-Translation
|
|
10587
11072
|
*/
|
|
10588
|
-
declare const
|
|
11073
|
+
declare const UpdateChannelContentGuestTranslation: ({ channelId, contentId, guestId, guestTranslation, locale, adminApiParams, queryClient, }: UpdateChannelContentGuestTranslationParams) => Promise<ConnectedXMResponse<ChannelContentGuestTranslation>>;
|
|
10589
11074
|
/**
|
|
10590
11075
|
* @category Mutations
|
|
10591
|
-
* @group Channel
|
|
11076
|
+
* @group Channel-Translation
|
|
10592
11077
|
*/
|
|
10593
|
-
declare const
|
|
11078
|
+
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
11079
|
|
|
10595
11080
|
/**
|
|
10596
11081
|
* @category Params
|
|
@@ -10689,21 +11174,21 @@ declare const useDeleteChannelContent: (options?: Omit<ConnectedXMMutationOption
|
|
|
10689
11174
|
* @category Params
|
|
10690
11175
|
* @group Channel
|
|
10691
11176
|
*/
|
|
10692
|
-
interface
|
|
11177
|
+
interface DeleteChannelContentGuestParams extends MutationParams {
|
|
10693
11178
|
contentId: string;
|
|
10694
11179
|
channelId: string;
|
|
10695
|
-
|
|
11180
|
+
guestId: string;
|
|
10696
11181
|
}
|
|
10697
11182
|
/**
|
|
10698
11183
|
* @category Methods
|
|
10699
11184
|
* @group Channel
|
|
10700
11185
|
*/
|
|
10701
|
-
declare const
|
|
11186
|
+
declare const DeleteChannelContentGuest: ({ contentId, guestId, channelId, adminApiParams, queryClient, }: DeleteChannelContentGuestParams) => Promise<ConnectedXMResponse<ChannelContent>>;
|
|
10702
11187
|
/**
|
|
10703
11188
|
* @category Mutations
|
|
10704
11189
|
* @group Channel
|
|
10705
11190
|
*/
|
|
10706
|
-
declare const
|
|
11191
|
+
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
11192
|
|
|
10708
11193
|
/**
|
|
10709
11194
|
* @category Params
|
|
@@ -10777,12 +11262,12 @@ interface UpdateChannelContentGuestParams extends MutationParams {
|
|
|
10777
11262
|
* @category Methods
|
|
10778
11263
|
* @group Channels
|
|
10779
11264
|
*/
|
|
10780
|
-
declare const UpdateChannelContentGuest: ({ contentId, channelId, guestId, contentGuest: content, adminApiParams, queryClient, }: UpdateChannelContentGuestParams) => Promise<ConnectedXMResponse<
|
|
11265
|
+
declare const UpdateChannelContentGuest: ({ contentId, channelId, guestId, contentGuest: content, adminApiParams, queryClient, }: UpdateChannelContentGuestParams) => Promise<ConnectedXMResponse<ChannelContentGuest>>;
|
|
10781
11266
|
/**
|
|
10782
11267
|
* @category Mutations
|
|
10783
11268
|
* @group Channels
|
|
10784
11269
|
*/
|
|
10785
|
-
declare const useUpdateChannelContentGuest: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateChannelContentGuest>>, Omit<UpdateChannelContentGuestParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<
|
|
11270
|
+
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
11271
|
|
|
10787
11272
|
/**
|
|
10788
11273
|
* @category Params
|
|
@@ -10804,6 +11289,70 @@ declare const UpdateChannelSubscriber: ({ accountId, channelId, channelSubscribe
|
|
|
10804
11289
|
*/
|
|
10805
11290
|
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
11291
|
|
|
11292
|
+
/**
|
|
11293
|
+
* @category Params
|
|
11294
|
+
* @group Channels
|
|
11295
|
+
*/
|
|
11296
|
+
interface CreateChannelContentGuestParams extends MutationParams {
|
|
11297
|
+
contentId: string;
|
|
11298
|
+
channelId: string;
|
|
11299
|
+
contentGuest: ChannelContentGuestCreateInputs;
|
|
11300
|
+
}
|
|
11301
|
+
/**
|
|
11302
|
+
* @category Methods
|
|
11303
|
+
* @group Channels
|
|
11304
|
+
*/
|
|
11305
|
+
declare const CreateChannelContentGuest: ({ contentId, channelId, contentGuest: content, adminApiParams, queryClient, }: CreateChannelContentGuestParams) => Promise<ConnectedXMResponse<ChannelContentGuest>>;
|
|
11306
|
+
/**
|
|
11307
|
+
* @category Mutations
|
|
11308
|
+
* @group Channels
|
|
11309
|
+
*/
|
|
11310
|
+
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>;
|
|
11311
|
+
|
|
11312
|
+
/**
|
|
11313
|
+
* @category Params
|
|
11314
|
+
* @group Channel
|
|
11315
|
+
*/
|
|
11316
|
+
interface UpdateChannelContentPublishScheduleParams extends MutationParams {
|
|
11317
|
+
contentId: string;
|
|
11318
|
+
channelId: string;
|
|
11319
|
+
schedule: {
|
|
11320
|
+
date: string;
|
|
11321
|
+
email: boolean;
|
|
11322
|
+
push: boolean;
|
|
11323
|
+
visible: boolean;
|
|
11324
|
+
};
|
|
11325
|
+
}
|
|
11326
|
+
/**
|
|
11327
|
+
* @category Methods
|
|
11328
|
+
* @group Channel
|
|
11329
|
+
*/
|
|
11330
|
+
declare const UpdateChannelContentPublishSchedule: ({ contentId, channelId, schedule, adminApiParams, queryClient, }: UpdateChannelContentPublishScheduleParams) => Promise<ConnectedXMResponse<ChannelContent>>;
|
|
11331
|
+
/**
|
|
11332
|
+
* @category Mutations
|
|
11333
|
+
* @group Channel
|
|
11334
|
+
*/
|
|
11335
|
+
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>;
|
|
11336
|
+
|
|
11337
|
+
/**
|
|
11338
|
+
* @category Params
|
|
11339
|
+
* @group Channel
|
|
11340
|
+
*/
|
|
11341
|
+
interface CancelChannelContentPublishScheduleParams extends MutationParams {
|
|
11342
|
+
contentId: string;
|
|
11343
|
+
channelId: string;
|
|
11344
|
+
}
|
|
11345
|
+
/**
|
|
11346
|
+
* @category Methods
|
|
11347
|
+
* @group Channel
|
|
11348
|
+
*/
|
|
11349
|
+
declare const CancelChannelContentPublishSchedule: ({ contentId, channelId, adminApiParams, queryClient, }: CancelChannelContentPublishScheduleParams) => Promise<ConnectedXMResponse<ChannelContent>>;
|
|
11350
|
+
/**
|
|
11351
|
+
* @category Mutations
|
|
11352
|
+
* @group Channel
|
|
11353
|
+
*/
|
|
11354
|
+
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>;
|
|
11355
|
+
|
|
10807
11356
|
/**
|
|
10808
11357
|
* @category Params
|
|
10809
11358
|
* @group Event-Activations-Translations
|
|
@@ -16138,4 +16687,103 @@ declare const UpdateVideo: ({ videoId, video, adminApiParams, queryClient, }: Up
|
|
|
16138
16687
|
*/
|
|
16139
16688
|
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
16689
|
|
|
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 };
|
|
16690
|
+
/**
|
|
16691
|
+
* @category Params
|
|
16692
|
+
* @group Thread
|
|
16693
|
+
*/
|
|
16694
|
+
interface CreateThreadParams extends MutationParams {
|
|
16695
|
+
thread: ThreadCreateInputs;
|
|
16696
|
+
accountIds?: string[];
|
|
16697
|
+
firstMessage?: string;
|
|
16698
|
+
imageDataUri?: string;
|
|
16699
|
+
}
|
|
16700
|
+
/**
|
|
16701
|
+
* @category Methods
|
|
16702
|
+
* @group Thread
|
|
16703
|
+
*/
|
|
16704
|
+
declare const CreateThread: ({ thread, accountIds, firstMessage, imageDataUri, adminApiParams, queryClient, }: CreateThreadParams) => Promise<ConnectedXMResponse<Thread>>;
|
|
16705
|
+
/**
|
|
16706
|
+
* @category Mutations
|
|
16707
|
+
* @group Thread
|
|
16708
|
+
*/
|
|
16709
|
+
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>;
|
|
16710
|
+
|
|
16711
|
+
/**
|
|
16712
|
+
* @category Params
|
|
16713
|
+
* @group Threads
|
|
16714
|
+
*/
|
|
16715
|
+
interface UpdateThreadParams extends MutationParams {
|
|
16716
|
+
threadId: string;
|
|
16717
|
+
thread: ThreadUpdateInputs;
|
|
16718
|
+
imageDataUri?: string;
|
|
16719
|
+
}
|
|
16720
|
+
/**
|
|
16721
|
+
* @category Methods
|
|
16722
|
+
* @group Threads
|
|
16723
|
+
*/
|
|
16724
|
+
declare const UpdateThread: ({ threadId, thread, imageDataUri, adminApiParams, queryClient, }: UpdateThreadParams) => Promise<ConnectedXMResponse<Thread>>;
|
|
16725
|
+
/**
|
|
16726
|
+
* @category Mutations
|
|
16727
|
+
* @group Threads
|
|
16728
|
+
*/
|
|
16729
|
+
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>;
|
|
16730
|
+
|
|
16731
|
+
/**
|
|
16732
|
+
* @category Params
|
|
16733
|
+
* @group Threads
|
|
16734
|
+
*/
|
|
16735
|
+
interface AddThreadMemberParams extends MutationParams {
|
|
16736
|
+
threadId: string;
|
|
16737
|
+
accountId: string;
|
|
16738
|
+
role: "moderator" | "member";
|
|
16739
|
+
}
|
|
16740
|
+
/**
|
|
16741
|
+
* @category Methods
|
|
16742
|
+
* @group Threads
|
|
16743
|
+
*/
|
|
16744
|
+
declare const AddThreadMember: ({ threadId, accountId, role, adminApiParams, queryClient, }: AddThreadMemberParams) => Promise<ConnectedXMResponse<ThreadMember>>;
|
|
16745
|
+
/**
|
|
16746
|
+
* @category Mutations
|
|
16747
|
+
* @group Threads
|
|
16748
|
+
*/
|
|
16749
|
+
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>;
|
|
16750
|
+
|
|
16751
|
+
/**
|
|
16752
|
+
* @category Params
|
|
16753
|
+
* @thread Threads
|
|
16754
|
+
*/
|
|
16755
|
+
interface RemoveThreadMemberParams extends MutationParams {
|
|
16756
|
+
threadId: string;
|
|
16757
|
+
accountId: string;
|
|
16758
|
+
}
|
|
16759
|
+
/**
|
|
16760
|
+
* @category Methods
|
|
16761
|
+
* @thread Threads
|
|
16762
|
+
*/
|
|
16763
|
+
declare const RemoveThreadMember: ({ threadId, accountId, adminApiParams, queryClient, }: RemoveThreadMemberParams) => Promise<ConnectedXMResponse<GroupMembership>>;
|
|
16764
|
+
/**
|
|
16765
|
+
* @category Mutations
|
|
16766
|
+
* @thread Threads
|
|
16767
|
+
*/
|
|
16768
|
+
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>;
|
|
16769
|
+
|
|
16770
|
+
/**
|
|
16771
|
+
* @category Params
|
|
16772
|
+
* @group Threads
|
|
16773
|
+
*/
|
|
16774
|
+
interface RemoveThreadModeratorParams extends MutationParams {
|
|
16775
|
+
threadId: string;
|
|
16776
|
+
accountId: string;
|
|
16777
|
+
}
|
|
16778
|
+
/**
|
|
16779
|
+
* @category Methods
|
|
16780
|
+
* @group Threads
|
|
16781
|
+
*/
|
|
16782
|
+
declare const RemoveThreadModerator: ({ threadId, accountId, adminApiParams, queryClient, }: RemoveThreadModeratorParams) => Promise<ConnectedXMResponse<GroupMembership>>;
|
|
16783
|
+
/**
|
|
16784
|
+
* @category Mutations
|
|
16785
|
+
* @group Threads
|
|
16786
|
+
*/
|
|
16787
|
+
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>;
|
|
16788
|
+
|
|
16789
|
+
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 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, 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_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, 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_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, 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, 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, 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, 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, useUpdateOrganizationPage, useUpdateOrganizationPageTranslation, useUpdateOrganizationTeamMember, useUpdateOrganizationTrigger, useUpdateReport, useUpdateSelf, useUpdateSeries, useUpdateStreamConfig, useUpdateStreamInput, useUpdateStreamInputOutput, useUpdateSubscription, useUpdateSubscriptionProduct, useUpdateSubscriptionProductPrice, useUpdateSupportTicket, useUpdateThread, useUpdateTier, useUpdateVideo, useUploadFile };
|