@connectedxm/client 9.0.0 → 9.0.1

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +357 -389
  2. package/dist/index.js +2584 -2659
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -3559,7 +3559,7 @@ interface UpdateChannelParams extends MutationParams {
3559
3559
  declare const UpdateChannel: ({ channelId, channel, imageDataUri, clientApiParams, queryClient, }: UpdateChannelParams) => Promise<ConnectedXMResponse<Channel>>;
3560
3560
  declare const useUpdateChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateChannel>>, Omit<UpdateChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateChannelParams, "queryClient" | "clientApiParams">, unknown>;
3561
3561
 
3562
- interface CompleteEventActivationParams extends MutationParams {
3562
+ interface CompleteEventAttendeePassActivationParams extends MutationParams {
3563
3563
  eventId: string;
3564
3564
  passId: string;
3565
3565
  activationId: string;
@@ -3567,8 +3567,8 @@ interface CompleteEventActivationParams extends MutationParams {
3567
3567
  imageId?: string;
3568
3568
  earnedPoints?: number;
3569
3569
  }
3570
- declare const CompleteEventActivation: ({ eventId, passId, activationId, code, imageId, earnedPoints, clientApiParams, queryClient, }: CompleteEventActivationParams) => Promise<ConnectedXMResponse<EventActivation>>;
3571
- declare const useCompleteEventActivation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CompleteEventActivation>>, Omit<CompleteEventActivationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventActivation>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CompleteEventActivationParams, "queryClient" | "clientApiParams">, unknown>;
3570
+ declare const CompleteEventAttendeePassActivation: ({ eventId, passId, activationId, code, imageId, earnedPoints, clientApiParams, queryClient, }: CompleteEventAttendeePassActivationParams) => Promise<ConnectedXMResponse<EventActivation>>;
3571
+ declare const useCompleteEventAttendeePassActivation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CompleteEventAttendeePassActivation>>, Omit<CompleteEventAttendeePassActivationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventActivation>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CompleteEventAttendeePassActivationParams, "queryClient" | "clientApiParams">, unknown>;
3572
3572
 
3573
3573
  interface BookmarkEventAttendeePassSessionParams extends MutationParams {
3574
3574
  eventId: string;
@@ -3578,6 +3578,14 @@ interface BookmarkEventAttendeePassSessionParams extends MutationParams {
3578
3578
  declare const BookmarkEventAttendeePassSession: ({ eventId, passId, sessionId, clientApiParams, queryClient, }: BookmarkEventAttendeePassSessionParams) => Promise<ConnectedXMResponse<Pass>>;
3579
3579
  declare const useBookmarkEventAttendeePassSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof BookmarkEventAttendeePassSession>>, Omit<BookmarkEventAttendeePassSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<BookmarkEventAttendeePassSessionParams, "queryClient" | "clientApiParams">, unknown>;
3580
3580
 
3581
+ interface CancelEventAttendeePassAccessParams extends MutationParams {
3582
+ eventId: string;
3583
+ passId: string;
3584
+ sessionId: string;
3585
+ }
3586
+ declare const CancelEventAttendeePassAccess: ({ eventId, passId, sessionId, clientApiParams, queryClient, }: CancelEventAttendeePassAccessParams) => Promise<ConnectedXMResponse<EventSessionAccess>>;
3587
+ declare const useCancelEventAttendeePassAccess: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelEventAttendeePassAccess>>, Omit<CancelEventAttendeePassAccessParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventSessionAccess>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CancelEventAttendeePassAccessParams, "queryClient" | "clientApiParams">, unknown>;
3588
+
3581
3589
  interface UnbookmarkEventAttendeePassSessionParams extends MutationParams {
3582
3590
  eventId: string;
3583
3591
  passId: string;
@@ -3586,24 +3594,78 @@ interface UnbookmarkEventAttendeePassSessionParams extends MutationParams {
3586
3594
  declare const UnbookmarkEventAttendeePassSession: ({ eventId, passId, sessionId, clientApiParams, queryClient, }: UnbookmarkEventAttendeePassSessionParams) => Promise<ConnectedXMResponse<Pass>>;
3587
3595
  declare const useUnbookmarkEventAttendeePassSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnbookmarkEventAttendeePassSession>>, Omit<UnbookmarkEventAttendeePassSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UnbookmarkEventAttendeePassSessionParams, "queryClient" | "clientApiParams">, unknown>;
3588
3596
 
3589
- interface UpdateEventSessionPassResponsesParams extends MutationParams {
3597
+ interface UpdateEventAttendeePassAccessResponsesParams extends MutationParams {
3590
3598
  eventId: string;
3591
- sessionId: string;
3592
3599
  passId: string;
3600
+ sessionId: string;
3593
3601
  responses: {
3594
3602
  questionId: string;
3595
3603
  value: string;
3596
3604
  }[];
3597
3605
  }
3598
- declare const UpdateEventSessionPassResponses: ({ eventId, sessionId, passId, responses, clientApiParams, queryClient, }: UpdateEventSessionPassResponsesParams) => Promise<ConnectedXMResponse<null>>;
3599
- declare const useUpdateEventSessionPassResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateEventSessionPassResponses>>, Omit<UpdateEventSessionPassResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateEventSessionPassResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3606
+ declare const UpdateEventAttendeePassAccessResponses: ({ eventId, passId, sessionId, responses, clientApiParams, queryClient, }: UpdateEventAttendeePassAccessResponsesParams) => Promise<ConnectedXMResponse<null>>;
3607
+ declare const useUpdateEventAttendeePassAccessResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateEventAttendeePassAccessResponses>>, Omit<UpdateEventAttendeePassAccessResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateEventAttendeePassAccessResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3600
3608
 
3601
- interface UpdateEventRegistrationParams extends MutationParams {
3609
+ interface CancelEventAttendeePassParams extends MutationParams {
3610
+ passId: string;
3602
3611
  eventId: string;
3603
- draft: RegistrationDraft;
3612
+ registrationId: string;
3613
+ issueRefund?: boolean;
3604
3614
  }
3605
- declare const UpdateEventRegistration: ({ eventId, draft, clientApiParams, }: UpdateEventRegistrationParams) => Promise<ConnectedXMResponse<RegistrationDraft>>;
3606
- declare const useUpdateEventRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateEventRegistration>>, Omit<UpdateEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationDraft>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateEventRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
3615
+ declare const CancelEventAttendeePass: ({ passId, eventId, issueRefund, clientApiParams, queryClient, }: CancelEventAttendeePassParams) => Promise<ConnectedXMResponse<Pass>>;
3616
+ declare const useCancelEventAttendeePass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelEventAttendeePass>>, Omit<CancelEventAttendeePassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CancelEventAttendeePassParams, "queryClient" | "clientApiParams">, unknown>;
3617
+
3618
+ interface TransferEventAttendeePassParams extends MutationParams {
3619
+ passId: string;
3620
+ eventId: string;
3621
+ receiverId: string;
3622
+ }
3623
+ declare const TransferEventAttendeePass: ({ passId, eventId, receiverId, clientApiParams, queryClient, }: TransferEventAttendeePassParams) => Promise<ConnectedXMResponse<null>>;
3624
+ declare const useTransferEventAttendeePass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof TransferEventAttendeePass>>, Omit<TransferEventAttendeePassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<TransferEventAttendeePassParams, "queryClient" | "clientApiParams">, unknown>;
3625
+
3626
+ interface UpdateEventAttendeePassFollowupParams extends MutationParams {
3627
+ eventId: string;
3628
+ passId: string;
3629
+ followupId: string;
3630
+ questions: {
3631
+ id: string;
3632
+ value: string;
3633
+ }[];
3634
+ }
3635
+ declare const UpdateEventAttendeePassFollowup: ({ eventId, passId, followupId, questions, clientApiParams, queryClient, }: UpdateEventAttendeePassFollowupParams) => Promise<ConnectedXMResponse<null>>;
3636
+ declare const useUpdateEventAttendeePassFollowup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateEventAttendeePassFollowup>>, Omit<UpdateEventAttendeePassFollowupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateEventAttendeePassFollowupParams, "queryClient" | "clientApiParams">, unknown>;
3637
+
3638
+ interface UpdateEventAttendeePassResponsesParams extends MutationParams {
3639
+ eventId: string;
3640
+ passId: string;
3641
+ questions: {
3642
+ id: string;
3643
+ value: string;
3644
+ }[];
3645
+ }
3646
+ declare const UpdateEventAttendeePassResponses: ({ eventId, passId, questions, clientApiParams, queryClient, }: UpdateEventAttendeePassResponsesParams) => Promise<ConnectedXMResponse<null>>;
3647
+ declare const useUpdateEventAttendeePassResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateEventAttendeePassResponses>>, Omit<UpdateEventAttendeePassResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateEventAttendeePassResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3648
+
3649
+ interface UpdateEventAttendeePreferencesParams extends MutationParams {
3650
+ eventId: string;
3651
+ activityNotificationPreference?: ActivityPreference;
3652
+ announcementPushNotification?: boolean;
3653
+ announcementEmailNotification?: boolean;
3654
+ }
3655
+ declare const UpdateEventAttendeePreferences: ({ eventId, activityNotificationPreference, announcementPushNotification, announcementEmailNotification, clientApiParams, queryClient, }: UpdateEventAttendeePreferencesParams) => Promise<ConnectedXMResponse<Registration>>;
3656
+ declare const useUpdateEventAttendeePreferences: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateEventAttendeePreferences>>, Omit<UpdateEventAttendeePreferencesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateEventAttendeePreferencesParams, "queryClient" | "clientApiParams">, unknown>;
3657
+
3658
+ interface UpdateEventSessionRegistrationResponsesParams extends MutationParams {
3659
+ eventId: string;
3660
+ sessionId: string;
3661
+ passId: string;
3662
+ responses: {
3663
+ questionId: string;
3664
+ value: string;
3665
+ }[];
3666
+ }
3667
+ declare const UpdateEventSessionRegistrationResponses: ({ eventId, sessionId, passId, responses, clientApiParams, queryClient, }: UpdateEventSessionRegistrationResponsesParams) => Promise<ConnectedXMResponse<null>>;
3668
+ declare const useUpdateEventSessionRegistrationResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateEventSessionRegistrationResponses>>, Omit<UpdateEventSessionRegistrationResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateEventSessionRegistrationResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3607
3669
 
3608
3670
  interface ApplyEventRegistrationCouponParams extends MutationParams {
3609
3671
  eventId: string;
@@ -3613,6 +3675,13 @@ interface ApplyEventRegistrationCouponParams extends MutationParams {
3613
3675
  declare const ApplyEventRegistrationCoupon: ({ eventId, draft, code, clientApiParams, }: ApplyEventRegistrationCouponParams) => Promise<ConnectedXMResponse<RegistrationDraft>>;
3614
3676
  declare const useApplyEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof ApplyEventRegistrationCoupon>>, Omit<ApplyEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationDraft>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<ApplyEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
3615
3677
 
3678
+ interface UpdateEventRegistrationParams extends MutationParams {
3679
+ eventId: string;
3680
+ draft: RegistrationDraft;
3681
+ }
3682
+ declare const UpdateEventRegistration: ({ eventId, draft, clientApiParams, }: UpdateEventRegistrationParams) => Promise<ConnectedXMResponse<RegistrationDraft>>;
3683
+ declare const useUpdateEventRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateEventRegistration>>, Omit<UpdateEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationDraft>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateEventRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
3684
+
3616
3685
  interface CapturePaymentIntentParams extends MutationParams {
3617
3686
  intent: PaymentIntent;
3618
3687
  paymentDetails?: {
@@ -3711,84 +3780,6 @@ interface UpdateSelfChatChannelNotificationsParams extends MutationParams {
3711
3780
  declare const UpdateSelfChatChannelNotifications: ({ channelId, notifications, clientApiParams, queryClient, }: UpdateSelfChatChannelNotificationsParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
3712
3781
  declare const useUpdateSelfChatChannelNotifications: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfChatChannelNotifications>>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApiParams">, unknown>;
3713
3782
 
3714
- interface UpdateSelfEventRegistrationParams extends MutationParams {
3715
- eventId: string;
3716
- activityNotificationPreference?: ActivityPreference;
3717
- announcementPushNotification?: boolean;
3718
- announcementEmailNotification?: boolean;
3719
- }
3720
- declare const UpdateSelfEventRegistration: ({ eventId, activityNotificationPreference, announcementPushNotification, announcementEmailNotification, clientApiParams, queryClient, }: UpdateSelfEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
3721
- declare const useUpdateSelfEventRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistration>>, Omit<UpdateSelfEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfEventRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
3722
-
3723
- interface UpdateSelfEventRegistrationPassResponseParams extends MutationParams {
3724
- eventId: string;
3725
- passId: string;
3726
- questionId: string;
3727
- response: string;
3728
- }
3729
- declare const UpdateSelfEventRegistrationPassResponse: ({ eventId, passId, questionId, response, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPassResponseParams) => Promise<ConnectedXMResponse<null>>;
3730
- declare const useUpdateSelfEventRegistrationPassResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPassResponse>>, Omit<UpdateSelfEventRegistrationPassResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfEventRegistrationPassResponseParams, "queryClient" | "clientApiParams">, unknown>;
3731
-
3732
- interface UpdateSelfEventAttendeePassResponsesParams extends MutationParams {
3733
- eventId: string;
3734
- passId: string;
3735
- questions: {
3736
- id: string;
3737
- value: string;
3738
- }[];
3739
- }
3740
- declare const UpdateSelfEventAttendeePassResponses: ({ eventId, passId, questions, clientApiParams, queryClient, }: UpdateSelfEventAttendeePassResponsesParams) => Promise<ConnectedXMResponse<null>>;
3741
- declare const useUpdateSelfEventAttendeePassResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventAttendeePassResponses>>, Omit<UpdateSelfEventAttendeePassResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfEventAttendeePassResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3742
-
3743
- interface UpdateSelfEventAttendeePassFollowupParams extends MutationParams {
3744
- eventId: string;
3745
- passId: string;
3746
- followupId: string;
3747
- questions: {
3748
- id: string;
3749
- value: string;
3750
- }[];
3751
- }
3752
- declare const UpdateSelfEventAttendeePassFollowup: ({ eventId, passId, followupId, questions, clientApiParams, queryClient, }: UpdateSelfEventAttendeePassFollowupParams) => Promise<ConnectedXMResponse<null>>;
3753
- declare const useUpdateSelfEventAttendeePassFollowup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventAttendeePassFollowup>>, Omit<UpdateSelfEventAttendeePassFollowupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfEventAttendeePassFollowupParams, "queryClient" | "clientApiParams">, unknown>;
3754
-
3755
- interface TransferPassParams extends MutationParams {
3756
- passId: string;
3757
- eventId: string;
3758
- receiverId: string;
3759
- }
3760
- declare const TransferPass: ({ passId, eventId, receiverId, clientApiParams, queryClient, }: TransferPassParams) => Promise<ConnectedXMResponse<null>>;
3761
- declare const useTransferPass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof TransferPass>>, Omit<TransferPassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<TransferPassParams, "queryClient" | "clientApiParams">, unknown>;
3762
-
3763
- interface CancelPassParams extends MutationParams {
3764
- passId: string;
3765
- eventId: string;
3766
- registrationId: string;
3767
- issueRefund?: boolean;
3768
- }
3769
- declare const CancelPass: ({ passId, eventId, issueRefund, clientApiParams, queryClient, }: CancelPassParams) => Promise<ConnectedXMResponse<Pass>>;
3770
- declare const useCancelPass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelPass>>, Omit<CancelPassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CancelPassParams, "queryClient" | "clientApiParams">, unknown>;
3771
-
3772
- interface UpdateSelfEventAttendeeAccessResponsesParams extends MutationParams {
3773
- eventId: string;
3774
- passId: string;
3775
- sessionId: string;
3776
- responses: {
3777
- questionId: string;
3778
- value: string;
3779
- }[];
3780
- }
3781
- declare const UpdateSelfEventAttendeeAccessResponses: ({ eventId, passId, sessionId, responses, clientApiParams, queryClient, }: UpdateSelfEventAttendeeAccessResponsesParams) => Promise<ConnectedXMResponse<null>>;
3782
- declare const useUpdateSelfEventAttendeeAccessResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventAttendeeAccessResponses>>, Omit<UpdateSelfEventAttendeeAccessResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfEventAttendeeAccessResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3783
-
3784
- interface CancelSelfEventSessionAccessParams extends MutationParams {
3785
- eventId: string;
3786
- passId: string;
3787
- sessionId: string;
3788
- }
3789
- declare const CancelSelfEventSessionAccess: ({ eventId, passId, sessionId, clientApiParams, queryClient, }: CancelSelfEventSessionAccessParams) => Promise<ConnectedXMResponse<EventSessionAccess>>;
3790
- declare const useCancelSelfEventSessionAccess: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelSelfEventSessionAccess>>, Omit<CancelSelfEventSessionAccessParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventSessionAccess>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CancelSelfEventSessionAccessParams, "queryClient" | "clientApiParams">, unknown>;
3791
-
3792
3783
  interface AddSelfEventSessionParams extends MutationParams {
3793
3784
  eventId: string;
3794
3785
  sessionId: string;
@@ -5217,30 +5208,209 @@ interface GetContentsExploreProps extends SingleQueryParams {
5217
5208
  declare const GetContentsExplore: ({ clientApiParams, }: GetContentsExploreProps) => Promise<ConnectedXMResponse<ContentsExploreData>>;
5218
5209
  declare const useGetContentsExplore: (options?: SingleQueryOptions<ReturnType<typeof GetContentsExplore>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ContentsExploreData>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5219
5210
 
5220
- declare const EVENT_QUERY_KEY: (eventId: string) => QueryKey;
5221
- declare const SET_EVENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5222
- interface GetEventProps extends SingleQueryParams {
5211
+ declare const EVENT_ATTENDEE_COUPON_QUERY_KEY: (eventId: string, couponId: string) => QueryKey;
5212
+ declare const SET_EVENT_ATTENDEE_COUPON_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_COUPON_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeeCoupon>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5213
+ interface GetEventAttendeeCouponProps extends SingleQueryParams {
5223
5214
  eventId: string;
5215
+ couponId: string;
5224
5216
  }
5225
- declare const GetEvent: ({ eventId, clientApiParams, }: GetEventProps) => Promise<ConnectedXMResponse<Event>>;
5226
- declare const useGetEvent: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEvent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Event>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5217
+ declare const GetEventAttendeeCoupon: ({ eventId, couponId, clientApiParams, }: GetEventAttendeeCouponProps) => Promise<ConnectedXMResponse<ManagedCoupon>>;
5218
+ declare const useGetEventAttendeeCoupon: (eventId?: string, couponId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeeCoupon>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ManagedCoupon>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5227
5219
 
5228
- declare const EVENT_CONFIG_QUERY_KEY: (eventId: string) => QueryKey;
5229
- declare const SET_EVENT_CONFIG_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_CONFIG_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventConfig>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5230
- interface GetEventConfigProps extends SingleQueryParams {
5220
+ declare const EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY: (eventId: string, couponId: string) => QueryKey;
5221
+ interface GetEventAttendeeCouponPassesProps extends InfiniteQueryParams {
5231
5222
  eventId: string;
5223
+ couponId: string;
5232
5224
  }
5233
- declare const GetEventConfig: ({ eventId, clientApiParams, }: GetEventConfigProps) => Promise<ConnectedXMResponse<EventConfig>>;
5234
- declare const useGetEventConfig: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventConfig>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventConfig>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5225
+ declare const GetEventAttendeeCouponPasses: ({ eventId, couponId, clientApiParams, }: GetEventAttendeeCouponPassesProps) => Promise<ConnectedXMResponse<ManagedCouponPass[]>>;
5226
+ declare const useGetEventAttendeeCouponPasses: (eventId?: string, couponId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventAttendeeCouponPasses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ManagedCouponPass[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5235
5227
 
5236
- declare const EVENT_ACTIVITIES_QUERY_KEY: (eventId: string, featured?: boolean) => QueryKey;
5237
- declare const SET_EVENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventActivities>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5238
- interface GetEventActivitiesProps extends InfiniteQueryParams {
5228
+ declare const EVENT_ATTENDEE_COUPONS_QUERY_KEY: (eventId: string) => QueryKey;
5229
+ interface GetEventAttendeeCouponsProps extends InfiniteQueryParams {
5239
5230
  eventId: string;
5240
- featured?: boolean;
5241
5231
  }
5242
- declare const GetEventActivities: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, featured, }: GetEventActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
5243
- declare const useGetEventActivities: (eventId?: string, featured?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5232
+ declare const GetEventAttendeeCoupons: ({ eventId, clientApiParams, }: GetEventAttendeeCouponsProps) => Promise<ConnectedXMResponse<ManagedCoupon[]>>;
5233
+ declare const useGetEventAttendeeCoupons: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventAttendeeCoupons>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ManagedCoupon[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5234
+
5235
+ declare const EVENT_ATTENDEE_PASS_ACTIVATION_QUERY_KEY: (eventId: string, passId: string, activationId: string) => QueryKey;
5236
+ declare const SET_EVENT_ATTENDEE_PASS_ACTIVATION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_PASS_ACTIVATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeePassActivation>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5237
+ interface GetEventAttendeePassActivationProps extends SingleQueryParams {
5238
+ eventId: string;
5239
+ passId: string;
5240
+ activationId: string;
5241
+ }
5242
+ declare const GetEventAttendeePassActivation: ({ eventId, passId, activationId, clientApiParams, }: GetEventAttendeePassActivationProps) => Promise<ConnectedXMResponse<EventActivation>>;
5243
+ declare const useGetEventAttendeePassActivation: (eventId: string | undefined, passId: string | undefined, activationId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePassActivation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventActivation>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5244
+
5245
+ declare const EVENT_ATTENDEE_PASS_ACTIVATIONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
5246
+ declare const SET_EVENT_ATTENDEE_PASS_ACTIVATIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_PASS_ACTIVATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeePassActivations>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5247
+ interface GetEventAttendeePassActivationsProps extends InfiniteQueryParams {
5248
+ eventId: string;
5249
+ passId: string;
5250
+ }
5251
+ declare const GetEventAttendeePassActivations: ({ eventId, passId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventAttendeePassActivationsProps) => Promise<ConnectedXMResponse<EventActivation[]>>;
5252
+ declare const useGetEventAttendeePassActivations: (eventId?: string, passId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventAttendeePassActivations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventActivation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5253
+
5254
+ declare const EVENT_ATTENDEE_PASS_ACTIVATION_SUMMARY_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
5255
+ interface GetEventAttendeePassActivationSummaryProps extends SingleQueryParams {
5256
+ eventId: string;
5257
+ passId: string;
5258
+ }
5259
+ declare const GetEventAttendeePassActivationSummary: ({ eventId, passId, clientApiParams, }: GetEventAttendeePassActivationSummaryProps) => Promise<ConnectedXMResponse<{
5260
+ total: number;
5261
+ completed: number;
5262
+ }>>;
5263
+ declare const useGetEventAttendeePassActivationSummary: (eventId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePassActivationSummary>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<{
5264
+ total: number;
5265
+ completed: number;
5266
+ }>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5267
+
5268
+ declare const EVENT_ATTENDEE_PASS_ACCESS_QUERY_KEY: (eventId: string, passId: string, sessionId: string) => QueryKey;
5269
+ declare const SET_EVENT_ATTENDEE_PASS_ACCESS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_PASS_ACCESS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeePassAccess>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5270
+ interface GetEventAttendeePassAccessProps extends SingleQueryParams {
5271
+ eventId: string;
5272
+ passId: string;
5273
+ sessionId: string;
5274
+ }
5275
+ declare const GetEventAttendeePassAccess: ({ eventId, passId, sessionId, clientApiParams, }: GetEventAttendeePassAccessProps) => Promise<ConnectedXMResponse<EventSessionAccess>>;
5276
+ declare const useGetEventAttendeePassAccess: (eventId: string, passId: string, sessionId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePassAccess>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionAccess>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5277
+
5278
+ declare const EVENT_ATTENDEE_PASS_ACCESS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, passId: string, sessionId: string) => QueryKey;
5279
+ declare const SET_EVENT_ATTENDEE_PASS_ACCESS_QUESTION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_PASS_ACCESS_QUESTION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeePassAccessQuestionSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5280
+ interface GetEventAttendeePassAccessQuestionSectionsProps extends SingleQueryParams {
5281
+ eventId: string;
5282
+ sessionId: string;
5283
+ passId: string;
5284
+ }
5285
+ declare const GetEventAttendeePassAccessQuestionSections: ({ eventId, sessionId, passId, clientApiParams, }: GetEventAttendeePassAccessQuestionSectionsProps) => Promise<ConnectedXMResponse<EventSessionSection[]>>;
5286
+ declare const useGetEventAttendeePassAccessQuestionSections: (eventId: string, passId: string, sessionId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePassAccessQuestionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5287
+
5288
+ declare const EVENT_ATTENDEE_PASS_SESSION_PASS_INTENT_QUERY_KEY: (eventId: string, sessionId: string, passId: string, addressId?: string) => QueryKey;
5289
+ interface GetEventAttendeePassSessionPassIntentProps extends SingleQueryParams {
5290
+ eventId: string;
5291
+ sessionId: string;
5292
+ passId: string;
5293
+ addressId: string;
5294
+ }
5295
+ declare const GetEventAttendeePassSessionPassIntent: ({ eventId, sessionId, passId, addressId, clientApiParams, }: GetEventAttendeePassSessionPassIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
5296
+ declare const useGetEventAttendeePassSessionPassIntent: (eventId?: string, sessionId?: string, passId?: string, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePassSessionPassIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5297
+
5298
+ declare const EVENT_ATTENDEE_PASS_SESSION_PASS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, sessionId: string, passId: string) => QueryKey;
5299
+ declare const SET_EVENT_ATTENDEE_PASS_SESSION_PASS_QUESTION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_PASS_SESSION_PASS_QUESTION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeePassSessionPassQuestionSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5300
+ interface GetEventAttendeePassSessionPassQuestionSectionsProps extends SingleQueryParams {
5301
+ eventId: string;
5302
+ sessionId: string;
5303
+ passId: string;
5304
+ }
5305
+ declare const GetEventAttendeePassSessionPassQuestionSections: ({ eventId, sessionId, passId, clientApiParams, }: GetEventAttendeePassSessionPassQuestionSectionsProps) => Promise<ConnectedXMResponse<EventSessionSection[]>>;
5306
+ declare const useGetEventAttendeePassSessionPassQuestionSections: (eventId: string, sessionId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePassSessionPassQuestionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5307
+
5308
+ declare const EVENT_ATTENDEE_PASS_SESSIONS_INTENT_QUERY_KEY: (eventId: string, passId: string, addressId: string, sessionIds: string[]) => QueryKey;
5309
+ interface GetEventAttendeePassSessionsIntentProps extends SingleQueryParams {
5310
+ eventId: string;
5311
+ passId: string;
5312
+ sessionIds: string[];
5313
+ addressId: string;
5314
+ }
5315
+ declare const GetEventAttendeePassSessionsIntent: ({ eventId, passId, sessionIds, addressId, clientApiParams, }: GetEventAttendeePassSessionsIntentProps) => Promise<ConnectedXMResponse<PaymentIntent>>;
5316
+ declare const useGetEventAttendeePassSessionsIntent: (eventId: string | undefined, passId: string | undefined, addressId: string | undefined, sessionIds: string[], options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePassSessionsIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5317
+
5318
+ declare const EVENT_ATTENDEE_PASS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
5319
+ declare const SET_EVENT_ATTENDEE_PASS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_PASS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeePass>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5320
+ interface GetEventAttendeePassProps extends SingleQueryParams {
5321
+ eventId: string;
5322
+ passId: string;
5323
+ }
5324
+ declare const GetEventAttendeePass: ({ eventId, passId, clientApiParams, }: GetEventAttendeePassProps) => Promise<ConnectedXMResponse<Pass>>;
5325
+ declare const useGetEventAttendeePass: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5326
+
5327
+ declare const EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
5328
+ declare const SET_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeePassAddOns>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5329
+ interface GetEventAttendeePassAddOnsProps extends SingleQueryParams {
5330
+ eventId: string;
5331
+ passId: string;
5332
+ }
5333
+ declare const GetEventAttendeePassAddOns: ({ eventId, passId, clientApiParams, }: GetEventAttendeePassAddOnsProps) => Promise<ConnectedXMResponse<EventAddOn[]>>;
5334
+ declare const useGetEventAttendeePassAddOns: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePassAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5335
+
5336
+ declare const EVENT_ATTENDEE_PASS_ADD_ONS_INTENT_QUERY_KEY: (eventId: string, passId: string, addressId: string, addOnIds: string[]) => QueryKey;
5337
+ interface GetEventAttendeePassAddOnsIntentProps extends SingleQueryParams {
5338
+ eventId: string;
5339
+ passId: string;
5340
+ addOnIds: string[];
5341
+ addressId: string;
5342
+ }
5343
+ declare const GetEventAttendeePassAddOnsIntent: ({ eventId, passId, addOnIds, addressId, clientApiParams, }: GetEventAttendeePassAddOnsIntentProps) => Promise<ConnectedXMResponse<PaymentIntent>>;
5344
+ declare const useGetEventAttendeePassAddOnsIntent: (eventId: string | undefined, passId: string | undefined, addressId: string | undefined, addOnIds: string[], options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePassAddOnsIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5345
+
5346
+ declare const EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY: (eventId: string, passId: string, followupId: string) => QueryKey;
5347
+ declare const SET_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeePassQuestionFollowup>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5348
+ interface GetEventAttendeePassQuestionFollowupProps extends SingleQueryParams {
5349
+ eventId: string;
5350
+ passId: string;
5351
+ followupId: string;
5352
+ }
5353
+ declare const GetEventAttendeePassQuestionFollowup: ({ eventId, passId, followupId, clientApiParams, }: GetEventAttendeePassQuestionFollowupProps) => Promise<ConnectedXMResponse<RegistrationFollowup>>;
5354
+ declare const useGetEventAttendeePassQuestionFollowup: (eventId: string, passId: string, followupId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePassQuestionFollowup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationFollowup>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5355
+
5356
+ declare const EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
5357
+ declare const SET_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeePassQuestionFollowups>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5358
+ interface GetEventAttendeePassQuestionFollowupsProps extends SingleQueryParams {
5359
+ eventId: string;
5360
+ passId: string;
5361
+ }
5362
+ declare const GetEventAttendeePassQuestionFollowups: ({ eventId, passId, clientApiParams, }: GetEventAttendeePassQuestionFollowupsProps) => Promise<ConnectedXMResponse<RegistrationFollowup[]>>;
5363
+ declare const useGetEventAttendeePassQuestionFollowups: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePassQuestionFollowups>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationFollowup[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5364
+
5365
+ declare const EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
5366
+ declare const SET_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeePassQuestionSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5367
+ interface GetEventAttendeePassQuestionSectionsProps extends SingleQueryParams {
5368
+ eventId: string;
5369
+ passId: string;
5370
+ }
5371
+ declare const GetEventAttendeePassQuestionSections: ({ eventId, passId, clientApiParams, }: GetEventAttendeePassQuestionSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
5372
+ declare const useGetEventAttendeePassQuestionSections: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePassQuestionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5373
+
5374
+ declare const EVENT_ATTENDEE_PAYMENT_QUERY_KEY: (eventId: string, paymentId: string) => QueryKey;
5375
+ declare const SET_EVENT_ATTENDEE_PAYMENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_PAYMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeePayment>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5376
+ interface GetEventAttendeePaymentProps extends SingleQueryParams {
5377
+ eventId: string;
5378
+ paymentId: string;
5379
+ }
5380
+ declare const GetEventAttendeePayment: ({ eventId, paymentId, clientApiParams, }: GetEventAttendeePaymentProps) => Promise<ConnectedXMResponse<Payment>>;
5381
+ declare const useGetEventAttendeePayment: (eventId: string, paymentId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePayment>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Payment>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5382
+
5383
+ declare const EVENT_ATTENDEE_PAYMENTS_QUERY_KEY: (eventId: string) => QueryKey;
5384
+ interface GetEventAttendeePaymentsProps extends InfiniteQueryParams {
5385
+ eventId: string;
5386
+ }
5387
+ declare const GetEventAttendeePayments: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventAttendeePaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
5388
+ declare const useGetEventAttendeePayments: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventAttendeePayments>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Payment[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5389
+
5390
+ declare const EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY: (eventId: string, passId: string, search: string) => QueryKey;
5391
+ declare const SET_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY>, response: ReturnType<typeof GetEventAttendeeTransferAccounts>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5392
+ interface GetEventAttendeeTransferAccountsProps extends SingleQueryParams {
5393
+ eventId: string;
5394
+ passId: string;
5395
+ search: string;
5396
+ }
5397
+ declare const GetEventAttendeeTransferAccounts: ({ eventId, passId, search, clientApiParams, }: GetEventAttendeeTransferAccountsProps) => Promise<ConnectedXMResponse<Account[]>>;
5398
+ declare const useGetEventAttendeeTransferAccounts: (eventId: string, passId: string, search: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeeTransferAccounts>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Account[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5399
+
5400
+ declare const EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY: (eventId: string) => QueryKey;
5401
+ interface GetEventAttendeeTransfersLogsProps extends InfiniteQueryParams {
5402
+ eventId: string;
5403
+ }
5404
+ declare const GetEventAttendeeTransfersLogs: ({ pageParam, pageSize, orderBy, search, eventId, clientApiParams, }: GetEventAttendeeTransfersLogsProps) => Promise<ConnectedXMResponse<TransferLog[]>>;
5405
+ declare const useGetEventAttendeeTransfersLogs: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventAttendeeTransfersLogs>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<TransferLog[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5406
+
5407
+ declare const EVENT_ATTENDEE_QUERY_KEY: (eventId: string) => QueryKey;
5408
+ declare const SET_EVENT_ATTENDEE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendee>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5409
+ interface GetEventAttendeeProps extends SingleQueryParams {
5410
+ eventId: string;
5411
+ }
5412
+ declare const GetEventAttendee: ({ eventId, clientApiParams, }: GetEventAttendeeProps) => Promise<ConnectedXMResponse<Registration | null>>;
5413
+ declare const useGetEventAttendee: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendee>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5244
5414
 
5245
5415
  declare const EVENT_FAQ_SECTION_QUERY_KEY: (eventId: string, sectionId: string) => QueryKey;
5246
5416
  declare const SET_EVENT_FAQ_SECTION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFAQSection>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -5278,6 +5448,26 @@ interface GetEventFaqSectionsProps extends InfiniteQueryParams {
5278
5448
  declare const GetEventFaqSections: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventFaqSectionsProps) => Promise<ConnectedXMResponse<FaqSection[]>>;
5279
5449
  declare const useGetEventFaqSections: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventFaqSections>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<FaqSection[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5280
5450
 
5451
+ declare const EVENT_MEDIA_ITEM_QUERY_KEY: (eventId: string, mediaItemId: string, passId: string) => QueryKey;
5452
+ declare const SET_EVENT_IMAGE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_MEDIA_ITEM_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventMediaItem>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5453
+ interface GetEventMediaItemProps extends SingleQueryParams {
5454
+ eventId: string;
5455
+ mediaItemId: string;
5456
+ passId: string;
5457
+ }
5458
+ declare const GetEventMediaItem: ({ eventId, mediaItemId, passId, clientApiParams, }: GetEventMediaItemProps) => Promise<ConnectedXMResponse<EventMediaItem>>;
5459
+ declare const useGetEventMediaItem: (eventId?: string, mediaItemId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventMediaItem>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventMediaItem>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5460
+
5461
+ declare const EVENT_MEDIA_ITEMS_QUERY_KEY: (eventId: string, passId: string, type?: string) => QueryKey;
5462
+ declare const SET_EVENT_MEDIA_ITEMS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_MEDIA_ITEMS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventMediaItems>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5463
+ interface GetEventMediaItemsProps extends InfiniteQueryParams {
5464
+ eventId: string;
5465
+ passId: string;
5466
+ type?: "image" | "video" | "file";
5467
+ }
5468
+ declare const GetEventMediaItems: ({ eventId, passId, type, pageParam, orderBy, search, clientApiParams, }: GetEventMediaItemsProps) => Promise<ConnectedXMResponse<EventMediaItem[]>>;
5469
+ declare const useGetEventMediaItems: (eventId?: string, passId?: string, type?: "image" | "video" | "file", params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventMediaItems>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventMediaItem[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5470
+
5281
5471
  declare const EVENT_PAGE_QUERY_KEY: (eventId: string, pageId: string) => QueryKey;
5282
5472
  declare const SET_EVENT_PAGE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PAGE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPage>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5283
5473
  interface GetEventPageProps extends SingleQueryParams {
@@ -5295,6 +5485,33 @@ interface GetEventPagesProps extends InfiniteQueryParams {
5295
5485
  declare const GetEventPages: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventPagesProps) => Promise<ConnectedXMResponse<BaseEventPage[]>>;
5296
5486
  declare const useGetEventPages: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPages>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BaseEventPage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5297
5487
 
5488
+ declare const EVENT_GROUP_PASSES_INTENT_QUERY_KEY: (eventId: string, ticketId: string, quantity: number, addressId: string) => unknown[];
5489
+ interface GetEventGroupPassesIntentProps extends SingleQueryParams {
5490
+ eventId: string;
5491
+ ticketId: string;
5492
+ quantity: number;
5493
+ addressId: string;
5494
+ }
5495
+ declare const GetEventGroupPassesIntent: ({ eventId, ticketId, quantity, addressId, clientApiParams, }: GetEventGroupPassesIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
5496
+ declare const useGetEventGroupPassesIntent: (eventId?: string, ticketId?: string, quantity?: number, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventGroupPassesIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5497
+
5498
+ declare const EVENT_REGISTRATION_QUERY_KEY: (eventId: string) => unknown[];
5499
+ interface GetEventRegistrationProps extends SingleQueryParams {
5500
+ eventId: string;
5501
+ }
5502
+ declare const GetEventRegistration: ({ eventId, clientApiParams, }: GetEventRegistrationProps) => Promise<Awaited<ConnectedXMResponse<RegistrationDraft>>>;
5503
+ declare const useGetEventRegistration: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationDraft>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5504
+
5505
+ declare const EVENT_REGISTRATION_INTENT_QUERY_KEY: (eventId: string, draftHash: string, addressId?: string, split?: boolean) => unknown[];
5506
+ interface GetEventRegistrationIntentProps extends SingleQueryParams {
5507
+ eventId: string;
5508
+ draft: RegistrationDraft;
5509
+ addressId: string;
5510
+ split: boolean;
5511
+ }
5512
+ declare const GetEventRegistrationIntent: ({ eventId, draft, addressId, split, clientApiParams, }: GetEventRegistrationIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
5513
+ declare const useGetEventRegistrationIntent: (eventId: string | undefined, draft: RegistrationDraft, draftHash: string, addressId?: string, split?: boolean, options?: SingleQueryOptions<ReturnType<typeof GetEventRegistrationIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5514
+
5298
5515
  interface SessionWithSupplyAndCanRegister extends Session {
5299
5516
  supply?: number | null;
5300
5517
  canRegister: boolean;
@@ -5308,23 +5525,6 @@ interface GetEventSessionsProps extends SingleQueryParams {
5308
5525
  declare const GetEventSessions: ({ eventId, passId, clientApiParams, }: GetEventSessionsProps) => Promise<ConnectedXMResponse<SessionWithSupplyAndCanRegister[]>>;
5309
5526
  declare const useGetEventSessions: (eventId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessions>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SessionWithSupplyAndCanRegister[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5310
5527
 
5311
- declare const EVENT_REGISTRANTS_QUERY_KEY: (eventId: string) => QueryKey;
5312
- declare const SET_EVENT_REGISTRANTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_REGISTRANTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessions>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5313
- interface GetEventRegistrantsProps extends InfiniteQueryParams {
5314
- eventId: string;
5315
- }
5316
- declare const GetEventRegistrants: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventRegistrantsProps) => Promise<ConnectedXMResponse<Account[]>>;
5317
- declare const useGetEventRegistrants: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRegistrants>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5318
-
5319
- declare const EVENTS_QUERY_KEY: (past?: boolean, featured?: boolean) => QueryKey;
5320
- declare const SET_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5321
- interface GetEventsProps extends InfiniteQueryParams {
5322
- past?: boolean;
5323
- featured?: boolean;
5324
- }
5325
- declare const GetEvents: ({ pageParam, pageSize, orderBy, search, past, featured, clientApiParams, }: GetEventsProps) => Promise<ConnectedXMResponse<BaseEvent[]>>;
5326
- declare const useGetEvents: (past?: boolean, featured?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEvents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BaseEvent[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5327
-
5328
5528
  declare const EVENT_SPEAKER_QUERY_KEY: (eventId: string, speakerId: string) => QueryKey;
5329
5529
  declare const SET_EVENT_SPEAKER_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPEAKER_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSpeaker>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5330
5530
  interface GetEventSpeakerProps extends SingleQueryParams {
@@ -5350,38 +5550,14 @@ interface GetEventSponsorsProps extends InfiniteQueryParams {
5350
5550
  declare const GetEventSponsors: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
5351
5551
  declare const useGetEventSponsors: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSponsors>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5352
5552
 
5353
- declare const EVENT_ACTIVATION_QUERY_KEY: (eventId: string, passId: string, activationId: string) => QueryKey;
5354
- declare const SET_EVENT_ACTIVATION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ACTIVATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventActivation>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5355
- interface GetEventActivationProps extends SingleQueryParams {
5356
- eventId: string;
5357
- passId: string;
5358
- activationId: string;
5359
- }
5360
- declare const GetEventActivation: ({ eventId, passId, activationId, clientApiParams, }: GetEventActivationProps) => Promise<ConnectedXMResponse<EventActivation>>;
5361
- declare const useGetEventActivation: (eventId: string | undefined, passId: string | undefined, activationId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventActivation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventActivation>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5362
-
5363
- declare const EVENT_ACTIVATIONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
5364
- declare const SET_EVENT_ACTIVATIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ACTIVATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventActivations>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5365
- interface GetEventActivationsProps extends InfiniteQueryParams {
5366
- eventId: string;
5367
- passId: string;
5368
- }
5369
- declare const GetEventActivations: ({ eventId, passId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventActivationsProps) => Promise<ConnectedXMResponse<EventActivation[]>>;
5370
- declare const useGetEventActivations: (eventId?: string, passId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventActivations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventActivation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5371
-
5372
- declare const EVENT_ACTIVATION_SUMMARY_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
5373
- interface GetEventActivationSummaryProps extends SingleQueryParams {
5553
+ declare const EVENT_SPONSORSHIP_QUERY_KEY: (eventId: string, sponsorshipId: string) => QueryKey;
5554
+ declare const SET_EVENT_SPONSORSHIP_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPONSORSHIP_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSponsorship>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5555
+ interface GetEventSponsorshipProps extends SingleQueryParams {
5374
5556
  eventId: string;
5375
- passId: string;
5557
+ sponsorshipId: string;
5376
5558
  }
5377
- declare const GetEventActivationSummary: ({ eventId, passId, clientApiParams, }: GetEventActivationSummaryProps) => Promise<ConnectedXMResponse<{
5378
- total: number;
5379
- completed: number;
5380
- }>>;
5381
- declare const useGetEventActivationSummary: (eventId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventActivationSummary>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<{
5382
- total: number;
5383
- completed: number;
5384
- }>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5559
+ declare const GetEventSponsorship: ({ eventId, sponsorshipId, clientApiParams, }: GetEventSponsorshipProps) => Promise<ConnectedXMResponse<EventSponsorship>>;
5560
+ declare const useGetEventSponsorship: (eventId?: string, sponsorshipId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorship>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorship>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5385
5561
 
5386
5562
  declare const EVENT_SPONSORSHIP_LEVELS_QUERY_KEY: (eventId: string) => QueryKey;
5387
5563
  declare const SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPONSORSHIP_LEVELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSponsorshipLevels>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -5391,54 +5567,47 @@ interface GetEventSponsorshipLevelsProps extends SingleQueryParams {
5391
5567
  declare const GetEventSponsorshipLevels: ({ eventId, clientApiParams, }: GetEventSponsorshipLevelsProps) => Promise<ConnectedXMResponse<EventSponsorshipLevel[]>>;
5392
5568
  declare const useGetEventSponsorshipLevels: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorshipLevels>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorshipLevel[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5393
5569
 
5394
- declare const EVENT_SPONSORSHIP_QUERY_KEY: (eventId: string, sponsorshipId: string) => QueryKey;
5395
- declare const SET_EVENT_SPONSORSHIP_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPONSORSHIP_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSponsorship>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5396
- interface GetEventSponsorshipProps extends SingleQueryParams {
5570
+ declare const EVENT_QUERY_KEY: (eventId: string) => QueryKey;
5571
+ declare const SET_EVENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5572
+ interface GetEventProps extends SingleQueryParams {
5397
5573
  eventId: string;
5398
- sponsorshipId: string;
5399
5574
  }
5400
- declare const GetEventSponsorship: ({ eventId, sponsorshipId, clientApiParams, }: GetEventSponsorshipProps) => Promise<ConnectedXMResponse<EventSponsorship>>;
5401
- declare const useGetEventSponsorship: (eventId?: string, sponsorshipId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorship>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorship>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5575
+ declare const GetEvent: ({ eventId, clientApiParams, }: GetEventProps) => Promise<ConnectedXMResponse<Event>>;
5576
+ declare const useGetEvent: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEvent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Event>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5402
5577
 
5403
- declare const EVENT_MEDIA_ITEMS_QUERY_KEY: (eventId: string, passId: string, type?: string) => QueryKey;
5404
- declare const SET_EVENT_MEDIA_ITEMS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_MEDIA_ITEMS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventMediaItems>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5405
- interface GetEventMediaItemsProps extends InfiniteQueryParams {
5406
- eventId: string;
5407
- passId: string;
5408
- type?: "image" | "video" | "file";
5578
+ declare const EVENTS_QUERY_KEY: (past?: boolean, featured?: boolean) => QueryKey;
5579
+ declare const SET_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5580
+ interface GetEventsProps extends InfiniteQueryParams {
5581
+ past?: boolean;
5582
+ featured?: boolean;
5409
5583
  }
5410
- declare const GetEventMediaItems: ({ eventId, passId, type, pageParam, orderBy, search, clientApiParams, }: GetEventMediaItemsProps) => Promise<ConnectedXMResponse<EventMediaItem[]>>;
5411
- declare const useGetEventMediaItems: (eventId?: string, passId?: string, type?: "image" | "video" | "file", params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventMediaItems>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventMediaItem[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5584
+ declare const GetEvents: ({ pageParam, pageSize, orderBy, search, past, featured, clientApiParams, }: GetEventsProps) => Promise<ConnectedXMResponse<BaseEvent[]>>;
5585
+ declare const useGetEvents: (past?: boolean, featured?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEvents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BaseEvent[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5412
5586
 
5413
- declare const EVENT_MEDIA_ITEM_QUERY_KEY: (eventId: string, mediaItemId: string, passId: string) => QueryKey;
5414
- declare const SET_EVENT_IMAGE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_MEDIA_ITEM_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventMediaItem>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5415
- interface GetEventMediaItemProps extends SingleQueryParams {
5587
+ declare const EVENT_ACTIVITIES_QUERY_KEY: (eventId: string, featured?: boolean) => QueryKey;
5588
+ declare const SET_EVENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventActivities>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5589
+ interface GetEventActivitiesProps extends InfiniteQueryParams {
5416
5590
  eventId: string;
5417
- mediaItemId: string;
5418
- passId: string;
5591
+ featured?: boolean;
5419
5592
  }
5420
- declare const GetEventMediaItem: ({ eventId, mediaItemId, passId, clientApiParams, }: GetEventMediaItemProps) => Promise<ConnectedXMResponse<EventMediaItem>>;
5421
- declare const useGetEventMediaItem: (eventId?: string, mediaItemId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventMediaItem>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventMediaItem>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5593
+ declare const GetEventActivities: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, featured, }: GetEventActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
5594
+ declare const useGetEventActivities: (eventId?: string, featured?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5422
5595
 
5423
- declare const EVENT_SESSION_PASS_SECTIONS_QUERY_KEY: (eventId: string, sessionId: string, passId: string) => QueryKey;
5424
- declare const SET_EVENT_SESSION_PASS_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SESSION_PASS_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessionPassSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5425
- interface GetEventSessionPassSectionsProps extends SingleQueryParams {
5596
+ declare const EVENT_CONFIG_QUERY_KEY: (eventId: string) => QueryKey;
5597
+ declare const SET_EVENT_CONFIG_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_CONFIG_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventConfig>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5598
+ interface GetEventConfigProps extends SingleQueryParams {
5426
5599
  eventId: string;
5427
- sessionId: string;
5428
- passId: string;
5429
5600
  }
5430
- declare const GetEventSessionPassSections: ({ eventId, sessionId, passId, clientApiParams, }: GetEventSessionPassSectionsProps) => Promise<ConnectedXMResponse<EventSessionSection[]>>;
5431
- declare const useGetEventSessionPassSections: (eventId: string, sessionId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionPassSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5601
+ declare const GetEventConfig: ({ eventId, clientApiParams, }: GetEventConfigProps) => Promise<ConnectedXMResponse<EventConfig>>;
5602
+ declare const useGetEventConfig: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventConfig>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventConfig>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5432
5603
 
5433
- declare const EVENT_SESSION_PASS_INTENT_QUERY_KEY: (eventId: string, sessionId: string, passId: string, addressId?: string) => QueryKey;
5434
- interface GetEventSessionPassIntentProps extends SingleQueryParams {
5604
+ declare const EVENT_REGISTRANTS_QUERY_KEY: (eventId: string) => QueryKey;
5605
+ declare const SET_EVENT_REGISTRANTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_REGISTRANTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessions>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5606
+ interface GetEventRegistrantsProps extends InfiniteQueryParams {
5435
5607
  eventId: string;
5436
- sessionId: string;
5437
- passId: string;
5438
- addressId: string;
5439
5608
  }
5440
- declare const GetEventSessionPassIntent: ({ eventId, sessionId, passId, addressId, clientApiParams, }: GetEventSessionPassIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
5441
- declare const useGetEventSessionPassIntent: (eventId?: string, sessionId?: string, passId?: string, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionPassIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5609
+ declare const GetEventRegistrants: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventRegistrantsProps) => Promise<ConnectedXMResponse<Account[]>>;
5610
+ declare const useGetEventRegistrants: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRegistrants>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5442
5611
 
5443
5612
  interface EventsExploreData {
5444
5613
  featuredEvents: BaseEvent[];
@@ -5455,33 +5624,6 @@ interface GetEventsExploreProps extends SingleQueryParams {
5455
5624
  declare const GetEventsExplore: ({ clientApiParams, }: GetEventsExploreProps) => Promise<ConnectedXMResponse<EventsExploreData>>;
5456
5625
  declare const useGetEventsExplore: (options?: SingleQueryOptions<ReturnType<typeof GetEventsExplore>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventsExploreData>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5457
5626
 
5458
- declare const EVENT_REGISTRATION_QUERY_KEY: (eventId: string) => unknown[];
5459
- interface GetEventRegistrationProps extends SingleQueryParams {
5460
- eventId: string;
5461
- }
5462
- declare const GetEventRegistration: ({ eventId, clientApiParams, }: GetEventRegistrationProps) => Promise<Awaited<ConnectedXMResponse<RegistrationDraft>>>;
5463
- declare const useGetEventRegistration: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationDraft>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5464
-
5465
- declare const EVENT_REGISTRATION_INTENT_QUERY_KEY: (eventId: string, draftHash: string, addressId?: string, split?: boolean) => unknown[];
5466
- interface GetEventRegistrationIntentProps extends SingleQueryParams {
5467
- eventId: string;
5468
- draft: RegistrationDraft;
5469
- addressId: string;
5470
- split: boolean;
5471
- }
5472
- declare const GetEventRegistrationIntent: ({ eventId, draft, addressId, split, clientApiParams, }: GetEventRegistrationIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
5473
- declare const useGetEventRegistrationIntent: (eventId: string | undefined, draft: RegistrationDraft, draftHash: string, addressId?: string, split?: boolean, options?: SingleQueryOptions<ReturnType<typeof GetEventRegistrationIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5474
-
5475
- declare const EVENT_PASS_SESSIONS_INTENT_QUERY_KEY: (eventId: string, passId: string, addressId: string, sessionIds: string[]) => QueryKey;
5476
- interface GetEventPassSessionsIntentProps extends SingleQueryParams {
5477
- eventId: string;
5478
- passId: string;
5479
- sessionIds: string[];
5480
- addressId: string;
5481
- }
5482
- declare const GetEventPassSessionsIntent: ({ eventId, passId, sessionIds, addressId, clientApiParams, }: GetEventPassSessionsIntentProps) => Promise<ConnectedXMResponse<PaymentIntent>>;
5483
- declare const useGetEventPassSessionsIntent: (eventId: string | undefined, passId: string | undefined, addressId: string | undefined, sessionIds: string[], options?: SingleQueryOptions<ReturnType<typeof GetEventPassSessionsIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5484
-
5485
5627
  declare const GROUPS_QUERY_KEY: (access?: "public" | "private") => QueryKey;
5486
5628
  declare const SET_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroups>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5487
5629
  interface GetGroupsProps extends InfiniteQueryParams {
@@ -5935,180 +6077,6 @@ interface GetSelfChatChannelsProps extends InfiniteQueryParams {
5935
6077
  declare const GetSelfChatChannels: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfChatChannelsProps) => Promise<ConnectedXMResponse<ChatChannelMember[]>>;
5936
6078
  declare const useGetSelfChatChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChatChannelMember[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5937
6079
 
5938
- declare const SELF_EVENT_REGISTRATION_QUERY_KEY: (eventId: string) => QueryKey;
5939
- declare const SET_SELF_EVENT_REGISTRATION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistration>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5940
- interface GetSelfEventRegistrationProps extends SingleQueryParams {
5941
- eventId: string;
5942
- }
5943
- declare const GetSelfEventRegistration: ({ eventId, clientApiParams, }: GetSelfEventRegistrationProps) => Promise<ConnectedXMResponse<Registration>>;
5944
- declare const useGetSelfEventRegistration: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5945
-
5946
- declare const SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY: (eventId: string, passTypeId?: string) => QueryKey;
5947
- declare const SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationPassTypes>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5948
- interface GetSelfEventRegistrationPassTypesProps extends SingleQueryParams {
5949
- eventId: string;
5950
- passTypeId?: string;
5951
- }
5952
- declare const GetSelfEventRegistrationPassTypes: ({ eventId, passTypeId, clientApiParams, }: GetSelfEventRegistrationPassTypesProps) => Promise<ConnectedXMResponse<{
5953
- passTypes: PassType[];
5954
- packages: EventPackage[];
5955
- }>>;
5956
- declare const useGetSelfEventRegistrationPassTypes: (eventId?: string, passTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPassTypes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<{
5957
- passTypes: PassType[];
5958
- packages: EventPackage[];
5959
- }>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5960
-
5961
- declare const SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY: (eventId: string, ticketId: string, quantity: number, addressId: string) => unknown[];
5962
- interface GetSelfEventTicketCouponIntentProps extends SingleQueryParams {
5963
- eventId: string;
5964
- ticketId: string;
5965
- quantity: number;
5966
- addressId: string;
5967
- }
5968
- declare const GetSelfEventTicketCouponIntent: ({ eventId, ticketId, quantity, addressId, clientApiParams, }: GetSelfEventTicketCouponIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
5969
- declare const useGetSelfEventTicketCouponIntent: (eventId?: string, ticketId?: string, quantity?: number, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventTicketCouponIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5970
-
5971
- declare const SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY: (eventId: string, paymentId: string) => QueryKey;
5972
- declare const SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePayment>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5973
- interface GetSelfEventAttendeePaymentProps extends SingleQueryParams {
5974
- eventId: string;
5975
- paymentId: string;
5976
- }
5977
- declare const GetSelfEventAttendeePayment: ({ eventId, paymentId, clientApiParams, }: GetSelfEventAttendeePaymentProps) => Promise<ConnectedXMResponse<Payment>>;
5978
- declare const useGetSelfEventAttendeePayment: (eventId: string, paymentId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePayment>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Payment>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5979
-
5980
- declare const SELF_EVENT_ATTENDEE_PAYMENTS_QUERY_KEY: (eventId: string) => QueryKey;
5981
- interface GetSelfEventAttendeePaymentsProps extends InfiniteQueryParams {
5982
- eventId: string;
5983
- }
5984
- declare const GetSelfEventAttendeePayments: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventAttendeePaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
5985
- declare const useGetSelfEventAttendeePayments: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventAttendeePayments>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Payment[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5986
-
5987
- declare const SELF_EVENT_ATTENDEE_PASS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
5988
- declare const SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PASS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePass>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5989
- interface GetSelfEventAttendeePassProps extends SingleQueryParams {
5990
- eventId: string;
5991
- passId: string;
5992
- }
5993
- declare const GetSelfEventAttendeePass: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassProps) => Promise<ConnectedXMResponse<Pass>>;
5994
- declare const useGetSelfEventAttendeePass: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5995
-
5996
- declare const SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY: (eventId: string, passId: string, addressId: string, addOnIds: string[]) => QueryKey;
5997
- interface GetSelfEventAttendeePassAddOnsIntentProps extends SingleQueryParams {
5998
- eventId: string;
5999
- passId: string;
6000
- addOnIds: string[];
6001
- addressId: string;
6002
- }
6003
- declare const GetSelfEventAttendeePassAddOnsIntent: ({ eventId, passId, addOnIds, addressId, clientApiParams, }: GetSelfEventAttendeePassAddOnsIntentProps) => Promise<ConnectedXMResponse<PaymentIntent>>;
6004
- declare const useGetSelfEventAttendeePassAddOnsIntent: (eventId: string | undefined, passId: string | undefined, addressId: string | undefined, addOnIds: string[], options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassAddOnsIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6005
-
6006
- declare const SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY: (eventId: string, couponId: string) => QueryKey;
6007
- declare const SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeeCoupon>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
6008
- interface GetSelfEventAttendeeCouponProps extends SingleQueryParams {
6009
- eventId: string;
6010
- couponId: string;
6011
- }
6012
- declare const GetSelfEventAttendeeCoupon: ({ eventId, couponId, clientApiParams, }: GetSelfEventAttendeeCouponProps) => Promise<ConnectedXMResponse<ManagedCoupon>>;
6013
- declare const useGetSelfEventAttendeeCoupon: (eventId?: string, couponId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeeCoupon>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ManagedCoupon>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6014
-
6015
- declare const SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY: (eventId: string, couponId: string) => QueryKey;
6016
- interface GetSelfEventAttendeeCouponPassesProps extends InfiniteQueryParams {
6017
- eventId: string;
6018
- couponId: string;
6019
- }
6020
- declare const GetSelfEventAttendeeCouponPasses: ({ eventId, couponId, clientApiParams, }: GetSelfEventAttendeeCouponPassesProps) => Promise<ConnectedXMResponse<ManagedCouponPass[]>>;
6021
- declare const useGetSelfEventAttendeeCouponPasses: (eventId?: string, couponId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventAttendeeCouponPasses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ManagedCouponPass[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6022
-
6023
- declare const SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY: (eventId: string) => QueryKey;
6024
- interface GetSelfEventAttendeeCouponsProps extends InfiniteQueryParams {
6025
- eventId: string;
6026
- }
6027
- declare const GetSelfEventAttendeeCoupons: ({ eventId, clientApiParams, }: GetSelfEventAttendeeCouponsProps) => Promise<ConnectedXMResponse<ManagedCoupon[]>>;
6028
- declare const useGetSelfEventAttendeeCoupons: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventAttendeeCoupons>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ManagedCoupon[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6029
-
6030
- declare const SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY: (eventId: string) => QueryKey;
6031
- interface GetSelfEventAttendeeTransfersLogsProps extends InfiniteQueryParams {
6032
- eventId: string;
6033
- }
6034
- declare const GetSelfEventAttendeeTransfersLogs: ({ pageParam, pageSize, orderBy, search, eventId, clientApiParams, }: GetSelfEventAttendeeTransfersLogsProps) => Promise<ConnectedXMResponse<TransferLog[]>>;
6035
- declare const useGetSelfEventAttendeeTransfersLogs: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventAttendeeTransfersLogs>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<TransferLog[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6036
-
6037
- declare const SELF_EVENT_ATTENDEE_QUERY_KEY: (eventId: string) => QueryKey;
6038
- declare const SET_SELF_EVENT_ATTENDEE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendee>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
6039
- interface GetSelfEventAttendeeProps extends SingleQueryParams {
6040
- eventId: string;
6041
- }
6042
- declare const GetSelfEventAttendee: ({ eventId, clientApiParams, }: GetSelfEventAttendeeProps) => Promise<ConnectedXMResponse<Registration | null>>;
6043
- declare const useGetSelfEventAttendee: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendee>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6044
-
6045
- declare const SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
6046
- declare const SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePassQuestionSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
6047
- interface GetSelfEventAttendeePassQuestionSectionsProps extends SingleQueryParams {
6048
- eventId: string;
6049
- passId: string;
6050
- }
6051
- declare const GetSelfEventAttendeePassQuestionSections: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassQuestionSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
6052
- declare const useGetSelfEventAttendeePassQuestionSections: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassQuestionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6053
-
6054
- declare const SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
6055
- declare const SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePassQuestionFollowups>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
6056
- interface GetSelfEventAttendeePassQuestionFollowupsProps extends SingleQueryParams {
6057
- eventId: string;
6058
- passId: string;
6059
- }
6060
- declare const GetSelfEventAttendeePassQuestionFollowups: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassQuestionFollowupsProps) => Promise<ConnectedXMResponse<RegistrationFollowup[]>>;
6061
- declare const useGetSelfEventAttendeePassQuestionFollowups: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassQuestionFollowups>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationFollowup[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6062
-
6063
- declare const SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY: (eventId: string, passId: string, followupId: string) => QueryKey;
6064
- declare const SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePassQuestionFollowup>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
6065
- interface GetSelfEventAttendeePassQuestionFollowupProps extends SingleQueryParams {
6066
- eventId: string;
6067
- passId: string;
6068
- followupId: string;
6069
- }
6070
- declare const GetSelfEventAttendeePassQuestionFollowup: ({ eventId, passId, followupId, clientApiParams, }: GetSelfEventAttendeePassQuestionFollowupProps) => Promise<ConnectedXMResponse<RegistrationFollowup>>;
6071
- declare const useGetSelfEventAttendeePassQuestionFollowup: (eventId: string, passId: string, followupId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassQuestionFollowup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationFollowup>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6072
-
6073
- declare const SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
6074
- declare const SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePassAddOns>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
6075
- interface GetSelfEventAttendeePassAddOnsProps extends SingleQueryParams {
6076
- eventId: string;
6077
- passId: string;
6078
- }
6079
- declare const GetSelfEventAttendeePassAddOns: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassAddOnsProps) => Promise<ConnectedXMResponse<EventAddOn[]>>;
6080
- declare const useGetSelfEventAttendeePassAddOns: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6081
-
6082
- declare const SELF_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY: (eventId: string, passId: string, search: string) => QueryKey;
6083
- declare const SET_TRANSFER_ACCOUNTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY>, response: ReturnType<typeof GetSelfEventAttendeeTransferAccounts>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
6084
- interface GetSelfEventAttendeeTransferAccountsProps extends SingleQueryParams {
6085
- eventId: string;
6086
- passId: string;
6087
- search: string;
6088
- }
6089
- declare const GetSelfEventAttendeeTransferAccounts: ({ eventId, passId, search, clientApiParams, }: GetSelfEventAttendeeTransferAccountsProps) => Promise<ConnectedXMResponse<Account[]>>;
6090
- declare const useGetSelfEventAttendeeTransferAccounts: (eventId: string, passId: string, search: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeeTransferAccounts>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Account[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6091
-
6092
- declare const SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY: (eventId: string, passId: string, sessionId: string) => QueryKey;
6093
- declare const SET_SELF_EVENT_ATTENDEE_ACCESS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeeAccess>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
6094
- interface GetSelfEventAttendeeAccessProps extends SingleQueryParams {
6095
- eventId: string;
6096
- passId: string;
6097
- sessionId: string;
6098
- }
6099
- declare const GetSelfEventAttendeeAccess: ({ eventId, passId, sessionId, clientApiParams, }: GetSelfEventAttendeeAccessProps) => Promise<ConnectedXMResponse<EventSessionAccess>>;
6100
- declare const useGetSelfEventAttendeeAccess: (eventId: string, passId: string, sessionId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeeAccess>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionAccess>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6101
-
6102
- declare const SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, passId: string, sessionId: string) => QueryKey;
6103
- declare const SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeeAccessQuestionSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
6104
- interface GetSelfEventAttendeeAccessQuestionSectionsProps extends SingleQueryParams {
6105
- eventId: string;
6106
- sessionId: string;
6107
- passId: string;
6108
- }
6109
- declare const GetSelfEventAttendeeAccessQuestionSections: ({ eventId, sessionId, passId, clientApiParams, }: GetSelfEventAttendeeAccessQuestionSectionsProps) => Promise<ConnectedXMResponse<EventSessionSection[]>>;
6110
- declare const useGetSelfEventAttendeeAccessQuestionSections: (eventId: string, passId: string, sessionId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeeAccessQuestionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6111
-
6112
6080
  declare const SELF_QUERY_KEY: (ignoreExecuteAs?: boolean) => QueryKey;
6113
6081
  declare const SET_SELF_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelf>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
6114
6082
  interface GetSelfProps extends SingleQueryParams {
@@ -6548,4 +6516,4 @@ declare const GetSupportTicketActivityLog: ({ supportTicketId, pageParam, pageSi
6548
6516
  */
6549
6517
  declare const useGetSupportTicketActivityLog: (supportTicketId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSupportTicketActivityLog>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<SupportTicketActivityLog[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6550
6518
 
6551
- export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_FOLLOW_STATS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountAttribute, AccountAttributeType, type AccountAttributeValue, type AccountShare, type AccountTier, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityLike, ActivityPreference, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddLogin, type AddLoginParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadCircleAccount, type AddThreadCircleAccountParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, ApplyEventRegistrationCoupon, type ApplyEventRegistrationCouponParams, type AttendeePackage, BENEFITS_QUERY_KEY, BOOKINGS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_SPACES_QUERY_KEY, BOOKING_PLACE_SPACE_QUERY_KEY, BOOKING_PLACE_SPACE_QUESTIONS_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountAttribute, type BaseAccountAttributeValue, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlock, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingQuestionResponse, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseBookingSpaceQuestion, type BaseBookingSpaceQuestionChoice, type BaseBookingSpaceQuestionChoiceTranslation, type BaseBookingSpaceQuestionTranslation, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionSection, type BaseEventSessionTime, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseLinkPreview, type BaseLogin, type BaseMatch, type BaseMeeting, type BaseNotification, type BaseOrgMembership, type BaseOrganization, type BasePass, type BasePassAddon, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntegration, type BasePaymentIntent, type BasePaymentLineItem, type BaseRegistrationFollowup, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationSection, type BaseRoom, type BaseRound, type BaseScan, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, type BaseSelf, type BaseSeries, type BaseSeriesQuestion, type BaseSeriesQuestionChoice, type BaseSeriesRegistration, type BaseSeriesRegistrationQuestionResponse, type BaseSession, type BaseSessionBookmark, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSupportTicket, type BaseSupportTicketActivityLog, type BaseSupportTicketMessage, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveySection, type BaseSurveySubmission, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadViewer, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseUser, type BaseVideo, type Benefit, type Block, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingQuestionResponse, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceQuestion, type BookingSpaceQuestionChoice, type BookingSpaceQuestionChoiceTranslation, type BookingSpaceQuestionTranslation, BookingSpaceQuestionType, type BookingSpaceSlot, BookmarkEventAttendeePassSession, type BookmarkEventAttendeePassSessionParams, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIBERS_QUERY_KEY, CONTENTS_EXPLORE_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPass, type CancelPassParams, CancelSelfEventSessionAccess, type CancelSelfEventSessionAccessParams, CancelSeriesRegistration, type CancelSeriesRegistrationParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckLogin, type CheckLoginParams, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, ConnectedProvider, type ConnectedXMError, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type ContentsExploreData, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, type CreateChannelCollectionPayload, CreateChannelContent, type CreateChannelContentParams, type CreateChannelContentPayload, type CreateChannelParams, type CreateChannelPayload, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, type CreateContentGuestPayload, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingInput, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateLoginAccount, type CreateLoginAccountAccount, type CreateLoginAccountParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateStreamChatMessage, type CreateStreamChatMessageParams, CreateSupportTicket, CreateSupportTicketMessage, type CreateSupportTicketMessageParams, type CreateSupportTicketParams, CreateThreadMessage, type CreateThreadMessageParams, type CursorQueryOptions, type CursorQueryParams, DayOfWeek, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteStreamChatMessage, type DeleteStreamChatMessageParams, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_ADDRESS_VALIDATION_REQUIRED, ERR_BANNED_USER, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_NO_ACCOUNT_SELECTED, ERR_NO_BOOKING_FOUND, ERR_NO_PASS_SELECTED, ERR_PRIVATE_CHANNEL, ERR_REGISTER_THROUGH_SERIES, ERR_REGISTRATION_UNAVAILABLE, ERR_TIER_REQUIRED, EVENTS_EXPLORE_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SUMMARY_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_CONFIG_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_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_PASS_SESSIONS_INTENT_QUERY_KEY, EVENT_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_REGISTRATION_INTENT_QUERY_KEY, EVENT_REGISTRATION_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_PASS_INTENT_QUERY_KEY, EVENT_SESSION_PASS_SECTIONS_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, EventActivationRewardType, EventActivationType, type EventAddOn, EventAgendaVisibility, type EventAllowlistMember, type EventConfig, type EventEmail, EventEmailType, type EventListing, type EventMediaItem, type EventPackage, type EventPackagePass, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, type EventSessionAccess, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionResponse, EventSessionQuestionType, type EventSessionSection, type EventSessionTime, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, type EventsExploreData, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_EXPLORE_QUERY_KEY, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowStats, type GetAccountFollowStatsProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, GetActivityLikes, type GetActivityLikesProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetBooking, GetBookingIntent, type GetBookingIntentProps, GetBookingPlace, type GetBookingPlaceProps, GetBookingPlaceSpace, type GetBookingPlaceSpaceProps, GetBookingPlaceSpaceSlots, type GetBookingPlaceSpaceSlotsProps, GetBookingPlaces, type GetBookingPlacesParams, GetBookingPlacesSpaces, type GetBookingPlacesSpacesProps, type GetBookingProps, GetBookingSpaceQuestions, type GetBookingSpaceQuestionsProps, GetBookings, type GetBookingsParams, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannelSubscribers, type GetChannelSubscribersParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContents, GetContentsExplore, type GetContentsExploreProps, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventConfig, type GetEventConfigProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, GetEventPassSessionsIntent, type GetEventPassSessionsIntentProps, type GetEventProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventRegistration, GetEventRegistrationIntent, type GetEventRegistrationIntentProps, type GetEventRegistrationProps, GetEventSessionPassIntent, type GetEventSessionPassIntentProps, GetEventSessionPassSections, type GetEventSessionPassSectionsProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, GetEvents, GetEventsExplore, type GetEventsExploreProps, type GetEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsExplore, type GetGroupsExploreProps, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetImage, type GetImageProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterest, GetInterestActivities, type GetInterestActivitiesProps, type GetInterestProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, GetInvoicePayments, type GetInvoicePaymentsProps, type GetInvoiceProps, GetInvoices, type GetInvoicesProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetLogin, type GetLoginProps, GetMeeting, type GetMeetingProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, type GetOrganizationParams, GetPayment, type GetPaymentProps, GetPayments, type GetPaymentsProps, GetSearchList, type GetSearchListProps, GetSearchListValues, type GetSearchListValuesProps, GetSearchLists, type GetSearchListsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChannelSubscriber, type GetSelfChannelSubscriberParams, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfEventAttendee, GetSelfEventAttendeeAccess, type GetSelfEventAttendeeAccessProps, GetSelfEventAttendeeAccessQuestionSections, type GetSelfEventAttendeeAccessQuestionSectionsProps, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionFollowup, type GetSelfEventAttendeePassQuestionFollowupProps, GetSelfEventAttendeePassQuestionFollowups, type GetSelfEventAttendeePassQuestionFollowupsProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, GetSelfEventAttendeePayments, type GetSelfEventAttendeePaymentsProps, type GetSelfEventAttendeeProps, GetSelfEventAttendeeTransferAccounts, type GetSelfEventAttendeeTransferAccountsProps, GetSelfEventAttendeeTransfersLogs, type GetSelfEventAttendeeTransfersLogsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingAttendees, type GetSelfEventListingAttendeesProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, GetSelfEventListingPass, type GetSelfEventListingPassProps, GetSelfEventListingPasses, type GetSelfEventListingPassesProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationPassTypes, type GetSelfEventRegistrationPassTypesProps, type GetSelfEventRegistrationProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, GetSelfLeadCounts, type GetSelfLeadCountsProps, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfLogins, type GetSelfLoginsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, GetSelfProfile, type GetSelfProfileProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSeriesRegistration, GetSeriesRegistrationIntent, type GetSeriesRegistrationIntentProps, type GetSeriesRegistrationProps, GetSeriesRegistrationQuestions, type GetSeriesRegistrationQuestionsProps, GetStreamChatMessages, type GetStreamChatMessagesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSupportTicket, GetSupportTicketActivityLog, GetSupportTicketMessages, GetSupportTickets, GetSurvey, type GetSurveyProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetSurveys, type GetSurveysProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetUsernameAvailability, type GetUsernameAvailabilityProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, type GroupsExploreData, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_PAYMENTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InterestInput, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, JoinMeetingViaActivity, type JoinMeetingViaActivityParams, JoinMeetingViaBooking, type JoinMeetingViaBookingParams, JoinMeetingViaCode, type JoinMeetingViaCodeParams, JoinMeetingViaEvent, type JoinMeetingViaEventParams, JoinMeetingViaGroup, type JoinMeetingViaGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, LOGIN_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, LocationQuestionOption, type Login, MEETING_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type Meeting, MeetingType, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_QUERY_KEY, type Order, type Organization, OrganizationActivityPreference, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PaymentIntentSource, type PaymentLineItem, PaymentLineItemType, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationDraft, type RegistrationDraftPackage, type RegistrationDraftPass, type RegistrationDraftReservation, type RegistrationFollowup, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveLogin, type RemoveLoginParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, type Room, type Round, SEARCH_LISTS_QUERY_KEY, SEARCH_LIST_QUERY_KEY, SEARCH_LIST_VALUES_QUERY_KEY, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHANNEL_SUBSCRIBER_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY, SELF_EVENT_ATTENDEE_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_LEADS_QUERY_KEY, SELF_LEAD_COUNTS_QUERY_KEY, SELF_LEAD_QUERY_KEY, SELF_LOGINS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PROFILE_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SERIES_REGISTRATION_INTENT_QUERY_KEY, SERIES_REGISTRATION_QUERY_KEY, SERIES_REGISTRATION_QUESTIONS_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_SPACES_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUESTIONS_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CONTENTS_EXPLORE_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_EVENTS_EXPLORE_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_CONFIG_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_IMAGE_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_PASS_SECTIONS_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_GROUPS_EXPLORE_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LOGINS_QUERY_DATA, SET_MEETING_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_PROFILE_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SELF_SURVEY_SUBMISSION_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SERIES_REGISTRATION_QUERY_DATA, SET_SERIES_REGISTRATION_QUESTIONS_QUERY_DATA, SET_STREAM_CHAT_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_ACTIVITY_LOG_QUERY_DATA, SET_SUPPORT_TICKET_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_SURVEYS_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_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_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_USERNAME_AVAILABILITY_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_CHAT_MESSAGES_QUERY_KEY, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_ACTIVITY_LOG_QUERY_KEY, SUPPORT_TICKET_MESSAGES_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, SURVEYS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SearchList, type SearchListValue, type SegmentInput, type Self, type SelfRelationships, type Series, type SeriesQuestion, SeriesQuestionType, type SeriesRegistration, type Session, SessionAccess, type SessionBookmark, type SessionLocation, type SessionPrice, SessionVisibility, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamChatMessage, type StreamInput, SubmitSurvey, type SubmitSurveyParams, type SupportTicket, type SupportTicketActivityLog, SupportTicketActivityLogSource, SupportTicketActivityLogType, type SupportTicketMessage, SupportTicketMessageSource, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, SurveyQuestionType, type SurveySection, SurveyStatus, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, USERNAME_AVAILABILITY_QUERY_KEY, UnblockAccount, type UnblockAccountParams, UnbookmarkEventAttendeePassSession, type UnbookmarkEventAttendeePassSessionParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateActivity, type UpdateActivityParams, UpdateBookingResponses, type UpdateBookingResponsesParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, type UpdateChannelCollectionPayload, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelContentPayload, type UpdateChannelParams, type UpdateChannelPayload, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, type UpdateContentGuestPayload, UpdateEventRegistration, type UpdateEventRegistrationParams, UpdateEventSessionPassResponses, type UpdateEventSessionPassResponsesParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, type UpdateListingValues, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassFollowup, type UpdateSelfEventAttendeePassFollowupParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistration, type UpdateSelfEventRegistrationParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfGroupMembership, type UpdateSelfGroupMembershipParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSeriesRegistrationResponses, type UpdateSeriesRegistrationResponsesParams, UpdateStreamChatMessage, type UpdateStreamChatMessageParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateSurveySearchListResponse, type UpdateSurveySearchListResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, UpsertLinkPreview, type UpsertLinkPreviewParams, type UsernameAvailability, VIDEO_QUERY_KEY, VerifyLoginAccount, type VerifyLoginAccountParams, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddListingCoHost, useAddListingSponsor, useAddLogin, useAddSelfChatChannelMember, useAddSelfEventSession, useAddSelfInterests, useAddThreadCircleAccount, useAddThreadMessageReaction, useApplyEventRegistrationCoupon, useBlockAccount, useBlockIntegration, useBookmarkEventAttendeePassSession, useCancelBooking, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCancelSelfEventSessionAccess, useCancelSeriesRegistration, useCapturePaymentIntent, useCheckLogin, useCheckinListingAttendeePass, useCompleteEventActivation, useConfirmBooking, useConnected, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateLoginAccount, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateStreamChatMessage, useCreateSupportTicket, useCreateSupportTicketMessage, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteStreamChatMessage, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityLikes, useGetAdvertisement, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookingSpaceQuestions, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscribers, useGetChannels, useGetContents, useGetContentsExplore, useGetEvent, useGetEventActivation, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventConfig, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventPassSessionsIntent, useGetEventRegistrants, useGetEventRegistration, useGetEventRegistrationIntent, useGetEventSessionPassIntent, useGetEventSessionPassSections, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetEventsExplore, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsExplore, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetInvoicePayments, useGetInvoices, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingAttendeePassQuestionSections, useGetLogin, useGetMeeting, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetPayment, useGetPayments, useGetSearchList, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChannelSubscriber, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfEventAttendee, useGetSelfEventAttendeeAccess, useGetSelfEventAttendeeAccessQuestionSections, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassQuestionFollowup, useGetSelfEventAttendeePassQuestionFollowups, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeePayments, useGetSelfEventAttendeeTransferAccounts, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationPassTypes, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfLogins, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfProfile, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSeriesRegistration, useGetSeriesRegistrationIntent, useGetSeriesRegistrationQuestions, useGetStreamChatMessages, useGetSubscribedChannels, useGetSubscribedContents, useGetSupportTicket, useGetSupportTicketActivityLog, useGetSupportTicketMessages, useGetSupportTickets, useGetSurvey, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetSurveys, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetUsernameAvailability, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useJoinMeetingViaActivity, useJoinMeetingViaBooking, useJoinMeetingViaCode, useJoinMeetingViaEvent, useJoinMeetingViaGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveLogin, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useTransferPass, useUnblockAccount, useUnbookmarkEventAttendeePassSession, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateActivity, useUpdateBookingResponses, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateEventRegistration, useUpdateEventSessionPassResponses, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassFollowup, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistration, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfGroupMembership, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSeriesRegistrationResponses, useUpdateStreamChatMessage, useUpdateSurveyResponse, useUpdateSurveySearchListResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage, useUpsertLinkPreview, useVerifyLoginAccount };
6519
+ export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_FOLLOW_STATS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountAttribute, AccountAttributeType, type AccountAttributeValue, type AccountShare, type AccountTier, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityLike, ActivityPreference, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddLogin, type AddLoginParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadCircleAccount, type AddThreadCircleAccountParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, ApplyEventRegistrationCoupon, type ApplyEventRegistrationCouponParams, type AttendeePackage, BENEFITS_QUERY_KEY, BOOKINGS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_SPACES_QUERY_KEY, BOOKING_PLACE_SPACE_QUERY_KEY, BOOKING_PLACE_SPACE_QUESTIONS_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountAttribute, type BaseAccountAttributeValue, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlock, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingQuestionResponse, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseBookingSpaceQuestion, type BaseBookingSpaceQuestionChoice, type BaseBookingSpaceQuestionChoiceTranslation, type BaseBookingSpaceQuestionTranslation, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionSection, type BaseEventSessionTime, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseLinkPreview, type BaseLogin, type BaseMatch, type BaseMeeting, type BaseNotification, type BaseOrgMembership, type BaseOrganization, type BasePass, type BasePassAddon, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntegration, type BasePaymentIntent, type BasePaymentLineItem, type BaseRegistrationFollowup, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationSection, type BaseRoom, type BaseRound, type BaseScan, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, type BaseSelf, type BaseSeries, type BaseSeriesQuestion, type BaseSeriesQuestionChoice, type BaseSeriesRegistration, type BaseSeriesRegistrationQuestionResponse, type BaseSession, type BaseSessionBookmark, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSupportTicket, type BaseSupportTicketActivityLog, type BaseSupportTicketMessage, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveySection, type BaseSurveySubmission, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadViewer, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseUser, type BaseVideo, type Benefit, type Block, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingQuestionResponse, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceQuestion, type BookingSpaceQuestionChoice, type BookingSpaceQuestionChoiceTranslation, type BookingSpaceQuestionTranslation, BookingSpaceQuestionType, type BookingSpaceSlot, BookmarkEventAttendeePassSession, type BookmarkEventAttendeePassSessionParams, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIBERS_QUERY_KEY, CONTENTS_EXPLORE_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, CancelEventAttendeePass, CancelEventAttendeePassAccess, type CancelEventAttendeePassAccessParams, type CancelEventAttendeePassParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelSeriesRegistration, type CancelSeriesRegistrationParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckLogin, type CheckLoginParams, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventAttendeePassActivation, type CompleteEventAttendeePassActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, ConnectedProvider, type ConnectedXMError, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type ContentsExploreData, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, type CreateChannelCollectionPayload, CreateChannelContent, type CreateChannelContentParams, type CreateChannelContentPayload, type CreateChannelParams, type CreateChannelPayload, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, type CreateContentGuestPayload, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingInput, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateLoginAccount, type CreateLoginAccountAccount, type CreateLoginAccountParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateStreamChatMessage, type CreateStreamChatMessageParams, CreateSupportTicket, CreateSupportTicketMessage, type CreateSupportTicketMessageParams, type CreateSupportTicketParams, CreateThreadMessage, type CreateThreadMessageParams, type CursorQueryOptions, type CursorQueryParams, DayOfWeek, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteStreamChatMessage, type DeleteStreamChatMessageParams, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_ADDRESS_VALIDATION_REQUIRED, ERR_BANNED_USER, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_NO_ACCOUNT_SELECTED, ERR_NO_BOOKING_FOUND, ERR_NO_PASS_SELECTED, ERR_PRIVATE_CHANNEL, ERR_REGISTER_THROUGH_SERIES, ERR_REGISTRATION_UNAVAILABLE, ERR_TIER_REQUIRED, EVENTS_EXPLORE_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_ATTENDEE_COUPONS_QUERY_KEY, EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, EVENT_ATTENDEE_COUPON_QUERY_KEY, EVENT_ATTENDEE_PASS_ACCESS_QUERY_KEY, EVENT_ATTENDEE_PASS_ACCESS_QUESTION_SECTIONS_QUERY_KEY, EVENT_ATTENDEE_PASS_ACTIVATIONS_QUERY_KEY, EVENT_ATTENDEE_PASS_ACTIVATION_QUERY_KEY, EVENT_ATTENDEE_PASS_ACTIVATION_SUMMARY_QUERY_KEY, EVENT_ATTENDEE_PASS_ADD_ONS_INTENT_QUERY_KEY, EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, EVENT_ATTENDEE_PASS_QUERY_KEY, EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY, EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY, EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, EVENT_ATTENDEE_PASS_SESSIONS_INTENT_QUERY_KEY, EVENT_ATTENDEE_PASS_SESSION_PASS_INTENT_QUERY_KEY, EVENT_ATTENDEE_PASS_SESSION_PASS_QUESTION_SECTIONS_QUERY_KEY, EVENT_ATTENDEE_PAYMENTS_QUERY_KEY, EVENT_ATTENDEE_PAYMENT_QUERY_KEY, EVENT_ATTENDEE_QUERY_KEY, EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY, EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, EVENT_CONFIG_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_GROUP_PASSES_INTENT_QUERY_KEY, EVENT_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_REGISTRATION_INTENT_QUERY_KEY, EVENT_REGISTRATION_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, EventActivationRewardType, EventActivationType, type EventAddOn, EventAgendaVisibility, type EventAllowlistMember, type EventConfig, type EventEmail, EventEmailType, type EventListing, type EventMediaItem, type EventPackage, type EventPackagePass, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, type EventSessionAccess, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionResponse, EventSessionQuestionType, type EventSessionSection, type EventSessionTime, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, type EventsExploreData, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_EXPLORE_QUERY_KEY, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowStats, type GetAccountFollowStatsProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, GetActivityLikes, type GetActivityLikesProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetBooking, GetBookingIntent, type GetBookingIntentProps, GetBookingPlace, type GetBookingPlaceProps, GetBookingPlaceSpace, type GetBookingPlaceSpaceProps, GetBookingPlaceSpaceSlots, type GetBookingPlaceSpaceSlotsProps, GetBookingPlaces, type GetBookingPlacesParams, GetBookingPlacesSpaces, type GetBookingPlacesSpacesProps, type GetBookingProps, GetBookingSpaceQuestions, type GetBookingSpaceQuestionsProps, GetBookings, type GetBookingsParams, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannelSubscribers, type GetChannelSubscribersParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContents, GetContentsExplore, type GetContentsExploreProps, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventAttendee, GetEventAttendeeCoupon, GetEventAttendeeCouponPasses, type GetEventAttendeeCouponPassesProps, type GetEventAttendeeCouponProps, GetEventAttendeeCoupons, type GetEventAttendeeCouponsProps, GetEventAttendeePass, GetEventAttendeePassAccess, type GetEventAttendeePassAccessProps, GetEventAttendeePassAccessQuestionSections, type GetEventAttendeePassAccessQuestionSectionsProps, GetEventAttendeePassActivation, type GetEventAttendeePassActivationProps, GetEventAttendeePassActivationSummary, type GetEventAttendeePassActivationSummaryProps, GetEventAttendeePassActivations, type GetEventAttendeePassActivationsProps, GetEventAttendeePassAddOns, GetEventAttendeePassAddOnsIntent, type GetEventAttendeePassAddOnsIntentProps, type GetEventAttendeePassAddOnsProps, type GetEventAttendeePassProps, GetEventAttendeePassQuestionFollowup, type GetEventAttendeePassQuestionFollowupProps, GetEventAttendeePassQuestionFollowups, type GetEventAttendeePassQuestionFollowupsProps, GetEventAttendeePassQuestionSections, type GetEventAttendeePassQuestionSectionsProps, GetEventAttendeePassSessionPassIntent, type GetEventAttendeePassSessionPassIntentProps, GetEventAttendeePassSessionPassQuestionSections, type GetEventAttendeePassSessionPassQuestionSectionsProps, GetEventAttendeePassSessionsIntent, type GetEventAttendeePassSessionsIntentProps, GetEventAttendeePayment, type GetEventAttendeePaymentProps, GetEventAttendeePayments, type GetEventAttendeePaymentsProps, type GetEventAttendeeProps, GetEventAttendeeTransferAccounts, type GetEventAttendeeTransferAccountsProps, GetEventAttendeeTransfersLogs, type GetEventAttendeeTransfersLogsProps, GetEventConfig, type GetEventConfigProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventGroupPassesIntent, type GetEventGroupPassesIntentProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventRegistration, GetEventRegistrationIntent, type GetEventRegistrationIntentProps, type GetEventRegistrationProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, GetEvents, GetEventsExplore, type GetEventsExploreProps, type GetEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsExplore, type GetGroupsExploreProps, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetImage, type GetImageProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterest, GetInterestActivities, type GetInterestActivitiesProps, type GetInterestProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, GetInvoicePayments, type GetInvoicePaymentsProps, type GetInvoiceProps, GetInvoices, type GetInvoicesProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetLogin, type GetLoginProps, GetMeeting, type GetMeetingProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, type GetOrganizationParams, GetPayment, type GetPaymentProps, GetPayments, type GetPaymentsProps, GetSearchList, type GetSearchListProps, GetSearchListValues, type GetSearchListValuesProps, GetSearchLists, type GetSearchListsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChannelSubscriber, type GetSelfChannelSubscriberParams, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingAttendees, type GetSelfEventListingAttendeesProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, GetSelfEventListingPass, type GetSelfEventListingPassProps, GetSelfEventListingPasses, type GetSelfEventListingPassesProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, GetSelfLeadCounts, type GetSelfLeadCountsProps, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfLogins, type GetSelfLoginsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, GetSelfProfile, type GetSelfProfileProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSeriesRegistration, GetSeriesRegistrationIntent, type GetSeriesRegistrationIntentProps, type GetSeriesRegistrationProps, GetSeriesRegistrationQuestions, type GetSeriesRegistrationQuestionsProps, GetStreamChatMessages, type GetStreamChatMessagesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSupportTicket, GetSupportTicketActivityLog, GetSupportTicketMessages, GetSupportTickets, GetSurvey, type GetSurveyProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetSurveys, type GetSurveysProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetUsernameAvailability, type GetUsernameAvailabilityProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, type GroupsExploreData, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_PAYMENTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InterestInput, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, JoinMeetingViaActivity, type JoinMeetingViaActivityParams, JoinMeetingViaBooking, type JoinMeetingViaBookingParams, JoinMeetingViaCode, type JoinMeetingViaCodeParams, JoinMeetingViaEvent, type JoinMeetingViaEventParams, JoinMeetingViaGroup, type JoinMeetingViaGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, LOGIN_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, LocationQuestionOption, type Login, MEETING_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type Meeting, MeetingType, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_QUERY_KEY, type Order, type Organization, OrganizationActivityPreference, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PaymentIntentSource, type PaymentLineItem, PaymentLineItemType, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationDraft, type RegistrationDraftPackage, type RegistrationDraftPass, type RegistrationDraftReservation, type RegistrationFollowup, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveLogin, type RemoveLoginParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, type Room, type Round, SEARCH_LISTS_QUERY_KEY, SEARCH_LIST_QUERY_KEY, SEARCH_LIST_VALUES_QUERY_KEY, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHANNEL_SUBSCRIBER_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_LEADS_QUERY_KEY, SELF_LEAD_COUNTS_QUERY_KEY, SELF_LEAD_QUERY_KEY, SELF_LOGINS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PROFILE_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SERIES_REGISTRATION_INTENT_QUERY_KEY, SERIES_REGISTRATION_QUERY_KEY, SERIES_REGISTRATION_QUESTIONS_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_SPACES_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUESTIONS_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CONTENTS_EXPLORE_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_EVENTS_EXPLORE_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_ATTENDEE_COUPON_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_ACCESS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_ACTIVATIONS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_ACTIVATION_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_SESSION_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_ATTENDEE_PAYMENT_QUERY_DATA, SET_EVENT_ATTENDEE_QUERY_DATA, SET_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_DATA, SET_EVENT_CONFIG_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_IMAGE_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_GROUPS_EXPLORE_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LOGINS_QUERY_DATA, SET_MEETING_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_PROFILE_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SELF_SURVEY_SUBMISSION_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SERIES_REGISTRATION_QUERY_DATA, SET_SERIES_REGISTRATION_QUESTIONS_QUERY_DATA, SET_STREAM_CHAT_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_ACTIVITY_LOG_QUERY_DATA, SET_SUPPORT_TICKET_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_SURVEYS_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_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_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_USERNAME_AVAILABILITY_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_CHAT_MESSAGES_QUERY_KEY, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_ACTIVITY_LOG_QUERY_KEY, SUPPORT_TICKET_MESSAGES_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, SURVEYS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SearchList, type SearchListValue, type SegmentInput, type Self, type SelfRelationships, type Series, type SeriesQuestion, SeriesQuestionType, type SeriesRegistration, type Session, SessionAccess, type SessionBookmark, type SessionLocation, type SessionPrice, SessionVisibility, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamChatMessage, type StreamInput, SubmitSurvey, type SubmitSurveyParams, type SupportTicket, type SupportTicketActivityLog, SupportTicketActivityLogSource, SupportTicketActivityLogType, type SupportTicketMessage, SupportTicketMessageSource, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, SurveyQuestionType, type SurveySection, SurveyStatus, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, TransferEventAttendeePass, type TransferEventAttendeePassParams, type TransferLog, USERNAME_AVAILABILITY_QUERY_KEY, UnblockAccount, type UnblockAccountParams, UnbookmarkEventAttendeePassSession, type UnbookmarkEventAttendeePassSessionParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateActivity, type UpdateActivityParams, UpdateBookingResponses, type UpdateBookingResponsesParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, type UpdateChannelCollectionPayload, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelContentPayload, type UpdateChannelParams, type UpdateChannelPayload, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, type UpdateContentGuestPayload, UpdateEventAttendeePassAccessResponses, type UpdateEventAttendeePassAccessResponsesParams, UpdateEventAttendeePassFollowup, type UpdateEventAttendeePassFollowupParams, UpdateEventAttendeePassResponses, type UpdateEventAttendeePassResponsesParams, UpdateEventAttendeePreferences, type UpdateEventAttendeePreferencesParams, UpdateEventRegistration, type UpdateEventRegistrationParams, UpdateEventSessionRegistrationResponses, type UpdateEventSessionRegistrationResponsesParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, type UpdateListingValues, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfGroupMembership, type UpdateSelfGroupMembershipParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSeriesRegistrationResponses, type UpdateSeriesRegistrationResponsesParams, UpdateStreamChatMessage, type UpdateStreamChatMessageParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateSurveySearchListResponse, type UpdateSurveySearchListResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, UpsertLinkPreview, type UpsertLinkPreviewParams, type UsernameAvailability, VIDEO_QUERY_KEY, VerifyLoginAccount, type VerifyLoginAccountParams, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddListingCoHost, useAddListingSponsor, useAddLogin, useAddSelfChatChannelMember, useAddSelfEventSession, useAddSelfInterests, useAddThreadCircleAccount, useAddThreadMessageReaction, useApplyEventRegistrationCoupon, useBlockAccount, useBlockIntegration, useBookmarkEventAttendeePassSession, useCancelBooking, useCancelEventAttendeePass, useCancelEventAttendeePassAccess, useCancelGroupInvitation, useCancelGroupRequest, useCancelSeriesRegistration, useCapturePaymentIntent, useCheckLogin, useCheckinListingAttendeePass, useCompleteEventAttendeePassActivation, useConfirmBooking, useConnected, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateLoginAccount, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateStreamChatMessage, useCreateSupportTicket, useCreateSupportTicketMessage, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteStreamChatMessage, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityLikes, useGetAdvertisement, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookingSpaceQuestions, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscribers, useGetChannels, useGetContents, useGetContentsExplore, useGetEvent, useGetEventActivities, useGetEventAttendee, useGetEventAttendeeCoupon, useGetEventAttendeeCouponPasses, useGetEventAttendeeCoupons, useGetEventAttendeePass, useGetEventAttendeePassAccess, useGetEventAttendeePassAccessQuestionSections, useGetEventAttendeePassActivation, useGetEventAttendeePassActivationSummary, useGetEventAttendeePassActivations, useGetEventAttendeePassAddOns, useGetEventAttendeePassAddOnsIntent, useGetEventAttendeePassQuestionFollowup, useGetEventAttendeePassQuestionFollowups, useGetEventAttendeePassQuestionSections, useGetEventAttendeePassSessionPassIntent, useGetEventAttendeePassSessionPassQuestionSections, useGetEventAttendeePassSessionsIntent, useGetEventAttendeePayment, useGetEventAttendeePayments, useGetEventAttendeeTransferAccounts, useGetEventAttendeeTransfersLogs, useGetEventConfig, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventGroupPassesIntent, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventRegistrants, useGetEventRegistration, useGetEventRegistrationIntent, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetEventsExplore, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsExplore, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetInvoicePayments, useGetInvoices, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingAttendeePassQuestionSections, useGetLogin, useGetMeeting, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetPayment, useGetPayments, useGetSearchList, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChannelSubscriber, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventSessions, useGetSelfEvents, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfLogins, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfProfile, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSeriesRegistration, useGetSeriesRegistrationIntent, useGetSeriesRegistrationQuestions, useGetStreamChatMessages, useGetSubscribedChannels, useGetSubscribedContents, useGetSupportTicket, useGetSupportTicketActivityLog, useGetSupportTicketMessages, useGetSupportTickets, useGetSurvey, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetSurveys, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetUsernameAvailability, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useJoinMeetingViaActivity, useJoinMeetingViaBooking, useJoinMeetingViaCode, useJoinMeetingViaEvent, useJoinMeetingViaGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveLogin, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useTransferEventAttendeePass, useUnblockAccount, useUnbookmarkEventAttendeePassSession, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateActivity, useUpdateBookingResponses, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateEventAttendeePassAccessResponses, useUpdateEventAttendeePassFollowup, useUpdateEventAttendeePassResponses, useUpdateEventAttendeePreferences, useUpdateEventRegistration, useUpdateEventSessionRegistrationResponses, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfGroupMembership, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSeriesRegistrationResponses, useUpdateStreamChatMessage, useUpdateSurveyResponse, useUpdateSurveySearchListResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage, useUpsertLinkPreview, useVerifyLoginAccount };