@connectedxm/admin 4.3.3 → 5.0.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.cjs +1418 -752
- package/dist/index.d.cts +1402 -639
- package/dist/index.d.ts +1402 -639
- package/dist/index.js +2629 -2029
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -982,7 +982,6 @@ interface Event extends BaseEvent {
|
|
|
982
982
|
androidAppLink: string | null;
|
|
983
983
|
newActivityCreatorEmailNotification: boolean;
|
|
984
984
|
newActivityCreatorPushNotification: boolean;
|
|
985
|
-
streamInputs: BaseStreamInput[];
|
|
986
985
|
streamReplayId: string | null;
|
|
987
986
|
streamReplay: BaseVideo | null;
|
|
988
987
|
groupId: string | null;
|
|
@@ -2181,7 +2180,6 @@ interface EventSession extends BaseEventSession {
|
|
|
2181
2180
|
eventId: string;
|
|
2182
2181
|
event: BaseEvent;
|
|
2183
2182
|
speakers: BaseEventSpeaker[];
|
|
2184
|
-
streamInput: BaseStreamInput | null;
|
|
2185
2183
|
}
|
|
2186
2184
|
interface EventSessionTranslation {
|
|
2187
2185
|
id: number;
|
|
@@ -2458,76 +2456,219 @@ interface SponsorshipLevelTranslation {
|
|
|
2458
2456
|
createdAt: string;
|
|
2459
2457
|
updatedAt: string;
|
|
2460
2458
|
}
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2459
|
+
type RecordingAction = "stop" | "pause" | "resume";
|
|
2460
|
+
interface StorageConfig {
|
|
2461
|
+
type: "aws" | "azure" | "digitalocean" | "gcs" | "sftp";
|
|
2462
|
+
access_key?: string;
|
|
2463
|
+
secret?: string;
|
|
2464
|
+
bucket?: string;
|
|
2465
|
+
region?: string;
|
|
2466
|
+
path?: string;
|
|
2467
|
+
auth_method?: "KEY" | "PASSWORD";
|
|
2468
|
+
username?: string;
|
|
2469
|
+
password?: string;
|
|
2470
|
+
host?: string;
|
|
2471
|
+
port?: number;
|
|
2472
|
+
private_key?: string;
|
|
2472
2473
|
}
|
|
2473
|
-
interface
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2474
|
+
interface BaseMeeting {
|
|
2475
|
+
id: string;
|
|
2476
|
+
title: string;
|
|
2477
|
+
host_preset: string;
|
|
2478
|
+
guest_preset: string;
|
|
2479
|
+
public: boolean;
|
|
2480
|
+
preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
2481
|
+
record_on_start: boolean;
|
|
2482
|
+
live_stream_on_start: boolean;
|
|
2483
|
+
persist_chat: boolean;
|
|
2484
|
+
summarize_on_end: boolean;
|
|
2485
|
+
status: "ACTIVE" | "INACTIVE";
|
|
2486
|
+
created_at: string;
|
|
2487
|
+
updated_at: string;
|
|
2488
|
+
}
|
|
2489
|
+
interface Meeting extends BaseMeeting {
|
|
2490
|
+
"ai_config.transcription.keywords": string[];
|
|
2491
|
+
"ai_config.transcription.language": "en-US" | "en-IN" | "multi" | "de" | "hi" | "sv" | "ru" | "pl" | "el" | "fr" | "nl" | "tr" | "es" | "it" | "pt" | "pt-BR" | "ro" | "ko" | "id";
|
|
2492
|
+
"ai_config.transcription.profanity_filter": boolean;
|
|
2493
|
+
"ai_config.summarization.word_limit": number;
|
|
2494
|
+
"ai_config.summarization.text_format": "plain_text" | "markdown";
|
|
2495
|
+
"ai_config.summarization.summary_type": "general" | "team_meeting" | "sales_call" | "client_check_in" | "interview";
|
|
2496
|
+
}
|
|
2497
|
+
interface Participant {
|
|
2498
|
+
id: string;
|
|
2499
|
+
name: string | null;
|
|
2500
|
+
picture: string | null;
|
|
2501
|
+
custom_participant_id: string;
|
|
2502
|
+
account: BaseAccount | null;
|
|
2503
|
+
preset_name: string;
|
|
2504
|
+
token?: string;
|
|
2505
|
+
created_at: string;
|
|
2506
|
+
updated_at: string;
|
|
2481
2507
|
}
|
|
2482
|
-
interface
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2508
|
+
interface MeetingSession {
|
|
2509
|
+
id: string;
|
|
2510
|
+
associated_id: string;
|
|
2511
|
+
meeting_display_name: string;
|
|
2512
|
+
type: "meeting" | "livestream" | "participant";
|
|
2513
|
+
status: "LIVE" | "ENDED";
|
|
2514
|
+
live_participants: number;
|
|
2515
|
+
max_concurrent_participants: number;
|
|
2516
|
+
minutes_consumed: number;
|
|
2517
|
+
organization_id: string;
|
|
2518
|
+
started_at: string;
|
|
2519
|
+
created_at: string;
|
|
2520
|
+
updated_at: string;
|
|
2521
|
+
ended_at?: string;
|
|
2522
|
+
meta?: Record<string, any>;
|
|
2523
|
+
breakout_rooms: MeetingSession[];
|
|
2524
|
+
}
|
|
2525
|
+
interface MeetingSessionChatDownload {
|
|
2526
|
+
chat_download_url: string;
|
|
2527
|
+
chat_download_url_expiry: string;
|
|
2528
|
+
}
|
|
2529
|
+
interface MeetingSessionTranscriptDownload {
|
|
2530
|
+
sessionId: string;
|
|
2531
|
+
transcript_download_url: string;
|
|
2532
|
+
transcript_download_url_expiry: string;
|
|
2487
2533
|
}
|
|
2488
|
-
interface
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
deleteRecordingAfterDays: null | number;
|
|
2534
|
+
interface MeetingSessionSummaryDownload {
|
|
2535
|
+
sessionId: string;
|
|
2536
|
+
summary_download_url: string;
|
|
2537
|
+
summary_download_url_expiry: string;
|
|
2493
2538
|
}
|
|
2494
|
-
interface
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2539
|
+
interface Livestream {
|
|
2540
|
+
id: string;
|
|
2541
|
+
name: string;
|
|
2542
|
+
status: "LIVE" | "IDLE" | "ERRORED" | "INVOKED";
|
|
2543
|
+
ingest_server: string;
|
|
2544
|
+
stream_key: string;
|
|
2545
|
+
playback_url: string;
|
|
2546
|
+
meeting_id: string;
|
|
2547
|
+
created_at: string;
|
|
2548
|
+
updated_at: string;
|
|
2549
|
+
disabled: boolean;
|
|
2550
|
+
}
|
|
2551
|
+
interface LivestreamSession {
|
|
2552
|
+
id: string;
|
|
2553
|
+
livestream_id: string;
|
|
2554
|
+
err_message: string;
|
|
2555
|
+
invoked_time: string;
|
|
2556
|
+
started_time: string;
|
|
2557
|
+
stopped_time: string;
|
|
2558
|
+
created_at: string;
|
|
2559
|
+
updated_at: string;
|
|
2560
|
+
ingest_seconds: string;
|
|
2561
|
+
}
|
|
2562
|
+
interface BaseMeetingRecording {
|
|
2563
|
+
id: string;
|
|
2564
|
+
meeting_id: string;
|
|
2565
|
+
download_url: string | null;
|
|
2566
|
+
download_url_expiry: string | null;
|
|
2567
|
+
file_size: number | null;
|
|
2568
|
+
session_id: string | null;
|
|
2569
|
+
output_file_name: string;
|
|
2570
|
+
status: string;
|
|
2571
|
+
invoked_time: string;
|
|
2572
|
+
started_time: string | null;
|
|
2573
|
+
stopped_time: string | null;
|
|
2574
|
+
recording_duration: number;
|
|
2575
|
+
}
|
|
2576
|
+
interface MeetingRecording extends BaseMeetingRecording {
|
|
2577
|
+
"meeting.preferred_region": string | null;
|
|
2578
|
+
"meeting.id": string;
|
|
2579
|
+
"meeting.title": string;
|
|
2580
|
+
"meeting.record_on_start": boolean;
|
|
2581
|
+
"meeting.live_stream_on_start": boolean;
|
|
2582
|
+
"meeting.persist_chat": boolean;
|
|
2583
|
+
"meeting.summarize_on_end": boolean;
|
|
2584
|
+
"meeting.is_large": boolean;
|
|
2585
|
+
"meeting.status": string;
|
|
2586
|
+
"meeting.created_at": string;
|
|
2587
|
+
"meeting.updated_at": string;
|
|
2588
|
+
"start_reason.reason": string;
|
|
2589
|
+
"start_reason.caller.type": string;
|
|
2590
|
+
"stop_reason.reason": string;
|
|
2591
|
+
"stop_reason.caller.type": string;
|
|
2592
|
+
}
|
|
2593
|
+
interface BasePreset {
|
|
2594
|
+
id: string;
|
|
2595
|
+
name: string;
|
|
2596
|
+
created_at: string;
|
|
2597
|
+
updated_at: string;
|
|
2598
|
+
}
|
|
2599
|
+
interface Preset extends BasePreset {
|
|
2600
|
+
"config.view_type": "GROUP_CALL" | "WEBINAR" | "AUDIO_ROOM" | "LIVESTREAM";
|
|
2601
|
+
"config.max_video_streams.mobile": number;
|
|
2602
|
+
"config.max_video_streams.desktop": number;
|
|
2603
|
+
"config.max_screenshare_count": number;
|
|
2604
|
+
"config.media.audio.enable_stereo": boolean;
|
|
2605
|
+
"config.media.audio.enable_high_bitrate": boolean;
|
|
2606
|
+
"config.media.video.quality": "hd" | "vga" | "qvga";
|
|
2607
|
+
"config.media.video.frame_rate": number;
|
|
2608
|
+
"config.media.screenshare.quality": "hd" | "vga" | "qvga";
|
|
2609
|
+
"config.media.screenshare.frame_rate": number;
|
|
2610
|
+
"permissions.accept_waiting_requests": boolean;
|
|
2611
|
+
"permissions.transcription_enabled": boolean;
|
|
2612
|
+
"permissions.can_accept_production_requests": boolean;
|
|
2613
|
+
"permissions.can_edit_display_name": boolean;
|
|
2614
|
+
"permissions.can_spotlight": boolean;
|
|
2615
|
+
"permissions.is_recorder": boolean;
|
|
2616
|
+
"permissions.recorder_type": "NONE" | "RECORDER" | "LIVESTREAMER";
|
|
2617
|
+
"permissions.disable_participant_audio": boolean;
|
|
2618
|
+
"permissions.disable_participant_screensharing": boolean;
|
|
2619
|
+
"permissions.disable_participant_video": boolean;
|
|
2620
|
+
"permissions.kick_participant": boolean;
|
|
2621
|
+
"permissions.pin_participant": boolean;
|
|
2622
|
+
"permissions.can_record": boolean;
|
|
2623
|
+
"permissions.can_livestream": boolean;
|
|
2624
|
+
"permissions.waiting_room_type": "SKIP" | "ON_PRIVILEGED_USER_ENTRY" | "SKIP_ON_ACCEPT";
|
|
2625
|
+
"permissions.hidden_participant": boolean;
|
|
2626
|
+
"permissions.show_participant_list": boolean;
|
|
2627
|
+
"permissions.can_change_participant_permissions": boolean;
|
|
2628
|
+
"permissions.stage_enabled": boolean;
|
|
2629
|
+
"permissions.stage_access": "ALLOWED" | "NOT_ALLOWED" | "CAN_REQUEST";
|
|
2630
|
+
"permissions.plugins.can_close": boolean;
|
|
2631
|
+
"permissions.plugins.can_start": boolean;
|
|
2632
|
+
"permissions.plugins.can_edit_config": boolean;
|
|
2633
|
+
"permissions.plugins.config": Record<string, any>;
|
|
2634
|
+
"permissions.connected_meetings.can_alter_connected_meetings": boolean;
|
|
2635
|
+
"permissions.connected_meetings.can_switch_connected_meetings": boolean;
|
|
2636
|
+
"permissions.connected_meetings.can_switch_to_parent_meeting": boolean;
|
|
2637
|
+
"permissions.polls.can_create": boolean;
|
|
2638
|
+
"permissions.polls.can_vote": boolean;
|
|
2639
|
+
"permissions.polls.can_view": boolean;
|
|
2640
|
+
"permissions.media.video.can_produce": "ALLOWED" | "NOT_ALLOWED" | "CAN_REQUEST";
|
|
2641
|
+
"permissions.media.audio.can_produce": "ALLOWED" | "NOT_ALLOWED" | "CAN_REQUEST";
|
|
2642
|
+
"permissions.media.screenshare.can_produce": "ALLOWED" | "NOT_ALLOWED" | "CAN_REQUEST";
|
|
2643
|
+
"permissions.chat.public.can_send": boolean;
|
|
2644
|
+
"permissions.chat.public.text": boolean;
|
|
2645
|
+
"permissions.chat.public.files": boolean;
|
|
2646
|
+
"permissions.chat.private.can_send": boolean;
|
|
2647
|
+
"permissions.chat.private.can_receive": boolean;
|
|
2648
|
+
"permissions.chat.private.text": boolean;
|
|
2649
|
+
"permissions.chat.private.files": boolean;
|
|
2650
|
+
"ui.design_tokens.border_radius": "rounded";
|
|
2651
|
+
"ui.design_tokens.border_width": "thin";
|
|
2652
|
+
"ui.design_tokens.spacing_base": number;
|
|
2653
|
+
"ui.design_tokens.theme": "dark";
|
|
2654
|
+
"ui.design_tokens.logo": string;
|
|
2655
|
+
"ui.design_tokens.colors.brand.300": string;
|
|
2656
|
+
"ui.design_tokens.colors.brand.400": string;
|
|
2657
|
+
"ui.design_tokens.colors.brand.500": string;
|
|
2658
|
+
"ui.design_tokens.colors.brand.600": string;
|
|
2659
|
+
"ui.design_tokens.colors.brand.700": string;
|
|
2660
|
+
"ui.design_tokens.colors.background.600": string;
|
|
2661
|
+
"ui.design_tokens.colors.background.700": string;
|
|
2662
|
+
"ui.design_tokens.colors.background.800": string;
|
|
2663
|
+
"ui.design_tokens.colors.background.900": string;
|
|
2664
|
+
"ui.design_tokens.colors.background.1000": string;
|
|
2665
|
+
"ui.design_tokens.colors.danger": string;
|
|
2666
|
+
"ui.design_tokens.colors.text": string;
|
|
2667
|
+
"ui.design_tokens.colors.text_on_brand": string;
|
|
2668
|
+
"ui.design_tokens.colors.success": string;
|
|
2669
|
+
"ui.design_tokens.colors.video_bg": string;
|
|
2670
|
+
"ui.design_tokens.colors.warning": string;
|
|
2671
|
+
"ui.config_diff": Record<string, any>;
|
|
2531
2672
|
}
|
|
2532
2673
|
declare enum MembershipPriceType {
|
|
2533
2674
|
flat = "flat",
|
|
@@ -3112,9 +3253,9 @@ interface BaseEventRoomTypeReservation {
|
|
|
3112
3253
|
accountId: string;
|
|
3113
3254
|
};
|
|
3114
3255
|
}[];
|
|
3256
|
+
room: BaseRoom;
|
|
3115
3257
|
}
|
|
3116
3258
|
interface EventRoomTypeReservation extends Omit<BaseEventRoomTypeReservation, "passes"> {
|
|
3117
|
-
room: BaseRoom;
|
|
3118
3259
|
passes: {
|
|
3119
3260
|
id: string;
|
|
3120
3261
|
status: PurchaseStatus;
|
|
@@ -5117,35 +5258,6 @@ interface LevelUpdateInputs {
|
|
|
5117
5258
|
imageId?: string | null;
|
|
5118
5259
|
sortOrder?: number | string | null;
|
|
5119
5260
|
}
|
|
5120
|
-
interface StreamInputCreateInputs {
|
|
5121
|
-
name: string;
|
|
5122
|
-
sortOrder?: number | string | null;
|
|
5123
|
-
eventId?: string | null;
|
|
5124
|
-
sessionId?: string | null;
|
|
5125
|
-
groupId?: string | null;
|
|
5126
|
-
details?: object | null;
|
|
5127
|
-
imageId?: string | null;
|
|
5128
|
-
public?: boolean;
|
|
5129
|
-
}
|
|
5130
|
-
interface StreamInputUpdateInputs {
|
|
5131
|
-
name?: string;
|
|
5132
|
-
sortOrder?: number | string | null;
|
|
5133
|
-
eventId?: string | null;
|
|
5134
|
-
sessionId?: string | null;
|
|
5135
|
-
groupId?: string | null;
|
|
5136
|
-
details?: object | null;
|
|
5137
|
-
connected?: boolean;
|
|
5138
|
-
imageId?: string | null;
|
|
5139
|
-
public?: boolean;
|
|
5140
|
-
}
|
|
5141
|
-
interface StreamInputOutputCreateInputs {
|
|
5142
|
-
enabled: boolean;
|
|
5143
|
-
url: string;
|
|
5144
|
-
streamKey: string;
|
|
5145
|
-
}
|
|
5146
|
-
interface StreamInputOutputUpdateInputs {
|
|
5147
|
-
enabled: boolean;
|
|
5148
|
-
}
|
|
5149
5261
|
interface StreamOutputCreateInputs {
|
|
5150
5262
|
enabled: boolean;
|
|
5151
5263
|
streamKey: string;
|
|
@@ -5261,7 +5373,6 @@ interface ThreadCreateInputs {
|
|
|
5261
5373
|
groupId?: string;
|
|
5262
5374
|
circleId?: string;
|
|
5263
5375
|
eventId?: string;
|
|
5264
|
-
streamId?: string;
|
|
5265
5376
|
}
|
|
5266
5377
|
interface ThreadUpdateInputs {
|
|
5267
5378
|
subject?: string | null;
|
|
@@ -6013,6 +6124,222 @@ interface RoundEventQuestionUpdataInputs {
|
|
|
6013
6124
|
interface RoundSessionQuestionUpdateInputs {
|
|
6014
6125
|
type: keyof typeof MatchQuestionType;
|
|
6015
6126
|
}
|
|
6127
|
+
interface MeetingCreateInputs {
|
|
6128
|
+
host_preset: string;
|
|
6129
|
+
guest_preset: string;
|
|
6130
|
+
public?: boolean;
|
|
6131
|
+
title: string | null;
|
|
6132
|
+
preferred_region: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
6133
|
+
record_on_start: boolean;
|
|
6134
|
+
live_stream_on_start: boolean;
|
|
6135
|
+
persist_chat: boolean;
|
|
6136
|
+
summarize_on_end: boolean;
|
|
6137
|
+
"ai_config.transcription.keywords"?: string[];
|
|
6138
|
+
"ai_config.transcription.language"?: "en-US" | "en-IN" | "multi" | "de" | "hi" | "sv" | "ru" | "pl" | "el" | "fr" | "nl" | "tr" | "es" | "it" | "pt" | "pt-BR" | "ro" | "ko" | "id";
|
|
6139
|
+
"ai_config.transcription.profanity_filter"?: boolean;
|
|
6140
|
+
"ai_config.summarization.word_limit"?: number;
|
|
6141
|
+
"ai_config.summarization.text_format"?: "plain_text" | "markdown";
|
|
6142
|
+
"ai_config.summarization.summary_type"?: "general" | "team_meeting" | "sales_call" | "client_check_in" | "interview" | "daily_standup" | "one_on_one_meeting" | "lecture" | "code_review";
|
|
6143
|
+
}
|
|
6144
|
+
interface MeetingUpdateInputs {
|
|
6145
|
+
host_preset?: string;
|
|
6146
|
+
guest_preset?: string;
|
|
6147
|
+
public?: boolean;
|
|
6148
|
+
title?: string | null;
|
|
6149
|
+
preferred_region?: "ap-south-1" | "ap-southeast-1" | "us-east-1" | "eu-central-1" | null;
|
|
6150
|
+
record_on_start?: boolean;
|
|
6151
|
+
live_stream_on_start?: boolean;
|
|
6152
|
+
status?: "ACTIVE" | "INACTIVE";
|
|
6153
|
+
persist_chat?: boolean;
|
|
6154
|
+
summarize_on_end?: boolean;
|
|
6155
|
+
"ai_config.transcription.keywords"?: string[];
|
|
6156
|
+
"ai_config.transcription.language"?: "en-US" | "en-IN" | "multi" | "de" | "hi" | "sv" | "ru" | "pl" | "el" | "fr" | "nl" | "tr" | "es" | "it" | "pt" | "pt-BR" | "ro" | "ko" | "id";
|
|
6157
|
+
"ai_config.transcription.profanity_filter"?: boolean;
|
|
6158
|
+
"ai_config.summarization.word_limit"?: number;
|
|
6159
|
+
"ai_config.summarization.text_format"?: "plain_text" | "markdown";
|
|
6160
|
+
"ai_config.summarization.summary_type"?: "general" | "team_meeting" | "sales_call" | "client_check_in" | "interview" | "daily_standup" | "one_on_one_meeting" | "lecture" | "code_review";
|
|
6161
|
+
}
|
|
6162
|
+
interface MeetingParticipantCreateInputs {
|
|
6163
|
+
custom_participant_id: string;
|
|
6164
|
+
name?: string | null;
|
|
6165
|
+
picture?: string | null;
|
|
6166
|
+
}
|
|
6167
|
+
interface MeetingParticipantUpdateInputs {
|
|
6168
|
+
name?: string | null;
|
|
6169
|
+
picture?: string | null;
|
|
6170
|
+
preset_name?: string | null;
|
|
6171
|
+
}
|
|
6172
|
+
interface MeetingRecordingCreateInputs {
|
|
6173
|
+
max_seconds?: number;
|
|
6174
|
+
file_name_prefix?: string;
|
|
6175
|
+
allow_multiple_recordings?: boolean;
|
|
6176
|
+
video_codec?: string;
|
|
6177
|
+
video_width?: number;
|
|
6178
|
+
video_height?: number;
|
|
6179
|
+
video_export_file?: boolean;
|
|
6180
|
+
watermark_url?: string;
|
|
6181
|
+
watermark_size_width?: number;
|
|
6182
|
+
watermark_size_height?: number;
|
|
6183
|
+
watermark_position?: string;
|
|
6184
|
+
audio_codec?: string;
|
|
6185
|
+
audio_channel?: string;
|
|
6186
|
+
audio_export_file?: boolean;
|
|
6187
|
+
realtimekit_bucket_enabled?: boolean;
|
|
6188
|
+
interactive_type?: string;
|
|
6189
|
+
}
|
|
6190
|
+
interface MeetingRecordingUpdateInputs {
|
|
6191
|
+
action: "stop" | "pause" | "resume";
|
|
6192
|
+
}
|
|
6193
|
+
interface MeetingPresetCreateInputs {
|
|
6194
|
+
name: string;
|
|
6195
|
+
"config.view_type": "GROUP_CALL" | "WEBINAR" | "AUDIO_ROOM" | "LIVESTREAM";
|
|
6196
|
+
"config.max_video_streams.mobile": number;
|
|
6197
|
+
"config.max_video_streams.desktop": number;
|
|
6198
|
+
"config.max_screenshare_count": number;
|
|
6199
|
+
"config.media.audio.enable_stereo": boolean;
|
|
6200
|
+
"config.media.audio.enable_high_bitrate": boolean;
|
|
6201
|
+
"config.media.video.quality": "hd" | "vga" | "qvga";
|
|
6202
|
+
"config.media.video.frame_rate": number;
|
|
6203
|
+
"config.media.screenshare.quality": "hd" | "vga" | "qvga";
|
|
6204
|
+
"config.media.screenshare.frame_rate": number;
|
|
6205
|
+
"permissions.accept_waiting_requests": boolean;
|
|
6206
|
+
"permissions.transcription_enabled": boolean;
|
|
6207
|
+
"permissions.can_accept_production_requests": boolean;
|
|
6208
|
+
"permissions.can_edit_display_name": boolean;
|
|
6209
|
+
"permissions.can_spotlight": boolean;
|
|
6210
|
+
"permissions.is_recorder": boolean;
|
|
6211
|
+
"permissions.recorder_type": "NONE" | "RECORDER" | "LIVESTREAMER";
|
|
6212
|
+
"permissions.disable_participant_audio": boolean;
|
|
6213
|
+
"permissions.disable_participant_screensharing": boolean;
|
|
6214
|
+
"permissions.disable_participant_video": boolean;
|
|
6215
|
+
"permissions.kick_participant": boolean;
|
|
6216
|
+
"permissions.pin_participant": boolean;
|
|
6217
|
+
"permissions.can_record": boolean;
|
|
6218
|
+
"permissions.can_livestream": boolean;
|
|
6219
|
+
"permissions.waiting_room_type": "SKIP" | "ON_PRIVILEGED_USER_ENTRY" | "SKIP_ON_ACCEPT";
|
|
6220
|
+
"permissions.hidden_participant": boolean;
|
|
6221
|
+
"permissions.show_participant_list": boolean;
|
|
6222
|
+
"permissions.can_change_participant_permissions": boolean;
|
|
6223
|
+
"permissions.stage_enabled": boolean;
|
|
6224
|
+
"permissions.stage_access": "ALLOWED" | "NOT_ALLOWED" | "CAN_REQUEST";
|
|
6225
|
+
"permissions.plugins.can_close": boolean;
|
|
6226
|
+
"permissions.plugins.can_start": boolean;
|
|
6227
|
+
"permissions.plugins.can_edit_config": boolean;
|
|
6228
|
+
"permissions.plugins.config": Record<string, any>;
|
|
6229
|
+
"permissions.connected_meetings.can_alter_connected_meetings": boolean;
|
|
6230
|
+
"permissions.connected_meetings.can_switch_connected_meetings": boolean;
|
|
6231
|
+
"permissions.connected_meetings.can_switch_to_parent_meeting": boolean;
|
|
6232
|
+
"permissions.polls.can_create": boolean;
|
|
6233
|
+
"permissions.polls.can_vote": boolean;
|
|
6234
|
+
"permissions.polls.can_view": boolean;
|
|
6235
|
+
"permissions.media.video.can_produce": "ALLOWED" | "NOT_ALLOWED" | "CAN_REQUEST";
|
|
6236
|
+
"permissions.media.audio.can_produce": "ALLOWED" | "NOT_ALLOWED" | "CAN_REQUEST";
|
|
6237
|
+
"permissions.media.screenshare.can_produce": "ALLOWED" | "NOT_ALLOWED" | "CAN_REQUEST";
|
|
6238
|
+
"permissions.chat.public.can_send": boolean;
|
|
6239
|
+
"permissions.chat.public.text": boolean;
|
|
6240
|
+
"permissions.chat.public.files": boolean;
|
|
6241
|
+
"permissions.chat.private.can_send": boolean;
|
|
6242
|
+
"permissions.chat.private.can_receive": boolean;
|
|
6243
|
+
"permissions.chat.private.text": boolean;
|
|
6244
|
+
"permissions.chat.private.files": boolean;
|
|
6245
|
+
"ui.design_tokens.border_radius": "rounded";
|
|
6246
|
+
"ui.design_tokens.border_width": "thin";
|
|
6247
|
+
"ui.design_tokens.spacing_base": number;
|
|
6248
|
+
"ui.design_tokens.theme": "dark";
|
|
6249
|
+
"ui.design_tokens.logo": string;
|
|
6250
|
+
"ui.design_tokens.colors.brand.300": string;
|
|
6251
|
+
"ui.design_tokens.colors.brand.400": string;
|
|
6252
|
+
"ui.design_tokens.colors.brand.500": string;
|
|
6253
|
+
"ui.design_tokens.colors.brand.600": string;
|
|
6254
|
+
"ui.design_tokens.colors.brand.700": string;
|
|
6255
|
+
"ui.design_tokens.colors.background.600": string;
|
|
6256
|
+
"ui.design_tokens.colors.background.700": string;
|
|
6257
|
+
"ui.design_tokens.colors.background.800": string;
|
|
6258
|
+
"ui.design_tokens.colors.background.900": string;
|
|
6259
|
+
"ui.design_tokens.colors.background.1000": string;
|
|
6260
|
+
"ui.design_tokens.colors.danger": string;
|
|
6261
|
+
"ui.design_tokens.colors.text": string;
|
|
6262
|
+
"ui.design_tokens.colors.text_on_brand": string;
|
|
6263
|
+
"ui.design_tokens.colors.success": string;
|
|
6264
|
+
"ui.design_tokens.colors.video_bg": string;
|
|
6265
|
+
"ui.design_tokens.colors.warning": string;
|
|
6266
|
+
"ui.config_diff": Record<string, any>;
|
|
6267
|
+
}
|
|
6268
|
+
interface MeetingPresetUpdateInputs {
|
|
6269
|
+
name?: string | null;
|
|
6270
|
+
"config.view_type"?: "GROUP_CALL" | "WEBINAR" | "AUDIO_ROOM" | "LIVESTREAM";
|
|
6271
|
+
"config.max_video_streams.mobile"?: number;
|
|
6272
|
+
"config.max_video_streams.desktop"?: number;
|
|
6273
|
+
"config.max_screenshare_count"?: number;
|
|
6274
|
+
"config.media.audio.enable_stereo"?: boolean;
|
|
6275
|
+
"config.media.audio.enable_high_bitrate"?: boolean;
|
|
6276
|
+
"config.media.video.quality"?: "hd" | "vga" | "qvga";
|
|
6277
|
+
"config.media.video.frame_rate"?: number;
|
|
6278
|
+
"config.media.screenshare.quality"?: "hd" | "vga" | "qvga";
|
|
6279
|
+
"config.media.screenshare.frame_rate"?: number;
|
|
6280
|
+
"permissions.accept_waiting_requests"?: boolean;
|
|
6281
|
+
"permissions.transcription_enabled"?: boolean;
|
|
6282
|
+
"permissions.can_accept_production_requests"?: boolean;
|
|
6283
|
+
"permissions.can_edit_display_name"?: boolean;
|
|
6284
|
+
"permissions.can_spotlight"?: boolean;
|
|
6285
|
+
"permissions.is_recorder"?: boolean;
|
|
6286
|
+
"permissions.recorder_type"?: "NONE" | "RECORDER" | "LIVESTREAMER";
|
|
6287
|
+
"permissions.disable_participant_audio"?: boolean;
|
|
6288
|
+
"permissions.disable_participant_screensharing"?: boolean;
|
|
6289
|
+
"permissions.disable_participant_video"?: boolean;
|
|
6290
|
+
"permissions.kick_participant"?: boolean;
|
|
6291
|
+
"permissions.pin_participant"?: boolean;
|
|
6292
|
+
"permissions.can_record"?: boolean;
|
|
6293
|
+
"permissions.can_livestream"?: boolean;
|
|
6294
|
+
"permissions.waiting_room_type"?: "SKIP" | "ON_PRIVILEGED_USER_ENTRY" | "SKIP_ON_ACCEPT";
|
|
6295
|
+
"permissions.hidden_participant"?: boolean;
|
|
6296
|
+
"permissions.show_participant_list"?: boolean;
|
|
6297
|
+
"permissions.can_change_participant_permissions"?: boolean;
|
|
6298
|
+
"permissions.stage_enabled"?: boolean;
|
|
6299
|
+
"permissions.stage_access"?: "ALLOWED" | "NOT_ALLOWED" | "CAN_REQUEST";
|
|
6300
|
+
"permissions.plugins.can_close"?: boolean;
|
|
6301
|
+
"permissions.plugins.can_start"?: boolean;
|
|
6302
|
+
"permissions.plugins.can_edit_config"?: boolean;
|
|
6303
|
+
"permissions.plugins.config"?: Record<string, any>;
|
|
6304
|
+
"permissions.connected_meetings.can_alter_connected_meetings"?: boolean;
|
|
6305
|
+
"permissions.connected_meetings.can_switch_connected_meetings"?: boolean;
|
|
6306
|
+
"permissions.connected_meetings.can_switch_to_parent_meeting"?: boolean;
|
|
6307
|
+
"permissions.polls.can_create"?: boolean;
|
|
6308
|
+
"permissions.polls.can_vote"?: boolean;
|
|
6309
|
+
"permissions.polls.can_view"?: boolean;
|
|
6310
|
+
"permissions.media.video.can_produce"?: "ALLOWED" | "NOT_ALLOWED" | "CAN_REQUEST";
|
|
6311
|
+
"permissions.media.audio.can_produce"?: "ALLOWED" | "NOT_ALLOWED" | "CAN_REQUEST";
|
|
6312
|
+
"permissions.media.screenshare.can_produce"?: "ALLOWED" | "NOT_ALLOWED" | "CAN_REQUEST";
|
|
6313
|
+
"permissions.chat.public.can_send"?: boolean;
|
|
6314
|
+
"permissions.chat.public.text"?: boolean;
|
|
6315
|
+
"permissions.chat.public.files"?: boolean;
|
|
6316
|
+
"permissions.chat.private.can_send"?: boolean;
|
|
6317
|
+
"permissions.chat.private.can_receive"?: boolean;
|
|
6318
|
+
"permissions.chat.private.text"?: boolean;
|
|
6319
|
+
"permissions.chat.private.files"?: boolean;
|
|
6320
|
+
"ui.design_tokens.border_radius"?: "rounded";
|
|
6321
|
+
"ui.design_tokens.border_width"?: "thin";
|
|
6322
|
+
"ui.design_tokens.spacing_base"?: number;
|
|
6323
|
+
"ui.design_tokens.theme"?: "dark";
|
|
6324
|
+
"ui.design_tokens.logo"?: string;
|
|
6325
|
+
"ui.design_tokens.colors.brand.300"?: string;
|
|
6326
|
+
"ui.design_tokens.colors.brand.400"?: string;
|
|
6327
|
+
"ui.design_tokens.colors.brand.500"?: string;
|
|
6328
|
+
"ui.design_tokens.colors.brand.600"?: string;
|
|
6329
|
+
"ui.design_tokens.colors.brand.700"?: string;
|
|
6330
|
+
"ui.design_tokens.colors.background.600"?: string;
|
|
6331
|
+
"ui.design_tokens.colors.background.700"?: string;
|
|
6332
|
+
"ui.design_tokens.colors.background.800"?: string;
|
|
6333
|
+
"ui.design_tokens.colors.background.900"?: string;
|
|
6334
|
+
"ui.design_tokens.colors.background.1000"?: string;
|
|
6335
|
+
"ui.design_tokens.colors.danger"?: string;
|
|
6336
|
+
"ui.design_tokens.colors.text"?: string;
|
|
6337
|
+
"ui.design_tokens.colors.text_on_brand"?: string;
|
|
6338
|
+
"ui.design_tokens.colors.success"?: string;
|
|
6339
|
+
"ui.design_tokens.colors.video_bg"?: string;
|
|
6340
|
+
"ui.design_tokens.colors.warning"?: string;
|
|
6341
|
+
"ui.config_diff"?: Record<string, any>;
|
|
6342
|
+
}
|
|
6016
6343
|
|
|
6017
6344
|
declare const AppendInfiniteQuery: <TData>(queryClient: QueryClient, key: QueryKey, newData: any) => void;
|
|
6018
6345
|
|
|
@@ -11200,62 +11527,64 @@ declare const useGetEventQuestions: (eventId?: string, params?: Omit<InfiniteQue
|
|
|
11200
11527
|
* @category Keys
|
|
11201
11528
|
* @group Events
|
|
11202
11529
|
*/
|
|
11203
|
-
declare const
|
|
11530
|
+
declare const EVENT_ROOM_TYPE_TRANSLATION_QUERY_KEY: (eventId: string, roomTypeId: string, locale: string) => string[];
|
|
11204
11531
|
/**
|
|
11205
11532
|
* @category Setters
|
|
11206
11533
|
* @group Events
|
|
11207
11534
|
*/
|
|
11208
|
-
declare const
|
|
11209
|
-
interface
|
|
11535
|
+
declare const SET_EVENT_ROOM_TYPE_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ROOM_TYPE_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventRoomTypeTranslation>>) => void;
|
|
11536
|
+
interface GetEventRoomTypeTranslationProps extends SingleQueryParams {
|
|
11210
11537
|
eventId: string;
|
|
11211
|
-
|
|
11538
|
+
roomTypeId: string;
|
|
11539
|
+
locale: string;
|
|
11212
11540
|
}
|
|
11213
11541
|
/**
|
|
11214
11542
|
* @category Queries
|
|
11215
11543
|
* @group Events
|
|
11216
11544
|
*/
|
|
11217
|
-
declare const
|
|
11545
|
+
declare const GetEventRoomTypeTranslation: ({ eventId, roomTypeId, locale, adminApiParams, }: GetEventRoomTypeTranslationProps) => Promise<ConnectedXMResponse<EventRoomTypeTranslation | null>>;
|
|
11218
11546
|
/**
|
|
11219
11547
|
* @category Hooks
|
|
11220
11548
|
* @group Events
|
|
11221
11549
|
*/
|
|
11222
|
-
declare const
|
|
11550
|
+
declare const useGetEventRoomTypeTranslation: (eventId?: string, roomTypeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoomTypeTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomTypeTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
11223
11551
|
|
|
11224
11552
|
/**
|
|
11225
11553
|
* @category Keys
|
|
11226
11554
|
* @group Events
|
|
11227
11555
|
*/
|
|
11228
|
-
declare const
|
|
11556
|
+
declare const EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_KEY: (eventId: string, roomTypeId: string) => string[];
|
|
11229
11557
|
/**
|
|
11230
11558
|
* @category Setters
|
|
11231
11559
|
* @group Events
|
|
11232
11560
|
*/
|
|
11233
|
-
declare const
|
|
11234
|
-
interface
|
|
11561
|
+
declare const SET_EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventRoomTypeTranslations>>) => void;
|
|
11562
|
+
interface GetEventRoomTypeTranslationsProps extends InfiniteQueryParams {
|
|
11235
11563
|
eventId: string;
|
|
11564
|
+
roomTypeId: string;
|
|
11236
11565
|
}
|
|
11237
11566
|
/**
|
|
11238
11567
|
* @category Queries
|
|
11239
11568
|
* @group Events
|
|
11240
11569
|
*/
|
|
11241
|
-
declare const
|
|
11570
|
+
declare const GetEventRoomTypeTranslations: ({ pageParam, pageSize, orderBy, search, eventId, roomTypeId, adminApiParams, }: GetEventRoomTypeTranslationsProps) => Promise<ConnectedXMResponse<EventRoomTypeTranslation[]>>;
|
|
11242
11571
|
/**
|
|
11243
11572
|
* @category Hooks
|
|
11244
11573
|
* @group Events
|
|
11245
11574
|
*/
|
|
11246
|
-
declare const
|
|
11575
|
+
declare const useGetEventRoomTypeTranslations: (eventId?: string, roomTypeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRoomTypeTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventRoomTypeTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
11247
11576
|
|
|
11248
11577
|
/**
|
|
11249
11578
|
* @category Keys
|
|
11250
11579
|
* @group Events
|
|
11251
11580
|
*/
|
|
11252
|
-
declare const
|
|
11581
|
+
declare const EVENT_ROOM_TYPE_QUERY_KEY: (eventId: string, roomTypeId: string) => string[];
|
|
11253
11582
|
/**
|
|
11254
11583
|
* @category Setters
|
|
11255
11584
|
* @group Events
|
|
11256
11585
|
*/
|
|
11257
|
-
declare const
|
|
11258
|
-
interface
|
|
11586
|
+
declare const SET_EVENT_ROOM_TYPE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ROOM_TYPE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventRoomType>>) => void;
|
|
11587
|
+
interface GetEventRoomTypeProps extends SingleQueryParams {
|
|
11259
11588
|
eventId: string;
|
|
11260
11589
|
roomTypeId: string;
|
|
11261
11590
|
}
|
|
@@ -11263,50 +11592,49 @@ interface GetRoomTypeRoomsProps extends InfiniteQueryParams {
|
|
|
11263
11592
|
* @category Queries
|
|
11264
11593
|
* @group Events
|
|
11265
11594
|
*/
|
|
11266
|
-
declare const
|
|
11595
|
+
declare const GetEventRoomType: ({ eventId, roomTypeId, adminApiParams, }: GetEventRoomTypeProps) => Promise<ConnectedXMResponse<EventRoomType>>;
|
|
11267
11596
|
/**
|
|
11268
11597
|
* @category Hooks
|
|
11269
11598
|
* @group Events
|
|
11270
11599
|
*/
|
|
11271
|
-
declare const
|
|
11600
|
+
declare const useGetEventRoomType: (eventId?: string, roomTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoomType>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomType>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
11272
11601
|
|
|
11273
11602
|
/**
|
|
11274
11603
|
* @category Keys
|
|
11275
11604
|
* @group Events
|
|
11276
11605
|
*/
|
|
11277
|
-
declare const
|
|
11606
|
+
declare const EVENT_ROOM_TYPE_PASSES_QUERY_KEY: (eventId: string, roomTypeId: string) => string[];
|
|
11278
11607
|
/**
|
|
11279
11608
|
* @category Setters
|
|
11280
11609
|
* @group Events
|
|
11281
11610
|
*/
|
|
11282
|
-
declare const
|
|
11283
|
-
interface
|
|
11611
|
+
declare const SET_EVENT_ROOM_TYPE_PASSES_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ROOM_TYPE_PASSES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventRoomTypePasses>>) => void;
|
|
11612
|
+
interface GetEventRoomTypePassesProps extends InfiniteQueryParams {
|
|
11284
11613
|
eventId: string;
|
|
11285
11614
|
roomTypeId: string;
|
|
11286
|
-
locale: string;
|
|
11287
11615
|
}
|
|
11288
11616
|
/**
|
|
11289
11617
|
* @category Queries
|
|
11290
11618
|
* @group Events
|
|
11291
11619
|
*/
|
|
11292
|
-
declare const
|
|
11620
|
+
declare const GetEventRoomTypePasses: ({ eventId, roomTypeId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventRoomTypePassesProps) => Promise<ConnectedXMResponse<EventPass[]>>;
|
|
11293
11621
|
/**
|
|
11294
11622
|
* @category Hooks
|
|
11295
11623
|
* @group Events
|
|
11296
11624
|
*/
|
|
11297
|
-
declare const
|
|
11625
|
+
declare const useGetEventRoomTypePasses: (eventId?: string, roomTypeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRoomTypePasses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventPass[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
11298
11626
|
|
|
11299
11627
|
/**
|
|
11300
11628
|
* @category Keys
|
|
11301
11629
|
* @group Events
|
|
11302
11630
|
*/
|
|
11303
|
-
declare const
|
|
11631
|
+
declare const EVENT_ROOM_TYPE_RESERVATIONS_QUERY_KEY: (eventId: string, roomTypeId: string) => string[];
|
|
11304
11632
|
/**
|
|
11305
11633
|
* @category Setters
|
|
11306
11634
|
* @group Events
|
|
11307
11635
|
*/
|
|
11308
|
-
declare const
|
|
11309
|
-
interface
|
|
11636
|
+
declare const SET_EVENT_ROOM_TYPE_RESERVATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ROOM_TYPE_RESERVATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventRoomTypeReservations>>) => void;
|
|
11637
|
+
interface GetEventRoomTypeReservationsProps extends InfiniteQueryParams {
|
|
11310
11638
|
eventId: string;
|
|
11311
11639
|
roomTypeId: string;
|
|
11312
11640
|
}
|
|
@@ -11314,24 +11642,25 @@ interface GetEventRoomTypeTranslationsProps extends InfiniteQueryParams {
|
|
|
11314
11642
|
* @category Queries
|
|
11315
11643
|
* @group Events
|
|
11316
11644
|
*/
|
|
11317
|
-
declare const
|
|
11645
|
+
declare const GetEventRoomTypeReservations: ({ eventId, roomTypeId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventRoomTypeReservationsProps) => Promise<ConnectedXMResponse<EventRoomTypeReservation[]>>;
|
|
11318
11646
|
/**
|
|
11319
11647
|
* @category Hooks
|
|
11320
11648
|
* @group Events
|
|
11321
11649
|
*/
|
|
11322
|
-
declare const
|
|
11650
|
+
declare const useGetEventRoomTypeReservations: (eventId?: string, roomTypeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRoomTypeReservations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventRoomTypeReservation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
11323
11651
|
|
|
11324
11652
|
/**
|
|
11325
11653
|
* @category Keys
|
|
11326
11654
|
* @group Events
|
|
11327
11655
|
*/
|
|
11328
|
-
declare const
|
|
11656
|
+
declare const EVENT_ROOM_TYPE_TIERS_QUERY_KEY: (allowed: boolean, eventId: string, roomTypeId: string) => string[];
|
|
11329
11657
|
/**
|
|
11330
11658
|
* @category Setters
|
|
11331
11659
|
* @group Events
|
|
11332
11660
|
*/
|
|
11333
|
-
declare const
|
|
11334
|
-
interface
|
|
11661
|
+
declare const SET_EVENT_ROOM_TYPE_TIERS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ROOM_TYPE_TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventRoomTypeTiers>>) => void;
|
|
11662
|
+
interface GetEventRoomTypeTiersProps extends InfiniteQueryParams {
|
|
11663
|
+
allowed: boolean;
|
|
11335
11664
|
eventId: string;
|
|
11336
11665
|
roomTypeId: string;
|
|
11337
11666
|
}
|
|
@@ -11339,75 +11668,73 @@ interface GetEventRoomTypeProps extends SingleQueryParams {
|
|
|
11339
11668
|
* @category Queries
|
|
11340
11669
|
* @group Events
|
|
11341
11670
|
*/
|
|
11342
|
-
declare const
|
|
11671
|
+
declare const GetEventRoomTypeTiers: ({ allowed, eventId, roomTypeId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventRoomTypeTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
|
|
11343
11672
|
/**
|
|
11344
11673
|
* @category Hooks
|
|
11345
11674
|
* @group Events
|
|
11346
11675
|
*/
|
|
11347
|
-
declare const
|
|
11676
|
+
declare const useGetEventRoomTypeTiers: (allowed: boolean, eventId?: string, roomTypeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRoomTypeTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
11348
11677
|
|
|
11349
11678
|
/**
|
|
11350
11679
|
* @category Keys
|
|
11351
11680
|
* @group Events
|
|
11352
11681
|
*/
|
|
11353
|
-
declare const
|
|
11682
|
+
declare const EVENT_ROOM_TYPES_QUERY_KEY: (eventId: string) => string[];
|
|
11354
11683
|
/**
|
|
11355
11684
|
* @category Setters
|
|
11356
11685
|
* @group Events
|
|
11357
11686
|
*/
|
|
11358
|
-
declare const
|
|
11359
|
-
interface
|
|
11687
|
+
declare const SET_EVENT_ROOM_TYPES_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ROOM_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventRoomTypes>>) => void;
|
|
11688
|
+
interface GetEventRoomTypesProps extends InfiniteQueryParams {
|
|
11360
11689
|
eventId: string;
|
|
11361
|
-
roomTypeId: string;
|
|
11362
11690
|
}
|
|
11363
11691
|
/**
|
|
11364
11692
|
* @category Queries
|
|
11365
11693
|
* @group Events
|
|
11366
11694
|
*/
|
|
11367
|
-
declare const
|
|
11695
|
+
declare const GetEventRoomTypes: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventRoomTypesProps) => Promise<ConnectedXMResponse<EventRoomType[]>>;
|
|
11368
11696
|
/**
|
|
11369
11697
|
* @category Hooks
|
|
11370
11698
|
* @group Events
|
|
11371
11699
|
*/
|
|
11372
|
-
declare const
|
|
11700
|
+
declare const useGetEventRoomTypes: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRoomTypes>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventRoomType[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
11373
11701
|
|
|
11374
11702
|
/**
|
|
11375
11703
|
* @category Keys
|
|
11376
11704
|
* @group Events
|
|
11377
11705
|
*/
|
|
11378
|
-
declare const
|
|
11706
|
+
declare const EVENT_ROOM_QUERY_KEY: (eventId: string, roomId: string) => string[];
|
|
11379
11707
|
/**
|
|
11380
11708
|
* @category Setters
|
|
11381
11709
|
* @group Events
|
|
11382
11710
|
*/
|
|
11383
|
-
declare const
|
|
11384
|
-
interface
|
|
11711
|
+
declare const SET_EVENT_ROOM_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ROOM_QUERY_KEY>, response: Awaited<ReturnType<typeof GetRoom>>) => void;
|
|
11712
|
+
interface GetRoomProps extends SingleQueryParams {
|
|
11385
11713
|
eventId: string;
|
|
11386
|
-
|
|
11714
|
+
roomId: string;
|
|
11387
11715
|
}
|
|
11388
11716
|
/**
|
|
11389
11717
|
* @category Queries
|
|
11390
11718
|
* @group Events
|
|
11391
11719
|
*/
|
|
11392
|
-
declare const
|
|
11720
|
+
declare const GetRoom: ({ eventId, roomId, adminApiParams, }: GetRoomProps) => Promise<ConnectedXMResponse<Room>>;
|
|
11393
11721
|
/**
|
|
11394
11722
|
* @category Hooks
|
|
11395
11723
|
* @group Events
|
|
11396
11724
|
*/
|
|
11397
|
-
declare const
|
|
11725
|
+
declare const useGetRoom: (eventId?: string, roomId?: string, options?: SingleQueryOptions<ReturnType<typeof GetRoom>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Room>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
11398
11726
|
|
|
11399
11727
|
/**
|
|
11400
11728
|
* @category Keys
|
|
11401
11729
|
* @group Events
|
|
11402
11730
|
*/
|
|
11403
|
-
declare const
|
|
11731
|
+
declare const EVENT_ROOM_TYPE_ROOMS_QUERY_KEY: (eventId: string, roomTypeId: string) => string[];
|
|
11404
11732
|
/**
|
|
11405
11733
|
* @category Setters
|
|
11406
11734
|
* @group Events
|
|
11407
11735
|
*/
|
|
11408
|
-
declare const
|
|
11409
|
-
interface
|
|
11410
|
-
allowed: boolean;
|
|
11736
|
+
declare const SET_EVENT_ROOM_TYPE_ROOMS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ROOM_TYPE_ROOMS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetRoomTypeRooms>>) => void;
|
|
11737
|
+
interface GetRoomTypeRoomsProps extends InfiniteQueryParams {
|
|
11411
11738
|
eventId: string;
|
|
11412
11739
|
roomTypeId: string;
|
|
11413
11740
|
}
|
|
@@ -11415,36 +11742,36 @@ interface GetEventRoomTypeTiersProps extends InfiniteQueryParams {
|
|
|
11415
11742
|
* @category Queries
|
|
11416
11743
|
* @group Events
|
|
11417
11744
|
*/
|
|
11418
|
-
declare const
|
|
11745
|
+
declare const GetRoomTypeRooms: ({ eventId, roomTypeId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetRoomTypeRoomsProps) => Promise<ConnectedXMResponse<Room[]>>;
|
|
11419
11746
|
/**
|
|
11420
11747
|
* @category Hooks
|
|
11421
11748
|
* @group Events
|
|
11422
11749
|
*/
|
|
11423
|
-
declare const
|
|
11750
|
+
declare const useGetRoomTypeRooms: (eventId?: string, roomTypeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetRoomTypeRooms>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Room[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
11424
11751
|
|
|
11425
11752
|
/**
|
|
11426
11753
|
* @category Keys
|
|
11427
11754
|
* @group Events
|
|
11428
11755
|
*/
|
|
11429
|
-
declare const
|
|
11756
|
+
declare const EVENT_ROOMS_QUERY_KEY: (eventId: string) => string[];
|
|
11430
11757
|
/**
|
|
11431
11758
|
* @category Setters
|
|
11432
11759
|
* @group Events
|
|
11433
11760
|
*/
|
|
11434
|
-
declare const
|
|
11435
|
-
interface
|
|
11761
|
+
declare const SET_EVENT_ROOMS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ROOMS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetRooms>>) => void;
|
|
11762
|
+
interface GetRoomsProps extends InfiniteQueryParams {
|
|
11436
11763
|
eventId: string;
|
|
11437
11764
|
}
|
|
11438
11765
|
/**
|
|
11439
11766
|
* @category Queries
|
|
11440
11767
|
* @group Events
|
|
11441
11768
|
*/
|
|
11442
|
-
declare const
|
|
11769
|
+
declare const GetRooms: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetRoomsProps) => Promise<ConnectedXMResponse<Room[]>>;
|
|
11443
11770
|
/**
|
|
11444
11771
|
* @category Hooks
|
|
11445
11772
|
* @group Events
|
|
11446
11773
|
*/
|
|
11447
|
-
declare const
|
|
11774
|
+
declare const useGetRooms: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetRooms>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Room[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
11448
11775
|
|
|
11449
11776
|
/**
|
|
11450
11777
|
* @category Keys
|
|
@@ -14554,160 +14881,615 @@ declare const useGetLogins: (accountId?: string, params?: Omit<InfiniteQueryPara
|
|
|
14554
14881
|
|
|
14555
14882
|
/**
|
|
14556
14883
|
* @category Keys
|
|
14557
|
-
* @group
|
|
14884
|
+
* @group StreamsV2
|
|
14558
14885
|
*/
|
|
14559
|
-
declare const
|
|
14886
|
+
declare const LIVESTREAM_QUERY_KEY: (livestreamId: string) => string[];
|
|
14560
14887
|
/**
|
|
14561
14888
|
* @category Setters
|
|
14562
|
-
* @group
|
|
14889
|
+
* @group StreamsV2
|
|
14563
14890
|
*/
|
|
14564
|
-
declare const
|
|
14565
|
-
interface
|
|
14566
|
-
|
|
14891
|
+
declare const SET_LIVESTREAM_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LIVESTREAM_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLivestream>>) => void;
|
|
14892
|
+
interface GetLivestreamParams extends SingleQueryParams {
|
|
14893
|
+
livestreamId: string;
|
|
14567
14894
|
}
|
|
14568
14895
|
/**
|
|
14569
14896
|
* @category Queries
|
|
14570
|
-
* @group
|
|
14897
|
+
* @group StreamsV2
|
|
14571
14898
|
*/
|
|
14572
|
-
declare const
|
|
14899
|
+
declare const GetLivestream: ({ livestreamId, adminApiParams, }: GetLivestreamParams) => Promise<ConnectedXMResponse<Livestream>>;
|
|
14573
14900
|
/**
|
|
14574
14901
|
* @category Hooks
|
|
14575
|
-
* @group
|
|
14902
|
+
* @group StreamsV2
|
|
14576
14903
|
*/
|
|
14577
|
-
declare const
|
|
14904
|
+
declare const useGetLivestream: (livestreamId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLivestream>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Livestream>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
14578
14905
|
|
|
14579
14906
|
/**
|
|
14580
14907
|
* @category Keys
|
|
14581
|
-
* @group
|
|
14908
|
+
* @group StreamsV2
|
|
14582
14909
|
*/
|
|
14583
|
-
declare const
|
|
14910
|
+
declare const LIVESTREAM_SESSIONS_QUERY_KEY: (livestreamId?: string) => string[];
|
|
14584
14911
|
/**
|
|
14585
14912
|
* @category Setters
|
|
14586
|
-
* @group
|
|
14913
|
+
* @group StreamsV2
|
|
14587
14914
|
*/
|
|
14588
|
-
declare const
|
|
14589
|
-
interface
|
|
14590
|
-
|
|
14591
|
-
membershipPriceId: string;
|
|
14915
|
+
declare const SET_LIVESTREAM_SESSIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LIVESTREAM_SESSIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLivestreamSessions>>) => void;
|
|
14916
|
+
interface GetLivestreamSessionsParams extends InfiniteQueryParams {
|
|
14917
|
+
livestreamId?: string;
|
|
14592
14918
|
}
|
|
14593
14919
|
/**
|
|
14594
14920
|
* @category Queries
|
|
14595
|
-
* @group
|
|
14921
|
+
* @group StreamsV2
|
|
14596
14922
|
*/
|
|
14597
|
-
declare const
|
|
14923
|
+
declare const GetLivestreamSessions: ({ livestreamId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetLivestreamSessionsParams) => Promise<ConnectedXMResponse<LivestreamSession[]>>;
|
|
14598
14924
|
/**
|
|
14599
14925
|
* @category Hooks
|
|
14600
|
-
* @group
|
|
14926
|
+
* @group StreamsV2
|
|
14601
14927
|
*/
|
|
14602
|
-
declare const
|
|
14928
|
+
declare const useGetLivestreamSessions: (livestreamId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetLivestreamSessions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<LivestreamSession[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
14603
14929
|
|
|
14604
14930
|
/**
|
|
14605
14931
|
* @category Keys
|
|
14606
|
-
* @group
|
|
14932
|
+
* @group StreamsV2
|
|
14607
14933
|
*/
|
|
14608
|
-
declare const
|
|
14934
|
+
declare const LIVESTREAMS_QUERY_KEY: () => string[];
|
|
14609
14935
|
/**
|
|
14610
14936
|
* @category Setters
|
|
14611
|
-
* @group
|
|
14937
|
+
* @group StreamsV2
|
|
14612
14938
|
*/
|
|
14613
|
-
declare const
|
|
14614
|
-
interface
|
|
14615
|
-
membershipId: string;
|
|
14939
|
+
declare const SET_LIVESTREAMS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LIVESTREAMS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLivestreams>>) => void;
|
|
14940
|
+
interface GetLivestreamsParams extends InfiniteQueryParams {
|
|
14616
14941
|
}
|
|
14617
14942
|
/**
|
|
14618
14943
|
* @category Queries
|
|
14619
|
-
* @group
|
|
14944
|
+
* @group StreamsV2
|
|
14620
14945
|
*/
|
|
14621
|
-
declare const
|
|
14946
|
+
declare const GetLivestreams: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetLivestreamsParams) => Promise<ConnectedXMResponse<Livestream[]>>;
|
|
14622
14947
|
/**
|
|
14623
14948
|
* @category Hooks
|
|
14624
|
-
* @group
|
|
14949
|
+
* @group StreamsV2
|
|
14625
14950
|
*/
|
|
14626
|
-
declare const
|
|
14951
|
+
declare const useGetLivestreams: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetLivestreams>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Livestream[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
14627
14952
|
|
|
14628
14953
|
/**
|
|
14629
14954
|
* @category Keys
|
|
14630
|
-
* @group
|
|
14955
|
+
* @group StreamsV2
|
|
14631
14956
|
*/
|
|
14632
|
-
declare const
|
|
14957
|
+
declare const MEETING_QUERY_KEY: (meetingId: string) => string[];
|
|
14633
14958
|
/**
|
|
14634
14959
|
* @category Setters
|
|
14635
|
-
* @group
|
|
14960
|
+
* @group StreamsV2
|
|
14636
14961
|
*/
|
|
14637
|
-
declare const
|
|
14638
|
-
interface
|
|
14639
|
-
|
|
14640
|
-
status?: SubscriptionStatus;
|
|
14962
|
+
declare const SET_MEETING_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeeting>>) => void;
|
|
14963
|
+
interface GetMeetingParams extends SingleQueryParams {
|
|
14964
|
+
meetingId: string;
|
|
14641
14965
|
}
|
|
14642
14966
|
/**
|
|
14643
14967
|
* @category Queries
|
|
14644
|
-
* @group
|
|
14968
|
+
* @group StreamsV2
|
|
14645
14969
|
*/
|
|
14646
|
-
declare const
|
|
14970
|
+
declare const GetMeeting: ({ meetingId, adminApiParams, }: GetMeetingParams) => Promise<ConnectedXMResponse<Meeting>>;
|
|
14647
14971
|
/**
|
|
14648
14972
|
* @category Hooks
|
|
14649
|
-
* @group
|
|
14973
|
+
* @group StreamsV2
|
|
14650
14974
|
*/
|
|
14651
|
-
declare const
|
|
14975
|
+
declare const useGetMeeting: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeeting>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Meeting>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
14652
14976
|
|
|
14653
14977
|
/**
|
|
14654
14978
|
* @category Keys
|
|
14655
|
-
* @group
|
|
14979
|
+
* @group StreamsV2
|
|
14656
14980
|
*/
|
|
14657
|
-
declare const
|
|
14981
|
+
declare const MEETING_LIVESTREAM_QUERY_KEY: (meetingId: string) => string[];
|
|
14658
14982
|
/**
|
|
14659
14983
|
* @category Setters
|
|
14660
|
-
* @group
|
|
14984
|
+
* @group StreamsV2
|
|
14661
14985
|
*/
|
|
14662
|
-
declare const
|
|
14663
|
-
interface
|
|
14664
|
-
|
|
14986
|
+
declare const SET_MEETING_LIVESTREAM_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_LIVESTREAM_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetingLivestream>>) => void;
|
|
14987
|
+
interface GetMeetingLivestreamParams extends SingleQueryParams {
|
|
14988
|
+
meetingId: string;
|
|
14665
14989
|
}
|
|
14666
14990
|
/**
|
|
14667
14991
|
* @category Queries
|
|
14668
|
-
* @group
|
|
14992
|
+
* @group StreamsV2
|
|
14669
14993
|
*/
|
|
14670
|
-
declare const
|
|
14994
|
+
declare const GetMeetingLivestream: ({ meetingId, adminApiParams, }: GetMeetingLivestreamParams) => Promise<ConnectedXMResponse<Livestream>>;
|
|
14671
14995
|
/**
|
|
14672
14996
|
* @category Hooks
|
|
14673
|
-
* @group
|
|
14997
|
+
* @group StreamsV2
|
|
14674
14998
|
*/
|
|
14675
|
-
declare const
|
|
14999
|
+
declare const useGetMeetingLivestream: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingLivestream>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Livestream>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
14676
15000
|
|
|
14677
15001
|
/**
|
|
14678
15002
|
* @category Keys
|
|
14679
|
-
* @group
|
|
15003
|
+
* @group StreamsV2
|
|
14680
15004
|
*/
|
|
14681
|
-
declare const
|
|
15005
|
+
declare const MEETING_PARTICIPANT_QUERY_KEY: (meetingId: string, participantId: string) => string[];
|
|
14682
15006
|
/**
|
|
14683
15007
|
* @category Setters
|
|
14684
|
-
* @group
|
|
15008
|
+
* @group StreamsV2
|
|
14685
15009
|
*/
|
|
14686
|
-
declare const
|
|
14687
|
-
interface
|
|
15010
|
+
declare const SET_MEETING_PARTICIPANT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_PARTICIPANT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetingParticipant>>) => void;
|
|
15011
|
+
interface GetMeetingParticipantParams extends SingleQueryParams {
|
|
15012
|
+
meetingId: string;
|
|
15013
|
+
participantId: string;
|
|
14688
15014
|
}
|
|
14689
15015
|
/**
|
|
14690
15016
|
* @category Queries
|
|
14691
|
-
* @group
|
|
15017
|
+
* @group StreamsV2
|
|
14692
15018
|
*/
|
|
14693
|
-
declare const
|
|
15019
|
+
declare const GetMeetingParticipant: ({ meetingId, participantId, adminApiParams, }: GetMeetingParticipantParams) => Promise<ConnectedXMResponse<Participant>>;
|
|
14694
15020
|
/**
|
|
14695
15021
|
* @category Hooks
|
|
14696
|
-
* @group
|
|
15022
|
+
* @group StreamsV2
|
|
14697
15023
|
*/
|
|
14698
|
-
declare const
|
|
15024
|
+
declare const useGetMeetingParticipant: (meetingId?: string, participantId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingParticipant>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Participant>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
14699
15025
|
|
|
14700
15026
|
/**
|
|
14701
15027
|
* @category Keys
|
|
14702
|
-
* @group
|
|
15028
|
+
* @group StreamsV2
|
|
14703
15029
|
*/
|
|
14704
|
-
declare const
|
|
15030
|
+
declare const MEETING_PARTICIPANTS_QUERY_KEY: (meetingId: string) => string[];
|
|
14705
15031
|
/**
|
|
14706
15032
|
* @category Setters
|
|
14707
|
-
* @group
|
|
15033
|
+
* @group StreamsV2
|
|
14708
15034
|
*/
|
|
14709
|
-
declare const
|
|
14710
|
-
interface
|
|
15035
|
+
declare const SET_MEETING_PARTICIPANTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_PARTICIPANTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetingParticipants>>) => void;
|
|
15036
|
+
interface GetMeetingParticipantsParams extends InfiniteQueryParams {
|
|
15037
|
+
meetingId: string;
|
|
15038
|
+
}
|
|
15039
|
+
/**
|
|
15040
|
+
* @category Queries
|
|
15041
|
+
* @group StreamsV2
|
|
15042
|
+
*/
|
|
15043
|
+
declare const GetMeetingParticipants: ({ meetingId, pageParam, pageSize, orderBy, adminApiParams, }: GetMeetingParticipantsParams) => Promise<ConnectedXMResponse<Participant[]>>;
|
|
15044
|
+
/**
|
|
15045
|
+
* @category Hooks
|
|
15046
|
+
* @group StreamsV2
|
|
15047
|
+
*/
|
|
15048
|
+
declare const useGetMeetingParticipants: (meetingId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMeetingParticipants>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Participant[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
15049
|
+
|
|
15050
|
+
/**
|
|
15051
|
+
* @category Keys
|
|
15052
|
+
* @group StreamsV2
|
|
15053
|
+
*/
|
|
15054
|
+
declare const MEETINGS_QUERY_KEY: () => string[];
|
|
15055
|
+
/**
|
|
15056
|
+
* @category Setters
|
|
15057
|
+
* @group StreamsV2
|
|
15058
|
+
*/
|
|
15059
|
+
declare const SET_MEETINGS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETINGS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetings>>) => void;
|
|
15060
|
+
interface GetMeetingsParams extends InfiniteQueryParams {
|
|
15061
|
+
}
|
|
15062
|
+
/**
|
|
15063
|
+
* @category Queries
|
|
15064
|
+
* @group StreamsV2
|
|
15065
|
+
*/
|
|
15066
|
+
declare const GetMeetings: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetMeetingsParams) => Promise<ConnectedXMResponse<Meeting[]>>;
|
|
15067
|
+
/**
|
|
15068
|
+
* @category Hooks
|
|
15069
|
+
* @group StreamsV2
|
|
15070
|
+
*/
|
|
15071
|
+
declare const useGetMeetings: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMeetings>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Meeting[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
15072
|
+
|
|
15073
|
+
/**
|
|
15074
|
+
* @category Keys
|
|
15075
|
+
* @group StreamsV2
|
|
15076
|
+
*/
|
|
15077
|
+
declare const PRESET_QUERY_KEY: (presetId: string) => string[];
|
|
15078
|
+
/**
|
|
15079
|
+
* @category Setters
|
|
15080
|
+
* @group StreamsV2
|
|
15081
|
+
*/
|
|
15082
|
+
declare const SET_PRESET_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof PRESET_QUERY_KEY>, response: Awaited<ReturnType<typeof GetPreset>>) => void;
|
|
15083
|
+
interface GetPresetParams extends SingleQueryParams {
|
|
15084
|
+
presetId: string;
|
|
15085
|
+
}
|
|
15086
|
+
/**
|
|
15087
|
+
* @category Queries
|
|
15088
|
+
* @group StreamsV2
|
|
15089
|
+
*/
|
|
15090
|
+
declare const GetPreset: ({ presetId, adminApiParams, }: GetPresetParams) => Promise<ConnectedXMResponse<Preset>>;
|
|
15091
|
+
/**
|
|
15092
|
+
* @category Hooks
|
|
15093
|
+
* @group StreamsV2
|
|
15094
|
+
*/
|
|
15095
|
+
declare const useGetPreset: (presetId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPreset>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Preset>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
15096
|
+
|
|
15097
|
+
/**
|
|
15098
|
+
* @category Keys
|
|
15099
|
+
* @group StreamsV2
|
|
15100
|
+
*/
|
|
15101
|
+
declare const PRESETS_QUERY_KEY: () => string[];
|
|
15102
|
+
/**
|
|
15103
|
+
* @category Setters
|
|
15104
|
+
* @group StreamsV2
|
|
15105
|
+
*/
|
|
15106
|
+
declare const SET_PRESETS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof PRESETS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetPresets>>) => void;
|
|
15107
|
+
interface GetPresetsParams extends InfiniteQueryParams {
|
|
15108
|
+
}
|
|
15109
|
+
/**
|
|
15110
|
+
* @category Queries
|
|
15111
|
+
* @group StreamsV2
|
|
15112
|
+
*/
|
|
15113
|
+
declare const GetPresets: ({ pageParam, pageSize, orderBy, adminApiParams, }: GetPresetsParams) => Promise<ConnectedXMResponse<Preset[]>>;
|
|
15114
|
+
/**
|
|
15115
|
+
* @category Hooks
|
|
15116
|
+
* @group StreamsV2
|
|
15117
|
+
*/
|
|
15118
|
+
declare const useGetPresets: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetPresets>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Preset[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
15119
|
+
|
|
15120
|
+
/**
|
|
15121
|
+
* @category Keys
|
|
15122
|
+
* @group StreamsV2
|
|
15123
|
+
*/
|
|
15124
|
+
declare const MEETING_RECORDING_QUERY_KEY: (recordingId: string) => string[];
|
|
15125
|
+
/**
|
|
15126
|
+
* @category Setters
|
|
15127
|
+
* @group StreamsV2
|
|
15128
|
+
*/
|
|
15129
|
+
declare const SET_MEETING_RECORDING_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_RECORDING_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetingRecording>>) => void;
|
|
15130
|
+
interface GetMeetingRecordingParams extends SingleQueryParams {
|
|
15131
|
+
recordingId: string;
|
|
15132
|
+
}
|
|
15133
|
+
/**
|
|
15134
|
+
* @category Queries
|
|
15135
|
+
* @group StreamsV2
|
|
15136
|
+
*/
|
|
15137
|
+
declare const GetMeetingRecording: ({ recordingId, adminApiParams, }: GetMeetingRecordingParams) => Promise<ConnectedXMResponse<MeetingRecording>>;
|
|
15138
|
+
/**
|
|
15139
|
+
* @category Hooks
|
|
15140
|
+
* @group StreamsV2
|
|
15141
|
+
*/
|
|
15142
|
+
declare const useGetMeetingRecording: (recordingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingRecording>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingRecording>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
15143
|
+
|
|
15144
|
+
/**
|
|
15145
|
+
* @category Keys
|
|
15146
|
+
* @group StreamsV2
|
|
15147
|
+
*/
|
|
15148
|
+
declare const MEETING_RECORDINGS_QUERY_KEY: (meetingId?: string) => string[];
|
|
15149
|
+
/**
|
|
15150
|
+
* @category Setters
|
|
15151
|
+
* @group StreamsV2
|
|
15152
|
+
*/
|
|
15153
|
+
declare const SET_MEETING_RECORDINGS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_RECORDINGS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetingRecordings>>) => void;
|
|
15154
|
+
interface GetMeetingRecordingsParams extends InfiniteQueryParams {
|
|
15155
|
+
meetingId: string;
|
|
15156
|
+
}
|
|
15157
|
+
/**
|
|
15158
|
+
* @category Queries
|
|
15159
|
+
* @group StreamsV2
|
|
15160
|
+
*/
|
|
15161
|
+
declare const GetMeetingRecordings: ({ meetingId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetMeetingRecordingsParams) => Promise<ConnectedXMResponse<MeetingRecording[]>>;
|
|
15162
|
+
/**
|
|
15163
|
+
* @category Hooks
|
|
15164
|
+
* @group StreamsV2
|
|
15165
|
+
*/
|
|
15166
|
+
declare const useGetMeetingRecordings: (meetingId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMeetingRecordings>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<MeetingRecording[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
15167
|
+
|
|
15168
|
+
/**
|
|
15169
|
+
* @category Keys
|
|
15170
|
+
* @group StreamsV2
|
|
15171
|
+
*/
|
|
15172
|
+
declare const MEETING_SESSION_QUERY_KEY: (sessionId: string) => string[];
|
|
15173
|
+
/**
|
|
15174
|
+
* @category Setters
|
|
15175
|
+
* @group StreamsV2
|
|
15176
|
+
*/
|
|
15177
|
+
declare const SET_MEETING_SESSION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_SESSION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetingSession>>) => void;
|
|
15178
|
+
interface GetMeetingSessionParams extends SingleQueryParams {
|
|
15179
|
+
sessionId: string;
|
|
15180
|
+
}
|
|
15181
|
+
/**
|
|
15182
|
+
* @category Queries
|
|
15183
|
+
* @group StreamsV2
|
|
15184
|
+
*/
|
|
15185
|
+
declare const GetMeetingSession: ({ sessionId, adminApiParams, }: GetMeetingSessionParams) => Promise<ConnectedXMResponse<MeetingSession>>;
|
|
15186
|
+
/**
|
|
15187
|
+
* @category Hooks
|
|
15188
|
+
* @group StreamsV2
|
|
15189
|
+
*/
|
|
15190
|
+
declare const useGetMeetingSession: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSession>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSession>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
15191
|
+
|
|
15192
|
+
/**
|
|
15193
|
+
* @category Keys
|
|
15194
|
+
* @group StreamsV2
|
|
15195
|
+
*/
|
|
15196
|
+
declare const MEETING_SESSION_MESSAGES_QUERY_KEY: (sessionId: string) => string[];
|
|
15197
|
+
/**
|
|
15198
|
+
* @category Setters
|
|
15199
|
+
* @group StreamsV2
|
|
15200
|
+
*/
|
|
15201
|
+
declare const SET_MEETING_SESSION_MESSAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_SESSION_MESSAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetingSessionMessages>>) => void;
|
|
15202
|
+
interface GetMeetingSessionMessagesParams extends SingleQueryParams {
|
|
15203
|
+
sessionId: string;
|
|
15204
|
+
}
|
|
15205
|
+
/**
|
|
15206
|
+
* @category Queries
|
|
15207
|
+
* @group StreamsV2
|
|
15208
|
+
*/
|
|
15209
|
+
declare const GetMeetingSessionMessages: ({ sessionId, adminApiParams, }: GetMeetingSessionMessagesParams) => Promise<ConnectedXMResponse<MeetingSessionChatDownload>>;
|
|
15210
|
+
/**
|
|
15211
|
+
* @category Hooks
|
|
15212
|
+
* @group StreamsV2
|
|
15213
|
+
*/
|
|
15214
|
+
declare const useGetMeetingSessionMessages: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionMessages>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSessionChatDownload>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
15215
|
+
|
|
15216
|
+
/**
|
|
15217
|
+
* @category Keys
|
|
15218
|
+
* @group StreamsV2
|
|
15219
|
+
*/
|
|
15220
|
+
declare const MEETING_SESSION_PARTICIPANT_QUERY_KEY: (sessionId: string, participantId: string) => string[];
|
|
15221
|
+
/**
|
|
15222
|
+
* @category Setters
|
|
15223
|
+
* @group StreamsV2
|
|
15224
|
+
*/
|
|
15225
|
+
declare const SET_MEETING_SESSION_PARTICIPANT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_SESSION_PARTICIPANT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetingSessionParticipant>>) => void;
|
|
15226
|
+
interface GetMeetingSessionParticipantParams extends SingleQueryParams {
|
|
15227
|
+
sessionId: string;
|
|
15228
|
+
participantId: string;
|
|
15229
|
+
}
|
|
15230
|
+
/**
|
|
15231
|
+
* @category Queries
|
|
15232
|
+
* @group StreamsV2
|
|
15233
|
+
*/
|
|
15234
|
+
declare const GetMeetingSessionParticipant: ({ sessionId, participantId, adminApiParams, }: GetMeetingSessionParticipantParams) => Promise<ConnectedXMResponse<Participant>>;
|
|
15235
|
+
/**
|
|
15236
|
+
* @category Hooks
|
|
15237
|
+
* @group StreamsV2
|
|
15238
|
+
*/
|
|
15239
|
+
declare const useGetMeetingSessionParticipant: (sessionId?: string, participantId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionParticipant>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Participant>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
15240
|
+
|
|
15241
|
+
/**
|
|
15242
|
+
* @category Keys
|
|
15243
|
+
* @group StreamsV2
|
|
15244
|
+
*/
|
|
15245
|
+
declare const MEETING_SESSION_PARTICIPANTS_QUERY_KEY: (sessionId: string) => string[];
|
|
15246
|
+
/**
|
|
15247
|
+
* @category Setters
|
|
15248
|
+
* @group StreamsV2
|
|
15249
|
+
*/
|
|
15250
|
+
declare const SET_MEETING_SESSION_PARTICIPANTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_SESSION_PARTICIPANTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetingSessionParticipants>>) => void;
|
|
15251
|
+
interface GetMeetingSessionParticipantsParams extends SingleQueryParams {
|
|
15252
|
+
sessionId: string;
|
|
15253
|
+
}
|
|
15254
|
+
/**
|
|
15255
|
+
* @category Queries
|
|
15256
|
+
* @group StreamsV2
|
|
15257
|
+
*/
|
|
15258
|
+
declare const GetMeetingSessionParticipants: ({ sessionId, adminApiParams, }: GetMeetingSessionParticipantsParams) => Promise<ConnectedXMResponse<Participant[]>>;
|
|
15259
|
+
/**
|
|
15260
|
+
* @category Hooks
|
|
15261
|
+
* @group StreamsV2
|
|
15262
|
+
*/
|
|
15263
|
+
declare const useGetMeetingSessionParticipants: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionParticipants>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Participant[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
15264
|
+
|
|
15265
|
+
/**
|
|
15266
|
+
* @category Keys
|
|
15267
|
+
* @group StreamsV2
|
|
15268
|
+
*/
|
|
15269
|
+
declare const MEETING_SESSION_SUMMARY_QUERY_KEY: (sessionId: string) => string[];
|
|
15270
|
+
/**
|
|
15271
|
+
* @category Setters
|
|
15272
|
+
* @group StreamsV2
|
|
15273
|
+
*/
|
|
15274
|
+
declare const SET_MEETING_SESSION_SUMMARY_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_SESSION_SUMMARY_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetingSessionSummary>>) => void;
|
|
15275
|
+
interface GetMeetingSessionSummaryParams extends SingleQueryParams {
|
|
15276
|
+
sessionId: string;
|
|
15277
|
+
}
|
|
15278
|
+
/**
|
|
15279
|
+
* @category Queries
|
|
15280
|
+
* @group StreamsV2
|
|
15281
|
+
*/
|
|
15282
|
+
declare const GetMeetingSessionSummary: ({ sessionId, adminApiParams, }: GetMeetingSessionSummaryParams) => Promise<ConnectedXMResponse<MeetingSessionSummaryDownload>>;
|
|
15283
|
+
/**
|
|
15284
|
+
* @category Hooks
|
|
15285
|
+
* @group StreamsV2
|
|
15286
|
+
*/
|
|
15287
|
+
declare const useGetMeetingSessionSummary: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionSummary>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSessionSummaryDownload>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
15288
|
+
|
|
15289
|
+
/**
|
|
15290
|
+
* @category Keys
|
|
15291
|
+
* @group StreamsV2
|
|
15292
|
+
*/
|
|
15293
|
+
declare const MEETING_SESSION_TRANSCRIPT_QUERY_KEY: (sessionId: string) => string[];
|
|
15294
|
+
/**
|
|
15295
|
+
* @category Setters
|
|
15296
|
+
* @group StreamsV2
|
|
15297
|
+
*/
|
|
15298
|
+
declare const SET_MEETING_SESSION_TRANSCRIPT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_SESSION_TRANSCRIPT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetingSessionTranscript>>) => void;
|
|
15299
|
+
interface GetMeetingSessionTranscriptParams extends SingleQueryParams {
|
|
15300
|
+
sessionId: string;
|
|
15301
|
+
}
|
|
15302
|
+
/**
|
|
15303
|
+
* @category Queries
|
|
15304
|
+
* @group StreamsV2
|
|
15305
|
+
*/
|
|
15306
|
+
declare const GetMeetingSessionTranscript: ({ sessionId, adminApiParams, }: GetMeetingSessionTranscriptParams) => Promise<ConnectedXMResponse<MeetingSessionTranscriptDownload>>;
|
|
15307
|
+
/**
|
|
15308
|
+
* @category Hooks
|
|
15309
|
+
* @group StreamsV2
|
|
15310
|
+
*/
|
|
15311
|
+
declare const useGetMeetingSessionTranscript: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionTranscript>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSessionTranscriptDownload>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
15312
|
+
|
|
15313
|
+
/**
|
|
15314
|
+
* @category Keys
|
|
15315
|
+
* @group StreamsV2
|
|
15316
|
+
*/
|
|
15317
|
+
declare const MEETING_SESSIONS_QUERY_KEY: (meetingId?: string) => string[];
|
|
15318
|
+
/**
|
|
15319
|
+
* @category Setters
|
|
15320
|
+
* @group StreamsV2
|
|
15321
|
+
*/
|
|
15322
|
+
declare const SET_MEETING_SESSIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_SESSIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeetingSessions>>) => void;
|
|
15323
|
+
interface GetMeetingSessionsParams extends InfiniteQueryParams {
|
|
15324
|
+
meetingId?: string;
|
|
15325
|
+
}
|
|
15326
|
+
/**
|
|
15327
|
+
* @category Queries
|
|
15328
|
+
* @group StreamsV2
|
|
15329
|
+
*/
|
|
15330
|
+
declare const GetMeetingSessions: ({ meetingId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetMeetingSessionsParams) => Promise<ConnectedXMResponse<MeetingSession[]>>;
|
|
15331
|
+
/**
|
|
15332
|
+
* @category Hooks
|
|
15333
|
+
* @group StreamsV2
|
|
15334
|
+
*/
|
|
15335
|
+
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>>;
|
|
15336
|
+
|
|
15337
|
+
/**
|
|
15338
|
+
* @category Keys
|
|
15339
|
+
* @group Subscriptions
|
|
15340
|
+
*/
|
|
15341
|
+
declare const MEMBERSHIP_QUERY_KEY: (membershipId: string) => string[];
|
|
15342
|
+
/**
|
|
15343
|
+
* @category Setters
|
|
15344
|
+
* @group Subscriptions
|
|
15345
|
+
*/
|
|
15346
|
+
declare const SET_MEMBERSHIP_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEMBERSHIP_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMembership>>) => void;
|
|
15347
|
+
interface GetMembershipProps extends SingleQueryParams {
|
|
15348
|
+
membershipId: string;
|
|
15349
|
+
}
|
|
15350
|
+
/**
|
|
15351
|
+
* @category Queries
|
|
15352
|
+
* @group Subscriptions
|
|
15353
|
+
*/
|
|
15354
|
+
declare const GetMembership: ({ membershipId, adminApiParams, }: GetMembershipProps) => Promise<ConnectedXMResponse<Membership>>;
|
|
15355
|
+
/**
|
|
15356
|
+
* @category Hooks
|
|
15357
|
+
* @group Subscriptions
|
|
15358
|
+
*/
|
|
15359
|
+
declare const useGetMembership: (membershipId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMembership>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Membership>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
15360
|
+
|
|
15361
|
+
/**
|
|
15362
|
+
* @category Keys
|
|
15363
|
+
* @group Subscriptions
|
|
15364
|
+
*/
|
|
15365
|
+
declare const MEMBERSHIP_PRICE_QUERY_KEY: (membershipId: string, membershipPriceId: string) => string[];
|
|
15366
|
+
/**
|
|
15367
|
+
* @category Setters
|
|
15368
|
+
* @group Subscriptions
|
|
15369
|
+
*/
|
|
15370
|
+
declare const SET_MEMBERSHIP_PRICE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEMBERSHIP_PRICE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMembershipPrice>>) => void;
|
|
15371
|
+
interface GetMembershipPriceProps extends SingleQueryParams {
|
|
15372
|
+
membershipId: string;
|
|
15373
|
+
membershipPriceId: string;
|
|
15374
|
+
}
|
|
15375
|
+
/**
|
|
15376
|
+
* @category Queries
|
|
15377
|
+
* @group Subscriptions
|
|
15378
|
+
*/
|
|
15379
|
+
declare const GetMembershipPrice: ({ membershipId, membershipPriceId, adminApiParams, }: GetMembershipPriceProps) => Promise<ConnectedXMResponse<MembershipPrice>>;
|
|
15380
|
+
/**
|
|
15381
|
+
* @category Hooks
|
|
15382
|
+
* @group Subscriptions
|
|
15383
|
+
*/
|
|
15384
|
+
declare const useGetMembershipPrice: (membershipId?: string, membershipPriceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMembershipPrice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MembershipPrice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
15385
|
+
|
|
15386
|
+
/**
|
|
15387
|
+
* @category Keys
|
|
15388
|
+
* @group Subscriptions
|
|
15389
|
+
*/
|
|
15390
|
+
declare const MEMBERSHIP_PRICES_QUERY_KEY: (membershipId: string) => string[];
|
|
15391
|
+
/**
|
|
15392
|
+
* @category Setters
|
|
15393
|
+
* @group Subscriptions
|
|
15394
|
+
*/
|
|
15395
|
+
declare const SET_MEMBERSHIP_PRICES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEMBERSHIP_PRICES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMembershipPrices>>) => void;
|
|
15396
|
+
interface GetMembershipPricesProps extends InfiniteQueryParams {
|
|
15397
|
+
membershipId: string;
|
|
15398
|
+
}
|
|
15399
|
+
/**
|
|
15400
|
+
* @category Queries
|
|
15401
|
+
* @group Subscriptions
|
|
15402
|
+
*/
|
|
15403
|
+
declare const GetMembershipPrices: ({ pageParam, pageSize, orderBy, search, membershipId, adminApiParams, }: GetMembershipPricesProps) => Promise<ConnectedXMResponse<MembershipPrice[]>>;
|
|
15404
|
+
/**
|
|
15405
|
+
* @category Hooks
|
|
15406
|
+
* @group Subscriptions
|
|
15407
|
+
*/
|
|
15408
|
+
declare const useGetMembershipPrices: (membershipId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMembershipPrices>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<MembershipPrice[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
15409
|
+
|
|
15410
|
+
/**
|
|
15411
|
+
* @category Keys
|
|
15412
|
+
* @group Subscriptions
|
|
15413
|
+
*/
|
|
15414
|
+
declare const MEMBERSHIP_SUBSCRIPTIONS_QUERY_KEY: (membershipId: string, status?: SubscriptionStatus) => string[];
|
|
15415
|
+
/**
|
|
15416
|
+
* @category Setters
|
|
15417
|
+
* @group Subscriptions
|
|
15418
|
+
*/
|
|
15419
|
+
declare const SET_MEMBERSHIP_SUBSCRIPTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEMBERSHIP_SUBSCRIPTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMembershipSubscriptions>>) => void;
|
|
15420
|
+
interface GetMembershipSubscriptionsProps extends InfiniteQueryParams {
|
|
15421
|
+
membershipId: string;
|
|
15422
|
+
status?: SubscriptionStatus;
|
|
15423
|
+
}
|
|
15424
|
+
/**
|
|
15425
|
+
* @category Queries
|
|
15426
|
+
* @group Subscriptions
|
|
15427
|
+
*/
|
|
15428
|
+
declare const GetMembershipSubscriptions: ({ membershipId, status, pageParam, pageSize, orderBy, search, adminApiParams, }: GetMembershipSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
|
|
15429
|
+
/**
|
|
15430
|
+
* @category Hooks
|
|
15431
|
+
* @group Subscriptions
|
|
15432
|
+
*/
|
|
15433
|
+
declare const useGetMembershipSubscriptions: (membershipId: string, status?: SubscriptionStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMembershipSubscriptions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Subscription[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
15434
|
+
|
|
15435
|
+
/**
|
|
15436
|
+
* @category Keys
|
|
15437
|
+
* @group Subscriptions
|
|
15438
|
+
*/
|
|
15439
|
+
declare const MEMBERSHIP_TIERS_QUERY_KEY: (membershipId: string) => string[];
|
|
15440
|
+
/**
|
|
15441
|
+
* @category Setters
|
|
15442
|
+
* @group Subscriptions
|
|
15443
|
+
*/
|
|
15444
|
+
declare const SET_MEMBERSHIP_TIERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEMBERSHIP_TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMembershipTiers>>) => void;
|
|
15445
|
+
interface GetMembershipTiersProps extends InfiniteQueryParams {
|
|
15446
|
+
membershipId: string;
|
|
15447
|
+
}
|
|
15448
|
+
/**
|
|
15449
|
+
* @category Queries
|
|
15450
|
+
* @group Subscriptions
|
|
15451
|
+
*/
|
|
15452
|
+
declare const GetMembershipTiers: ({ pageParam, pageSize, orderBy, search, membershipId, adminApiParams, }: GetMembershipTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
|
|
15453
|
+
/**
|
|
15454
|
+
* @category Hooks
|
|
15455
|
+
* @group Subscriptions
|
|
15456
|
+
*/
|
|
15457
|
+
declare const useGetMembershipTiers: (membershipId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMembershipTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
15458
|
+
|
|
15459
|
+
/**
|
|
15460
|
+
* @category Keys
|
|
15461
|
+
* @group Subscriptions
|
|
15462
|
+
*/
|
|
15463
|
+
declare const MEMBERSHIPS_QUERY_KEY: () => string[];
|
|
15464
|
+
/**
|
|
15465
|
+
* @category Setters
|
|
15466
|
+
* @group Subscriptions
|
|
15467
|
+
*/
|
|
15468
|
+
declare const SET_MEMBERSHIPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEMBERSHIPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMemberships>>) => void;
|
|
15469
|
+
interface GetMembershipsProps extends InfiniteQueryParams {
|
|
15470
|
+
}
|
|
15471
|
+
/**
|
|
15472
|
+
* @category Queries
|
|
15473
|
+
* @group Subscriptions
|
|
15474
|
+
*/
|
|
15475
|
+
declare const GetMemberships: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetMembershipsProps) => Promise<ConnectedXMResponse<Membership[]>>;
|
|
15476
|
+
/**
|
|
15477
|
+
* @category Hooks
|
|
15478
|
+
* @group Subscriptions
|
|
15479
|
+
*/
|
|
15480
|
+
declare const useGetMemberships: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMemberships>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Membership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
15481
|
+
|
|
15482
|
+
/**
|
|
15483
|
+
* @category Keys
|
|
15484
|
+
* @group Subscriptions
|
|
15485
|
+
*/
|
|
15486
|
+
declare const SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => string[];
|
|
15487
|
+
/**
|
|
15488
|
+
* @category Setters
|
|
15489
|
+
* @group Subscriptions
|
|
15490
|
+
*/
|
|
15491
|
+
declare const SET_SUBSCRIPTION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUBSCRIPTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSubscription>>) => void;
|
|
15492
|
+
interface GetSubscriptionProps extends SingleQueryParams {
|
|
14711
15493
|
subscriptionId: string;
|
|
14712
15494
|
}
|
|
14713
15495
|
/**
|
|
@@ -16121,202 +16903,56 @@ interface GetSeriesProps extends SingleQueryParams {
|
|
|
16121
16903
|
declare const GetSeries: ({ seriesId, adminApiParams, }: GetSeriesProps) => Promise<ConnectedXMResponse<Series>>;
|
|
16122
16904
|
/**
|
|
16123
16905
|
* @category Hooks
|
|
16124
|
-
* @group Series
|
|
16125
|
-
*/
|
|
16126
|
-
declare const useGetSeries: (seriesId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeries>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Series>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
16127
|
-
|
|
16128
|
-
/**
|
|
16129
|
-
* @category Keys
|
|
16130
|
-
* @group Series
|
|
16131
|
-
*/
|
|
16132
|
-
declare const SERIES_EVENTS_QUERY_KEY: (seriesId: string) => string[];
|
|
16133
|
-
/**
|
|
16134
|
-
* @category Setters
|
|
16135
|
-
* @group Series
|
|
16136
|
-
*/
|
|
16137
|
-
declare const SET_SERIES_EVENTS_QUERY_DATA: (client: any, keyParams: Parameters<typeof SERIES_EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeriesEvents>>) => void;
|
|
16138
|
-
interface GetSeriesEventsProps extends InfiniteQueryParams {
|
|
16139
|
-
seriesId: string;
|
|
16140
|
-
}
|
|
16141
|
-
/**
|
|
16142
|
-
* @category Queries
|
|
16143
|
-
* @group Series
|
|
16144
|
-
*/
|
|
16145
|
-
declare const GetSeriesEvents: ({ seriesId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetSeriesEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
16146
|
-
/**
|
|
16147
|
-
* @category Hooks
|
|
16148
|
-
* @group Series
|
|
16149
|
-
*/
|
|
16150
|
-
declare const useGetSeriesEvents: (seriesId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesEvents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
16151
|
-
|
|
16152
|
-
/**
|
|
16153
|
-
* @category Keys
|
|
16154
|
-
* @group Series
|
|
16155
|
-
*/
|
|
16156
|
-
declare const SERIES_LIST_QUERY_KEY: () => string[];
|
|
16157
|
-
/**
|
|
16158
|
-
* @category Setters
|
|
16159
|
-
* @group Series
|
|
16160
|
-
*/
|
|
16161
|
-
declare const SET_SERIES_LIST_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_LIST_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeriesList>>) => void;
|
|
16162
|
-
interface GetSeriesListProps extends InfiniteQueryParams {
|
|
16163
|
-
}
|
|
16164
|
-
/**
|
|
16165
|
-
* @category Queries
|
|
16166
|
-
* @group Series
|
|
16167
|
-
*/
|
|
16168
|
-
declare const GetSeriesList: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetSeriesListProps) => Promise<ConnectedXMResponse<Series[]>>;
|
|
16169
|
-
/**
|
|
16170
|
-
* @category Hooks
|
|
16171
|
-
* @group Series
|
|
16172
|
-
*/
|
|
16173
|
-
declare const useGetSeriesList: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesList>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Series[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
16174
|
-
|
|
16175
|
-
/**
|
|
16176
|
-
* @category Keys
|
|
16177
|
-
* @group Streams
|
|
16178
|
-
*/
|
|
16179
|
-
declare const STREAM_QUERY_KEY: (streamId: string) => string[];
|
|
16180
|
-
/**
|
|
16181
|
-
* @category Setters
|
|
16182
|
-
* @group Streams
|
|
16183
|
-
*/
|
|
16184
|
-
declare const SET_STREAM_INPUT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof STREAM_QUERY_KEY>, response: Awaited<ReturnType<typeof GetStreamInput>>) => void;
|
|
16185
|
-
interface GetStreamInputParams extends SingleQueryParams {
|
|
16186
|
-
streamId: string;
|
|
16187
|
-
}
|
|
16188
|
-
/**
|
|
16189
|
-
* @category Queries
|
|
16190
|
-
* @group Streams
|
|
16191
|
-
*/
|
|
16192
|
-
declare const GetStreamInput: ({ streamId, adminApiParams, }: GetStreamInputParams) => Promise<ConnectedXMResponse<StreamInput>>;
|
|
16193
|
-
/**
|
|
16194
|
-
* @category Hooks
|
|
16195
|
-
* @group Streams
|
|
16196
|
-
*/
|
|
16197
|
-
declare const useGetStreamInput: (streamId?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamInput>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StreamInput>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
16198
|
-
|
|
16199
|
-
/**
|
|
16200
|
-
* @category Keys
|
|
16201
|
-
* @group Streams
|
|
16202
|
-
*/
|
|
16203
|
-
declare const STREAM_INPUT_OUTPUT_QUERY_KEY: (streamId: string, output: string) => string[];
|
|
16204
|
-
/**
|
|
16205
|
-
* @category Setters
|
|
16206
|
-
* @group Streams
|
|
16207
|
-
*/
|
|
16208
|
-
declare const SET_STREAM_INPUT_OUTPUT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof STREAM_INPUT_OUTPUT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetStreamInputOutput>>) => void;
|
|
16209
|
-
interface GetStreamInputOutputParams extends SingleQueryParams {
|
|
16210
|
-
streamId: string;
|
|
16211
|
-
output: string;
|
|
16212
|
-
}
|
|
16213
|
-
/**
|
|
16214
|
-
* @category Queries
|
|
16215
|
-
* @group Streams
|
|
16216
|
-
*/
|
|
16217
|
-
declare const GetStreamInputOutput: ({ streamId, output, adminApiParams, }: GetStreamInputOutputParams) => Promise<ConnectedXMResponse<StreamInputOutput>>;
|
|
16218
|
-
/**
|
|
16219
|
-
* @category Hooks
|
|
16220
|
-
* @group Streams
|
|
16221
|
-
*/
|
|
16222
|
-
declare const useGetStreamInputOutput: (streamId?: string, output?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamInputOutput>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StreamInputOutput>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
16223
|
-
|
|
16224
|
-
/**
|
|
16225
|
-
* @category Keys
|
|
16226
|
-
* @group Streams
|
|
16227
|
-
*/
|
|
16228
|
-
declare const STREAM_INPUT_OUTPUTS_QUERY_KEY: (streamId: string) => string[];
|
|
16229
|
-
/**
|
|
16230
|
-
* @category Setters
|
|
16231
|
-
* @group Streams
|
|
16232
|
-
*/
|
|
16233
|
-
declare const SET_STREAM_INPUT_OUTPUTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof STREAM_INPUT_OUTPUTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetStreamInputOutputs>>) => void;
|
|
16234
|
-
interface GetStreamInputOutputsParams extends InfiniteQueryParams {
|
|
16235
|
-
streamId: string;
|
|
16236
|
-
}
|
|
16237
|
-
/**
|
|
16238
|
-
* @category Queries
|
|
16239
|
-
* @group Streams
|
|
16240
|
-
*/
|
|
16241
|
-
declare const GetStreamInputOutputs: ({ streamId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetStreamInputOutputsParams) => Promise<ConnectedXMResponse<StreamInputOutput[]>>;
|
|
16242
|
-
/**
|
|
16243
|
-
* @category Hooks
|
|
16244
|
-
* @group Streams
|
|
16245
|
-
*/
|
|
16246
|
-
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>>;
|
|
16247
|
-
|
|
16248
|
-
/**
|
|
16249
|
-
* @category Keys
|
|
16250
|
-
* @group Streams
|
|
16251
|
-
*/
|
|
16252
|
-
declare const STREAM_INPUTS_QUERY_KEY: (eventId?: string, sessionId?: string) => string[];
|
|
16253
|
-
/**
|
|
16254
|
-
* @category Setters
|
|
16255
|
-
* @group Streams
|
|
16256
|
-
*/
|
|
16257
|
-
declare const SET_STREAM_INPUTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof STREAM_INPUTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetStreamInputs>>) => void;
|
|
16258
|
-
interface GetStreamInputsParams extends InfiniteQueryParams {
|
|
16259
|
-
eventId?: string;
|
|
16260
|
-
sessionId?: string;
|
|
16261
|
-
}
|
|
16262
|
-
/**
|
|
16263
|
-
* @category Queries
|
|
16264
|
-
* @group Streams
|
|
16265
|
-
*/
|
|
16266
|
-
declare const GetStreamInputs: ({ eventId, sessionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetStreamInputsParams) => Promise<ConnectedXMResponse<StreamInput[]>>;
|
|
16267
|
-
/**
|
|
16268
|
-
* @category Hooks
|
|
16269
|
-
* @group Streams
|
|
16906
|
+
* @group Series
|
|
16270
16907
|
*/
|
|
16271
|
-
declare const
|
|
16908
|
+
declare const useGetSeries: (seriesId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeries>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Series>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
16272
16909
|
|
|
16273
16910
|
/**
|
|
16274
16911
|
* @category Keys
|
|
16275
|
-
* @group
|
|
16912
|
+
* @group Series
|
|
16276
16913
|
*/
|
|
16277
|
-
declare const
|
|
16914
|
+
declare const SERIES_EVENTS_QUERY_KEY: (seriesId: string) => string[];
|
|
16278
16915
|
/**
|
|
16279
16916
|
* @category Setters
|
|
16280
|
-
* @group
|
|
16917
|
+
* @group Series
|
|
16281
16918
|
*/
|
|
16282
|
-
declare const
|
|
16283
|
-
interface
|
|
16284
|
-
|
|
16919
|
+
declare const SET_SERIES_EVENTS_QUERY_DATA: (client: any, keyParams: Parameters<typeof SERIES_EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeriesEvents>>) => void;
|
|
16920
|
+
interface GetSeriesEventsProps extends InfiniteQueryParams {
|
|
16921
|
+
seriesId: string;
|
|
16285
16922
|
}
|
|
16286
16923
|
/**
|
|
16287
16924
|
* @category Queries
|
|
16288
|
-
* @group
|
|
16925
|
+
* @group Series
|
|
16289
16926
|
*/
|
|
16290
|
-
declare const
|
|
16927
|
+
declare const GetSeriesEvents: ({ seriesId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetSeriesEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
16291
16928
|
/**
|
|
16292
16929
|
* @category Hooks
|
|
16293
|
-
* @group
|
|
16930
|
+
* @group Series
|
|
16294
16931
|
*/
|
|
16295
|
-
declare const
|
|
16932
|
+
declare const useGetSeriesEvents: (seriesId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesEvents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
16296
16933
|
|
|
16297
16934
|
/**
|
|
16298
16935
|
* @category Keys
|
|
16299
|
-
* @group
|
|
16936
|
+
* @group Series
|
|
16300
16937
|
*/
|
|
16301
|
-
declare const
|
|
16938
|
+
declare const SERIES_LIST_QUERY_KEY: () => string[];
|
|
16302
16939
|
/**
|
|
16303
16940
|
* @category Setters
|
|
16304
|
-
* @group
|
|
16941
|
+
* @group Series
|
|
16305
16942
|
*/
|
|
16306
|
-
declare const
|
|
16307
|
-
interface
|
|
16308
|
-
streamId: string;
|
|
16943
|
+
declare const SET_SERIES_LIST_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_LIST_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeriesList>>) => void;
|
|
16944
|
+
interface GetSeriesListProps extends InfiniteQueryParams {
|
|
16309
16945
|
}
|
|
16310
16946
|
/**
|
|
16311
16947
|
* @category Queries
|
|
16312
|
-
* @group
|
|
16948
|
+
* @group Series
|
|
16313
16949
|
*/
|
|
16314
|
-
declare const
|
|
16950
|
+
declare const GetSeriesList: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetSeriesListProps) => Promise<ConnectedXMResponse<Series[]>>;
|
|
16315
16951
|
/**
|
|
16316
16952
|
* @category Hooks
|
|
16317
|
-
* @group
|
|
16953
|
+
* @group Series
|
|
16318
16954
|
*/
|
|
16319
|
-
declare const
|
|
16955
|
+
declare const useGetSeriesList: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesList>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Series[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
16320
16956
|
|
|
16321
16957
|
/**
|
|
16322
16958
|
* @category Keys
|
|
@@ -22665,124 +23301,6 @@ declare const UpdateEventQuestionChoiceSubQuestion: ({ eventId, questionId, choi
|
|
|
22665
23301
|
*/
|
|
22666
23302
|
declare const useUpdateEventQuestionChoiceSubQuestion: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventQuestionChoiceSubQuestion>>, Omit<UpdateEventQuestionChoiceSubQuestionParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestionChoice>, axios.AxiosError<ConnectedXMResponse<RegistrationQuestionChoice>, any>, Omit<UpdateEventQuestionChoiceSubQuestionParams, "queryClient" | "adminApiParams">, unknown>;
|
|
22667
23303
|
|
|
22668
|
-
/**
|
|
22669
|
-
* @category Params
|
|
22670
|
-
* @group Event-Rooms
|
|
22671
|
-
*/
|
|
22672
|
-
interface AddRoomToRoomTypeParams extends MutationParams {
|
|
22673
|
-
eventId: string;
|
|
22674
|
-
roomTypeId: string;
|
|
22675
|
-
roomId: string;
|
|
22676
|
-
}
|
|
22677
|
-
/**
|
|
22678
|
-
* @category Methods
|
|
22679
|
-
* @group Event-Rooms
|
|
22680
|
-
*/
|
|
22681
|
-
declare const AddRoomToRoomType: ({ eventId, roomTypeId, roomId, adminApiParams, queryClient, }: AddRoomToRoomTypeParams) => Promise<ConnectedXMResponse<EventRoomType>>;
|
|
22682
|
-
/**
|
|
22683
|
-
* @category Mutations
|
|
22684
|
-
* @group Event-Rooms
|
|
22685
|
-
*/
|
|
22686
|
-
declare const useAddRoomToRoomType: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof AddRoomToRoomType>>, Omit<AddRoomToRoomTypeParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventRoomType>, axios.AxiosError<ConnectedXMResponse<EventRoomType>, any>, Omit<AddRoomToRoomTypeParams, "queryClient" | "adminApiParams">, unknown>;
|
|
22687
|
-
|
|
22688
|
-
/**
|
|
22689
|
-
* @category Params
|
|
22690
|
-
* @group Event-Rooms
|
|
22691
|
-
*/
|
|
22692
|
-
interface ImportRoomsParams extends MutationParams {
|
|
22693
|
-
eventId: string;
|
|
22694
|
-
roomNames: string[];
|
|
22695
|
-
roomTypeId?: string;
|
|
22696
|
-
}
|
|
22697
|
-
/**
|
|
22698
|
-
* @category Methods
|
|
22699
|
-
* @group Event-Rooms
|
|
22700
|
-
*/
|
|
22701
|
-
declare const ImportRooms: ({ eventId, roomNames, roomTypeId, adminApiParams, queryClient, }: ImportRoomsParams) => Promise<ConnectedXMResponse<Room[]>>;
|
|
22702
|
-
/**
|
|
22703
|
-
* @category Mutations
|
|
22704
|
-
* @group Event-Rooms
|
|
22705
|
-
*/
|
|
22706
|
-
declare const useImportRooms: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof ImportRooms>>, Omit<ImportRoomsParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Room[]>, axios.AxiosError<ConnectedXMResponse<Room[]>, any>, Omit<ImportRoomsParams, "queryClient" | "adminApiParams">, unknown>;
|
|
22707
|
-
|
|
22708
|
-
/**
|
|
22709
|
-
* @category Params
|
|
22710
|
-
* @group Event-Rooms
|
|
22711
|
-
*/
|
|
22712
|
-
interface CreateRoomParams extends MutationParams {
|
|
22713
|
-
eventId: string;
|
|
22714
|
-
room: RoomCreateInputs;
|
|
22715
|
-
}
|
|
22716
|
-
/**
|
|
22717
|
-
* @category Methods
|
|
22718
|
-
* @group Event-Rooms
|
|
22719
|
-
*/
|
|
22720
|
-
declare const CreateRoom: ({ eventId, room, adminApiParams, queryClient, }: CreateRoomParams) => Promise<ConnectedXMResponse<Room>>;
|
|
22721
|
-
/**
|
|
22722
|
-
* @category Mutations
|
|
22723
|
-
* @group Event-Rooms
|
|
22724
|
-
*/
|
|
22725
|
-
declare const useCreateRoom: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateRoom>>, Omit<CreateRoomParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Room>, axios.AxiosError<ConnectedXMResponse<Room>, any>, Omit<CreateRoomParams, "queryClient" | "adminApiParams">, unknown>;
|
|
22726
|
-
|
|
22727
|
-
/**
|
|
22728
|
-
* @category Params
|
|
22729
|
-
* @group Event-Rooms
|
|
22730
|
-
*/
|
|
22731
|
-
interface DeleteRoomParams extends MutationParams {
|
|
22732
|
-
eventId: string;
|
|
22733
|
-
roomId: string;
|
|
22734
|
-
}
|
|
22735
|
-
/**
|
|
22736
|
-
* @category Methods
|
|
22737
|
-
* @group Event-Rooms
|
|
22738
|
-
*/
|
|
22739
|
-
declare const DeleteRoom: ({ eventId, roomId, adminApiParams, queryClient, }: DeleteRoomParams) => Promise<ConnectedXMResponse<null>>;
|
|
22740
|
-
/**
|
|
22741
|
-
* @category Mutations
|
|
22742
|
-
* @group Event-Rooms
|
|
22743
|
-
*/
|
|
22744
|
-
declare const useDeleteRoom: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteRoom>>, Omit<DeleteRoomParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteRoomParams, "queryClient" | "adminApiParams">, unknown>;
|
|
22745
|
-
|
|
22746
|
-
/**
|
|
22747
|
-
* @category Params
|
|
22748
|
-
* @group Event-Rooms
|
|
22749
|
-
*/
|
|
22750
|
-
interface RemoveRoomFromRoomTypeParams extends MutationParams {
|
|
22751
|
-
eventId: string;
|
|
22752
|
-
roomTypeId: string;
|
|
22753
|
-
roomId: string;
|
|
22754
|
-
}
|
|
22755
|
-
/**
|
|
22756
|
-
* @category Methods
|
|
22757
|
-
* @group Event-Rooms
|
|
22758
|
-
*/
|
|
22759
|
-
declare const RemoveRoomFromRoomType: ({ eventId, roomTypeId, roomId, adminApiParams, queryClient, }: RemoveRoomFromRoomTypeParams) => Promise<ConnectedXMResponse<EventRoomType>>;
|
|
22760
|
-
/**
|
|
22761
|
-
* @category Mutations
|
|
22762
|
-
* @group Event-Rooms
|
|
22763
|
-
*/
|
|
22764
|
-
declare const useRemoveRoomFromRoomType: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof RemoveRoomFromRoomType>>, Omit<RemoveRoomFromRoomTypeParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventRoomType>, axios.AxiosError<ConnectedXMResponse<EventRoomType>, any>, Omit<RemoveRoomFromRoomTypeParams, "queryClient" | "adminApiParams">, unknown>;
|
|
22765
|
-
|
|
22766
|
-
/**
|
|
22767
|
-
* @category Params
|
|
22768
|
-
* @group Event-Rooms
|
|
22769
|
-
*/
|
|
22770
|
-
interface UpdateRoomParams extends MutationParams {
|
|
22771
|
-
eventId: string;
|
|
22772
|
-
roomId: string;
|
|
22773
|
-
room: RoomUpdateInputs;
|
|
22774
|
-
}
|
|
22775
|
-
/**
|
|
22776
|
-
* @category Methods
|
|
22777
|
-
* @group Event-Rooms
|
|
22778
|
-
*/
|
|
22779
|
-
declare const UpdateRoom: ({ eventId, roomId, room, adminApiParams, queryClient, }: UpdateRoomParams) => Promise<ConnectedXMResponse<Room>>;
|
|
22780
|
-
/**
|
|
22781
|
-
* @category Mutations
|
|
22782
|
-
* @group Event-Rooms
|
|
22783
|
-
*/
|
|
22784
|
-
declare const useUpdateRoom: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateRoom>>, Omit<UpdateRoomParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Room>, axios.AxiosError<ConnectedXMResponse<Room>, any>, Omit<UpdateRoomParams, "queryClient" | "adminApiParams">, unknown>;
|
|
22785
|
-
|
|
22786
23304
|
/**
|
|
22787
23305
|
* @category Params
|
|
22788
23306
|
* @group Event-Reservations-Translations
|
|
@@ -22985,7 +23503,125 @@ declare const UpdateEventRoomTypePassTypeDetails: ({ eventId, roomTypeId, passTy
|
|
|
22985
23503
|
* @category Mutations
|
|
22986
23504
|
* @group Event-Reservations
|
|
22987
23505
|
*/
|
|
22988
|
-
declare const useUpdateEventRoomTypePassTypeDetails: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventRoomTypePassTypeDetails>>, Omit<UpdateEventRoomTypePassTypeDetailsParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventRoomType>, axios.AxiosError<ConnectedXMResponse<EventRoomType>, any>, Omit<UpdateEventRoomTypePassTypeDetailsParams, "queryClient" | "adminApiParams">, unknown>;
|
|
23506
|
+
declare const useUpdateEventRoomTypePassTypeDetails: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventRoomTypePassTypeDetails>>, Omit<UpdateEventRoomTypePassTypeDetailsParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventRoomType>, axios.AxiosError<ConnectedXMResponse<EventRoomType>, any>, Omit<UpdateEventRoomTypePassTypeDetailsParams, "queryClient" | "adminApiParams">, unknown>;
|
|
23507
|
+
|
|
23508
|
+
/**
|
|
23509
|
+
* @category Params
|
|
23510
|
+
* @group Event-Rooms
|
|
23511
|
+
*/
|
|
23512
|
+
interface AddRoomToRoomTypeParams extends MutationParams {
|
|
23513
|
+
eventId: string;
|
|
23514
|
+
roomTypeId: string;
|
|
23515
|
+
roomId: string;
|
|
23516
|
+
}
|
|
23517
|
+
/**
|
|
23518
|
+
* @category Methods
|
|
23519
|
+
* @group Event-Rooms
|
|
23520
|
+
*/
|
|
23521
|
+
declare const AddRoomToRoomType: ({ eventId, roomTypeId, roomId, adminApiParams, queryClient, }: AddRoomToRoomTypeParams) => Promise<ConnectedXMResponse<EventRoomType>>;
|
|
23522
|
+
/**
|
|
23523
|
+
* @category Mutations
|
|
23524
|
+
* @group Event-Rooms
|
|
23525
|
+
*/
|
|
23526
|
+
declare const useAddRoomToRoomType: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof AddRoomToRoomType>>, Omit<AddRoomToRoomTypeParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventRoomType>, axios.AxiosError<ConnectedXMResponse<EventRoomType>, any>, Omit<AddRoomToRoomTypeParams, "queryClient" | "adminApiParams">, unknown>;
|
|
23527
|
+
|
|
23528
|
+
/**
|
|
23529
|
+
* @category Params
|
|
23530
|
+
* @group Event-Rooms
|
|
23531
|
+
*/
|
|
23532
|
+
interface CreateRoomParams extends MutationParams {
|
|
23533
|
+
eventId: string;
|
|
23534
|
+
room: RoomCreateInputs;
|
|
23535
|
+
}
|
|
23536
|
+
/**
|
|
23537
|
+
* @category Methods
|
|
23538
|
+
* @group Event-Rooms
|
|
23539
|
+
*/
|
|
23540
|
+
declare const CreateRoom: ({ eventId, room, adminApiParams, queryClient, }: CreateRoomParams) => Promise<ConnectedXMResponse<Room>>;
|
|
23541
|
+
/**
|
|
23542
|
+
* @category Mutations
|
|
23543
|
+
* @group Event-Rooms
|
|
23544
|
+
*/
|
|
23545
|
+
declare const useCreateRoom: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateRoom>>, Omit<CreateRoomParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Room>, axios.AxiosError<ConnectedXMResponse<Room>, any>, Omit<CreateRoomParams, "queryClient" | "adminApiParams">, unknown>;
|
|
23546
|
+
|
|
23547
|
+
/**
|
|
23548
|
+
* @category Params
|
|
23549
|
+
* @group Event-Rooms
|
|
23550
|
+
*/
|
|
23551
|
+
interface DeleteRoomParams extends MutationParams {
|
|
23552
|
+
eventId: string;
|
|
23553
|
+
roomId: string;
|
|
23554
|
+
}
|
|
23555
|
+
/**
|
|
23556
|
+
* @category Methods
|
|
23557
|
+
* @group Event-Rooms
|
|
23558
|
+
*/
|
|
23559
|
+
declare const DeleteRoom: ({ eventId, roomId, adminApiParams, queryClient, }: DeleteRoomParams) => Promise<ConnectedXMResponse<null>>;
|
|
23560
|
+
/**
|
|
23561
|
+
* @category Mutations
|
|
23562
|
+
* @group Event-Rooms
|
|
23563
|
+
*/
|
|
23564
|
+
declare const useDeleteRoom: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteRoom>>, Omit<DeleteRoomParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteRoomParams, "queryClient" | "adminApiParams">, unknown>;
|
|
23565
|
+
|
|
23566
|
+
/**
|
|
23567
|
+
* @category Params
|
|
23568
|
+
* @group Event-Rooms
|
|
23569
|
+
*/
|
|
23570
|
+
interface ImportRoomsParams extends MutationParams {
|
|
23571
|
+
eventId: string;
|
|
23572
|
+
roomNames: string[];
|
|
23573
|
+
roomTypeId?: string;
|
|
23574
|
+
}
|
|
23575
|
+
/**
|
|
23576
|
+
* @category Methods
|
|
23577
|
+
* @group Event-Rooms
|
|
23578
|
+
*/
|
|
23579
|
+
declare const ImportRooms: ({ eventId, roomNames, roomTypeId, adminApiParams, queryClient, }: ImportRoomsParams) => Promise<ConnectedXMResponse<Room[]>>;
|
|
23580
|
+
/**
|
|
23581
|
+
* @category Mutations
|
|
23582
|
+
* @group Event-Rooms
|
|
23583
|
+
*/
|
|
23584
|
+
declare const useImportRooms: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof ImportRooms>>, Omit<ImportRoomsParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Room[]>, axios.AxiosError<ConnectedXMResponse<Room[]>, any>, Omit<ImportRoomsParams, "queryClient" | "adminApiParams">, unknown>;
|
|
23585
|
+
|
|
23586
|
+
/**
|
|
23587
|
+
* @category Params
|
|
23588
|
+
* @group Event-Rooms
|
|
23589
|
+
*/
|
|
23590
|
+
interface RemoveRoomFromRoomTypeParams extends MutationParams {
|
|
23591
|
+
eventId: string;
|
|
23592
|
+
roomTypeId: string;
|
|
23593
|
+
roomId: string;
|
|
23594
|
+
}
|
|
23595
|
+
/**
|
|
23596
|
+
* @category Methods
|
|
23597
|
+
* @group Event-Rooms
|
|
23598
|
+
*/
|
|
23599
|
+
declare const RemoveRoomFromRoomType: ({ eventId, roomTypeId, roomId, adminApiParams, queryClient, }: RemoveRoomFromRoomTypeParams) => Promise<ConnectedXMResponse<EventRoomType>>;
|
|
23600
|
+
/**
|
|
23601
|
+
* @category Mutations
|
|
23602
|
+
* @group Event-Rooms
|
|
23603
|
+
*/
|
|
23604
|
+
declare const useRemoveRoomFromRoomType: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof RemoveRoomFromRoomType>>, Omit<RemoveRoomFromRoomTypeParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventRoomType>, axios.AxiosError<ConnectedXMResponse<EventRoomType>, any>, Omit<RemoveRoomFromRoomTypeParams, "queryClient" | "adminApiParams">, unknown>;
|
|
23605
|
+
|
|
23606
|
+
/**
|
|
23607
|
+
* @category Params
|
|
23608
|
+
* @group Event-Rooms
|
|
23609
|
+
*/
|
|
23610
|
+
interface UpdateRoomParams extends MutationParams {
|
|
23611
|
+
eventId: string;
|
|
23612
|
+
roomId: string;
|
|
23613
|
+
room: RoomUpdateInputs;
|
|
23614
|
+
}
|
|
23615
|
+
/**
|
|
23616
|
+
* @category Methods
|
|
23617
|
+
* @group Event-Rooms
|
|
23618
|
+
*/
|
|
23619
|
+
declare const UpdateRoom: ({ eventId, roomId, room, adminApiParams, queryClient, }: UpdateRoomParams) => Promise<ConnectedXMResponse<Room>>;
|
|
23620
|
+
/**
|
|
23621
|
+
* @category Mutations
|
|
23622
|
+
* @group Event-Rooms
|
|
23623
|
+
*/
|
|
23624
|
+
declare const useUpdateRoom: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateRoom>>, Omit<UpdateRoomParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Room>, axios.AxiosError<ConnectedXMResponse<Room>, any>, Omit<UpdateRoomParams, "queryClient" | "adminApiParams">, unknown>;
|
|
22989
23625
|
|
|
22990
23626
|
/**
|
|
22991
23627
|
* @category Params
|
|
@@ -26499,6 +27135,265 @@ declare const UpdateLoginPassword: ({ username, password, adminApiParams, queryC
|
|
|
26499
27135
|
*/
|
|
26500
27136
|
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>;
|
|
26501
27137
|
|
|
27138
|
+
/**
|
|
27139
|
+
* @category Params
|
|
27140
|
+
* @group StreamsV2
|
|
27141
|
+
*/
|
|
27142
|
+
interface DisableLivestreamParams extends MutationParams {
|
|
27143
|
+
livestreamId: string;
|
|
27144
|
+
}
|
|
27145
|
+
/**
|
|
27146
|
+
* @category Methods
|
|
27147
|
+
* @group StreamsV2
|
|
27148
|
+
*/
|
|
27149
|
+
declare const DisableLivestream: ({ livestreamId, adminApiParams, queryClient, }: DisableLivestreamParams) => Promise<ConnectedXMResponse<Livestream>>;
|
|
27150
|
+
/**
|
|
27151
|
+
* @category Mutations
|
|
27152
|
+
* @group StreamsV2
|
|
27153
|
+
*/
|
|
27154
|
+
declare const useDisableLivestream: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DisableLivestream>>, Omit<DisableLivestreamParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Livestream>, axios.AxiosError<ConnectedXMResponse<Livestream>, any>, Omit<DisableLivestreamParams, "queryClient" | "adminApiParams">, unknown>;
|
|
27155
|
+
|
|
27156
|
+
/**
|
|
27157
|
+
* @category Params
|
|
27158
|
+
* @group StreamsV2
|
|
27159
|
+
*/
|
|
27160
|
+
interface EnableLivestreamParams extends MutationParams {
|
|
27161
|
+
livestreamId: string;
|
|
27162
|
+
}
|
|
27163
|
+
/**
|
|
27164
|
+
* @category Methods
|
|
27165
|
+
* @group StreamsV2
|
|
27166
|
+
*/
|
|
27167
|
+
declare const EnableLivestream: ({ livestreamId, adminApiParams, queryClient, }: EnableLivestreamParams) => Promise<ConnectedXMResponse<Livestream>>;
|
|
27168
|
+
/**
|
|
27169
|
+
* @category Mutations
|
|
27170
|
+
* @group StreamsV2
|
|
27171
|
+
*/
|
|
27172
|
+
declare const useEnableLivestream: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof EnableLivestream>>, Omit<EnableLivestreamParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Livestream>, axios.AxiosError<ConnectedXMResponse<Livestream>, any>, Omit<EnableLivestreamParams, "queryClient" | "adminApiParams">, unknown>;
|
|
27173
|
+
|
|
27174
|
+
/**
|
|
27175
|
+
* @category Params
|
|
27176
|
+
* @group StreamsV2
|
|
27177
|
+
*/
|
|
27178
|
+
interface ResetLivestreamStreamKeyParams extends MutationParams {
|
|
27179
|
+
livestreamId: string;
|
|
27180
|
+
}
|
|
27181
|
+
/**
|
|
27182
|
+
* @category Methods
|
|
27183
|
+
* @group StreamsV2
|
|
27184
|
+
*/
|
|
27185
|
+
declare const ResetLivestreamStreamKey: ({ livestreamId, adminApiParams, queryClient, }: ResetLivestreamStreamKeyParams) => Promise<ConnectedXMResponse<Livestream>>;
|
|
27186
|
+
/**
|
|
27187
|
+
* @category Mutations
|
|
27188
|
+
* @group StreamsV2
|
|
27189
|
+
*/
|
|
27190
|
+
declare const useResetLivestreamStreamKey: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof ResetLivestreamStreamKey>>, Omit<ResetLivestreamStreamKeyParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Livestream>, axios.AxiosError<ConnectedXMResponse<Livestream>, any>, Omit<ResetLivestreamStreamKeyParams, "queryClient" | "adminApiParams">, unknown>;
|
|
27191
|
+
|
|
27192
|
+
/**
|
|
27193
|
+
* @category Params
|
|
27194
|
+
* @group StreamsV2
|
|
27195
|
+
*/
|
|
27196
|
+
interface AddMeetingLivestreamParams extends MutationParams {
|
|
27197
|
+
meetingId: string;
|
|
27198
|
+
}
|
|
27199
|
+
/**
|
|
27200
|
+
* @category Methods
|
|
27201
|
+
* @group StreamsV2
|
|
27202
|
+
*/
|
|
27203
|
+
declare const AddMeetingLivestream: ({ meetingId, adminApiParams, queryClient, }: AddMeetingLivestreamParams) => Promise<ConnectedXMResponse<Livestream>>;
|
|
27204
|
+
/**
|
|
27205
|
+
* @category Mutations
|
|
27206
|
+
* @group StreamsV2
|
|
27207
|
+
*/
|
|
27208
|
+
declare const useAddMeetingLivestream: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof AddMeetingLivestream>>, Omit<AddMeetingLivestreamParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Livestream>, axios.AxiosError<ConnectedXMResponse<Livestream>, any>, Omit<AddMeetingLivestreamParams, "queryClient" | "adminApiParams">, unknown>;
|
|
27209
|
+
|
|
27210
|
+
/**
|
|
27211
|
+
* @category Params
|
|
27212
|
+
* @group StreamsV2
|
|
27213
|
+
*/
|
|
27214
|
+
interface CreateMeetingParams extends MutationParams {
|
|
27215
|
+
meeting: MeetingCreateInputs;
|
|
27216
|
+
}
|
|
27217
|
+
/**
|
|
27218
|
+
* @category Methods
|
|
27219
|
+
* @group StreamsV2
|
|
27220
|
+
*/
|
|
27221
|
+
declare const CreateMeeting: ({ meeting, adminApiParams, queryClient, }: CreateMeetingParams) => Promise<ConnectedXMResponse<Meeting>>;
|
|
27222
|
+
/**
|
|
27223
|
+
* @category Mutations
|
|
27224
|
+
* @group StreamsV2
|
|
27225
|
+
*/
|
|
27226
|
+
declare const useCreateMeeting: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateMeeting>>, Omit<CreateMeetingParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Meeting>, axios.AxiosError<ConnectedXMResponse<Meeting>, any>, Omit<CreateMeetingParams, "queryClient" | "adminApiParams">, unknown>;
|
|
27227
|
+
|
|
27228
|
+
/**
|
|
27229
|
+
* @category Params
|
|
27230
|
+
* @group StreamsV2
|
|
27231
|
+
*/
|
|
27232
|
+
interface CreateMeetingParticipantParams extends MutationParams {
|
|
27233
|
+
meetingId: string;
|
|
27234
|
+
participant: MeetingParticipantCreateInputs;
|
|
27235
|
+
}
|
|
27236
|
+
/**
|
|
27237
|
+
* @category Methods
|
|
27238
|
+
* @group StreamsV2
|
|
27239
|
+
*/
|
|
27240
|
+
declare const CreateMeetingParticipant: ({ meetingId, participant, adminApiParams, queryClient, }: CreateMeetingParticipantParams) => Promise<ConnectedXMResponse<Participant>>;
|
|
27241
|
+
/**
|
|
27242
|
+
* @category Mutations
|
|
27243
|
+
* @group StreamsV2
|
|
27244
|
+
*/
|
|
27245
|
+
declare const useCreateMeetingParticipant: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateMeetingParticipant>>, Omit<CreateMeetingParticipantParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Participant>, axios.AxiosError<ConnectedXMResponse<Participant>, any>, Omit<CreateMeetingParticipantParams, "queryClient" | "adminApiParams">, unknown>;
|
|
27246
|
+
|
|
27247
|
+
/**
|
|
27248
|
+
* @category Params
|
|
27249
|
+
* @group StreamsV2
|
|
27250
|
+
*/
|
|
27251
|
+
interface DeleteMeetingParticipantParams extends MutationParams {
|
|
27252
|
+
meetingId: string;
|
|
27253
|
+
participantId: string;
|
|
27254
|
+
}
|
|
27255
|
+
/**
|
|
27256
|
+
* @category Methods
|
|
27257
|
+
* @group StreamsV2
|
|
27258
|
+
*/
|
|
27259
|
+
declare const DeleteMeetingParticipant: ({ meetingId, participantId, adminApiParams, queryClient, }: DeleteMeetingParticipantParams) => Promise<ConnectedXMResponse<null>>;
|
|
27260
|
+
/**
|
|
27261
|
+
* @category Mutations
|
|
27262
|
+
* @group StreamsV2
|
|
27263
|
+
*/
|
|
27264
|
+
declare const useDeleteMeetingParticipant: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteMeetingParticipant>>, Omit<DeleteMeetingParticipantParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteMeetingParticipantParams, "queryClient" | "adminApiParams">, unknown>;
|
|
27265
|
+
|
|
27266
|
+
/**
|
|
27267
|
+
* @category Params
|
|
27268
|
+
* @group StreamsV2
|
|
27269
|
+
*/
|
|
27270
|
+
interface RegenerateMeetingParticipantTokenParams extends MutationParams {
|
|
27271
|
+
meetingId: string;
|
|
27272
|
+
participantId: string;
|
|
27273
|
+
}
|
|
27274
|
+
/**
|
|
27275
|
+
* @category Methods
|
|
27276
|
+
* @group StreamsV2
|
|
27277
|
+
*/
|
|
27278
|
+
declare const RegenerateMeetingParticipantToken: ({ meetingId, participantId, adminApiParams, queryClient, }: RegenerateMeetingParticipantTokenParams) => Promise<ConnectedXMResponse<Participant>>;
|
|
27279
|
+
/**
|
|
27280
|
+
* @category Mutations
|
|
27281
|
+
* @group StreamsV2
|
|
27282
|
+
*/
|
|
27283
|
+
declare const useRegenerateMeetingParticipantToken: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof RegenerateMeetingParticipantToken>>, Omit<RegenerateMeetingParticipantTokenParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Participant>, axios.AxiosError<ConnectedXMResponse<Participant>, any>, Omit<RegenerateMeetingParticipantTokenParams, "queryClient" | "adminApiParams">, unknown>;
|
|
27284
|
+
|
|
27285
|
+
/**
|
|
27286
|
+
* @category Params
|
|
27287
|
+
* @group StreamsV2
|
|
27288
|
+
*/
|
|
27289
|
+
interface UpdateMeetingParams extends MutationParams {
|
|
27290
|
+
meetingId: string;
|
|
27291
|
+
meeting: MeetingUpdateInputs;
|
|
27292
|
+
}
|
|
27293
|
+
/**
|
|
27294
|
+
* @category Methods
|
|
27295
|
+
* @group StreamsV2
|
|
27296
|
+
*/
|
|
27297
|
+
declare const UpdateMeeting: ({ meetingId, meeting, adminApiParams, queryClient, }: UpdateMeetingParams) => Promise<ConnectedXMResponse<Meeting>>;
|
|
27298
|
+
/**
|
|
27299
|
+
* @category Mutations
|
|
27300
|
+
* @group StreamsV2
|
|
27301
|
+
*/
|
|
27302
|
+
declare const useUpdateMeeting: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateMeeting>>, Omit<UpdateMeetingParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Meeting>, axios.AxiosError<ConnectedXMResponse<Meeting>, any>, Omit<UpdateMeetingParams, "queryClient" | "adminApiParams">, unknown>;
|
|
27303
|
+
|
|
27304
|
+
/**
|
|
27305
|
+
* @category Params
|
|
27306
|
+
* @group StreamsV2
|
|
27307
|
+
*/
|
|
27308
|
+
interface UpdateMeetingParticipantParams extends MutationParams {
|
|
27309
|
+
meetingId: string;
|
|
27310
|
+
participantId: string;
|
|
27311
|
+
participant: MeetingParticipantUpdateInputs;
|
|
27312
|
+
}
|
|
27313
|
+
/**
|
|
27314
|
+
* @category Methods
|
|
27315
|
+
* @group StreamsV2
|
|
27316
|
+
*/
|
|
27317
|
+
declare const UpdateMeetingParticipant: ({ meetingId, participantId, participant, adminApiParams, queryClient, }: UpdateMeetingParticipantParams) => Promise<ConnectedXMResponse<Participant>>;
|
|
27318
|
+
/**
|
|
27319
|
+
* @category Mutations
|
|
27320
|
+
* @group StreamsV2
|
|
27321
|
+
*/
|
|
27322
|
+
declare const useUpdateMeetingParticipant: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateMeetingParticipant>>, Omit<UpdateMeetingParticipantParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Participant>, axios.AxiosError<ConnectedXMResponse<Participant>, any>, Omit<UpdateMeetingParticipantParams, "queryClient" | "adminApiParams">, unknown>;
|
|
27323
|
+
|
|
27324
|
+
/**
|
|
27325
|
+
* @category Params
|
|
27326
|
+
* @group StreamsV2
|
|
27327
|
+
*/
|
|
27328
|
+
interface CreatePresetParams extends MutationParams {
|
|
27329
|
+
preset: MeetingPresetCreateInputs;
|
|
27330
|
+
}
|
|
27331
|
+
/**
|
|
27332
|
+
* @category Methods
|
|
27333
|
+
* @group StreamsV2
|
|
27334
|
+
*/
|
|
27335
|
+
declare const CreatePreset: ({ preset, adminApiParams, queryClient, }: CreatePresetParams) => Promise<ConnectedXMResponse<Preset>>;
|
|
27336
|
+
/**
|
|
27337
|
+
* @category Mutations
|
|
27338
|
+
* @group StreamsV2
|
|
27339
|
+
*/
|
|
27340
|
+
declare const useCreatePreset: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreatePreset>>, Omit<CreatePresetParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Preset>, axios.AxiosError<ConnectedXMResponse<Preset>, any>, Omit<CreatePresetParams, "queryClient" | "adminApiParams">, unknown>;
|
|
27341
|
+
|
|
27342
|
+
/**
|
|
27343
|
+
* @category Params
|
|
27344
|
+
* @group StreamsV2
|
|
27345
|
+
*/
|
|
27346
|
+
interface DeletePresetParams extends MutationParams {
|
|
27347
|
+
presetId: string;
|
|
27348
|
+
}
|
|
27349
|
+
/**
|
|
27350
|
+
* @category Methods
|
|
27351
|
+
* @group StreamsV2
|
|
27352
|
+
*/
|
|
27353
|
+
declare const DeletePreset: ({ presetId, adminApiParams, queryClient, }: DeletePresetParams) => Promise<ConnectedXMResponse<null>>;
|
|
27354
|
+
/**
|
|
27355
|
+
* @category Mutations
|
|
27356
|
+
* @group StreamsV2
|
|
27357
|
+
*/
|
|
27358
|
+
declare const useDeletePreset: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeletePreset>>, Omit<DeletePresetParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeletePresetParams, "queryClient" | "adminApiParams">, unknown>;
|
|
27359
|
+
|
|
27360
|
+
/**
|
|
27361
|
+
* @category Params
|
|
27362
|
+
* @group StreamsV2
|
|
27363
|
+
*/
|
|
27364
|
+
interface UpdatePresetParams extends MutationParams {
|
|
27365
|
+
presetId: string;
|
|
27366
|
+
preset: MeetingPresetUpdateInputs;
|
|
27367
|
+
}
|
|
27368
|
+
/**
|
|
27369
|
+
* @category Methods
|
|
27370
|
+
* @group StreamsV2
|
|
27371
|
+
*/
|
|
27372
|
+
declare const UpdatePreset: ({ presetId, preset, adminApiParams, queryClient, }: UpdatePresetParams) => Promise<ConnectedXMResponse<Preset>>;
|
|
27373
|
+
/**
|
|
27374
|
+
* @category Mutations
|
|
27375
|
+
* @group StreamsV2
|
|
27376
|
+
*/
|
|
27377
|
+
declare const useUpdatePreset: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdatePreset>>, Omit<UpdatePresetParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Preset>, axios.AxiosError<ConnectedXMResponse<Preset>, any>, Omit<UpdatePresetParams, "queryClient" | "adminApiParams">, unknown>;
|
|
27378
|
+
|
|
27379
|
+
/**
|
|
27380
|
+
* @category Params
|
|
27381
|
+
* @group StreamsV2
|
|
27382
|
+
*/
|
|
27383
|
+
interface GenerateMeetingSessionSummaryParams extends MutationParams {
|
|
27384
|
+
sessionId: string;
|
|
27385
|
+
}
|
|
27386
|
+
/**
|
|
27387
|
+
* @category Methods
|
|
27388
|
+
* @group StreamsV2
|
|
27389
|
+
*/
|
|
27390
|
+
declare const GenerateMeetingSessionSummary: ({ sessionId, adminApiParams, queryClient, }: GenerateMeetingSessionSummaryParams) => Promise<ConnectedXMResponse<any>>;
|
|
27391
|
+
/**
|
|
27392
|
+
* @category Mutations
|
|
27393
|
+
* @group StreamsV2
|
|
27394
|
+
*/
|
|
27395
|
+
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>;
|
|
27396
|
+
|
|
26502
27397
|
/**
|
|
26503
27398
|
* @category Params
|
|
26504
27399
|
* @group Subscriptions
|
|
@@ -27975,138 +28870,6 @@ declare const UploadFile: ({ dataUri, source, name, adminApiParams, }: UploadFil
|
|
|
27975
28870
|
*/
|
|
27976
28871
|
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>;
|
|
27977
28872
|
|
|
27978
|
-
/**
|
|
27979
|
-
* @category Params
|
|
27980
|
-
* @group Stream
|
|
27981
|
-
*/
|
|
27982
|
-
interface CreateStreamInputParams extends MutationParams {
|
|
27983
|
-
stream: StreamInputCreateInputs;
|
|
27984
|
-
}
|
|
27985
|
-
/**
|
|
27986
|
-
* @category Methods
|
|
27987
|
-
* @group Stream
|
|
27988
|
-
*/
|
|
27989
|
-
declare const CreateStreamInput: ({ stream, adminApiParams, queryClient, }: CreateStreamInputParams) => Promise<ConnectedXMResponse<StreamInput>>;
|
|
27990
|
-
/**
|
|
27991
|
-
* @category Mutations
|
|
27992
|
-
* @group Stream
|
|
27993
|
-
*/
|
|
27994
|
-
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>;
|
|
27995
|
-
|
|
27996
|
-
/**
|
|
27997
|
-
* @category Params
|
|
27998
|
-
* @group Stream
|
|
27999
|
-
*/
|
|
28000
|
-
interface CreateStreamInputOutputParams extends MutationParams {
|
|
28001
|
-
streamId: string;
|
|
28002
|
-
output: StreamInputOutputCreateInputs;
|
|
28003
|
-
}
|
|
28004
|
-
/**
|
|
28005
|
-
* @category Methods
|
|
28006
|
-
* @group Stream
|
|
28007
|
-
*/
|
|
28008
|
-
declare const CreateStreamInputOutput: ({ streamId, output, adminApiParams, queryClient, }: CreateStreamInputOutputParams) => Promise<ConnectedXMResponse<StreamInputOutput>>;
|
|
28009
|
-
/**
|
|
28010
|
-
* @category Mutations
|
|
28011
|
-
* @group Stream
|
|
28012
|
-
*/
|
|
28013
|
-
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>;
|
|
28014
|
-
|
|
28015
|
-
/**
|
|
28016
|
-
* @category Params
|
|
28017
|
-
* @group Stream
|
|
28018
|
-
*/
|
|
28019
|
-
interface DeleteStreamInputParams extends MutationParams {
|
|
28020
|
-
streamId: string;
|
|
28021
|
-
}
|
|
28022
|
-
/**
|
|
28023
|
-
* @category Methods
|
|
28024
|
-
* @group Stream
|
|
28025
|
-
*/
|
|
28026
|
-
declare const DeleteStreamInput: ({ streamId, adminApiParams, queryClient, }: DeleteStreamInputParams) => Promise<ConnectedXMResponse<null>>;
|
|
28027
|
-
/**
|
|
28028
|
-
* @category Mutations
|
|
28029
|
-
* @group Stream
|
|
28030
|
-
*/
|
|
28031
|
-
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>;
|
|
28032
|
-
|
|
28033
|
-
/**
|
|
28034
|
-
* @category Params
|
|
28035
|
-
* @group Stream
|
|
28036
|
-
*/
|
|
28037
|
-
interface DeleteStreamInputOutputParams extends MutationParams {
|
|
28038
|
-
streamId: string;
|
|
28039
|
-
outputId: string;
|
|
28040
|
-
}
|
|
28041
|
-
/**
|
|
28042
|
-
* @category Methods
|
|
28043
|
-
* @group Stream
|
|
28044
|
-
*/
|
|
28045
|
-
declare const DeleteStreamInputOutput: ({ streamId, outputId, adminApiParams, queryClient, }: DeleteStreamInputOutputParams) => Promise<ConnectedXMResponse<null>>;
|
|
28046
|
-
/**
|
|
28047
|
-
* @category Mutations
|
|
28048
|
-
* @group Stream
|
|
28049
|
-
*/
|
|
28050
|
-
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>;
|
|
28051
|
-
|
|
28052
|
-
/**
|
|
28053
|
-
* @category Params
|
|
28054
|
-
* @group Stream
|
|
28055
|
-
*/
|
|
28056
|
-
interface UpdateStreamConfigParams extends MutationParams {
|
|
28057
|
-
streamId: string;
|
|
28058
|
-
details: StreamInputUpdateInputs;
|
|
28059
|
-
}
|
|
28060
|
-
/**
|
|
28061
|
-
* @category Methods
|
|
28062
|
-
* @group Stream
|
|
28063
|
-
*/
|
|
28064
|
-
declare const UpdateStreamConfig: ({ streamId, details, adminApiParams, queryClient, }: UpdateStreamConfigParams) => Promise<ConnectedXMResponse<StreamInput>>;
|
|
28065
|
-
/**
|
|
28066
|
-
* @category Mutations
|
|
28067
|
-
* @group Stream
|
|
28068
|
-
*/
|
|
28069
|
-
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>;
|
|
28070
|
-
|
|
28071
|
-
/**
|
|
28072
|
-
* @category Params
|
|
28073
|
-
* @group Stream
|
|
28074
|
-
*/
|
|
28075
|
-
interface UpdateStreamParams extends MutationParams {
|
|
28076
|
-
streamId: string;
|
|
28077
|
-
stream: StreamInputUpdateInputs;
|
|
28078
|
-
}
|
|
28079
|
-
/**
|
|
28080
|
-
* @category Methods
|
|
28081
|
-
* @group Stream
|
|
28082
|
-
*/
|
|
28083
|
-
declare const UpdateStream: ({ streamId, stream, adminApiParams, queryClient, }: UpdateStreamParams) => Promise<ConnectedXMResponse<StreamInput>>;
|
|
28084
|
-
/**
|
|
28085
|
-
* @category Mutations
|
|
28086
|
-
* @group Stream
|
|
28087
|
-
*/
|
|
28088
|
-
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>;
|
|
28089
|
-
|
|
28090
|
-
/**
|
|
28091
|
-
* @category Params
|
|
28092
|
-
* @group Stream
|
|
28093
|
-
*/
|
|
28094
|
-
interface UpdateStreamInputOutputParams extends MutationParams {
|
|
28095
|
-
streamId: string;
|
|
28096
|
-
outputId: string;
|
|
28097
|
-
output: StreamInputOutputUpdateInputs;
|
|
28098
|
-
}
|
|
28099
|
-
/**
|
|
28100
|
-
* @category Methods
|
|
28101
|
-
* @group Stream
|
|
28102
|
-
*/
|
|
28103
|
-
declare const UpdateStreamInputOutput: ({ streamId, outputId, output, adminApiParams, queryClient, }: UpdateStreamInputOutputParams) => Promise<ConnectedXMResponse<StreamInputOutput>>;
|
|
28104
|
-
/**
|
|
28105
|
-
* @category Mutations
|
|
28106
|
-
* @group Stream
|
|
28107
|
-
*/
|
|
28108
|
-
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>;
|
|
28109
|
-
|
|
28110
28873
|
/**
|
|
28111
28874
|
* @category Params
|
|
28112
28875
|
* @group SupportTickets
|
|
@@ -29609,4 +30372,4 @@ declare const UploadVideoCaptions: ({ videoId, language, file, filename, adminAp
|
|
|
29609
30372
|
*/
|
|
29610
30373
|
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>;
|
|
29611
30374
|
|
|
29612
|
-
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, 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 BaseMembership, type BaseMembershipPrice, type BaseNotification, type BaseOrganization, type BaseOrganizationModule, type BasePassAddOn, type BasePayment, type BasePaymentLineItem, 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, 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, CreateMembership, type CreateMembershipParams, CreateMembershipPrice, type CreateMembershipPriceParams, CreateOrganizationPaymentIntegration, type CreateOrganizationPaymentIntegrationParams, CreateOrganizationSideEffect, type CreateOrganizationSideEffectParams, CreateOrganizationTeamMember, type CreateOrganizationTeamMemberParams, CreateOrganizationWebhook, type CreateOrganizationWebhookParams, 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, 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, DeleteMembership, type DeleteMembershipParams, DeleteMembershipPrice, type DeleteMembershipPriceParams, DeleteOrganizationDomain, type DeleteOrganizationDomainParams, DeleteOrganizationPaymentIntegration, type DeleteOrganizationPaymentIntegrationParams, DeleteOrganizationSideEffect, type DeleteOrganizationSideEffectParams, DeleteOrganizationTeamMember, type DeleteOrganizationTeamMemberParams, DeleteOrganizationUser, type DeleteOrganizationUserParams, DeleteOrganizationWebhook, type DeleteOrganizationWebhookParams, 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, 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, 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, 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, GetLogin, GetLoginAccounts, GetLoginAuthSessions, GetLoginDevices, GetLogins, 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, 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, GetStreamThreads, 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, 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, LocationQuestionOption, type Login, 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 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, PUSH_DEVICES_QUERY_KEY, PUSH_DEVICE_QUERY_KEY, PageType, 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, PublishActivity, type PublishActivityParams, PurchaseStatus, type PushDevice, type PushDeviceCreateInputs, type PushDeviceUpdateInputs, PushService, type Question, REPORTS_QUERY_KEY, REPORT_QUERY_KEY, REQUIRED_ATTRIBUTES_QUERY_KEY, type RefundLineItem, RefundOrganizationPayment, type RefundOrganizationPaymentParams, 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, 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_LOGIN_AUTH_SESSIONS_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_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_THREADS_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_THREADS_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 StreamInput, type StreamInputConfig, 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, 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, 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, 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, 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, useCreateMembership, useCreateMembershipPrice, useCreateOrganizationPaymentIntegration, useCreateOrganizationSideEffect, useCreateOrganizationTeamMember, useCreateOrganizationWebhook, 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, 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, useDeleteMembership, useDeleteMembershipPrice, useDeleteOrganizationDomain, useDeleteOrganizationPaymentIntegration, useDeleteOrganizationSideEffect, useDeleteOrganizationTeamMember, useDeleteOrganizationUser, useDeleteOrganizationWebhook, 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, useDownloadVideoCaption, useEventGetPassTypeCoupons, useExportAccount, 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, useGetLogin, useGetLoginAccounts, useGetLoginAuthSessions, useGetLoginDevices, useGetLogins, 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, 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, useGetStreamThreads, 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, 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, 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, useUpdateMembership, useUpdateMembershipPrice, useUpdateOrganization, useUpdateOrganizationDomain, useUpdateOrganizationIntegrations, useUpdateOrganizationMembership, useUpdateOrganizationModule, useUpdateOrganizationTeamMember, useUpdateOrganizationWebhook, useUpdatePayment, 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 };
|
|
30375
|
+
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 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, 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, 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, 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_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 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_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, 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, 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, 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, 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, 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 };
|