@connectedxm/client 8.2.1 → 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.
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,174 +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 SelectSelfEventRegistrationCouponParams extends MutationParams {
3715
- eventId: string;
3716
- couponCode: string;
3717
- passes: {
3718
- id: string;
3719
- ticketId: string;
3720
- couponId?: string;
3721
- packageId?: string;
3722
- }[];
3723
- packages: {
3724
- id: string;
3725
- packageId: string;
3726
- }[];
3727
- }
3728
- declare const SelectSelfEventRegistrationCoupon: ({ eventId, passes, packages, couponCode, clientApiParams, queryClient, }: SelectSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<BaseCoupon>>;
3729
- declare const useSelectSelfEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationCoupon>>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BaseCoupon>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
3730
-
3731
- interface RemoveSelfEventRegistrationCouponParams extends MutationParams {
3732
- eventId: string;
3733
- }
3734
- declare const RemoveSelfEventRegistrationCoupon: ({ eventId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<null>>;
3735
- declare const useRemoveSelfEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationCoupon>>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
3736
-
3737
- interface UpdateSelfEventRegistrationParams extends MutationParams {
3738
- eventId: string;
3739
- activityNotificationPreference?: ActivityPreference;
3740
- announcementPushNotification?: boolean;
3741
- announcementEmailNotification?: boolean;
3742
- }
3743
- declare const UpdateSelfEventRegistration: ({ eventId, activityNotificationPreference, announcementPushNotification, announcementEmailNotification, clientApiParams, queryClient, }: UpdateSelfEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
3744
- 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>;
3745
-
3746
- interface UpdateSelfEventRegistrationPassResponseParams extends MutationParams {
3747
- eventId: string;
3748
- passId: string;
3749
- questionId: string;
3750
- response: string;
3751
- }
3752
- declare const UpdateSelfEventRegistrationPassResponse: ({ eventId, passId, questionId, response, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPassResponseParams) => Promise<ConnectedXMResponse<null>>;
3753
- 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>;
3754
-
3755
- interface UpdateSelfEventRegistrationPassesParams extends MutationParams {
3756
- eventId: string;
3757
- passes: {
3758
- id: string;
3759
- ticketId: string;
3760
- couponId?: string;
3761
- packageId?: string;
3762
- }[];
3763
- packages: {
3764
- id: string;
3765
- packageId: string;
3766
- }[];
3767
- }
3768
- declare const UpdateSelfEventRegistrationPasses: ({ eventId, passes, packages, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPassesParams) => Promise<ConnectedXMResponse<null>>;
3769
- declare const useUpdateSelfEventRegistrationPasses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPasses>>, Omit<UpdateSelfEventRegistrationPassesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfEventRegistrationPassesParams, "queryClient" | "clientApiParams">, unknown>;
3770
-
3771
- interface UpdateSelfEventRegistrationPurchaseAddOnParams extends MutationParams {
3772
- eventId: string;
3773
- passes: {
3774
- id: string;
3775
- passAddOns: {
3776
- id: string;
3777
- addOnId: string;
3778
- }[];
3779
- }[];
3780
- }
3781
- declare const UpdateSelfEventRegistrationPurchaseAddOn: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPurchaseAddOnParams) => Promise<ConnectedXMResponse<null>>;
3782
- declare const useUpdateSelfEventRegistrationPurchaseAddOn: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPurchaseAddOn>>, Omit<UpdateSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">, unknown>;
3783
-
3784
- interface UpdateSelfEventRegistrationReservationsParams extends MutationParams {
3785
- eventId: string;
3786
- passes: {
3787
- id: string;
3788
- reservation: {
3789
- id: string;
3790
- eventRoomTypeId: string;
3791
- start?: Date | string;
3792
- end?: Date | string;
3793
- roomId?: string;
3794
- };
3795
- }[];
3796
- }
3797
- declare const UpdateSelfEventRegistrationReservations: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationReservationsParams) => Promise<ConnectedXMResponse<null>>;
3798
- declare const useUpdateSelfEventRegistrationReservations: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationReservations>>, Omit<UpdateSelfEventRegistrationReservationsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfEventRegistrationReservationsParams, "queryClient" | "clientApiParams">, unknown>;
3799
-
3800
- interface UpdateSelfEventRegistrationResponsesParams extends MutationParams {
3801
- eventId: string;
3802
- passes: {
3803
- id: string;
3804
- responses: {
3805
- questionId: string;
3806
- value: string;
3807
- }[];
3808
- }[];
3809
- }
3810
- declare const UpdateSelfEventRegistrationResponses: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationResponsesParams) => Promise<ConnectedXMResponse<null>>;
3811
- declare const useUpdateSelfEventRegistrationResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponses>>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3812
-
3813
- interface UpdateSelfEventRegistrationSearchListResponseParams extends MutationParams {
3814
- eventId: string;
3815
- passId: string;
3816
- questionId: string;
3817
- searchListValueId: string;
3818
- }
3819
- declare const UpdateSelfEventRegistrationSearchListResponse: ({ eventId, passId, questionId, searchListValueId, clientApiParams, queryClient, }: UpdateSelfEventRegistrationSearchListResponseParams) => Promise<ConnectedXMResponse<null>>;
3820
- declare const useUpdateSelfEventRegistrationSearchListResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationSearchListResponse>>, Omit<UpdateSelfEventRegistrationSearchListResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfEventRegistrationSearchListResponseParams, "queryClient" | "clientApiParams">, unknown>;
3821
-
3822
- interface UpdateSelfEventAttendeePassResponsesParams extends MutationParams {
3823
- eventId: string;
3824
- passId: string;
3825
- questions: {
3826
- id: string;
3827
- value: string;
3828
- }[];
3829
- }
3830
- declare const UpdateSelfEventAttendeePassResponses: ({ eventId, passId, questions, clientApiParams, queryClient, }: UpdateSelfEventAttendeePassResponsesParams) => Promise<ConnectedXMResponse<null>>;
3831
- 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>;
3832
-
3833
- interface UpdateSelfEventAttendeePassFollowupParams extends MutationParams {
3834
- eventId: string;
3835
- passId: string;
3836
- followupId: string;
3837
- questions: {
3838
- id: string;
3839
- value: string;
3840
- }[];
3841
- }
3842
- declare const UpdateSelfEventAttendeePassFollowup: ({ eventId, passId, followupId, questions, clientApiParams, queryClient, }: UpdateSelfEventAttendeePassFollowupParams) => Promise<ConnectedXMResponse<null>>;
3843
- 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>;
3844
-
3845
- interface TransferPassParams extends MutationParams {
3846
- passId: string;
3847
- eventId: string;
3848
- receiverId: string;
3849
- }
3850
- declare const TransferPass: ({ passId, eventId, receiverId, clientApiParams, queryClient, }: TransferPassParams) => Promise<ConnectedXMResponse<null>>;
3851
- 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>;
3852
-
3853
- interface CancelPassParams extends MutationParams {
3854
- passId: string;
3855
- eventId: string;
3856
- registrationId: string;
3857
- issueRefund?: boolean;
3858
- }
3859
- declare const CancelPass: ({ passId, eventId, issueRefund, clientApiParams, queryClient, }: CancelPassParams) => Promise<ConnectedXMResponse<Pass>>;
3860
- 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>;
3861
-
3862
- interface UpdateSelfEventAttendeeAccessResponsesParams extends MutationParams {
3863
- eventId: string;
3864
- passId: string;
3865
- sessionId: string;
3866
- responses: {
3867
- questionId: string;
3868
- value: string;
3869
- }[];
3870
- }
3871
- declare const UpdateSelfEventAttendeeAccessResponses: ({ eventId, passId, sessionId, responses, clientApiParams, queryClient, }: UpdateSelfEventAttendeeAccessResponsesParams) => Promise<ConnectedXMResponse<null>>;
3872
- 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>;
3873
-
3874
- interface CancelSelfEventSessionAccessParams extends MutationParams {
3875
- eventId: string;
3876
- passId: string;
3877
- sessionId: string;
3878
- }
3879
- declare const CancelSelfEventSessionAccess: ({ eventId, passId, sessionId, clientApiParams, queryClient, }: CancelSelfEventSessionAccessParams) => Promise<ConnectedXMResponse<EventSessionAccess>>;
3880
- 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>;
3881
-
3882
3783
  interface AddSelfEventSessionParams extends MutationParams {
3883
3784
  eventId: string;
3884
3785
  sessionId: string;
@@ -5307,198 +5208,245 @@ interface GetContentsExploreProps extends SingleQueryParams {
5307
5208
  declare const GetContentsExplore: ({ clientApiParams, }: GetContentsExploreProps) => Promise<ConnectedXMResponse<ContentsExploreData>>;
5308
5209
  declare const useGetContentsExplore: (options?: SingleQueryOptions<ReturnType<typeof GetContentsExplore>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ContentsExploreData>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5309
5210
 
5310
- declare const EVENT_QUERY_KEY: (eventId: string) => QueryKey;
5311
- declare const SET_EVENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5312
- 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 {
5313
5214
  eventId: string;
5215
+ couponId: string;
5314
5216
  }
5315
- declare const GetEvent: ({ eventId, clientApiParams, }: GetEventProps) => Promise<ConnectedXMResponse<Event>>;
5316
- 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>>;
5317
5219
 
5318
- declare const EVENT_CONFIG_QUERY_KEY: (eventId: string) => QueryKey;
5319
- 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;
5320
- interface GetEventConfigProps extends SingleQueryParams {
5220
+ declare const EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY: (eventId: string, couponId: string) => QueryKey;
5221
+ interface GetEventAttendeeCouponPassesProps extends InfiniteQueryParams {
5321
5222
  eventId: string;
5223
+ couponId: string;
5322
5224
  }
5323
- declare const GetEventConfig: ({ eventId, clientApiParams, }: GetEventConfigProps) => Promise<ConnectedXMResponse<EventConfig>>;
5324
- 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>>;
5325
5227
 
5326
- declare const EVENT_ACTIVITIES_QUERY_KEY: (eventId: string, featured?: boolean) => QueryKey;
5327
- 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;
5328
- interface GetEventActivitiesProps extends InfiniteQueryParams {
5228
+ declare const EVENT_ATTENDEE_COUPONS_QUERY_KEY: (eventId: string) => QueryKey;
5229
+ interface GetEventAttendeeCouponsProps extends InfiniteQueryParams {
5329
5230
  eventId: string;
5330
- featured?: boolean;
5331
5231
  }
5332
- declare const GetEventActivities: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, featured, }: GetEventActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
5333
- 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>>;
5334
5234
 
5335
- declare const EVENT_FAQ_SECTION_QUERY_KEY: (eventId: string, sectionId: string) => QueryKey;
5336
- 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;
5337
- interface GetEventFAQSectionProps extends SingleQueryParams {
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 {
5338
5238
  eventId: string;
5339
- sectionId: string;
5239
+ passId: string;
5240
+ activationId: string;
5340
5241
  }
5341
- declare const GetEventFAQSection: ({ eventId, sectionId, clientApiParams, }: GetEventFAQSectionProps) => Promise<ConnectedXMResponse<FaqSection>>;
5342
- declare const useGetEventFAQSection: (eventId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFAQSection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<FaqSection>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
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>>;
5343
5244
 
5344
- declare const EVENT_FAQ_SECTION_QUESTION_QUERY_KEY: (eventId: string, sectionId: string, questionId: string) => QueryKey;
5345
- declare const SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTION_QUESTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFAQSectionQuestion>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5346
- interface GetEventFAQSectionQuestionProps extends SingleQueryParams {
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 {
5347
5248
  eventId: string;
5348
- sectionId: string;
5349
- questionId: string;
5249
+ passId: string;
5350
5250
  }
5351
- declare const GetEventFAQSectionQuestion: ({ eventId, sectionId, questionId, clientApiParams, }: GetEventFAQSectionQuestionProps) => Promise<ConnectedXMResponse<Faq>>;
5352
- declare const useGetEventFAQSectionQuestion: (eventId?: string, sectionId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFAQSectionQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Faq>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
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>>;
5353
5253
 
5354
- declare const EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY: (eventId: string, sectionId: string) => QueryKey;
5355
- declare const SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFaqs>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5356
- interface GetEventFaqsProps extends InfiniteQueryParams {
5254
+ declare const EVENT_ATTENDEE_PASS_ACTIVATION_SUMMARY_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
5255
+ interface GetEventAttendeePassActivationSummaryProps extends SingleQueryParams {
5357
5256
  eventId: string;
5358
- sectionId: string;
5257
+ passId: string;
5359
5258
  }
5360
- declare const GetEventFaqs: ({ eventId, sectionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventFaqsProps) => Promise<ConnectedXMResponse<Faq[]>>;
5361
- declare const useGetEventFaqs: (eventId?: string, sectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventFaqs>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Faq[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
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>>;
5362
5267
 
5363
- declare const EVENT_FAQ_SECTIONS_QUERY_KEY: (eventId: string) => QueryKey;
5364
- declare const SET_EVENT_FAQ_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFaqSections>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5365
- interface GetEventFaqSectionsProps extends InfiniteQueryParams {
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 {
5366
5271
  eventId: string;
5272
+ passId: string;
5273
+ sessionId: string;
5367
5274
  }
5368
- declare const GetEventFaqSections: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventFaqSectionsProps) => Promise<ConnectedXMResponse<FaqSection[]>>;
5369
- 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>>;
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>>;
5370
5277
 
5371
- declare const EVENT_PAGE_QUERY_KEY: (eventId: string, pageId: string) => QueryKey;
5372
- 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;
5373
- interface GetEventPageProps extends SingleQueryParams {
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 {
5374
5281
  eventId: string;
5375
- pageId: string;
5282
+ sessionId: string;
5283
+ passId: string;
5376
5284
  }
5377
- declare const GetEventPage: ({ eventId, pageId, clientApiParams, }: GetEventPageProps) => Promise<ConnectedXMResponse<EventPage>>;
5378
- declare const useGetEventPage: (eventId: string | undefined, pageId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
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>>;
5379
5287
 
5380
- declare const EVENT_PAGES_QUERY_KEY: (eventId: string) => QueryKey;
5381
- declare const SET_EVENT_PAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPages>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5382
- interface GetEventPagesProps extends InfiniteQueryParams {
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 {
5383
5290
  eventId: string;
5291
+ sessionId: string;
5292
+ passId: string;
5293
+ addressId: string;
5384
5294
  }
5385
- declare const GetEventPages: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventPagesProps) => Promise<ConnectedXMResponse<BaseEventPage[]>>;
5386
- 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>>;
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>>;
5387
5297
 
5388
- interface SessionWithSupplyAndCanRegister extends Session {
5389
- supply?: number | null;
5390
- canRegister: boolean;
5391
- }
5392
- declare const EVENT_SESSIONS_QUERY_KEY: (eventId: string, passId?: string) => QueryKey;
5393
- declare const SET_EVENT_SESSIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SESSIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessions>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5394
- interface GetEventSessionsProps extends SingleQueryParams {
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 {
5395
5301
  eventId: string;
5396
- passId?: string;
5302
+ sessionId: string;
5303
+ passId: string;
5397
5304
  }
5398
- declare const GetEventSessions: ({ eventId, passId, clientApiParams, }: GetEventSessionsProps) => Promise<ConnectedXMResponse<SessionWithSupplyAndCanRegister[]>>;
5399
- declare const useGetEventSessions: (eventId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessions>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SessionWithSupplyAndCanRegister[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
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>>;
5400
5307
 
5401
- declare const EVENT_REGISTRANTS_QUERY_KEY: (eventId: string) => QueryKey;
5402
- 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;
5403
- interface GetEventRegistrantsProps extends InfiniteQueryParams {
5308
+ declare const EVENT_ATTENDEE_PASS_SESSIONS_INTENT_QUERY_KEY: (eventId: string, passId: string, addressId: string, sessionIds: string[]) => QueryKey;
5309
+ interface GetEventAttendeePassSessionsIntentProps extends SingleQueryParams {
5404
5310
  eventId: string;
5311
+ passId: string;
5312
+ sessionIds: string[];
5313
+ addressId: string;
5405
5314
  }
5406
- declare const GetEventRegistrants: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventRegistrantsProps) => Promise<ConnectedXMResponse<Account[]>>;
5407
- 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>>;
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>>;
5408
5317
 
5409
- declare const EVENTS_QUERY_KEY: (past?: boolean, featured?: boolean) => QueryKey;
5410
- declare const SET_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5411
- interface GetEventsProps extends InfiniteQueryParams {
5412
- past?: boolean;
5413
- featured?: boolean;
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;
5414
5323
  }
5415
- declare const GetEvents: ({ pageParam, pageSize, orderBy, search, past, featured, clientApiParams, }: GetEventsProps) => Promise<ConnectedXMResponse<BaseEvent[]>>;
5416
- 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>>;
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>>;
5417
5326
 
5418
- declare const EVENT_SPEAKER_QUERY_KEY: (eventId: string, speakerId: string) => QueryKey;
5419
- 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;
5420
- interface GetEventSpeakerProps extends SingleQueryParams {
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 {
5421
5330
  eventId: string;
5422
- speakerId: string;
5331
+ passId: string;
5423
5332
  }
5424
- declare const GetEventSpeaker: ({ eventId, speakerId, clientApiParams, }: GetEventSpeakerProps) => Promise<ConnectedXMResponse<Speaker>>;
5425
- declare const useGetEventSpeaker: (eventId?: string, speakerId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSpeaker>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Speaker>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
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>>;
5426
5335
 
5427
- declare const EVENT_SPEAKERS_QUERY_KEY: (eventId: string) => QueryKey;
5428
- declare const SET_EVENT_SPEAKERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPEAKERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSpeakers>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5429
- interface GetEventSpeakersProps extends InfiniteQueryParams {
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 {
5430
5338
  eventId: string;
5339
+ passId: string;
5340
+ addOnIds: string[];
5341
+ addressId: string;
5431
5342
  }
5432
- declare const GetEventSpeakers: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventSpeakersProps) => Promise<ConnectedXMResponse<Speaker[]>>;
5433
- declare const useGetEventSpeakers: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSpeakers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Speaker[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
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>>;
5434
5345
 
5435
- declare const EVENT_SPONSORS_QUERY_KEY: (eventId: string) => QueryKey;
5436
- declare const SET_EVENT_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSponsors>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5437
- interface GetEventSponsorsProps extends InfiniteQueryParams {
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 {
5438
5349
  eventId: string;
5350
+ passId: string;
5351
+ followupId: string;
5439
5352
  }
5440
- declare const GetEventSponsors: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
5441
- 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>>;
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>>;
5442
5355
 
5443
- declare const EVENT_ACTIVATION_QUERY_KEY: (eventId: string, passId: string, activationId: string) => QueryKey;
5444
- 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;
5445
- interface GetEventActivationProps extends SingleQueryParams {
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 {
5446
5359
  eventId: string;
5447
5360
  passId: string;
5448
- activationId: string;
5449
5361
  }
5450
- declare const GetEventActivation: ({ eventId, passId, activationId, clientApiParams, }: GetEventActivationProps) => Promise<ConnectedXMResponse<EventActivation>>;
5451
- 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
+ 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>>;
5452
5364
 
5453
- declare const EVENT_ACTIVATIONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
5454
- 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;
5455
- interface GetEventActivationsProps extends InfiniteQueryParams {
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 {
5456
5368
  eventId: string;
5457
5369
  passId: string;
5458
5370
  }
5459
- declare const GetEventActivations: ({ eventId, passId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventActivationsProps) => Promise<ConnectedXMResponse<EventActivation[]>>;
5460
- 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
+ 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>>;
5461
5382
 
5462
- declare const EVENT_ACTIVATION_SUMMARY_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
5463
- interface GetEventActivationSummaryProps extends SingleQueryParams {
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 {
5464
5393
  eventId: string;
5465
5394
  passId: string;
5395
+ search: string;
5466
5396
  }
5467
- declare const GetEventActivationSummary: ({ eventId, passId, clientApiParams, }: GetEventActivationSummaryProps) => Promise<ConnectedXMResponse<{
5468
- total: number;
5469
- completed: number;
5470
- }>>;
5471
- declare const useGetEventActivationSummary: (eventId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventActivationSummary>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<{
5472
- total: number;
5473
- completed: number;
5474
- }>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
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>>;
5475
5399
 
5476
- declare const EVENT_SPONSORSHIP_LEVELS_QUERY_KEY: (eventId: string) => QueryKey;
5477
- 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;
5478
- interface GetEventSponsorshipLevelsProps extends SingleQueryParams {
5400
+ declare const EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY: (eventId: string) => QueryKey;
5401
+ interface GetEventAttendeeTransfersLogsProps extends InfiniteQueryParams {
5479
5402
  eventId: string;
5480
5403
  }
5481
- declare const GetEventSponsorshipLevels: ({ eventId, clientApiParams, }: GetEventSponsorshipLevelsProps) => Promise<ConnectedXMResponse<EventSponsorshipLevel[]>>;
5482
- declare const useGetEventSponsorshipLevels: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorshipLevels>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorshipLevel[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
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>>;
5483
5406
 
5484
- declare const EVENT_SPONSORSHIP_QUERY_KEY: (eventId: string, sponsorshipId: string) => QueryKey;
5485
- 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;
5486
- interface GetEventSponsorshipProps extends SingleQueryParams {
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 {
5487
5410
  eventId: string;
5488
- sponsorshipId: string;
5489
5411
  }
5490
- declare const GetEventSponsorship: ({ eventId, sponsorshipId, clientApiParams, }: GetEventSponsorshipProps) => Promise<ConnectedXMResponse<EventSponsorship>>;
5491
- declare const useGetEventSponsorship: (eventId?: string, sponsorshipId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorship>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorship>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
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>>;
5492
5414
 
5493
- declare const EVENT_MEDIA_ITEMS_QUERY_KEY: (eventId: string, passId: string, type?: string) => QueryKey;
5494
- 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;
5495
- interface GetEventMediaItemsProps extends InfiniteQueryParams {
5415
+ declare const EVENT_FAQ_SECTION_QUERY_KEY: (eventId: string, sectionId: string) => QueryKey;
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;
5417
+ interface GetEventFAQSectionProps extends SingleQueryParams {
5496
5418
  eventId: string;
5497
- passId: string;
5498
- type?: "image" | "video" | "file";
5419
+ sectionId: string;
5499
5420
  }
5500
- declare const GetEventMediaItems: ({ eventId, passId, type, pageParam, orderBy, search, clientApiParams, }: GetEventMediaItemsProps) => Promise<ConnectedXMResponse<EventMediaItem[]>>;
5501
- 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>>;
5421
+ declare const GetEventFAQSection: ({ eventId, sectionId, clientApiParams, }: GetEventFAQSectionProps) => Promise<ConnectedXMResponse<FaqSection>>;
5422
+ declare const useGetEventFAQSection: (eventId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFAQSection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<FaqSection>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5423
+
5424
+ declare const EVENT_FAQ_SECTION_QUESTION_QUERY_KEY: (eventId: string, sectionId: string, questionId: string) => QueryKey;
5425
+ declare const SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTION_QUESTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFAQSectionQuestion>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5426
+ interface GetEventFAQSectionQuestionProps extends SingleQueryParams {
5427
+ eventId: string;
5428
+ sectionId: string;
5429
+ questionId: string;
5430
+ }
5431
+ declare const GetEventFAQSectionQuestion: ({ eventId, sectionId, questionId, clientApiParams, }: GetEventFAQSectionQuestionProps) => Promise<ConnectedXMResponse<Faq>>;
5432
+ declare const useGetEventFAQSectionQuestion: (eventId?: string, sectionId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFAQSectionQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Faq>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5433
+
5434
+ declare const EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY: (eventId: string, sectionId: string) => QueryKey;
5435
+ declare const SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFaqs>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5436
+ interface GetEventFaqsProps extends InfiniteQueryParams {
5437
+ eventId: string;
5438
+ sectionId: string;
5439
+ }
5440
+ declare const GetEventFaqs: ({ eventId, sectionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventFaqsProps) => Promise<ConnectedXMResponse<Faq[]>>;
5441
+ declare const useGetEventFaqs: (eventId?: string, sectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventFaqs>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Faq[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5442
+
5443
+ declare const EVENT_FAQ_SECTIONS_QUERY_KEY: (eventId: string) => QueryKey;
5444
+ declare const SET_EVENT_FAQ_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFaqSections>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5445
+ interface GetEventFaqSectionsProps extends InfiniteQueryParams {
5446
+ eventId: string;
5447
+ }
5448
+ declare const GetEventFaqSections: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventFaqSectionsProps) => Promise<ConnectedXMResponse<FaqSection[]>>;
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>>;
5502
5450
 
5503
5451
  declare const EVENT_MEDIA_ITEM_QUERY_KEY: (eventId: string, mediaItemId: string, passId: string) => QueryKey;
5504
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;
@@ -5510,40 +5458,42 @@ interface GetEventMediaItemProps extends SingleQueryParams {
5510
5458
  declare const GetEventMediaItem: ({ eventId, mediaItemId, passId, clientApiParams, }: GetEventMediaItemProps) => Promise<ConnectedXMResponse<EventMediaItem>>;
5511
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>>;
5512
5460
 
5513
- declare const EVENT_SESSION_PASS_SECTIONS_QUERY_KEY: (eventId: string, sessionId: string, passId: string) => QueryKey;
5514
- 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;
5515
- interface GetEventSessionPassSectionsProps extends SingleQueryParams {
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 {
5516
5464
  eventId: string;
5517
- sessionId: string;
5518
5465
  passId: string;
5466
+ type?: "image" | "video" | "file";
5519
5467
  }
5520
- declare const GetEventSessionPassSections: ({ eventId, sessionId, passId, clientApiParams, }: GetEventSessionPassSectionsProps) => Promise<ConnectedXMResponse<EventSessionSection[]>>;
5521
- 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>>;
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>>;
5522
5470
 
5523
- declare const EVENT_SESSION_PASS_INTENT_QUERY_KEY: (eventId: string, sessionId: string, passId: string, addressId?: string) => QueryKey;
5524
- interface GetEventSessionPassIntentProps extends SingleQueryParams {
5471
+ declare const EVENT_PAGE_QUERY_KEY: (eventId: string, pageId: string) => QueryKey;
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;
5473
+ interface GetEventPageProps extends SingleQueryParams {
5525
5474
  eventId: string;
5526
- sessionId: string;
5527
- passId: string;
5528
- addressId: string;
5475
+ pageId: string;
5529
5476
  }
5530
- declare const GetEventSessionPassIntent: ({ eventId, sessionId, passId, addressId, clientApiParams, }: GetEventSessionPassIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
5531
- 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>>;
5477
+ declare const GetEventPage: ({ eventId, pageId, clientApiParams, }: GetEventPageProps) => Promise<ConnectedXMResponse<EventPage>>;
5478
+ declare const useGetEventPage: (eventId: string | undefined, pageId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5532
5479
 
5533
- interface EventsExploreData {
5534
- featuredEvents: BaseEvent[];
5535
- featuredSeries: (Series & {
5536
- events: BaseEvent[];
5537
- })[];
5538
- upcomingEvents: BaseEvent[];
5539
- pastEvents: BaseEvent[];
5480
+ declare const EVENT_PAGES_QUERY_KEY: (eventId: string) => QueryKey;
5481
+ declare const SET_EVENT_PAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPages>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5482
+ interface GetEventPagesProps extends InfiniteQueryParams {
5483
+ eventId: string;
5540
5484
  }
5541
- declare const EVENTS_EXPLORE_QUERY_KEY: () => QueryKey;
5542
- declare const SET_EVENTS_EXPLORE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENTS_EXPLORE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventsExplore>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5543
- interface GetEventsExploreProps extends SingleQueryParams {
5485
+ declare const GetEventPages: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventPagesProps) => Promise<ConnectedXMResponse<BaseEventPage[]>>;
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>>;
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;
5544
5494
  }
5545
- declare const GetEventsExplore: ({ clientApiParams, }: GetEventsExploreProps) => Promise<ConnectedXMResponse<EventsExploreData>>;
5546
- declare const useGetEventsExplore: (options?: SingleQueryOptions<ReturnType<typeof GetEventsExplore>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventsExploreData>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
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>>;
5547
5497
 
5548
5498
  declare const EVENT_REGISTRATION_QUERY_KEY: (eventId: string) => unknown[];
5549
5499
  interface GetEventRegistrationProps extends SingleQueryParams {
@@ -5562,15 +5512,117 @@ interface GetEventRegistrationIntentProps extends SingleQueryParams {
5562
5512
  declare const GetEventRegistrationIntent: ({ eventId, draft, addressId, split, clientApiParams, }: GetEventRegistrationIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
5563
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>>;
5564
5514
 
5565
- declare const EVENT_PASS_SESSIONS_INTENT_QUERY_KEY: (eventId: string, passId: string, addressId: string, sessionIds: string[]) => QueryKey;
5566
- interface GetEventPassSessionsIntentProps extends SingleQueryParams {
5515
+ interface SessionWithSupplyAndCanRegister extends Session {
5516
+ supply?: number | null;
5517
+ canRegister: boolean;
5518
+ }
5519
+ declare const EVENT_SESSIONS_QUERY_KEY: (eventId: string, passId?: string) => QueryKey;
5520
+ declare const SET_EVENT_SESSIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SESSIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessions>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5521
+ interface GetEventSessionsProps extends SingleQueryParams {
5522
+ eventId: string;
5523
+ passId?: string;
5524
+ }
5525
+ declare const GetEventSessions: ({ eventId, passId, clientApiParams, }: GetEventSessionsProps) => Promise<ConnectedXMResponse<SessionWithSupplyAndCanRegister[]>>;
5526
+ declare const useGetEventSessions: (eventId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessions>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SessionWithSupplyAndCanRegister[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5527
+
5528
+ declare const EVENT_SPEAKER_QUERY_KEY: (eventId: string, speakerId: string) => QueryKey;
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;
5530
+ interface GetEventSpeakerProps extends SingleQueryParams {
5531
+ eventId: string;
5532
+ speakerId: string;
5533
+ }
5534
+ declare const GetEventSpeaker: ({ eventId, speakerId, clientApiParams, }: GetEventSpeakerProps) => Promise<ConnectedXMResponse<Speaker>>;
5535
+ declare const useGetEventSpeaker: (eventId?: string, speakerId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSpeaker>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Speaker>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5536
+
5537
+ declare const EVENT_SPEAKERS_QUERY_KEY: (eventId: string) => QueryKey;
5538
+ declare const SET_EVENT_SPEAKERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPEAKERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSpeakers>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5539
+ interface GetEventSpeakersProps extends InfiniteQueryParams {
5567
5540
  eventId: string;
5568
- passId: string;
5569
- sessionIds: string[];
5570
- addressId: string;
5571
5541
  }
5572
- declare const GetEventPassSessionsIntent: ({ eventId, passId, sessionIds, addressId, clientApiParams, }: GetEventPassSessionsIntentProps) => Promise<ConnectedXMResponse<PaymentIntent>>;
5573
- 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>>;
5542
+ declare const GetEventSpeakers: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventSpeakersProps) => Promise<ConnectedXMResponse<Speaker[]>>;
5543
+ declare const useGetEventSpeakers: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSpeakers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Speaker[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5544
+
5545
+ declare const EVENT_SPONSORS_QUERY_KEY: (eventId: string) => QueryKey;
5546
+ declare const SET_EVENT_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSponsors>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5547
+ interface GetEventSponsorsProps extends InfiniteQueryParams {
5548
+ eventId: string;
5549
+ }
5550
+ declare const GetEventSponsors: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
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>>;
5552
+
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 {
5556
+ eventId: string;
5557
+ sponsorshipId: string;
5558
+ }
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>>;
5561
+
5562
+ declare const EVENT_SPONSORSHIP_LEVELS_QUERY_KEY: (eventId: string) => QueryKey;
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;
5564
+ interface GetEventSponsorshipLevelsProps extends SingleQueryParams {
5565
+ eventId: string;
5566
+ }
5567
+ declare const GetEventSponsorshipLevels: ({ eventId, clientApiParams, }: GetEventSponsorshipLevelsProps) => Promise<ConnectedXMResponse<EventSponsorshipLevel[]>>;
5568
+ declare const useGetEventSponsorshipLevels: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorshipLevels>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorshipLevel[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5569
+
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 {
5573
+ eventId: string;
5574
+ }
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>>;
5577
+
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;
5583
+ }
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>>;
5586
+
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 {
5590
+ eventId: string;
5591
+ featured?: boolean;
5592
+ }
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>>;
5595
+
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 {
5599
+ eventId: string;
5600
+ }
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>>;
5603
+
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 {
5607
+ eventId: string;
5608
+ }
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>>;
5611
+
5612
+ interface EventsExploreData {
5613
+ featuredEvents: BaseEvent[];
5614
+ featuredSeries: (Series & {
5615
+ events: BaseEvent[];
5616
+ })[];
5617
+ upcomingEvents: BaseEvent[];
5618
+ pastEvents: BaseEvent[];
5619
+ }
5620
+ declare const EVENTS_EXPLORE_QUERY_KEY: () => QueryKey;
5621
+ declare const SET_EVENTS_EXPLORE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENTS_EXPLORE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventsExplore>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5622
+ interface GetEventsExploreProps extends SingleQueryParams {
5623
+ }
5624
+ declare const GetEventsExplore: ({ clientApiParams, }: GetEventsExploreProps) => Promise<ConnectedXMResponse<EventsExploreData>>;
5625
+ declare const useGetEventsExplore: (options?: SingleQueryOptions<ReturnType<typeof GetEventsExplore>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventsExploreData>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5574
5626
 
5575
5627
  declare const GROUPS_QUERY_KEY: (access?: "public" | "private") => QueryKey;
5576
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;
@@ -6025,222 +6077,6 @@ interface GetSelfChatChannelsProps extends InfiniteQueryParams {
6025
6077
  declare const GetSelfChatChannels: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfChatChannelsProps) => Promise<ConnectedXMResponse<ChatChannelMember[]>>;
6026
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>>;
6027
6079
 
6028
- declare const SELF_EVENT_REGISTRATION_QUERY_KEY: (eventId: string) => QueryKey;
6029
- 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;
6030
- interface GetSelfEventRegistrationProps extends SingleQueryParams {
6031
- eventId: string;
6032
- }
6033
- declare const GetSelfEventRegistration: ({ eventId, clientApiParams, }: GetSelfEventRegistrationProps) => Promise<ConnectedXMResponse<Registration>>;
6034
- declare const useGetSelfEventRegistration: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6035
-
6036
- declare const SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY: (eventId: string, passTypeId?: string) => QueryKey;
6037
- 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;
6038
- interface GetSelfEventRegistrationPassTypesProps extends SingleQueryParams {
6039
- eventId: string;
6040
- passTypeId?: string;
6041
- }
6042
- declare const GetSelfEventRegistrationPassTypes: ({ eventId, passTypeId, clientApiParams, }: GetSelfEventRegistrationPassTypesProps) => Promise<ConnectedXMResponse<{
6043
- passTypes: PassType[];
6044
- packages: EventPackage[];
6045
- }>>;
6046
- declare const useGetSelfEventRegistrationPassTypes: (eventId?: string, passTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPassTypes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<{
6047
- passTypes: PassType[];
6048
- packages: EventPackage[];
6049
- }>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6050
-
6051
- interface PassTypeWithAddOns extends BasePassType {
6052
- addOns: EventAddOn[];
6053
- }
6054
- declare const SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY: (eventId: string) => QueryKey;
6055
- declare const SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationAddOns>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
6056
- interface GetSelfEventRegistrationAddOnsProps extends SingleQueryParams {
6057
- eventId: string;
6058
- }
6059
- declare const GetSelfEventRegistrationAddOns: ({ eventId, clientApiParams, }: GetSelfEventRegistrationAddOnsProps) => Promise<ConnectedXMResponse<PassTypeWithAddOns[]>>;
6060
- declare const useGetSelfEventRegistrationAddOns: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PassTypeWithAddOns[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6061
-
6062
- declare const SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY: (eventId: string) => QueryKey;
6063
- declare const SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationRoomTypes>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
6064
- interface GetSelfEventRegistrationRoomTypesProps extends SingleQueryParams {
6065
- eventId: string;
6066
- }
6067
- declare const GetSelfEventRegistrationRoomTypes: ({ eventId, clientApiParams, }: GetSelfEventRegistrationRoomTypesProps) => Promise<ConnectedXMResponse<EventRoomType[]>>;
6068
- declare const useGetSelfEventRegistrationRoomTypes: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationRoomTypes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomType[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6069
-
6070
- declare const SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY: (eventId: string) => QueryKey;
6071
- declare const SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationQuestions>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
6072
- interface GetSelfEventRegistrationQuestionsProps extends SingleQueryParams {
6073
- eventId: string;
6074
- }
6075
- declare const GetSelfEventRegistrationQuestions: ({ eventId, clientApiParams, }: GetSelfEventRegistrationQuestionsProps) => Promise<ConnectedXMResponse<{
6076
- passId: string;
6077
- sections: RegistrationSection[];
6078
- }[]>>;
6079
- declare const useGetSelfEventRegistrationQuestions: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationQuestions>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<{
6080
- passId: string;
6081
- sections: RegistrationSection[];
6082
- }[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6083
-
6084
- declare const SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY: (eventId: string, ticketId: string, quantity: number, addressId: string) => unknown[];
6085
- interface GetSelfEventTicketCouponIntentProps extends SingleQueryParams {
6086
- eventId: string;
6087
- ticketId: string;
6088
- quantity: number;
6089
- addressId: string;
6090
- }
6091
- declare const GetSelfEventTicketCouponIntent: ({ eventId, ticketId, quantity, addressId, clientApiParams, }: GetSelfEventTicketCouponIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
6092
- 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>>;
6093
-
6094
- declare const SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY: (eventId: string, addressId?: string, split?: boolean) => unknown[];
6095
- interface GetSelfEventRegistrationIntentProps extends SingleQueryParams {
6096
- eventId: string;
6097
- addressId: string;
6098
- split: boolean;
6099
- }
6100
- declare const GetSelfEventRegistrationIntent: ({ eventId, addressId, split, clientApiParams, }: GetSelfEventRegistrationIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
6101
- declare const useGetSelfEventRegistrationIntent: (eventId?: string, addressId?: string, split?: boolean, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6102
-
6103
- declare const SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY: (eventId: string, paymentId: string) => QueryKey;
6104
- 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;
6105
- interface GetSelfEventAttendeePaymentProps extends SingleQueryParams {
6106
- eventId: string;
6107
- paymentId: string;
6108
- }
6109
- declare const GetSelfEventAttendeePayment: ({ eventId, paymentId, clientApiParams, }: GetSelfEventAttendeePaymentProps) => Promise<ConnectedXMResponse<Payment>>;
6110
- declare const useGetSelfEventAttendeePayment: (eventId: string, paymentId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePayment>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Payment>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6111
-
6112
- declare const SELF_EVENT_ATTENDEE_PAYMENTS_QUERY_KEY: (eventId: string) => QueryKey;
6113
- interface GetSelfEventAttendeePaymentsProps extends InfiniteQueryParams {
6114
- eventId: string;
6115
- }
6116
- declare const GetSelfEventAttendeePayments: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventAttendeePaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
6117
- 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>>;
6118
-
6119
- declare const SELF_EVENT_ATTENDEE_PASS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
6120
- 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;
6121
- interface GetSelfEventAttendeePassProps extends SingleQueryParams {
6122
- eventId: string;
6123
- passId: string;
6124
- }
6125
- declare const GetSelfEventAttendeePass: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassProps) => Promise<ConnectedXMResponse<Pass>>;
6126
- declare const useGetSelfEventAttendeePass: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6127
-
6128
- declare const SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY: (eventId: string, passId: string, addressId: string, addOnIds: string[]) => QueryKey;
6129
- interface GetSelfEventAttendeePassAddOnsIntentProps extends SingleQueryParams {
6130
- eventId: string;
6131
- passId: string;
6132
- addOnIds: string[];
6133
- addressId: string;
6134
- }
6135
- declare const GetSelfEventAttendeePassAddOnsIntent: ({ eventId, passId, addOnIds, addressId, clientApiParams, }: GetSelfEventAttendeePassAddOnsIntentProps) => Promise<ConnectedXMResponse<PaymentIntent>>;
6136
- 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>>;
6137
-
6138
- declare const SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY: (eventId: string, couponId: string) => QueryKey;
6139
- 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;
6140
- interface GetSelfEventAttendeeCouponProps extends SingleQueryParams {
6141
- eventId: string;
6142
- couponId: string;
6143
- }
6144
- declare const GetSelfEventAttendeeCoupon: ({ eventId, couponId, clientApiParams, }: GetSelfEventAttendeeCouponProps) => Promise<ConnectedXMResponse<ManagedCoupon>>;
6145
- declare const useGetSelfEventAttendeeCoupon: (eventId?: string, couponId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeeCoupon>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ManagedCoupon>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6146
-
6147
- declare const SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY: (eventId: string, couponId: string) => QueryKey;
6148
- interface GetSelfEventAttendeeCouponPassesProps extends InfiniteQueryParams {
6149
- eventId: string;
6150
- couponId: string;
6151
- }
6152
- declare const GetSelfEventAttendeeCouponPasses: ({ eventId, couponId, clientApiParams, }: GetSelfEventAttendeeCouponPassesProps) => Promise<ConnectedXMResponse<ManagedCouponPass[]>>;
6153
- 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>>;
6154
-
6155
- declare const SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY: (eventId: string) => QueryKey;
6156
- interface GetSelfEventAttendeeCouponsProps extends InfiniteQueryParams {
6157
- eventId: string;
6158
- }
6159
- declare const GetSelfEventAttendeeCoupons: ({ eventId, clientApiParams, }: GetSelfEventAttendeeCouponsProps) => Promise<ConnectedXMResponse<ManagedCoupon[]>>;
6160
- 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>>;
6161
-
6162
- declare const SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY: (eventId: string) => QueryKey;
6163
- interface GetSelfEventAttendeeTransfersLogsProps extends InfiniteQueryParams {
6164
- eventId: string;
6165
- }
6166
- declare const GetSelfEventAttendeeTransfersLogs: ({ pageParam, pageSize, orderBy, search, eventId, clientApiParams, }: GetSelfEventAttendeeTransfersLogsProps) => Promise<ConnectedXMResponse<TransferLog[]>>;
6167
- 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>>;
6168
-
6169
- declare const SELF_EVENT_ATTENDEE_QUERY_KEY: (eventId: string) => QueryKey;
6170
- 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;
6171
- interface GetSelfEventAttendeeProps extends SingleQueryParams {
6172
- eventId: string;
6173
- }
6174
- declare const GetSelfEventAttendee: ({ eventId, clientApiParams, }: GetSelfEventAttendeeProps) => Promise<ConnectedXMResponse<Registration | null>>;
6175
- declare const useGetSelfEventAttendee: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendee>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6176
-
6177
- declare const SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
6178
- 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;
6179
- interface GetSelfEventAttendeePassQuestionSectionsProps extends SingleQueryParams {
6180
- eventId: string;
6181
- passId: string;
6182
- }
6183
- declare const GetSelfEventAttendeePassQuestionSections: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassQuestionSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
6184
- declare const useGetSelfEventAttendeePassQuestionSections: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassQuestionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6185
-
6186
- declare const SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
6187
- 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;
6188
- interface GetSelfEventAttendeePassQuestionFollowupsProps extends SingleQueryParams {
6189
- eventId: string;
6190
- passId: string;
6191
- }
6192
- declare const GetSelfEventAttendeePassQuestionFollowups: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassQuestionFollowupsProps) => Promise<ConnectedXMResponse<RegistrationFollowup[]>>;
6193
- declare const useGetSelfEventAttendeePassQuestionFollowups: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassQuestionFollowups>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationFollowup[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6194
-
6195
- declare const SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY: (eventId: string, passId: string, followupId: string) => QueryKey;
6196
- 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;
6197
- interface GetSelfEventAttendeePassQuestionFollowupProps extends SingleQueryParams {
6198
- eventId: string;
6199
- passId: string;
6200
- followupId: string;
6201
- }
6202
- declare const GetSelfEventAttendeePassQuestionFollowup: ({ eventId, passId, followupId, clientApiParams, }: GetSelfEventAttendeePassQuestionFollowupProps) => Promise<ConnectedXMResponse<RegistrationFollowup>>;
6203
- 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>>;
6204
-
6205
- declare const SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
6206
- 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;
6207
- interface GetSelfEventAttendeePassAddOnsProps extends SingleQueryParams {
6208
- eventId: string;
6209
- passId: string;
6210
- }
6211
- declare const GetSelfEventAttendeePassAddOns: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassAddOnsProps) => Promise<ConnectedXMResponse<EventAddOn[]>>;
6212
- declare const useGetSelfEventAttendeePassAddOns: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6213
-
6214
- declare const SELF_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY: (eventId: string, passId: string, search: string) => QueryKey;
6215
- 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;
6216
- interface GetSelfEventAttendeeTransferAccountsProps extends SingleQueryParams {
6217
- eventId: string;
6218
- passId: string;
6219
- search: string;
6220
- }
6221
- declare const GetSelfEventAttendeeTransferAccounts: ({ eventId, passId, search, clientApiParams, }: GetSelfEventAttendeeTransferAccountsProps) => Promise<ConnectedXMResponse<Account[]>>;
6222
- 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>>;
6223
-
6224
- declare const SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY: (eventId: string, passId: string, sessionId: string) => QueryKey;
6225
- 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;
6226
- interface GetSelfEventAttendeeAccessProps extends SingleQueryParams {
6227
- eventId: string;
6228
- passId: string;
6229
- sessionId: string;
6230
- }
6231
- declare const GetSelfEventAttendeeAccess: ({ eventId, passId, sessionId, clientApiParams, }: GetSelfEventAttendeeAccessProps) => Promise<ConnectedXMResponse<EventSessionAccess>>;
6232
- 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>>;
6233
-
6234
- declare const SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, passId: string, sessionId: string) => QueryKey;
6235
- 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;
6236
- interface GetSelfEventAttendeeAccessQuestionSectionsProps extends SingleQueryParams {
6237
- eventId: string;
6238
- sessionId: string;
6239
- passId: string;
6240
- }
6241
- declare const GetSelfEventAttendeeAccessQuestionSections: ({ eventId, sessionId, passId, clientApiParams, }: GetSelfEventAttendeeAccessQuestionSectionsProps) => Promise<ConnectedXMResponse<EventSessionSection[]>>;
6242
- 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>>;
6243
-
6244
6080
  declare const SELF_QUERY_KEY: (ignoreExecuteAs?: boolean) => QueryKey;
6245
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;
6246
6082
  interface GetSelfProps extends SingleQueryParams {
@@ -6680,4 +6516,4 @@ declare const GetSupportTicketActivityLog: ({ supportTicketId, pageParam, pageSi
6680
6516
  */
6681
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>>;
6682
6518
 
6683
- 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, GetSelfEventRegistrationAddOns, type GetSelfEventRegistrationAddOnsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPassTypes, type GetSelfEventRegistrationPassTypesProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationQuestions, type GetSelfEventRegistrationQuestionsProps, GetSelfEventRegistrationRoomTypes, type GetSelfEventRegistrationRoomTypesProps, 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, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, 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_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_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_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_ROOM_TYPES_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_ADD_ONS_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_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_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, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, 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, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventRegistrationSearchListResponse, type UpdateSelfEventRegistrationSearchListResponseParams, 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, useGetSelfEventRegistrationAddOns, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPassTypes, useGetSelfEventRegistrationQuestions, useGetSelfEventRegistrationRoomTypes, 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, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, 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, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventRegistrationSearchListResponse, 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 };