@connectedxm/admin 5.2.3 → 5.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -763,11 +763,14 @@ interface BaseCoupon {
763
763
  interface Coupon extends BaseCoupon {
764
764
  registration: BaseEventAttendee | null;
765
765
  lineItem: PaymentLineItem | null;
766
+ parentCouponId: string | null;
767
+ parentCoupon: BaseCoupon | null;
766
768
  createdAt: string;
767
769
  updatedAt: string;
768
770
  _count: {
769
771
  purchases: number;
770
772
  payments: number;
773
+ variants: number;
771
774
  };
772
775
  }
773
776
  declare enum EmailReceiptStatus {
@@ -965,7 +968,6 @@ interface Event extends BaseEvent {
965
968
  passLimitPerAccount: number | null;
966
969
  reservationDescription: string | null;
967
970
  longDescription: string | null;
968
- meetingUrl: string | null;
969
971
  creatorId: string | null;
970
972
  creator: BaseAccount | null;
971
973
  registrationLimit: number | null;
@@ -990,6 +992,8 @@ interface Event extends BaseEvent {
990
992
  backgroundImageId: string | null;
991
993
  backgroundImage: BaseImage | null;
992
994
  activityFeedEnabled: boolean;
995
+ meetingId: string | null;
996
+ meeting: BaseMeeting | null;
993
997
  options: object | null;
994
998
  }
995
999
  interface EventTranslation {
@@ -1191,6 +1195,8 @@ interface BaseGroup {
1191
1195
  }
1192
1196
  interface Group extends BaseGroup {
1193
1197
  externalUrl: string | null;
1198
+ meetingId: string | null;
1199
+ meeting: BaseMeeting | null;
1194
1200
  createdAt: string;
1195
1201
  updatedAt: string;
1196
1202
  _count: {
@@ -2182,6 +2188,8 @@ interface EventSession extends BaseEventSession {
2182
2188
  eventId: string;
2183
2189
  event: BaseEvent;
2184
2190
  speakers: BaseEventSpeaker[];
2191
+ meetingId: string | null;
2192
+ meeting: BaseMeeting | null;
2185
2193
  }
2186
2194
  interface EventSessionTranslation {
2187
2195
  id: number;
@@ -2480,16 +2488,16 @@ interface BaseMeeting {
2480
2488
  title: string;
2481
2489
  host_preset: string;
2482
2490
  guest_preset: string;
2491
+ }
2492
+ interface Meeting extends BaseMeeting {
2493
+ updated_at: string;
2494
+ created_at: string;
2483
2495
  preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
2496
+ status?: "ACTIVE" | "INACTIVE";
2484
2497
  record_on_start: boolean;
2485
2498
  live_stream_on_start: boolean;
2486
2499
  persist_chat: boolean;
2487
2500
  summarize_on_end: boolean;
2488
- status: "ACTIVE" | "INACTIVE";
2489
- created_at: string;
2490
- updated_at: string;
2491
- }
2492
- interface Meeting extends BaseMeeting {
2493
2501
  eventId?: string;
2494
2502
  event?: BaseEvent;
2495
2503
  sessionId?: string;
@@ -3969,6 +3977,75 @@ interface EntityUseCode {
3969
3977
  name: string;
3970
3978
  description: string;
3971
3979
  }
3980
+ interface StreamInputDetails {
3981
+ uid: string;
3982
+ rtmps: {
3983
+ url: string;
3984
+ streamKey: string;
3985
+ };
3986
+ rtmpsPlayback: {
3987
+ url: string;
3988
+ streamKey: string;
3989
+ };
3990
+ srt: {
3991
+ url: string;
3992
+ streamId: string;
3993
+ passphrase: string;
3994
+ };
3995
+ srtPlayback: {
3996
+ url: string;
3997
+ streamId: string;
3998
+ passphrase: string;
3999
+ };
4000
+ webRTC: {
4001
+ url: string;
4002
+ };
4003
+ webRTCPlayback: {
4004
+ url: string;
4005
+ };
4006
+ created: string;
4007
+ modified: string;
4008
+ meta: Record<string, any>;
4009
+ defaultCreator: string;
4010
+ status: any;
4011
+ recording: {
4012
+ mode: "automatic" | "off";
4013
+ requireSignedURLs: boolean;
4014
+ allowedOrigins: string[];
4015
+ };
4016
+ deleteRecordingAfterDays: null | number;
4017
+ }
4018
+ interface BaseStreamInput {
4019
+ id: number;
4020
+ name: string;
4021
+ cloudflareId: string | null;
4022
+ connected: boolean;
4023
+ public: boolean;
4024
+ sessionId: string | null;
4025
+ eventId: string | null;
4026
+ groupId: string | null;
4027
+ imageId: string | null;
4028
+ image: BaseImage | null;
4029
+ }
4030
+ interface StreamInput extends BaseStreamInput {
4031
+ eventId: string | null;
4032
+ event: BaseEvent | null;
4033
+ sessionId: string | null;
4034
+ session: BaseEventSession | null;
4035
+ groupId: string | null;
4036
+ group: BaseGroup | null;
4037
+ meetingId: string | null;
4038
+ meeting: BaseMeeting | null;
4039
+ details?: StreamInputDetails;
4040
+ sortOrder: number;
4041
+ createdAt: string;
4042
+ }
4043
+ interface StreamInputOutput {
4044
+ enabled: boolean;
4045
+ url: string;
4046
+ streamKey: string;
4047
+ uid: string;
4048
+ }
3972
4049
 
3973
4050
  interface ConnectedXMClientContextState {
3974
4051
  queryClient: QueryClient;
@@ -4477,6 +4554,12 @@ interface EventCouponUpdateInputs {
4477
4554
  applyToAddOns?: boolean;
4478
4555
  applyToReservation?: boolean;
4479
4556
  }
4557
+ interface EventVariantCouponCreateInputs {
4558
+ quantity?: number;
4559
+ }
4560
+ interface EventVariantCouponSyncInputs {
4561
+ fields?: string[];
4562
+ }
4480
4563
  interface EventFaqSectionCreateInputs {
4481
4564
  name?: string | null;
4482
4565
  slug?: string | null;
@@ -4508,7 +4591,6 @@ interface EventCreateInputs {
4508
4591
  zip?: string | null;
4509
4592
  creatorId?: string | null;
4510
4593
  seriesId?: string | null;
4511
- meetingUrl?: string | null;
4512
4594
  registration?: boolean;
4513
4595
  registrationStart?: string | null;
4514
4596
  registrationEnd?: string | null;
@@ -4882,7 +4964,6 @@ interface EventUpdateInputs {
4882
4964
  zip?: string | null;
4883
4965
  creatorId?: string | null;
4884
4966
  seriesId?: string | null;
4885
- meetingUrl?: string | null;
4886
4967
  registration?: boolean;
4887
4968
  registrationStart?: string | null;
4888
4969
  registrationEnd?: string | null;
@@ -6381,6 +6462,38 @@ interface MeetingPresetUpdateInputs {
6381
6462
  "ui.design_tokens.colors.warning"?: string;
6382
6463
  "ui.config_diff"?: Record<string, any>;
6383
6464
  }
6465
+ interface StreamInputCreateInputs {
6466
+ name: string;
6467
+ sortOrder?: number | string | null;
6468
+ eventId?: string | null;
6469
+ sessionId?: string | null;
6470
+ groupId?: string | null;
6471
+ meetingId?: string | null;
6472
+ details?: object | null;
6473
+ imageId?: string | null;
6474
+ public?: boolean;
6475
+ locale?: string | null;
6476
+ }
6477
+ interface StreamInputUpdateInputs {
6478
+ name?: string;
6479
+ sortOrder?: number | string | null;
6480
+ eventId?: string | null;
6481
+ sessionId?: string | null;
6482
+ groupId?: string | null;
6483
+ meetingId?: string | null;
6484
+ connected?: boolean;
6485
+ imageId?: string | null;
6486
+ public?: boolean;
6487
+ locale?: string | null;
6488
+ }
6489
+ interface StreamInputOutputCreateInputs {
6490
+ enabled: boolean;
6491
+ url: string;
6492
+ streamKey: string;
6493
+ }
6494
+ interface StreamInputOutputUpdateInputs {
6495
+ enabled: boolean;
6496
+ }
6384
6497
 
6385
6498
  declare const AppendInfiniteQuery: <TData>(queryClient: QueryClient, key: QueryKey, newData: any) => void;
6386
6499
 
@@ -9443,6 +9556,31 @@ declare const GetEventCouponPayments: ({ eventId, couponId, pageParam, pageSize,
9443
9556
  */
9444
9557
  declare const useGetEventCouponPayments: (eventId?: string, couponId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventCouponPayments>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Payment[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
9445
9558
 
9559
+ /**
9560
+ * @category Keys
9561
+ * @group Events
9562
+ */
9563
+ declare const EVENT_COUPON_VARIANTS_QUERY_KEY: (eventId: string, parentCouponId: string) => string[];
9564
+ /**
9565
+ * @category Setters
9566
+ * @group Events
9567
+ */
9568
+ declare const SET_EVENT_COUPON_VARIANTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_COUPON_VARIANTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventCouponVariants>>) => void;
9569
+ interface GetEventCouponVariantsProps extends InfiniteQueryParams {
9570
+ eventId: string;
9571
+ parentCouponId: string;
9572
+ }
9573
+ /**
9574
+ * @category Queries
9575
+ * @group Events
9576
+ */
9577
+ declare const GetEventCouponVariants: ({ eventId, parentCouponId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventCouponVariantsProps) => Promise<ConnectedXMResponse<Coupon[]>>;
9578
+ /**
9579
+ * @category Hooks
9580
+ * @group Events
9581
+ */
9582
+ declare const useGetEventCouponVariants: (eventId?: string, parentCouponId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventCouponVariants>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Coupon[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
9583
+
9446
9584
  /**
9447
9585
  * @category Keys
9448
9586
  * @group Events
@@ -14920,6 +15058,55 @@ declare const GetLogins: ({ pageParam, pageSize, orderBy, search, accountId, adm
14920
15058
  */
14921
15059
  declare const useGetLogins: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetLogins>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Login[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
14922
15060
 
15061
+ /**
15062
+ * @category Keys
15063
+ * @group StreamsV2
15064
+ */
15065
+ declare const MEETING_LINK_QUERY_KEY: (meetingId: string, linkId: string) => string[];
15066
+ /**
15067
+ * @category Setters
15068
+ * @group StreamsV2
15069
+ */
15070
+ declare const SET_MEETING_LINK_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_LINK_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetingLink>>) => void;
15071
+ interface GetMeetingLinkParams extends SingleQueryParams {
15072
+ meetingId: string;
15073
+ linkId: string;
15074
+ }
15075
+ /**
15076
+ * @category Queries
15077
+ * @group StreamsV2
15078
+ */
15079
+ declare const GetMeetingLink: ({ meetingId, linkId, adminApiParams, }: GetMeetingLinkParams) => Promise<ConnectedXMResponse<MeetingLink>>;
15080
+ /**
15081
+ * @category Hooks
15082
+ * @group StreamsV2
15083
+ */
15084
+ declare const useGetMeetingLink: (meetingId?: string, linkId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingLink>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingLink>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15085
+
15086
+ /**
15087
+ * @category Keys
15088
+ * @group StreamsV2
15089
+ */
15090
+ declare const MEETING_LINKS_QUERY_KEY: (meetingId: string) => string[];
15091
+ /**
15092
+ * @category Setters
15093
+ * @group StreamsV2
15094
+ */
15095
+ declare const SET_MEETING_LINKS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_LINKS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetingLinks>>) => void;
15096
+ interface GetMeetingLinksParams extends InfiniteQueryParams {
15097
+ meetingId: string;
15098
+ }
15099
+ /**
15100
+ * @category Queries
15101
+ * @group StreamsV2
15102
+ */
15103
+ declare const GetMeetingLinks: ({ meetingId, pageParam, pageSize, orderBy, adminApiParams, }: GetMeetingLinksParams) => Promise<ConnectedXMResponse<MeetingLink[]>>;
15104
+ /**
15105
+ * @category Hooks
15106
+ * @group StreamsV2
15107
+ */
15108
+ declare const useGetMeetingLinks: (meetingId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMeetingLinks>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<MeetingLink[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
15109
+
14923
15110
  /**
14924
15111
  * @category Keys
14925
15112
  * @group StreamsV2
@@ -15375,55 +15562,6 @@ declare const GetMeetingSessions: ({ meetingId, pageParam, pageSize, orderBy, se
15375
15562
  */
15376
15563
  declare const useGetMeetingSessions: (meetingId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMeetingSessions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<MeetingSession[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
15377
15564
 
15378
- /**
15379
- * @category Keys
15380
- * @group StreamsV2
15381
- */
15382
- declare const MEETING_LINKS_QUERY_KEY: (meetingId: string) => string[];
15383
- /**
15384
- * @category Setters
15385
- * @group StreamsV2
15386
- */
15387
- declare const SET_MEETING_LINKS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_LINKS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetingLinks>>) => void;
15388
- interface GetMeetingLinksParams extends InfiniteQueryParams {
15389
- meetingId: string;
15390
- }
15391
- /**
15392
- * @category Queries
15393
- * @group StreamsV2
15394
- */
15395
- declare const GetMeetingLinks: ({ meetingId, pageParam, pageSize, orderBy, adminApiParams, }: GetMeetingLinksParams) => Promise<ConnectedXMResponse<MeetingLink[]>>;
15396
- /**
15397
- * @category Hooks
15398
- * @group StreamsV2
15399
- */
15400
- declare const useGetMeetingLinks: (meetingId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMeetingLinks>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<MeetingLink[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
15401
-
15402
- /**
15403
- * @category Keys
15404
- * @group StreamsV2
15405
- */
15406
- declare const MEETING_LINK_QUERY_KEY: (meetingId: string, linkId: string) => string[];
15407
- /**
15408
- * @category Setters
15409
- * @group StreamsV2
15410
- */
15411
- declare const SET_MEETING_LINK_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_LINK_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetingLink>>) => void;
15412
- interface GetMeetingLinkParams extends SingleQueryParams {
15413
- meetingId: string;
15414
- linkId: string;
15415
- }
15416
- /**
15417
- * @category Queries
15418
- * @group StreamsV2
15419
- */
15420
- declare const GetMeetingLink: ({ meetingId, linkId, adminApiParams, }: GetMeetingLinkParams) => Promise<ConnectedXMResponse<MeetingLink>>;
15421
- /**
15422
- * @category Hooks
15423
- * @group StreamsV2
15424
- */
15425
- declare const useGetMeetingLink: (meetingId?: string, linkId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingLink>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingLink>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15426
-
15427
15565
  /**
15428
15566
  * @category Keys
15429
15567
  * @group Subscriptions
@@ -17046,142 +17184,264 @@ declare const useGetSeriesList: (params?: Omit<InfiniteQueryParams, "pageParam"
17046
17184
 
17047
17185
  /**
17048
17186
  * @category Keys
17049
- * @group Support Tickets
17187
+ * @group Streams
17050
17188
  */
17051
- declare const SUPPORT_TICKET_QUERY_KEY: (supportTicketId: string) => (string | undefined)[];
17189
+ declare const STREAM_QUERY_KEY: (streamId: string) => string[];
17052
17190
  /**
17053
17191
  * @category Setters
17054
- * @group Support Tickets
17192
+ * @group Streams
17055
17193
  */
17056
- declare const SET_SUPPORT_TICKET_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUPPORT_TICKET_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSupportTicket>>) => void;
17057
- interface GetSupportTicketProps extends SingleQueryParams {
17058
- supportTicketId: string;
17194
+ declare const SET_STREAM_INPUT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof STREAM_QUERY_KEY>, response: Awaited<ReturnType<typeof GetStreamInput>>) => void;
17195
+ interface GetStreamInputParams extends SingleQueryParams {
17196
+ streamId: string;
17059
17197
  }
17060
17198
  /**
17061
17199
  * @category Queries
17062
- * @group Support Tickets
17200
+ * @group Streams
17063
17201
  */
17064
- declare const GetSupportTicket: ({ supportTicketId, adminApiParams, }: GetSupportTicketProps) => Promise<ConnectedXMResponse<SupportTicket>>;
17202
+ declare const GetStreamInput: ({ streamId, adminApiParams, }: GetStreamInputParams) => Promise<ConnectedXMResponse<StreamInput>>;
17065
17203
  /**
17066
17204
  * @category Hooks
17067
- * @group Support Tickets
17205
+ * @group Streams
17068
17206
  */
17069
- declare const useGetSupportTicket: (supportTicketId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSupportTicket>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SupportTicket>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17207
+ declare const useGetStreamInput: (streamId?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamInput>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StreamInput>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17070
17208
 
17071
17209
  /**
17072
17210
  * @category Keys
17073
- * @group Support Tickets
17211
+ * @group Streams
17074
17212
  */
17075
- declare const SUPPORT_TICKETS_QUERY_KEY: (state?: string, type?: string) => (string | undefined)[];
17213
+ declare const STREAM_INPUT_OUTPUT_QUERY_KEY: (streamId: string, output: string) => string[];
17076
17214
  /**
17077
17215
  * @category Setters
17078
- * @group Support Tickets
17216
+ * @group Streams
17079
17217
  */
17080
- declare const SET_SUPPORT_TICKETS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUPPORT_TICKETS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSupportTickets>>) => void;
17081
- interface GetSupportTicketsProps extends InfiniteQueryParams {
17082
- state: string;
17083
- type: string;
17218
+ declare const SET_STREAM_INPUT_OUTPUT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof STREAM_INPUT_OUTPUT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetStreamInputOutput>>) => void;
17219
+ interface GetStreamInputOutputParams extends SingleQueryParams {
17220
+ streamId: string;
17221
+ output: string;
17084
17222
  }
17085
17223
  /**
17086
17224
  * @category Queries
17087
- * @group Support Tickets
17225
+ * @group Streams
17088
17226
  */
17089
- declare const GetSupportTickets: ({ type, state, pageParam, pageSize, orderBy, search, adminApiParams, }: GetSupportTicketsProps) => Promise<ConnectedXMResponse<SupportTicket[]>>;
17227
+ declare const GetStreamInputOutput: ({ streamId, output, adminApiParams, }: GetStreamInputOutputParams) => Promise<ConnectedXMResponse<StreamInputOutput>>;
17090
17228
  /**
17091
17229
  * @category Hooks
17092
- * @group Support Tickets
17230
+ * @group Streams
17093
17231
  */
17094
- declare const useGetSupportTickets: (type: string, state?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSupportTickets>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<SupportTicket[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
17232
+ declare const useGetStreamInputOutput: (streamId?: string, output?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamInputOutput>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StreamInputOutput>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17095
17233
 
17096
17234
  /**
17097
17235
  * @category Keys
17098
- * @group Surveys
17236
+ * @group Streams
17099
17237
  */
17100
- declare const SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_KEY: (surveyId: string, questionId: string, choiceId: string, locale: string) => string[];
17238
+ declare const STREAM_INPUT_OUTPUTS_QUERY_KEY: (streamId: string) => string[];
17101
17239
  /**
17102
17240
  * @category Setters
17103
- * @group Surveys
17241
+ * @group Streams
17104
17242
  */
17105
- declare const SET_SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionChoiceTranslation>>) => void;
17106
- interface GetSurveyQuestionChoiceTranslationProps extends SingleQueryParams {
17107
- surveyId: string;
17108
- questionId: string;
17109
- choiceId: string;
17110
- locale: string;
17243
+ declare const SET_STREAM_INPUT_OUTPUTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof STREAM_INPUT_OUTPUTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetStreamInputOutputs>>) => void;
17244
+ interface GetStreamInputOutputsParams extends InfiniteQueryParams {
17245
+ streamId: string;
17111
17246
  }
17112
17247
  /**
17113
17248
  * @category Queries
17114
- * @group Surveys
17249
+ * @group Streams
17115
17250
  */
17116
- declare const GetSurveyQuestionChoiceTranslation: ({ surveyId, questionId, choiceId, locale, adminApiParams, }: GetSurveyQuestionChoiceTranslationProps) => Promise<ConnectedXMResponse<SurveyQuestionChoiceTranslation | null>>;
17251
+ declare const GetStreamInputOutputs: ({ streamId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetStreamInputOutputsParams) => Promise<ConnectedXMResponse<StreamInputOutput[]>>;
17117
17252
  /**
17118
17253
  * @category Hooks
17119
- * @group Surveys
17254
+ * @group Streams
17120
17255
  */
17121
- declare const useGetSurveyQuestionChoiceTranslation: (surveyId?: string, questionId?: string, choiceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestionChoiceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyQuestionChoiceTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17256
+ declare const useGetStreamInputOutputs: (streamId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetStreamInputOutputs>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<StreamInputOutput[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
17122
17257
 
17123
17258
  /**
17124
17259
  * @category Keys
17125
- * @group Surveys
17260
+ * @group Streams
17126
17261
  */
17127
- declare const SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY: (surveyId: string, questionId: string, choiceId: string) => string[];
17262
+ declare const STREAM_INPUTS_QUERY_KEY: (eventId?: string, sessionId?: string) => string[];
17128
17263
  /**
17129
17264
  * @category Setters
17130
- * @group Surveys
17265
+ * @group Streams
17131
17266
  */
17132
- declare const SET_SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionChoiceTranslations>>) => void;
17133
- interface GetSurveyQuestionChoiceTranslationsProps extends InfiniteQueryParams {
17134
- surveyId: string;
17135
- questionId: string;
17136
- choiceId: string;
17267
+ declare const SET_STREAM_INPUTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof STREAM_INPUTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetStreamInputs>>) => void;
17268
+ interface GetStreamInputsParams extends InfiniteQueryParams {
17269
+ eventId?: string;
17270
+ sessionId?: string;
17137
17271
  }
17138
17272
  /**
17139
17273
  * @category Queries
17140
- * @group Surveys
17274
+ * @group Streams
17141
17275
  */
17142
- declare const GetSurveyQuestionChoiceTranslations: ({ pageParam, pageSize, orderBy, search, surveyId, questionId, choiceId, adminApiParams, }: GetSurveyQuestionChoiceTranslationsProps) => Promise<ConnectedXMResponse<SurveyQuestionChoiceTranslation[]>>;
17276
+ declare const GetStreamInputs: ({ eventId, sessionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetStreamInputsParams) => Promise<ConnectedXMResponse<StreamInput[]>>;
17143
17277
  /**
17144
17278
  * @category Hooks
17145
- * @group Surveys
17279
+ * @group Streams
17146
17280
  */
17147
- declare const useGetSurveyQuestionChoiceTranslations: (surveyId?: string, questionId?: string, choiceId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSurveyQuestionChoiceTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<SurveyQuestionChoiceTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
17281
+ declare const useGetStreamInputs: (eventId?: string, sessionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetStreamInputs>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<StreamInput[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
17148
17282
 
17149
17283
  /**
17150
17284
  * @category Keys
17151
- * @group Surveys
17285
+ * @group Streams
17152
17286
  */
17153
- declare const SURVEY_QUESTION_TRANSLATION_QUERY_KEY: (surveyId: string, questionId: string, locale: string) => string[];
17287
+ declare const STREAM_VIDEOS_QUERY_KEY: (streamId: string) => string[];
17154
17288
  /**
17155
17289
  * @category Setters
17156
- * @group Surveys
17290
+ * @group Streams
17157
17291
  */
17158
- declare const SET_SURVEY_QUESTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_QUESTION_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionTranslation>>) => void;
17159
- interface GetSurveyQuestionTranslationProps extends SingleQueryParams {
17160
- surveyId: string;
17161
- questionId: string;
17162
- locale: string;
17292
+ declare const SET_STREAM_VIDEOS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof STREAM_VIDEOS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetStreamVideos>>) => void;
17293
+ interface GetStreamVideosProps extends InfiniteQueryParams {
17294
+ streamId: string;
17163
17295
  }
17164
17296
  /**
17165
17297
  * @category Queries
17166
- * @group Surveys
17298
+ * @group Streams
17167
17299
  */
17168
- declare const GetSurveyQuestionTranslation: ({ surveyId, questionId, locale, adminApiParams, }: GetSurveyQuestionTranslationProps) => Promise<ConnectedXMResponse<SurveyQuestionTranslation | null>>;
17300
+ declare const GetStreamVideos: ({ streamId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetStreamVideosProps) => Promise<ConnectedXMResponse<Video[]>>;
17169
17301
  /**
17170
17302
  * @category Hooks
17171
- * @group Surveys
17303
+ * @group Streams
17172
17304
  */
17173
- declare const useGetSurveyQuestionTranslation: (surveyId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyQuestionTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17305
+ declare const useGetStreamVideos: (streamId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetStreamVideos>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Video[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
17174
17306
 
17175
17307
  /**
17176
17308
  * @category Keys
17177
- * @group Surveys
17309
+ * @group Support Tickets
17178
17310
  */
17179
- declare const SURVEY_QUESTION_TRANSLATIONS_QUERY_KEY: (surveyId: string, questionId: string) => string[];
17311
+ declare const SUPPORT_TICKET_QUERY_KEY: (supportTicketId: string) => (string | undefined)[];
17180
17312
  /**
17181
17313
  * @category Setters
17182
- * @group Surveys
17314
+ * @group Support Tickets
17183
17315
  */
17184
- declare const SET_SURVEY_QUESTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_QUESTION_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionTranslations>>) => void;
17316
+ declare const SET_SUPPORT_TICKET_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUPPORT_TICKET_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSupportTicket>>) => void;
17317
+ interface GetSupportTicketProps extends SingleQueryParams {
17318
+ supportTicketId: string;
17319
+ }
17320
+ /**
17321
+ * @category Queries
17322
+ * @group Support Tickets
17323
+ */
17324
+ declare const GetSupportTicket: ({ supportTicketId, adminApiParams, }: GetSupportTicketProps) => Promise<ConnectedXMResponse<SupportTicket>>;
17325
+ /**
17326
+ * @category Hooks
17327
+ * @group Support Tickets
17328
+ */
17329
+ declare const useGetSupportTicket: (supportTicketId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSupportTicket>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SupportTicket>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17330
+
17331
+ /**
17332
+ * @category Keys
17333
+ * @group Support Tickets
17334
+ */
17335
+ declare const SUPPORT_TICKETS_QUERY_KEY: (state?: string, type?: string) => (string | undefined)[];
17336
+ /**
17337
+ * @category Setters
17338
+ * @group Support Tickets
17339
+ */
17340
+ declare const SET_SUPPORT_TICKETS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUPPORT_TICKETS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSupportTickets>>) => void;
17341
+ interface GetSupportTicketsProps extends InfiniteQueryParams {
17342
+ state: string;
17343
+ type: string;
17344
+ }
17345
+ /**
17346
+ * @category Queries
17347
+ * @group Support Tickets
17348
+ */
17349
+ declare const GetSupportTickets: ({ type, state, pageParam, pageSize, orderBy, search, adminApiParams, }: GetSupportTicketsProps) => Promise<ConnectedXMResponse<SupportTicket[]>>;
17350
+ /**
17351
+ * @category Hooks
17352
+ * @group Support Tickets
17353
+ */
17354
+ declare const useGetSupportTickets: (type: string, state?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSupportTickets>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<SupportTicket[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
17355
+
17356
+ /**
17357
+ * @category Keys
17358
+ * @group Surveys
17359
+ */
17360
+ declare const SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_KEY: (surveyId: string, questionId: string, choiceId: string, locale: string) => string[];
17361
+ /**
17362
+ * @category Setters
17363
+ * @group Surveys
17364
+ */
17365
+ declare const SET_SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionChoiceTranslation>>) => void;
17366
+ interface GetSurveyQuestionChoiceTranslationProps extends SingleQueryParams {
17367
+ surveyId: string;
17368
+ questionId: string;
17369
+ choiceId: string;
17370
+ locale: string;
17371
+ }
17372
+ /**
17373
+ * @category Queries
17374
+ * @group Surveys
17375
+ */
17376
+ declare const GetSurveyQuestionChoiceTranslation: ({ surveyId, questionId, choiceId, locale, adminApiParams, }: GetSurveyQuestionChoiceTranslationProps) => Promise<ConnectedXMResponse<SurveyQuestionChoiceTranslation | null>>;
17377
+ /**
17378
+ * @category Hooks
17379
+ * @group Surveys
17380
+ */
17381
+ declare const useGetSurveyQuestionChoiceTranslation: (surveyId?: string, questionId?: string, choiceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestionChoiceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyQuestionChoiceTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17382
+
17383
+ /**
17384
+ * @category Keys
17385
+ * @group Surveys
17386
+ */
17387
+ declare const SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY: (surveyId: string, questionId: string, choiceId: string) => string[];
17388
+ /**
17389
+ * @category Setters
17390
+ * @group Surveys
17391
+ */
17392
+ declare const SET_SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionChoiceTranslations>>) => void;
17393
+ interface GetSurveyQuestionChoiceTranslationsProps extends InfiniteQueryParams {
17394
+ surveyId: string;
17395
+ questionId: string;
17396
+ choiceId: string;
17397
+ }
17398
+ /**
17399
+ * @category Queries
17400
+ * @group Surveys
17401
+ */
17402
+ declare const GetSurveyQuestionChoiceTranslations: ({ pageParam, pageSize, orderBy, search, surveyId, questionId, choiceId, adminApiParams, }: GetSurveyQuestionChoiceTranslationsProps) => Promise<ConnectedXMResponse<SurveyQuestionChoiceTranslation[]>>;
17403
+ /**
17404
+ * @category Hooks
17405
+ * @group Surveys
17406
+ */
17407
+ declare const useGetSurveyQuestionChoiceTranslations: (surveyId?: string, questionId?: string, choiceId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSurveyQuestionChoiceTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<SurveyQuestionChoiceTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
17408
+
17409
+ /**
17410
+ * @category Keys
17411
+ * @group Surveys
17412
+ */
17413
+ declare const SURVEY_QUESTION_TRANSLATION_QUERY_KEY: (surveyId: string, questionId: string, locale: string) => string[];
17414
+ /**
17415
+ * @category Setters
17416
+ * @group Surveys
17417
+ */
17418
+ declare const SET_SURVEY_QUESTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_QUESTION_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionTranslation>>) => void;
17419
+ interface GetSurveyQuestionTranslationProps extends SingleQueryParams {
17420
+ surveyId: string;
17421
+ questionId: string;
17422
+ locale: string;
17423
+ }
17424
+ /**
17425
+ * @category Queries
17426
+ * @group Surveys
17427
+ */
17428
+ declare const GetSurveyQuestionTranslation: ({ surveyId, questionId, locale, adminApiParams, }: GetSurveyQuestionTranslationProps) => Promise<ConnectedXMResponse<SurveyQuestionTranslation | null>>;
17429
+ /**
17430
+ * @category Hooks
17431
+ * @group Surveys
17432
+ */
17433
+ declare const useGetSurveyQuestionTranslation: (surveyId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyQuestionTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17434
+
17435
+ /**
17436
+ * @category Keys
17437
+ * @group Surveys
17438
+ */
17439
+ declare const SURVEY_QUESTION_TRANSLATIONS_QUERY_KEY: (surveyId: string, questionId: string) => string[];
17440
+ /**
17441
+ * @category Setters
17442
+ * @group Surveys
17443
+ */
17444
+ declare const SET_SURVEY_QUESTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_QUESTION_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionTranslations>>) => void;
17185
17445
  interface GetSurveyQuestionTranslationsProps extends InfiniteQueryParams {
17186
17446
  surveyId: string;
17187
17447
  questionId: string;
@@ -20960,6 +21220,26 @@ declare const CreateEventCoupon: ({ eventId, coupon, adminApiParams, queryClient
20960
21220
  */
20961
21221
  declare const useCreateEventCoupon: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateEventCoupon>>, Omit<CreateEventCouponParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Coupon>, axios.AxiosError<ConnectedXMResponse<Coupon>, any>, Omit<CreateEventCouponParams, "queryClient" | "adminApiParams">, unknown>;
20962
21222
 
21223
+ /**
21224
+ * @category Params
21225
+ * @group Event-Coupons
21226
+ */
21227
+ interface CreateEventCouponVariantsParams extends MutationParams {
21228
+ eventId: string;
21229
+ couponId: string;
21230
+ quantity: EventVariantCouponCreateInputs;
21231
+ }
21232
+ /**
21233
+ * @category Methods
21234
+ * @group Event-Coupons
21235
+ */
21236
+ declare const CreateEventCouponVariants: ({ eventId, couponId, quantity, adminApiParams, queryClient, }: CreateEventCouponVariantsParams) => Promise<ConnectedXMResponse<number>>;
21237
+ /**
21238
+ * @category Mutations
21239
+ * @group Event-Coupons
21240
+ */
21241
+ declare const useCreateEventCouponVariants: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateEventCouponVariants>>, Omit<CreateEventCouponVariantsParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<number>, axios.AxiosError<ConnectedXMResponse<number>, any>, Omit<CreateEventCouponVariantsParams, "queryClient" | "adminApiParams">, unknown>;
21242
+
20963
21243
  /**
20964
21244
  * @category Params
20965
21245
  * @group Event-Coupons
@@ -20979,6 +21259,45 @@ declare const DeleteEventCoupon: ({ eventId, couponId, adminApiParams, queryClie
20979
21259
  */
20980
21260
  declare const useDeleteEventCoupon: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteEventCoupon>>, Omit<DeleteEventCouponParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteEventCouponParams, "queryClient" | "adminApiParams">, unknown>;
20981
21261
 
21262
+ /**
21263
+ * @category Params
21264
+ * @group Event-Coupons
21265
+ */
21266
+ interface DeleteEventCouponVariantsParams extends MutationParams {
21267
+ eventId: string;
21268
+ couponId: string;
21269
+ }
21270
+ /**
21271
+ * @category Methods
21272
+ * @group Event-Coupons
21273
+ */
21274
+ declare const DeleteEventCouponVariants: ({ eventId, couponId, adminApiParams, queryClient, }: DeleteEventCouponVariantsParams) => Promise<ConnectedXMResponse<null>>;
21275
+ /**
21276
+ * @category Mutations
21277
+ * @group Event-Coupons
21278
+ */
21279
+ declare const useDeleteEventCouponVariants: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteEventCouponVariants>>, Omit<DeleteEventCouponVariantsParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteEventCouponVariantsParams, "queryClient" | "adminApiParams">, unknown>;
21280
+
21281
+ /**
21282
+ * @category Params
21283
+ * @group Event-Coupons
21284
+ */
21285
+ interface SyncEventCouponToVariantsParams extends MutationParams {
21286
+ eventId: string;
21287
+ couponId: string;
21288
+ fields: EventVariantCouponSyncInputs;
21289
+ }
21290
+ /**
21291
+ * @category Methods
21292
+ * @group Event-Coupons
21293
+ */
21294
+ declare const SyncEventCouponToVariants: ({ eventId, couponId, fields, adminApiParams, queryClient, }: SyncEventCouponToVariantsParams) => Promise<ConnectedXMResponse<Coupon>>;
21295
+ /**
21296
+ * @category Mutations
21297
+ * @group Event-Coupons
21298
+ */
21299
+ declare const useSyncEventCouponToVariants: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof SyncEventCouponToVariants>>, Omit<SyncEventCouponToVariantsParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Coupon>, axios.AxiosError<ConnectedXMResponse<Coupon>, any>, Omit<SyncEventCouponToVariantsParams, "queryClient" | "adminApiParams">, unknown>;
21300
+
20982
21301
  /**
20983
21302
  * @category Params
20984
21303
  * @group Event-Coupons
@@ -27225,6 +27544,64 @@ declare const UpdateLoginPassword: ({ username, password, adminApiParams, queryC
27225
27544
  */
27226
27545
  declare const useUpdateLoginPassword: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateLoginPassword>>, Omit<UpdateLoginPasswordParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Login>, axios.AxiosError<ConnectedXMResponse<Login>, any>, Omit<UpdateLoginPasswordParams, "queryClient" | "adminApiParams">, unknown>;
27227
27546
 
27547
+ /**
27548
+ * @category Params
27549
+ * @group StreamsV2
27550
+ */
27551
+ interface CreateMeetingLinkParams extends MutationParams {
27552
+ meetingId: string;
27553
+ link: MeetingLinkCreateInputs;
27554
+ }
27555
+ /**
27556
+ * @category Methods
27557
+ * @group StreamsV2
27558
+ */
27559
+ declare const CreateMeetingLink: ({ meetingId, link, adminApiParams, queryClient, }: CreateMeetingLinkParams) => Promise<ConnectedXMResponse<MeetingLink>>;
27560
+ /**
27561
+ * @category Mutations
27562
+ * @group StreamsV2
27563
+ */
27564
+ declare const useCreateMeetingLink: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateMeetingLink>>, Omit<CreateMeetingLinkParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<MeetingLink>, axios.AxiosError<ConnectedXMResponse<MeetingLink>, any>, Omit<CreateMeetingLinkParams, "queryClient" | "adminApiParams">, unknown>;
27565
+
27566
+ /**
27567
+ * @category Params
27568
+ * @group StreamsV2
27569
+ */
27570
+ interface DeleteMeetingLinkParams extends MutationParams {
27571
+ meetingId: string;
27572
+ linkId: string;
27573
+ }
27574
+ /**
27575
+ * @category Methods
27576
+ * @group StreamsV2
27577
+ */
27578
+ declare const DeleteMeetingLink: ({ meetingId, linkId, adminApiParams, queryClient, }: DeleteMeetingLinkParams) => Promise<ConnectedXMResponse<null>>;
27579
+ /**
27580
+ * @category Mutations
27581
+ * @group StreamsV2
27582
+ */
27583
+ declare const useDeleteMeetingLink: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteMeetingLink>>, Omit<DeleteMeetingLinkParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteMeetingLinkParams, "queryClient" | "adminApiParams">, unknown>;
27584
+
27585
+ /**
27586
+ * @category Params
27587
+ * @group StreamsV2
27588
+ */
27589
+ interface UpdateMeetingLinkParams extends MutationParams {
27590
+ meetingId: string;
27591
+ linkId: string;
27592
+ link: MeetingLinkUpdateInputs;
27593
+ }
27594
+ /**
27595
+ * @category Methods
27596
+ * @group StreamsV2
27597
+ */
27598
+ declare const UpdateMeetingLink: ({ meetingId, linkId, link, adminApiParams, queryClient, }: UpdateMeetingLinkParams) => Promise<ConnectedXMResponse<MeetingLink>>;
27599
+ /**
27600
+ * @category Mutations
27601
+ * @group StreamsV2
27602
+ */
27603
+ declare const useUpdateMeetingLink: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateMeetingLink>>, Omit<UpdateMeetingLinkParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<MeetingLink>, axios.AxiosError<ConnectedXMResponse<MeetingLink>, any>, Omit<UpdateMeetingLinkParams, "queryClient" | "adminApiParams">, unknown>;
27604
+
27228
27605
  /**
27229
27606
  * @category Params
27230
27607
  * @group StreamsV2
@@ -27484,64 +27861,6 @@ declare const GenerateMeetingSessionSummary: ({ sessionId, adminApiParams, query
27484
27861
  */
27485
27862
  declare const useGenerateMeetingSessionSummary: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof GenerateMeetingSessionSummary>>, Omit<GenerateMeetingSessionSummaryParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<any>, axios.AxiosError<ConnectedXMResponse<any>, any>, Omit<GenerateMeetingSessionSummaryParams, "queryClient" | "adminApiParams">, unknown>;
27486
27863
 
27487
- /**
27488
- * @category Params
27489
- * @group StreamsV2
27490
- */
27491
- interface CreateMeetingLinkParams extends MutationParams {
27492
- meetingId: string;
27493
- link: MeetingLinkCreateInputs;
27494
- }
27495
- /**
27496
- * @category Methods
27497
- * @group StreamsV2
27498
- */
27499
- declare const CreateMeetingLink: ({ meetingId, link, adminApiParams, queryClient, }: CreateMeetingLinkParams) => Promise<ConnectedXMResponse<MeetingLink>>;
27500
- /**
27501
- * @category Mutations
27502
- * @group StreamsV2
27503
- */
27504
- declare const useCreateMeetingLink: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateMeetingLink>>, Omit<CreateMeetingLinkParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<MeetingLink>, axios.AxiosError<ConnectedXMResponse<MeetingLink>, any>, Omit<CreateMeetingLinkParams, "queryClient" | "adminApiParams">, unknown>;
27505
-
27506
- /**
27507
- * @category Params
27508
- * @group StreamsV2
27509
- */
27510
- interface UpdateMeetingLinkParams extends MutationParams {
27511
- meetingId: string;
27512
- linkId: string;
27513
- link: MeetingLinkUpdateInputs;
27514
- }
27515
- /**
27516
- * @category Methods
27517
- * @group StreamsV2
27518
- */
27519
- declare const UpdateMeetingLink: ({ meetingId, linkId, link, adminApiParams, queryClient, }: UpdateMeetingLinkParams) => Promise<ConnectedXMResponse<MeetingLink>>;
27520
- /**
27521
- * @category Mutations
27522
- * @group StreamsV2
27523
- */
27524
- declare const useUpdateMeetingLink: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateMeetingLink>>, Omit<UpdateMeetingLinkParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<MeetingLink>, axios.AxiosError<ConnectedXMResponse<MeetingLink>, any>, Omit<UpdateMeetingLinkParams, "queryClient" | "adminApiParams">, unknown>;
27525
-
27526
- /**
27527
- * @category Params
27528
- * @group StreamsV2
27529
- */
27530
- interface DeleteMeetingLinkParams extends MutationParams {
27531
- meetingId: string;
27532
- linkId: string;
27533
- }
27534
- /**
27535
- * @category Methods
27536
- * @group StreamsV2
27537
- */
27538
- declare const DeleteMeetingLink: ({ meetingId, linkId, adminApiParams, queryClient, }: DeleteMeetingLinkParams) => Promise<ConnectedXMResponse<null>>;
27539
- /**
27540
- * @category Mutations
27541
- * @group StreamsV2
27542
- */
27543
- declare const useDeleteMeetingLink: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteMeetingLink>>, Omit<DeleteMeetingLinkParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteMeetingLinkParams, "queryClient" | "adminApiParams">, unknown>;
27544
-
27545
27864
  /**
27546
27865
  * @category Params
27547
27866
  * @group Subscriptions
@@ -29018,6 +29337,138 @@ declare const UploadFile: ({ dataUri, source, name, adminApiParams, }: UploadFil
29018
29337
  */
29019
29338
  declare const useUploadFile: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UploadFile>>, Omit<UploadFileParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<File>, axios.AxiosError<ConnectedXMResponse<File>, any>, Omit<UploadFileParams, "queryClient" | "adminApiParams">, unknown>;
29020
29339
 
29340
+ /**
29341
+ * @category Params
29342
+ * @group Stream
29343
+ */
29344
+ interface CreateStreamInputParams extends MutationParams {
29345
+ stream: StreamInputCreateInputs;
29346
+ }
29347
+ /**
29348
+ * @category Methods
29349
+ * @group Stream
29350
+ */
29351
+ declare const CreateStreamInput: ({ stream, adminApiParams, queryClient, }: CreateStreamInputParams) => Promise<ConnectedXMResponse<StreamInput>>;
29352
+ /**
29353
+ * @category Mutations
29354
+ * @group Stream
29355
+ */
29356
+ declare const useCreateStreamInput: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateStreamInput>>, Omit<CreateStreamInputParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<StreamInput>, axios.AxiosError<ConnectedXMResponse<StreamInput>, any>, Omit<CreateStreamInputParams, "queryClient" | "adminApiParams">, unknown>;
29357
+
29358
+ /**
29359
+ * @category Params
29360
+ * @group Stream
29361
+ */
29362
+ interface CreateStreamInputOutputParams extends MutationParams {
29363
+ streamId: string;
29364
+ output: StreamInputOutputCreateInputs;
29365
+ }
29366
+ /**
29367
+ * @category Methods
29368
+ * @group Stream
29369
+ */
29370
+ declare const CreateStreamInputOutput: ({ streamId, output, adminApiParams, queryClient, }: CreateStreamInputOutputParams) => Promise<ConnectedXMResponse<StreamInputOutput>>;
29371
+ /**
29372
+ * @category Mutations
29373
+ * @group Stream
29374
+ */
29375
+ declare const useCreateStreamInputOutput: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateStreamInputOutput>>, Omit<CreateStreamInputOutputParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<StreamInputOutput>, axios.AxiosError<ConnectedXMResponse<StreamInputOutput>, any>, Omit<CreateStreamInputOutputParams, "queryClient" | "adminApiParams">, unknown>;
29376
+
29377
+ /**
29378
+ * @category Params
29379
+ * @group Stream
29380
+ */
29381
+ interface DeleteStreamInputParams extends MutationParams {
29382
+ streamId: string;
29383
+ }
29384
+ /**
29385
+ * @category Methods
29386
+ * @group Stream
29387
+ */
29388
+ declare const DeleteStreamInput: ({ streamId, adminApiParams, queryClient, }: DeleteStreamInputParams) => Promise<ConnectedXMResponse<null>>;
29389
+ /**
29390
+ * @category Mutations
29391
+ * @group Stream
29392
+ */
29393
+ declare const useDeleteStreamInput: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteStreamInput>>, Omit<DeleteStreamInputParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteStreamInputParams, "queryClient" | "adminApiParams">, unknown>;
29394
+
29395
+ /**
29396
+ * @category Params
29397
+ * @group Stream
29398
+ */
29399
+ interface DeleteStreamInputOutputParams extends MutationParams {
29400
+ streamId: string;
29401
+ outputId: string;
29402
+ }
29403
+ /**
29404
+ * @category Methods
29405
+ * @group Stream
29406
+ */
29407
+ declare const DeleteStreamInputOutput: ({ streamId, outputId, adminApiParams, queryClient, }: DeleteStreamInputOutputParams) => Promise<ConnectedXMResponse<null>>;
29408
+ /**
29409
+ * @category Mutations
29410
+ * @group Stream
29411
+ */
29412
+ declare const useDeleteStreamInputOutput: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteStreamInputOutput>>, Omit<DeleteStreamInputOutputParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteStreamInputOutputParams, "queryClient" | "adminApiParams">, unknown>;
29413
+
29414
+ /**
29415
+ * @category Params
29416
+ * @group Stream
29417
+ */
29418
+ interface UpdateStreamConfigParams extends MutationParams {
29419
+ streamId: string;
29420
+ details: StreamInputUpdateInputs;
29421
+ }
29422
+ /**
29423
+ * @category Methods
29424
+ * @group Stream
29425
+ */
29426
+ declare const UpdateStreamConfig: ({ streamId, details, adminApiParams, queryClient, }: UpdateStreamConfigParams) => Promise<ConnectedXMResponse<StreamInput>>;
29427
+ /**
29428
+ * @category Mutations
29429
+ * @group Stream
29430
+ */
29431
+ declare const useUpdateStreamConfig: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateStreamConfig>>, Omit<UpdateStreamConfigParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<StreamInput>, axios.AxiosError<ConnectedXMResponse<StreamInput>, any>, Omit<UpdateStreamConfigParams, "queryClient" | "adminApiParams">, unknown>;
29432
+
29433
+ /**
29434
+ * @category Params
29435
+ * @group Stream
29436
+ */
29437
+ interface UpdateStreamParams extends MutationParams {
29438
+ streamId: string;
29439
+ stream: StreamInputUpdateInputs;
29440
+ }
29441
+ /**
29442
+ * @category Methods
29443
+ * @group Stream
29444
+ */
29445
+ declare const UpdateStream: ({ streamId, stream, adminApiParams, queryClient, }: UpdateStreamParams) => Promise<ConnectedXMResponse<StreamInput>>;
29446
+ /**
29447
+ * @category Mutations
29448
+ * @group Stream
29449
+ */
29450
+ declare const useUpdateStreamInput: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateStream>>, Omit<UpdateStreamParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<StreamInput>, axios.AxiosError<ConnectedXMResponse<StreamInput>, any>, Omit<UpdateStreamParams, "queryClient" | "adminApiParams">, unknown>;
29451
+
29452
+ /**
29453
+ * @category Params
29454
+ * @group Stream
29455
+ */
29456
+ interface UpdateStreamInputOutputParams extends MutationParams {
29457
+ streamId: string;
29458
+ outputId: string;
29459
+ output: StreamInputOutputUpdateInputs;
29460
+ }
29461
+ /**
29462
+ * @category Methods
29463
+ * @group Stream
29464
+ */
29465
+ declare const UpdateStreamInputOutput: ({ streamId, outputId, output, adminApiParams, queryClient, }: UpdateStreamInputOutputParams) => Promise<ConnectedXMResponse<StreamInputOutput>>;
29466
+ /**
29467
+ * @category Mutations
29468
+ * @group Stream
29469
+ */
29470
+ declare const useUpdateStreamInputOutput: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateStreamInputOutput>>, Omit<UpdateStreamInputOutputParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<StreamInputOutput>, axios.AxiosError<ConnectedXMResponse<StreamInputOutput>, any>, Omit<UpdateStreamInputOutputParams, "queryClient" | "adminApiParams">, unknown>;
29471
+
29021
29472
  /**
29022
29473
  * @category Params
29023
29474
  * @group SupportTickets
@@ -30520,4 +30971,4 @@ declare const UploadVideoCaptions: ({ videoId, language, file, filename, adminAp
30520
30971
  */
30521
30972
  declare const useUploadVideoCaptions: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UploadVideoCaptions>>, Omit<UploadVideoCaptionsParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<VideoCaption>, axios.AxiosError<ConnectedXMResponse<VideoCaption>, any>, Omit<UploadVideoCaptionsParams, "queryClient" | "adminApiParams">, unknown>;
30522
30973
 
30523
- export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_ADDRESSES_QUERY_KEY, ACCOUNT_ADDRESS_QUERY_KEY, ACCOUNT_COMMENTS_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_INVITATIONS_QUERY_KEY, ACCOUNT_LEADS_QUERY_KEY, ACCOUNT_LEAD_QUERY_KEY, ACCOUNT_LEVELS_QUERY_KEY, ACCOUNT_LIKES_QUERY_KEY, ACCOUNT_NOTIFICATION_PREFERENCES_QUERY_KEY, ACCOUNT_PAYMENTS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACCOUNT_SUBSCRIPTIONS_QUERY_KEY, ACCOUNT_THREADS_QUERY_KEY, ACCOUNT_TIERS_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENTS_QUERY_KEY, ADVERTISEMENT_CLICKS_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, ADVERTISEMENT_VIEWS_QUERY_KEY, ALL_EVENT_ADD_ON_QUERY_KEY, ALL_EVENT_PASS_TYPES_QUERY_KEY, ANNOUNCEMENTS_QUERY_KEY, ANNOUNCEMENT_AUDIENCE_QUERY_KEY, ANNOUNCEMENT_EMAILS_QUERY_KEY, ANNOUNCEMENT_QUERY_KEY, ANNOUNCEMENT_TRANSLATIONS_QUERY_KEY, ANNOUNCEMENT_TRANSLATION_QUERY_KEY, type APILog, API_LOGS_QUERY_KEY, API_LOG_QUERY_KEY, AUTH_SESSIONS_QUERY_KEY, AUTH_SESSION_QUERY_KEY, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, AccountAccess, type AccountAddress, type AccountAddressCreateInputs, type AccountAddressUpdateInputs, type AccountAttribute, type AccountAttributeCreateInputs, type AccountAttributeUpdateInputs, type AccountAttributeValue, type AccountCreateInputs, type AccountInvitation, type AccountUpdateInputs, type ActivationCompletion, type ActivationTranslation, type Activity, type ActivityCreateInputs, type ActivityEntity, ActivityEntityType, ActivityPreference, ActivityStatus, type ActivityUpdateInputs, AddAccountFollower, type AddAccountFollowerParams, AddAccountFollowing, type AddAccountFollowingParams, AddAccountGroup, type AddAccountGroupParams, AddAccountInterest, type AddAccountInterestParams, AddAccountTier, type AddAccountTierParams, AddChannelSubscriber, type AddChannelsubscriberParams, AddCustomReportUser, type AddCustomReportUserParams, AddEventAccessUser, AddEventAddOnPassType, type AddEventAddOnPassTypeParams, AddEventAddOnTier, type AddEventAddOnTierParams, AddEventBenefit, type AddEventBenefitParams, AddEventCoHost, type AddEventCoHostParams, AddEventFollowupAddOn, type AddEventFollowupAddOnParams, AddEventFollowupPassType, type AddEventFollowupPassTypeParams, AddEventFollowupQuestion, type AddEventFollowupQuestionParams, AddEventFollowupTier, type AddEventFollowupTierParams, AddEventMatchPass, type AddEventMatchPassParams, AddEventMediaItemPassType, type AddEventMediaItemPassTypeParams, AddEventPageImage, type AddEventPageImageParams, AddEventPassAddOn, type AddEventPassAddOnParams, AddEventPassTypeAddOn, type AddEventPassTypeAddOnParams, AddEventPassTypeTier, type AddEventPassTypeTierParams, AddEventQuestionChoiceSubQuestion, type AddEventQuestionChoiceSubQuestionParams, AddEventReservationPass, type AddEventReservationPassParams, AddEventRoomTypeTier, type AddEventRoomTypeTierParams, AddEventSectionAddOn, type AddEventSectionAddOnParams, AddEventSectionPassType, type AddEventSectionPassTypeParams, AddEventSectionQuestion, type AddEventSectionQuestionParams, AddEventSectionTier, type AddEventSectionTierParams, AddEventSessionAccount, type AddEventSessionAccountParams, AddEventSessionLocationSession, type AddEventSessionLocationSessionParams, AddEventSessionMatchPass, type AddEventSessionMatchPassParams, AddEventSessionPassType, type AddEventSessionPassTypeParams, AddEventSessionQuestionChoiceSubQuestion, type AddEventSessionQuestionChoiceSubQuestionParams, AddEventSessionSectionQuestion, type AddEventSessionSectionQuestionParams, AddEventSessionSpeaker, type AddEventSessionSpeakerParams, AddEventSessionSponsor, type AddEventSessionSponsorParams, AddEventSessionTrack, type AddEventSessionTrackParams, AddEventSpeakerSession, type AddEventSpeakerSessionParams, AddEventSponsorAccount, type AddEventSponsorAccountParams, AddEventTrackSession, type AddEventTrackSessionParams, AddEventTrackSponsor, type AddEventTrackSponsorParams, AddGroupEvent, type AddGroupEventParams, AddGroupInterest, type AddGroupInterestParams, AddGroupMember, type AddGroupMemberParams, AddGroupModerator, type AddGroupModeratorParams, AddGroupSponsor, type AddGroupSponsorParams, AddLevelAccount, type AddLevelAccountParams, AddLoginAccount, type AddLoginAccountParams, AddMeetingLivestream, type AddMeetingLivestreamParams, AddMembershipTier, type AddMembershipTierParams, AddOrganizationModuleEditableTier, type AddOrganizationModuleEditableTierParams, AddOrganizationModuleEnabledTier, type AddOrganizationModuleEnabledTierParams, AddOrganizationUser, type AddOrganizationUserParams, AddRoomToRoomType, type AddRoomToRoomTypeParams, AddSeriesEvent, type AddSeriesEventParams, AddSurveyQuestionChoiceSubQuestion, type AddSurveyQuestionChoiceSubQuestionParams, AddSurveySectionQuestion, type AddSurveySectionQuestionParams, type AdminApiParams, type Advertisement, type AdvertisementClick, type AdvertisementCreateInputs, AdvertisementType, type AdvertisementUpdateInputs, type AdvertisementView, type Announcement, type AnnouncementCreateInputs, type AnnouncementTranslation, type AnnouncementTranslationUpdateInputs, type AnnouncementUpdateInputs, AppendInfiniteQuery, ArchiveActivity, type ArchiveActivityParams, AttachEventQuestionSearchList, type AttachEventQuestionSearchListParams, AttachEventSessionQuestionSearchList, type AttachEventSessionQuestionSearchListParams, type AttachSearchListInputs, AttachSurveyQuestionSearchList, type AttachSurveyQuestionSearchListParams, type AttendeeEventPackageCreateInputs, type AttendeeEventPackageUpdateInputs, type AttendeePackage, AuthLayout, type AuthSession, type AuthorizeNetActivationFormParams, BENEFITS_QUERY_KEY, BENEFIT_CLICKS_QUERY_KEY, BENEFIT_QUERY_KEY, BENEFIT_TRANSLATIONS_QUERY_KEY, BENEFIT_TRANSLATION_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_BOOKINGS_QUERY_KEY, BOOKING_PLACE_PAYMENTS_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_TRANSLATIONS_QUERY_KEY, BOOKING_PLACE_TRANSLATION_QUERY_KEY, BOOKING_QUERY_KEY, BOOKING_SPACES_QUERY_KEY, BOOKING_SPACE_AVAILABILITIES_QUERY_KEY, BOOKING_SPACE_AVAILABILITY_QUERY_KEY, BOOKING_SPACE_BLACKOUTS_QUERY_KEY, BOOKING_SPACE_BLACKOUT_QUERY_KEY, BOOKING_SPACE_BOOKINGS_QUERY_KEY, BOOKING_SPACE_PAYMENTS_QUERY_KEY, BOOKING_SPACE_QUERY_KEY, BOOKING_SPACE_SLOTS_QUERY_KEY, BOOKING_SPACE_TRANSLATIONS_QUERY_KEY, BOOKING_SPACE_TRANSLATION_QUERY_KEY, BadgeFieldTransformation, BadgeFieldType, type BarChartSummaryData, type BaseAPILog, type BaseAccount, type BaseAccountAddress, type BaseAccountAttribute, type BaseAccountAttributeValue, type BaseAccountInvitation, type BaseActivationCompletion, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseChannel, type BaseChannelContent, type BaseChannelContentGuest, type BaseChannelContentLike, type BaseChannelSubscriber, type BaseCoupon, type BaseDashboard, type BaseDashboardWidget, type BaseEmailReceipt, type BaseEvent, type BaseEventActivation, type BaseEventAddOn, type BaseEventAttendee, type BaseEventEmail, type BaseEventMediaItem, type BaseEventOnSite, type BaseEventOnSiteBadgeField, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventPass, type BaseEventPassType, type BaseEventPassTypePriceSchedule, type BaseEventPassTypeRefundSchedule, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSession, type BaseEventSessionAccess, type BaseEventSessionLocation, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionChoiceSubQuestion, type BaseEventSessionQuestionResponse, type BaseEventSessionQuestionResponseChange, type BaseEventSessionSection, type BaseEventSessionSectionQuestion, type BaseEventSpeaker, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseEventTrack, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseImport, type BaseImportItem, type BaseIntegration, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLevel, type BaseLike, type BaseLinkPreview, type BaseLogin, type BaseMatch, type BaseMatchPass, type BaseMeeting, type BaseMeetingLink, type BaseMeetingRecording, type BaseMembership, type BaseMembershipPrice, type BaseNotification, type BaseOrganization, type BaseOrganizationModule, type BasePassAddOn, type BasePayment, type BasePaymentLineItem, type BasePreset, type BasePushDevice, type BaseRegistrationBypass, type BaseRegistrationFollowup, type BaseRegistrationFollowupQuestion, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionChoiceSubQuestion, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionResponseChange, type BaseRegistrationSection, type BaseRegistrationSectionQuestion, type BaseRoom, type BaseRound, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, type BaseSeries, type BaseSideEffect, type BaseStandardReport, type BaseSubscription, type BaseSubscriptionPayment, type BaseSupportTicket, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionChoiceSubQuestion, type BaseSurveyQuestionResponse, type BaseSurveyQuestionResponseChange, type BaseSurveySection, type BaseSurveySectionQuestion, type BaseSurveySubmission, type BaseTaxIntegrationLog, type BaseTeamMember, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMember, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseTier, type BaseTransfer, type BaseTransferLog, type BaseUser, type BaseVideo, type BaseWebhook, type Benefit, type BenefitClick, type BenefitCreateInputs, type BenefitTranslation, type BenefitTranslationUpdateInputs, type BenefitUpdateInputs, type Booking, type BookingCreateInputs, type BookingPlace, type BookingPlaceCreateInputs, type BookingPlaceTranslation, type BookingPlaceTranslationUpdateInputs, type BookingPlaceUpdateInputs, type BookingSlot, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceAvailabilityCreateInputs, type BookingSpaceAvailabilityUpdateInputs, type BookingSpaceBlackout, type BookingSpaceBlackoutCreateInputs, type BookingSpaceBlackoutUpdateInputs, type BookingSpaceCreateInputs, type BookingSpaceTranslation, type BookingSpaceTranslationUpdateInputs, type BookingSpaceUpdateInputs, type BookingUpdateInputs, type BraintreeActivationFormParams, BulkUploadSearchListValues, type BulkUploadSearchListValuesParams, 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, CONTENTS_QUERY_KEY, CUSTOM_MODULES_QUERY_KEY, CUSTOM_MODULE_QUERY_KEY, CUSTOM_MODULE_TRANSLATIONS_QUERY_KEY, CUSTOM_MODULE_TRANSLATION_QUERY_KEY, CUSTOM_REPORTS_QUERY_KEY, CUSTOM_REPORT_QUERY_KEY, CUSTOM_REPORT_USERS_QUERY_KEY, CacheIndividualQueries, CalculateDuration, CancelActivitySchedule, type CancelActivityScheduleParams, CancelAnnouncementSchedule, type CancelAnnouncementScheduleParams, CancelChannelContentPublishSchedule, type CancelChannelContentPublishScheduleParams, CancelEventPass, type CancelEventPassParams, CancelGroupInvitation, type CancelGroupInvitationParams, 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, CloneEvent, type CloneEventParams, type CloneOptions, ConfirmLogin, type ConfirmLoginParams, type ConnectedXMMutationOptions, ConnectedXMProvider, type ConnectedXMResponse, ContentGuestType, ContentStatus, type CountChartSummaryData, type Coupon, CreateAccount, CreateAccountAddress, type CreateAccountAddressParams, CreateAccountAttribute, type CreateAccountAttributeParams, CreateAccountInvitations, type CreateAccountInvitationsParams, type CreateAccountParams, CreateActivity, type CreateActivityParams, CreateAdvertisement, type CreateAdvertisementParams, CreateAnnouncement, type CreateAnnouncementParams, CreateAnnouncementTranslation, type CreateAnnouncementTranslationParams, CreateBenefit, type CreateBenefitParams, CreateBenefitTranslation, type CreateBenefitTranslationParams, CreateBooking, type CreateBookingParams, CreateBookingPlace, type CreateBookingPlaceParams, CreateBookingPlaceTranslation, type CreateBookingPlaceTranslationParams, CreateBookingSpace, CreateBookingSpaceAvailability, type CreateBookingSpaceAvailabilityParams, CreateBookingSpaceBlackout, type CreateBookingSpaceBlackoutParams, type CreateBookingSpaceParams, CreateBookingSpaceTranslation, type CreateBookingSpaceTranslationParams, CreateChannel, CreateChannelContent, CreateChannelContentGuest, type CreateChannelContentGuestParams, CreateChannelContentGuestTranslation, type CreateChannelContentGuestTranslationParams, type CreateChannelContentParams, CreateChannelContentTranslation, type CreateChannelContentTranslationParams, type CreateChannelParams, CreateChannelTranslation, type CreateChannelTranslationParams, CreateCustomModule, type CreateCustomModuleParams, CreateCustomModuleTranslation, type CreateCustomModuleTranslationParams, CreateCustomReport, type CreateCustomReportParams, CreateDashboard, type CreateDashboardParams, CreateDashboardWidget, type CreateDashboardWidgetParams, CreateEvent, CreateEventActivation, CreateEventActivationCompletion, type CreateEventActivationCompletionParams, type CreateEventActivationParams, CreateEventActivationTranslation, type CreateEventActivationTranslationParams, CreateEventAddOn, type CreateEventAddOnParams, CreateEventAddOnTranslation, type CreateEventAddOnTranslationParams, CreateEventAttendee, CreateEventAttendeePackage, type CreateEventAttendeePackageParams, type CreateEventAttendeeParams, CreateEventCoupon, type CreateEventCouponParams, CreateEventEmailTranslation, type CreateEventEmailTranslationParams, CreateEventFaqSection, type CreateEventFaqSectionParams, CreateEventFaqSectionQuestion, type CreateEventFaqSectionQuestionParams, CreateEventFaqSectionQuestionTranslation, type CreateEventFaqSectionQuestionTranslationParams, CreateEventFaqSectionTranslation, type CreateEventFaqSectionTranslationParams, CreateEventFollowup, type CreateEventFollowupParams, CreateEventFollowupTranslation, type CreateEventFollowupTranslationParams, CreateEventMatch, type CreateEventMatchParams, CreateEventMediaItem, type CreateEventMediaItemParams, CreateEventPackage, type CreateEventPackageParams, CreateEventPackagePass, type CreateEventPackagePassParams, CreateEventPackageTranslation, type CreateEventPackageTranslationParams, CreateEventPage, type CreateEventPageParams, CreateEventPageTranslation, type CreateEventPageTranslationParams, type CreateEventParams, CreateEventPass, type CreateEventPassParams, CreateEventPassType, type CreateEventPassTypeParams, CreateEventPassTypePriceSchedule, CreateEventPassTypeRefundSchedule, CreateEventPassTypeTranslation, type CreateEventPassTypeTranslationParams, CreateEventQuestion, CreateEventQuestionChoice, type CreateEventQuestionChoiceParams, CreateEventQuestionChoiceTranslation, type CreateEventQuestionChoiceTranslationParams, type CreateEventQuestionParams, CreateEventQuestionTranslation, type CreateEventQuestionTranslationParams, CreateEventRegistrationBypass, type CreateEventRegistrationBypassParams, CreateEventReservation, type CreateEventReservationParams, CreateEventRoomType, type CreateEventRoomTypeParams, CreateEventRoomTypeTranslation, type CreateEventRoomTypeTranslationParams, CreateEventRound, type CreateEventRoundParams, CreateEventSection, type CreateEventSectionParams, CreateEventSectionTranslation, type CreateEventSectionTranslationParams, CreateEventSession, CreateEventSessionAccess, type CreateEventSessionAccessParams, CreateEventSessionLocation, type CreateEventSessionLocationParams, CreateEventSessionLocationTranslation, type CreateEventSessionLocationTranslationParams, CreateEventSessionMatch, type CreateEventSessionMatchParams, type CreateEventSessionParams, CreateEventSessionQuestion, CreateEventSessionQuestionChoice, type CreateEventSessionQuestionChoiceParams, CreateEventSessionQuestionChoiceTranslation, type CreateEventSessionQuestionChoiceTranslationParams, type CreateEventSessionQuestionParams, CreateEventSessionQuestionTranslation, type CreateEventSessionQuestionTranslationParams, CreateEventSessionRound, type CreateEventSessionRoundParams, CreateEventSessionSection, type CreateEventSessionSectionParams, CreateEventSessionSectionTranslation, type CreateEventSessionSectionTranslationParams, CreateEventSessionTranslation, type CreateEventSessionTranslationParams, CreateEventSpeaker, type CreateEventSpeakerParams, CreateEventSpeakerTranslation, type CreateEventSpeakerTranslationParams, CreateEventSponsorship, CreateEventSponsorshipLevel, type CreateEventSponsorshipLevelParams, CreateEventSponsorshipLevelTranslation, type CreateEventSponsorshipLevelTranslationParams, type CreateEventSponsorshipParams, CreateEventSponsorshipTranslation, type CreateEventSponsorshipTranslationParams, CreateEventTrack, type CreateEventTrackParams, CreateEventTrackTranslation, type CreateEventTrackTranslationParams, CreateEventTranslation, type CreateEventTranslationParams, CreateGroup, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupTranslation, type CreateGroupTranslationParams, CreateImage, type CreateImageParams, CreateImport, type CreateImportParams, CreateIntegration, type CreateIntegrationParams, CreateInterest, type CreateInterestParams, CreateInvoice, CreateInvoiceLineItem, type CreateInvoiceLineItemParams, type CreateInvoiceParams, CreateLevel, type CreateLevelParams, CreateLevelTranslation, type CreateLevelTranslationParams, CreateMeeting, CreateMeetingLink, type CreateMeetingLinkParams, type CreateMeetingParams, CreateMeetingParticipant, type CreateMeetingParticipantParams, CreateMembership, type CreateMembershipParams, CreateMembershipPrice, type CreateMembershipPriceParams, CreateOrganizationPaymentIntegration, type CreateOrganizationPaymentIntegrationParams, CreateOrganizationSideEffect, type CreateOrganizationSideEffectParams, CreateOrganizationTeamMember, type CreateOrganizationTeamMemberParams, CreateOrganizationWebhook, type CreateOrganizationWebhookParams, CreatePreset, type CreatePresetParams, CreateRoom, type CreateRoomParams, CreateSearchList, type CreateSearchListParams, CreateSearchListValue, type CreateSearchListValueParams, CreateSelfApiKey, type CreateSelfApiKeyParams, CreateSeries, type CreateSeriesParams, CreateSubscription, type CreateSubscriptionParams, CreateSupportTicket, CreateSupportTicketNote, type CreateSupportTicketNoteParams, type CreateSupportTicketParams, CreateSurvey, type CreateSurveyParams, CreateSurveyQuestion, CreateSurveyQuestionChoice, type CreateSurveyQuestionChoiceParams, CreateSurveyQuestionChoiceTranslation, type CreateSurveyQuestionChoiceTranslationParams, type CreateSurveyQuestionParams, CreateSurveyQuestionTranslation, type CreateSurveyQuestionTranslationParams, CreateSurveySection, type CreateSurveySectionParams, CreateSurveySectionTranslation, type CreateSurveySectionTranslationParams, CreateSurveyTranslation, type CreateSurveyTranslationParams, CreateTaxIntegration, type CreateTaxIntegrationParams, CreateThread, CreateThreadCircle, CreateThreadCircleAccount, type CreateThreadCircleAccountParams, type CreateThreadCircleParams, CreateThreadMessage, CreateThreadMessageFile, type CreateThreadMessageFileParams, CreateThreadMessageImage, type CreateThreadMessageImageParams, type CreateThreadMessageParams, CreateThreadMessageReaction, type CreateThreadMessageReactionParams, CreateThreadMessageVideo, type CreateThreadMessageVideoParams, type CreateThreadParams, CreateTier, type CreateTierParams, Currency, type CursorQueryOptions, type CursorQueryParams, type CustomModule, type CustomModuleCreateInputs, CustomModulePosition, type CustomModuleTranslation, type CustomModuleTranslationUpdateInputs, type CustomModuleUpdateInputs, type CustomReport, type CustomReportCreateInputs, type CustomReportUpdateInputs, DASHBOARDS_QUERY_KEY, DASHBOARD_ATTRIBUTES_QUERY_KEY, DASHBOARD_QUERY_KEY, DASHBOARD_WIDGETS_QUERY_KEY, type Dashboard, type DashboardCreateInputs, type DashboardUpdateInputs, type DashboardWidget, type DashboardWidgetCreateInputs, type DashboardWidgetEndpoint, type DashboardWidgetUpdateInputs, DayOfWeek, DefaultAuthAction, DelegateRole, DeleteAccount, DeleteAccountAddress, type DeleteAccountAddressParams, DeleteAccountAttribute, type DeleteAccountAttributeParams, DeleteAccountInvitation, type DeleteAccountInvitationParams, DeleteAccountLead, type DeleteAccountLeadParams, type DeleteAccountParams, DeleteActivity, type DeleteActivityParams, DeleteAdvertisement, type DeleteAdvertisementParams, DeleteAnnouncement, type DeleteAnnouncementParams, DeleteAnnouncementTranslation, type DeleteAnnouncementTranslationParams, DeleteBenefit, type DeleteBenefitParams, DeleteBenefitTranslation, type DeleteBenefitTranslationParams, DeleteBooking, type DeleteBookingParams, DeleteBookingPlace, type DeleteBookingPlaceParams, DeleteBookingPlaceTranslation, type DeleteBookingPlaceTranslationParams, DeleteBookingSpace, DeleteBookingSpaceAvailability, type DeleteBookingSpaceAvailabilityParams, DeleteBookingSpaceBlackout, type DeleteBookingSpaceBlackoutParams, type DeleteBookingSpaceParams, DeleteBookingSpaceTranslation, type DeleteBookingSpaceTranslationParams, DeleteChannel, DeleteChannelContent, DeleteChannelContentGuest, type DeleteChannelContentGuestParams, DeleteChannelContentGuestTranslation, type DeleteChannelContentGuestTranslationParams, type DeleteChannelContentParams, DeleteChannelContentTranslation, type DeleteChannelContentTranslationParams, type DeleteChannelParams, DeleteChannelTranslation, type DeleteChannelTranslationParams, DeleteCustomModule, type DeleteCustomModuleParams, DeleteCustomModuleTranslation, type DeleteCustomModuleTranslationParams, DeleteCustomReport, type DeleteCustomReportParams, DeleteDashboard, type DeleteDashboardParams, DeleteDashboardWidget, type DeleteDashboardWidgetParams, DeleteEvent, DeleteEventActivation, DeleteEventActivationCompletion, type DeleteEventActivationCompletionParams, type DeleteEventActivationParams, DeleteEventActivationTranslation, type DeleteEventActivationTranslationParams, DeleteEventAddOn, type DeleteEventAddOnParams, DeleteEventAddOnTranslation, type DeleteEventAddOnTranslationParams, DeleteEventAttendee, DeleteEventAttendeePackage, type DeleteEventAttendeePackageParams, type DeleteEventAttendeeParams, DeleteEventCoupon, type DeleteEventCouponParams, DeleteEventEmailTranslation, type DeleteEventEmailTranslationParams, DeleteEventFaqSection, type DeleteEventFaqSectionParams, DeleteEventFaqSectionQuestion, type DeleteEventFaqSectionQuestionParams, DeleteEventFaqSectionQuestionTranslation, type DeleteEventFaqSectionQuestionTranslationParams, DeleteEventFaqSectionTranslation, type DeleteEventFaqSectionTranslationParams, DeleteEventFollowup, type DeleteEventFollowupParams, DeleteEventFollowupTranslation, type DeleteEventFollowupTranslationParams, DeleteEventMatch, type DeleteEventMatchParams, DeleteEventMediaItem, type DeleteEventMediaItemParams, DeleteEventPackage, type DeleteEventPackageParams, DeleteEventPackagePass, type DeleteEventPackagePassParams, DeleteEventPackageTranslation, type DeleteEventPackageTranslationParams, DeleteEventPage, type DeleteEventPageParams, DeleteEventPageTranslation, type DeleteEventPageTranslationParams, type DeleteEventParams, DeleteEventPass, type DeleteEventPassParams, DeleteEventPassType, type DeleteEventPassTypeParams, DeleteEventPassTypePriceSchedule, DeleteEventPassTypeRefundSchedule, DeleteEventPassTypeTranslation, type DeleteEventPassTypeTranslationParams, DeleteEventQuestion, DeleteEventQuestionChoice, type DeleteEventQuestionChoiceParams, DeleteEventQuestionChoiceTranslation, type DeleteEventQuestionChoiceTranslationParams, type DeleteEventQuestionParams, DeleteEventQuestionTranslation, type DeleteEventQuestionTranslationParams, DeleteEventRegistrationBypass, type DeleteEventRegistrationBypassParams, DeleteEventReservation, type DeleteEventReservationParams, DeleteEventRoomType, type DeleteEventRoomTypeParams, DeleteEventRoomTypeTranslation, type DeleteEventRoomTypeTranslationParams, DeleteEventRound, type DeleteEventRoundParams, DeleteEventSection, type DeleteEventSectionParams, DeleteEventSectionTranslation, type DeleteEventSectionTranslationParams, DeleteEventSession, DeleteEventSessionAccess, type DeleteEventSessionAccessParams, DeleteEventSessionLocation, type DeleteEventSessionLocationParams, DeleteEventSessionLocationTranslation, type DeleteEventSessionLocationTranslationParams, DeleteEventSessionMatch, type DeleteEventSessionMatchParams, type DeleteEventSessionParams, DeleteEventSessionQuestion, DeleteEventSessionQuestionChoice, type DeleteEventSessionQuestionChoiceParams, DeleteEventSessionQuestionChoiceTranslation, type DeleteEventSessionQuestionChoiceTranslationParams, type DeleteEventSessionQuestionParams, DeleteEventSessionQuestionTranslation, type DeleteEventSessionQuestionTranslationParams, DeleteEventSessionRound, type DeleteEventSessionRoundParams, DeleteEventSessionSection, type DeleteEventSessionSectionParams, DeleteEventSessionSectionTranslation, type DeleteEventSessionSectionTranslationParams, DeleteEventSessionTranslation, type DeleteEventSessionTranslationParams, DeleteEventSpeaker, type DeleteEventSpeakerParams, DeleteEventSpeakerTranslation, type DeleteEventSpeakerTranslationParams, DeleteEventSponsorship, DeleteEventSponsorshipLevel, type DeleteEventSponsorshipLevelParams, DeleteEventSponsorshipLevelTranslation, type DeleteEventSponsorshipLevelTranslationParams, type DeleteEventSponsorshipParams, DeleteEventSponsorshipTranslation, type DeleteEventSponsorshipTranslationParams, DeleteEventTrack, type DeleteEventTrackParams, DeleteEventTrackTranslation, type DeleteEventTrackTranslationParams, DeleteEventTranslation, type DeleteEventTranslationParams, DeleteFile, type DeleteFileParams, DeleteGroup, DeleteGroupInvitation, type DeleteGroupInvitationParams, type DeleteGroupParams, DeleteGroupRequest, type DeleteGroupRequestParams, DeleteGroupTranslation, type DeleteGroupTranslationParams, DeleteImage, type DeleteImageParams, DeleteIntegration, type DeleteIntegrationParams, DeleteInterest, type DeleteInterestParams, DeleteInvoice, DeleteInvoiceLineItem, type DeleteInvoiceLineItemParams, type DeleteInvoiceParams, DeleteLevel, type DeleteLevelParams, DeleteLevelTranslation, type DeleteLevelTranslationParams, DeleteLogin, type DeleteLoginParams, DeleteManyImages, type DeleteManyImagesParams, DeleteManyVideos, type DeleteManyVideosParams, DeleteMeetingLink, type DeleteMeetingLinkParams, DeleteMeetingParticipant, type DeleteMeetingParticipantParams, DeleteMembership, type DeleteMembershipParams, DeleteMembershipPrice, type DeleteMembershipPriceParams, DeleteOrganizationDomain, type DeleteOrganizationDomainParams, DeleteOrganizationPaymentIntegration, type DeleteOrganizationPaymentIntegrationParams, DeleteOrganizationSideEffect, type DeleteOrganizationSideEffectParams, DeleteOrganizationTeamMember, type DeleteOrganizationTeamMemberParams, DeleteOrganizationUser, type DeleteOrganizationUserParams, DeleteOrganizationWebhook, type DeleteOrganizationWebhookParams, DeletePreset, type DeletePresetParams, DeletePushDevice, type DeletePushDeviceParams, DeleteRoom, type DeleteRoomParams, DeleteSearchList, type DeleteSearchListParams, DeleteSearchListValue, type DeleteSearchListValueParams, DeleteSelfApiKey, type DeleteSelfApiKeyParams, DeleteSeries, type DeleteSeriesParams, DeleteSupportTicket, DeleteSupportTicketNote, type DeleteSupportTicketNoteParams, type DeleteSupportTicketParams, DeleteSurvey, type DeleteSurveyParams, DeleteSurveyQuestion, DeleteSurveyQuestionChoice, type DeleteSurveyQuestionChoiceParams, DeleteSurveyQuestionChoiceTranslation, type DeleteSurveyQuestionChoiceTranslationParams, type DeleteSurveyQuestionParams, DeleteSurveyQuestionTranslation, type DeleteSurveyQuestionTranslationParams, DeleteSurveySection, type DeleteSurveySectionParams, DeleteSurveySectionTranslation, type DeleteSurveySectionTranslationParams, DeleteSurveySubmission, type DeleteSurveySubmissionParams, DeleteSurveyTranslation, type DeleteSurveyTranslationParams, DeleteTaxIntegration, type DeleteTaxIntegrationParams, DeleteThread, DeleteThreadCircle, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, type DeleteThreadCircleParams, DeleteThreadMessage, DeleteThreadMessageFile, type DeleteThreadMessageFileParams, DeleteThreadMessageImage, type DeleteThreadMessageImageParams, type DeleteThreadMessageParams, DeleteThreadMessageReaction, type DeleteThreadMessageReactionParams, DeleteThreadMessageVideo, type DeleteThreadMessageVideoParams, type DeleteThreadParams, DeleteTier, type DeleteTierParams, DeleteUserImage, type DeleteUserImageParams, DeleteVideo, DeleteVideoCaption, type DeleteVideoCaptionParams, type DeleteVideoParams, DetachEventQuestionSearchList, type DetachEventQuestionSearchListParams, DetachEventSessionQuestionSearchList, type DetachEventSessionQuestionSearchListParams, DetachSurveyQuestionSearchList, type DetachSurveyQuestionSearchListParams, DisableLivestream, type DisableLivestreamParams, type DomainDetails, DownloadVideoCaption, type DownloadVideoCaptionParams, EMAIL_RECEIPTS_QUERY_KEY, EMAIL_RECEIPT_QUERY_KEY, ENTITY_USE_CODES_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACCESS_USERS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_COMPLETIONS_QUERY_KEY, EVENT_ACTIVATION_COMPLETION_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_PASSES_QUERY_KEY, EVENT_ADD_ON_PASS_TYPES_QUERY_KEY, EVENT_ADD_ON_QUERY_KEY, EVENT_ADD_ON_TIERS_QUERY_KEY, EVENT_ADD_ON_TRANSLATIONS_QUERY_KEY, EVENT_ADD_ON_TRANSLATION_QUERY_KEY, EVENT_ATTENDEES_QUERY_KEY, EVENT_ATTENDEE_COUPONS_QUERY_KEY, EVENT_ATTENDEE_PACKAGES_QUERY_KEY, EVENT_ATTENDEE_PACKAGE_QUERY_KEY, EVENT_ATTENDEE_PASSES_QUERY_KEY, EVENT_ATTENDEE_PAYMENTS_QUERY_KEY, EVENT_ATTENDEE_QUERY_KEY, EVENT_ATTENDEE_RESERVATIONS_QUERY_KEY, EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, EVENT_COUPONS_QUERY_KEY, EVENT_COUPON_PASSES_QUERY_KEY, EVENT_COUPON_PAYMENTS_QUERY_KEY, EVENT_COUPON_QUERY_KEY, EVENT_CO_HOSTS_QUERY_KEY, EVENT_DASHBOARD_QUESTIONS_QUERY_KEY, EVENT_EMAIL_QUERY_KEY, EVENT_EMAIL_TRANSLATIONS_QUERY_KEY, EVENT_EMAIL_TRANSLATION_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_FOLLOWUPS_QUERY_KEY, EVENT_FOLLOWUP_ADDONS_QUERY_KEY, EVENT_FOLLOWUP_PASS_TYPES_QUERY_KEY, EVENT_FOLLOWUP_QUERY_KEY, EVENT_FOLLOWUP_QUESTIONS_QUERY_KEY, EVENT_FOLLOWUP_TIERS_QUERY_KEY, EVENT_FOLLOWUP_TRANSLATIONS_QUERY_KEY, EVENT_FOLLOWUP_TRANSLATION_QUERY_KEY, EVENT_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_PASS_TYPES_QUERY_KEY, EVENT_MEDIA_ITEM_QUERY_KEY, EVENT_ON_SITE_QUERY_KEY, EVENT_PACKAGES_QUERY_KEY, EVENT_PACKAGE_PASSES_QUERY_KEY, EVENT_PACKAGE_PASS_QUERY_KEY, EVENT_PACKAGE_QUERY_KEY, EVENT_PACKAGE_TRANSLATIONS_QUERY_KEY, EVENT_PACKAGE_TRANSLATION_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_PASSES_QUERY_KEY, EVENT_PASS_ACCESSES_QUERY_KEY, EVENT_PASS_ADD_ONS_QUERY_KEY, EVENT_PASS_ATTENDEE_PASSES_QUERY_KEY, EVENT_PASS_MATCHES_QUERY_KEY, EVENT_PASS_PAYMENTS_QUERY_KEY, EVENT_PASS_QUERY_KEY, EVENT_PASS_QUESTION_FOLLOWUPS_QUERY_KEY, EVENT_PASS_QUESTION_SECTIONS_QUERY_KEY, EVENT_PASS_RESPONSES_QUERY_KEY, EVENT_PASS_RESPONSE_CHANGES_QUERY_KEY, EVENT_PASS_RESPONSE_QUERY_KEY, EVENT_PASS_TRANSFER_LOGS_QUERY_KEY, EVENT_PASS_TYPES_QUERY_KEY, EVENT_PASS_TYPE_ADD_ONS_QUERY_KEY, EVENT_PASS_TYPE_COUPONS_QUERY_KEY, EVENT_PASS_TYPE_PASSES_QUERY_KEY, EVENT_PASS_TYPE_PAYMENTS_QUERY_KEY, EVENT_PASS_TYPE_PRICE_SCHEDULES_QUERY_KEY, EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_KEY, EVENT_PASS_TYPE_QUERY_KEY, EVENT_PASS_TYPE_REFUND_SCHEDULES_QUERY_KEY, EVENT_PASS_TYPE_REFUND_SCHEDULE_QUERY_KEY, EVENT_PASS_TYPE_TIERS_QUERY_KEY, EVENT_PASS_TYPE_TRANSLATIONS_QUERY_KEY, EVENT_PASS_TYPE_TRANSLATION_QUERY_KEY, EVENT_PAYMENTS_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_SUMMARIES_QUERY_KEY, EVENT_QUESTION_SUMMARY_QUERY_KEY, EVENT_QUESTION_TRANSLATIONS_QUERY_KEY, EVENT_QUESTION_TRANSLATION_QUERY_KEY, EVENT_REGISTRATION_BYPASS_LIST_QUERY_KEY, EVENT_REGISTRATION_BYPASS_QUERY_KEY, EVENT_RESERVATIONS_QUERY_KEY, EVENT_RESERVATION_PASSES_QUERY_KEY, EVENT_RESERVATION_QUERY_KEY, EVENT_ROOMS_QUERY_KEY, EVENT_ROOM_QUERY_KEY, EVENT_ROOM_TYPES_QUERY_KEY, EVENT_ROOM_TYPE_PASSES_QUERY_KEY, EVENT_ROOM_TYPE_QUERY_KEY, EVENT_ROOM_TYPE_RESERVATIONS_QUERY_KEY, EVENT_ROOM_TYPE_ROOMS_QUERY_KEY, EVENT_ROOM_TYPE_TIERS_QUERY_KEY, EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_KEY, EVENT_ROOM_TYPE_TRANSLATION_QUERY_KEY, EVENT_ROUNDS_QUERY_KEY, EVENT_ROUND_MATCHES_QUERY_KEY, EVENT_ROUND_MATCH_PASSES_QUERY_KEY, EVENT_ROUND_MATCH_QUERY_KEY, EVENT_ROUND_PASSES_QUERY_KEY, EVENT_ROUND_QUESTIONS_QUERY_KEY, EVENT_ROUND_QUESTIONS_SUMMARY_QUERY_KEY, EVENT_SECTIONS_QUERY_KEY, EVENT_SECTION_ADDONS_QUERY_KEY, EVENT_SECTION_PASS_TYPES_QUERY_KEY, EVENT_SECTION_QUERY_KEY, EVENT_SECTION_QUESTIONS_QUERY_KEY, EVENT_SECTION_TIERS_QUERY_KEY, EVENT_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_SECTION_TRANSLATION_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSIONS_WITH_ROUNDS_QUERY_KEY, EVENT_SESSION_ACCESSES_QUERY_KEY, EVENT_SESSION_ACCESS_QUERY_KEY, EVENT_SESSION_ACCESS_RESPONSE_CHANGES_QUERY_KEY, EVENT_SESSION_ACCESS_SESSION_QUESTION_SECTIONS_QUERY_KEY, EVENT_SESSION_ACCOUNTS_QUERY_KEY, EVENT_SESSION_LOCATIONS_QUERY_KEY, EVENT_SESSION_LOCATION_QUERY_KEY, EVENT_SESSION_LOCATION_SESSIONS_QUERY_KEY, EVENT_SESSION_LOCATION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_LOCATION_TRANSLATION_QUERY_KEY, EVENT_SESSION_PASS_TYPES_QUERY_KEY, EVENT_SESSION_PAYMENTS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SESSION_QUESTIONS_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICES_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICE_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICE_QUESTIONS_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICE_TRANSLATION_QUERY_KEY, EVENT_SESSION_QUESTION_QUERY_KEY, EVENT_SESSION_QUESTION_RESPONSES_QUERY_KEY, EVENT_SESSION_QUESTION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_QUESTION_TRANSLATION_QUERY_KEY, EVENT_SESSION_ROUNDS_QUERY_KEY, EVENT_SESSION_ROUND_MATCHES_QUERY_KEY, EVENT_SESSION_ROUND_MATCH_PASSES_QUERY_KEY, EVENT_SESSION_ROUND_MATCH_QUERY_KEY, EVENT_SESSION_ROUND_PASSES_QUERY_KEY, EVENT_SESSION_ROUND_QUESTIONS_QUERY_KEY, EVENT_SESSION_ROUND_QUESTIONS_SUMMARY_QUERY_KEY, EVENT_SESSION_SECTIONS_QUERY_KEY, EVENT_SESSION_SECTION_QUERY_KEY, EVENT_SESSION_SECTION_QUESTIONS_QUERY_KEY, EVENT_SESSION_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_SECTION_TRANSLATION_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_SPONSORSHIPS_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_LEVEL_QUERY_KEY, EVENT_SPONSORSHIP_LEVEL_TRANSLATIONS_QUERY_KEY, EVENT_SPONSORSHIP_LEVEL_TRANSLATION_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORSHIP_TRANSLATIONS_QUERY_KEY, EVENT_SPONSORSHIP_TRANSLATION_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_SPONSOR_ACCOUNTS_QUERY_KEY, EVENT_TEMPLATES_QUERY_KEY, EVENT_THREADS_QUERY_KEY, EVENT_TIERS_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, EnableLivestream, type EnableLivestreamParams, type EntityUseCode, type Event, type EventActivation, type EventActivationCompletionCreateInputs, type EventActivationCompletionUpdateInputs, type EventActivationCreateInputs, type EventActivationTranslation, type EventActivationTranslationUpdateInputs, EventActivationType, type EventActivationUpdateInputs, type EventAddOn, type EventAddOnCreateInputs, type EventAddOnTranslation, type EventAddOnTranslationUpdateInputs, type EventAddOnUpdateInputs, EventAgendaVisibility, type EventAnnouncementFilters, type EventAttendee, type EventAttendeePackageCreateInputs, type EventAttendeePackageUpdateInputs, type EventAttendeeUpdateInputs, type EventBadgeFieldUpdateInputs, type EventCouponCreateInputs, type EventCouponUpdateInputs, type EventCreateInputs, type EventEmail, type EventEmailTranslation, type EventEmailTranslationUpdateInputs, EventEmailType, type EventEmailUpdateInputs, type EventFaqSectionCreateInputs, type EventFaqSectionQuestionCreateInputs, type EventFaqSectionQuestionTranslationUpdateInputs, type EventFaqSectionQuestionUpdateInputs, type EventFaqSectionTranslationUpdateInputs, type EventFaqSectionUpdateInputs, type EventFollowupCreateInputs, type EventFollowupTranslationUpdateInputs, type EventFollowupUpdateInputs, EventGetPassTypeCoupons, type EventListing, type EventMediaItem, type EventMediaItemCreateInputs, type EventMediaItemUpdateInputs, type EventOnSite, type EventOnSiteBadgeField, type EventPackage, type EventPackageCreateInputs, type EventPackagePass, type EventPackagePassCreateInputs, type EventPackagePassUpdateInputs, type EventPackageTranslation, type EventPackageTranslationUpdateInputs, type EventPackageUpdateInputs, type EventPage, type EventPageCreateInputs, type EventPageTranslation, type EventPageTranslationUpdateInputs, type EventPageUpdateInputs, type EventPass, type EventPassCreateInputs, type EventPassType, type EventPassTypePriceSchedule, type EventPassTypeRefundSchedule, type EventPassTypeTranslation, type EventPassUpdateInputs, type EventQuestionChoiceCreateInputs, type EventQuestionChoiceTranslationUpdateInputs, type EventQuestionChoiceUpdateInputs, type EventQuestionCreateInputs, type EventQuestionTranslationUpdateInputs, type EventQuestionUpdateInputs, type EventRegistrationBypassCreateInputs, type EventRegistrationBypassUpdateInputs, EventReportDateType, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypeAddOnDetailsUpdateInputs, type EventRoomTypeCreateInputs, type EventRoomTypePassTypeDetails, type EventRoomTypePassTypeDetailsUpdateInputs, type EventRoomTypeReservation, type EventRoomTypeReservationCreateInputs, type EventRoomTypeReservationUpdateInputs, type EventRoomTypeTranslation, type EventRoomTypeTranslationUpdateInputs, type EventRoomTypeUpdateInputs, type EventSectionCreateInputs, type EventSectionTranslationUpdateInputs, type EventSectionUpdateInputs, type EventSession, type EventSessionAccess, type EventSessionAccessUpdateInputs, type EventSessionCreateInputs, type EventSessionLocation, type EventSessionLocationCreateInputs, type EventSessionLocationTranslation, type EventSessionLocationTranslationUpdateInputs, type EventSessionLocationUpdateInputs, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionChoiceCreateInputs, type EventSessionQuestionChoiceSubQuestion, type EventSessionQuestionChoiceTranslation, type EventSessionQuestionChoiceTranslationUpdateInputs, type EventSessionQuestionChoiceUpdateInputs, type EventSessionQuestionCreateInputs, type EventSessionQuestionResponse, type EventSessionQuestionResponseChange, type EventSessionQuestionTranslation, type EventSessionQuestionTranslationUpdateInputs, EventSessionQuestionType, type EventSessionQuestionUpdateInputs, type EventSessionSection, type EventSessionSectionCreateInputs, type EventSessionSectionQuestion, type EventSessionSectionTranslation, type EventSessionSectionTranslationUpdateInputs, type EventSessionSectionUpdateInputs, type EventSessionTranslation, type EventSessionTranslationUpdateInputs, type EventSessionUpdateInputs, EventSource, type EventSpeaker, type EventSpeakerCreateInputs, type EventSpeakerTranslation, type EventSpeakerTranslationUpdateInputs, type EventSpeakerUpdateInputs, type EventSponsorship, type EventSponsorshipCreateInputs, type EventSponsorshipLevel, type EventSponsorshipLevelCreateInputs, type EventSponsorshipLevelTranslation, type EventSponsorshipLevelTranslationUpdateInputs, type EventSponsorshipLevelUpdateInputs, type EventSponsorshipTranslation, type EventSponsorshipTranslationUpdateInputs, type EventSponsorshipUpdateInputs, type EventTrack, type EventTrackCreateInputs, type EventTrackTranslation, type EventTrackTranslationUpdateInputs, type EventTrackUpdateInputs, type EventTranslation, type EventTranslationUpdateInputs, EventType, type EventUpdateInputs, ExportAccount, type ExportAccountParams, ExportStatus, FEATURED_CHANNELS_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_THREADS_QUERY_KEY, GROUP_TRANSLATIONS_QUERY_KEY, GROUP_TRANSLATION_QUERY_KEY, GenerateMeetingSessionSummary, type GenerateMeetingSessionSummaryParams, GenerateVideoCaptions, type GenerateVideoCaptionsParams, GetAPILog, GetAPILogs, GetAcccountEmailReceipts, GetAccount, GetAccountActivities, GetAccountAddress, GetAccountAddresses, GetAccountComments, GetAccountEvents, GetAccountFollowers, GetAccountFollowing, GetAccountGroups, GetAccountInterests, GetAccountInvitations, GetAccountLead, GetAccountLeads, GetAccountLevels, GetAccountLikes, GetAccountNotificationPreferences, GetAccountPayments, GetAccountSubscriptions, GetAccountThreads, GetAccountTiers, GetAccounts, GetActivities, GetActivity, GetActivityComments, GetActivityLikes, GetAdminAPI, GetAdvertisement, GetAdvertisementClicks, GetAdvertisementViews, GetAdvertisements, GetAllEventAddOns, GetAllEventPassTypes, GetAnnouncement, GetAnnouncementAudience, GetAnnouncementEmailReceipts, GetAnnouncementTranslation, GetAnnouncementTranslations, GetAnnouncements, GetAuthSession, GetAuthSessions, GetBaseInfiniteQueryKeys, GetBenefit, GetBenefitClicks, GetBenefitTranslation, GetBenefitTranslations, GetBenefits, GetBooking, GetBookingPlace, GetBookingPlaceBookings, GetBookingPlacePayments, GetBookingPlaceTranslation, GetBookingPlaceTranslations, GetBookingPlaces, GetBookingSpace, GetBookingSpaceAvailabilities, GetBookingSpaceAvailability, GetBookingSpaceBlackout, GetBookingSpaceBlackouts, GetBookingSpaceBookings, GetBookingSpacePayments, GetBookingSpaceSlots, GetBookingSpaceTranslation, GetBookingSpaceTranslations, GetBookingSpaces, GetChannel, GetChannelActivities, GetChannelContent, GetChannelContentActivities, GetChannelContentGuest, GetChannelContentGuestTranslation, GetChannelContentGuestTranslations, GetChannelContentGuests, GetChannelContentLikes, GetChannelContentTranslation, GetChannelContentTranslations, GetChannelContents, GetChannelSubscriber, GetChannelSubscribers, GetChannelTranslation, GetChannelTranslations, GetChannels, GetContents, GetCustomModule, GetCustomModuleTranslation, GetCustomModuleTranslations, GetCustomModules, GetCustomReport, GetCustomReportUsers, GetCustomReports, GetDashboard, GetDashboardAttributes, GetDashboardWidgets, GetDashboards, GetEmailReceipt, GetEmailReceipts, GetEntityUseCodes, GetErrorMessage, GetEvent, GetEventAccessUsers, GetEventActivation, GetEventActivationCompletion, GetEventActivationCompletions, GetEventActivationTranslation, GetEventActivationTranslations, GetEventActivations, GetEventActivities, GetEventAddOn, GetEventAddOnPassTypes, GetEventAddOnPasses, GetEventAddOnTiers, GetEventAddOnTranslation, GetEventAddOnTranslations, GetEventAddOns, GetEventAttendee, GetEventAttendeeCoupons, GetEventAttendeePackage, GetEventAttendeePackages, GetEventAttendeePasses, GetEventAttendeePayments, GetEventAttendeeReservations, GetEventAttendeeTransfersLogs, GetEventAttendees, GetEventCoHosts, GetEventCoupon, GetEventCouponPasses, GetEventCouponPayments, GetEventCoupons, GetEventDashboardQuestions, GetEventEmail, GetEventEmailTranslation, GetEventEmailTranslations, GetEventFaqSection, GetEventFaqSectionQuestion, GetEventFaqSectionQuestionTranslation, GetEventFaqSectionQuestionTranslations, GetEventFaqSectionQuestions, GetEventFaqSectionTranslation, GetEventFaqSectionTranslations, GetEventFaqSections, GetEventFollowup, GetEventFollowupAddOns, GetEventFollowupPassTypes, GetEventFollowupQuestions, GetEventFollowupTiers, GetEventFollowupTranslation, GetEventFollowupTranslations, GetEventFollowups, GetEventMediaItem, GetEventMediaItemPassTypes, GetEventMediaItems, GetEventOnSite, GetEventPackage, GetEventPackagePass, GetEventPackagePasses, GetEventPackageTranslation, GetEventPackageTranslations, GetEventPackages, GetEventPage, GetEventPageImages, GetEventPageTranslation, GetEventPageTranslations, GetEventPages, GetEventPass, GetEventPassAccesses, GetEventPassAddOns, GetEventPassAttendeePasses, GetEventPassMatches, GetEventPassPayments, GetEventPassQuestionFollowups, GetEventPassQuestionSections, GetEventPassResponse, GetEventPassResponseChanges, GetEventPassResponses, GetEventPassTransferLogs, GetEventPassType, GetEventPassTypeAddOns, GetEventPassTypePasses, GetEventPassTypePayments, GetEventPassTypePriceSchedule, GetEventPassTypePriceSchedules, GetEventPassTypeRefundSchedule, GetEventPassTypeRefundSchedules, GetEventPassTypeTiers, GetEventPassTypeTranslation, GetEventPassTypeTranslations, GetEventPassTypes, GetEventPasses, GetEventPayments, GetEventQuestion, GetEventQuestionChoice, GetEventQuestionChoiceSubQuestions, GetEventQuestionChoiceTranslation, GetEventQuestionChoiceTranslations, GetEventQuestionChoices, GetEventQuestionResponses, GetEventQuestionSummaries, GetEventQuestionSummary, GetEventQuestionTranslation, GetEventQuestionTranslations, GetEventQuestions, GetEventRegistrationBypass, GetEventRegistrationBypassList, GetEventReservation, GetEventReservationPasses, GetEventReservations, GetEventRoomType, GetEventRoomTypePasses, GetEventRoomTypeReservations, GetEventRoomTypeTiers, GetEventRoomTypeTranslation, GetEventRoomTypeTranslations, GetEventRoomTypes, GetEventRoundMatch, GetEventRoundMatchPasses, GetEventRoundMatches, GetEventRoundPasses, GetEventRoundQuestions, GetEventRoundQuestionsSummary, GetEventRounds, GetEventSection, GetEventSectionAddOns, GetEventSectionPassTypes, GetEventSectionQuestions, GetEventSectionTiers, GetEventSectionTranslation, GetEventSectionTranslations, GetEventSections, GetEventSession, GetEventSessionAccess, GetEventSessionAccessQuestionSections, GetEventSessionAccessResponseChanges, GetEventSessionAccesses, GetEventSessionAccounts, GetEventSessionLocation, GetEventSessionLocationSessions, GetEventSessionLocationTranslation, GetEventSessionLocationTranslations, GetEventSessionLocations, GetEventSessionPassTypes, GetEventSessionPayments, GetEventSessionQuestion, GetEventSessionQuestionChoice, GetEventSessionQuestionChoiceSubQuestions, GetEventSessionQuestionChoiceTranslation, GetEventSessionQuestionChoiceTranslations, GetEventSessionQuestionChoices, GetEventSessionQuestionResponses, GetEventSessionQuestionTranslation, GetEventSessionQuestionTranslations, GetEventSessionQuestions, GetEventSessionRoundMatch, GetEventSessionRoundMatchPasses, GetEventSessionRoundMatches, GetEventSessionRoundPasses, GetEventSessionRoundQuestions, GetEventSessionRoundQuestionsSummary, GetEventSessionRounds, GetEventSessionSection, GetEventSessionSectionQuestions, GetEventSessionSectionTranslation, GetEventSessionSectionTranslations, GetEventSessionSections, GetEventSessionSpeakers, GetEventSessionSponsors, GetEventSessionTracks, GetEventSessionTranslation, GetEventSessionTranslations, GetEventSessions, GetEventSessionsWithRounds, GetEventSpeaker, GetEventSpeakerSessions, GetEventSpeakerTranslation, GetEventSpeakerTranslations, GetEventSpeakers, GetEventSponsorAccounts, GetEventSponsors, GetEventSponsorship, GetEventSponsorshipLevel, GetEventSponsorshipLevelTranslation, GetEventSponsorshipLevelTranslations, GetEventSponsorshipLevels, GetEventSponsorshipTranslation, GetEventSponsorshipTranslations, GetEventSponsorships, GetEventThreads, GetEventTiers, GetEventTrack, GetEventTrackSessions, GetEventTrackSponsors, GetEventTrackTranslation, GetEventTrackTranslations, GetEventTracks, GetEventTranslation, GetEventTranslations, GetEventZplTemplateBadgeField, GetEventZplTemplateBadgeFields, GetEvents, GetFeaturedChannels, GetFile, GetFiles, GetGroup, GetGroupActivities, GetGroupEvents, GetGroupInterests, GetGroupInvitation, GetGroupInvitations, GetGroupMembers, GetGroupModerators, GetGroupRequest, GetGroupRequests, GetGroupSponsors, GetGroupThreads, GetGroupTranslation, GetGroupTranslations, GetGroups, GetImage, GetImageUsage, GetImageVariant, GetImages, GetImport, GetImportItems, GetImports, GetIntegration, GetIntegrations, GetInterest, GetInterestAccounts, GetInterestActivities, GetInterestChannels, GetInterestContents, GetInterestEvents, GetInterestGroups, GetInterests, GetInvoice, GetInvoiceLineItem, GetInvoiceLineItems, GetInvoices, GetLevel, GetLevelAccounts, GetLevelTranslation, GetLevelTranslations, GetLevels, GetLinkPreview, GetLivestream, GetLivestreamSessions, GetLivestreams, GetLogin, GetLoginAccounts, GetLoginAuthSessions, GetLoginDevices, GetLogins, GetMeeting, GetMeetingLink, GetMeetingLinks, GetMeetingLivestream, GetMeetingParticipant, GetMeetingParticipants, GetMeetingRecording, GetMeetingRecordings, GetMeetingSession, GetMeetingSessionMessages, GetMeetingSessionParticipant, GetMeetingSessionParticipants, GetMeetingSessionSummary, GetMeetingSessionTranscript, GetMeetingSessions, GetMeetings, GetMembership, GetMembershipPrice, GetMembershipPrices, GetMembershipSubscriptions, GetMembershipTiers, GetMemberships, GetOrganization, GetOrganizationAccountAttribute, GetOrganizationAccountAttributes, GetOrganizationDomain, GetOrganizationMembership, GetOrganizationModule, GetOrganizationModuleEditableTiers, GetOrganizationModuleEnabledTiers, GetOrganizationModules, GetOrganizationPaymentIntegration, GetOrganizationPaymentIntegrations, GetOrganizationPaymentLink, GetOrganizationSideEffect, GetOrganizationSideEffects, GetOrganizationSystemLog, GetOrganizationSystemLogs, GetOrganizationTeamMember, GetOrganizationTeamMembers, GetOrganizationUsers, GetOrganizationWebhook, GetOrganizationWebhooks, GetPayment, GetPayments, GetPreset, GetPresets, GetPushDevice, GetPushDevices, GetReport, GetReports, GetRequiredAttributes, GetRoom, GetRoomTypeRooms, GetRooms, GetSearchList, GetSearchListConnectedQuestions, GetSearchListValue, GetSearchListValues, GetSearchLists, GetSelf, GetSelfApiKey, GetSelfApiKeys, GetSelfOrgMembership, GetSelfOrganizations, GetSeries, GetSeriesEvents, GetSeriesList, GetSubscription, GetSubscriptionPayments, GetSubscriptions, GetSupportTicket, GetSupportTickets, GetSurvey, GetSurveyQuestion, GetSurveyQuestionChoice, GetSurveyQuestionChoiceSubQuestions, GetSurveyQuestionChoiceTranslation, GetSurveyQuestionChoiceTranslations, GetSurveyQuestionChoices, GetSurveyQuestionResponses, GetSurveyQuestionTranslation, GetSurveyQuestionTranslations, GetSurveyQuestions, GetSurveySection, GetSurveySectionQuestions, GetSurveySectionTranslation, GetSurveySectionTranslations, GetSurveySections, GetSurveySubmission, GetSurveySubmissionQuestionSections, GetSurveySubmissionResponseChanges, GetSurveySubmissions, GetSurveyTranslation, GetSurveyTranslations, GetSurveys, GetTaxCodes, GetTaxIntegration, GetTaxIntegrations, GetTaxLog, GetTaxLogs, GetTemplates, GetThread, GetThreadAccounts, GetThreadCircle, GetThreadCircleAccount, GetThreadCircleAccounts, GetThreadCircleThreads, GetThreadCircles, GetThreadMembers, GetThreadMessage, GetThreadMessageFiles, type GetThreadMessageFilesProps, GetThreadMessageImages, type GetThreadMessageImagesProps, type GetThreadMessageProps, GetThreadMessageReactions, type GetThreadMessageReactionsProps, GetThreadMessageVideos, type GetThreadMessageVideosProps, GetThreadMessages, GetThreadMessagesPoll, type GetThreadMessagesPollProps, type GetThreadMessagesProps, GetThreads, GetTier, GetTierAccounts, GetTierImport, GetTierImportItems, GetTierImports, GetTierSubscribers, GetTiers, GetVideo, GetVideoCaptions, GetVideoDownloadStatus, 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, IMPORT_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACCOUNTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_CHANNELS_QUERY_KEY, INTEREST_CONTENTS_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_QUERY_KEY, type ISupportedLocale, type Image, type ImageCreateInputs, ImageType, type ImageUpdateInputs, type ImageVariant, type ImageWCopyUri, ImpersonateAccount, type ImpersonateAccountParams, type Import, type ImportCreateInputs, type ImportItem, ImportItemStatus, ImportRooms, type ImportRoomsParams, ImportType, IndexEventPasses, type IndexEventPassesParams, type InfiniteQueryOptions, type InfiniteQueryParams, InitiateVideoDownload, type InitiateVideoDownloadParams, type Integration, type IntegrationCreateInputs, IntegrationType, type IntegrationUpdateInputs, type Interest, type InterestCreateInputs, type InterestInputs, 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, LINK_PREVIEW_QUERY_KEY, LIVESTREAMS_QUERY_KEY, LIVESTREAM_QUERY_KEY, LIVESTREAM_SESSIONS_QUERY_KEY, LOGINS_QUERY_KEY, LOGIN_ACCOUNTS_QUERY_KEY, LOGIN_AUTH_SESSIONS_QUERY_KEY, LOGIN_DEVICES_QUERY_KEY, LOGIN_QUERY_KEY, type Lead, type LeadCreateInputs, LeadStatus, type LeadUpdateInputs, type Level, type LevelCreateInputs, type LevelTranslationUpdateInputs, type LevelUpdateInputs, type Like, type LineChartSummaryData, type LinkInputs, type LinkPreview, type Livestream, type LivestreamSession, LocationQuestionOption, type Login, MEETINGS_QUERY_KEY, MEETING_LINKS_QUERY_KEY, MEETING_LINK_QUERY_KEY, MEETING_LIVESTREAM_QUERY_KEY, MEETING_PARTICIPANTS_QUERY_KEY, MEETING_PARTICIPANT_QUERY_KEY, MEETING_QUERY_KEY, MEETING_RECORDINGS_QUERY_KEY, MEETING_RECORDING_QUERY_KEY, MEETING_SESSIONS_QUERY_KEY, MEETING_SESSION_MESSAGES_QUERY_KEY, MEETING_SESSION_PARTICIPANTS_QUERY_KEY, MEETING_SESSION_PARTICIPANT_QUERY_KEY, MEETING_SESSION_QUERY_KEY, MEETING_SESSION_SUMMARY_QUERY_KEY, MEETING_SESSION_TRANSCRIPT_QUERY_KEY, MEMBERSHIPS_QUERY_KEY, MEMBERSHIP_PRICES_QUERY_KEY, MEMBERSHIP_PRICE_QUERY_KEY, MEMBERSHIP_QUERY_KEY, MEMBERSHIP_SUBSCRIPTIONS_QUERY_KEY, MEMBERSHIP_TIERS_QUERY_KEY, type Match, MatchQuestionType, type MatchUpdateInputs, type Meeting, type MeetingCreateInputs, type MeetingLink, type MeetingLinkCreateInputs, type MeetingLinkUpdateInputs, type MeetingParticipantCreateInputs, type MeetingParticipantUpdateInputs, type MeetingPresetCreateInputs, type MeetingPresetUpdateInputs, type MeetingRecording, type MeetingRecordingCreateInputs, type MeetingRecordingUpdateInputs, type MeetingSession, type MeetingSessionChatDownload, type MeetingSessionSummaryDownload, type MeetingSessionTranscriptDownload, type MeetingUpdateInputs, type Membership, type MembershipCreateInputs, type MembershipPrice, type MembershipPriceCreateInputs, MembershipPriceInterval, MembershipPriceType, type MembershipPriceUpdateInputs, type MembershipUpdateInputs, type MentionInputs, MergeInfinitePages, ModerationStatus, type ModulePermissions, type MutationParams, type Notification, type NotificationPreferences, type NotificationPreferencesCreateInputs, type NotificationPreferencesUpdateInputs, NotificationType, ORGANIZATION_ACCOUNT_ATTRIBUTES_QUERY_KEY, ORGANIZATION_ACCOUNT_ATTRIBUTE_QUERY_KEY, ORGANIZATION_DOMAIN_QUERY_KEY, ORGANIZATION_MEMBERSHIP_QUERY_KEY, ORGANIZATION_MODULES_QUERY_KEY, ORGANIZATION_MODULE_EDITABLE_TIERS_QUERY_KEY, ORGANIZATION_MODULE_ENABLED_TIERS_QUERY_KEY, ORGANIZATION_MODULE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATIONS_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_LINK_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SIDE_EFFECTS_QUERY_KEY, ORGANIZATION_SIDE_EFFECT_QUERY_KEY, ORGANIZATION_SYSTEM_LOGS_QUERY_KEY, ORGANIZATION_SYSTEM_LOG_QUERY_KEY, ORGANIZATION_TEAM_MEMBERS_QUERY_KEY, ORGANIZATION_TEAM_MEMBER_QUERY_KEY, ORGANIZATION_USERS_QUERY_KEY, ORGANIZATION_WEBHOOKS_QUERY_KEY, ORGANIZATION_WEBHOOK_QUERY_KEY, type Organization, OrganizationActionType, type OrganizationMembership, type OrganizationMembershipUpdateInputs, type OrganizationModule, OrganizationModuleType, type OrganizationModuleUpdateInputs, type OrganizationPageCreateInputs, type OrganizationPageTranslationUpdateInputs, type OrganizationPageUpdateInputs, type OrganizationTeamMemberCreateInputs, type OrganizationTeamMemberUpdateInputs, type OrganizationTrigger, OrganizationTriggerType, type OrganizationUpdateInputs, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, PRESETS_QUERY_KEY, PRESET_QUERY_KEY, PUSH_DEVICES_QUERY_KEY, PUSH_DEVICE_QUERY_KEY, PageType, type Participant, type PassAddOn, PassTypeAccessLevel, type PassTypeCreateInputs, type PassTypePriceScheduleCreateInputs, type PassTypePriceScheduleUpdateInputs, type PassTypeRefundScheduleCreateInputs, type PassTypeRefundScheduleUpdateInputs, type PassTypeTranslationUpdateInputs, type PassTypeUpdateInputs, PassTypeVisibility, type Payment, type PaymentIntegration, PaymentIntegrationType, type PaymentIntentPurchaseMetadataInputs, type PaymentLineItem, PaymentLineItemType, PaymentType, type PaymentUpdateInputs, type PaypalActivationFormParams, type Preset, PublishActivity, type PublishActivityParams, PurchaseStatus, type PushDevice, type PushDeviceCreateInputs, type PushDeviceUpdateInputs, PushService, type Question, REPORTS_QUERY_KEY, REPORT_QUERY_KEY, REQUIRED_ATTRIBUTES_QUERY_KEY, type RecordingAction, type RefundLineItem, RefundOrganizationPayment, type RefundOrganizationPaymentParams, RegenerateMeetingParticipantToken, type RegenerateMeetingParticipantTokenParams, type RegistrationBypass, type RegistrationFollowup, type RegistrationFollowupQuestion, type RegistrationFollowupTranslation, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionChoiceSubQuestion, type RegistrationQuestionChoiceTranslation, type RegistrationQuestionResponse, type RegistrationQuestionResponseChange, type RegistrationQuestionTranslation, RegistrationQuestionType, type RegistrationQuestionWithResponse, type RegistrationSection, type RegistrationSectionQuestion, type RegistrationSectionTranslation, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveAccountFollower, type RemoveAccountFollowerParams, RemoveAccountFollowing, type RemoveAccountFollowingParams, RemoveAccountGroup, type RemoveAccountGroupParams, RemoveAccountInterest, type RemoveAccountInterestParams, RemoveAccountTier, type RemoveAccountTierParams, RemoveAllChannelSubscribers, type RemoveAllChannelSubscribersParams, RemoveAllGroupMembers, type RemoveAllGroupMembersParams, RemoveChannelSubscriber, type RemoveChannelSubscriberParams, RemoveCustomReportUser, type RemoveCustomReportUserParams, RemoveEventAccessUser, RemoveEventAddOnPassType, type RemoveEventAddOnPassTypeParams, RemoveEventAddOnTier, type RemoveEventAddOnTierParams, RemoveEventBenefit, type RemoveEventBenefitParams, RemoveEventCoHost, type RemoveEventCoHostParams, RemoveEventFollowupAddOn, type RemoveEventFollowupAddOnParams, RemoveEventFollowupPassType, type RemoveEventFollowupPassTypeParams, RemoveEventFollowupQuestion, type RemoveEventFollowupQuestionParams, RemoveEventFollowupTier, type RemoveEventFollowupTierParams, RemoveEventMatchPass, type RemoveEventMatchPassParams, RemoveEventMediaItemPassType, type RemoveEventMediaItemPassTypeParams, RemoveEventPageImage, type RemoveEventPageImageParams, RemoveEventPassAddOn, type RemoveEventPassAddOnParams, RemoveEventPassTypeAddOn, type RemoveEventPassTypeAddOnParams, RemoveEventPassTypeTier, type RemoveEventPassTypeTierParams, RemoveEventQuestionChoiceSubQuestion, type RemoveEventQuestionChoiceSubQuestionParams, RemoveEventReservationPass, type RemoveEventReservationPassParams, RemoveEventRoomTypeTier, type RemoveEventRoomTypeTierParams, RemoveEventSectionAddOn, type RemoveEventSectionAddOnParams, RemoveEventSectionPassType, type RemoveEventSectionPassTypeParams, RemoveEventSectionQuestion, type RemoveEventSectionQuestionParams, RemoveEventSectionTier, type RemoveEventSectionTierParams, RemoveEventSessionAccount, type RemoveEventSessionAccountParams, RemoveEventSessionLocationSession, type RemoveEventSessionLocationSessionParams, RemoveEventSessionMatchPass, type RemoveEventSessionMatchPassParams, RemoveEventSessionPassType, type RemoveEventSessionPassTypeParams, RemoveEventSessionQuestionChoiceSubQuestion, type RemoveEventSessionQuestionChoiceSubQuestionParams, RemoveEventSessionSectionQuestion, type RemoveEventSessionSectionQuestionParams, RemoveEventSessionSpeaker, type RemoveEventSessionSpeakerParams, RemoveEventSessionSponsor, type RemoveEventSessionSponsorParams, RemoveEventSessionTrack, type RemoveEventSessionTrackParams, RemoveEventSpeakerSession, type RemoveEventSpeakerSessionParams, RemoveEventSponsorAccount, type RemoveEventSponsorAccountParams, RemoveEventTrackSession, type RemoveEventTrackSessionParams, RemoveEventTrackSponsor, type RemoveEventTrackSponsorParams, RemoveGroupEvent, type RemoveGroupEventParams, RemoveGroupInterest, type RemoveGroupInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveGroupModerator, type RemoveGroupModeratorParams, RemoveGroupSponsor, type RemoveGroupSponsorParams, RemoveLevelAccount, type RemoveLevelAccountParams, RemoveLoginAccount, type RemoveLoginAccountParams, RemoveMembershipTier, type RemoveMembershipTierParams, RemoveOrganizationModuleEditableTier, type RemoveOrganizationModuleEditableTierParams, RemoveOrganizationModuleEnabledTier, type RemoveOrganizationModuleEnabledTierParams, RemoveRoomFromRoomType, type RemoveRoomFromRoomTypeParams, RemoveSeriesEvent, type RemoveSeriesEventParams, RemoveSurveyQuestionChoiceSubQuestion, type RemoveSurveyQuestionChoiceSubQuestionParams, RemoveSurveySectionQuestion, type RemoveSurveySectionQuestionParams, RemoveTierAccounts, type RemoveTierAccountsParams, ReorderEventFaqSectionQuestions, type ReorderEventFaqSectionQuestionsParams, ReorderEventFollowupQuestions, type ReorderEventFollowupQuestionsParams, ReorderEventQuestionChoiceSubQuestions, type ReorderEventQuestionChoiceSubQuestionsParams, ReorderEventQuestionChoices, type ReorderEventQuestionChoicesParams, ReorderEventSectionQuestions, type ReorderEventSectionQuestionsParams, ReorderEventSessionQuestionChoiceSubQuestions, type ReorderEventSessionQuestionChoiceSubQuestionsParams, ReorderEventSessionQuestionChoices, type ReorderEventSessionQuestionChoicesParams, ReorderEventSessionSectionQuestions, type ReorderEventSessionSectionQuestionsParams, ReorderEventSponsorshipLevels, type ReorderEventSponsorshipLevelsParams, ReorderEventSponsorships, type ReorderEventSponsorshipsParams, ReorderSurveyQuestionChoiceSubQuestions, type ReorderSurveyQuestionChoiceSubQuestionsParams, ReorderSurveyQuestionChoices, type ReorderSurveyQuestionChoicesParams, ReorderSurveySectionQuestions, type ReorderSurveySectionQuestionsParams, type ReportFilters, ReportType, ResendRegistrationConfirmationEmail, type ResendRegistrationConfirmationEmailParams, ResetLivestreamStreamKey, type ResetLivestreamStreamKeyParams, RevertChannelContentToDraft, type RevertChannelContentToDraftParams, type Room, type RoomCreateInputs, type RoomUpdateInputs, type Round, type RoundEventQuestion, type RoundEventQuestionUpdataInputs, type RoundSessionQuestion, type RoundSessionQuestionUpdateInputs, SEARCHLISTS_QUERY_KEY, SEARCHLIST_CONNECTED_QUESTIONS_QUERY_KEY, SEARCHLIST_QUERY_KEY, SEARCHLIST_VALUES_QUERY_KEY, SEARCHLIST_VALUE_QUERY_KEY, SEARCH_ORGANIZATION_QUERY_KEY, SELF_API_KEYS_QUERY_KEY, SELF_API_KEY_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_ADDRESSES_QUERY_DATA, SET_ACCOUNT_COMMENTS_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_INVITATIONS_QUERY_DATA, SET_ACCOUNT_LEADS_QUERY_DATA, SET_ACCOUNT_LEAD_QUERY_DATA, SET_ACCOUNT_LEVELS_QUERY_DATA, SET_ACCOUNT_LIKES_QUERY_DATA, SET_ACCOUNT_NOTIFICATION_PREFERENCES_QUERY_DATA, SET_ACCOUNT_PAYMENTS_QUERY_DATA, SET_ACCOUNT_PUSH_DEVICES_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACCOUNT_SUBSCRIPTIONS_QUERY_DATA, SET_ACCOUNT_THREADS_QUERY_DATA, SET_ACCOUNT_TIERS_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENTS_QUERY_DATA, SET_ADVERTISEMENT_CLICKS_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ADVERTISEMENT_VIEWS_QUERY_DATA, SET_ALL_EVENT_ADD_ON_QUERY_DATA, SET_ALL_EVENT_PASS_TYPES_QUERY_DATA, SET_ANNOUNCEMENTS_QUERY_DATA, SET_ANNOUNCEMENT_AUDIENCE_QUERY_DATA, SET_ANNOUNCEMENT_EMAILS_QUERY_DATA, SET_ANNOUNCEMENT_QUERY_DATA, SET_ANNOUNCEMENT_TRANSLATIONS_QUERY_DATA, SET_ANNOUNCEMENT_TRANSLATION_QUERY_DATA, SET_API_LOGS_QUERY_DATA, SET_API_LOG_QUERY_DATA, SET_AUTH_SESSIONS_QUERY_DATA, SET_AUTH_SESSION_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_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACE_PAYMENTS_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_TRANSLATIONS_QUERY_DATA, SET_BOOKING_PLACE_TRANSLATION_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_BOOKING_SPACES_QUERY_DATA, SET_BOOKING_SPACE_AVAILABILITIES_QUERY_DATA, SET_BOOKING_SPACE_AVAILABILITY_QUERY_DATA, SET_BOOKING_SPACE_BLACKOUTS_QUERY_DATA, SET_BOOKING_SPACE_BLACKOUT_QUERY_DATA, SET_BOOKING_SPACE_BOOKINGS_QUERY_DATA, SET_BOOKING_SPACE_PAYMENTS_QUERY_DATA, SET_BOOKING_SPACE_QUERY_DATA, SET_BOOKING_SPACE_SLOTS_QUERY_DATA, SET_BOOKING_SPACE_TRANSLATIONS_QUERY_DATA, SET_BOOKING_SPACE_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_CONTENTS_QUERY_DATA, SET_CUSTOM_MODULES_QUERY_DATA, SET_CUSTOM_MODULE_QUERY_DATA, SET_CUSTOM_MODULE_TRANSLATIONS_QUERY_DATA, SET_CUSTOM_MODULE_TRANSLATION_QUERY_DATA, SET_CUSTOM_REPORTS_QUERY_DATA, SET_CUSTOM_REPORT_QUERY_DATA, SET_CUSTOM_REPORT_USERS_QUERY_DATA, SET_DASHBOARDS_QUERY_DATA, SET_DASHBOARD_ATTRIBUTES_QUERY_DATA, SET_DASHBOARD_QUERY_DATA, SET_DASHBOARD_WIDGETS_QUERY_DATA, SET_EMAIL_RECEIPTS_QUERY_DATA, SET_EMAIL_RECEIPT_QUERY_DATA, SET_ENTITY_USE_CODES_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETION_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_PASSES_QUERY_DATA, SET_EVENT_ADD_ON_PASS_TYPES_QUERY_DATA, SET_EVENT_ADD_ON_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_ATTENDEES_QUERY_DATA, SET_EVENT_ATTENDEE_PACKAGES_QUERY_DATA, SET_EVENT_ATTENDEE_PACKAGE_QUERY_DATA, SET_EVENT_ATTENDEE_PASSES_QUERY_DATA, SET_EVENT_ATTENDEE_PAYMENTS_QUERY_DATA, SET_EVENT_ATTENDEE_QUERY_DATA, SET_EVENT_ATTENDEE_RESERVATIONS_QUERY_DATA, SET_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_DATA, SET_EVENT_COUPONS_QUERY_DATA, SET_EVENT_COUPON_PASSES_QUERY_DATA, SET_EVENT_COUPON_PAYMENTS_QUERY_DATA, SET_EVENT_COUPON_QUERY_DATA, SET_EVENT_CO_HOSTS_QUERY_DATA, SET_EVENT_DASHBOARD_QUESTIONS_QUERY_DATA, SET_EVENT_EMAIL_QUERY_DATA, SET_EVENT_EMAIL_TRANSLATIONS_QUERY_DATA, SET_EVENT_EMAIL_TRANSLATION_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_FOLLOWUPS_QUERY_DATA, SET_EVENT_FOLLOWUP_ADDONS_QUERY_DATA, SET_EVENT_FOLLOWUP_PASS_TYPES_QUERY_DATA, SET_EVENT_FOLLOWUP_QUERY_DATA, SET_EVENT_FOLLOWUP_QUESTIONS_QUERY_DATA, SET_EVENT_FOLLOWUP_TIERS_QUERY_DATA, SET_EVENT_FOLLOWUP_TRANSLATIONS_QUERY_DATA, SET_EVENT_FOLLOWUP_TRANSLATION_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_QUERY_DATA, SET_EVENT_MEDIA_ITEM_PASS_TYPES_QUERY_DATA, SET_EVENT_MEDIA_ITEM_QUERY_DATA, SET_EVENT_ON_SITE_QUERY_DATA, SET_EVENT_PACKAGES_QUERY_DATA, SET_EVENT_PACKAGE_PASSES_QUERY_DATA, SET_EVENT_PACKAGE_PASS_QUERY_DATA, SET_EVENT_PACKAGE_QUERY_DATA, SET_EVENT_PACKAGE_TRANSLATIONS_QUERY_DATA, SET_EVENT_PACKAGE_TRANSLATION_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_PASS_ACCESSES_QUERY_DATA, SET_EVENT_PASS_ADD_ONS_QUERY_DATA, SET_EVENT_PASS_ATTENDEE_PASSES_QUERY_DATA, SET_EVENT_PASS_MATCHES_QUERY_DATA, SET_EVENT_PASS_PAYMENTS_QUERY_DATA, SET_EVENT_PASS_QUERY_DATA, SET_EVENT_PASS_QUESTION_FOLLOWUPS_QUERY_DATA, SET_EVENT_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_PASS_RESPONSES_QUERY_DATA, SET_EVENT_PASS_RESPONSE_CHANGES_QUERY_DATA, SET_EVENT_PASS_RESPONSE_QUERY_DATA, SET_EVENT_PASS_TRANSFER_LOGS_QUERY_DATA, SET_EVENT_PASS_TYPES_QUERY_DATA, SET_EVENT_PASS_TYPE_ADD_ONS_QUERY_DATA, SET_EVENT_PASS_TYPE_PASSES_QUERY_DATA, SET_EVENT_PASS_TYPE_PAYMENTS_QUERY_DATA, SET_EVENT_PASS_TYPE_PRICE_SCHEDULES_QUERY_DATA, SET_EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_DATA, SET_EVENT_PASS_TYPE_QUERY_DATA, SET_EVENT_PASS_TYPE_REFUND_SCHEDULES_QUERY_DATA, SET_EVENT_PASS_TYPE_REFUND_SCHEDULE_QUERY_DATA, SET_EVENT_PASS_TYPE_TIERS_QUERY_DATA, SET_EVENT_PASS_TYPE_TRANSLATIONS_QUERY_DATA, SET_EVENT_PASS_TYPE_TRANSLATION_QUERY_DATA, SET_EVENT_PAYMENTS_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_SUMMARIES_QUERY_DATA, SET_EVENT_QUESTION_SUMMARY_QUERY_DATA, SET_EVENT_QUESTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_QUESTION_TRANSLATION_QUERY_DATA, SET_EVENT_REGISTRATION_BYPASS_QUERY_DATA, SET_EVENT_REGISTRATION_COUPONS_QUERY_DATA, SET_EVENT_RESERVATIONS_QUERY_DATA, SET_EVENT_RESERVATION_PASSES_QUERY_DATA, SET_EVENT_RESERVATION_QUERY_DATA, SET_EVENT_ROOMS_QUERY_DATA, SET_EVENT_ROOM_QUERY_DATA, SET_EVENT_ROOM_TYPES_QUERY_DATA, SET_EVENT_ROOM_TYPE_PASSES_QUERY_DATA, SET_EVENT_ROOM_TYPE_QUERY_DATA, SET_EVENT_ROOM_TYPE_RESERVATIONS_QUERY_DATA, SET_EVENT_ROOM_TYPE_ROOMS_QUERY_DATA, SET_EVENT_ROOM_TYPE_TIERS_QUERY_DATA, SET_EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_DATA, SET_EVENT_ROOM_TYPE_TRANSLATION_QUERY_DATA, SET_EVENT_ROUNDS_QUERY_DATA, SET_EVENT_ROUND_MATCHES_QUERY_DATA, SET_EVENT_ROUND_MATCH_PASSES_QUERY_DATA, SET_EVENT_ROUND_MATCH_QUERY_DATA, SET_EVENT_ROUND_PASSES_QUERY_DATA, SET_EVENT_ROUND_QUESTIONS_QUERY_DATA, SET_EVENT_ROUND_QUESTIONS_SUMMARY_QUERY_DATA, SET_EVENT_SECTIONS_QUERY_DATA, SET_EVENT_SECTION_ADDONS_QUERY_DATA, SET_EVENT_SECTION_PASS_TYPES_QUERY_DATA, SET_EVENT_SECTION_QUERY_DATA, SET_EVENT_SECTION_QUESTIONS_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_SESSIONS_WITH_ROUNDS_QUERY_DATA, SET_EVENT_SESSION_ACCESSES_QUERY_DATA, SET_EVENT_SESSION_ACCESS_QUERY_DATA, SET_EVENT_SESSION_ACCESS_RESPONSE_CHANGES_QUERY_DATA, SET_EVENT_SESSION_ACCESS_SESSION_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_SESSION_ACCOUNTS_QUERY_DATA, SET_EVENT_SESSION_LOCATIONS_QUERY_DATA, SET_EVENT_SESSION_LOCATION_QUERY_DATA, SET_EVENT_SESSION_LOCATION_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_LOCATION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_LOCATION_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_PASS_TYPES_QUERY_DATA, SET_EVENT_SESSION_PAYMENTS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SESSION_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICES_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICE_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICE_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICE_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_QUESTION_QUERY_DATA, SET_EVENT_SESSION_QUESTION_RESPONSES_QUERY_DATA, SET_EVENT_SESSION_QUESTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_ROUNDS_QUERY_DATA, SET_EVENT_SESSION_ROUND_MATCHES_QUERY_DATA, SET_EVENT_SESSION_ROUND_MATCH_PASSES_QUERY_DATA, SET_EVENT_SESSION_ROUND_MATCH_QUERY_DATA, SET_EVENT_SESSION_ROUND_PASSES_QUERY_DATA, SET_EVENT_SESSION_ROUND_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_ROUND_QUESTIONS_SUMMARY_QUERY_DATA, SET_EVENT_SESSION_SECTIONS_QUERY_DATA, SET_EVENT_SESSION_SECTION_QUERY_DATA, SET_EVENT_SESSION_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_SECTION_TRANSLATION_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_SPONSORSHIPS_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVEL_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVEL_TRANSLATIONS_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVEL_TRANSLATION_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORSHIP_TRANSLATIONS_QUERY_DATA, SET_EVENT_SPONSORSHIP_TRANSLATION_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_SPONSOR_ACCOUNTS_QUERY_DATA, SET_EVENT_TEMPLATES_QUERY_DATA, SET_EVENT_THREADS_QUERY_DATA, SET_EVENT_TIERS_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_CHANNELS_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_THREADS_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_IMPORT_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INTEREST_ACCOUNTS_QUERY_DATA, SET_INTEREST_ACTIVITIES_QUERY_DATA, SET_INTEREST_CHANNELS_QUERY_DATA, SET_INTEREST_CONTENTS_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_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_LINK_PREVIEW_QUERY_DATA, SET_LIVESTREAMS_QUERY_DATA, SET_LIVESTREAM_QUERY_DATA, SET_LIVESTREAM_SESSIONS_QUERY_DATA, SET_LOGIN_AUTH_SESSIONS_QUERY_DATA, SET_MEETINGS_QUERY_DATA, SET_MEETING_LINKS_QUERY_DATA, SET_MEETING_LINK_QUERY_DATA, SET_MEETING_LIVESTREAM_QUERY_DATA, SET_MEETING_PARTICIPANTS_QUERY_DATA, SET_MEETING_PARTICIPANT_QUERY_DATA, SET_MEETING_QUERY_DATA, SET_MEETING_RECORDINGS_QUERY_DATA, SET_MEETING_RECORDING_QUERY_DATA, SET_MEETING_SESSIONS_QUERY_DATA, SET_MEETING_SESSION_MESSAGES_QUERY_DATA, SET_MEETING_SESSION_PARTICIPANTS_QUERY_DATA, SET_MEETING_SESSION_PARTICIPANT_QUERY_DATA, SET_MEETING_SESSION_QUERY_DATA, SET_MEETING_SESSION_SUMMARY_QUERY_DATA, SET_MEETING_SESSION_TRANSCRIPT_QUERY_DATA, SET_MEMBERSHIPS_QUERY_DATA, SET_MEMBERSHIP_PRICES_QUERY_DATA, SET_MEMBERSHIP_PRICE_QUERY_DATA, SET_MEMBERSHIP_QUERY_DATA, SET_MEMBERSHIP_SUBSCRIPTIONS_QUERY_DATA, SET_MEMBERSHIP_TIERS_QUERY_DATA, SET_ORGANIZATION_ACCOUNT_ATTRIBUTES_QUERY_DATA, SET_ORGANIZATION_ACCOUNT_ATTRIBUTE_QUERY_DATA, SET_ORGANIZATION_DOMAIN_QUERY_DATA, SET_ORGANIZATION_MEMBERSHIP_QUERY_DATA, SET_ORGANIZATION_MODULES_QUERY_DATA, SET_ORGANIZATION_MODULE_EDITABLE_TIERS_QUERY_DATA, SET_ORGANIZATION_MODULE_ENABLED_TIERS_QUERY_DATA, SET_ORGANIZATION_MODULE_QUERY_DATA, SET_ORGANIZATION_PAYMENT_INTEGRATIONS_QUERY_DATA, SET_ORGANIZATION_PAYMENT_INTEGRATION_QUERY_DATA, SET_ORGANIZATION_QUERY_DATA, SET_ORGANIZATION_SIDE_EFFECTS_QUERY_DATA, SET_ORGANIZATION_SIDE_EFFECT_QUERY_DATA, SET_ORGANIZATION_STRIPE_LINK_QUERY_DATA, SET_ORGANIZATION_SYSTEM_LOGS_QUERY_DATA, SET_ORGANIZATION_SYSTEM_LOG_QUERY_DATA, SET_ORGANIZATION_TEAM_MEMBERS_QUERY_DATA, SET_ORGANIZATION_TEAM_MEMBER_QUERY_DATA, SET_ORGANIZATION_USERS_QUERY_DATA, SET_ORGANIZATION_WEBHOOKS_QUERY_DATA, SET_ORGANIZATION_WEBHOOK_QUERY_DATA, SET_PASS_TYPE_COUPONS_QUERY_DATA, SET_PAYMENTS_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PRESETS_QUERY_DATA, SET_PRESET_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_REPORTS_QUERY_DATA, SET_REPORT_QUERY_DATA, SET_REQUIRED_ATTRIBUTES_QUERY_DATA, SET_SEARCHLISTS_QUERY_DATA, SET_SEARCHLIST_CONNECTED_QUESTIONS_QUERY_DATA, SET_SEARCHLIST_QUERY_DATA, SET_SEARCHLIST_VALUES_QUERY_DATA, SET_SEARCHLIST_VALUE_QUERY_DATA, SET_SEARCH_ORGANIZATION_QUERY_DATA, SET_SELF_API_KEYS_QUERY_DATA, SET_SELF_API_KEY_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_SUBSCRIPTIONS_QUERY_DATA, SET_SUBSCRIPTION_PAYMENTS_QUERY_DATA, SET_SUBSCRIPTION_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_SURVEYS_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_QUESTIONS_QUERY_DATA, SET_SURVEY_QUESTION_CHOICES_QUERY_DATA, SET_SURVEY_QUESTION_CHOICE_QUERY_DATA, SET_SURVEY_QUESTION_CHOICE_QUESTIONS_QUERY_DATA, SET_SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA, SET_SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_DATA, SET_SURVEY_QUESTION_QUERY_DATA, SET_SURVEY_QUESTION_RESPONSES_QUERY_DATA, SET_SURVEY_QUESTION_SECTIONS_QUERY_DATA, SET_SURVEY_QUESTION_TRANSLATIONS_QUERY_DATA, SET_SURVEY_QUESTION_TRANSLATION_QUERY_DATA, SET_SURVEY_SECTIONS_QUERY_DATA, SET_SURVEY_SECTION_QUERY_DATA, SET_SURVEY_SECTION_QUESTIONS_QUERY_DATA, SET_SURVEY_SECTION_TRANSLATIONS_QUERY_DATA, SET_SURVEY_SECTION_TRANSLATION_QUERY_DATA, SET_SURVEY_SUBMISSION_QUERY_DATA, SET_SURVEY_SUBMISSION_RESPONSE_CHANGES_QUERY_DATA, SET_SURVEY_TRANSLATIONS_QUERY_DATA, SET_SURVEY_TRANSLATION_QUERY_DATA, SET_TAX_CODES_QUERY_DATA, SET_TAX_INTEGRATIONS_QUERY_DATA, SET_TAX_INTEGRATION_QUERY_DATA, SET_TAX_LOGS_QUERY_DATA, SET_TAX_LOG_QUERY_DATA, SET_THREADS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_CIRCLE_THREADS_QUERY_DATA, SET_THREAD_MESSAGES_POLL_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_FILES_QUERY_DATA, SET_THREAD_MESSAGE_IMAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_MESSAGE_REACTIONS_QUERY_DATA, SET_THREAD_MESSAGE_VIDEOS_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TIERS_QUERY_DATA, SET_TIER_ACCOUNTS_QUERY_DATA, SET_TIER_IMPORT_QUERY_DATA, SET_TIER_QUERY_DATA, SET_TIER_SUBSCRIBERS_QUERY_DATA, SET_VIDEOS_QUERY_DATA, SET_VIDEO_CAPTIONS_QUERY_DATA, SET_VIDEO_DOWNLOAD_STATUS_QUERY_DATA, SET_VIDEO_QUERY_DATA, SUBSCRIPTIONS_QUERY_KEY, SUBSCRIPTION_PAYMENTS_QUERY_KEY, SUBSCRIPTION_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, SURVEYS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_QUESTIONS_QUERY_KEY, SURVEY_QUESTION_CHOICES_QUERY_KEY, SURVEY_QUESTION_CHOICE_QUERY_KEY, SURVEY_QUESTION_CHOICE_QUESTIONS_QUERY_KEY, SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY, SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_KEY, SURVEY_QUESTION_QUERY_KEY, SURVEY_QUESTION_RESPONSES_QUERY_KEY, SURVEY_QUESTION_SECTIONS_QUERY_KEY, SURVEY_QUESTION_TRANSLATIONS_QUERY_KEY, SURVEY_QUESTION_TRANSLATION_QUERY_KEY, SURVEY_SECTIONS_QUERY_KEY, SURVEY_SECTION_QUERY_KEY, SURVEY_SECTION_QUESTIONS_QUERY_KEY, SURVEY_SECTION_TRANSLATIONS_QUERY_KEY, SURVEY_SECTION_TRANSLATION_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_RESPONSE_CHANGES_QUERY_KEY, SURVEY_TRANSLATIONS_QUERY_KEY, SURVEY_TRANSLATION_QUERY_KEY, type Schedule, type SearchField, type SearchList, type SearchListConnectedQuestion, type SearchListCreateInputs, type SearchListUpdateInputs, type SearchListValue, type SearchListValueCreateInputs, type SearchListValueUpdateInputs, SearchOrganization, type SearchOrganizationFilters, type SegmentInputs, type Self, SelfLeaveOrganization, type SelfLeaveOrganizationParams, SendAnnouncementPreview, type SendAnnouncementPreviewParams, SendInvoice, type SendInvoiceParams, type Series, type SeriesCreateInputs, type SeriesUpdateInputs, SessionAccess, type SideEffect, SideEffectActionType, SideEffectTriggerType, type SingleQueryOptions, type SingleQueryParams, type SponsorshipLevelTranslation, type StandardReport, StartEventRoundMatchmaking, type StartEventRoundMatchmakingParams, StartEventSessionRoundMatchmaking, type StartEventSessionRoundMatchmakingParams, type StorageConfig, type StreamOutputCreateInputs, type Subscription, type SubscriptionCreateInputs, type SubscriptionPayment, SubscriptionStatus, type SubscriptionUpdateInputs, type SummaryData, type SupportTicket, type SupportTicketCreateInputs, type SupportTicketNote, type SupportTicketNoteCreateInputs, type SupportTicketNoteUpdateInputs, SupportTicketState, SupportTicketType, type SupportTicketUpdateInputs, SupportedLocale, type Survey, type SurveyCreateInputs, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionChoiceCreateInputs, type SurveyQuestionChoiceSubQuestion, type SurveyQuestionChoiceTranslation, type SurveyQuestionChoiceTranslationUpdateInputs, type SurveyQuestionChoiceUpdateInputs, type SurveyQuestionCreateInputs, type SurveyQuestionResponse, type SurveyQuestionResponseChange, type SurveyQuestionTranslation, type SurveyQuestionTranslationUpdateInputs, SurveyQuestionType, type SurveyQuestionUpdateInputs, type SurveySection, type SurveySectionCreateInputs, type SurveySectionQuestion, type SurveySectionTranslation, type SurveySectionTranslationUpdateInputs, type SurveySectionUpdateInputs, type SurveySubmission, type SurveySubmissionUpdateInputs, type SurveyTranslation, type SurveyTranslationUpdateInputs, type SurveyUpdateInputs, SwitchImage, type SwitchImageParams, type SystemEventLog, SystemEventLogStatus, TAX_CODES_QUERY_KEY, TAX_INTEGRATIONS_QUERY_KEY, TAX_INTEGRATION_QUERY_KEY, TAX_LOGS_QUERY_KEY, TAX_LOG_QUERY_KEY, THREADS_QUERY_KEY, THREAD_ACCOUNTS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_CIRCLE_THREADS_QUERY_KEY, THREAD_MEMBERS_QUERY_KEY, THREAD_MESSAGES_POLL_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_FILES_QUERY_KEY, THREAD_MESSAGE_IMAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_MESSAGE_REACTIONS_QUERY_KEY, THREAD_MESSAGE_VIDEOS_QUERY_KEY, THREAD_QUERY_KEY, TIERS_QUERY_KEY, TIER_ACCOUNTS_QUERY_KEY, TIER_IMPORTS_QUERY_KEY, TIER_IMPORT_ITEMS_QUERY_KEY, TIER_IMPORT_QUERY_KEY, TIER_QUERY_KEY, TIER_SUBSCRIBERS_QUERY_KEY, type TableChartSummaryData, type TaxCode, type TaxIntegration, type TaxIntegrationCreateInputs, type TaxIntegrationLog, TaxIntegrationType, type TaxIntegrationUpdateInputs, TaxLocationType, type TeamCreateInputs, type TeamMember, type TeamUpdateInputs, TestTaxIntegration, type TestTaxIntegrationParams, type Thread, type ThreadCircle, type ThreadCircleAccount, type ThreadCircleAccountCreateInputs, ThreadCircleAccountRole, type ThreadCircleAccountUpdateInputs, type ThreadCircleCreateInputs, ThreadCircleType, type ThreadCircleUpdateInputs, type ThreadCreateInputs, type ThreadInvitation, ThreadInvitationStatus, type ThreadMember, type ThreadMemberCreateInputs, ThreadMemberRole, type ThreadMemberUpdateInputs, type ThreadMessage, type ThreadMessageCreateInputs, type ThreadMessageEntity, type ThreadMessageReaction, type ThreadMessageReactionCreateInputs, type ThreadMessageReactionUpdateInputs, ThreadMessageType, type ThreadMessageUpdateInputs, ThreadType, type ThreadUpdateInputs, type Tier, type TierCreateInputs, type TierUpdateInputs, ToggleOrganizationPaymentIntegration, type ToggleOrganizationPaymentIntegrationParams, ToggleTaxIntegration, type ToggleTaxIntegrationParams, type Transfer, TransferEventPass, type TransferEventPassParams, type TransferLog, TransformPrice, type TriggerCreateInputs, type TriggerUpdateInputs, UpdateAccount, UpdateAccountAddress, type UpdateAccountAddressParams, UpdateAccountAttribute, type UpdateAccountAttributeParams, UpdateAccountLead, type UpdateAccountLeadParams, type UpdateAccountParams, UpdateActivity, type UpdateActivityParams, UpdateActivitySchedule, type UpdateActivityScheduleParams, UpdateAdvertisement, type UpdateAdvertisementParams, UpdateAnnouncement, type UpdateAnnouncementParams, UpdateAnnouncementSchedule, type UpdateAnnouncementScheduleParams, UpdateAnnouncementTranslation, type UpdateAnnouncementTranslationParams, UpdateBenefit, type UpdateBenefitParams, UpdateBenefitTranslation, type UpdateBenefitTranslationParams, UpdateBooking, type UpdateBookingParams, UpdateBookingPlace, type UpdateBookingPlaceParams, UpdateBookingPlaceTranslation, type UpdateBookingPlaceTranslationParams, UpdateBookingSpace, UpdateBookingSpaceAvailability, type UpdateBookingSpaceAvailabilityParams, UpdateBookingSpaceBlackout, type UpdateBookingSpaceBlackoutParams, type UpdateBookingSpaceParams, UpdateBookingSpaceTranslation, type UpdateBookingSpaceTranslationParams, UpdateChannel, UpdateChannelContent, UpdateChannelContentGuest, type UpdateChannelContentGuestParams, UpdateChannelContentGuestTranslation, type UpdateChannelContentGuestTranslationParams, type UpdateChannelContentParams, UpdateChannelContentPublishSchedule, type UpdateChannelContentPublishScheduleParams, UpdateChannelContentTranslation, type UpdateChannelContentTranslationParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateChannelTranslation, type UpdateChannelTranslationParams, UpdateCustomModule, type UpdateCustomModuleParams, UpdateCustomModuleTranslation, type UpdateCustomModuleTranslationParams, UpdateCustomReport, type UpdateCustomReportParams, UpdateDashboard, type UpdateDashboardParams, UpdateDashboardWidget, type UpdateDashboardWidgetParams, UpdateEvent, UpdateEventActivation, UpdateEventActivationCompletion, type UpdateEventActivationCompletionParams, type UpdateEventActivationParams, UpdateEventActivationTranslation, type UpdateEventActivationTranslationParams, UpdateEventAddOn, type UpdateEventAddOnParams, UpdateEventAddOnTranslation, type UpdateEventAddOnTranslationParams, UpdateEventAttendee, UpdateEventAttendeePackage, type UpdateEventAttendeePackageParams, type UpdateEventAttendeeParams, UpdateEventCheckinCode, type UpdateEventCheckinCodeParams, UpdateEventCoupon, type UpdateEventCouponParams, UpdateEventEmail, type UpdateEventEmailParams, UpdateEventEmailTranslation, type UpdateEventEmailTranslationParams, UpdateEventFaqSection, type UpdateEventFaqSectionParams, UpdateEventFaqSectionQuestion, type UpdateEventFaqSectionQuestionParams, UpdateEventFaqSectionQuestionTranslation, type UpdateEventFaqSectionQuestionTranslationParams, UpdateEventFaqSectionTranslation, type UpdateEventFaqSectionTranslationParams, UpdateEventFollowup, type UpdateEventFollowupParams, UpdateEventFollowupQuestion, type UpdateEventFollowupQuestionParams, UpdateEventFollowupTranslation, type UpdateEventFollowupTranslationParams, UpdateEventMatch, type UpdateEventMatchParams, UpdateEventMediaItem, type UpdateEventMediaItemParams, UpdateEventPackage, type UpdateEventPackageParams, UpdateEventPackagePass, type UpdateEventPackagePassParams, UpdateEventPackageTranslation, type UpdateEventPackageTranslationParams, UpdateEventPage, type UpdateEventPageParams, UpdateEventPageTranslation, type UpdateEventPageTranslationParams, type UpdateEventParams, UpdateEventPass, UpdateEventPassFollowupResponses, type UpdateEventPassFollowupResponsesParams, type UpdateEventPassParams, UpdateEventPassResponse, type UpdateEventPassResponseInputs, type UpdateEventPassResponseParams, UpdateEventPassResponses, type UpdateEventPassResponsesParams, UpdateEventPassSingleFollowupResponses, type UpdateEventPassSingleFollowupResponsesParams, UpdateEventPassType, type UpdateEventPassTypeParams, UpdateEventPassTypePriceSchedule, UpdateEventPassTypeRefundSchedule, UpdateEventPassTypeTranslation, type UpdateEventPassTypeTranslationParams, UpdateEventQuestion, UpdateEventQuestionChoice, type UpdateEventQuestionChoiceParams, UpdateEventQuestionChoiceSubQuestion, type UpdateEventQuestionChoiceSubQuestionParams, UpdateEventQuestionChoiceTranslation, type UpdateEventQuestionChoiceTranslationParams, type UpdateEventQuestionParams, UpdateEventQuestionTranslation, type UpdateEventQuestionTranslationParams, UpdateEventRegistrationBypass, type UpdateEventRegistrationBypassParams, UpdateEventReservation, type UpdateEventReservationParams, UpdateEventRoomType, UpdateEventRoomTypeAddOnDetails, type UpdateEventRoomTypeAddOnDetailsParams, type UpdateEventRoomTypeParams, UpdateEventRoomTypePassTypeDetails, type UpdateEventRoomTypePassTypeDetailsParams, UpdateEventRoomTypeTranslation, type UpdateEventRoomTypeTranslationParams, UpdateEventRoundQuestion, type UpdateEventRoundQuestionParams, UpdateEventSection, type UpdateEventSectionParams, UpdateEventSectionQuestion, type UpdateEventSectionQuestionParams, UpdateEventSectionTranslation, type UpdateEventSectionTranslationParams, UpdateEventSession, UpdateEventSessionAccess, type UpdateEventSessionAccessParams, UpdateEventSessionAccessResponses, type UpdateEventSessionAccessResponsesParams, UpdateEventSessionLocation, type UpdateEventSessionLocationParams, UpdateEventSessionLocationTranslation, type UpdateEventSessionLocationTranslationParams, UpdateEventSessionMatch, type UpdateEventSessionMatchParams, type UpdateEventSessionParams, UpdateEventSessionQuestion, UpdateEventSessionQuestionChoice, type UpdateEventSessionQuestionChoiceParams, UpdateEventSessionQuestionChoiceSubQuestion, type UpdateEventSessionQuestionChoiceSubQuestionParams, UpdateEventSessionQuestionChoiceTranslation, type UpdateEventSessionQuestionChoiceTranslationParams, type UpdateEventSessionQuestionParams, UpdateEventSessionQuestionTranslation, type UpdateEventSessionQuestionTranslationParams, UpdateEventSessionRoundQuestion, type UpdateEventSessionRoundQuestionParams, UpdateEventSessionSection, type UpdateEventSessionSectionParams, UpdateEventSessionSectionQuestion, type UpdateEventSessionSectionQuestionParams, UpdateEventSessionSectionTranslation, type UpdateEventSessionSectionTranslationParams, UpdateEventSessionTranslation, type UpdateEventSessionTranslationParams, UpdateEventSpeaker, type UpdateEventSpeakerParams, UpdateEventSpeakerTranslation, type UpdateEventSpeakerTranslationParams, UpdateEventSponsorship, UpdateEventSponsorshipLevel, type UpdateEventSponsorshipLevelParams, UpdateEventSponsorshipLevelTranslation, type UpdateEventSponsorshipLevelTranslationParams, type UpdateEventSponsorshipParams, UpdateEventSponsorshipTranslation, type UpdateEventSponsorshipTranslationParams, 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, UpdateIntegration, type UpdateIntegrationParams, UpdateInterest, type UpdateInterestParams, UpdateInvoice, UpdateInvoiceLineItem, type UpdateInvoiceLineItemParams, type UpdateInvoiceParams, UpdateLevel, type UpdateLevelParams, UpdateLevelTranslation, type UpdateLevelTranslationParams, UpdateLoginEmail, type UpdateLoginEmailParams, UpdateLoginPassword, type UpdateLoginPasswordParams, UpdateMeeting, UpdateMeetingLink, type UpdateMeetingLinkParams, type UpdateMeetingParams, UpdateMeetingParticipant, type UpdateMeetingParticipantParams, UpdateMembership, type UpdateMembershipParams, UpdateMembershipPrice, type UpdateMembershipPriceParams, UpdateOrganization, UpdateOrganizationDomain, type UpdateOrganizationDomainParams, UpdateOrganizationIntegrations, type UpdateOrganizationIntegrationsParams, UpdateOrganizationMembership, type UpdateOrganizationMembershipParams, UpdateOrganizationModule, type UpdateOrganizationModuleParams, type UpdateOrganizationParams, UpdateOrganizationTeamMember, type UpdateOrganizationTeamMemberParams, UpdateOrganizationWebhook, type UpdateOrganizationWebhookParams, UpdatePayment, type UpdatePaymentParams, UpdatePreset, type UpdatePresetParams, UpdateRoom, type UpdateRoomParams, UpdateSearchList, type UpdateSearchListParams, UpdateSearchListValue, type UpdateSearchListValueParams, UpdateSelf, type UpdateSelfParams, UpdateSeries, type UpdateSeriesParams, UpdateSubscription, type UpdateSubscriptionParams, UpdateSupportTicket, type UpdateSupportTicketParams, UpdateSurvey, type UpdateSurveyParams, UpdateSurveyQuestion, UpdateSurveyQuestionChoice, type UpdateSurveyQuestionChoiceParams, UpdateSurveyQuestionChoiceSubQuestion, type UpdateSurveyQuestionChoiceSubQuestionParams, UpdateSurveyQuestionChoiceTranslation, type UpdateSurveyQuestionChoiceTranslationParams, type UpdateSurveyQuestionParams, UpdateSurveyQuestionTranslation, type UpdateSurveyQuestionTranslationParams, UpdateSurveySection, type UpdateSurveySectionParams, UpdateSurveySectionQuestion, type UpdateSurveySectionQuestionParams, UpdateSurveySectionTranslation, type UpdateSurveySectionTranslationParams, UpdateSurveySubmission, type UpdateSurveySubmissionParams, UpdateSurveySubmissionResponses, type UpdateSurveySubmissionResponsesParams, UpdateSurveyTranslation, type UpdateSurveyTranslationParams, UpdateTaxIntegration, type UpdateTaxIntegrationParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMember, type UpdateThreadMemberParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UpdateTier, type UpdateTierParams, UpdateUserImage, type UpdateUserImageParams, UpdateVideo, type UpdateVideoParams, UploadFile, type UploadFileParams, UploadVideoCaptions, type UploadVideoCaptionsParams, type User, type UserApiKey, type UserApiKeyCreateInputs, type UserCreateInputs, type UserImageUpdateInputs, UserRole, type UserUpdateInputs, VIDEOS_QUERY_KEY, VIDEO_CAPTIONS_QUERY_KEY, VIDEO_DOWNLOAD_STATUS_QUERY_KEY, VIDEO_QUERY_KEY, VerifyOrganizationWebhook, type VerifyOrganizationWebhookParams, type Video, type VideoCaption, type VideoDownloadResult, type VideoDownloadStatus, VideoSource, VideoStatus, type VideoUpdateInputs, VoidInvoice, type VoidInvoiceParams, type Webhook, type WebhookCreateInputs, type WebhookUpdateInputs, WidgetCategory, WidgetType, isUUID, setFirstPageData, useAcceptGroupRequest, useAddAccountFollower, useAddAccountFollowing, useAddAccountGroup, useAddAccountInterest, useAddAccountTier, useAddChannelSubscriber, useAddCustomReportUser, useAddEventAccessUser, useAddEventAddOnPassType, useAddEventAddOnTier, useAddEventBenefit, useAddEventCoHost, useAddEventFollowupAddOn, useAddEventFollowupPassType, useAddEventFollowupQuestion, useAddEventFollowupTier, useAddEventMatchPass, useAddEventMediaItemPassType, useAddEventPageImage, useAddEventPassAddOn, useAddEventPassTypeAddOn, useAddEventPassTypeTier, useAddEventQuestionChoiceSubQuestion, useAddEventReservationPass, useAddEventRoomTypeTier, useAddEventSectionAddOn, useAddEventSectionPassType, useAddEventSectionQuestion, useAddEventSectionTier, useAddEventSessionAccount, useAddEventSessionLocationSession, useAddEventSessionMatchPass, useAddEventSessionPassType, useAddEventSessionQuestionChoiceSubQuestion, useAddEventSessionSectionQuestion, useAddEventSessionSpeaker, useAddEventSessionSponsor, useAddEventSessionTrack, useAddEventSpeakerSession, useAddEventSponsorAccount, useAddEventTrackSession, useAddEventTrackSponsor, useAddGroupEvent, useAddGroupInterest, useAddGroupMember, useAddGroupModerator, useAddGroupSponsor, useAddLevelAccount, useAddLoginAccount, useAddMeetingLivestream, useAddMembershipTier, useAddOrganizationModuleEditableTier, useAddOrganizationModuleEnabledTier, useAddOrganizationUser, useAddRoomToRoomType, useAddSeriesEvent, useAddSurveyQuestionChoiceSubQuestion, useAddSurveySectionQuestion, useArchiveActivity, useAttachEventQuestionSearchList, useAttachEventSessionQuestionSearchList, useAttachSurveyQuestionSearchList, useBulkUploadSearchListValues, useCancelActivitySchedule, useCancelAnnouncementSchedule, useCancelChannelContentPublishSchedule, useCancelEventPass, useCancelGroupInvitation, useCancelSubscription, useCloneEvent, useConfirmLogin, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateAccount, useCreateAccountAddress, useCreateAccountAttribute, useCreateAccountInvitations, useCreateActivity, useCreateAdvertisement, useCreateAnnouncement, useCreateAnnouncementTranslation, useCreateBenefit, useCreateBenefitTranslation, useCreateBooking, useCreateBookingPlace, useCreateBookingPlaceTranslation, useCreateBookingSpace, useCreateBookingSpaceAvailability, useCreateBookingSpaceBlackout, useCreateBookingSpaceTranslation, useCreateChannel, useCreateChannelContent, useCreateChannelContentGuest, useCreateChannelContentGuestTranslation, useCreateChannelContentTranslation, useCreateChannelTranslation, useCreateCustomModule, useCreateCustomModuleTranslation, useCreateCustomReport, useCreateDashboard, useCreateDashboardWidget, useCreateEvent, useCreateEventActivation, useCreateEventActivationCompletion, useCreateEventActivationTranslation, useCreateEventAddOn, useCreateEventAddOnTranslation, useCreateEventAttendee, useCreateEventAttendeePackage, useCreateEventCoupon, useCreateEventEmailTranslation, useCreateEventFaqSection, useCreateEventFaqSectionQuestion, useCreateEventFaqSectionQuestionTranslation, useCreateEventFaqSectionTranslation, useCreateEventFollowup, useCreateEventFollowupTranslation, useCreateEventMatch, useCreateEventMediaItem, useCreateEventPackage, useCreateEventPackagePass, useCreateEventPackageTranslation, useCreateEventPage, useCreateEventPageTranslation, useCreateEventPass, useCreateEventPassType, useCreateEventPassTypePriceSchedule, useCreateEventPassTypeRefundSchedule, useCreateEventPassTypeTranslation, useCreateEventQuestion, useCreateEventQuestionChoice, useCreateEventQuestionChoiceTranslation, useCreateEventQuestionTranslation, useCreateEventRegistrationBypass, useCreateEventReservation, useCreateEventRoomType, useCreateEventRoomTypeTranslation, useCreateEventRound, useCreateEventSection, useCreateEventSectionTranslation, useCreateEventSession, useCreateEventSessionAccess, useCreateEventSessionLocation, useCreateEventSessionLocationTranslation, useCreateEventSessionMatch, useCreateEventSessionQuestion, useCreateEventSessionQuestionChoice, useCreateEventSessionQuestionChoiceTranslation, useCreateEventSessionQuestionTranslation, useCreateEventSessionRound, useCreateEventSessionSection, useCreateEventSessionSectionTranslation, useCreateEventSessionTranslation, useCreateEventSpeaker, useCreateEventSpeakerTranslation, useCreateEventSponsorship, useCreateEventSponsorshipLevel, useCreateEventSponsorshipLevelTranslation, useCreateEventSponsorshipTranslation, useCreateEventTrack, useCreateEventTrackTranslation, useCreateEventTranslation, useCreateGroup, useCreateGroupInvitations, useCreateGroupTranslation, useCreateImage, useCreateImport, useCreateIntegration, useCreateInterest, useCreateInvoice, useCreateInvoiceLineItem, useCreateLevel, useCreateLevelTranslation, useCreateMeeting, useCreateMeetingLink, useCreateMeetingParticipant, useCreateMembership, useCreateMembershipPrice, useCreateOrganizationPaymentIntegration, useCreateOrganizationSideEffect, useCreateOrganizationTeamMember, useCreateOrganizationWebhook, useCreatePreset, useCreateRoom, useCreateSearchList, useCreateSearchListValue, useCreateSelfApiKey, useCreateSeries, useCreateSubscription, useCreateSupportTicket, useCreateSupportTicketNote, useCreateSurvey, useCreateSurveyQuestion, useCreateSurveyQuestionChoice, useCreateSurveyQuestionChoiceTranslation, useCreateSurveyQuestionTranslation, useCreateSurveySection, useCreateSurveySectionTranslation, useCreateSurveyTranslation, useCreateTaxIntegration, useCreateThread, useCreateThreadCircle, useCreateThreadCircleAccount, useCreateThreadMessage, useCreateThreadMessageFile, useCreateThreadMessageImage, useCreateThreadMessageReaction, useCreateThreadMessageVideo, useCreateTier, useDeleteAccount, useDeleteAccountAddress, useDeleteAccountAttribute, useDeleteAccountInvitation, useDeleteAccountLead, useDeleteActivity, useDeleteAdvertisement, useDeleteAnnouncement, useDeleteAnnouncementTranslation, useDeleteBenefit, useDeleteBenefitTranslation, useDeleteBooking, useDeleteBookingPlace, useDeleteBookingPlaceTranslation, useDeleteBookingSpace, useDeleteBookingSpaceAvailability, useDeleteBookingSpaceBlackout, useDeleteBookingSpaceTranslation, useDeleteChannel, useDeleteChannelContent, useDeleteChannelContentGuest, useDeleteChannelContentGuestTranslation, useDeleteChannelContentTranslation, useDeleteChannelTranslation, useDeleteCustomModule, useDeleteCustomModuleTranslation, useDeleteCustomReport, useDeleteDashboard, useDeleteDashboardWidget, useDeleteEvent, useDeleteEventActivation, useDeleteEventActivationCompletion, useDeleteEventActivationTranslation, useDeleteEventAddOn, useDeleteEventAddOnTranslation, useDeleteEventAttendee, useDeleteEventAttendeePackage, useDeleteEventCoupon, useDeleteEventEmailTranslation, useDeleteEventFaqSection, useDeleteEventFaqSectionQuestion, useDeleteEventFaqSectionQuestionTranslation, useDeleteEventFaqSectionTranslation, useDeleteEventFollowup, useDeleteEventFollowupTranslation, useDeleteEventMatch, useDeleteEventMediaItem, useDeleteEventPackage, useDeleteEventPackagePass, useDeleteEventPackageTranslation, useDeleteEventPage, useDeleteEventPageTranslation, useDeleteEventPass, useDeleteEventPassType, useDeleteEventPassTypePriceSchedule, useDeleteEventPassTypeRefundSchedule, useDeleteEventPassTypeTranslation, useDeleteEventQuestion, useDeleteEventQuestionChoice, useDeleteEventQuestionChoiceTranslation, useDeleteEventQuestionTranslation, useDeleteEventRegistrationBypass, useDeleteEventReservation, useDeleteEventRoomType, useDeleteEventRoomTypeTranslation, useDeleteEventRound, useDeleteEventSection, useDeleteEventSectionTranslation, useDeleteEventSession, useDeleteEventSessionAccess, useDeleteEventSessionLocation, useDeleteEventSessionLocationTranslation, useDeleteEventSessionMatch, useDeleteEventSessionQuestion, useDeleteEventSessionQuestionChoice, useDeleteEventSessionQuestionChoiceTranslation, useDeleteEventSessionQuestionTranslation, useDeleteEventSessionRound, useDeleteEventSessionSection, useDeleteEventSessionSectionTranslation, useDeleteEventSessionTranslation, useDeleteEventSpeaker, useDeleteEventSpeakerTranslation, useDeleteEventSponsorship, useDeleteEventSponsorshipLevel, useDeleteEventSponsorshipLevelTranslation, useDeleteEventSponsorshipTranslation, useDeleteEventTrack, useDeleteEventTrackTranslation, useDeleteEventTranslation, useDeleteFile, useDeleteGroup, useDeleteGroupInvitation, useDeleteGroupRequest, useDeleteGroupTranslation, useDeleteImage, useDeleteIntegration, useDeleteInterest, useDeleteInvoice, useDeleteInvoiceLineItem, useDeleteLevel, useDeleteLevelTranslation, useDeleteLogin, useDeleteManyImages, useDeleteManyVideos, useDeleteMeetingLink, useDeleteMeetingParticipant, useDeleteMembership, useDeleteMembershipPrice, useDeleteOrganizationDomain, useDeleteOrganizationPaymentIntegration, useDeleteOrganizationSideEffect, useDeleteOrganizationTeamMember, useDeleteOrganizationUser, useDeleteOrganizationWebhook, useDeletePreset, useDeletePushDevice, useDeleteRoom, useDeleteSearchList, useDeleteSearchListValue, useDeleteSelfApiKey, useDeleteSeries, useDeleteSupportTicket, useDeleteSupportTicketNote, useDeleteSurvey, useDeleteSurveyQuestion, useDeleteSurveyQuestionChoice, useDeleteSurveyQuestionChoiceTranslation, useDeleteSurveyQuestionTranslation, useDeleteSurveySection, useDeleteSurveySectionTranslation, useDeleteSurveySubmission, useDeleteSurveyTranslation, useDeleteTaxIntegration, useDeleteThread, useDeleteThreadCircle, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDeleteThreadMessageFile, useDeleteThreadMessageImage, useDeleteThreadMessageReaction, useDeleteThreadMessageVideo, useDeleteTier, useDeleteUserImage, useDeleteVideo, useDeleteVideoCaption, useDetachEventQuestionSearchList, useDetachEventSessionQuestionSearchList, useDetachSurveyQuestionSearchList, useDisableLivestream, useDownloadVideoCaption, useEnableLivestream, useEventGetPassTypeCoupons, useExportAccount, useGenerateMeetingSessionSummary, useGenerateVideoCaptions, useGetAPILog, useGetAPILogs, useGetAcccountEmailReceipts, useGetAccount, useGetAccountActivities, useGetAccountAddress, useGetAccountAddresses, useGetAccountComments, useGetAccountEvents, useGetAccountFollowers, useGetAccountFollowing, useGetAccountGroups, useGetAccountInterests, useGetAccountInvitations, useGetAccountLead, useGetAccountLeads, useGetAccountLevels, useGetAccountLikes, useGetAccountNotificationPreferences, useGetAccountPayments, useGetAccountSubscriptions, useGetAccountThreads, useGetAccountTiers, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityLikes, useGetAdvertisement, useGetAdvertisementClicks, useGetAdvertisementViews, useGetAdvertisements, useGetAllEventAddOns, useGetAllEventPassTypes, useGetAnnouncement, useGetAnnouncementAudience, useGetAnnouncementEmailReceipts, useGetAnnouncementTranslation, useGetAnnouncementTranslations, useGetAnnouncements, useGetAuthSession, useGetAuthSessions, useGetBenefit, useGetBenefitClicks, useGetBenefitTranslation, useGetBenefitTranslations, useGetBenefits, useGetBooking, useGetBookingPlace, useGetBookingPlaceBookings, useGetBookingPlacePayments, useGetBookingPlaceTranslation, useGetBookingPlaceTranslations, useGetBookingPlaces, useGetBookingSpace, useGetBookingSpaceAvailabilities, useGetBookingSpaceAvailability, useGetBookingSpaceBlackout, useGetBookingSpaceBlackouts, useGetBookingSpaceBookings, useGetBookingSpacePayments, useGetBookingSpaceSlots, useGetBookingSpaceTranslation, useGetBookingSpaceTranslations, useGetBookingSpaces, useGetChannel, useGetChannelActivities, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuest, useGetChannelContentGuestTranslation, useGetChannelContentGuestTranslations, useGetChannelContentGuests, useGetChannelContentLikes, useGetChannelContentTranslation, useGetChannelContentTranslations, useGetChannelContents, useGetChannelSubscriber, useGetChannelSubscribers, useGetChannelTranslation, useGetChannelTranslations, useGetChannels, useGetContents, useGetCustomModule, useGetCustomModuleTranslation, useGetCustomModuleTranslations, useGetCustomModules, useGetCustomReport, useGetCustomReportUsers, useGetCustomReports, useGetDashboard, useGetDashboardAttributes, useGetDashboardWidgets, useGetDashboards, useGetEmailReceipt, useGetEmailReceipts, useGetEntityUseCodes, useGetEvent, useGetEventAccessUsers, useGetEventActivation, useGetEventActivationCompletion, useGetEventActivationCompletions, useGetEventActivationTranslation, useGetEventActivationTranslations, useGetEventActivations, useGetEventActivities, useGetEventAddOn, useGetEventAddOnPassTypes, useGetEventAddOnPasses, useGetEventAddOnTiers, useGetEventAddOnTranslation, useGetEventAddOnTranslations, useGetEventAddOns, useGetEventAttendee, useGetEventAttendeeCoupons, useGetEventAttendeePackage, useGetEventAttendeePackages, useGetEventAttendeePasses, useGetEventAttendeePayments, useGetEventAttendeeReservations, useGetEventAttendeeTransfersLogs, useGetEventAttendees, useGetEventCoHosts, useGetEventCoupon, useGetEventCouponPasses, useGetEventCouponPayments, useGetEventCoupons, useGetEventDashboardQuestions, useGetEventEmail, useGetEventEmailTranslation, useGetEventEmailTranslations, useGetEventFaqSection, useGetEventFaqSectionQuestion, useGetEventFaqSectionQuestionTranslation, useGetEventFaqSectionQuestionTranslations, useGetEventFaqSectionQuestions, useGetEventFaqSectionTranslation, useGetEventFaqSectionTranslations, useGetEventFaqSections, useGetEventFollowup, useGetEventFollowupAddOns, useGetEventFollowupPassTypes, useGetEventFollowupQuestions, useGetEventFollowupTiers, useGetEventFollowupTranslation, useGetEventFollowupTranslations, useGetEventFollowups, useGetEventMediaItem, useGetEventMediaItemPassTypes, useGetEventMediaItems, useGetEventOnSite, useGetEventPackage, useGetEventPackagePass, useGetEventPackagePasses, useGetEventPackageTranslation, useGetEventPackageTranslations, useGetEventPackages, useGetEventPage, useGetEventPageImages, useGetEventPageTranslation, useGetEventPageTranslations, useGetEventPages, useGetEventPass, useGetEventPassAccesses, useGetEventPassAddOns, useGetEventPassAttendeePasses, useGetEventPassMatches, useGetEventPassPayments, useGetEventPassQuestionFollowups, useGetEventPassQuestionSections, useGetEventPassResponse, useGetEventPassResponseChanges, useGetEventPassResponses, useGetEventPassTransferLogs, useGetEventPassType, useGetEventPassTypeAddOns, useGetEventPassTypePasses, useGetEventPassTypePayments, useGetEventPassTypePriceSchedule, useGetEventPassTypePriceSchedules, useGetEventPassTypeRefundSchedule, useGetEventPassTypeRefundSchedules, useGetEventPassTypeTiers, useGetEventPassTypeTranslation, useGetEventPassTypeTranslations, useGetEventPassTypes, useGetEventPasses, useGetEventPayments, useGetEventQuestion, useGetEventQuestionChoice, useGetEventQuestionChoiceSubQuestions, useGetEventQuestionChoiceTranslation, useGetEventQuestionChoiceTranslations, useGetEventQuestionChoices, useGetEventQuestionResponses, useGetEventQuestionSummaries, useGetEventQuestionSummary, useGetEventQuestionTranslation, useGetEventQuestionTranslations, useGetEventQuestions, useGetEventRegistrationBypass, useGetEventRegistrationBypassList, useGetEventReservation, useGetEventReservationPasses, useGetEventReservations, useGetEventRoomType, useGetEventRoomTypePasses, useGetEventRoomTypeReservations, useGetEventRoomTypeTiers, useGetEventRoomTypeTranslation, useGetEventRoomTypeTranslations, useGetEventRoomTypes, useGetEventRoundMatch, useGetEventRoundMatchPasses, useGetEventRoundMatches, useGetEventRoundPasses, useGetEventRoundQuestions, useGetEventRoundQuestionsSummary, useGetEventRounds, useGetEventSection, useGetEventSectionAddOns, useGetEventSectionPassTypes, useGetEventSectionQuestions, useGetEventSectionTiers, useGetEventSectionTranslation, useGetEventSectionTranslations, useGetEventSections, useGetEventSession, useGetEventSessionAccess, useGetEventSessionAccessQuestionSections, useGetEventSessionAccessResponseChanges, useGetEventSessionAccesses, useGetEventSessionAccounts, useGetEventSessionLocation, useGetEventSessionLocationSessions, useGetEventSessionLocationTranslation, useGetEventSessionLocationTranslations, useGetEventSessionLocations, useGetEventSessionPassTypes, useGetEventSessionPayments, useGetEventSessionQuestion, useGetEventSessionQuestionChoice, useGetEventSessionQuestionChoiceSubQuestions, useGetEventSessionQuestionChoiceTranslation, useGetEventSessionQuestionChoiceTranslations, useGetEventSessionQuestionChoices, useGetEventSessionQuestionResponses, useGetEventSessionQuestionTranslation, useGetEventSessionQuestionTranslations, useGetEventSessionQuestions, useGetEventSessionRoundMatch, useGetEventSessionRoundMatchPasses, useGetEventSessionRoundMatches, useGetEventSessionRoundPasses, useGetEventSessionRoundQuestions, useGetEventSessionRoundQuestionsSummary, useGetEventSessionRounds, useGetEventSessionSection, useGetEventSessionSectionQuestions, useGetEventSessionSectionTranslation, useGetEventSessionSectionTranslations, useGetEventSessionSections, useGetEventSessionSpeakers, useGetEventSessionSponsors, useGetEventSessionTracks, useGetEventSessionTranslation, useGetEventSessionTranslations, useGetEventSessions, useGetEventSessionsWithRounds, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakerTranslation, useGetEventSpeakerTranslations, useGetEventSpeakers, useGetEventSponsorAccounts, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevel, useGetEventSponsorshipLevelTranslation, useGetEventSponsorshipLevelTranslations, useGetEventSponsorshipLevels, useGetEventSponsorshipTranslation, useGetEventSponsorshipTranslations, useGetEventSponsorships, useGetEventThreads, useGetEventTiers, useGetEventTrack, useGetEventTrackSessions, useGetEventTrackSponsors, useGetEventTrackTranslation, useGetEventTrackTranslations, useGetEventTracks, useGetEventTranslation, useGetEventTranslations, useGetEventZplTemplateBadgeField, useGetEventZplTemplateBadgeFields, useGetEvents, useGetFeaturedChannels, useGetFile, useGetFiles, useGetGroup, useGetGroupActivities, useGetGroupEvents, useGetGroupInterests, useGetGroupInvitation, useGetGroupInvitations, useGetGroupMembers, useGetGroupModerators, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroupThreads, useGetGroupTranslation, useGetGroupTranslations, useGetGroups, useGetImage, useGetImageUsage, useGetImages, useGetImport, useGetImportItems, useGetImports, useGetIntegration, useGetIntegrations, useGetInterest, useGetInterestAccounts, useGetInterestActivities, useGetInterestChannels, useGetInterestContents, useGetInterestEvents, useGetInterestGroups, useGetInterests, useGetInvoice, useGetInvoiceLineItem, useGetInvoiceLineItems, useGetInvoices, useGetLevel, useGetLevelAccounts, useGetLevelTranslation, useGetLevelTranslations, useGetLevels, useGetLinkPreview, useGetLivestream, useGetLivestreamSessions, useGetLivestreams, useGetLogin, useGetLoginAccounts, useGetLoginAuthSessions, useGetLoginDevices, useGetLogins, useGetMeeting, useGetMeetingLink, useGetMeetingLinks, useGetMeetingLivestream, useGetMeetingParticipant, useGetMeetingParticipants, useGetMeetingRecording, useGetMeetingRecordings, useGetMeetingSession, useGetMeetingSessionMessages, useGetMeetingSessionParticipant, useGetMeetingSessionParticipants, useGetMeetingSessionSummary, useGetMeetingSessionTranscript, useGetMeetingSessions, useGetMeetings, useGetMembership, useGetMembershipPrice, useGetMembershipPrices, useGetMembershipSubscriptions, useGetMembershipTiers, useGetMemberships, useGetOrganization, useGetOrganizationAccountAttribute, useGetOrganizationAccountAttributes, useGetOrganizationDomain, useGetOrganizationMembership, useGetOrganizationModule, useGetOrganizationModuleEditableTiers, useGetOrganizationModuleEnabledTiers, useGetOrganizationModules, useGetOrganizationPaymentIntegration, useGetOrganizationPaymentIntegrations, useGetOrganizationPaymentLink, useGetOrganizationSideEffect, useGetOrganizationSideEffects, useGetOrganizationSystemLog, useGetOrganizationSystemLogs, useGetOrganizationTeamMember, useGetOrganizationTeamMembers, useGetOrganizationUsers, useGetOrganizationWebhook, useGetOrganizationWebhooks, useGetPayment, useGetPayments, useGetPreset, useGetPresets, useGetPushDevice, useGetPushDevices, useGetReport, useGetReports, useGetRequiredAttributes, useGetRoom, useGetRoomTypeRooms, useGetRooms, useGetSearchList, useGetSearchListConnectedQuestions, useGetSearchListValue, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfApiKey, useGetSelfApiKeys, useGetSelfOrgMembership, useGetSelfOrganizations, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSubscription, useGetSubscriptionPayments, useGetSubscriptions, useGetSupportTicket, useGetSupportTickets, useGetSurvey, useGetSurveyQuestion, useGetSurveyQuestionChoice, useGetSurveyQuestionChoiceSubQuestions, useGetSurveyQuestionChoiceTranslation, useGetSurveyQuestionChoiceTranslations, useGetSurveyQuestionChoices, useGetSurveyQuestionResponses, useGetSurveyQuestionTranslation, useGetSurveyQuestionTranslations, useGetSurveyQuestions, useGetSurveySection, useGetSurveySectionQuestions, useGetSurveySectionTranslation, useGetSurveySectionTranslations, useGetSurveySections, useGetSurveySubmission, useGetSurveySubmissionQuestionSections, useGetSurveySubmissionResponseChanges, useGetSurveySubmissions, useGetSurveyTranslation, useGetSurveyTranslations, useGetSurveys, useGetTaxCodes, useGetTaxIntegration, useGetTaxIntegrations, useGetTaxLog, useGetTaxLogs, useGetTemplates, useGetThread, useGetThreadAccounts, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircleThreads, useGetThreadCircles, useGetThreadMembers, useGetThreadMessage, useGetThreadMessageFiles, useGetThreadMessageImages, useGetThreadMessageReactions, useGetThreadMessageVideos, useGetThreadMessages, useGetThreadMessagesPoll, useGetThreads, useGetTier, useGetTierAccounts, useGetTierImport, useGetTierImportItems, useGetTierImports, useGetTierSubscribers, useGetTiers, useGetVideo, useGetVideoCaptions, useGetVideoDownloadStatus, useGetVideos, useImpersonateAccount, useImportRooms, useIndexEventPasses, useInitiateVideoDownload, usePublishActivity, useRefundOrganizationPayment, useRegenerateMeetingParticipantToken, useReinviteGroupInvitation, useRejectGroupRequest, useRemoveAccountFollower, useRemoveAccountFollowing, useRemoveAccountGroup, useRemoveAccountInterest, useRemoveAccountTier, useRemoveAllChannelSubscribers, useRemoveAllGroupMembers, useRemoveChannelSubscriber, useRemoveCustomReportUser, useRemoveEventAccessUser, useRemoveEventAddOnPassType, useRemoveEventAddOnTier, useRemoveEventBenefit, useRemoveEventCoHost, useRemoveEventFollowupAddOn, useRemoveEventFollowupPassType, useRemoveEventFollowupQuestion, useRemoveEventFollowupTier, useRemoveEventMatchPass, useRemoveEventMediaItemPassType, useRemoveEventPageImage, useRemoveEventPassAddOn, useRemoveEventPassTypeAddOn, useRemoveEventPassTypeTier, useRemoveEventQuestionChoiceSubQuestion, useRemoveEventReservationPass, useRemoveEventRoomTypeTier, useRemoveEventSectionAddOn, useRemoveEventSectionPassType, useRemoveEventSectionQuestion, useRemoveEventSectionTier, useRemoveEventSessionAccount, useRemoveEventSessionLocationSession, useRemoveEventSessionMatchPass, useRemoveEventSessionPassType, useRemoveEventSessionQuestionChoiceSubQuestion, useRemoveEventSessionSectionQuestion, useRemoveEventSessionSpeaker, useRemoveEventSessionSponsor, useRemoveEventSessionTrack, useRemoveEventSpeakerSession, useRemoveEventSponsorAccount, useRemoveEventTrackSession, useRemoveEventTrackSponsor, useRemoveGroupEvent, useRemoveGroupInterest, useRemoveGroupMember, useRemoveGroupModerator, useRemoveGroupSponsor, useRemoveLevelAccount, useRemoveLoginAccount, useRemoveMembershipTier, useRemoveOrganizationModuleEditableTier, useRemoveOrganizationModuleEnabledTier, useRemoveRoomFromRoomType, useRemoveSeriesEvent, useRemoveSurveyQuestionChoiceSubQuestion, useRemoveSurveySectionQuestion, useRemoveTierAccounts, useReorderEventFaqSectionQuestions, useReorderEventFollowupQuestions, useReorderEventQuestionChoiceSubQuestions, useReorderEventQuestionChoices, useReorderEventSectionQuestions, useReorderEventSessionQuestionChoiceSubQuestions, useReorderEventSessionQuestionChoices, useReorderEventSessionSectionQuestions, useReorderEventSponsorshipLevels, useReorderEventSponsorships, useReorderSurveyQuestionChoiceSubQuestions, useReorderSurveyQuestionChoices, useReorderSurveySectionQuestions, useResendRegistrationConfirmationEmail, useResetLivestreamStreamKey, useRevertChannelContentToDraft, useSearchOrganization, useSelfLeaveOrganization, useSendAnnouncementPreview, useSendInvoice, useStartEventRoundMatchmaking, useStartEventSessionRoundMatchmaking, useSwitchImage, useTestTaxIntegration, useToggleOrganizationPaymentIntegration, useToggleTaxIntegration, useTransferEventPass, useUpdateAccount, useUpdateAccountAddress, useUpdateAccountAttribute, useUpdateAccountLead, useUpdateActivity, useUpdateActivitySchedule, useUpdateAdvertisement, useUpdateAnnouncement, useUpdateAnnouncementSchedule, useUpdateAnnouncementTranslation, useUpdateBenefit, useUpdateBenefitTranslation, useUpdateBooking, useUpdateBookingPlace, useUpdateBookingPlaceTranslation, useUpdateBookingSpace, useUpdateBookingSpaceAvailability, useUpdateBookingSpaceBlackout, useUpdateBookingSpaceTranslation, useUpdateChannel, useUpdateChannelContent, useUpdateChannelContentGuest, useUpdateChannelContentGuestTranslation, useUpdateChannelContentPublishSchedule, useUpdateChannelContentTranslation, useUpdateChannelSubscriber, useUpdateChannelTranslation, useUpdateCustomModule, useUpdateCustomModuleTranslation, useUpdateCustomReport, useUpdateDashboard, useUpdateDashboardWidget, useUpdateEvent, useUpdateEventActivation, useUpdateEventActivationCompletion, useUpdateEventActivationTranslation, useUpdateEventAddOn, useUpdateEventAddOnTranslation, useUpdateEventAttendee, useUpdateEventAttendeePackage, useUpdateEventCheckinCode, useUpdateEventCoupon, useUpdateEventEmail, useUpdateEventEmailTranslation, useUpdateEventFaqSection, useUpdateEventFaqSectionQuestion, useUpdateEventFaqSectionQuestionTranslation, useUpdateEventFaqSectionTranslation, useUpdateEventFollowup, useUpdateEventFollowupQuestion, useUpdateEventFollowupTranslation, useUpdateEventMatch, useUpdateEventMediaItem, useUpdateEventPackage, useUpdateEventPackagePass, useUpdateEventPackageTranslation, useUpdateEventPage, useUpdateEventPageTranslation, useUpdateEventPass, useUpdateEventPassFollowupResponses, useUpdateEventPassResponse, useUpdateEventPassResponses, useUpdateEventPassSingleFollowupResponses, useUpdateEventPassType, useUpdateEventPassTypePriceSchedule, useUpdateEventPassTypeRefundSchedule, useUpdateEventPassTypeTranslation, useUpdateEventQuestion, useUpdateEventQuestionChoice, useUpdateEventQuestionChoiceSubQuestion, useUpdateEventQuestionChoiceTranslation, useUpdateEventQuestionTranslation, useUpdateEventRegistrationBypass, useUpdateEventReservation, useUpdateEventRoomType, useUpdateEventRoomTypeAddOnDetails, useUpdateEventRoomTypePassTypeDetails, useUpdateEventRoomTypeTranslation, useUpdateEventRoundQuestion, useUpdateEventSection, useUpdateEventSectionQuestion, useUpdateEventSectionTranslation, useUpdateEventSession, useUpdateEventSessionAccess, useUpdateEventSessionAccessResponses, useUpdateEventSessionLocation, useUpdateEventSessionLocationTranslation, useUpdateEventSessionMatch, useUpdateEventSessionQuestion, useUpdateEventSessionQuestionChoice, useUpdateEventSessionQuestionChoiceSubQuestion, useUpdateEventSessionQuestionChoiceTranslation, useUpdateEventSessionQuestionTranslation, useUpdateEventSessionRoundQuestion, useUpdateEventSessionSection, useUpdateEventSessionSectionQuestion, useUpdateEventSessionSectionTranslation, useUpdateEventSessionTranslation, useUpdateEventSpeaker, useUpdateEventSpeakerTranslation, useUpdateEventSponsorship, useUpdateEventSponsorshipLevel, useUpdateEventSponsorshipLevelTranslation, useUpdateEventSponsorshipTranslation, useUpdateEventTrack, useUpdateEventTrackTranslation, useUpdateEventTranslation, useUpdateEventZplTemplate, useUpdateEventZplTemplateBadgeField, useUpdateFile, useUpdateGroup, useUpdateGroupTranslation, useUpdateImage, useUpdateIntegration, useUpdateInterest, useUpdateInvoice, useUpdateInvoiceLineItem, useUpdateLevel, useUpdateLevelTranslation, useUpdateLoginEmail, useUpdateLoginPassword, useUpdateMeeting, useUpdateMeetingLink, useUpdateMeetingParticipant, useUpdateMembership, useUpdateMembershipPrice, useUpdateOrganization, useUpdateOrganizationDomain, useUpdateOrganizationIntegrations, useUpdateOrganizationMembership, useUpdateOrganizationModule, useUpdateOrganizationTeamMember, useUpdateOrganizationWebhook, useUpdatePayment, useUpdatePreset, useUpdateRoom, useUpdateSearchList, useUpdateSearchListValue, useUpdateSelf, useUpdateSeries, useUpdateSubscription, useUpdateSupportTicket, useUpdateSurvey, useUpdateSurveyQuestion, useUpdateSurveyQuestionChoice, useUpdateSurveyQuestionChoiceSubQuestion, useUpdateSurveyQuestionChoiceTranslation, useUpdateSurveyQuestionTranslation, useUpdateSurveySection, useUpdateSurveySectionQuestion, useUpdateSurveySectionTranslation, useUpdateSurveySubmission, useUpdateSurveySubmissionResponses, useUpdateSurveyTranslation, useUpdateTaxIntegration, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMember, useUpdateThreadMessage, useUpdateTier, useUpdateUserImage, useUpdateVideo, useUploadFile, useUploadVideoCaptions, useVerifyOrganizationWebhook, useVoidInvoice };
30974
+ export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_ADDRESSES_QUERY_KEY, ACCOUNT_ADDRESS_QUERY_KEY, ACCOUNT_COMMENTS_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_INVITATIONS_QUERY_KEY, ACCOUNT_LEADS_QUERY_KEY, ACCOUNT_LEAD_QUERY_KEY, ACCOUNT_LEVELS_QUERY_KEY, ACCOUNT_LIKES_QUERY_KEY, ACCOUNT_NOTIFICATION_PREFERENCES_QUERY_KEY, ACCOUNT_PAYMENTS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACCOUNT_SUBSCRIPTIONS_QUERY_KEY, ACCOUNT_THREADS_QUERY_KEY, ACCOUNT_TIERS_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENTS_QUERY_KEY, ADVERTISEMENT_CLICKS_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, ADVERTISEMENT_VIEWS_QUERY_KEY, ALL_EVENT_ADD_ON_QUERY_KEY, ALL_EVENT_PASS_TYPES_QUERY_KEY, ANNOUNCEMENTS_QUERY_KEY, ANNOUNCEMENT_AUDIENCE_QUERY_KEY, ANNOUNCEMENT_EMAILS_QUERY_KEY, ANNOUNCEMENT_QUERY_KEY, ANNOUNCEMENT_TRANSLATIONS_QUERY_KEY, ANNOUNCEMENT_TRANSLATION_QUERY_KEY, type APILog, API_LOGS_QUERY_KEY, API_LOG_QUERY_KEY, AUTH_SESSIONS_QUERY_KEY, AUTH_SESSION_QUERY_KEY, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, AccountAccess, type AccountAddress, type AccountAddressCreateInputs, type AccountAddressUpdateInputs, type AccountAttribute, type AccountAttributeCreateInputs, type AccountAttributeUpdateInputs, type AccountAttributeValue, type AccountCreateInputs, type AccountInvitation, type AccountUpdateInputs, type ActivationCompletion, type ActivationTranslation, type Activity, type ActivityCreateInputs, type ActivityEntity, ActivityEntityType, ActivityPreference, ActivityStatus, type ActivityUpdateInputs, AddAccountFollower, type AddAccountFollowerParams, AddAccountFollowing, type AddAccountFollowingParams, AddAccountGroup, type AddAccountGroupParams, AddAccountInterest, type AddAccountInterestParams, AddAccountTier, type AddAccountTierParams, AddChannelSubscriber, type AddChannelsubscriberParams, AddCustomReportUser, type AddCustomReportUserParams, AddEventAccessUser, AddEventAddOnPassType, type AddEventAddOnPassTypeParams, AddEventAddOnTier, type AddEventAddOnTierParams, AddEventBenefit, type AddEventBenefitParams, AddEventCoHost, type AddEventCoHostParams, AddEventFollowupAddOn, type AddEventFollowupAddOnParams, AddEventFollowupPassType, type AddEventFollowupPassTypeParams, AddEventFollowupQuestion, type AddEventFollowupQuestionParams, AddEventFollowupTier, type AddEventFollowupTierParams, AddEventMatchPass, type AddEventMatchPassParams, AddEventMediaItemPassType, type AddEventMediaItemPassTypeParams, AddEventPageImage, type AddEventPageImageParams, AddEventPassAddOn, type AddEventPassAddOnParams, AddEventPassTypeAddOn, type AddEventPassTypeAddOnParams, AddEventPassTypeTier, type AddEventPassTypeTierParams, AddEventQuestionChoiceSubQuestion, type AddEventQuestionChoiceSubQuestionParams, AddEventReservationPass, type AddEventReservationPassParams, AddEventRoomTypeTier, type AddEventRoomTypeTierParams, AddEventSectionAddOn, type AddEventSectionAddOnParams, AddEventSectionPassType, type AddEventSectionPassTypeParams, AddEventSectionQuestion, type AddEventSectionQuestionParams, AddEventSectionTier, type AddEventSectionTierParams, AddEventSessionAccount, type AddEventSessionAccountParams, AddEventSessionLocationSession, type AddEventSessionLocationSessionParams, AddEventSessionMatchPass, type AddEventSessionMatchPassParams, AddEventSessionPassType, type AddEventSessionPassTypeParams, AddEventSessionQuestionChoiceSubQuestion, type AddEventSessionQuestionChoiceSubQuestionParams, AddEventSessionSectionQuestion, type AddEventSessionSectionQuestionParams, AddEventSessionSpeaker, type AddEventSessionSpeakerParams, AddEventSessionSponsor, type AddEventSessionSponsorParams, AddEventSessionTrack, type AddEventSessionTrackParams, AddEventSpeakerSession, type AddEventSpeakerSessionParams, AddEventSponsorAccount, type AddEventSponsorAccountParams, AddEventTrackSession, type AddEventTrackSessionParams, AddEventTrackSponsor, type AddEventTrackSponsorParams, AddGroupEvent, type AddGroupEventParams, AddGroupInterest, type AddGroupInterestParams, AddGroupMember, type AddGroupMemberParams, AddGroupModerator, type AddGroupModeratorParams, AddGroupSponsor, type AddGroupSponsorParams, AddLevelAccount, type AddLevelAccountParams, AddLoginAccount, type AddLoginAccountParams, AddMeetingLivestream, type AddMeetingLivestreamParams, AddMembershipTier, type AddMembershipTierParams, AddOrganizationModuleEditableTier, type AddOrganizationModuleEditableTierParams, AddOrganizationModuleEnabledTier, type AddOrganizationModuleEnabledTierParams, AddOrganizationUser, type AddOrganizationUserParams, AddRoomToRoomType, type AddRoomToRoomTypeParams, AddSeriesEvent, type AddSeriesEventParams, AddSurveyQuestionChoiceSubQuestion, type AddSurveyQuestionChoiceSubQuestionParams, AddSurveySectionQuestion, type AddSurveySectionQuestionParams, type AdminApiParams, type Advertisement, type AdvertisementClick, type AdvertisementCreateInputs, AdvertisementType, type AdvertisementUpdateInputs, type AdvertisementView, type Announcement, type AnnouncementCreateInputs, type AnnouncementTranslation, type AnnouncementTranslationUpdateInputs, type AnnouncementUpdateInputs, AppendInfiniteQuery, ArchiveActivity, type ArchiveActivityParams, AttachEventQuestionSearchList, type AttachEventQuestionSearchListParams, AttachEventSessionQuestionSearchList, type AttachEventSessionQuestionSearchListParams, type AttachSearchListInputs, AttachSurveyQuestionSearchList, type AttachSurveyQuestionSearchListParams, type AttendeeEventPackageCreateInputs, type AttendeeEventPackageUpdateInputs, type AttendeePackage, AuthLayout, type AuthSession, type AuthorizeNetActivationFormParams, BENEFITS_QUERY_KEY, BENEFIT_CLICKS_QUERY_KEY, BENEFIT_QUERY_KEY, BENEFIT_TRANSLATIONS_QUERY_KEY, BENEFIT_TRANSLATION_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_BOOKINGS_QUERY_KEY, BOOKING_PLACE_PAYMENTS_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_TRANSLATIONS_QUERY_KEY, BOOKING_PLACE_TRANSLATION_QUERY_KEY, BOOKING_QUERY_KEY, BOOKING_SPACES_QUERY_KEY, BOOKING_SPACE_AVAILABILITIES_QUERY_KEY, BOOKING_SPACE_AVAILABILITY_QUERY_KEY, BOOKING_SPACE_BLACKOUTS_QUERY_KEY, BOOKING_SPACE_BLACKOUT_QUERY_KEY, BOOKING_SPACE_BOOKINGS_QUERY_KEY, BOOKING_SPACE_PAYMENTS_QUERY_KEY, BOOKING_SPACE_QUERY_KEY, BOOKING_SPACE_SLOTS_QUERY_KEY, BOOKING_SPACE_TRANSLATIONS_QUERY_KEY, BOOKING_SPACE_TRANSLATION_QUERY_KEY, BadgeFieldTransformation, BadgeFieldType, type BarChartSummaryData, type BaseAPILog, type BaseAccount, type BaseAccountAddress, type BaseAccountAttribute, type BaseAccountAttributeValue, type BaseAccountInvitation, type BaseActivationCompletion, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseChannel, type BaseChannelContent, type BaseChannelContentGuest, type BaseChannelContentLike, type BaseChannelSubscriber, type BaseCoupon, type BaseDashboard, type BaseDashboardWidget, type BaseEmailReceipt, type BaseEvent, type BaseEventActivation, type BaseEventAddOn, type BaseEventAttendee, type BaseEventEmail, type BaseEventMediaItem, type BaseEventOnSite, type BaseEventOnSiteBadgeField, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventPass, type BaseEventPassType, type BaseEventPassTypePriceSchedule, type BaseEventPassTypeRefundSchedule, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSession, type BaseEventSessionAccess, type BaseEventSessionLocation, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionChoiceSubQuestion, type BaseEventSessionQuestionResponse, type BaseEventSessionQuestionResponseChange, type BaseEventSessionSection, type BaseEventSessionSectionQuestion, type BaseEventSpeaker, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseEventTrack, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseImport, type BaseImportItem, type BaseIntegration, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLevel, type BaseLike, type BaseLinkPreview, type BaseLogin, type BaseMatch, type BaseMatchPass, type BaseMeeting, type BaseMeetingLink, type BaseMeetingRecording, type BaseMembership, type BaseMembershipPrice, type BaseNotification, type BaseOrganization, type BaseOrganizationModule, type BasePassAddOn, type BasePayment, type BasePaymentLineItem, type BasePreset, type BasePushDevice, type BaseRegistrationBypass, type BaseRegistrationFollowup, type BaseRegistrationFollowupQuestion, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionChoiceSubQuestion, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionResponseChange, type BaseRegistrationSection, type BaseRegistrationSectionQuestion, type BaseRoom, type BaseRound, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, type BaseSeries, type BaseSideEffect, type BaseStandardReport, type BaseStreamInput, type BaseSubscription, type BaseSubscriptionPayment, type BaseSupportTicket, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionChoiceSubQuestion, type BaseSurveyQuestionResponse, type BaseSurveyQuestionResponseChange, type BaseSurveySection, type BaseSurveySectionQuestion, type BaseSurveySubmission, type BaseTaxIntegrationLog, type BaseTeamMember, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMember, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseTier, type BaseTransfer, type BaseTransferLog, type BaseUser, type BaseVideo, type BaseWebhook, type Benefit, type BenefitClick, type BenefitCreateInputs, type BenefitTranslation, type BenefitTranslationUpdateInputs, type BenefitUpdateInputs, type Booking, type BookingCreateInputs, type BookingPlace, type BookingPlaceCreateInputs, type BookingPlaceTranslation, type BookingPlaceTranslationUpdateInputs, type BookingPlaceUpdateInputs, type BookingSlot, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceAvailabilityCreateInputs, type BookingSpaceAvailabilityUpdateInputs, type BookingSpaceBlackout, type BookingSpaceBlackoutCreateInputs, type BookingSpaceBlackoutUpdateInputs, type BookingSpaceCreateInputs, type BookingSpaceTranslation, type BookingSpaceTranslationUpdateInputs, type BookingSpaceUpdateInputs, type BookingUpdateInputs, type BraintreeActivationFormParams, BulkUploadSearchListValues, type BulkUploadSearchListValuesParams, 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, CONTENTS_QUERY_KEY, CUSTOM_MODULES_QUERY_KEY, CUSTOM_MODULE_QUERY_KEY, CUSTOM_MODULE_TRANSLATIONS_QUERY_KEY, CUSTOM_MODULE_TRANSLATION_QUERY_KEY, CUSTOM_REPORTS_QUERY_KEY, CUSTOM_REPORT_QUERY_KEY, CUSTOM_REPORT_USERS_QUERY_KEY, CacheIndividualQueries, CalculateDuration, CancelActivitySchedule, type CancelActivityScheduleParams, CancelAnnouncementSchedule, type CancelAnnouncementScheduleParams, CancelChannelContentPublishSchedule, type CancelChannelContentPublishScheduleParams, CancelEventPass, type CancelEventPassParams, CancelGroupInvitation, type CancelGroupInvitationParams, 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, CloneEvent, type CloneEventParams, type CloneOptions, ConfirmLogin, type ConfirmLoginParams, type ConnectedXMMutationOptions, ConnectedXMProvider, type ConnectedXMResponse, ContentGuestType, ContentStatus, type CountChartSummaryData, type Coupon, CreateAccount, CreateAccountAddress, type CreateAccountAddressParams, CreateAccountAttribute, type CreateAccountAttributeParams, CreateAccountInvitations, type CreateAccountInvitationsParams, type CreateAccountParams, CreateActivity, type CreateActivityParams, CreateAdvertisement, type CreateAdvertisementParams, CreateAnnouncement, type CreateAnnouncementParams, CreateAnnouncementTranslation, type CreateAnnouncementTranslationParams, CreateBenefit, type CreateBenefitParams, CreateBenefitTranslation, type CreateBenefitTranslationParams, CreateBooking, type CreateBookingParams, CreateBookingPlace, type CreateBookingPlaceParams, CreateBookingPlaceTranslation, type CreateBookingPlaceTranslationParams, CreateBookingSpace, CreateBookingSpaceAvailability, type CreateBookingSpaceAvailabilityParams, CreateBookingSpaceBlackout, type CreateBookingSpaceBlackoutParams, type CreateBookingSpaceParams, CreateBookingSpaceTranslation, type CreateBookingSpaceTranslationParams, CreateChannel, CreateChannelContent, CreateChannelContentGuest, type CreateChannelContentGuestParams, CreateChannelContentGuestTranslation, type CreateChannelContentGuestTranslationParams, type CreateChannelContentParams, CreateChannelContentTranslation, type CreateChannelContentTranslationParams, type CreateChannelParams, CreateChannelTranslation, type CreateChannelTranslationParams, CreateCustomModule, type CreateCustomModuleParams, CreateCustomModuleTranslation, type CreateCustomModuleTranslationParams, CreateCustomReport, type CreateCustomReportParams, CreateDashboard, type CreateDashboardParams, CreateDashboardWidget, type CreateDashboardWidgetParams, CreateEvent, CreateEventActivation, CreateEventActivationCompletion, type CreateEventActivationCompletionParams, type CreateEventActivationParams, CreateEventActivationTranslation, type CreateEventActivationTranslationParams, CreateEventAddOn, type CreateEventAddOnParams, CreateEventAddOnTranslation, type CreateEventAddOnTranslationParams, CreateEventAttendee, CreateEventAttendeePackage, type CreateEventAttendeePackageParams, type CreateEventAttendeeParams, CreateEventCoupon, type CreateEventCouponParams, CreateEventCouponVariants, type CreateEventCouponVariantsParams, CreateEventEmailTranslation, type CreateEventEmailTranslationParams, CreateEventFaqSection, type CreateEventFaqSectionParams, CreateEventFaqSectionQuestion, type CreateEventFaqSectionQuestionParams, CreateEventFaqSectionQuestionTranslation, type CreateEventFaqSectionQuestionTranslationParams, CreateEventFaqSectionTranslation, type CreateEventFaqSectionTranslationParams, CreateEventFollowup, type CreateEventFollowupParams, CreateEventFollowupTranslation, type CreateEventFollowupTranslationParams, CreateEventMatch, type CreateEventMatchParams, CreateEventMediaItem, type CreateEventMediaItemParams, CreateEventPackage, type CreateEventPackageParams, CreateEventPackagePass, type CreateEventPackagePassParams, CreateEventPackageTranslation, type CreateEventPackageTranslationParams, CreateEventPage, type CreateEventPageParams, CreateEventPageTranslation, type CreateEventPageTranslationParams, type CreateEventParams, CreateEventPass, type CreateEventPassParams, CreateEventPassType, type CreateEventPassTypeParams, CreateEventPassTypePriceSchedule, CreateEventPassTypeRefundSchedule, CreateEventPassTypeTranslation, type CreateEventPassTypeTranslationParams, CreateEventQuestion, CreateEventQuestionChoice, type CreateEventQuestionChoiceParams, CreateEventQuestionChoiceTranslation, type CreateEventQuestionChoiceTranslationParams, type CreateEventQuestionParams, CreateEventQuestionTranslation, type CreateEventQuestionTranslationParams, CreateEventRegistrationBypass, type CreateEventRegistrationBypassParams, CreateEventReservation, type CreateEventReservationParams, CreateEventRoomType, type CreateEventRoomTypeParams, CreateEventRoomTypeTranslation, type CreateEventRoomTypeTranslationParams, CreateEventRound, type CreateEventRoundParams, CreateEventSection, type CreateEventSectionParams, CreateEventSectionTranslation, type CreateEventSectionTranslationParams, CreateEventSession, CreateEventSessionAccess, type CreateEventSessionAccessParams, CreateEventSessionLocation, type CreateEventSessionLocationParams, CreateEventSessionLocationTranslation, type CreateEventSessionLocationTranslationParams, CreateEventSessionMatch, type CreateEventSessionMatchParams, type CreateEventSessionParams, CreateEventSessionQuestion, CreateEventSessionQuestionChoice, type CreateEventSessionQuestionChoiceParams, CreateEventSessionQuestionChoiceTranslation, type CreateEventSessionQuestionChoiceTranslationParams, type CreateEventSessionQuestionParams, CreateEventSessionQuestionTranslation, type CreateEventSessionQuestionTranslationParams, CreateEventSessionRound, type CreateEventSessionRoundParams, CreateEventSessionSection, type CreateEventSessionSectionParams, CreateEventSessionSectionTranslation, type CreateEventSessionSectionTranslationParams, CreateEventSessionTranslation, type CreateEventSessionTranslationParams, CreateEventSpeaker, type CreateEventSpeakerParams, CreateEventSpeakerTranslation, type CreateEventSpeakerTranslationParams, CreateEventSponsorship, CreateEventSponsorshipLevel, type CreateEventSponsorshipLevelParams, CreateEventSponsorshipLevelTranslation, type CreateEventSponsorshipLevelTranslationParams, type CreateEventSponsorshipParams, CreateEventSponsorshipTranslation, type CreateEventSponsorshipTranslationParams, CreateEventTrack, type CreateEventTrackParams, CreateEventTrackTranslation, type CreateEventTrackTranslationParams, CreateEventTranslation, type CreateEventTranslationParams, CreateGroup, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupTranslation, type CreateGroupTranslationParams, CreateImage, type CreateImageParams, CreateImport, type CreateImportParams, CreateIntegration, type CreateIntegrationParams, CreateInterest, type CreateInterestParams, CreateInvoice, CreateInvoiceLineItem, type CreateInvoiceLineItemParams, type CreateInvoiceParams, CreateLevel, type CreateLevelParams, CreateLevelTranslation, type CreateLevelTranslationParams, CreateMeeting, CreateMeetingLink, type CreateMeetingLinkParams, type CreateMeetingParams, CreateMeetingParticipant, type CreateMeetingParticipantParams, CreateMembership, type CreateMembershipParams, CreateMembershipPrice, type CreateMembershipPriceParams, CreateOrganizationPaymentIntegration, type CreateOrganizationPaymentIntegrationParams, CreateOrganizationSideEffect, type CreateOrganizationSideEffectParams, CreateOrganizationTeamMember, type CreateOrganizationTeamMemberParams, CreateOrganizationWebhook, type CreateOrganizationWebhookParams, CreatePreset, type CreatePresetParams, CreateRoom, type CreateRoomParams, CreateSearchList, type CreateSearchListParams, CreateSearchListValue, type CreateSearchListValueParams, CreateSelfApiKey, type CreateSelfApiKeyParams, CreateSeries, type CreateSeriesParams, CreateStreamInput, CreateStreamInputOutput, type CreateStreamInputOutputParams, type CreateStreamInputParams, CreateSubscription, type CreateSubscriptionParams, CreateSupportTicket, CreateSupportTicketNote, type CreateSupportTicketNoteParams, type CreateSupportTicketParams, CreateSurvey, type CreateSurveyParams, CreateSurveyQuestion, CreateSurveyQuestionChoice, type CreateSurveyQuestionChoiceParams, CreateSurveyQuestionChoiceTranslation, type CreateSurveyQuestionChoiceTranslationParams, type CreateSurveyQuestionParams, CreateSurveyQuestionTranslation, type CreateSurveyQuestionTranslationParams, CreateSurveySection, type CreateSurveySectionParams, CreateSurveySectionTranslation, type CreateSurveySectionTranslationParams, CreateSurveyTranslation, type CreateSurveyTranslationParams, CreateTaxIntegration, type CreateTaxIntegrationParams, CreateThread, CreateThreadCircle, CreateThreadCircleAccount, type CreateThreadCircleAccountParams, type CreateThreadCircleParams, CreateThreadMessage, CreateThreadMessageFile, type CreateThreadMessageFileParams, CreateThreadMessageImage, type CreateThreadMessageImageParams, type CreateThreadMessageParams, CreateThreadMessageReaction, type CreateThreadMessageReactionParams, CreateThreadMessageVideo, type CreateThreadMessageVideoParams, type CreateThreadParams, CreateTier, type CreateTierParams, Currency, type CursorQueryOptions, type CursorQueryParams, type CustomModule, type CustomModuleCreateInputs, CustomModulePosition, type CustomModuleTranslation, type CustomModuleTranslationUpdateInputs, type CustomModuleUpdateInputs, type CustomReport, type CustomReportCreateInputs, type CustomReportUpdateInputs, DASHBOARDS_QUERY_KEY, DASHBOARD_ATTRIBUTES_QUERY_KEY, DASHBOARD_QUERY_KEY, DASHBOARD_WIDGETS_QUERY_KEY, type Dashboard, type DashboardCreateInputs, type DashboardUpdateInputs, type DashboardWidget, type DashboardWidgetCreateInputs, type DashboardWidgetEndpoint, type DashboardWidgetUpdateInputs, DayOfWeek, DefaultAuthAction, DelegateRole, DeleteAccount, DeleteAccountAddress, type DeleteAccountAddressParams, DeleteAccountAttribute, type DeleteAccountAttributeParams, DeleteAccountInvitation, type DeleteAccountInvitationParams, DeleteAccountLead, type DeleteAccountLeadParams, type DeleteAccountParams, DeleteActivity, type DeleteActivityParams, DeleteAdvertisement, type DeleteAdvertisementParams, DeleteAnnouncement, type DeleteAnnouncementParams, DeleteAnnouncementTranslation, type DeleteAnnouncementTranslationParams, DeleteBenefit, type DeleteBenefitParams, DeleteBenefitTranslation, type DeleteBenefitTranslationParams, DeleteBooking, type DeleteBookingParams, DeleteBookingPlace, type DeleteBookingPlaceParams, DeleteBookingPlaceTranslation, type DeleteBookingPlaceTranslationParams, DeleteBookingSpace, DeleteBookingSpaceAvailability, type DeleteBookingSpaceAvailabilityParams, DeleteBookingSpaceBlackout, type DeleteBookingSpaceBlackoutParams, type DeleteBookingSpaceParams, DeleteBookingSpaceTranslation, type DeleteBookingSpaceTranslationParams, DeleteChannel, DeleteChannelContent, DeleteChannelContentGuest, type DeleteChannelContentGuestParams, DeleteChannelContentGuestTranslation, type DeleteChannelContentGuestTranslationParams, type DeleteChannelContentParams, DeleteChannelContentTranslation, type DeleteChannelContentTranslationParams, type DeleteChannelParams, DeleteChannelTranslation, type DeleteChannelTranslationParams, DeleteCustomModule, type DeleteCustomModuleParams, DeleteCustomModuleTranslation, type DeleteCustomModuleTranslationParams, DeleteCustomReport, type DeleteCustomReportParams, DeleteDashboard, type DeleteDashboardParams, DeleteDashboardWidget, type DeleteDashboardWidgetParams, DeleteEvent, DeleteEventActivation, DeleteEventActivationCompletion, type DeleteEventActivationCompletionParams, type DeleteEventActivationParams, DeleteEventActivationTranslation, type DeleteEventActivationTranslationParams, DeleteEventAddOn, type DeleteEventAddOnParams, DeleteEventAddOnTranslation, type DeleteEventAddOnTranslationParams, DeleteEventAttendee, DeleteEventAttendeePackage, type DeleteEventAttendeePackageParams, type DeleteEventAttendeeParams, DeleteEventCoupon, type DeleteEventCouponParams, DeleteEventCouponVariants, type DeleteEventCouponVariantsParams, DeleteEventEmailTranslation, type DeleteEventEmailTranslationParams, DeleteEventFaqSection, type DeleteEventFaqSectionParams, DeleteEventFaqSectionQuestion, type DeleteEventFaqSectionQuestionParams, DeleteEventFaqSectionQuestionTranslation, type DeleteEventFaqSectionQuestionTranslationParams, DeleteEventFaqSectionTranslation, type DeleteEventFaqSectionTranslationParams, DeleteEventFollowup, type DeleteEventFollowupParams, DeleteEventFollowupTranslation, type DeleteEventFollowupTranslationParams, DeleteEventMatch, type DeleteEventMatchParams, DeleteEventMediaItem, type DeleteEventMediaItemParams, DeleteEventPackage, type DeleteEventPackageParams, DeleteEventPackagePass, type DeleteEventPackagePassParams, DeleteEventPackageTranslation, type DeleteEventPackageTranslationParams, DeleteEventPage, type DeleteEventPageParams, DeleteEventPageTranslation, type DeleteEventPageTranslationParams, type DeleteEventParams, DeleteEventPass, type DeleteEventPassParams, DeleteEventPassType, type DeleteEventPassTypeParams, DeleteEventPassTypePriceSchedule, DeleteEventPassTypeRefundSchedule, DeleteEventPassTypeTranslation, type DeleteEventPassTypeTranslationParams, DeleteEventQuestion, DeleteEventQuestionChoice, type DeleteEventQuestionChoiceParams, DeleteEventQuestionChoiceTranslation, type DeleteEventQuestionChoiceTranslationParams, type DeleteEventQuestionParams, DeleteEventQuestionTranslation, type DeleteEventQuestionTranslationParams, DeleteEventRegistrationBypass, type DeleteEventRegistrationBypassParams, DeleteEventReservation, type DeleteEventReservationParams, DeleteEventRoomType, type DeleteEventRoomTypeParams, DeleteEventRoomTypeTranslation, type DeleteEventRoomTypeTranslationParams, DeleteEventRound, type DeleteEventRoundParams, DeleteEventSection, type DeleteEventSectionParams, DeleteEventSectionTranslation, type DeleteEventSectionTranslationParams, DeleteEventSession, DeleteEventSessionAccess, type DeleteEventSessionAccessParams, DeleteEventSessionLocation, type DeleteEventSessionLocationParams, DeleteEventSessionLocationTranslation, type DeleteEventSessionLocationTranslationParams, DeleteEventSessionMatch, type DeleteEventSessionMatchParams, type DeleteEventSessionParams, DeleteEventSessionQuestion, DeleteEventSessionQuestionChoice, type DeleteEventSessionQuestionChoiceParams, DeleteEventSessionQuestionChoiceTranslation, type DeleteEventSessionQuestionChoiceTranslationParams, type DeleteEventSessionQuestionParams, DeleteEventSessionQuestionTranslation, type DeleteEventSessionQuestionTranslationParams, DeleteEventSessionRound, type DeleteEventSessionRoundParams, DeleteEventSessionSection, type DeleteEventSessionSectionParams, DeleteEventSessionSectionTranslation, type DeleteEventSessionSectionTranslationParams, DeleteEventSessionTranslation, type DeleteEventSessionTranslationParams, DeleteEventSpeaker, type DeleteEventSpeakerParams, DeleteEventSpeakerTranslation, type DeleteEventSpeakerTranslationParams, DeleteEventSponsorship, DeleteEventSponsorshipLevel, type DeleteEventSponsorshipLevelParams, DeleteEventSponsorshipLevelTranslation, type DeleteEventSponsorshipLevelTranslationParams, type DeleteEventSponsorshipParams, DeleteEventSponsorshipTranslation, type DeleteEventSponsorshipTranslationParams, DeleteEventTrack, type DeleteEventTrackParams, DeleteEventTrackTranslation, type DeleteEventTrackTranslationParams, DeleteEventTranslation, type DeleteEventTranslationParams, DeleteFile, type DeleteFileParams, DeleteGroup, DeleteGroupInvitation, type DeleteGroupInvitationParams, type DeleteGroupParams, DeleteGroupRequest, type DeleteGroupRequestParams, DeleteGroupTranslation, type DeleteGroupTranslationParams, DeleteImage, type DeleteImageParams, DeleteIntegration, type DeleteIntegrationParams, DeleteInterest, type DeleteInterestParams, DeleteInvoice, DeleteInvoiceLineItem, type DeleteInvoiceLineItemParams, type DeleteInvoiceParams, DeleteLevel, type DeleteLevelParams, DeleteLevelTranslation, type DeleteLevelTranslationParams, DeleteLogin, type DeleteLoginParams, DeleteManyImages, type DeleteManyImagesParams, DeleteManyVideos, type DeleteManyVideosParams, DeleteMeetingLink, type DeleteMeetingLinkParams, DeleteMeetingParticipant, type DeleteMeetingParticipantParams, DeleteMembership, type DeleteMembershipParams, DeleteMembershipPrice, type DeleteMembershipPriceParams, DeleteOrganizationDomain, type DeleteOrganizationDomainParams, DeleteOrganizationPaymentIntegration, type DeleteOrganizationPaymentIntegrationParams, DeleteOrganizationSideEffect, type DeleteOrganizationSideEffectParams, DeleteOrganizationTeamMember, type DeleteOrganizationTeamMemberParams, DeleteOrganizationUser, type DeleteOrganizationUserParams, DeleteOrganizationWebhook, type DeleteOrganizationWebhookParams, DeletePreset, type DeletePresetParams, DeletePushDevice, type DeletePushDeviceParams, DeleteRoom, type DeleteRoomParams, DeleteSearchList, type DeleteSearchListParams, DeleteSearchListValue, type DeleteSearchListValueParams, DeleteSelfApiKey, type DeleteSelfApiKeyParams, DeleteSeries, type DeleteSeriesParams, DeleteStreamInput, DeleteStreamInputOutput, type DeleteStreamInputOutputParams, type DeleteStreamInputParams, DeleteSupportTicket, DeleteSupportTicketNote, type DeleteSupportTicketNoteParams, type DeleteSupportTicketParams, DeleteSurvey, type DeleteSurveyParams, DeleteSurveyQuestion, DeleteSurveyQuestionChoice, type DeleteSurveyQuestionChoiceParams, DeleteSurveyQuestionChoiceTranslation, type DeleteSurveyQuestionChoiceTranslationParams, type DeleteSurveyQuestionParams, DeleteSurveyQuestionTranslation, type DeleteSurveyQuestionTranslationParams, DeleteSurveySection, type DeleteSurveySectionParams, DeleteSurveySectionTranslation, type DeleteSurveySectionTranslationParams, DeleteSurveySubmission, type DeleteSurveySubmissionParams, DeleteSurveyTranslation, type DeleteSurveyTranslationParams, DeleteTaxIntegration, type DeleteTaxIntegrationParams, DeleteThread, DeleteThreadCircle, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, type DeleteThreadCircleParams, DeleteThreadMessage, DeleteThreadMessageFile, type DeleteThreadMessageFileParams, DeleteThreadMessageImage, type DeleteThreadMessageImageParams, type DeleteThreadMessageParams, DeleteThreadMessageReaction, type DeleteThreadMessageReactionParams, DeleteThreadMessageVideo, type DeleteThreadMessageVideoParams, type DeleteThreadParams, DeleteTier, type DeleteTierParams, DeleteUserImage, type DeleteUserImageParams, DeleteVideo, DeleteVideoCaption, type DeleteVideoCaptionParams, type DeleteVideoParams, DetachEventQuestionSearchList, type DetachEventQuestionSearchListParams, DetachEventSessionQuestionSearchList, type DetachEventSessionQuestionSearchListParams, DetachSurveyQuestionSearchList, type DetachSurveyQuestionSearchListParams, DisableLivestream, type DisableLivestreamParams, type DomainDetails, DownloadVideoCaption, type DownloadVideoCaptionParams, EMAIL_RECEIPTS_QUERY_KEY, EMAIL_RECEIPT_QUERY_KEY, ENTITY_USE_CODES_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACCESS_USERS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_COMPLETIONS_QUERY_KEY, EVENT_ACTIVATION_COMPLETION_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_PASSES_QUERY_KEY, EVENT_ADD_ON_PASS_TYPES_QUERY_KEY, EVENT_ADD_ON_QUERY_KEY, EVENT_ADD_ON_TIERS_QUERY_KEY, EVENT_ADD_ON_TRANSLATIONS_QUERY_KEY, EVENT_ADD_ON_TRANSLATION_QUERY_KEY, EVENT_ATTENDEES_QUERY_KEY, EVENT_ATTENDEE_COUPONS_QUERY_KEY, EVENT_ATTENDEE_PACKAGES_QUERY_KEY, EVENT_ATTENDEE_PACKAGE_QUERY_KEY, EVENT_ATTENDEE_PASSES_QUERY_KEY, EVENT_ATTENDEE_PAYMENTS_QUERY_KEY, EVENT_ATTENDEE_QUERY_KEY, EVENT_ATTENDEE_RESERVATIONS_QUERY_KEY, EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, EVENT_COUPONS_QUERY_KEY, EVENT_COUPON_PASSES_QUERY_KEY, EVENT_COUPON_PAYMENTS_QUERY_KEY, EVENT_COUPON_QUERY_KEY, EVENT_COUPON_VARIANTS_QUERY_KEY, EVENT_CO_HOSTS_QUERY_KEY, EVENT_DASHBOARD_QUESTIONS_QUERY_KEY, EVENT_EMAIL_QUERY_KEY, EVENT_EMAIL_TRANSLATIONS_QUERY_KEY, EVENT_EMAIL_TRANSLATION_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_FOLLOWUPS_QUERY_KEY, EVENT_FOLLOWUP_ADDONS_QUERY_KEY, EVENT_FOLLOWUP_PASS_TYPES_QUERY_KEY, EVENT_FOLLOWUP_QUERY_KEY, EVENT_FOLLOWUP_QUESTIONS_QUERY_KEY, EVENT_FOLLOWUP_TIERS_QUERY_KEY, EVENT_FOLLOWUP_TRANSLATIONS_QUERY_KEY, EVENT_FOLLOWUP_TRANSLATION_QUERY_KEY, EVENT_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_PASS_TYPES_QUERY_KEY, EVENT_MEDIA_ITEM_QUERY_KEY, EVENT_ON_SITE_QUERY_KEY, EVENT_PACKAGES_QUERY_KEY, EVENT_PACKAGE_PASSES_QUERY_KEY, EVENT_PACKAGE_PASS_QUERY_KEY, EVENT_PACKAGE_QUERY_KEY, EVENT_PACKAGE_TRANSLATIONS_QUERY_KEY, EVENT_PACKAGE_TRANSLATION_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_PASSES_QUERY_KEY, EVENT_PASS_ACCESSES_QUERY_KEY, EVENT_PASS_ADD_ONS_QUERY_KEY, EVENT_PASS_ATTENDEE_PASSES_QUERY_KEY, EVENT_PASS_MATCHES_QUERY_KEY, EVENT_PASS_PAYMENTS_QUERY_KEY, EVENT_PASS_QUERY_KEY, EVENT_PASS_QUESTION_FOLLOWUPS_QUERY_KEY, EVENT_PASS_QUESTION_SECTIONS_QUERY_KEY, EVENT_PASS_RESPONSES_QUERY_KEY, EVENT_PASS_RESPONSE_CHANGES_QUERY_KEY, EVENT_PASS_RESPONSE_QUERY_KEY, EVENT_PASS_TRANSFER_LOGS_QUERY_KEY, EVENT_PASS_TYPES_QUERY_KEY, EVENT_PASS_TYPE_ADD_ONS_QUERY_KEY, EVENT_PASS_TYPE_COUPONS_QUERY_KEY, EVENT_PASS_TYPE_PASSES_QUERY_KEY, EVENT_PASS_TYPE_PAYMENTS_QUERY_KEY, EVENT_PASS_TYPE_PRICE_SCHEDULES_QUERY_KEY, EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_KEY, EVENT_PASS_TYPE_QUERY_KEY, EVENT_PASS_TYPE_REFUND_SCHEDULES_QUERY_KEY, EVENT_PASS_TYPE_REFUND_SCHEDULE_QUERY_KEY, EVENT_PASS_TYPE_TIERS_QUERY_KEY, EVENT_PASS_TYPE_TRANSLATIONS_QUERY_KEY, EVENT_PASS_TYPE_TRANSLATION_QUERY_KEY, EVENT_PAYMENTS_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_SUMMARIES_QUERY_KEY, EVENT_QUESTION_SUMMARY_QUERY_KEY, EVENT_QUESTION_TRANSLATIONS_QUERY_KEY, EVENT_QUESTION_TRANSLATION_QUERY_KEY, EVENT_REGISTRATION_BYPASS_LIST_QUERY_KEY, EVENT_REGISTRATION_BYPASS_QUERY_KEY, EVENT_RESERVATIONS_QUERY_KEY, EVENT_RESERVATION_PASSES_QUERY_KEY, EVENT_RESERVATION_QUERY_KEY, EVENT_ROOMS_QUERY_KEY, EVENT_ROOM_QUERY_KEY, EVENT_ROOM_TYPES_QUERY_KEY, EVENT_ROOM_TYPE_PASSES_QUERY_KEY, EVENT_ROOM_TYPE_QUERY_KEY, EVENT_ROOM_TYPE_RESERVATIONS_QUERY_KEY, EVENT_ROOM_TYPE_ROOMS_QUERY_KEY, EVENT_ROOM_TYPE_TIERS_QUERY_KEY, EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_KEY, EVENT_ROOM_TYPE_TRANSLATION_QUERY_KEY, EVENT_ROUNDS_QUERY_KEY, EVENT_ROUND_MATCHES_QUERY_KEY, EVENT_ROUND_MATCH_PASSES_QUERY_KEY, EVENT_ROUND_MATCH_QUERY_KEY, EVENT_ROUND_PASSES_QUERY_KEY, EVENT_ROUND_QUESTIONS_QUERY_KEY, EVENT_ROUND_QUESTIONS_SUMMARY_QUERY_KEY, EVENT_SECTIONS_QUERY_KEY, EVENT_SECTION_ADDONS_QUERY_KEY, EVENT_SECTION_PASS_TYPES_QUERY_KEY, EVENT_SECTION_QUERY_KEY, EVENT_SECTION_QUESTIONS_QUERY_KEY, EVENT_SECTION_TIERS_QUERY_KEY, EVENT_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_SECTION_TRANSLATION_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSIONS_WITH_ROUNDS_QUERY_KEY, EVENT_SESSION_ACCESSES_QUERY_KEY, EVENT_SESSION_ACCESS_QUERY_KEY, EVENT_SESSION_ACCESS_RESPONSE_CHANGES_QUERY_KEY, EVENT_SESSION_ACCESS_SESSION_QUESTION_SECTIONS_QUERY_KEY, EVENT_SESSION_ACCOUNTS_QUERY_KEY, EVENT_SESSION_LOCATIONS_QUERY_KEY, EVENT_SESSION_LOCATION_QUERY_KEY, EVENT_SESSION_LOCATION_SESSIONS_QUERY_KEY, EVENT_SESSION_LOCATION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_LOCATION_TRANSLATION_QUERY_KEY, EVENT_SESSION_PASS_TYPES_QUERY_KEY, EVENT_SESSION_PAYMENTS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SESSION_QUESTIONS_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICES_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICE_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICE_QUESTIONS_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICE_TRANSLATION_QUERY_KEY, EVENT_SESSION_QUESTION_QUERY_KEY, EVENT_SESSION_QUESTION_RESPONSES_QUERY_KEY, EVENT_SESSION_QUESTION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_QUESTION_TRANSLATION_QUERY_KEY, EVENT_SESSION_ROUNDS_QUERY_KEY, EVENT_SESSION_ROUND_MATCHES_QUERY_KEY, EVENT_SESSION_ROUND_MATCH_PASSES_QUERY_KEY, EVENT_SESSION_ROUND_MATCH_QUERY_KEY, EVENT_SESSION_ROUND_PASSES_QUERY_KEY, EVENT_SESSION_ROUND_QUESTIONS_QUERY_KEY, EVENT_SESSION_ROUND_QUESTIONS_SUMMARY_QUERY_KEY, EVENT_SESSION_SECTIONS_QUERY_KEY, EVENT_SESSION_SECTION_QUERY_KEY, EVENT_SESSION_SECTION_QUESTIONS_QUERY_KEY, EVENT_SESSION_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_SECTION_TRANSLATION_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_SPONSORSHIPS_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_LEVEL_QUERY_KEY, EVENT_SPONSORSHIP_LEVEL_TRANSLATIONS_QUERY_KEY, EVENT_SPONSORSHIP_LEVEL_TRANSLATION_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORSHIP_TRANSLATIONS_QUERY_KEY, EVENT_SPONSORSHIP_TRANSLATION_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_SPONSOR_ACCOUNTS_QUERY_KEY, EVENT_TEMPLATES_QUERY_KEY, EVENT_THREADS_QUERY_KEY, EVENT_TIERS_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, EnableLivestream, type EnableLivestreamParams, type EntityUseCode, type Event, type EventActivation, type EventActivationCompletionCreateInputs, type EventActivationCompletionUpdateInputs, type EventActivationCreateInputs, type EventActivationTranslation, type EventActivationTranslationUpdateInputs, EventActivationType, type EventActivationUpdateInputs, type EventAddOn, type EventAddOnCreateInputs, type EventAddOnTranslation, type EventAddOnTranslationUpdateInputs, type EventAddOnUpdateInputs, EventAgendaVisibility, type EventAnnouncementFilters, type EventAttendee, type EventAttendeePackageCreateInputs, type EventAttendeePackageUpdateInputs, type EventAttendeeUpdateInputs, type EventBadgeFieldUpdateInputs, type EventCouponCreateInputs, type EventCouponUpdateInputs, type EventCreateInputs, type EventEmail, type EventEmailTranslation, type EventEmailTranslationUpdateInputs, EventEmailType, type EventEmailUpdateInputs, type EventFaqSectionCreateInputs, type EventFaqSectionQuestionCreateInputs, type EventFaqSectionQuestionTranslationUpdateInputs, type EventFaqSectionQuestionUpdateInputs, type EventFaqSectionTranslationUpdateInputs, type EventFaqSectionUpdateInputs, type EventFollowupCreateInputs, type EventFollowupTranslationUpdateInputs, type EventFollowupUpdateInputs, EventGetPassTypeCoupons, type EventListing, type EventMediaItem, type EventMediaItemCreateInputs, type EventMediaItemUpdateInputs, type EventOnSite, type EventOnSiteBadgeField, type EventPackage, type EventPackageCreateInputs, type EventPackagePass, type EventPackagePassCreateInputs, type EventPackagePassUpdateInputs, type EventPackageTranslation, type EventPackageTranslationUpdateInputs, type EventPackageUpdateInputs, type EventPage, type EventPageCreateInputs, type EventPageTranslation, type EventPageTranslationUpdateInputs, type EventPageUpdateInputs, type EventPass, type EventPassCreateInputs, type EventPassType, type EventPassTypePriceSchedule, type EventPassTypeRefundSchedule, type EventPassTypeTranslation, type EventPassUpdateInputs, type EventQuestionChoiceCreateInputs, type EventQuestionChoiceTranslationUpdateInputs, type EventQuestionChoiceUpdateInputs, type EventQuestionCreateInputs, type EventQuestionTranslationUpdateInputs, type EventQuestionUpdateInputs, type EventRegistrationBypassCreateInputs, type EventRegistrationBypassUpdateInputs, EventReportDateType, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypeAddOnDetailsUpdateInputs, type EventRoomTypeCreateInputs, type EventRoomTypePassTypeDetails, type EventRoomTypePassTypeDetailsUpdateInputs, type EventRoomTypeReservation, type EventRoomTypeReservationCreateInputs, type EventRoomTypeReservationUpdateInputs, type EventRoomTypeTranslation, type EventRoomTypeTranslationUpdateInputs, type EventRoomTypeUpdateInputs, type EventSectionCreateInputs, type EventSectionTranslationUpdateInputs, type EventSectionUpdateInputs, type EventSession, type EventSessionAccess, type EventSessionAccessUpdateInputs, type EventSessionCreateInputs, type EventSessionLocation, type EventSessionLocationCreateInputs, type EventSessionLocationTranslation, type EventSessionLocationTranslationUpdateInputs, type EventSessionLocationUpdateInputs, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionChoiceCreateInputs, type EventSessionQuestionChoiceSubQuestion, type EventSessionQuestionChoiceTranslation, type EventSessionQuestionChoiceTranslationUpdateInputs, type EventSessionQuestionChoiceUpdateInputs, type EventSessionQuestionCreateInputs, type EventSessionQuestionResponse, type EventSessionQuestionResponseChange, type EventSessionQuestionTranslation, type EventSessionQuestionTranslationUpdateInputs, EventSessionQuestionType, type EventSessionQuestionUpdateInputs, type EventSessionSection, type EventSessionSectionCreateInputs, type EventSessionSectionQuestion, type EventSessionSectionTranslation, type EventSessionSectionTranslationUpdateInputs, type EventSessionSectionUpdateInputs, type EventSessionTranslation, type EventSessionTranslationUpdateInputs, type EventSessionUpdateInputs, EventSource, type EventSpeaker, type EventSpeakerCreateInputs, type EventSpeakerTranslation, type EventSpeakerTranslationUpdateInputs, type EventSpeakerUpdateInputs, type EventSponsorship, type EventSponsorshipCreateInputs, type EventSponsorshipLevel, type EventSponsorshipLevelCreateInputs, type EventSponsorshipLevelTranslation, type EventSponsorshipLevelTranslationUpdateInputs, type EventSponsorshipLevelUpdateInputs, type EventSponsorshipTranslation, type EventSponsorshipTranslationUpdateInputs, type EventSponsorshipUpdateInputs, type EventTrack, type EventTrackCreateInputs, type EventTrackTranslation, type EventTrackTranslationUpdateInputs, type EventTrackUpdateInputs, type EventTranslation, type EventTranslationUpdateInputs, EventType, type EventUpdateInputs, type EventVariantCouponCreateInputs, type EventVariantCouponSyncInputs, ExportAccount, type ExportAccountParams, ExportStatus, FEATURED_CHANNELS_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_THREADS_QUERY_KEY, GROUP_TRANSLATIONS_QUERY_KEY, GROUP_TRANSLATION_QUERY_KEY, GenerateMeetingSessionSummary, type GenerateMeetingSessionSummaryParams, GenerateVideoCaptions, type GenerateVideoCaptionsParams, GetAPILog, GetAPILogs, GetAcccountEmailReceipts, GetAccount, GetAccountActivities, GetAccountAddress, GetAccountAddresses, GetAccountComments, GetAccountEvents, GetAccountFollowers, GetAccountFollowing, GetAccountGroups, GetAccountInterests, GetAccountInvitations, GetAccountLead, GetAccountLeads, GetAccountLevels, GetAccountLikes, GetAccountNotificationPreferences, GetAccountPayments, GetAccountSubscriptions, GetAccountThreads, GetAccountTiers, GetAccounts, GetActivities, GetActivity, GetActivityComments, GetActivityLikes, GetAdminAPI, GetAdvertisement, GetAdvertisementClicks, GetAdvertisementViews, GetAdvertisements, GetAllEventAddOns, GetAllEventPassTypes, GetAnnouncement, GetAnnouncementAudience, GetAnnouncementEmailReceipts, GetAnnouncementTranslation, GetAnnouncementTranslations, GetAnnouncements, GetAuthSession, GetAuthSessions, GetBaseInfiniteQueryKeys, GetBenefit, GetBenefitClicks, GetBenefitTranslation, GetBenefitTranslations, GetBenefits, GetBooking, GetBookingPlace, GetBookingPlaceBookings, GetBookingPlacePayments, GetBookingPlaceTranslation, GetBookingPlaceTranslations, GetBookingPlaces, GetBookingSpace, GetBookingSpaceAvailabilities, GetBookingSpaceAvailability, GetBookingSpaceBlackout, GetBookingSpaceBlackouts, GetBookingSpaceBookings, GetBookingSpacePayments, GetBookingSpaceSlots, GetBookingSpaceTranslation, GetBookingSpaceTranslations, GetBookingSpaces, GetChannel, GetChannelActivities, GetChannelContent, GetChannelContentActivities, GetChannelContentGuest, GetChannelContentGuestTranslation, GetChannelContentGuestTranslations, GetChannelContentGuests, GetChannelContentLikes, GetChannelContentTranslation, GetChannelContentTranslations, GetChannelContents, GetChannelSubscriber, GetChannelSubscribers, GetChannelTranslation, GetChannelTranslations, GetChannels, GetContents, GetCustomModule, GetCustomModuleTranslation, GetCustomModuleTranslations, GetCustomModules, GetCustomReport, GetCustomReportUsers, GetCustomReports, GetDashboard, GetDashboardAttributes, GetDashboardWidgets, GetDashboards, GetEmailReceipt, GetEmailReceipts, GetEntityUseCodes, GetErrorMessage, GetEvent, GetEventAccessUsers, GetEventActivation, GetEventActivationCompletion, GetEventActivationCompletions, GetEventActivationTranslation, GetEventActivationTranslations, GetEventActivations, GetEventActivities, GetEventAddOn, GetEventAddOnPassTypes, GetEventAddOnPasses, GetEventAddOnTiers, GetEventAddOnTranslation, GetEventAddOnTranslations, GetEventAddOns, GetEventAttendee, GetEventAttendeeCoupons, GetEventAttendeePackage, GetEventAttendeePackages, GetEventAttendeePasses, GetEventAttendeePayments, GetEventAttendeeReservations, GetEventAttendeeTransfersLogs, GetEventAttendees, GetEventCoHosts, GetEventCoupon, GetEventCouponPasses, GetEventCouponPayments, GetEventCouponVariants, GetEventCoupons, GetEventDashboardQuestions, GetEventEmail, GetEventEmailTranslation, GetEventEmailTranslations, GetEventFaqSection, GetEventFaqSectionQuestion, GetEventFaqSectionQuestionTranslation, GetEventFaqSectionQuestionTranslations, GetEventFaqSectionQuestions, GetEventFaqSectionTranslation, GetEventFaqSectionTranslations, GetEventFaqSections, GetEventFollowup, GetEventFollowupAddOns, GetEventFollowupPassTypes, GetEventFollowupQuestions, GetEventFollowupTiers, GetEventFollowupTranslation, GetEventFollowupTranslations, GetEventFollowups, GetEventMediaItem, GetEventMediaItemPassTypes, GetEventMediaItems, GetEventOnSite, GetEventPackage, GetEventPackagePass, GetEventPackagePasses, GetEventPackageTranslation, GetEventPackageTranslations, GetEventPackages, GetEventPage, GetEventPageImages, GetEventPageTranslation, GetEventPageTranslations, GetEventPages, GetEventPass, GetEventPassAccesses, GetEventPassAddOns, GetEventPassAttendeePasses, GetEventPassMatches, GetEventPassPayments, GetEventPassQuestionFollowups, GetEventPassQuestionSections, GetEventPassResponse, GetEventPassResponseChanges, GetEventPassResponses, GetEventPassTransferLogs, GetEventPassType, GetEventPassTypeAddOns, GetEventPassTypePasses, GetEventPassTypePayments, GetEventPassTypePriceSchedule, GetEventPassTypePriceSchedules, GetEventPassTypeRefundSchedule, GetEventPassTypeRefundSchedules, GetEventPassTypeTiers, GetEventPassTypeTranslation, GetEventPassTypeTranslations, GetEventPassTypes, GetEventPasses, GetEventPayments, GetEventQuestion, GetEventQuestionChoice, GetEventQuestionChoiceSubQuestions, GetEventQuestionChoiceTranslation, GetEventQuestionChoiceTranslations, GetEventQuestionChoices, GetEventQuestionResponses, GetEventQuestionSummaries, GetEventQuestionSummary, GetEventQuestionTranslation, GetEventQuestionTranslations, GetEventQuestions, GetEventRegistrationBypass, GetEventRegistrationBypassList, GetEventReservation, GetEventReservationPasses, GetEventReservations, GetEventRoomType, GetEventRoomTypePasses, GetEventRoomTypeReservations, GetEventRoomTypeTiers, GetEventRoomTypeTranslation, GetEventRoomTypeTranslations, GetEventRoomTypes, GetEventRoundMatch, GetEventRoundMatchPasses, GetEventRoundMatches, GetEventRoundPasses, GetEventRoundQuestions, GetEventRoundQuestionsSummary, GetEventRounds, GetEventSection, GetEventSectionAddOns, GetEventSectionPassTypes, GetEventSectionQuestions, GetEventSectionTiers, GetEventSectionTranslation, GetEventSectionTranslations, GetEventSections, GetEventSession, GetEventSessionAccess, GetEventSessionAccessQuestionSections, GetEventSessionAccessResponseChanges, GetEventSessionAccesses, GetEventSessionAccounts, GetEventSessionLocation, GetEventSessionLocationSessions, GetEventSessionLocationTranslation, GetEventSessionLocationTranslations, GetEventSessionLocations, GetEventSessionPassTypes, GetEventSessionPayments, GetEventSessionQuestion, GetEventSessionQuestionChoice, GetEventSessionQuestionChoiceSubQuestions, GetEventSessionQuestionChoiceTranslation, GetEventSessionQuestionChoiceTranslations, GetEventSessionQuestionChoices, GetEventSessionQuestionResponses, GetEventSessionQuestionTranslation, GetEventSessionQuestionTranslations, GetEventSessionQuestions, GetEventSessionRoundMatch, GetEventSessionRoundMatchPasses, GetEventSessionRoundMatches, GetEventSessionRoundPasses, GetEventSessionRoundQuestions, GetEventSessionRoundQuestionsSummary, GetEventSessionRounds, GetEventSessionSection, GetEventSessionSectionQuestions, GetEventSessionSectionTranslation, GetEventSessionSectionTranslations, GetEventSessionSections, GetEventSessionSpeakers, GetEventSessionSponsors, GetEventSessionTracks, GetEventSessionTranslation, GetEventSessionTranslations, GetEventSessions, GetEventSessionsWithRounds, GetEventSpeaker, GetEventSpeakerSessions, GetEventSpeakerTranslation, GetEventSpeakerTranslations, GetEventSpeakers, GetEventSponsorAccounts, GetEventSponsors, GetEventSponsorship, GetEventSponsorshipLevel, GetEventSponsorshipLevelTranslation, GetEventSponsorshipLevelTranslations, GetEventSponsorshipLevels, GetEventSponsorshipTranslation, GetEventSponsorshipTranslations, GetEventSponsorships, GetEventThreads, GetEventTiers, GetEventTrack, GetEventTrackSessions, GetEventTrackSponsors, GetEventTrackTranslation, GetEventTrackTranslations, GetEventTracks, GetEventTranslation, GetEventTranslations, GetEventZplTemplateBadgeField, GetEventZplTemplateBadgeFields, GetEvents, GetFeaturedChannels, GetFile, GetFiles, GetGroup, GetGroupActivities, GetGroupEvents, GetGroupInterests, GetGroupInvitation, GetGroupInvitations, GetGroupMembers, GetGroupModerators, GetGroupRequest, GetGroupRequests, GetGroupSponsors, GetGroupThreads, GetGroupTranslation, GetGroupTranslations, GetGroups, GetImage, GetImageUsage, GetImageVariant, GetImages, GetImport, GetImportItems, GetImports, GetIntegration, GetIntegrations, GetInterest, GetInterestAccounts, GetInterestActivities, GetInterestChannels, GetInterestContents, GetInterestEvents, GetInterestGroups, GetInterests, GetInvoice, GetInvoiceLineItem, GetInvoiceLineItems, GetInvoices, GetLevel, GetLevelAccounts, GetLevelTranslation, GetLevelTranslations, GetLevels, GetLinkPreview, GetLivestream, GetLivestreamSessions, GetLivestreams, GetLogin, GetLoginAccounts, GetLoginAuthSessions, GetLoginDevices, GetLogins, GetMeeting, GetMeetingLink, GetMeetingLinks, GetMeetingLivestream, GetMeetingParticipant, GetMeetingParticipants, GetMeetingRecording, GetMeetingRecordings, GetMeetingSession, GetMeetingSessionMessages, GetMeetingSessionParticipant, GetMeetingSessionParticipants, GetMeetingSessionSummary, GetMeetingSessionTranscript, GetMeetingSessions, GetMeetings, GetMembership, GetMembershipPrice, GetMembershipPrices, GetMembershipSubscriptions, GetMembershipTiers, GetMemberships, GetOrganization, GetOrganizationAccountAttribute, GetOrganizationAccountAttributes, GetOrganizationDomain, GetOrganizationMembership, GetOrganizationModule, GetOrganizationModuleEditableTiers, GetOrganizationModuleEnabledTiers, GetOrganizationModules, GetOrganizationPaymentIntegration, GetOrganizationPaymentIntegrations, GetOrganizationPaymentLink, GetOrganizationSideEffect, GetOrganizationSideEffects, GetOrganizationSystemLog, GetOrganizationSystemLogs, GetOrganizationTeamMember, GetOrganizationTeamMembers, GetOrganizationUsers, GetOrganizationWebhook, GetOrganizationWebhooks, GetPayment, GetPayments, GetPreset, GetPresets, GetPushDevice, GetPushDevices, GetReport, GetReports, GetRequiredAttributes, GetRoom, GetRoomTypeRooms, GetRooms, GetSearchList, GetSearchListConnectedQuestions, GetSearchListValue, GetSearchListValues, GetSearchLists, GetSelf, GetSelfApiKey, GetSelfApiKeys, GetSelfOrgMembership, GetSelfOrganizations, GetSeries, GetSeriesEvents, GetSeriesList, GetStreamInput, GetStreamInputOutput, GetStreamInputOutputs, GetStreamInputs, GetStreamVideos, GetSubscription, GetSubscriptionPayments, GetSubscriptions, GetSupportTicket, GetSupportTickets, GetSurvey, GetSurveyQuestion, GetSurveyQuestionChoice, GetSurveyQuestionChoiceSubQuestions, GetSurveyQuestionChoiceTranslation, GetSurveyQuestionChoiceTranslations, GetSurveyQuestionChoices, GetSurveyQuestionResponses, GetSurveyQuestionTranslation, GetSurveyQuestionTranslations, GetSurveyQuestions, GetSurveySection, GetSurveySectionQuestions, GetSurveySectionTranslation, GetSurveySectionTranslations, GetSurveySections, GetSurveySubmission, GetSurveySubmissionQuestionSections, GetSurveySubmissionResponseChanges, GetSurveySubmissions, GetSurveyTranslation, GetSurveyTranslations, GetSurveys, GetTaxCodes, GetTaxIntegration, GetTaxIntegrations, GetTaxLog, GetTaxLogs, GetTemplates, GetThread, GetThreadAccounts, GetThreadCircle, GetThreadCircleAccount, GetThreadCircleAccounts, GetThreadCircleThreads, GetThreadCircles, GetThreadMembers, GetThreadMessage, GetThreadMessageFiles, type GetThreadMessageFilesProps, GetThreadMessageImages, type GetThreadMessageImagesProps, type GetThreadMessageProps, GetThreadMessageReactions, type GetThreadMessageReactionsProps, GetThreadMessageVideos, type GetThreadMessageVideosProps, GetThreadMessages, GetThreadMessagesPoll, type GetThreadMessagesPollProps, type GetThreadMessagesProps, GetThreads, GetTier, GetTierAccounts, GetTierImport, GetTierImportItems, GetTierImports, GetTierSubscribers, GetTiers, GetVideo, GetVideoCaptions, GetVideoDownloadStatus, 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, IMPORT_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACCOUNTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_CHANNELS_QUERY_KEY, INTEREST_CONTENTS_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_QUERY_KEY, type ISupportedLocale, type Image, type ImageCreateInputs, ImageType, type ImageUpdateInputs, type ImageVariant, type ImageWCopyUri, ImpersonateAccount, type ImpersonateAccountParams, type Import, type ImportCreateInputs, type ImportItem, ImportItemStatus, ImportRooms, type ImportRoomsParams, ImportType, IndexEventPasses, type IndexEventPassesParams, type InfiniteQueryOptions, type InfiniteQueryParams, InitiateVideoDownload, type InitiateVideoDownloadParams, type Integration, type IntegrationCreateInputs, IntegrationType, type IntegrationUpdateInputs, type Interest, type InterestCreateInputs, type InterestInputs, 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, LINK_PREVIEW_QUERY_KEY, LIVESTREAMS_QUERY_KEY, LIVESTREAM_QUERY_KEY, LIVESTREAM_SESSIONS_QUERY_KEY, LOGINS_QUERY_KEY, LOGIN_ACCOUNTS_QUERY_KEY, LOGIN_AUTH_SESSIONS_QUERY_KEY, LOGIN_DEVICES_QUERY_KEY, LOGIN_QUERY_KEY, type Lead, type LeadCreateInputs, LeadStatus, type LeadUpdateInputs, type Level, type LevelCreateInputs, type LevelTranslationUpdateInputs, type LevelUpdateInputs, type Like, type LineChartSummaryData, type LinkInputs, type LinkPreview, type Livestream, type LivestreamSession, LocationQuestionOption, type Login, MEETINGS_QUERY_KEY, MEETING_LINKS_QUERY_KEY, MEETING_LINK_QUERY_KEY, MEETING_LIVESTREAM_QUERY_KEY, MEETING_PARTICIPANTS_QUERY_KEY, MEETING_PARTICIPANT_QUERY_KEY, MEETING_QUERY_KEY, MEETING_RECORDINGS_QUERY_KEY, MEETING_RECORDING_QUERY_KEY, MEETING_SESSIONS_QUERY_KEY, MEETING_SESSION_MESSAGES_QUERY_KEY, MEETING_SESSION_PARTICIPANTS_QUERY_KEY, MEETING_SESSION_PARTICIPANT_QUERY_KEY, MEETING_SESSION_QUERY_KEY, MEETING_SESSION_SUMMARY_QUERY_KEY, MEETING_SESSION_TRANSCRIPT_QUERY_KEY, MEMBERSHIPS_QUERY_KEY, MEMBERSHIP_PRICES_QUERY_KEY, MEMBERSHIP_PRICE_QUERY_KEY, MEMBERSHIP_QUERY_KEY, MEMBERSHIP_SUBSCRIPTIONS_QUERY_KEY, MEMBERSHIP_TIERS_QUERY_KEY, type Match, MatchQuestionType, type MatchUpdateInputs, type Meeting, type MeetingCreateInputs, type MeetingLink, type MeetingLinkCreateInputs, type MeetingLinkUpdateInputs, type MeetingParticipantCreateInputs, type MeetingParticipantUpdateInputs, type MeetingPresetCreateInputs, type MeetingPresetUpdateInputs, type MeetingRecording, type MeetingRecordingCreateInputs, type MeetingRecordingUpdateInputs, type MeetingSession, type MeetingSessionChatDownload, type MeetingSessionSummaryDownload, type MeetingSessionTranscriptDownload, type MeetingUpdateInputs, type Membership, type MembershipCreateInputs, type MembershipPrice, type MembershipPriceCreateInputs, MembershipPriceInterval, MembershipPriceType, type MembershipPriceUpdateInputs, type MembershipUpdateInputs, type MentionInputs, MergeInfinitePages, ModerationStatus, type ModulePermissions, type MutationParams, type Notification, type NotificationPreferences, type NotificationPreferencesCreateInputs, type NotificationPreferencesUpdateInputs, NotificationType, ORGANIZATION_ACCOUNT_ATTRIBUTES_QUERY_KEY, ORGANIZATION_ACCOUNT_ATTRIBUTE_QUERY_KEY, ORGANIZATION_DOMAIN_QUERY_KEY, ORGANIZATION_MEMBERSHIP_QUERY_KEY, ORGANIZATION_MODULES_QUERY_KEY, ORGANIZATION_MODULE_EDITABLE_TIERS_QUERY_KEY, ORGANIZATION_MODULE_ENABLED_TIERS_QUERY_KEY, ORGANIZATION_MODULE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATIONS_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_LINK_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SIDE_EFFECTS_QUERY_KEY, ORGANIZATION_SIDE_EFFECT_QUERY_KEY, ORGANIZATION_SYSTEM_LOGS_QUERY_KEY, ORGANIZATION_SYSTEM_LOG_QUERY_KEY, ORGANIZATION_TEAM_MEMBERS_QUERY_KEY, ORGANIZATION_TEAM_MEMBER_QUERY_KEY, ORGANIZATION_USERS_QUERY_KEY, ORGANIZATION_WEBHOOKS_QUERY_KEY, ORGANIZATION_WEBHOOK_QUERY_KEY, type Organization, OrganizationActionType, type OrganizationMembership, type OrganizationMembershipUpdateInputs, type OrganizationModule, OrganizationModuleType, type OrganizationModuleUpdateInputs, type OrganizationPageCreateInputs, type OrganizationPageTranslationUpdateInputs, type OrganizationPageUpdateInputs, type OrganizationTeamMemberCreateInputs, type OrganizationTeamMemberUpdateInputs, type OrganizationTrigger, OrganizationTriggerType, type OrganizationUpdateInputs, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, PRESETS_QUERY_KEY, PRESET_QUERY_KEY, PUSH_DEVICES_QUERY_KEY, PUSH_DEVICE_QUERY_KEY, PageType, type Participant, type PassAddOn, PassTypeAccessLevel, type PassTypeCreateInputs, type PassTypePriceScheduleCreateInputs, type PassTypePriceScheduleUpdateInputs, type PassTypeRefundScheduleCreateInputs, type PassTypeRefundScheduleUpdateInputs, type PassTypeTranslationUpdateInputs, type PassTypeUpdateInputs, PassTypeVisibility, type Payment, type PaymentIntegration, PaymentIntegrationType, type PaymentIntentPurchaseMetadataInputs, type PaymentLineItem, PaymentLineItemType, PaymentType, type PaymentUpdateInputs, type PaypalActivationFormParams, type Preset, PublishActivity, type PublishActivityParams, PurchaseStatus, type PushDevice, type PushDeviceCreateInputs, type PushDeviceUpdateInputs, PushService, type Question, REPORTS_QUERY_KEY, REPORT_QUERY_KEY, REQUIRED_ATTRIBUTES_QUERY_KEY, type RecordingAction, type RefundLineItem, RefundOrganizationPayment, type RefundOrganizationPaymentParams, RegenerateMeetingParticipantToken, type RegenerateMeetingParticipantTokenParams, type RegistrationBypass, type RegistrationFollowup, type RegistrationFollowupQuestion, type RegistrationFollowupTranslation, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionChoiceSubQuestion, type RegistrationQuestionChoiceTranslation, type RegistrationQuestionResponse, type RegistrationQuestionResponseChange, type RegistrationQuestionTranslation, RegistrationQuestionType, type RegistrationQuestionWithResponse, type RegistrationSection, type RegistrationSectionQuestion, type RegistrationSectionTranslation, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveAccountFollower, type RemoveAccountFollowerParams, RemoveAccountFollowing, type RemoveAccountFollowingParams, RemoveAccountGroup, type RemoveAccountGroupParams, RemoveAccountInterest, type RemoveAccountInterestParams, RemoveAccountTier, type RemoveAccountTierParams, RemoveAllChannelSubscribers, type RemoveAllChannelSubscribersParams, RemoveAllGroupMembers, type RemoveAllGroupMembersParams, RemoveChannelSubscriber, type RemoveChannelSubscriberParams, RemoveCustomReportUser, type RemoveCustomReportUserParams, RemoveEventAccessUser, RemoveEventAddOnPassType, type RemoveEventAddOnPassTypeParams, RemoveEventAddOnTier, type RemoveEventAddOnTierParams, RemoveEventBenefit, type RemoveEventBenefitParams, RemoveEventCoHost, type RemoveEventCoHostParams, RemoveEventFollowupAddOn, type RemoveEventFollowupAddOnParams, RemoveEventFollowupPassType, type RemoveEventFollowupPassTypeParams, RemoveEventFollowupQuestion, type RemoveEventFollowupQuestionParams, RemoveEventFollowupTier, type RemoveEventFollowupTierParams, RemoveEventMatchPass, type RemoveEventMatchPassParams, RemoveEventMediaItemPassType, type RemoveEventMediaItemPassTypeParams, RemoveEventPageImage, type RemoveEventPageImageParams, RemoveEventPassAddOn, type RemoveEventPassAddOnParams, RemoveEventPassTypeAddOn, type RemoveEventPassTypeAddOnParams, RemoveEventPassTypeTier, type RemoveEventPassTypeTierParams, RemoveEventQuestionChoiceSubQuestion, type RemoveEventQuestionChoiceSubQuestionParams, RemoveEventReservationPass, type RemoveEventReservationPassParams, RemoveEventRoomTypeTier, type RemoveEventRoomTypeTierParams, RemoveEventSectionAddOn, type RemoveEventSectionAddOnParams, RemoveEventSectionPassType, type RemoveEventSectionPassTypeParams, RemoveEventSectionQuestion, type RemoveEventSectionQuestionParams, RemoveEventSectionTier, type RemoveEventSectionTierParams, RemoveEventSessionAccount, type RemoveEventSessionAccountParams, RemoveEventSessionLocationSession, type RemoveEventSessionLocationSessionParams, RemoveEventSessionMatchPass, type RemoveEventSessionMatchPassParams, RemoveEventSessionPassType, type RemoveEventSessionPassTypeParams, RemoveEventSessionQuestionChoiceSubQuestion, type RemoveEventSessionQuestionChoiceSubQuestionParams, RemoveEventSessionSectionQuestion, type RemoveEventSessionSectionQuestionParams, RemoveEventSessionSpeaker, type RemoveEventSessionSpeakerParams, RemoveEventSessionSponsor, type RemoveEventSessionSponsorParams, RemoveEventSessionTrack, type RemoveEventSessionTrackParams, RemoveEventSpeakerSession, type RemoveEventSpeakerSessionParams, RemoveEventSponsorAccount, type RemoveEventSponsorAccountParams, RemoveEventTrackSession, type RemoveEventTrackSessionParams, RemoveEventTrackSponsor, type RemoveEventTrackSponsorParams, RemoveGroupEvent, type RemoveGroupEventParams, RemoveGroupInterest, type RemoveGroupInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveGroupModerator, type RemoveGroupModeratorParams, RemoveGroupSponsor, type RemoveGroupSponsorParams, RemoveLevelAccount, type RemoveLevelAccountParams, RemoveLoginAccount, type RemoveLoginAccountParams, RemoveMembershipTier, type RemoveMembershipTierParams, RemoveOrganizationModuleEditableTier, type RemoveOrganizationModuleEditableTierParams, RemoveOrganizationModuleEnabledTier, type RemoveOrganizationModuleEnabledTierParams, RemoveRoomFromRoomType, type RemoveRoomFromRoomTypeParams, RemoveSeriesEvent, type RemoveSeriesEventParams, RemoveSurveyQuestionChoiceSubQuestion, type RemoveSurveyQuestionChoiceSubQuestionParams, RemoveSurveySectionQuestion, type RemoveSurveySectionQuestionParams, RemoveTierAccounts, type RemoveTierAccountsParams, ReorderEventFaqSectionQuestions, type ReorderEventFaqSectionQuestionsParams, ReorderEventFollowupQuestions, type ReorderEventFollowupQuestionsParams, ReorderEventQuestionChoiceSubQuestions, type ReorderEventQuestionChoiceSubQuestionsParams, ReorderEventQuestionChoices, type ReorderEventQuestionChoicesParams, ReorderEventSectionQuestions, type ReorderEventSectionQuestionsParams, ReorderEventSessionQuestionChoiceSubQuestions, type ReorderEventSessionQuestionChoiceSubQuestionsParams, ReorderEventSessionQuestionChoices, type ReorderEventSessionQuestionChoicesParams, ReorderEventSessionSectionQuestions, type ReorderEventSessionSectionQuestionsParams, ReorderEventSponsorshipLevels, type ReorderEventSponsorshipLevelsParams, ReorderEventSponsorships, type ReorderEventSponsorshipsParams, ReorderSurveyQuestionChoiceSubQuestions, type ReorderSurveyQuestionChoiceSubQuestionsParams, ReorderSurveyQuestionChoices, type ReorderSurveyQuestionChoicesParams, ReorderSurveySectionQuestions, type ReorderSurveySectionQuestionsParams, type ReportFilters, ReportType, ResendRegistrationConfirmationEmail, type ResendRegistrationConfirmationEmailParams, ResetLivestreamStreamKey, type ResetLivestreamStreamKeyParams, RevertChannelContentToDraft, type RevertChannelContentToDraftParams, type Room, type RoomCreateInputs, type RoomUpdateInputs, type Round, type RoundEventQuestion, type RoundEventQuestionUpdataInputs, type RoundSessionQuestion, type RoundSessionQuestionUpdateInputs, SEARCHLISTS_QUERY_KEY, SEARCHLIST_CONNECTED_QUESTIONS_QUERY_KEY, SEARCHLIST_QUERY_KEY, SEARCHLIST_VALUES_QUERY_KEY, SEARCHLIST_VALUE_QUERY_KEY, SEARCH_ORGANIZATION_QUERY_KEY, SELF_API_KEYS_QUERY_KEY, SELF_API_KEY_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_ADDRESSES_QUERY_DATA, SET_ACCOUNT_COMMENTS_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_INVITATIONS_QUERY_DATA, SET_ACCOUNT_LEADS_QUERY_DATA, SET_ACCOUNT_LEAD_QUERY_DATA, SET_ACCOUNT_LEVELS_QUERY_DATA, SET_ACCOUNT_LIKES_QUERY_DATA, SET_ACCOUNT_NOTIFICATION_PREFERENCES_QUERY_DATA, SET_ACCOUNT_PAYMENTS_QUERY_DATA, SET_ACCOUNT_PUSH_DEVICES_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACCOUNT_SUBSCRIPTIONS_QUERY_DATA, SET_ACCOUNT_THREADS_QUERY_DATA, SET_ACCOUNT_TIERS_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENTS_QUERY_DATA, SET_ADVERTISEMENT_CLICKS_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ADVERTISEMENT_VIEWS_QUERY_DATA, SET_ALL_EVENT_ADD_ON_QUERY_DATA, SET_ALL_EVENT_PASS_TYPES_QUERY_DATA, SET_ANNOUNCEMENTS_QUERY_DATA, SET_ANNOUNCEMENT_AUDIENCE_QUERY_DATA, SET_ANNOUNCEMENT_EMAILS_QUERY_DATA, SET_ANNOUNCEMENT_QUERY_DATA, SET_ANNOUNCEMENT_TRANSLATIONS_QUERY_DATA, SET_ANNOUNCEMENT_TRANSLATION_QUERY_DATA, SET_API_LOGS_QUERY_DATA, SET_API_LOG_QUERY_DATA, SET_AUTH_SESSIONS_QUERY_DATA, SET_AUTH_SESSION_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_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACE_PAYMENTS_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_TRANSLATIONS_QUERY_DATA, SET_BOOKING_PLACE_TRANSLATION_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_BOOKING_SPACES_QUERY_DATA, SET_BOOKING_SPACE_AVAILABILITIES_QUERY_DATA, SET_BOOKING_SPACE_AVAILABILITY_QUERY_DATA, SET_BOOKING_SPACE_BLACKOUTS_QUERY_DATA, SET_BOOKING_SPACE_BLACKOUT_QUERY_DATA, SET_BOOKING_SPACE_BOOKINGS_QUERY_DATA, SET_BOOKING_SPACE_PAYMENTS_QUERY_DATA, SET_BOOKING_SPACE_QUERY_DATA, SET_BOOKING_SPACE_SLOTS_QUERY_DATA, SET_BOOKING_SPACE_TRANSLATIONS_QUERY_DATA, SET_BOOKING_SPACE_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_CONTENTS_QUERY_DATA, SET_CUSTOM_MODULES_QUERY_DATA, SET_CUSTOM_MODULE_QUERY_DATA, SET_CUSTOM_MODULE_TRANSLATIONS_QUERY_DATA, SET_CUSTOM_MODULE_TRANSLATION_QUERY_DATA, SET_CUSTOM_REPORTS_QUERY_DATA, SET_CUSTOM_REPORT_QUERY_DATA, SET_CUSTOM_REPORT_USERS_QUERY_DATA, SET_DASHBOARDS_QUERY_DATA, SET_DASHBOARD_ATTRIBUTES_QUERY_DATA, SET_DASHBOARD_QUERY_DATA, SET_DASHBOARD_WIDGETS_QUERY_DATA, SET_EMAIL_RECEIPTS_QUERY_DATA, SET_EMAIL_RECEIPT_QUERY_DATA, SET_ENTITY_USE_CODES_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETION_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_PASSES_QUERY_DATA, SET_EVENT_ADD_ON_PASS_TYPES_QUERY_DATA, SET_EVENT_ADD_ON_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_ATTENDEES_QUERY_DATA, SET_EVENT_ATTENDEE_PACKAGES_QUERY_DATA, SET_EVENT_ATTENDEE_PACKAGE_QUERY_DATA, SET_EVENT_ATTENDEE_PASSES_QUERY_DATA, SET_EVENT_ATTENDEE_PAYMENTS_QUERY_DATA, SET_EVENT_ATTENDEE_QUERY_DATA, SET_EVENT_ATTENDEE_RESERVATIONS_QUERY_DATA, SET_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_DATA, SET_EVENT_COUPONS_QUERY_DATA, SET_EVENT_COUPON_PASSES_QUERY_DATA, SET_EVENT_COUPON_PAYMENTS_QUERY_DATA, SET_EVENT_COUPON_QUERY_DATA, SET_EVENT_COUPON_VARIANTS_QUERY_DATA, SET_EVENT_CO_HOSTS_QUERY_DATA, SET_EVENT_DASHBOARD_QUESTIONS_QUERY_DATA, SET_EVENT_EMAIL_QUERY_DATA, SET_EVENT_EMAIL_TRANSLATIONS_QUERY_DATA, SET_EVENT_EMAIL_TRANSLATION_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_FOLLOWUPS_QUERY_DATA, SET_EVENT_FOLLOWUP_ADDONS_QUERY_DATA, SET_EVENT_FOLLOWUP_PASS_TYPES_QUERY_DATA, SET_EVENT_FOLLOWUP_QUERY_DATA, SET_EVENT_FOLLOWUP_QUESTIONS_QUERY_DATA, SET_EVENT_FOLLOWUP_TIERS_QUERY_DATA, SET_EVENT_FOLLOWUP_TRANSLATIONS_QUERY_DATA, SET_EVENT_FOLLOWUP_TRANSLATION_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_QUERY_DATA, SET_EVENT_MEDIA_ITEM_PASS_TYPES_QUERY_DATA, SET_EVENT_MEDIA_ITEM_QUERY_DATA, SET_EVENT_ON_SITE_QUERY_DATA, SET_EVENT_PACKAGES_QUERY_DATA, SET_EVENT_PACKAGE_PASSES_QUERY_DATA, SET_EVENT_PACKAGE_PASS_QUERY_DATA, SET_EVENT_PACKAGE_QUERY_DATA, SET_EVENT_PACKAGE_TRANSLATIONS_QUERY_DATA, SET_EVENT_PACKAGE_TRANSLATION_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_PASS_ACCESSES_QUERY_DATA, SET_EVENT_PASS_ADD_ONS_QUERY_DATA, SET_EVENT_PASS_ATTENDEE_PASSES_QUERY_DATA, SET_EVENT_PASS_MATCHES_QUERY_DATA, SET_EVENT_PASS_PAYMENTS_QUERY_DATA, SET_EVENT_PASS_QUERY_DATA, SET_EVENT_PASS_QUESTION_FOLLOWUPS_QUERY_DATA, SET_EVENT_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_PASS_RESPONSES_QUERY_DATA, SET_EVENT_PASS_RESPONSE_CHANGES_QUERY_DATA, SET_EVENT_PASS_RESPONSE_QUERY_DATA, SET_EVENT_PASS_TRANSFER_LOGS_QUERY_DATA, SET_EVENT_PASS_TYPES_QUERY_DATA, SET_EVENT_PASS_TYPE_ADD_ONS_QUERY_DATA, SET_EVENT_PASS_TYPE_PASSES_QUERY_DATA, SET_EVENT_PASS_TYPE_PAYMENTS_QUERY_DATA, SET_EVENT_PASS_TYPE_PRICE_SCHEDULES_QUERY_DATA, SET_EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_DATA, SET_EVENT_PASS_TYPE_QUERY_DATA, SET_EVENT_PASS_TYPE_REFUND_SCHEDULES_QUERY_DATA, SET_EVENT_PASS_TYPE_REFUND_SCHEDULE_QUERY_DATA, SET_EVENT_PASS_TYPE_TIERS_QUERY_DATA, SET_EVENT_PASS_TYPE_TRANSLATIONS_QUERY_DATA, SET_EVENT_PASS_TYPE_TRANSLATION_QUERY_DATA, SET_EVENT_PAYMENTS_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_SUMMARIES_QUERY_DATA, SET_EVENT_QUESTION_SUMMARY_QUERY_DATA, SET_EVENT_QUESTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_QUESTION_TRANSLATION_QUERY_DATA, SET_EVENT_REGISTRATION_BYPASS_QUERY_DATA, SET_EVENT_REGISTRATION_COUPONS_QUERY_DATA, SET_EVENT_RESERVATIONS_QUERY_DATA, SET_EVENT_RESERVATION_PASSES_QUERY_DATA, SET_EVENT_RESERVATION_QUERY_DATA, SET_EVENT_ROOMS_QUERY_DATA, SET_EVENT_ROOM_QUERY_DATA, SET_EVENT_ROOM_TYPES_QUERY_DATA, SET_EVENT_ROOM_TYPE_PASSES_QUERY_DATA, SET_EVENT_ROOM_TYPE_QUERY_DATA, SET_EVENT_ROOM_TYPE_RESERVATIONS_QUERY_DATA, SET_EVENT_ROOM_TYPE_ROOMS_QUERY_DATA, SET_EVENT_ROOM_TYPE_TIERS_QUERY_DATA, SET_EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_DATA, SET_EVENT_ROOM_TYPE_TRANSLATION_QUERY_DATA, SET_EVENT_ROUNDS_QUERY_DATA, SET_EVENT_ROUND_MATCHES_QUERY_DATA, SET_EVENT_ROUND_MATCH_PASSES_QUERY_DATA, SET_EVENT_ROUND_MATCH_QUERY_DATA, SET_EVENT_ROUND_PASSES_QUERY_DATA, SET_EVENT_ROUND_QUESTIONS_QUERY_DATA, SET_EVENT_ROUND_QUESTIONS_SUMMARY_QUERY_DATA, SET_EVENT_SECTIONS_QUERY_DATA, SET_EVENT_SECTION_ADDONS_QUERY_DATA, SET_EVENT_SECTION_PASS_TYPES_QUERY_DATA, SET_EVENT_SECTION_QUERY_DATA, SET_EVENT_SECTION_QUESTIONS_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_SESSIONS_WITH_ROUNDS_QUERY_DATA, SET_EVENT_SESSION_ACCESSES_QUERY_DATA, SET_EVENT_SESSION_ACCESS_QUERY_DATA, SET_EVENT_SESSION_ACCESS_RESPONSE_CHANGES_QUERY_DATA, SET_EVENT_SESSION_ACCESS_SESSION_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_SESSION_ACCOUNTS_QUERY_DATA, SET_EVENT_SESSION_LOCATIONS_QUERY_DATA, SET_EVENT_SESSION_LOCATION_QUERY_DATA, SET_EVENT_SESSION_LOCATION_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_LOCATION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_LOCATION_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_PASS_TYPES_QUERY_DATA, SET_EVENT_SESSION_PAYMENTS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SESSION_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICES_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICE_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICE_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICE_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_QUESTION_QUERY_DATA, SET_EVENT_SESSION_QUESTION_RESPONSES_QUERY_DATA, SET_EVENT_SESSION_QUESTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_ROUNDS_QUERY_DATA, SET_EVENT_SESSION_ROUND_MATCHES_QUERY_DATA, SET_EVENT_SESSION_ROUND_MATCH_PASSES_QUERY_DATA, SET_EVENT_SESSION_ROUND_MATCH_QUERY_DATA, SET_EVENT_SESSION_ROUND_PASSES_QUERY_DATA, SET_EVENT_SESSION_ROUND_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_ROUND_QUESTIONS_SUMMARY_QUERY_DATA, SET_EVENT_SESSION_SECTIONS_QUERY_DATA, SET_EVENT_SESSION_SECTION_QUERY_DATA, SET_EVENT_SESSION_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_SECTION_TRANSLATION_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_SPONSORSHIPS_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVEL_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVEL_TRANSLATIONS_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVEL_TRANSLATION_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORSHIP_TRANSLATIONS_QUERY_DATA, SET_EVENT_SPONSORSHIP_TRANSLATION_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_SPONSOR_ACCOUNTS_QUERY_DATA, SET_EVENT_TEMPLATES_QUERY_DATA, SET_EVENT_THREADS_QUERY_DATA, SET_EVENT_TIERS_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_CHANNELS_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_THREADS_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_IMPORT_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INTEREST_ACCOUNTS_QUERY_DATA, SET_INTEREST_ACTIVITIES_QUERY_DATA, SET_INTEREST_CHANNELS_QUERY_DATA, SET_INTEREST_CONTENTS_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_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_LINK_PREVIEW_QUERY_DATA, SET_LIVESTREAMS_QUERY_DATA, SET_LIVESTREAM_QUERY_DATA, SET_LIVESTREAM_SESSIONS_QUERY_DATA, SET_LOGIN_AUTH_SESSIONS_QUERY_DATA, SET_MEETINGS_QUERY_DATA, SET_MEETING_LINKS_QUERY_DATA, SET_MEETING_LINK_QUERY_DATA, SET_MEETING_LIVESTREAM_QUERY_DATA, SET_MEETING_PARTICIPANTS_QUERY_DATA, SET_MEETING_PARTICIPANT_QUERY_DATA, SET_MEETING_QUERY_DATA, SET_MEETING_RECORDINGS_QUERY_DATA, SET_MEETING_RECORDING_QUERY_DATA, SET_MEETING_SESSIONS_QUERY_DATA, SET_MEETING_SESSION_MESSAGES_QUERY_DATA, SET_MEETING_SESSION_PARTICIPANTS_QUERY_DATA, SET_MEETING_SESSION_PARTICIPANT_QUERY_DATA, SET_MEETING_SESSION_QUERY_DATA, SET_MEETING_SESSION_SUMMARY_QUERY_DATA, SET_MEETING_SESSION_TRANSCRIPT_QUERY_DATA, SET_MEMBERSHIPS_QUERY_DATA, SET_MEMBERSHIP_PRICES_QUERY_DATA, SET_MEMBERSHIP_PRICE_QUERY_DATA, SET_MEMBERSHIP_QUERY_DATA, SET_MEMBERSHIP_SUBSCRIPTIONS_QUERY_DATA, SET_MEMBERSHIP_TIERS_QUERY_DATA, SET_ORGANIZATION_ACCOUNT_ATTRIBUTES_QUERY_DATA, SET_ORGANIZATION_ACCOUNT_ATTRIBUTE_QUERY_DATA, SET_ORGANIZATION_DOMAIN_QUERY_DATA, SET_ORGANIZATION_MEMBERSHIP_QUERY_DATA, SET_ORGANIZATION_MODULES_QUERY_DATA, SET_ORGANIZATION_MODULE_EDITABLE_TIERS_QUERY_DATA, SET_ORGANIZATION_MODULE_ENABLED_TIERS_QUERY_DATA, SET_ORGANIZATION_MODULE_QUERY_DATA, SET_ORGANIZATION_PAYMENT_INTEGRATIONS_QUERY_DATA, SET_ORGANIZATION_PAYMENT_INTEGRATION_QUERY_DATA, SET_ORGANIZATION_QUERY_DATA, SET_ORGANIZATION_SIDE_EFFECTS_QUERY_DATA, SET_ORGANIZATION_SIDE_EFFECT_QUERY_DATA, SET_ORGANIZATION_STRIPE_LINK_QUERY_DATA, SET_ORGANIZATION_SYSTEM_LOGS_QUERY_DATA, SET_ORGANIZATION_SYSTEM_LOG_QUERY_DATA, SET_ORGANIZATION_TEAM_MEMBERS_QUERY_DATA, SET_ORGANIZATION_TEAM_MEMBER_QUERY_DATA, SET_ORGANIZATION_USERS_QUERY_DATA, SET_ORGANIZATION_WEBHOOKS_QUERY_DATA, SET_ORGANIZATION_WEBHOOK_QUERY_DATA, SET_PASS_TYPE_COUPONS_QUERY_DATA, SET_PAYMENTS_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PRESETS_QUERY_DATA, SET_PRESET_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_REPORTS_QUERY_DATA, SET_REPORT_QUERY_DATA, SET_REQUIRED_ATTRIBUTES_QUERY_DATA, SET_SEARCHLISTS_QUERY_DATA, SET_SEARCHLIST_CONNECTED_QUESTIONS_QUERY_DATA, SET_SEARCHLIST_QUERY_DATA, SET_SEARCHLIST_VALUES_QUERY_DATA, SET_SEARCHLIST_VALUE_QUERY_DATA, SET_SEARCH_ORGANIZATION_QUERY_DATA, SET_SELF_API_KEYS_QUERY_DATA, SET_SELF_API_KEY_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_STREAM_VIDEOS_QUERY_DATA, SET_SUBSCRIPTIONS_QUERY_DATA, SET_SUBSCRIPTION_PAYMENTS_QUERY_DATA, SET_SUBSCRIPTION_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_SURVEYS_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_QUESTIONS_QUERY_DATA, SET_SURVEY_QUESTION_CHOICES_QUERY_DATA, SET_SURVEY_QUESTION_CHOICE_QUERY_DATA, SET_SURVEY_QUESTION_CHOICE_QUESTIONS_QUERY_DATA, SET_SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA, SET_SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_DATA, SET_SURVEY_QUESTION_QUERY_DATA, SET_SURVEY_QUESTION_RESPONSES_QUERY_DATA, SET_SURVEY_QUESTION_SECTIONS_QUERY_DATA, SET_SURVEY_QUESTION_TRANSLATIONS_QUERY_DATA, SET_SURVEY_QUESTION_TRANSLATION_QUERY_DATA, SET_SURVEY_SECTIONS_QUERY_DATA, SET_SURVEY_SECTION_QUERY_DATA, SET_SURVEY_SECTION_QUESTIONS_QUERY_DATA, SET_SURVEY_SECTION_TRANSLATIONS_QUERY_DATA, SET_SURVEY_SECTION_TRANSLATION_QUERY_DATA, SET_SURVEY_SUBMISSION_QUERY_DATA, SET_SURVEY_SUBMISSION_RESPONSE_CHANGES_QUERY_DATA, SET_SURVEY_TRANSLATIONS_QUERY_DATA, SET_SURVEY_TRANSLATION_QUERY_DATA, SET_TAX_CODES_QUERY_DATA, SET_TAX_INTEGRATIONS_QUERY_DATA, SET_TAX_INTEGRATION_QUERY_DATA, SET_TAX_LOGS_QUERY_DATA, SET_TAX_LOG_QUERY_DATA, SET_THREADS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_CIRCLE_THREADS_QUERY_DATA, SET_THREAD_MESSAGES_POLL_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_FILES_QUERY_DATA, SET_THREAD_MESSAGE_IMAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_MESSAGE_REACTIONS_QUERY_DATA, SET_THREAD_MESSAGE_VIDEOS_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TIERS_QUERY_DATA, SET_TIER_ACCOUNTS_QUERY_DATA, SET_TIER_IMPORT_QUERY_DATA, SET_TIER_QUERY_DATA, SET_TIER_SUBSCRIBERS_QUERY_DATA, SET_VIDEOS_QUERY_DATA, SET_VIDEO_CAPTIONS_QUERY_DATA, SET_VIDEO_DOWNLOAD_STATUS_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_INPUTS_QUERY_KEY, STREAM_INPUT_OUTPUTS_QUERY_KEY, STREAM_INPUT_OUTPUT_QUERY_KEY, STREAM_QUERY_KEY, STREAM_VIDEOS_QUERY_KEY, SUBSCRIPTIONS_QUERY_KEY, SUBSCRIPTION_PAYMENTS_QUERY_KEY, SUBSCRIPTION_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, SURVEYS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_QUESTIONS_QUERY_KEY, SURVEY_QUESTION_CHOICES_QUERY_KEY, SURVEY_QUESTION_CHOICE_QUERY_KEY, SURVEY_QUESTION_CHOICE_QUESTIONS_QUERY_KEY, SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY, SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_KEY, SURVEY_QUESTION_QUERY_KEY, SURVEY_QUESTION_RESPONSES_QUERY_KEY, SURVEY_QUESTION_SECTIONS_QUERY_KEY, SURVEY_QUESTION_TRANSLATIONS_QUERY_KEY, SURVEY_QUESTION_TRANSLATION_QUERY_KEY, SURVEY_SECTIONS_QUERY_KEY, SURVEY_SECTION_QUERY_KEY, SURVEY_SECTION_QUESTIONS_QUERY_KEY, SURVEY_SECTION_TRANSLATIONS_QUERY_KEY, SURVEY_SECTION_TRANSLATION_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_RESPONSE_CHANGES_QUERY_KEY, SURVEY_TRANSLATIONS_QUERY_KEY, SURVEY_TRANSLATION_QUERY_KEY, type Schedule, type SearchField, type SearchList, type SearchListConnectedQuestion, type SearchListCreateInputs, type SearchListUpdateInputs, type SearchListValue, type SearchListValueCreateInputs, type SearchListValueUpdateInputs, SearchOrganization, type SearchOrganizationFilters, type SegmentInputs, type Self, SelfLeaveOrganization, type SelfLeaveOrganizationParams, SendAnnouncementPreview, type SendAnnouncementPreviewParams, SendInvoice, type SendInvoiceParams, type Series, type SeriesCreateInputs, type SeriesUpdateInputs, SessionAccess, type SideEffect, SideEffectActionType, SideEffectTriggerType, type SingleQueryOptions, type SingleQueryParams, type SponsorshipLevelTranslation, type StandardReport, StartEventRoundMatchmaking, type StartEventRoundMatchmakingParams, StartEventSessionRoundMatchmaking, type StartEventSessionRoundMatchmakingParams, type StorageConfig, type StreamInput, type StreamInputCreateInputs, type StreamInputDetails, type StreamInputOutput, type StreamInputOutputCreateInputs, type StreamInputOutputUpdateInputs, type StreamInputUpdateInputs, type StreamOutputCreateInputs, type Subscription, type SubscriptionCreateInputs, type SubscriptionPayment, SubscriptionStatus, type SubscriptionUpdateInputs, type SummaryData, type SupportTicket, type SupportTicketCreateInputs, type SupportTicketNote, type SupportTicketNoteCreateInputs, type SupportTicketNoteUpdateInputs, SupportTicketState, SupportTicketType, type SupportTicketUpdateInputs, SupportedLocale, type Survey, type SurveyCreateInputs, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionChoiceCreateInputs, type SurveyQuestionChoiceSubQuestion, type SurveyQuestionChoiceTranslation, type SurveyQuestionChoiceTranslationUpdateInputs, type SurveyQuestionChoiceUpdateInputs, type SurveyQuestionCreateInputs, type SurveyQuestionResponse, type SurveyQuestionResponseChange, type SurveyQuestionTranslation, type SurveyQuestionTranslationUpdateInputs, SurveyQuestionType, type SurveyQuestionUpdateInputs, type SurveySection, type SurveySectionCreateInputs, type SurveySectionQuestion, type SurveySectionTranslation, type SurveySectionTranslationUpdateInputs, type SurveySectionUpdateInputs, type SurveySubmission, type SurveySubmissionUpdateInputs, type SurveyTranslation, type SurveyTranslationUpdateInputs, type SurveyUpdateInputs, SwitchImage, type SwitchImageParams, SyncEventCouponToVariants, type SyncEventCouponToVariantsParams, type SystemEventLog, SystemEventLogStatus, TAX_CODES_QUERY_KEY, TAX_INTEGRATIONS_QUERY_KEY, TAX_INTEGRATION_QUERY_KEY, TAX_LOGS_QUERY_KEY, TAX_LOG_QUERY_KEY, THREADS_QUERY_KEY, THREAD_ACCOUNTS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_CIRCLE_THREADS_QUERY_KEY, THREAD_MEMBERS_QUERY_KEY, THREAD_MESSAGES_POLL_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_FILES_QUERY_KEY, THREAD_MESSAGE_IMAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_MESSAGE_REACTIONS_QUERY_KEY, THREAD_MESSAGE_VIDEOS_QUERY_KEY, THREAD_QUERY_KEY, TIERS_QUERY_KEY, TIER_ACCOUNTS_QUERY_KEY, TIER_IMPORTS_QUERY_KEY, TIER_IMPORT_ITEMS_QUERY_KEY, TIER_IMPORT_QUERY_KEY, TIER_QUERY_KEY, TIER_SUBSCRIBERS_QUERY_KEY, type TableChartSummaryData, type TaxCode, type TaxIntegration, type TaxIntegrationCreateInputs, type TaxIntegrationLog, TaxIntegrationType, type TaxIntegrationUpdateInputs, TaxLocationType, type TeamCreateInputs, type TeamMember, type TeamUpdateInputs, TestTaxIntegration, type TestTaxIntegrationParams, type Thread, type ThreadCircle, type ThreadCircleAccount, type ThreadCircleAccountCreateInputs, ThreadCircleAccountRole, type ThreadCircleAccountUpdateInputs, type ThreadCircleCreateInputs, ThreadCircleType, type ThreadCircleUpdateInputs, type ThreadCreateInputs, type ThreadInvitation, ThreadInvitationStatus, type ThreadMember, type ThreadMemberCreateInputs, ThreadMemberRole, type ThreadMemberUpdateInputs, type ThreadMessage, type ThreadMessageCreateInputs, type ThreadMessageEntity, type ThreadMessageReaction, type ThreadMessageReactionCreateInputs, type ThreadMessageReactionUpdateInputs, ThreadMessageType, type ThreadMessageUpdateInputs, ThreadType, type ThreadUpdateInputs, type Tier, type TierCreateInputs, type TierUpdateInputs, ToggleOrganizationPaymentIntegration, type ToggleOrganizationPaymentIntegrationParams, ToggleTaxIntegration, type ToggleTaxIntegrationParams, type Transfer, TransferEventPass, type TransferEventPassParams, type TransferLog, TransformPrice, type TriggerCreateInputs, type TriggerUpdateInputs, UpdateAccount, UpdateAccountAddress, type UpdateAccountAddressParams, UpdateAccountAttribute, type UpdateAccountAttributeParams, UpdateAccountLead, type UpdateAccountLeadParams, type UpdateAccountParams, UpdateActivity, type UpdateActivityParams, UpdateActivitySchedule, type UpdateActivityScheduleParams, UpdateAdvertisement, type UpdateAdvertisementParams, UpdateAnnouncement, type UpdateAnnouncementParams, UpdateAnnouncementSchedule, type UpdateAnnouncementScheduleParams, UpdateAnnouncementTranslation, type UpdateAnnouncementTranslationParams, UpdateBenefit, type UpdateBenefitParams, UpdateBenefitTranslation, type UpdateBenefitTranslationParams, UpdateBooking, type UpdateBookingParams, UpdateBookingPlace, type UpdateBookingPlaceParams, UpdateBookingPlaceTranslation, type UpdateBookingPlaceTranslationParams, UpdateBookingSpace, UpdateBookingSpaceAvailability, type UpdateBookingSpaceAvailabilityParams, UpdateBookingSpaceBlackout, type UpdateBookingSpaceBlackoutParams, type UpdateBookingSpaceParams, UpdateBookingSpaceTranslation, type UpdateBookingSpaceTranslationParams, UpdateChannel, UpdateChannelContent, UpdateChannelContentGuest, type UpdateChannelContentGuestParams, UpdateChannelContentGuestTranslation, type UpdateChannelContentGuestTranslationParams, type UpdateChannelContentParams, UpdateChannelContentPublishSchedule, type UpdateChannelContentPublishScheduleParams, UpdateChannelContentTranslation, type UpdateChannelContentTranslationParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateChannelTranslation, type UpdateChannelTranslationParams, UpdateCustomModule, type UpdateCustomModuleParams, UpdateCustomModuleTranslation, type UpdateCustomModuleTranslationParams, UpdateCustomReport, type UpdateCustomReportParams, UpdateDashboard, type UpdateDashboardParams, UpdateDashboardWidget, type UpdateDashboardWidgetParams, UpdateEvent, UpdateEventActivation, UpdateEventActivationCompletion, type UpdateEventActivationCompletionParams, type UpdateEventActivationParams, UpdateEventActivationTranslation, type UpdateEventActivationTranslationParams, UpdateEventAddOn, type UpdateEventAddOnParams, UpdateEventAddOnTranslation, type UpdateEventAddOnTranslationParams, UpdateEventAttendee, UpdateEventAttendeePackage, type UpdateEventAttendeePackageParams, type UpdateEventAttendeeParams, UpdateEventCheckinCode, type UpdateEventCheckinCodeParams, UpdateEventCoupon, type UpdateEventCouponParams, UpdateEventEmail, type UpdateEventEmailParams, UpdateEventEmailTranslation, type UpdateEventEmailTranslationParams, UpdateEventFaqSection, type UpdateEventFaqSectionParams, UpdateEventFaqSectionQuestion, type UpdateEventFaqSectionQuestionParams, UpdateEventFaqSectionQuestionTranslation, type UpdateEventFaqSectionQuestionTranslationParams, UpdateEventFaqSectionTranslation, type UpdateEventFaqSectionTranslationParams, UpdateEventFollowup, type UpdateEventFollowupParams, UpdateEventFollowupQuestion, type UpdateEventFollowupQuestionParams, UpdateEventFollowupTranslation, type UpdateEventFollowupTranslationParams, UpdateEventMatch, type UpdateEventMatchParams, UpdateEventMediaItem, type UpdateEventMediaItemParams, UpdateEventPackage, type UpdateEventPackageParams, UpdateEventPackagePass, type UpdateEventPackagePassParams, UpdateEventPackageTranslation, type UpdateEventPackageTranslationParams, UpdateEventPage, type UpdateEventPageParams, UpdateEventPageTranslation, type UpdateEventPageTranslationParams, type UpdateEventParams, UpdateEventPass, UpdateEventPassFollowupResponses, type UpdateEventPassFollowupResponsesParams, type UpdateEventPassParams, UpdateEventPassResponse, type UpdateEventPassResponseInputs, type UpdateEventPassResponseParams, UpdateEventPassResponses, type UpdateEventPassResponsesParams, UpdateEventPassSingleFollowupResponses, type UpdateEventPassSingleFollowupResponsesParams, UpdateEventPassType, type UpdateEventPassTypeParams, UpdateEventPassTypePriceSchedule, UpdateEventPassTypeRefundSchedule, UpdateEventPassTypeTranslation, type UpdateEventPassTypeTranslationParams, UpdateEventQuestion, UpdateEventQuestionChoice, type UpdateEventQuestionChoiceParams, UpdateEventQuestionChoiceSubQuestion, type UpdateEventQuestionChoiceSubQuestionParams, UpdateEventQuestionChoiceTranslation, type UpdateEventQuestionChoiceTranslationParams, type UpdateEventQuestionParams, UpdateEventQuestionTranslation, type UpdateEventQuestionTranslationParams, UpdateEventRegistrationBypass, type UpdateEventRegistrationBypassParams, UpdateEventReservation, type UpdateEventReservationParams, UpdateEventRoomType, UpdateEventRoomTypeAddOnDetails, type UpdateEventRoomTypeAddOnDetailsParams, type UpdateEventRoomTypeParams, UpdateEventRoomTypePassTypeDetails, type UpdateEventRoomTypePassTypeDetailsParams, UpdateEventRoomTypeTranslation, type UpdateEventRoomTypeTranslationParams, UpdateEventRoundQuestion, type UpdateEventRoundQuestionParams, UpdateEventSection, type UpdateEventSectionParams, UpdateEventSectionQuestion, type UpdateEventSectionQuestionParams, UpdateEventSectionTranslation, type UpdateEventSectionTranslationParams, UpdateEventSession, UpdateEventSessionAccess, type UpdateEventSessionAccessParams, UpdateEventSessionAccessResponses, type UpdateEventSessionAccessResponsesParams, UpdateEventSessionLocation, type UpdateEventSessionLocationParams, UpdateEventSessionLocationTranslation, type UpdateEventSessionLocationTranslationParams, UpdateEventSessionMatch, type UpdateEventSessionMatchParams, type UpdateEventSessionParams, UpdateEventSessionQuestion, UpdateEventSessionQuestionChoice, type UpdateEventSessionQuestionChoiceParams, UpdateEventSessionQuestionChoiceSubQuestion, type UpdateEventSessionQuestionChoiceSubQuestionParams, UpdateEventSessionQuestionChoiceTranslation, type UpdateEventSessionQuestionChoiceTranslationParams, type UpdateEventSessionQuestionParams, UpdateEventSessionQuestionTranslation, type UpdateEventSessionQuestionTranslationParams, UpdateEventSessionRoundQuestion, type UpdateEventSessionRoundQuestionParams, UpdateEventSessionSection, type UpdateEventSessionSectionParams, UpdateEventSessionSectionQuestion, type UpdateEventSessionSectionQuestionParams, UpdateEventSessionSectionTranslation, type UpdateEventSessionSectionTranslationParams, UpdateEventSessionTranslation, type UpdateEventSessionTranslationParams, UpdateEventSpeaker, type UpdateEventSpeakerParams, UpdateEventSpeakerTranslation, type UpdateEventSpeakerTranslationParams, UpdateEventSponsorship, UpdateEventSponsorshipLevel, type UpdateEventSponsorshipLevelParams, UpdateEventSponsorshipLevelTranslation, type UpdateEventSponsorshipLevelTranslationParams, type UpdateEventSponsorshipParams, UpdateEventSponsorshipTranslation, type UpdateEventSponsorshipTranslationParams, 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, UpdateIntegration, type UpdateIntegrationParams, UpdateInterest, type UpdateInterestParams, UpdateInvoice, UpdateInvoiceLineItem, type UpdateInvoiceLineItemParams, type UpdateInvoiceParams, UpdateLevel, type UpdateLevelParams, UpdateLevelTranslation, type UpdateLevelTranslationParams, UpdateLoginEmail, type UpdateLoginEmailParams, UpdateLoginPassword, type UpdateLoginPasswordParams, UpdateMeeting, UpdateMeetingLink, type UpdateMeetingLinkParams, type UpdateMeetingParams, UpdateMeetingParticipant, type UpdateMeetingParticipantParams, UpdateMembership, type UpdateMembershipParams, UpdateMembershipPrice, type UpdateMembershipPriceParams, UpdateOrganization, UpdateOrganizationDomain, type UpdateOrganizationDomainParams, UpdateOrganizationIntegrations, type UpdateOrganizationIntegrationsParams, UpdateOrganizationMembership, type UpdateOrganizationMembershipParams, UpdateOrganizationModule, type UpdateOrganizationModuleParams, type UpdateOrganizationParams, UpdateOrganizationTeamMember, type UpdateOrganizationTeamMemberParams, UpdateOrganizationWebhook, type UpdateOrganizationWebhookParams, UpdatePayment, type UpdatePaymentParams, UpdatePreset, type UpdatePresetParams, UpdateRoom, type UpdateRoomParams, UpdateSearchList, type UpdateSearchListParams, UpdateSearchListValue, type UpdateSearchListValueParams, UpdateSelf, type UpdateSelfParams, UpdateSeries, type UpdateSeriesParams, UpdateStream, UpdateStreamConfig, type UpdateStreamConfigParams, UpdateStreamInputOutput, type UpdateStreamInputOutputParams, type UpdateStreamParams, UpdateSubscription, type UpdateSubscriptionParams, UpdateSupportTicket, type UpdateSupportTicketParams, UpdateSurvey, type UpdateSurveyParams, UpdateSurveyQuestion, UpdateSurveyQuestionChoice, type UpdateSurveyQuestionChoiceParams, UpdateSurveyQuestionChoiceSubQuestion, type UpdateSurveyQuestionChoiceSubQuestionParams, UpdateSurveyQuestionChoiceTranslation, type UpdateSurveyQuestionChoiceTranslationParams, type UpdateSurveyQuestionParams, UpdateSurveyQuestionTranslation, type UpdateSurveyQuestionTranslationParams, UpdateSurveySection, type UpdateSurveySectionParams, UpdateSurveySectionQuestion, type UpdateSurveySectionQuestionParams, UpdateSurveySectionTranslation, type UpdateSurveySectionTranslationParams, UpdateSurveySubmission, type UpdateSurveySubmissionParams, UpdateSurveySubmissionResponses, type UpdateSurveySubmissionResponsesParams, UpdateSurveyTranslation, type UpdateSurveyTranslationParams, UpdateTaxIntegration, type UpdateTaxIntegrationParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMember, type UpdateThreadMemberParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UpdateTier, type UpdateTierParams, UpdateUserImage, type UpdateUserImageParams, UpdateVideo, type UpdateVideoParams, UploadFile, type UploadFileParams, UploadVideoCaptions, type UploadVideoCaptionsParams, type User, type UserApiKey, type UserApiKeyCreateInputs, type UserCreateInputs, type UserImageUpdateInputs, UserRole, type UserUpdateInputs, VIDEOS_QUERY_KEY, VIDEO_CAPTIONS_QUERY_KEY, VIDEO_DOWNLOAD_STATUS_QUERY_KEY, VIDEO_QUERY_KEY, VerifyOrganizationWebhook, type VerifyOrganizationWebhookParams, type Video, type VideoCaption, type VideoDownloadResult, type VideoDownloadStatus, VideoSource, VideoStatus, type VideoUpdateInputs, VoidInvoice, type VoidInvoiceParams, type Webhook, type WebhookCreateInputs, type WebhookUpdateInputs, WidgetCategory, WidgetType, isUUID, setFirstPageData, useAcceptGroupRequest, useAddAccountFollower, useAddAccountFollowing, useAddAccountGroup, useAddAccountInterest, useAddAccountTier, useAddChannelSubscriber, useAddCustomReportUser, useAddEventAccessUser, useAddEventAddOnPassType, useAddEventAddOnTier, useAddEventBenefit, useAddEventCoHost, useAddEventFollowupAddOn, useAddEventFollowupPassType, useAddEventFollowupQuestion, useAddEventFollowupTier, useAddEventMatchPass, useAddEventMediaItemPassType, useAddEventPageImage, useAddEventPassAddOn, useAddEventPassTypeAddOn, useAddEventPassTypeTier, useAddEventQuestionChoiceSubQuestion, useAddEventReservationPass, useAddEventRoomTypeTier, useAddEventSectionAddOn, useAddEventSectionPassType, useAddEventSectionQuestion, useAddEventSectionTier, useAddEventSessionAccount, useAddEventSessionLocationSession, useAddEventSessionMatchPass, useAddEventSessionPassType, useAddEventSessionQuestionChoiceSubQuestion, useAddEventSessionSectionQuestion, useAddEventSessionSpeaker, useAddEventSessionSponsor, useAddEventSessionTrack, useAddEventSpeakerSession, useAddEventSponsorAccount, useAddEventTrackSession, useAddEventTrackSponsor, useAddGroupEvent, useAddGroupInterest, useAddGroupMember, useAddGroupModerator, useAddGroupSponsor, useAddLevelAccount, useAddLoginAccount, useAddMeetingLivestream, useAddMembershipTier, useAddOrganizationModuleEditableTier, useAddOrganizationModuleEnabledTier, useAddOrganizationUser, useAddRoomToRoomType, useAddSeriesEvent, useAddSurveyQuestionChoiceSubQuestion, useAddSurveySectionQuestion, useArchiveActivity, useAttachEventQuestionSearchList, useAttachEventSessionQuestionSearchList, useAttachSurveyQuestionSearchList, useBulkUploadSearchListValues, useCancelActivitySchedule, useCancelAnnouncementSchedule, useCancelChannelContentPublishSchedule, useCancelEventPass, useCancelGroupInvitation, useCancelSubscription, useCloneEvent, useConfirmLogin, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateAccount, useCreateAccountAddress, useCreateAccountAttribute, useCreateAccountInvitations, useCreateActivity, useCreateAdvertisement, useCreateAnnouncement, useCreateAnnouncementTranslation, useCreateBenefit, useCreateBenefitTranslation, useCreateBooking, useCreateBookingPlace, useCreateBookingPlaceTranslation, useCreateBookingSpace, useCreateBookingSpaceAvailability, useCreateBookingSpaceBlackout, useCreateBookingSpaceTranslation, useCreateChannel, useCreateChannelContent, useCreateChannelContentGuest, useCreateChannelContentGuestTranslation, useCreateChannelContentTranslation, useCreateChannelTranslation, useCreateCustomModule, useCreateCustomModuleTranslation, useCreateCustomReport, useCreateDashboard, useCreateDashboardWidget, useCreateEvent, useCreateEventActivation, useCreateEventActivationCompletion, useCreateEventActivationTranslation, useCreateEventAddOn, useCreateEventAddOnTranslation, useCreateEventAttendee, useCreateEventAttendeePackage, useCreateEventCoupon, useCreateEventCouponVariants, useCreateEventEmailTranslation, useCreateEventFaqSection, useCreateEventFaqSectionQuestion, useCreateEventFaqSectionQuestionTranslation, useCreateEventFaqSectionTranslation, useCreateEventFollowup, useCreateEventFollowupTranslation, useCreateEventMatch, useCreateEventMediaItem, useCreateEventPackage, useCreateEventPackagePass, useCreateEventPackageTranslation, useCreateEventPage, useCreateEventPageTranslation, useCreateEventPass, useCreateEventPassType, useCreateEventPassTypePriceSchedule, useCreateEventPassTypeRefundSchedule, useCreateEventPassTypeTranslation, useCreateEventQuestion, useCreateEventQuestionChoice, useCreateEventQuestionChoiceTranslation, useCreateEventQuestionTranslation, useCreateEventRegistrationBypass, useCreateEventReservation, useCreateEventRoomType, useCreateEventRoomTypeTranslation, useCreateEventRound, useCreateEventSection, useCreateEventSectionTranslation, useCreateEventSession, useCreateEventSessionAccess, useCreateEventSessionLocation, useCreateEventSessionLocationTranslation, useCreateEventSessionMatch, useCreateEventSessionQuestion, useCreateEventSessionQuestionChoice, useCreateEventSessionQuestionChoiceTranslation, useCreateEventSessionQuestionTranslation, useCreateEventSessionRound, useCreateEventSessionSection, useCreateEventSessionSectionTranslation, useCreateEventSessionTranslation, useCreateEventSpeaker, useCreateEventSpeakerTranslation, useCreateEventSponsorship, useCreateEventSponsorshipLevel, useCreateEventSponsorshipLevelTranslation, useCreateEventSponsorshipTranslation, useCreateEventTrack, useCreateEventTrackTranslation, useCreateEventTranslation, useCreateGroup, useCreateGroupInvitations, useCreateGroupTranslation, useCreateImage, useCreateImport, useCreateIntegration, useCreateInterest, useCreateInvoice, useCreateInvoiceLineItem, useCreateLevel, useCreateLevelTranslation, useCreateMeeting, useCreateMeetingLink, useCreateMeetingParticipant, useCreateMembership, useCreateMembershipPrice, useCreateOrganizationPaymentIntegration, useCreateOrganizationSideEffect, useCreateOrganizationTeamMember, useCreateOrganizationWebhook, useCreatePreset, useCreateRoom, useCreateSearchList, useCreateSearchListValue, useCreateSelfApiKey, useCreateSeries, useCreateStreamInput, useCreateStreamInputOutput, useCreateSubscription, useCreateSupportTicket, useCreateSupportTicketNote, useCreateSurvey, useCreateSurveyQuestion, useCreateSurveyQuestionChoice, useCreateSurveyQuestionChoiceTranslation, useCreateSurveyQuestionTranslation, useCreateSurveySection, useCreateSurveySectionTranslation, useCreateSurveyTranslation, useCreateTaxIntegration, useCreateThread, useCreateThreadCircle, useCreateThreadCircleAccount, useCreateThreadMessage, useCreateThreadMessageFile, useCreateThreadMessageImage, useCreateThreadMessageReaction, useCreateThreadMessageVideo, useCreateTier, useDeleteAccount, useDeleteAccountAddress, useDeleteAccountAttribute, useDeleteAccountInvitation, useDeleteAccountLead, useDeleteActivity, useDeleteAdvertisement, useDeleteAnnouncement, useDeleteAnnouncementTranslation, useDeleteBenefit, useDeleteBenefitTranslation, useDeleteBooking, useDeleteBookingPlace, useDeleteBookingPlaceTranslation, useDeleteBookingSpace, useDeleteBookingSpaceAvailability, useDeleteBookingSpaceBlackout, useDeleteBookingSpaceTranslation, useDeleteChannel, useDeleteChannelContent, useDeleteChannelContentGuest, useDeleteChannelContentGuestTranslation, useDeleteChannelContentTranslation, useDeleteChannelTranslation, useDeleteCustomModule, useDeleteCustomModuleTranslation, useDeleteCustomReport, useDeleteDashboard, useDeleteDashboardWidget, useDeleteEvent, useDeleteEventActivation, useDeleteEventActivationCompletion, useDeleteEventActivationTranslation, useDeleteEventAddOn, useDeleteEventAddOnTranslation, useDeleteEventAttendee, useDeleteEventAttendeePackage, useDeleteEventCoupon, useDeleteEventCouponVariants, useDeleteEventEmailTranslation, useDeleteEventFaqSection, useDeleteEventFaqSectionQuestion, useDeleteEventFaqSectionQuestionTranslation, useDeleteEventFaqSectionTranslation, useDeleteEventFollowup, useDeleteEventFollowupTranslation, useDeleteEventMatch, useDeleteEventMediaItem, useDeleteEventPackage, useDeleteEventPackagePass, useDeleteEventPackageTranslation, useDeleteEventPage, useDeleteEventPageTranslation, useDeleteEventPass, useDeleteEventPassType, useDeleteEventPassTypePriceSchedule, useDeleteEventPassTypeRefundSchedule, useDeleteEventPassTypeTranslation, useDeleteEventQuestion, useDeleteEventQuestionChoice, useDeleteEventQuestionChoiceTranslation, useDeleteEventQuestionTranslation, useDeleteEventRegistrationBypass, useDeleteEventReservation, useDeleteEventRoomType, useDeleteEventRoomTypeTranslation, useDeleteEventRound, useDeleteEventSection, useDeleteEventSectionTranslation, useDeleteEventSession, useDeleteEventSessionAccess, useDeleteEventSessionLocation, useDeleteEventSessionLocationTranslation, useDeleteEventSessionMatch, useDeleteEventSessionQuestion, useDeleteEventSessionQuestionChoice, useDeleteEventSessionQuestionChoiceTranslation, useDeleteEventSessionQuestionTranslation, useDeleteEventSessionRound, useDeleteEventSessionSection, useDeleteEventSessionSectionTranslation, useDeleteEventSessionTranslation, useDeleteEventSpeaker, useDeleteEventSpeakerTranslation, useDeleteEventSponsorship, useDeleteEventSponsorshipLevel, useDeleteEventSponsorshipLevelTranslation, useDeleteEventSponsorshipTranslation, useDeleteEventTrack, useDeleteEventTrackTranslation, useDeleteEventTranslation, useDeleteFile, useDeleteGroup, useDeleteGroupInvitation, useDeleteGroupRequest, useDeleteGroupTranslation, useDeleteImage, useDeleteIntegration, useDeleteInterest, useDeleteInvoice, useDeleteInvoiceLineItem, useDeleteLevel, useDeleteLevelTranslation, useDeleteLogin, useDeleteManyImages, useDeleteManyVideos, useDeleteMeetingLink, useDeleteMeetingParticipant, useDeleteMembership, useDeleteMembershipPrice, useDeleteOrganizationDomain, useDeleteOrganizationPaymentIntegration, useDeleteOrganizationSideEffect, useDeleteOrganizationTeamMember, useDeleteOrganizationUser, useDeleteOrganizationWebhook, useDeletePreset, useDeletePushDevice, useDeleteRoom, useDeleteSearchList, useDeleteSearchListValue, useDeleteSelfApiKey, useDeleteSeries, useDeleteStreamInput, useDeleteStreamInputOutput, useDeleteSupportTicket, useDeleteSupportTicketNote, useDeleteSurvey, useDeleteSurveyQuestion, useDeleteSurveyQuestionChoice, useDeleteSurveyQuestionChoiceTranslation, useDeleteSurveyQuestionTranslation, useDeleteSurveySection, useDeleteSurveySectionTranslation, useDeleteSurveySubmission, useDeleteSurveyTranslation, useDeleteTaxIntegration, useDeleteThread, useDeleteThreadCircle, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDeleteThreadMessageFile, useDeleteThreadMessageImage, useDeleteThreadMessageReaction, useDeleteThreadMessageVideo, useDeleteTier, useDeleteUserImage, useDeleteVideo, useDeleteVideoCaption, useDetachEventQuestionSearchList, useDetachEventSessionQuestionSearchList, useDetachSurveyQuestionSearchList, useDisableLivestream, useDownloadVideoCaption, useEnableLivestream, useEventGetPassTypeCoupons, useExportAccount, useGenerateMeetingSessionSummary, useGenerateVideoCaptions, useGetAPILog, useGetAPILogs, useGetAcccountEmailReceipts, useGetAccount, useGetAccountActivities, useGetAccountAddress, useGetAccountAddresses, useGetAccountComments, useGetAccountEvents, useGetAccountFollowers, useGetAccountFollowing, useGetAccountGroups, useGetAccountInterests, useGetAccountInvitations, useGetAccountLead, useGetAccountLeads, useGetAccountLevels, useGetAccountLikes, useGetAccountNotificationPreferences, useGetAccountPayments, useGetAccountSubscriptions, useGetAccountThreads, useGetAccountTiers, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityLikes, useGetAdvertisement, useGetAdvertisementClicks, useGetAdvertisementViews, useGetAdvertisements, useGetAllEventAddOns, useGetAllEventPassTypes, useGetAnnouncement, useGetAnnouncementAudience, useGetAnnouncementEmailReceipts, useGetAnnouncementTranslation, useGetAnnouncementTranslations, useGetAnnouncements, useGetAuthSession, useGetAuthSessions, useGetBenefit, useGetBenefitClicks, useGetBenefitTranslation, useGetBenefitTranslations, useGetBenefits, useGetBooking, useGetBookingPlace, useGetBookingPlaceBookings, useGetBookingPlacePayments, useGetBookingPlaceTranslation, useGetBookingPlaceTranslations, useGetBookingPlaces, useGetBookingSpace, useGetBookingSpaceAvailabilities, useGetBookingSpaceAvailability, useGetBookingSpaceBlackout, useGetBookingSpaceBlackouts, useGetBookingSpaceBookings, useGetBookingSpacePayments, useGetBookingSpaceSlots, useGetBookingSpaceTranslation, useGetBookingSpaceTranslations, useGetBookingSpaces, useGetChannel, useGetChannelActivities, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuest, useGetChannelContentGuestTranslation, useGetChannelContentGuestTranslations, useGetChannelContentGuests, useGetChannelContentLikes, useGetChannelContentTranslation, useGetChannelContentTranslations, useGetChannelContents, useGetChannelSubscriber, useGetChannelSubscribers, useGetChannelTranslation, useGetChannelTranslations, useGetChannels, useGetContents, useGetCustomModule, useGetCustomModuleTranslation, useGetCustomModuleTranslations, useGetCustomModules, useGetCustomReport, useGetCustomReportUsers, useGetCustomReports, useGetDashboard, useGetDashboardAttributes, useGetDashboardWidgets, useGetDashboards, useGetEmailReceipt, useGetEmailReceipts, useGetEntityUseCodes, useGetEvent, useGetEventAccessUsers, useGetEventActivation, useGetEventActivationCompletion, useGetEventActivationCompletions, useGetEventActivationTranslation, useGetEventActivationTranslations, useGetEventActivations, useGetEventActivities, useGetEventAddOn, useGetEventAddOnPassTypes, useGetEventAddOnPasses, useGetEventAddOnTiers, useGetEventAddOnTranslation, useGetEventAddOnTranslations, useGetEventAddOns, useGetEventAttendee, useGetEventAttendeeCoupons, useGetEventAttendeePackage, useGetEventAttendeePackages, useGetEventAttendeePasses, useGetEventAttendeePayments, useGetEventAttendeeReservations, useGetEventAttendeeTransfersLogs, useGetEventAttendees, useGetEventCoHosts, useGetEventCoupon, useGetEventCouponPasses, useGetEventCouponPayments, useGetEventCouponVariants, useGetEventCoupons, useGetEventDashboardQuestions, useGetEventEmail, useGetEventEmailTranslation, useGetEventEmailTranslations, useGetEventFaqSection, useGetEventFaqSectionQuestion, useGetEventFaqSectionQuestionTranslation, useGetEventFaqSectionQuestionTranslations, useGetEventFaqSectionQuestions, useGetEventFaqSectionTranslation, useGetEventFaqSectionTranslations, useGetEventFaqSections, useGetEventFollowup, useGetEventFollowupAddOns, useGetEventFollowupPassTypes, useGetEventFollowupQuestions, useGetEventFollowupTiers, useGetEventFollowupTranslation, useGetEventFollowupTranslations, useGetEventFollowups, useGetEventMediaItem, useGetEventMediaItemPassTypes, useGetEventMediaItems, useGetEventOnSite, useGetEventPackage, useGetEventPackagePass, useGetEventPackagePasses, useGetEventPackageTranslation, useGetEventPackageTranslations, useGetEventPackages, useGetEventPage, useGetEventPageImages, useGetEventPageTranslation, useGetEventPageTranslations, useGetEventPages, useGetEventPass, useGetEventPassAccesses, useGetEventPassAddOns, useGetEventPassAttendeePasses, useGetEventPassMatches, useGetEventPassPayments, useGetEventPassQuestionFollowups, useGetEventPassQuestionSections, useGetEventPassResponse, useGetEventPassResponseChanges, useGetEventPassResponses, useGetEventPassTransferLogs, useGetEventPassType, useGetEventPassTypeAddOns, useGetEventPassTypePasses, useGetEventPassTypePayments, useGetEventPassTypePriceSchedule, useGetEventPassTypePriceSchedules, useGetEventPassTypeRefundSchedule, useGetEventPassTypeRefundSchedules, useGetEventPassTypeTiers, useGetEventPassTypeTranslation, useGetEventPassTypeTranslations, useGetEventPassTypes, useGetEventPasses, useGetEventPayments, useGetEventQuestion, useGetEventQuestionChoice, useGetEventQuestionChoiceSubQuestions, useGetEventQuestionChoiceTranslation, useGetEventQuestionChoiceTranslations, useGetEventQuestionChoices, useGetEventQuestionResponses, useGetEventQuestionSummaries, useGetEventQuestionSummary, useGetEventQuestionTranslation, useGetEventQuestionTranslations, useGetEventQuestions, useGetEventRegistrationBypass, useGetEventRegistrationBypassList, useGetEventReservation, useGetEventReservationPasses, useGetEventReservations, useGetEventRoomType, useGetEventRoomTypePasses, useGetEventRoomTypeReservations, useGetEventRoomTypeTiers, useGetEventRoomTypeTranslation, useGetEventRoomTypeTranslations, useGetEventRoomTypes, useGetEventRoundMatch, useGetEventRoundMatchPasses, useGetEventRoundMatches, useGetEventRoundPasses, useGetEventRoundQuestions, useGetEventRoundQuestionsSummary, useGetEventRounds, useGetEventSection, useGetEventSectionAddOns, useGetEventSectionPassTypes, useGetEventSectionQuestions, useGetEventSectionTiers, useGetEventSectionTranslation, useGetEventSectionTranslations, useGetEventSections, useGetEventSession, useGetEventSessionAccess, useGetEventSessionAccessQuestionSections, useGetEventSessionAccessResponseChanges, useGetEventSessionAccesses, useGetEventSessionAccounts, useGetEventSessionLocation, useGetEventSessionLocationSessions, useGetEventSessionLocationTranslation, useGetEventSessionLocationTranslations, useGetEventSessionLocations, useGetEventSessionPassTypes, useGetEventSessionPayments, useGetEventSessionQuestion, useGetEventSessionQuestionChoice, useGetEventSessionQuestionChoiceSubQuestions, useGetEventSessionQuestionChoiceTranslation, useGetEventSessionQuestionChoiceTranslations, useGetEventSessionQuestionChoices, useGetEventSessionQuestionResponses, useGetEventSessionQuestionTranslation, useGetEventSessionQuestionTranslations, useGetEventSessionQuestions, useGetEventSessionRoundMatch, useGetEventSessionRoundMatchPasses, useGetEventSessionRoundMatches, useGetEventSessionRoundPasses, useGetEventSessionRoundQuestions, useGetEventSessionRoundQuestionsSummary, useGetEventSessionRounds, useGetEventSessionSection, useGetEventSessionSectionQuestions, useGetEventSessionSectionTranslation, useGetEventSessionSectionTranslations, useGetEventSessionSections, useGetEventSessionSpeakers, useGetEventSessionSponsors, useGetEventSessionTracks, useGetEventSessionTranslation, useGetEventSessionTranslations, useGetEventSessions, useGetEventSessionsWithRounds, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakerTranslation, useGetEventSpeakerTranslations, useGetEventSpeakers, useGetEventSponsorAccounts, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevel, useGetEventSponsorshipLevelTranslation, useGetEventSponsorshipLevelTranslations, useGetEventSponsorshipLevels, useGetEventSponsorshipTranslation, useGetEventSponsorshipTranslations, useGetEventSponsorships, useGetEventThreads, useGetEventTiers, useGetEventTrack, useGetEventTrackSessions, useGetEventTrackSponsors, useGetEventTrackTranslation, useGetEventTrackTranslations, useGetEventTracks, useGetEventTranslation, useGetEventTranslations, useGetEventZplTemplateBadgeField, useGetEventZplTemplateBadgeFields, useGetEvents, useGetFeaturedChannels, useGetFile, useGetFiles, useGetGroup, useGetGroupActivities, useGetGroupEvents, useGetGroupInterests, useGetGroupInvitation, useGetGroupInvitations, useGetGroupMembers, useGetGroupModerators, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroupThreads, useGetGroupTranslation, useGetGroupTranslations, useGetGroups, useGetImage, useGetImageUsage, useGetImages, useGetImport, useGetImportItems, useGetImports, useGetIntegration, useGetIntegrations, useGetInterest, useGetInterestAccounts, useGetInterestActivities, useGetInterestChannels, useGetInterestContents, useGetInterestEvents, useGetInterestGroups, useGetInterests, useGetInvoice, useGetInvoiceLineItem, useGetInvoiceLineItems, useGetInvoices, useGetLevel, useGetLevelAccounts, useGetLevelTranslation, useGetLevelTranslations, useGetLevels, useGetLinkPreview, useGetLivestream, useGetLivestreamSessions, useGetLivestreams, useGetLogin, useGetLoginAccounts, useGetLoginAuthSessions, useGetLoginDevices, useGetLogins, useGetMeeting, useGetMeetingLink, useGetMeetingLinks, useGetMeetingLivestream, useGetMeetingParticipant, useGetMeetingParticipants, useGetMeetingRecording, useGetMeetingRecordings, useGetMeetingSession, useGetMeetingSessionMessages, useGetMeetingSessionParticipant, useGetMeetingSessionParticipants, useGetMeetingSessionSummary, useGetMeetingSessionTranscript, useGetMeetingSessions, useGetMeetings, useGetMembership, useGetMembershipPrice, useGetMembershipPrices, useGetMembershipSubscriptions, useGetMembershipTiers, useGetMemberships, useGetOrganization, useGetOrganizationAccountAttribute, useGetOrganizationAccountAttributes, useGetOrganizationDomain, useGetOrganizationMembership, useGetOrganizationModule, useGetOrganizationModuleEditableTiers, useGetOrganizationModuleEnabledTiers, useGetOrganizationModules, useGetOrganizationPaymentIntegration, useGetOrganizationPaymentIntegrations, useGetOrganizationPaymentLink, useGetOrganizationSideEffect, useGetOrganizationSideEffects, useGetOrganizationSystemLog, useGetOrganizationSystemLogs, useGetOrganizationTeamMember, useGetOrganizationTeamMembers, useGetOrganizationUsers, useGetOrganizationWebhook, useGetOrganizationWebhooks, useGetPayment, useGetPayments, useGetPreset, useGetPresets, useGetPushDevice, useGetPushDevices, useGetReport, useGetReports, useGetRequiredAttributes, useGetRoom, useGetRoomTypeRooms, useGetRooms, useGetSearchList, useGetSearchListConnectedQuestions, useGetSearchListValue, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfApiKey, useGetSelfApiKeys, useGetSelfOrgMembership, useGetSelfOrganizations, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetStreamInput, useGetStreamInputOutput, useGetStreamInputOutputs, useGetStreamInputs, useGetStreamVideos, useGetSubscription, useGetSubscriptionPayments, useGetSubscriptions, useGetSupportTicket, useGetSupportTickets, useGetSurvey, useGetSurveyQuestion, useGetSurveyQuestionChoice, useGetSurveyQuestionChoiceSubQuestions, useGetSurveyQuestionChoiceTranslation, useGetSurveyQuestionChoiceTranslations, useGetSurveyQuestionChoices, useGetSurveyQuestionResponses, useGetSurveyQuestionTranslation, useGetSurveyQuestionTranslations, useGetSurveyQuestions, useGetSurveySection, useGetSurveySectionQuestions, useGetSurveySectionTranslation, useGetSurveySectionTranslations, useGetSurveySections, useGetSurveySubmission, useGetSurveySubmissionQuestionSections, useGetSurveySubmissionResponseChanges, useGetSurveySubmissions, useGetSurveyTranslation, useGetSurveyTranslations, useGetSurveys, useGetTaxCodes, useGetTaxIntegration, useGetTaxIntegrations, useGetTaxLog, useGetTaxLogs, useGetTemplates, useGetThread, useGetThreadAccounts, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircleThreads, useGetThreadCircles, useGetThreadMembers, useGetThreadMessage, useGetThreadMessageFiles, useGetThreadMessageImages, useGetThreadMessageReactions, useGetThreadMessageVideos, useGetThreadMessages, useGetThreadMessagesPoll, useGetThreads, useGetTier, useGetTierAccounts, useGetTierImport, useGetTierImportItems, useGetTierImports, useGetTierSubscribers, useGetTiers, useGetVideo, useGetVideoCaptions, useGetVideoDownloadStatus, useGetVideos, useImpersonateAccount, useImportRooms, useIndexEventPasses, useInitiateVideoDownload, usePublishActivity, useRefundOrganizationPayment, useRegenerateMeetingParticipantToken, useReinviteGroupInvitation, useRejectGroupRequest, useRemoveAccountFollower, useRemoveAccountFollowing, useRemoveAccountGroup, useRemoveAccountInterest, useRemoveAccountTier, useRemoveAllChannelSubscribers, useRemoveAllGroupMembers, useRemoveChannelSubscriber, useRemoveCustomReportUser, useRemoveEventAccessUser, useRemoveEventAddOnPassType, useRemoveEventAddOnTier, useRemoveEventBenefit, useRemoveEventCoHost, useRemoveEventFollowupAddOn, useRemoveEventFollowupPassType, useRemoveEventFollowupQuestion, useRemoveEventFollowupTier, useRemoveEventMatchPass, useRemoveEventMediaItemPassType, useRemoveEventPageImage, useRemoveEventPassAddOn, useRemoveEventPassTypeAddOn, useRemoveEventPassTypeTier, useRemoveEventQuestionChoiceSubQuestion, useRemoveEventReservationPass, useRemoveEventRoomTypeTier, useRemoveEventSectionAddOn, useRemoveEventSectionPassType, useRemoveEventSectionQuestion, useRemoveEventSectionTier, useRemoveEventSessionAccount, useRemoveEventSessionLocationSession, useRemoveEventSessionMatchPass, useRemoveEventSessionPassType, useRemoveEventSessionQuestionChoiceSubQuestion, useRemoveEventSessionSectionQuestion, useRemoveEventSessionSpeaker, useRemoveEventSessionSponsor, useRemoveEventSessionTrack, useRemoveEventSpeakerSession, useRemoveEventSponsorAccount, useRemoveEventTrackSession, useRemoveEventTrackSponsor, useRemoveGroupEvent, useRemoveGroupInterest, useRemoveGroupMember, useRemoveGroupModerator, useRemoveGroupSponsor, useRemoveLevelAccount, useRemoveLoginAccount, useRemoveMembershipTier, useRemoveOrganizationModuleEditableTier, useRemoveOrganizationModuleEnabledTier, useRemoveRoomFromRoomType, useRemoveSeriesEvent, useRemoveSurveyQuestionChoiceSubQuestion, useRemoveSurveySectionQuestion, useRemoveTierAccounts, useReorderEventFaqSectionQuestions, useReorderEventFollowupQuestions, useReorderEventQuestionChoiceSubQuestions, useReorderEventQuestionChoices, useReorderEventSectionQuestions, useReorderEventSessionQuestionChoiceSubQuestions, useReorderEventSessionQuestionChoices, useReorderEventSessionSectionQuestions, useReorderEventSponsorshipLevels, useReorderEventSponsorships, useReorderSurveyQuestionChoiceSubQuestions, useReorderSurveyQuestionChoices, useReorderSurveySectionQuestions, useResendRegistrationConfirmationEmail, useResetLivestreamStreamKey, useRevertChannelContentToDraft, useSearchOrganization, useSelfLeaveOrganization, useSendAnnouncementPreview, useSendInvoice, useStartEventRoundMatchmaking, useStartEventSessionRoundMatchmaking, useSwitchImage, useSyncEventCouponToVariants, useTestTaxIntegration, useToggleOrganizationPaymentIntegration, useToggleTaxIntegration, useTransferEventPass, useUpdateAccount, useUpdateAccountAddress, useUpdateAccountAttribute, useUpdateAccountLead, useUpdateActivity, useUpdateActivitySchedule, useUpdateAdvertisement, useUpdateAnnouncement, useUpdateAnnouncementSchedule, useUpdateAnnouncementTranslation, useUpdateBenefit, useUpdateBenefitTranslation, useUpdateBooking, useUpdateBookingPlace, useUpdateBookingPlaceTranslation, useUpdateBookingSpace, useUpdateBookingSpaceAvailability, useUpdateBookingSpaceBlackout, useUpdateBookingSpaceTranslation, useUpdateChannel, useUpdateChannelContent, useUpdateChannelContentGuest, useUpdateChannelContentGuestTranslation, useUpdateChannelContentPublishSchedule, useUpdateChannelContentTranslation, useUpdateChannelSubscriber, useUpdateChannelTranslation, useUpdateCustomModule, useUpdateCustomModuleTranslation, useUpdateCustomReport, useUpdateDashboard, useUpdateDashboardWidget, useUpdateEvent, useUpdateEventActivation, useUpdateEventActivationCompletion, useUpdateEventActivationTranslation, useUpdateEventAddOn, useUpdateEventAddOnTranslation, useUpdateEventAttendee, useUpdateEventAttendeePackage, useUpdateEventCheckinCode, useUpdateEventCoupon, useUpdateEventEmail, useUpdateEventEmailTranslation, useUpdateEventFaqSection, useUpdateEventFaqSectionQuestion, useUpdateEventFaqSectionQuestionTranslation, useUpdateEventFaqSectionTranslation, useUpdateEventFollowup, useUpdateEventFollowupQuestion, useUpdateEventFollowupTranslation, useUpdateEventMatch, useUpdateEventMediaItem, useUpdateEventPackage, useUpdateEventPackagePass, useUpdateEventPackageTranslation, useUpdateEventPage, useUpdateEventPageTranslation, useUpdateEventPass, useUpdateEventPassFollowupResponses, useUpdateEventPassResponse, useUpdateEventPassResponses, useUpdateEventPassSingleFollowupResponses, useUpdateEventPassType, useUpdateEventPassTypePriceSchedule, useUpdateEventPassTypeRefundSchedule, useUpdateEventPassTypeTranslation, useUpdateEventQuestion, useUpdateEventQuestionChoice, useUpdateEventQuestionChoiceSubQuestion, useUpdateEventQuestionChoiceTranslation, useUpdateEventQuestionTranslation, useUpdateEventRegistrationBypass, useUpdateEventReservation, useUpdateEventRoomType, useUpdateEventRoomTypeAddOnDetails, useUpdateEventRoomTypePassTypeDetails, useUpdateEventRoomTypeTranslation, useUpdateEventRoundQuestion, useUpdateEventSection, useUpdateEventSectionQuestion, useUpdateEventSectionTranslation, useUpdateEventSession, useUpdateEventSessionAccess, useUpdateEventSessionAccessResponses, useUpdateEventSessionLocation, useUpdateEventSessionLocationTranslation, useUpdateEventSessionMatch, useUpdateEventSessionQuestion, useUpdateEventSessionQuestionChoice, useUpdateEventSessionQuestionChoiceSubQuestion, useUpdateEventSessionQuestionChoiceTranslation, useUpdateEventSessionQuestionTranslation, useUpdateEventSessionRoundQuestion, useUpdateEventSessionSection, useUpdateEventSessionSectionQuestion, useUpdateEventSessionSectionTranslation, useUpdateEventSessionTranslation, useUpdateEventSpeaker, useUpdateEventSpeakerTranslation, useUpdateEventSponsorship, useUpdateEventSponsorshipLevel, useUpdateEventSponsorshipLevelTranslation, useUpdateEventSponsorshipTranslation, useUpdateEventTrack, useUpdateEventTrackTranslation, useUpdateEventTranslation, useUpdateEventZplTemplate, useUpdateEventZplTemplateBadgeField, useUpdateFile, useUpdateGroup, useUpdateGroupTranslation, useUpdateImage, useUpdateIntegration, useUpdateInterest, useUpdateInvoice, useUpdateInvoiceLineItem, useUpdateLevel, useUpdateLevelTranslation, useUpdateLoginEmail, useUpdateLoginPassword, useUpdateMeeting, useUpdateMeetingLink, useUpdateMeetingParticipant, useUpdateMembership, useUpdateMembershipPrice, useUpdateOrganization, useUpdateOrganizationDomain, useUpdateOrganizationIntegrations, useUpdateOrganizationMembership, useUpdateOrganizationModule, useUpdateOrganizationTeamMember, useUpdateOrganizationWebhook, useUpdatePayment, useUpdatePreset, useUpdateRoom, useUpdateSearchList, useUpdateSearchListValue, useUpdateSelf, useUpdateSeries, useUpdateStreamConfig, useUpdateStreamInput, useUpdateStreamInputOutput, useUpdateSubscription, useUpdateSupportTicket, useUpdateSurvey, useUpdateSurveyQuestion, useUpdateSurveyQuestionChoice, useUpdateSurveyQuestionChoiceSubQuestion, useUpdateSurveyQuestionChoiceTranslation, useUpdateSurveyQuestionTranslation, useUpdateSurveySection, useUpdateSurveySectionQuestion, useUpdateSurveySectionTranslation, useUpdateSurveySubmission, useUpdateSurveySubmissionResponses, useUpdateSurveyTranslation, useUpdateTaxIntegration, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMember, useUpdateThreadMessage, useUpdateTier, useUpdateUserImage, useUpdateVideo, useUploadFile, useUploadVideoCaptions, useVerifyOrganizationWebhook, useVoidInvoice };