@connectedxm/client 7.9.6 → 7.9.8

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
@@ -57,6 +57,11 @@ interface Integration {
57
57
  publicUrl: string | null;
58
58
  details: IntegrationDetails;
59
59
  }
60
+ interface ConnectedXMError {
61
+ status: "error";
62
+ message: string;
63
+ data: unknown;
64
+ }
60
65
  interface ConnectedXMResponse<TData> {
61
66
  status: "ok" | "error" | "redirect";
62
67
  message: string;
@@ -2786,33 +2791,33 @@ interface MutationParams {
2786
2791
  clientApiParams: ClientApiParams;
2787
2792
  queryClient?: QueryClient;
2788
2793
  }
2789
- interface MutationOptions<TResponseData, TMutationParams> extends UseMutationOptions<TResponseData, AxiosError<TResponseData>, TMutationParams> {
2794
+ interface MutationOptions<TResponseData, TMutationParams> extends UseMutationOptions<TResponseData, AxiosError<ConnectedXMResponse<ConnectedXMError | null>>, TMutationParams> {
2790
2795
  }
2791
- declare const useConnectedMutation: <TMutationParams extends MutationParams, TResponseData extends ConnectedXMResponse<any>>(mutation: MutationFunction<TResponseData, TMutationParams>, options?: Omit<MutationOptions<TResponseData, Omit<TMutationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<TResponseData, AxiosError<TResponseData, any>, Omit<TMutationParams, "queryClient" | "clientApiParams">, unknown>;
2796
+ declare const useConnectedMutation: <TMutationParams extends MutationParams, TResponseData extends ConnectedXMResponse<any>>(mutation: MutationFunction<TResponseData, TMutationParams>, options?: Omit<MutationOptions<TResponseData, Omit<TMutationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<TResponseData, AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<TMutationParams, "queryClient" | "clientApiParams">, unknown>;
2792
2797
 
2793
2798
  interface FollowAccountParams extends MutationParams {
2794
2799
  accountId: string;
2795
2800
  }
2796
2801
  declare const FollowAccount: ({ accountId, clientApiParams, queryClient, }: FollowAccountParams) => Promise<ConnectedXMResponse<Account>>;
2797
- declare const useFollowAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof FollowAccount>>, Omit<FollowAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<FollowAccountParams, "queryClient" | "clientApiParams">, unknown>;
2802
+ declare const useFollowAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof FollowAccount>>, Omit<FollowAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<FollowAccountParams, "queryClient" | "clientApiParams">, unknown>;
2798
2803
 
2799
2804
  interface UnfollowAccountParams extends MutationParams {
2800
2805
  accountId: string;
2801
2806
  }
2802
2807
  declare const UnfollowAccount: ({ accountId, clientApiParams, queryClient, }: UnfollowAccountParams) => Promise<ConnectedXMResponse<Account>>;
2803
- declare const useUnfollowAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnfollowAccount>>, Omit<UnfollowAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<UnfollowAccountParams, "queryClient" | "clientApiParams">, unknown>;
2808
+ declare const useUnfollowAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnfollowAccount>>, Omit<UnfollowAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UnfollowAccountParams, "queryClient" | "clientApiParams">, unknown>;
2804
2809
 
2805
2810
  interface BlockAccountParams extends MutationParams {
2806
2811
  accountId: string;
2807
2812
  }
2808
2813
  declare const BlockAccount: ({ accountId, queryClient, clientApiParams, }: BlockAccountParams) => Promise<ConnectedXMResponse<Account>>;
2809
- declare const useBlockAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof BlockAccount>>, Omit<BlockAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<BlockAccountParams, "queryClient" | "clientApiParams">, unknown>;
2814
+ declare const useBlockAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof BlockAccount>>, Omit<BlockAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<BlockAccountParams, "queryClient" | "clientApiParams">, unknown>;
2810
2815
 
2811
2816
  interface UnblockAccountParams extends MutationParams {
2812
2817
  accountId: string;
2813
2818
  }
2814
2819
  declare const UnblockAccount: ({ accountId, queryClient, clientApiParams, }: UnblockAccountParams) => Promise<ConnectedXMResponse<Account>>;
2815
- declare const useUnblockAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnblockAccount>>, Omit<UnblockAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<UnblockAccountParams, "queryClient" | "clientApiParams">, unknown>;
2820
+ declare const useUnblockAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnblockAccount>>, Omit<UnblockAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UnblockAccountParams, "queryClient" | "clientApiParams">, unknown>;
2816
2821
 
2817
2822
  interface BaseActivityEntityInput {
2818
2823
  type: ActivityEntityType;
@@ -2850,38 +2855,38 @@ interface CreateActivityParams extends MutationParams {
2850
2855
  activity: ActivityCreateParams;
2851
2856
  }
2852
2857
  declare const CreateActivity: ({ activity, clientApiParams, queryClient, }: CreateActivityParams) => Promise<ConnectedXMResponse<Activity>>;
2853
- declare const useCreateActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateActivity>>, Omit<CreateActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<CreateActivityParams, "queryClient" | "clientApiParams">, unknown>;
2858
+ declare const useCreateActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateActivity>>, Omit<CreateActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateActivityParams, "queryClient" | "clientApiParams">, unknown>;
2854
2859
 
2855
2860
  interface DeleteActivityParams extends MutationParams {
2856
2861
  activityId: string;
2857
2862
  }
2858
2863
  declare const DeleteActivity: ({ activityId, clientApiParams, queryClient, }: DeleteActivityParams) => Promise<ConnectedXMResponse<null>>;
2859
- declare const useDeleteActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteActivity>>, Omit<DeleteActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteActivityParams, "queryClient" | "clientApiParams">, unknown>;
2864
+ declare const useDeleteActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteActivity>>, Omit<DeleteActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteActivityParams, "queryClient" | "clientApiParams">, unknown>;
2860
2865
 
2861
2866
  interface LikeActivityParams extends MutationParams {
2862
2867
  activityId: string;
2863
2868
  }
2864
2869
  declare const LikeActivity: ({ activityId, clientApiParams, queryClient, }: LikeActivityParams) => Promise<ConnectedXMResponse<Activity>>;
2865
- declare const useLikeActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof LikeActivity>>, Omit<LikeActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<LikeActivityParams, "queryClient" | "clientApiParams">, unknown>;
2870
+ declare const useLikeActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof LikeActivity>>, Omit<LikeActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<LikeActivityParams, "queryClient" | "clientApiParams">, unknown>;
2866
2871
 
2867
2872
  interface UnlikeActivityParams extends MutationParams {
2868
2873
  activityId: string;
2869
2874
  }
2870
2875
  declare const UnlikeActivity: ({ activityId, clientApiParams, queryClient, }: UnlikeActivityParams) => Promise<ConnectedXMResponse<Activity>>;
2871
- declare const useUnlikeActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnlikeActivity>>, Omit<UnlikeActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<UnlikeActivityParams, "queryClient" | "clientApiParams">, unknown>;
2876
+ declare const useUnlikeActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnlikeActivity>>, Omit<UnlikeActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UnlikeActivityParams, "queryClient" | "clientApiParams">, unknown>;
2872
2877
 
2873
2878
  interface ReportActivityParams extends MutationParams {
2874
2879
  activityId: string;
2875
2880
  }
2876
2881
  declare const ReportActivity: ({ activityId, queryClient, clientApiParams, }: ReportActivityParams) => Promise<ConnectedXMResponse<Activity>>;
2877
- declare const useReportActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof ReportActivity>>, Omit<ReportActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<ReportActivityParams, "queryClient" | "clientApiParams">, unknown>;
2882
+ declare const useReportActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof ReportActivity>>, Omit<ReportActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<ReportActivityParams, "queryClient" | "clientApiParams">, unknown>;
2878
2883
 
2879
2884
  interface RemoveActivityReportParams extends MutationParams {
2880
2885
  activityId: string;
2881
2886
  reportId: string;
2882
2887
  }
2883
2888
  declare const RemoveActivityReport: ({ activityId, reportId, queryClient, clientApiParams, }: RemoveActivityReportParams) => Promise<ConnectedXMResponse<Activity>>;
2884
- declare const useRemoveActivityReport: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveActivityReport>>, Omit<RemoveActivityReportParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<RemoveActivityReportParams, "queryClient" | "clientApiParams">, unknown>;
2889
+ declare const useRemoveActivityReport: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveActivityReport>>, Omit<RemoveActivityReportParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<RemoveActivityReportParams, "queryClient" | "clientApiParams">, unknown>;
2885
2890
 
2886
2891
  interface UpdateActivityInput {
2887
2892
  message?: string;
@@ -2894,19 +2899,19 @@ interface UpdateActivityParams extends MutationParams {
2894
2899
  activity: UpdateActivityInput;
2895
2900
  }
2896
2901
  declare const UpdateActivity: ({ activityId, activity, clientApiParams, queryClient, }: UpdateActivityParams) => Promise<ConnectedXMResponse<Activity>>;
2897
- declare const useUpdateActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateActivity>>, Omit<UpdateActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<UpdateActivityParams, "queryClient" | "clientApiParams">, unknown>;
2902
+ declare const useUpdateActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateActivity>>, Omit<UpdateActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateActivityParams, "queryClient" | "clientApiParams">, unknown>;
2898
2903
 
2899
2904
  interface CancelBookingParams extends MutationParams {
2900
2905
  bookingId: string;
2901
2906
  }
2902
2907
  declare const CancelBooking: ({ bookingId, clientApiParams, queryClient, }: CancelBookingParams) => Promise<ConnectedXMResponse<Booking>>;
2903
- declare const useCancelBooking: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelBooking>>, Omit<CancelBookingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Booking>, axios.AxiosError<ConnectedXMResponse<Booking>, any>, Omit<CancelBookingParams, "queryClient" | "clientApiParams">, unknown>;
2908
+ declare const useCancelBooking: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelBooking>>, Omit<CancelBookingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Booking>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CancelBookingParams, "queryClient" | "clientApiParams">, unknown>;
2904
2909
 
2905
2910
  interface ConfirmBookingParams extends MutationParams {
2906
2911
  bookingId: string;
2907
2912
  }
2908
2913
  declare const ConfirmBooking: ({ bookingId, clientApiParams, queryClient, }: ConfirmBookingParams) => Promise<ConnectedXMResponse<Booking>>;
2909
- declare const useConfirmBooking: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof ConfirmBooking>>, Omit<ConfirmBookingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Booking>, axios.AxiosError<ConnectedXMResponse<Booking>, any>, Omit<ConfirmBookingParams, "queryClient" | "clientApiParams">, unknown>;
2914
+ declare const useConfirmBooking: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof ConfirmBooking>>, Omit<ConfirmBookingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Booking>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<ConfirmBookingParams, "queryClient" | "clientApiParams">, unknown>;
2910
2915
 
2911
2916
  interface DraftBookingParams extends MutationParams {
2912
2917
  placeId: string;
@@ -2915,13 +2920,13 @@ interface DraftBookingParams extends MutationParams {
2915
2920
  time: string;
2916
2921
  }
2917
2922
  declare const DraftBooking: ({ placeId, spaceId, day, time, queryClient, clientApiParams, }: DraftBookingParams) => Promise<ConnectedXMResponse<Booking>>;
2918
- declare const useDraftBooking: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DraftBooking>>, Omit<DraftBookingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Booking>, axios.AxiosError<ConnectedXMResponse<Booking>, any>, Omit<DraftBookingParams, "queryClient" | "clientApiParams">, unknown>;
2923
+ declare const useDraftBooking: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DraftBooking>>, Omit<DraftBookingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Booking>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DraftBookingParams, "queryClient" | "clientApiParams">, unknown>;
2919
2924
 
2920
2925
  interface DeleteDraftBookingParams extends MutationParams {
2921
2926
  bookingId: string;
2922
2927
  }
2923
2928
  declare const DeleteDraftBooking: ({ bookingId, clientApiParams, queryClient, }: DeleteDraftBookingParams) => Promise<ConnectedXMResponse<null>>;
2924
- declare const useDeleteDraftBooking: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteDraftBooking>>, Omit<DeleteDraftBookingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteDraftBookingParams, "queryClient" | "clientApiParams">, unknown>;
2929
+ declare const useDeleteDraftBooking: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteDraftBooking>>, Omit<DeleteDraftBookingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteDraftBookingParams, "queryClient" | "clientApiParams">, unknown>;
2925
2930
 
2926
2931
  interface UpdateBookingResponsesParams extends MutationParams {
2927
2932
  bookingId: string;
@@ -2931,7 +2936,7 @@ interface UpdateBookingResponsesParams extends MutationParams {
2931
2936
  }[];
2932
2937
  }
2933
2938
  declare const UpdateBookingResponses: ({ bookingId, responses, clientApiParams, queryClient, }: UpdateBookingResponsesParams) => Promise<ConnectedXMResponse<Booking>>;
2934
- declare const useUpdateBookingResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateBookingResponses>>, Omit<UpdateBookingResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Booking>, axios.AxiosError<ConnectedXMResponse<Booking>, any>, Omit<UpdateBookingResponsesParams, "queryClient" | "clientApiParams">, unknown>;
2939
+ declare const useUpdateBookingResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateBookingResponses>>, Omit<UpdateBookingResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Booking>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateBookingResponsesParams, "queryClient" | "clientApiParams">, unknown>;
2935
2940
 
2936
2941
  interface AddChannelCollectionContentParams extends MutationParams {
2937
2942
  channelId: string;
@@ -2940,7 +2945,7 @@ interface AddChannelCollectionContentParams extends MutationParams {
2940
2945
  imageDataUri?: any;
2941
2946
  }
2942
2947
  declare const AddChannelCollectionContent: ({ channelId, collectionId, contentId, clientApiParams, queryClient, }: AddChannelCollectionContentParams) => Promise<ConnectedXMResponse<null>>;
2943
- declare const useAddChannelCollectionContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddChannelCollectionContent>>, Omit<AddChannelCollectionContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<AddChannelCollectionContentParams, "queryClient" | "clientApiParams">, unknown>;
2948
+ declare const useAddChannelCollectionContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddChannelCollectionContent>>, Omit<AddChannelCollectionContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<AddChannelCollectionContentParams, "queryClient" | "clientApiParams">, unknown>;
2944
2949
 
2945
2950
  interface RemoveChannelCollectionContentParams extends MutationParams {
2946
2951
  channelId: string;
@@ -2949,7 +2954,7 @@ interface RemoveChannelCollectionContentParams extends MutationParams {
2949
2954
  imageDataUri?: any;
2950
2955
  }
2951
2956
  declare const RemoveChannelCollectionContent: ({ channelId, collectionId, contentId, clientApiParams, queryClient, }: RemoveChannelCollectionContentParams) => Promise<ConnectedXMResponse<null>>;
2952
- declare const useRemoveChannelCollectionContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveChannelCollectionContent>>, Omit<RemoveChannelCollectionContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveChannelCollectionContentParams, "queryClient" | "clientApiParams">, unknown>;
2957
+ declare const useRemoveChannelCollectionContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveChannelCollectionContent>>, Omit<RemoveChannelCollectionContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<RemoveChannelCollectionContentParams, "queryClient" | "clientApiParams">, unknown>;
2953
2958
 
2954
2959
  interface CreateChannelCollectionPayload {
2955
2960
  name: string;
@@ -2960,14 +2965,14 @@ interface CreateChannelCollectionParams extends MutationParams {
2960
2965
  collection: CreateChannelCollectionPayload;
2961
2966
  }
2962
2967
  declare const CreateChannelCollection: ({ channelId, collection, clientApiParams, queryClient, }: CreateChannelCollectionParams) => Promise<ConnectedXMResponse<ChannelCollection>>;
2963
- declare const useCreateChannelCollection: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateChannelCollection>>, Omit<CreateChannelCollectionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelCollection>, axios.AxiosError<ConnectedXMResponse<ChannelCollection>, any>, Omit<CreateChannelCollectionParams, "queryClient" | "clientApiParams">, unknown>;
2968
+ declare const useCreateChannelCollection: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateChannelCollection>>, Omit<CreateChannelCollectionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelCollection>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateChannelCollectionParams, "queryClient" | "clientApiParams">, unknown>;
2964
2969
 
2965
2970
  interface DeleteChannelCollectionParams extends MutationParams {
2966
2971
  channelId: string;
2967
2972
  collectionId: string;
2968
2973
  }
2969
2974
  declare const DeleteChannelCollection: ({ channelId, collectionId, clientApiParams, queryClient, }: DeleteChannelCollectionParams) => Promise<ConnectedXMResponse<ChannelCollection>>;
2970
- declare const useDeleteChannelCollection: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteChannelCollection>>, Omit<DeleteChannelCollectionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelCollection>, axios.AxiosError<ConnectedXMResponse<ChannelCollection>, any>, Omit<DeleteChannelCollectionParams, "queryClient" | "clientApiParams">, unknown>;
2975
+ declare const useDeleteChannelCollection: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteChannelCollection>>, Omit<DeleteChannelCollectionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelCollection>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteChannelCollectionParams, "queryClient" | "clientApiParams">, unknown>;
2971
2976
 
2972
2977
  interface UpdateChannelCollectionPayload {
2973
2978
  name?: string;
@@ -2979,7 +2984,7 @@ interface UpdateChannelCollectionParams extends MutationParams {
2979
2984
  collectionId: string;
2980
2985
  }
2981
2986
  declare const UpdateChannelCollection: ({ channelId, collection, collectionId, clientApiParams, queryClient, }: UpdateChannelCollectionParams) => Promise<ConnectedXMResponse<ChannelCollection>>;
2982
- declare const useUpdateChannelCollection: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateChannelCollection>>, Omit<UpdateChannelCollectionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelCollection>, axios.AxiosError<ConnectedXMResponse<ChannelCollection>, any>, Omit<UpdateChannelCollectionParams, "queryClient" | "clientApiParams">, unknown>;
2987
+ declare const useUpdateChannelCollection: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateChannelCollection>>, Omit<UpdateChannelCollectionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelCollection>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateChannelCollectionParams, "queryClient" | "clientApiParams">, unknown>;
2983
2988
 
2984
2989
  interface CreateContentGuestPayload {
2985
2990
  accountId?: string | null;
@@ -3006,7 +3011,7 @@ interface CreateContentGuestParams extends MutationParams {
3006
3011
  imageDataUri?: string;
3007
3012
  }
3008
3013
  declare const CreateContentGuest: ({ channelId, contentId, guest, imageDataUri, clientApiParams, queryClient, }: CreateContentGuestParams) => Promise<ConnectedXMResponse<ContentGuest>>;
3009
- declare const useCreateContentGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateContentGuest>>, Omit<CreateContentGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ContentGuest>, axios.AxiosError<ConnectedXMResponse<ContentGuest>, any>, Omit<CreateContentGuestParams, "queryClient" | "clientApiParams">, unknown>;
3014
+ declare const useCreateContentGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateContentGuest>>, Omit<CreateContentGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ContentGuest>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateContentGuestParams, "queryClient" | "clientApiParams">, unknown>;
3010
3015
 
3011
3016
  interface UpdateContentGuestPayload {
3012
3017
  accountId?: string | null;
@@ -3034,7 +3039,7 @@ interface UpdateContentGuestParams extends MutationParams {
3034
3039
  imageDataUri?: string;
3035
3040
  }
3036
3041
  declare const UpdateContentGuest: ({ channelId, contentId, guest, guestId, imageDataUri, clientApiParams, queryClient, }: UpdateContentGuestParams) => Promise<ConnectedXMResponse<ContentGuest>>;
3037
- declare const useUpdateContentGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateContentGuest>>, Omit<UpdateContentGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ContentGuest>, axios.AxiosError<ConnectedXMResponse<ContentGuest>, any>, Omit<UpdateContentGuestParams, "queryClient" | "clientApiParams">, unknown>;
3042
+ declare const useUpdateContentGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateContentGuest>>, Omit<UpdateContentGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ContentGuest>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateContentGuestParams, "queryClient" | "clientApiParams">, unknown>;
3038
3043
 
3039
3044
  interface DeleteContentGuestParams extends MutationParams {
3040
3045
  channelId: string;
@@ -3042,7 +3047,7 @@ interface DeleteContentGuestParams extends MutationParams {
3042
3047
  guestId: string;
3043
3048
  }
3044
3049
  declare const DeleteContentGuest: ({ channelId, contentId, guestId, clientApiParams, queryClient, }: DeleteContentGuestParams) => Promise<ConnectedXMResponse<null>>;
3045
- declare const useDeleteContentGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteContentGuest>>, Omit<DeleteContentGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteContentGuestParams, "queryClient" | "clientApiParams">, unknown>;
3050
+ declare const useDeleteContentGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteContentGuest>>, Omit<DeleteContentGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteContentGuestParams, "queryClient" | "clientApiParams">, unknown>;
3046
3051
 
3047
3052
  interface AddContentInterestPayload {
3048
3053
  name: string;
@@ -3053,7 +3058,7 @@ interface AddContentInterestParams extends MutationParams {
3053
3058
  interest: AddContentInterestPayload;
3054
3059
  }
3055
3060
  declare const AddContentInterest: ({ channelId, contentId, interest, clientApiParams, }: AddContentInterestParams) => Promise<ConnectedXMResponse<Interest>>;
3056
- declare const useAddContentInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddContentInterest>>, Omit<AddContentInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Interest>, axios.AxiosError<ConnectedXMResponse<Interest>, any>, Omit<AddContentInterestParams, "queryClient" | "clientApiParams">, unknown>;
3061
+ declare const useAddContentInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddContentInterest>>, Omit<AddContentInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Interest>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<AddContentInterestParams, "queryClient" | "clientApiParams">, unknown>;
3057
3062
 
3058
3063
  interface RemoveContentInterestParams extends MutationParams {
3059
3064
  channelId: string;
@@ -3061,14 +3066,14 @@ interface RemoveContentInterestParams extends MutationParams {
3061
3066
  interestId: string;
3062
3067
  }
3063
3068
  declare const RemoveContentInterest: ({ channelId, contentId, interestId, clientApiParams, }: RemoveContentInterestParams) => Promise<ConnectedXMResponse<null>>;
3064
- declare const useRemoveContentInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveContentInterest>>, Omit<RemoveContentInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveContentInterestParams, "queryClient" | "clientApiParams">, unknown>;
3069
+ declare const useRemoveContentInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveContentInterest>>, Omit<RemoveContentInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<RemoveContentInterestParams, "queryClient" | "clientApiParams">, unknown>;
3065
3070
 
3066
3071
  interface DeleteContentPublishScheduleParams extends MutationParams {
3067
3072
  channelId: string;
3068
3073
  contentId: string;
3069
3074
  }
3070
3075
  declare const DeleteContentPublishSchedule: ({ channelId, contentId, clientApiParams, }: DeleteContentPublishScheduleParams) => Promise<ConnectedXMResponse<Content>>;
3071
- declare const useDeleteContentPublishSchedule: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteContentPublishSchedule>>, Omit<DeleteContentPublishScheduleParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<Content>, any>, Omit<DeleteContentPublishScheduleParams, "queryClient" | "clientApiParams">, unknown>;
3076
+ declare const useDeleteContentPublishSchedule: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteContentPublishSchedule>>, Omit<DeleteContentPublishScheduleParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteContentPublishScheduleParams, "queryClient" | "clientApiParams">, unknown>;
3072
3077
 
3073
3078
  interface CreateChannelContentPayload {
3074
3079
  title: string;
@@ -3086,21 +3091,21 @@ interface CreateChannelContentParams extends MutationParams {
3086
3091
  content: CreateChannelContentPayload;
3087
3092
  }
3088
3093
  declare const CreateChannelContent: ({ channelId, content, clientApiParams, queryClient, }: CreateChannelContentParams) => Promise<ConnectedXMResponse<Content>>;
3089
- declare const useCreateChannelContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateChannelContent>>, Omit<CreateChannelContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<Content>, any>, Omit<CreateChannelContentParams, "queryClient" | "clientApiParams">, unknown>;
3094
+ declare const useCreateChannelContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateChannelContent>>, Omit<CreateChannelContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateChannelContentParams, "queryClient" | "clientApiParams">, unknown>;
3090
3095
 
3091
3096
  interface DeleteChannelContentParams extends MutationParams {
3092
3097
  channelId: string;
3093
3098
  contentId: string;
3094
3099
  }
3095
3100
  declare const DeleteChannelContent: ({ channelId, contentId, clientApiParams, }: DeleteChannelContentParams) => Promise<ConnectedXMResponse<null>>;
3096
- declare const useDeleteChannelContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteChannelContent>>, Omit<DeleteChannelContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteChannelContentParams, "queryClient" | "clientApiParams">, unknown>;
3101
+ declare const useDeleteChannelContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteChannelContent>>, Omit<DeleteChannelContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteChannelContentParams, "queryClient" | "clientApiParams">, unknown>;
3097
3102
 
3098
3103
  interface LikeContentParams extends MutationParams {
3099
3104
  channelId: string;
3100
3105
  contentId: string;
3101
3106
  }
3102
3107
  declare const LikeContent: ({ channelId, contentId, clientApiParams, queryClient, }: LikeContentParams) => Promise<ConnectedXMResponse<Content>>;
3103
- declare const useLikeContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof LikeContent>>, Omit<LikeContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<Content>, any>, Omit<LikeContentParams, "queryClient" | "clientApiParams">, unknown>;
3108
+ declare const useLikeContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof LikeContent>>, Omit<LikeContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<LikeContentParams, "queryClient" | "clientApiParams">, unknown>;
3104
3109
 
3105
3110
  interface SetContentPublishScheduleParams extends MutationParams {
3106
3111
  channelId: string;
@@ -3110,14 +3115,14 @@ interface SetContentPublishScheduleParams extends MutationParams {
3110
3115
  push?: boolean;
3111
3116
  }
3112
3117
  declare const SetContentPublishSchedule: ({ channelId, contentId, date, email, push, clientApiParams, }: SetContentPublishScheduleParams) => Promise<ConnectedXMResponse<Content>>;
3113
- declare const useSetContentPublishSchedule: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SetContentPublishSchedule>>, Omit<SetContentPublishScheduleParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<Content>, any>, Omit<SetContentPublishScheduleParams, "queryClient" | "clientApiParams">, unknown>;
3118
+ declare const useSetContentPublishSchedule: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SetContentPublishSchedule>>, Omit<SetContentPublishScheduleParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<SetContentPublishScheduleParams, "queryClient" | "clientApiParams">, unknown>;
3114
3119
 
3115
3120
  interface UnlikeContentParams extends MutationParams {
3116
3121
  channelId: string;
3117
3122
  contentId: string;
3118
3123
  }
3119
3124
  declare const UnlikeContent: ({ channelId, contentId, clientApiParams, queryClient, }: UnlikeContentParams) => Promise<ConnectedXMResponse<Content>>;
3120
- declare const useUnlikeContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnlikeContent>>, Omit<UnlikeContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<Content>, any>, Omit<UnlikeContentParams, "queryClient" | "clientApiParams">, unknown>;
3125
+ declare const useUnlikeContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnlikeContent>>, Omit<UnlikeContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UnlikeContentParams, "queryClient" | "clientApiParams">, unknown>;
3121
3126
 
3122
3127
  interface UpdateChannelContentPayload {
3123
3128
  title?: string;
@@ -3142,7 +3147,7 @@ interface UpdateChannelContentParams extends MutationParams {
3142
3147
  imageDataUri?: string;
3143
3148
  }
3144
3149
  declare const UpdateChannelContent: ({ channelId, contentId, content, imageDataUri, clientApiParams, queryClient, }: UpdateChannelContentParams) => Promise<ConnectedXMResponse<Content>>;
3145
- declare const useUpdateChannelContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateChannelContent>>, Omit<UpdateChannelContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<Content>, any>, Omit<UpdateChannelContentParams, "queryClient" | "clientApiParams">, unknown>;
3150
+ declare const useUpdateChannelContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateChannelContent>>, Omit<UpdateChannelContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateChannelContentParams, "queryClient" | "clientApiParams">, unknown>;
3146
3151
 
3147
3152
  interface AddChannelInterestPayload {
3148
3153
  name: string;
@@ -3152,20 +3157,20 @@ interface AddChannelInterestParams extends MutationParams {
3152
3157
  interest: AddChannelInterestPayload;
3153
3158
  }
3154
3159
  declare const AddChannelInterest: ({ channelId, interest, clientApiParams, }: AddChannelInterestParams) => Promise<ConnectedXMResponse<Interest>>;
3155
- declare const useAddChannelInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddChannelInterest>>, Omit<AddChannelInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Interest>, axios.AxiosError<ConnectedXMResponse<Interest>, any>, Omit<AddChannelInterestParams, "queryClient" | "clientApiParams">, unknown>;
3160
+ declare const useAddChannelInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddChannelInterest>>, Omit<AddChannelInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Interest>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<AddChannelInterestParams, "queryClient" | "clientApiParams">, unknown>;
3156
3161
 
3157
3162
  interface RemoveChannelInterestParams extends MutationParams {
3158
3163
  channelId: string;
3159
3164
  interestId: string;
3160
3165
  }
3161
3166
  declare const RemoveChannelInterest: ({ channelId, interestId, clientApiParams, }: RemoveChannelInterestParams) => Promise<ConnectedXMResponse<null>>;
3162
- declare const useRemoveChannelInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveChannelInterest>>, Omit<RemoveChannelInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveChannelInterestParams, "queryClient" | "clientApiParams">, unknown>;
3167
+ declare const useRemoveChannelInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveChannelInterest>>, Omit<RemoveChannelInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<RemoveChannelInterestParams, "queryClient" | "clientApiParams">, unknown>;
3163
3168
 
3164
3169
  interface CreateChannelSubscriberParams extends MutationParams {
3165
3170
  channelId: string;
3166
3171
  }
3167
3172
  declare const CreateChannelSubscriber: ({ channelId, clientApiParams, queryClient, }: CreateChannelSubscriberParams) => Promise<ConnectedXMResponse<ChannelSubscriber>>;
3168
- declare const useCreateChannelSubscriber: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateChannelSubscriber>>, Omit<CreateChannelSubscriberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelSubscriber>, axios.AxiosError<ConnectedXMResponse<ChannelSubscriber>, any>, Omit<CreateChannelSubscriberParams, "queryClient" | "clientApiParams">, unknown>;
3173
+ declare const useCreateChannelSubscriber: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateChannelSubscriber>>, Omit<CreateChannelSubscriberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelSubscriber>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateChannelSubscriberParams, "queryClient" | "clientApiParams">, unknown>;
3169
3174
 
3170
3175
  interface UpdateChannelSubscriberParams extends MutationParams {
3171
3176
  channelId: string;
@@ -3174,13 +3179,13 @@ interface UpdateChannelSubscriberParams extends MutationParams {
3174
3179
  activityNotificationPreference?: ActivityPreference;
3175
3180
  }
3176
3181
  declare const UpdateChannelSubscriber: ({ channelId, contentEmailNotification, contentPushNotification, activityNotificationPreference, clientApiParams, queryClient, }: UpdateChannelSubscriberParams) => Promise<ConnectedXMResponse<ChannelSubscriber>>;
3177
- declare const useUpdateChannelSubscriber: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateChannelSubscriber>>, Omit<UpdateChannelSubscriberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelSubscriber>, axios.AxiosError<ConnectedXMResponse<ChannelSubscriber>, any>, Omit<UpdateChannelSubscriberParams, "queryClient" | "clientApiParams">, unknown>;
3182
+ declare const useUpdateChannelSubscriber: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateChannelSubscriber>>, Omit<UpdateChannelSubscriberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelSubscriber>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateChannelSubscriberParams, "queryClient" | "clientApiParams">, unknown>;
3178
3183
 
3179
3184
  interface DeleteChannelSubscriberParams extends MutationParams {
3180
3185
  channelId: string;
3181
3186
  }
3182
3187
  declare const DeleteChannelSubscriber: ({ channelId, clientApiParams, queryClient, }: DeleteChannelSubscriberParams) => Promise<ConnectedXMResponse<ChannelSubscriber>>;
3183
- declare const useDeleteChannelSubscriber: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteChannelSubscriber>>, Omit<DeleteChannelSubscriberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelSubscriber>, axios.AxiosError<ConnectedXMResponse<ChannelSubscriber>, any>, Omit<DeleteChannelSubscriberParams, "queryClient" | "clientApiParams">, unknown>;
3188
+ declare const useDeleteChannelSubscriber: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteChannelSubscriber>>, Omit<DeleteChannelSubscriberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelSubscriber>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteChannelSubscriberParams, "queryClient" | "clientApiParams">, unknown>;
3184
3189
 
3185
3190
  interface CreateChannelPayload {
3186
3191
  name: string;
@@ -3193,13 +3198,13 @@ interface CreateChannelParams extends MutationParams {
3193
3198
  imageDataUri?: any;
3194
3199
  }
3195
3200
  declare const CreateChannel: ({ channel, imageDataUri, clientApiParams, }: CreateChannelParams) => Promise<ConnectedXMResponse<Channel>>;
3196
- declare const useCreateChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateChannel>>, Omit<CreateChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<Channel>, any>, Omit<CreateChannelParams, "queryClient" | "clientApiParams">, unknown>;
3201
+ declare const useCreateChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateChannel>>, Omit<CreateChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateChannelParams, "queryClient" | "clientApiParams">, unknown>;
3197
3202
 
3198
3203
  interface DeleteChannelParams extends MutationParams {
3199
3204
  channelId: string;
3200
3205
  }
3201
3206
  declare const DeleteChannel: ({ channelId, clientApiParams, }: DeleteChannelParams) => Promise<ConnectedXMResponse<Channel>>;
3202
- declare const useDeleteChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteChannel>>, Omit<DeleteChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<Channel>, any>, Omit<DeleteChannelParams, "queryClient" | "clientApiParams">, unknown>;
3207
+ declare const useDeleteChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteChannel>>, Omit<DeleteChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteChannelParams, "queryClient" | "clientApiParams">, unknown>;
3203
3208
 
3204
3209
  interface UpdateChannelPayload {
3205
3210
  name?: string;
@@ -3219,7 +3224,7 @@ interface UpdateChannelParams extends MutationParams {
3219
3224
  imageDataUri?: any;
3220
3225
  }
3221
3226
  declare const UpdateChannel: ({ channelId, channel, imageDataUri, clientApiParams, queryClient, }: UpdateChannelParams) => Promise<ConnectedXMResponse<Channel>>;
3222
- declare const useUpdateChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateChannel>>, Omit<UpdateChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<Channel>, any>, Omit<UpdateChannelParams, "queryClient" | "clientApiParams">, unknown>;
3227
+ 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>;
3223
3228
 
3224
3229
  interface CompleteEventActivationParams extends MutationParams {
3225
3230
  eventId: string;
@@ -3228,7 +3233,7 @@ interface CompleteEventActivationParams extends MutationParams {
3228
3233
  code?: string;
3229
3234
  }
3230
3235
  declare const CompleteEventActivation: ({ eventId, passId, activationId, code, clientApiParams, queryClient, }: CompleteEventActivationParams) => Promise<ConnectedXMResponse<EventActivation>>;
3231
- declare const useCompleteEventActivation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CompleteEventActivation>>, Omit<CompleteEventActivationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventActivation>, axios.AxiosError<ConnectedXMResponse<EventActivation>, any>, Omit<CompleteEventActivationParams, "queryClient" | "clientApiParams">, unknown>;
3236
+ 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>;
3232
3237
 
3233
3238
  interface BookmarkEventAttendeePassSessionParams extends MutationParams {
3234
3239
  eventId: string;
@@ -3236,7 +3241,7 @@ interface BookmarkEventAttendeePassSessionParams extends MutationParams {
3236
3241
  sessionId: string;
3237
3242
  }
3238
3243
  declare const BookmarkEventAttendeePassSession: ({ eventId, passId, sessionId, clientApiParams, queryClient, }: BookmarkEventAttendeePassSessionParams) => Promise<ConnectedXMResponse<Pass>>;
3239
- declare const useBookmarkEventAttendeePassSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof BookmarkEventAttendeePassSession>>, Omit<BookmarkEventAttendeePassSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<Pass>, any>, Omit<BookmarkEventAttendeePassSessionParams, "queryClient" | "clientApiParams">, unknown>;
3244
+ 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>;
3240
3245
 
3241
3246
  interface UnbookmarkEventAttendeePassSessionParams extends MutationParams {
3242
3247
  eventId: string;
@@ -3244,7 +3249,7 @@ interface UnbookmarkEventAttendeePassSessionParams extends MutationParams {
3244
3249
  sessionId: string;
3245
3250
  }
3246
3251
  declare const UnbookmarkEventAttendeePassSession: ({ eventId, passId, sessionId, clientApiParams, queryClient, }: UnbookmarkEventAttendeePassSessionParams) => Promise<ConnectedXMResponse<Pass>>;
3247
- declare const useUnbookmarkEventAttendeePassSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnbookmarkEventAttendeePassSession>>, Omit<UnbookmarkEventAttendeePassSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<Pass>, any>, Omit<UnbookmarkEventAttendeePassSessionParams, "queryClient" | "clientApiParams">, unknown>;
3252
+ 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>;
3248
3253
 
3249
3254
  interface UpdateEventSessionPassResponsesParams extends MutationParams {
3250
3255
  eventId: string;
@@ -3256,7 +3261,7 @@ interface UpdateEventSessionPassResponsesParams extends MutationParams {
3256
3261
  }[];
3257
3262
  }
3258
3263
  declare const UpdateEventSessionPassResponses: ({ eventId, sessionId, passId, responses, clientApiParams, queryClient, }: UpdateEventSessionPassResponsesParams) => Promise<ConnectedXMResponse<null>>;
3259
- declare const useUpdateEventSessionPassResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateEventSessionPassResponses>>, Omit<UpdateEventSessionPassResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateEventSessionPassResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3264
+ 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>;
3260
3265
 
3261
3266
  interface CapturePaymentIntentParams extends MutationParams {
3262
3267
  intent: PaymentIntent;
@@ -3266,38 +3271,38 @@ interface CapturePaymentIntentParams extends MutationParams {
3266
3271
  };
3267
3272
  }
3268
3273
  declare const CapturePaymentIntent: ({ intent, paymentDetails, clientApiParams, queryClient, }: CapturePaymentIntentParams) => Promise<ConnectedXMResponse<null>>;
3269
- declare const useCapturePaymentIntent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CapturePaymentIntent>>, Omit<CapturePaymentIntentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<CapturePaymentIntentParams, "queryClient" | "clientApiParams">, unknown>;
3274
+ declare const useCapturePaymentIntent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CapturePaymentIntent>>, Omit<CapturePaymentIntentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CapturePaymentIntentParams, "queryClient" | "clientApiParams">, unknown>;
3270
3275
 
3271
3276
  interface CreateSelfAddressParams extends MutationParams {
3272
3277
  address: any;
3273
3278
  }
3274
3279
  declare const CreateSelfAddress: ({ address, clientApiParams, queryClient, }: CreateSelfAddressParams) => Promise<ConnectedXMResponse<AccountAddress>>;
3275
- declare const useCreateSelfAddress: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfAddress>>, Omit<CreateSelfAddressParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<AccountAddress>, axios.AxiosError<ConnectedXMResponse<AccountAddress>, any>, Omit<CreateSelfAddressParams, "queryClient" | "clientApiParams">, unknown>;
3280
+ declare const useCreateSelfAddress: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfAddress>>, Omit<CreateSelfAddressParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<AccountAddress>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateSelfAddressParams, "queryClient" | "clientApiParams">, unknown>;
3276
3281
 
3277
3282
  interface DeleteSelfAddressParams extends MutationParams {
3278
3283
  addressId: string;
3279
3284
  }
3280
3285
  declare const DeleteSelfAddress: ({ addressId, clientApiParams, queryClient, }: DeleteSelfAddressParams) => Promise<ConnectedXMResponse<null>>;
3281
- declare const useDeleteSelfAddress: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfAddress>>, Omit<DeleteSelfAddressParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteSelfAddressParams, "queryClient" | "clientApiParams">, unknown>;
3286
+ declare const useDeleteSelfAddress: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfAddress>>, Omit<DeleteSelfAddressParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteSelfAddressParams, "queryClient" | "clientApiParams">, unknown>;
3282
3287
 
3283
3288
  interface UpdateSelfAddressParams extends MutationParams {
3284
3289
  addressId: string;
3285
3290
  address: any;
3286
3291
  }
3287
3292
  declare const UpdateSelfAddress: ({ addressId, address, queryClient, clientApiParams, }: UpdateSelfAddressParams) => Promise<ConnectedXMResponse<AccountAddress>>;
3288
- declare const useUpdateSelfAddress: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfAddress>>, Omit<UpdateSelfAddressParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<AccountAddress>, axios.AxiosError<ConnectedXMResponse<AccountAddress>, any>, Omit<UpdateSelfAddressParams, "queryClient" | "clientApiParams">, unknown>;
3293
+ declare const useUpdateSelfAddress: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfAddress>>, Omit<UpdateSelfAddressParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<AccountAddress>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfAddressParams, "queryClient" | "clientApiParams">, unknown>;
3289
3294
 
3290
3295
  interface CreateSelfLeadParams extends MutationParams {
3291
3296
  passId: string;
3292
3297
  }
3293
3298
  declare const CreateSelfLead: ({ passId, clientApiParams, queryClient, }: CreateSelfLeadParams) => Promise<ConnectedXMResponse<Lead>>;
3294
- declare const useCreateSelfLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfLead>>, Omit<CreateSelfLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<CreateSelfLeadParams, "queryClient" | "clientApiParams">, unknown>;
3299
+ declare const useCreateSelfLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfLead>>, Omit<CreateSelfLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateSelfLeadParams, "queryClient" | "clientApiParams">, unknown>;
3295
3300
 
3296
3301
  interface DeleteSelfLeadParams extends MutationParams {
3297
3302
  leadId: string;
3298
3303
  }
3299
3304
  declare const DeleteSelfLead: ({ leadId, clientApiParams, queryClient, }: DeleteSelfLeadParams) => Promise<ConnectedXMResponse<null>>;
3300
- declare const useDeleteSelfLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfLead>>, Omit<DeleteSelfLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteSelfLeadParams, "queryClient" | "clientApiParams">, unknown>;
3305
+ declare const useDeleteSelfLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfLead>>, Omit<DeleteSelfLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteSelfLeadParams, "queryClient" | "clientApiParams">, unknown>;
3301
3306
 
3302
3307
  interface UpdateSelfLeadParams extends MutationParams {
3303
3308
  leadId: string;
@@ -3307,54 +3312,54 @@ interface UpdateSelfLeadParams extends MutationParams {
3307
3312
  };
3308
3313
  }
3309
3314
  declare const UpdateSelfLead: ({ leadId, lead, queryClient, clientApiParams, }: UpdateSelfLeadParams) => Promise<ConnectedXMResponse<Lead>>;
3310
- declare const useUpdateSelfLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfLead>>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApiParams">, unknown>;
3315
+ declare const useUpdateSelfLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfLead>>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApiParams">, unknown>;
3311
3316
 
3312
3317
  interface AddSelfChatChannelMemberParams extends MutationParams {
3313
3318
  channelId: string;
3314
3319
  accountId: string;
3315
3320
  }
3316
3321
  declare const AddSelfChatChannelMember: ({ channelId, accountId, clientApiParams, queryClient, }: AddSelfChatChannelMemberParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
3317
- declare const useAddSelfChatChannelMember: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfChatChannelMember>>, Omit<AddSelfChatChannelMemberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<ChatChannelMember>, any>, Omit<AddSelfChatChannelMemberParams, "queryClient" | "clientApiParams">, unknown>;
3322
+ declare const useAddSelfChatChannelMember: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfChatChannelMember>>, Omit<AddSelfChatChannelMemberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<AddSelfChatChannelMemberParams, "queryClient" | "clientApiParams">, unknown>;
3318
3323
 
3319
3324
  interface CreateSelfChatChannelParams extends MutationParams {
3320
3325
  name: string;
3321
3326
  accountIds: string[];
3322
3327
  }
3323
3328
  declare const CreateSelfChatChannel: ({ name, accountIds, clientApiParams, queryClient, }: CreateSelfChatChannelParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
3324
- declare const useCreateSelfChatChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfChatChannel>>, Omit<CreateSelfChatChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<ChatChannelMember>, any>, Omit<CreateSelfChatChannelParams, "queryClient" | "clientApiParams">, unknown>;
3329
+ declare const useCreateSelfChatChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfChatChannel>>, Omit<CreateSelfChatChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateSelfChatChannelParams, "queryClient" | "clientApiParams">, unknown>;
3325
3330
 
3326
3331
  interface CreateSelfChatChannelMessageParams extends MutationParams {
3327
3332
  channelId: string;
3328
3333
  text: string;
3329
3334
  }
3330
3335
  declare const CreateSelfChatChannelMessage: ({ channelId, text, queryClient, clientApiParams, }: CreateSelfChatChannelMessageParams) => Promise<ConnectedXMResponse<ChatChannelMessage>>;
3331
- declare const useCreateSelfChatChannelMessage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfChatChannelMessage>>, Omit<CreateSelfChatChannelMessageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMessage>, axios.AxiosError<ConnectedXMResponse<ChatChannelMessage>, any>, Omit<CreateSelfChatChannelMessageParams, "queryClient" | "clientApiParams">, unknown>;
3336
+ declare const useCreateSelfChatChannelMessage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfChatChannelMessage>>, Omit<CreateSelfChatChannelMessageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMessage>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateSelfChatChannelMessageParams, "queryClient" | "clientApiParams">, unknown>;
3332
3337
 
3333
3338
  interface DeleteSelfChatChannelParams extends MutationParams {
3334
3339
  channelId: string;
3335
3340
  }
3336
3341
  declare const DeleteSelfChatChannel: ({ channelId, clientApiParams, queryClient, }: DeleteSelfChatChannelParams) => Promise<ConnectedXMResponse<null>>;
3337
- declare const useDeleteSelfChatChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfChatChannel>>, Omit<DeleteSelfChatChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteSelfChatChannelParams, "queryClient" | "clientApiParams">, unknown>;
3342
+ declare const useDeleteSelfChatChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfChatChannel>>, Omit<DeleteSelfChatChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteSelfChatChannelParams, "queryClient" | "clientApiParams">, unknown>;
3338
3343
 
3339
3344
  interface DeleteSelfChatChannelMessageParams extends MutationParams {
3340
3345
  channelId: string;
3341
3346
  messageId: string;
3342
3347
  }
3343
3348
  declare const DeleteSelfChatChannelMessage: ({ channelId, messageId, clientApiParams, queryClient, }: DeleteSelfChatChannelMessageParams) => Promise<ConnectedXMResponse<null>>;
3344
- declare const useDeleteSelfChatChannelMessage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfChatChannelMessage>>, Omit<DeleteSelfChatChannelMessageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteSelfChatChannelMessageParams, "queryClient" | "clientApiParams">, unknown>;
3349
+ declare const useDeleteSelfChatChannelMessage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfChatChannelMessage>>, Omit<DeleteSelfChatChannelMessageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteSelfChatChannelMessageParams, "queryClient" | "clientApiParams">, unknown>;
3345
3350
 
3346
3351
  interface LeaveSelfChatChannelParams extends MutationParams {
3347
3352
  channelId: string;
3348
3353
  }
3349
3354
  declare const LeaveSelfChatChannel: ({ channelId, clientApiParams, queryClient, }: LeaveSelfChatChannelParams) => Promise<ConnectedXMResponse<null>>;
3350
- declare const useLeaveSelfChatChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof LeaveSelfChatChannel>>, Omit<LeaveSelfChatChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<LeaveSelfChatChannelParams, "queryClient" | "clientApiParams">, unknown>;
3355
+ declare const useLeaveSelfChatChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof LeaveSelfChatChannel>>, Omit<LeaveSelfChatChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<LeaveSelfChatChannelParams, "queryClient" | "clientApiParams">, unknown>;
3351
3356
 
3352
3357
  interface UpdateSelfChatChannelNotificationsParams extends MutationParams {
3353
3358
  channelId: string;
3354
3359
  notifications: boolean;
3355
3360
  }
3356
3361
  declare const UpdateSelfChatChannelNotifications: ({ channelId, notifications, clientApiParams, queryClient, }: UpdateSelfChatChannelNotificationsParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
3357
- declare const useUpdateSelfChatChannelNotifications: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfChatChannelNotifications>>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<ChatChannelMember>, any>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApiParams">, unknown>;
3362
+ 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>;
3358
3363
 
3359
3364
  interface SelectSelfEventRegistrationCouponParams extends MutationParams {
3360
3365
  eventId: string;
@@ -3371,13 +3376,13 @@ interface SelectSelfEventRegistrationCouponParams extends MutationParams {
3371
3376
  }[];
3372
3377
  }
3373
3378
  declare const SelectSelfEventRegistrationCoupon: ({ eventId, passes, packages, couponCode, clientApiParams, queryClient, }: SelectSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<BaseCoupon>>;
3374
- declare const useSelectSelfEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationCoupon>>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BaseCoupon>, axios.AxiosError<ConnectedXMResponse<BaseCoupon>, any>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
3379
+ 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>;
3375
3380
 
3376
3381
  interface RemoveSelfEventRegistrationCouponParams extends MutationParams {
3377
3382
  eventId: string;
3378
3383
  }
3379
3384
  declare const RemoveSelfEventRegistrationCoupon: ({ eventId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<null>>;
3380
- declare const useRemoveSelfEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationCoupon>>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
3385
+ 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>;
3381
3386
 
3382
3387
  interface UpdateSelfEventRegistrationParams extends MutationParams {
3383
3388
  eventId: string;
@@ -3386,7 +3391,7 @@ interface UpdateSelfEventRegistrationParams extends MutationParams {
3386
3391
  announcementEmailNotification?: boolean;
3387
3392
  }
3388
3393
  declare const UpdateSelfEventRegistration: ({ eventId, activityNotificationPreference, announcementPushNotification, announcementEmailNotification, clientApiParams, queryClient, }: UpdateSelfEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
3389
- declare const useUpdateSelfEventRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistration>>, Omit<UpdateSelfEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
3394
+ 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>;
3390
3395
 
3391
3396
  interface UpdateSelfEventRegistrationPassResponseParams extends MutationParams {
3392
3397
  eventId: string;
@@ -3395,7 +3400,7 @@ interface UpdateSelfEventRegistrationPassResponseParams extends MutationParams {
3395
3400
  response: string;
3396
3401
  }
3397
3402
  declare const UpdateSelfEventRegistrationPassResponse: ({ eventId, passId, questionId, response, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPassResponseParams) => Promise<ConnectedXMResponse<null>>;
3398
- declare const useUpdateSelfEventRegistrationPassResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPassResponse>>, Omit<UpdateSelfEventRegistrationPassResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationPassResponseParams, "queryClient" | "clientApiParams">, unknown>;
3403
+ 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>;
3399
3404
 
3400
3405
  interface UpdateSelfEventRegistrationPassesParams extends MutationParams {
3401
3406
  eventId: string;
@@ -3411,7 +3416,7 @@ interface UpdateSelfEventRegistrationPassesParams extends MutationParams {
3411
3416
  }[];
3412
3417
  }
3413
3418
  declare const UpdateSelfEventRegistrationPasses: ({ eventId, passes, packages, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPassesParams) => Promise<ConnectedXMResponse<null>>;
3414
- declare const useUpdateSelfEventRegistrationPasses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPasses>>, Omit<UpdateSelfEventRegistrationPassesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationPassesParams, "queryClient" | "clientApiParams">, unknown>;
3419
+ 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>;
3415
3420
 
3416
3421
  interface UpdateSelfEventRegistrationPurchaseAddOnParams extends MutationParams {
3417
3422
  eventId: string;
@@ -3424,7 +3429,7 @@ interface UpdateSelfEventRegistrationPurchaseAddOnParams extends MutationParams
3424
3429
  }[];
3425
3430
  }
3426
3431
  declare const UpdateSelfEventRegistrationPurchaseAddOn: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPurchaseAddOnParams) => Promise<ConnectedXMResponse<null>>;
3427
- declare const useUpdateSelfEventRegistrationPurchaseAddOn: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPurchaseAddOn>>, Omit<UpdateSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">, unknown>;
3432
+ 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>;
3428
3433
 
3429
3434
  interface UpdateSelfEventRegistrationReservationsParams extends MutationParams {
3430
3435
  eventId: string;
@@ -3440,7 +3445,7 @@ interface UpdateSelfEventRegistrationReservationsParams extends MutationParams {
3440
3445
  }[];
3441
3446
  }
3442
3447
  declare const UpdateSelfEventRegistrationReservations: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationReservationsParams) => Promise<ConnectedXMResponse<null>>;
3443
- declare const useUpdateSelfEventRegistrationReservations: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationReservations>>, Omit<UpdateSelfEventRegistrationReservationsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationReservationsParams, "queryClient" | "clientApiParams">, unknown>;
3448
+ 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>;
3444
3449
 
3445
3450
  interface UpdateSelfEventRegistrationResponsesParams extends MutationParams {
3446
3451
  eventId: string;
@@ -3453,7 +3458,7 @@ interface UpdateSelfEventRegistrationResponsesParams extends MutationParams {
3453
3458
  }[];
3454
3459
  }
3455
3460
  declare const UpdateSelfEventRegistrationResponses: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationResponsesParams) => Promise<ConnectedXMResponse<null>>;
3456
- declare const useUpdateSelfEventRegistrationResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponses>>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3461
+ 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>;
3457
3462
 
3458
3463
  interface UpdateSelfEventRegistrationSearchListResponseParams extends MutationParams {
3459
3464
  eventId: string;
@@ -3462,7 +3467,7 @@ interface UpdateSelfEventRegistrationSearchListResponseParams extends MutationPa
3462
3467
  searchListValueId: string;
3463
3468
  }
3464
3469
  declare const UpdateSelfEventRegistrationSearchListResponse: ({ eventId, passId, questionId, searchListValueId, clientApiParams, queryClient, }: UpdateSelfEventRegistrationSearchListResponseParams) => Promise<ConnectedXMResponse<null>>;
3465
- declare const useUpdateSelfEventRegistrationSearchListResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationSearchListResponse>>, Omit<UpdateSelfEventRegistrationSearchListResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationSearchListResponseParams, "queryClient" | "clientApiParams">, unknown>;
3470
+ 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>;
3466
3471
 
3467
3472
  interface UpdateSelfEventAttendeePassResponsesParams extends MutationParams {
3468
3473
  eventId: string;
@@ -3473,7 +3478,7 @@ interface UpdateSelfEventAttendeePassResponsesParams extends MutationParams {
3473
3478
  }[];
3474
3479
  }
3475
3480
  declare const UpdateSelfEventAttendeePassResponses: ({ eventId, passId, questions, clientApiParams, queryClient, }: UpdateSelfEventAttendeePassResponsesParams) => Promise<ConnectedXMResponse<null>>;
3476
- declare const useUpdateSelfEventAttendeePassResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventAttendeePassResponses>>, Omit<UpdateSelfEventAttendeePassResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventAttendeePassResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3481
+ 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>;
3477
3482
 
3478
3483
  interface UpdateSelfEventAttendeePassFollowupParams extends MutationParams {
3479
3484
  eventId: string;
@@ -3485,7 +3490,7 @@ interface UpdateSelfEventAttendeePassFollowupParams extends MutationParams {
3485
3490
  }[];
3486
3491
  }
3487
3492
  declare const UpdateSelfEventAttendeePassFollowup: ({ eventId, passId, followupId, questions, clientApiParams, queryClient, }: UpdateSelfEventAttendeePassFollowupParams) => Promise<ConnectedXMResponse<null>>;
3488
- declare const useUpdateSelfEventAttendeePassFollowup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventAttendeePassFollowup>>, Omit<UpdateSelfEventAttendeePassFollowupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventAttendeePassFollowupParams, "queryClient" | "clientApiParams">, unknown>;
3493
+ 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>;
3489
3494
 
3490
3495
  interface TransferPassParams extends MutationParams {
3491
3496
  passId: string;
@@ -3493,7 +3498,7 @@ interface TransferPassParams extends MutationParams {
3493
3498
  receiverId: string;
3494
3499
  }
3495
3500
  declare const TransferPass: ({ passId, eventId, receiverId, clientApiParams, queryClient, }: TransferPassParams) => Promise<ConnectedXMResponse<null>>;
3496
- declare const useTransferPass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof TransferPass>>, Omit<TransferPassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<TransferPassParams, "queryClient" | "clientApiParams">, unknown>;
3501
+ 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>;
3497
3502
 
3498
3503
  interface CancelPassParams extends MutationParams {
3499
3504
  passId: string;
@@ -3502,7 +3507,7 @@ interface CancelPassParams extends MutationParams {
3502
3507
  issueRefund?: boolean;
3503
3508
  }
3504
3509
  declare const CancelPass: ({ passId, eventId, issueRefund, clientApiParams, queryClient, }: CancelPassParams) => Promise<ConnectedXMResponse<Pass>>;
3505
- declare const useCancelPass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelPass>>, Omit<CancelPassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<Pass>, any>, Omit<CancelPassParams, "queryClient" | "clientApiParams">, unknown>;
3510
+ 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>;
3506
3511
 
3507
3512
  interface UpdateSelfEventAttendeeAccessResponsesParams extends MutationParams {
3508
3513
  eventId: string;
@@ -3514,7 +3519,7 @@ interface UpdateSelfEventAttendeeAccessResponsesParams extends MutationParams {
3514
3519
  }[];
3515
3520
  }
3516
3521
  declare const UpdateSelfEventAttendeeAccessResponses: ({ eventId, passId, sessionId, responses, clientApiParams, queryClient, }: UpdateSelfEventAttendeeAccessResponsesParams) => Promise<ConnectedXMResponse<null>>;
3517
- declare const useUpdateSelfEventAttendeeAccessResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventAttendeeAccessResponses>>, Omit<UpdateSelfEventAttendeeAccessResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventAttendeeAccessResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3522
+ 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>;
3518
3523
 
3519
3524
  interface CancelSelfEventSessionAccessParams extends MutationParams {
3520
3525
  eventId: string;
@@ -3522,32 +3527,32 @@ interface CancelSelfEventSessionAccessParams extends MutationParams {
3522
3527
  sessionId: string;
3523
3528
  }
3524
3529
  declare const CancelSelfEventSessionAccess: ({ eventId, passId, sessionId, clientApiParams, queryClient, }: CancelSelfEventSessionAccessParams) => Promise<ConnectedXMResponse<EventSessionAccess>>;
3525
- declare const useCancelSelfEventSessionAccess: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelSelfEventSessionAccess>>, Omit<CancelSelfEventSessionAccessParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventSessionAccess>, axios.AxiosError<ConnectedXMResponse<EventSessionAccess>, any>, Omit<CancelSelfEventSessionAccessParams, "queryClient" | "clientApiParams">, unknown>;
3530
+ 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>;
3526
3531
 
3527
3532
  interface AddSelfEventSessionParams extends MutationParams {
3528
3533
  eventId: string;
3529
3534
  sessionId: string;
3530
3535
  }
3531
3536
  declare const AddSelfEventSession: ({ eventId, sessionId, clientApiParams, queryClient, }: AddSelfEventSessionParams) => Promise<ConnectedXMResponse<Account>>;
3532
- declare const useAddSelfEventSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventSession>>, Omit<AddSelfEventSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<AddSelfEventSessionParams, "queryClient" | "clientApiParams">, unknown>;
3537
+ declare const useAddSelfEventSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventSession>>, Omit<AddSelfEventSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<AddSelfEventSessionParams, "queryClient" | "clientApiParams">, unknown>;
3533
3538
 
3534
3539
  interface DeleteSelfParams extends MutationParams {
3535
3540
  }
3536
3541
  declare const DeleteSelf: ({ clientApiParams, queryClient, }: DeleteSelfParams) => Promise<any>;
3537
- declare const useDeleteSelf: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelf>>, Omit<DeleteSelfParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<any, any>, Omit<DeleteSelfParams, "queryClient" | "clientApiParams">, unknown>;
3542
+ declare const useDeleteSelf: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelf>>, Omit<DeleteSelfParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteSelfParams, "queryClient" | "clientApiParams">, unknown>;
3538
3543
 
3539
3544
  interface DeleteSelfPushDeviceParams extends MutationParams {
3540
3545
  pushDeviceId: string;
3541
3546
  }
3542
3547
  declare const DeleteSelfPushDevice: ({ pushDeviceId, clientApiParams, queryClient, }: DeleteSelfPushDeviceParams) => Promise<ConnectedXMResponse<PushDevice>>;
3543
- declare const useDeleteSelfPushDevice: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfPushDevice>>, Omit<DeleteSelfPushDeviceParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<PushDevice>, axios.AxiosError<ConnectedXMResponse<PushDevice>, any>, Omit<DeleteSelfPushDeviceParams, "queryClient" | "clientApiParams">, unknown>;
3548
+ declare const useDeleteSelfPushDevice: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfPushDevice>>, Omit<DeleteSelfPushDeviceParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<PushDevice>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteSelfPushDeviceParams, "queryClient" | "clientApiParams">, unknown>;
3544
3549
 
3545
3550
  interface RemoveSelfEventSessionParams extends MutationParams {
3546
3551
  eventId: string;
3547
3552
  sessionId: string;
3548
3553
  }
3549
3554
  declare const RemoveSelfEventSession: ({ eventId, sessionId, clientApiParams, queryClient, }: RemoveSelfEventSessionParams) => Promise<ConnectedXMResponse<Account>>;
3550
- declare const useRemoveSelfEventSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventSession>>, Omit<RemoveSelfEventSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<RemoveSelfEventSessionParams, "queryClient" | "clientApiParams">, unknown>;
3555
+ declare const useRemoveSelfEventSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventSession>>, Omit<RemoveSelfEventSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<RemoveSelfEventSessionParams, "queryClient" | "clientApiParams">, unknown>;
3551
3556
 
3552
3557
  interface UpdateSelfGroupMembershipParams extends MutationParams {
3553
3558
  groupId: string;
@@ -3557,7 +3562,7 @@ interface UpdateSelfGroupMembershipParams extends MutationParams {
3557
3562
  announcementEmailNotification?: boolean;
3558
3563
  }
3559
3564
  declare const UpdateSelfGroupMembership: ({ groupId, membership, activityNotificationPreference, announcementPushNotification, announcementEmailNotification, clientApiParams, queryClient, }: UpdateSelfGroupMembershipParams) => Promise<ConnectedXMResponse<GroupMembership>>;
3560
- declare const useUpdateSelfGroupMembership: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfGroupMembership>>, Omit<UpdateSelfGroupMembershipParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupMembership>, axios.AxiosError<ConnectedXMResponse<GroupMembership>, any>, Omit<UpdateSelfGroupMembershipParams, "queryClient" | "clientApiParams">, unknown>;
3565
+ declare const useUpdateSelfGroupMembership: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfGroupMembership>>, Omit<UpdateSelfGroupMembershipParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupMembership>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfGroupMembershipParams, "queryClient" | "clientApiParams">, unknown>;
3561
3566
 
3562
3567
  interface UpdateSelfParams extends MutationParams {
3563
3568
  username?: string;
@@ -3579,19 +3584,19 @@ interface UpdateSelfParams extends MutationParams {
3579
3584
  attributes?: Record<string, string>;
3580
3585
  }
3581
3586
  declare const UpdateSelf: ({ clientApiParams, queryClient, ...params }: UpdateSelfParams) => Promise<ConnectedXMResponse<Self>>;
3582
- declare const useUpdateSelf: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelf>>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">, unknown>;
3587
+ declare const useUpdateSelf: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelf>>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">, unknown>;
3583
3588
 
3584
3589
  interface UpdateSelfImageParams extends MutationParams {
3585
3590
  base64: string;
3586
3591
  }
3587
3592
  declare const UpdateSelfImage: ({ base64, clientApiParams, queryClient, }: UpdateSelfImageParams) => Promise<ConnectedXMResponse<Self>>;
3588
- declare const useUpdateSelfImage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfImage>>, Omit<UpdateSelfImageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfImageParams, "queryClient" | "clientApiParams">, unknown>;
3593
+ declare const useUpdateSelfImage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfImage>>, Omit<UpdateSelfImageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfImageParams, "queryClient" | "clientApiParams">, unknown>;
3589
3594
 
3590
3595
  interface UpdateSelfBannerParams extends MutationParams {
3591
3596
  base64: string;
3592
3597
  }
3593
3598
  declare const UpdateSelfBanner: ({ base64, clientApiParams, queryClient, }: UpdateSelfBannerParams) => Promise<ConnectedXMResponse<Self>>;
3594
- declare const useUpdateSelfBanner: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfBanner>>, Omit<UpdateSelfBannerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfBannerParams, "queryClient" | "clientApiParams">, unknown>;
3599
+ declare const useUpdateSelfBanner: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfBanner>>, Omit<UpdateSelfBannerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfBannerParams, "queryClient" | "clientApiParams">, unknown>;
3595
3600
 
3596
3601
  interface UpdateSelfNotificationPreferencesParams extends MutationParams {
3597
3602
  newFollowerPush?: boolean;
@@ -3610,20 +3615,20 @@ interface UpdateSelfNotificationPreferencesParams extends MutationParams {
3610
3615
  groupInvitationEmail?: boolean;
3611
3616
  }
3612
3617
  declare const UpdateSelfNotificationPreferences: ({ clientApiParams, queryClient, ...params }: UpdateSelfNotificationPreferencesParams) => Promise<ConnectedXMResponse<NotificationPreferences>>;
3613
- declare const useUpdateSelfNotificationPreferences: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfNotificationPreferences>>, Omit<UpdateSelfNotificationPreferencesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<NotificationPreferences>, axios.AxiosError<ConnectedXMResponse<NotificationPreferences>, any>, Omit<UpdateSelfNotificationPreferencesParams, "queryClient" | "clientApiParams">, unknown>;
3618
+ declare const useUpdateSelfNotificationPreferences: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfNotificationPreferences>>, Omit<UpdateSelfNotificationPreferencesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<NotificationPreferences>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfNotificationPreferencesParams, "queryClient" | "clientApiParams">, unknown>;
3614
3619
 
3615
3620
  interface UpdateSelfPushDeviceParams extends MutationParams {
3616
3621
  pushDeviceId: string;
3617
3622
  pushDevice: PushDevice;
3618
3623
  }
3619
3624
  declare const UpdateSelfPushDevice: ({ pushDeviceId, pushDevice, clientApiParams, queryClient, }: UpdateSelfPushDeviceParams) => Promise<ConnectedXMResponse<PushDevice>>;
3620
- declare const useUpdateSelfPushDevice: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfPushDevice>>, Omit<UpdateSelfPushDeviceParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<PushDevice>, axios.AxiosError<ConnectedXMResponse<PushDevice>, any>, Omit<UpdateSelfPushDeviceParams, "queryClient" | "clientApiParams">, unknown>;
3625
+ declare const useUpdateSelfPushDevice: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfPushDevice>>, Omit<UpdateSelfPushDeviceParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<PushDevice>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfPushDeviceParams, "queryClient" | "clientApiParams">, unknown>;
3621
3626
 
3622
3627
  interface AddSelfInterestsParams extends MutationParams {
3623
3628
  interestIds: string[];
3624
3629
  }
3625
3630
  declare const AddSelfInterests: ({ interestIds, clientApiParams, queryClient, }: AddSelfInterestsParams) => Promise<ConnectedXMResponse<Account>>;
3626
- declare const useAddSelfInterests: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfInterests>>, Omit<AddSelfInterestsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<AddSelfInterestsParams, "queryClient" | "clientApiParams">, unknown>;
3631
+ declare const useAddSelfInterests: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfInterests>>, Omit<AddSelfInterestsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<AddSelfInterestsParams, "queryClient" | "clientApiParams">, unknown>;
3627
3632
 
3628
3633
  /**
3629
3634
  * @category Params
@@ -3644,7 +3649,7 @@ declare const CreateSupportTicket: ({ type, request, eventId, firstMessage, clie
3644
3649
  * @category Mutations
3645
3650
  * @group SupportTickets
3646
3651
  */
3647
- declare const useCreateSupportTicket: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSupportTicket>>, Omit<CreateSupportTicketParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<SupportTicket>, axios.AxiosError<ConnectedXMResponse<SupportTicket>, any>, Omit<CreateSupportTicketParams, "queryClient" | "clientApiParams">, unknown>;
3652
+ declare const useCreateSupportTicket: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSupportTicket>>, Omit<CreateSupportTicketParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<SupportTicket>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateSupportTicketParams, "queryClient" | "clientApiParams">, unknown>;
3648
3653
 
3649
3654
  /**
3650
3655
  * @category Params
@@ -3663,26 +3668,26 @@ declare const CreateSupportTicketMessage: ({ supportTicketId, message, clientApi
3663
3668
  * @category Mutations
3664
3669
  * @group SupportTickets
3665
3670
  */
3666
- declare const useCreateSupportTicketMessage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSupportTicketMessage>>, Omit<CreateSupportTicketMessageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<SupportTicketMessage>, axios.AxiosError<ConnectedXMResponse<SupportTicketMessage>, any>, Omit<CreateSupportTicketMessageParams, "queryClient" | "clientApiParams">, unknown>;
3671
+ declare const useCreateSupportTicketMessage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSupportTicketMessage>>, Omit<CreateSupportTicketMessageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<SupportTicketMessage>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateSupportTicketMessageParams, "queryClient" | "clientApiParams">, unknown>;
3667
3672
 
3668
3673
  interface AcceptGroupInviteParitation extends MutationParams {
3669
3674
  groupId: string;
3670
3675
  }
3671
3676
  declare const AcceptGroupInvitation: ({ groupId, clientApiParams, queryClient, }: AcceptGroupInviteParitation) => Promise<ConnectedXMResponse<null>>;
3672
- declare const useAcceptGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptGroupInvitation>>, Omit<AcceptGroupInviteParitation, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<AcceptGroupInviteParitation, "queryClient" | "clientApiParams">, unknown>;
3677
+ declare const useAcceptGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptGroupInvitation>>, Omit<AcceptGroupInviteParitation, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<AcceptGroupInviteParitation, "queryClient" | "clientApiParams">, unknown>;
3673
3678
 
3674
3679
  interface AcceptGroupRequestParams extends MutationParams {
3675
3680
  groupId: string;
3676
3681
  requestId: string;
3677
3682
  }
3678
3683
  declare const AcceptGroupRequest: ({ groupId, requestId, clientApiParams, queryClient, }: AcceptGroupRequestParams) => Promise<ConnectedXMResponse<Group>>;
3679
- declare const useAcceptGroupRequest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptGroupRequest>>, Omit<AcceptGroupRequestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<Group>, any>, Omit<AcceptGroupRequestParams, "queryClient" | "clientApiParams">, unknown>;
3684
+ declare const useAcceptGroupRequest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptGroupRequest>>, Omit<AcceptGroupRequestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<AcceptGroupRequestParams, "queryClient" | "clientApiParams">, unknown>;
3680
3685
 
3681
3686
  interface CancelGroupRequestParams extends MutationParams {
3682
3687
  groupId: string;
3683
3688
  }
3684
3689
  declare const CancelGroupRequest: ({ groupId, clientApiParams, queryClient, }: CancelGroupRequestParams) => Promise<ConnectedXMResponse<null>>;
3685
- declare const useCancelGroupRequest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelGroupRequest>>, Omit<CancelGroupRequestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<CancelGroupRequestParams, "queryClient" | "clientApiParams">, unknown>;
3690
+ declare const useCancelGroupRequest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelGroupRequest>>, Omit<CancelGroupRequestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CancelGroupRequestParams, "queryClient" | "clientApiParams">, unknown>;
3686
3691
 
3687
3692
  interface CreateGroupData {
3688
3693
  name: string;
@@ -3696,20 +3701,20 @@ interface CreateGroupParams extends MutationParams {
3696
3701
  imageDataUri?: string;
3697
3702
  }
3698
3703
  declare const CreateGroup: ({ group, imageDataUri, clientApiParams, queryClient, }: CreateGroupParams) => Promise<ConnectedXMResponse<Group>>;
3699
- declare const useCreateGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateGroup>>, Omit<CreateGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<Group>, any>, Omit<CreateGroupParams, "queryClient" | "clientApiParams">, unknown>;
3704
+ declare const useCreateGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateGroup>>, Omit<CreateGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateGroupParams, "queryClient" | "clientApiParams">, unknown>;
3700
3705
 
3701
3706
  interface CreateGroupInvitationsParams extends MutationParams {
3702
3707
  groupId: string;
3703
3708
  accountIds: string[];
3704
3709
  }
3705
3710
  declare const CreateGroupInvitations: ({ groupId, accountIds, clientApiParams, queryClient, }: CreateGroupInvitationsParams) => Promise<ConnectedXMResponse<null>>;
3706
- declare const useCreateGroupInvitations: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateGroupInvitations>>, Omit<CreateGroupInvitationsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<CreateGroupInvitationsParams, "queryClient" | "clientApiParams">, unknown>;
3711
+ declare const useCreateGroupInvitations: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateGroupInvitations>>, Omit<CreateGroupInvitationsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateGroupInvitationsParams, "queryClient" | "clientApiParams">, unknown>;
3707
3712
 
3708
3713
  interface CreateGroupRequestParams extends MutationParams {
3709
3714
  groupId: string;
3710
3715
  }
3711
3716
  declare const CreateGroupRequest: ({ groupId, clientApiParams, queryClient, }: CreateGroupRequestParams) => Promise<ConnectedXMResponse<null>>;
3712
- declare const useCreateGroupRequest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateGroupRequest>>, Omit<CreateGroupRequestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<CreateGroupRequestParams, "queryClient" | "clientApiParams">, unknown>;
3717
+ declare const useCreateGroupRequest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateGroupRequest>>, Omit<CreateGroupRequestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateGroupRequestParams, "queryClient" | "clientApiParams">, unknown>;
3713
3718
 
3714
3719
  interface DeactivateGroupParams extends MutationParams {
3715
3720
  groupId: string;
@@ -3717,40 +3722,40 @@ interface DeactivateGroupParams extends MutationParams {
3717
3722
  imageDataUri?: string;
3718
3723
  }
3719
3724
  declare const DeactivateGroup: ({ groupId, group, imageDataUri, clientApiParams, queryClient, }: DeactivateGroupParams) => Promise<ConnectedXMResponse<Group>>;
3720
- declare const useDeactivateGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeactivateGroup>>, Omit<DeactivateGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<Group>, any>, Omit<DeactivateGroupParams, "queryClient" | "clientApiParams">, unknown>;
3725
+ declare const useDeactivateGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeactivateGroup>>, Omit<DeactivateGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeactivateGroupParams, "queryClient" | "clientApiParams">, unknown>;
3721
3726
 
3722
3727
  interface CancelGroupInvitationParams extends MutationParams {
3723
3728
  groupId: string;
3724
3729
  invitationId: string;
3725
3730
  }
3726
3731
  declare const CancelGroupInvitation: ({ groupId, invitationId, clientApiParams, queryClient, }: CancelGroupInvitationParams) => Promise<ConnectedXMResponse<GroupInvitation>>;
3727
- declare const useCancelGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelGroupInvitation>>, Omit<CancelGroupInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupInvitation>, axios.AxiosError<ConnectedXMResponse<GroupInvitation>, any>, Omit<CancelGroupInvitationParams, "queryClient" | "clientApiParams">, unknown>;
3732
+ declare const useCancelGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelGroupInvitation>>, Omit<CancelGroupInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupInvitation>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CancelGroupInvitationParams, "queryClient" | "clientApiParams">, unknown>;
3728
3733
 
3729
3734
  interface JoinGroupParams extends MutationParams {
3730
3735
  groupId: string;
3731
3736
  }
3732
3737
  declare const JoinGroup: ({ groupId, clientApiParams, queryClient, }: JoinGroupParams) => Promise<ConnectedXMResponse<GroupMembership>>;
3733
- declare const useJoinGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof JoinGroup>>, Omit<JoinGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupMembership>, axios.AxiosError<ConnectedXMResponse<GroupMembership>, any>, Omit<JoinGroupParams, "queryClient" | "clientApiParams">, unknown>;
3738
+ declare const useJoinGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof JoinGroup>>, Omit<JoinGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupMembership>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<JoinGroupParams, "queryClient" | "clientApiParams">, unknown>;
3734
3739
 
3735
3740
  interface LeaveGroupParams extends MutationParams {
3736
3741
  groupId: string;
3737
3742
  }
3738
3743
  declare const LeaveGroup: ({ groupId, clientApiParams, queryClient, }: LeaveGroupParams) => Promise<ConnectedXMResponse<null>>;
3739
- declare const useLeaveGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof LeaveGroup>>, Omit<LeaveGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<LeaveGroupParams, "queryClient" | "clientApiParams">, unknown>;
3744
+ declare const useLeaveGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof LeaveGroup>>, Omit<LeaveGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<LeaveGroupParams, "queryClient" | "clientApiParams">, unknown>;
3740
3745
 
3741
3746
  interface RejectGroupRequestParams extends MutationParams {
3742
3747
  groupId: string;
3743
3748
  requestId: string;
3744
3749
  }
3745
3750
  declare const RejectGroupRequest: ({ groupId, requestId, clientApiParams, queryClient, }: RejectGroupRequestParams) => Promise<ConnectedXMResponse<GroupRequest>>;
3746
- declare const useRejectGroupRequest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectGroupRequest>>, Omit<RejectGroupRequestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupRequest>, axios.AxiosError<ConnectedXMResponse<GroupRequest>, any>, Omit<RejectGroupRequestParams, "queryClient" | "clientApiParams">, unknown>;
3751
+ declare const useRejectGroupRequest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectGroupRequest>>, Omit<RejectGroupRequestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupRequest>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<RejectGroupRequestParams, "queryClient" | "clientApiParams">, unknown>;
3747
3752
 
3748
3753
  interface RemoveGroupMemberParams extends MutationParams {
3749
3754
  groupId: string;
3750
3755
  accountId: string;
3751
3756
  }
3752
3757
  declare const RemoveGroupMember: ({ groupId, accountId, clientApiParams, queryClient, }: RemoveGroupMemberParams) => Promise<ConnectedXMResponse<null>>;
3753
- declare const useRemoveGroupMember: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveGroupMember>>, Omit<RemoveGroupMemberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveGroupMemberParams, "queryClient" | "clientApiParams">, unknown>;
3758
+ declare const useRemoveGroupMember: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveGroupMember>>, Omit<RemoveGroupMemberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<RemoveGroupMemberParams, "queryClient" | "clientApiParams">, unknown>;
3754
3759
 
3755
3760
  interface UpdateGroupParams extends MutationParams {
3756
3761
  groupId: string;
@@ -3764,21 +3769,21 @@ interface UpdateGroupParams extends MutationParams {
3764
3769
  imageDataUri?: string;
3765
3770
  }
3766
3771
  declare const UpdateGroup: ({ groupId, group, imageDataUri, clientApiParams, queryClient, }: UpdateGroupParams) => Promise<ConnectedXMResponse<Group>>;
3767
- declare const useUpdateGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateGroup>>, Omit<UpdateGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<Group>, any>, Omit<UpdateGroupParams, "queryClient" | "clientApiParams">, unknown>;
3772
+ declare const useUpdateGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateGroup>>, Omit<UpdateGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateGroupParams, "queryClient" | "clientApiParams">, unknown>;
3768
3773
 
3769
3774
  interface DemoteGroupModeratorParams extends MutationParams {
3770
3775
  groupId: string;
3771
3776
  accountId: string;
3772
3777
  }
3773
3778
  declare const DemoteGroupModerator: ({ groupId, accountId, clientApiParams, queryClient, }: DemoteGroupModeratorParams) => Promise<ConnectedXMResponse<GroupMembership>>;
3774
- declare const useDemoteGroupModerator: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DemoteGroupModerator>>, Omit<DemoteGroupModeratorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupMembership>, axios.AxiosError<ConnectedXMResponse<GroupMembership>, any>, Omit<DemoteGroupModeratorParams, "queryClient" | "clientApiParams">, unknown>;
3779
+ declare const useDemoteGroupModerator: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DemoteGroupModerator>>, Omit<DemoteGroupModeratorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupMembership>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DemoteGroupModeratorParams, "queryClient" | "clientApiParams">, unknown>;
3775
3780
 
3776
3781
  interface PromoteGroupMemberParams extends MutationParams {
3777
3782
  groupId: string;
3778
3783
  accountId: string;
3779
3784
  }
3780
3785
  declare const PromoteGroupMember: ({ groupId, accountId, clientApiParams, queryClient, }: PromoteGroupMemberParams) => Promise<ConnectedXMResponse<GroupMembership>>;
3781
- declare const usePromoteGroupMember: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof PromoteGroupMember>>, Omit<PromoteGroupMemberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupMembership>, axios.AxiosError<ConnectedXMResponse<GroupMembership>, any>, Omit<PromoteGroupMemberParams, "queryClient" | "clientApiParams">, unknown>;
3786
+ declare const usePromoteGroupMember: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof PromoteGroupMember>>, Omit<PromoteGroupMemberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupMembership>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<PromoteGroupMemberParams, "queryClient" | "clientApiParams">, unknown>;
3782
3787
 
3783
3788
  interface CreateGroupAnnouncementParams extends MutationParams {
3784
3789
  groupId: string;
@@ -3788,20 +3793,20 @@ interface CreateGroupAnnouncementParams extends MutationParams {
3788
3793
  push: boolean;
3789
3794
  }
3790
3795
  declare const CreateGroupAnnouncement: ({ groupId, title, html, email, push, clientApiParams, queryClient, }: CreateGroupAnnouncementParams) => Promise<ConnectedXMResponse<Announcement>>;
3791
- declare const useCreateGroupAnnouncement: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateGroupAnnouncement>>, Omit<CreateGroupAnnouncementParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<Announcement>, any>, Omit<CreateGroupAnnouncementParams, "queryClient" | "clientApiParams">, unknown>;
3796
+ declare const useCreateGroupAnnouncement: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateGroupAnnouncement>>, Omit<CreateGroupAnnouncementParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateGroupAnnouncementParams, "queryClient" | "clientApiParams">, unknown>;
3792
3797
 
3793
3798
  interface ReinviteGroupInvitationParams extends MutationParams {
3794
3799
  groupId: string;
3795
3800
  invitationId: string;
3796
3801
  }
3797
3802
  declare const ReinviteGroupInvitation: ({ groupId, invitationId, clientApiParams, queryClient, }: ReinviteGroupInvitationParams) => Promise<ConnectedXMResponse<GroupInvitation>>;
3798
- declare const useReinviteGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof ReinviteGroupInvitation>>, Omit<ReinviteGroupInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupInvitation>, axios.AxiosError<ConnectedXMResponse<GroupInvitation>, any>, Omit<ReinviteGroupInvitationParams, "queryClient" | "clientApiParams">, unknown>;
3803
+ declare const useReinviteGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof ReinviteGroupInvitation>>, Omit<ReinviteGroupInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupInvitation>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<ReinviteGroupInvitationParams, "queryClient" | "clientApiParams">, unknown>;
3799
3804
 
3800
3805
  interface RejectGroupInvitationParams extends MutationParams {
3801
3806
  groupId: string;
3802
3807
  }
3803
3808
  declare const RejectGroupInvitation: ({ groupId, clientApiParams, queryClient, }: RejectGroupInvitationParams) => Promise<ConnectedXMResponse<GroupInvitation>>;
3804
- declare const useRejectGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectGroupInvitation>>, Omit<RejectGroupInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupInvitation>, axios.AxiosError<ConnectedXMResponse<GroupInvitation>, any>, Omit<RejectGroupInvitationParams, "queryClient" | "clientApiParams">, unknown>;
3809
+ declare const useRejectGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectGroupInvitation>>, Omit<RejectGroupInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupInvitation>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<RejectGroupInvitationParams, "queryClient" | "clientApiParams">, unknown>;
3805
3810
 
3806
3811
  interface CreateListingSessionParams extends MutationParams {
3807
3812
  eventId: string;
@@ -3814,7 +3819,7 @@ interface CreateListingSessionParams extends MutationParams {
3814
3819
  imageDataUri?: string;
3815
3820
  }
3816
3821
  declare const CreateListingSession: ({ eventId, session, imageDataUri, clientApiParams, queryClient, }: CreateListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
3817
- declare const useCreateListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListingSession>>, Omit<CreateListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<CreateListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
3822
+ declare const useCreateListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListingSession>>, Omit<CreateListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
3818
3823
 
3819
3824
  interface CreateListingSpeakerParams extends MutationParams {
3820
3825
  eventId: string;
@@ -3828,20 +3833,20 @@ interface CreateListingSpeakerParams extends MutationParams {
3828
3833
  imageDataUri?: string;
3829
3834
  }
3830
3835
  declare const CreateListingSpeaker: ({ eventId, speaker, imageDataUri, clientApiParams, queryClient, }: CreateListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
3831
- declare const useCreateListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListingSpeaker>>, Omit<CreateListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<CreateListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
3836
+ declare const useCreateListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListingSpeaker>>, Omit<CreateListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
3832
3837
 
3833
3838
  interface DeleteListingParams extends MutationParams {
3834
3839
  eventId: string;
3835
3840
  }
3836
3841
  declare const DeleteListing: ({ eventId, clientApiParams, queryClient, }: DeleteListingParams) => Promise<ConnectedXMResponse<null>>;
3837
- declare const useDeleteListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteListing>>, Omit<DeleteListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteListingParams, "queryClient" | "clientApiParams">, unknown>;
3842
+ declare const useDeleteListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteListing>>, Omit<DeleteListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteListingParams, "queryClient" | "clientApiParams">, unknown>;
3838
3843
 
3839
3844
  interface AddListingSponsorParams extends MutationParams {
3840
3845
  eventId: string;
3841
3846
  sponsor: Account;
3842
3847
  }
3843
3848
  declare const AddListingSponsor: ({ eventId, sponsor, clientApiParams, queryClient, }: AddListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
3844
- declare const useAddListingSponsor: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddListingSponsor>>, Omit<AddListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddListingSponsorParams, "queryClient" | "clientApiParams">, unknown>;
3849
+ declare const useAddListingSponsor: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddListingSponsor>>, Omit<AddListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<AddListingSponsorParams, "queryClient" | "clientApiParams">, unknown>;
3845
3850
 
3846
3851
  interface CreateListingInput {
3847
3852
  eventType: keyof typeof EventType;
@@ -3873,7 +3878,7 @@ interface CreateListingParams extends MutationParams {
3873
3878
  sessions?: Session[];
3874
3879
  }
3875
3880
  declare const CreateListing: ({ event, imageDataUri, groupId, sponsorIds, speakers, sessions, clientApiParams, queryClient, }: CreateListingParams) => Promise<ConnectedXMResponse<EventListing>>;
3876
- declare const useCreateListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListing>>, Omit<CreateListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<CreateListingParams, "queryClient" | "clientApiParams">, unknown>;
3881
+ declare const useCreateListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListing>>, Omit<CreateListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateListingParams, "queryClient" | "clientApiParams">, unknown>;
3877
3882
 
3878
3883
  interface CreateListingAnnouncementParams extends MutationParams {
3879
3884
  eventId: string;
@@ -3883,7 +3888,7 @@ interface CreateListingAnnouncementParams extends MutationParams {
3883
3888
  push: boolean;
3884
3889
  }
3885
3890
  declare const CreateListingAnnouncement: ({ eventId, title, html, email, push, clientApiParams, queryClient, }: CreateListingAnnouncementParams) => Promise<ConnectedXMResponse<Announcement>>;
3886
- declare const useCreateListingAnnouncement: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListingAnnouncement>>, Omit<CreateListingAnnouncementParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<Announcement>, any>, Omit<CreateListingAnnouncementParams, "queryClient" | "clientApiParams">, unknown>;
3891
+ declare const useCreateListingAnnouncement: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListingAnnouncement>>, Omit<CreateListingAnnouncementParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateListingAnnouncementParams, "queryClient" | "clientApiParams">, unknown>;
3887
3892
 
3888
3893
  interface CreateListingQuestionParams extends MutationParams {
3889
3894
  eventId: string;
@@ -3899,35 +3904,35 @@ interface CreateListingQuestionParams extends MutationParams {
3899
3904
  };
3900
3905
  }
3901
3906
  declare const CreateListingQuestion: ({ eventId, question, clientApiParams, queryClient, }: CreateListingQuestionParams) => Promise<ConnectedXMResponse<RegistrationQuestion>>;
3902
- declare const useCreateListingQuestion: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListingQuestion>>, Omit<CreateListingQuestionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestion>, axios.AxiosError<ConnectedXMResponse<RegistrationQuestion>, any>, Omit<CreateListingQuestionParams, "queryClient" | "clientApiParams">, unknown>;
3907
+ declare const useCreateListingQuestion: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListingQuestion>>, Omit<CreateListingQuestionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestion>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateListingQuestionParams, "queryClient" | "clientApiParams">, unknown>;
3903
3908
 
3904
3909
  interface DeleteListingQuestionParams extends MutationParams {
3905
3910
  eventId: string;
3906
3911
  questionId: string;
3907
3912
  }
3908
3913
  declare const DeleteListingQuestion: ({ eventId, questionId, clientApiParams, queryClient, }: DeleteListingQuestionParams) => Promise<ConnectedXMResponse<RegistrationQuestion>>;
3909
- declare const useDeleteListingQuestion: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteListingQuestion>>, Omit<DeleteListingQuestionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestion>, axios.AxiosError<ConnectedXMResponse<RegistrationQuestion>, any>, Omit<DeleteListingQuestionParams, "queryClient" | "clientApiParams">, unknown>;
3914
+ declare const useDeleteListingQuestion: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteListingQuestion>>, Omit<DeleteListingQuestionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestion>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteListingQuestionParams, "queryClient" | "clientApiParams">, unknown>;
3910
3915
 
3911
3916
  interface DeleteListingSessionParams extends MutationParams {
3912
3917
  eventId: string;
3913
3918
  sessionId: string;
3914
3919
  }
3915
3920
  declare const DeleteListingSession: ({ eventId, sessionId, clientApiParams, queryClient, }: DeleteListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
3916
- declare const useDeleteListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteListingSession>>, Omit<DeleteListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<DeleteListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
3921
+ declare const useDeleteListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteListingSession>>, Omit<DeleteListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
3917
3922
 
3918
3923
  interface DeleteListingSpeakerParams extends MutationParams {
3919
3924
  eventId: string;
3920
3925
  speakerId: string;
3921
3926
  }
3922
3927
  declare const DeleteListingSpeaker: ({ eventId, speakerId, clientApiParams, queryClient, }: DeleteListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
3923
- declare const useDeleteListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteListingSpeaker>>, Omit<DeleteListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<DeleteListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
3928
+ declare const useDeleteListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteListingSpeaker>>, Omit<DeleteListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
3924
3929
 
3925
3930
  interface RemoveListingSponsorParams extends MutationParams {
3926
3931
  eventId: string;
3927
3932
  sponsorId: string;
3928
3933
  }
3929
3934
  declare const RemoveListingSponsor: ({ eventId, sponsorId, clientApiParams, queryClient, }: RemoveListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
3930
- declare const useRemoveListingSponsor: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveListingSponsor>>, Omit<RemoveListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveListingSponsorParams, "queryClient" | "clientApiParams">, unknown>;
3935
+ declare const useRemoveListingSponsor: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveListingSponsor>>, Omit<RemoveListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<RemoveListingSponsorParams, "queryClient" | "clientApiParams">, unknown>;
3931
3936
 
3932
3937
  interface CheckinListingAttendeePassParams extends MutationParams {
3933
3938
  eventId: string;
@@ -3935,7 +3940,7 @@ interface CheckinListingAttendeePassParams extends MutationParams {
3935
3940
  passId: string;
3936
3941
  }
3937
3942
  declare const CheckinListingAttendeePass: ({ eventId, accountId, passId, clientApiParams, queryClient, }: CheckinListingAttendeePassParams) => Promise<ConnectedXMResponse<Pass>>;
3938
- declare const useCheckinListingAttendeePass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CheckinListingAttendeePass>>, Omit<CheckinListingAttendeePassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<Pass>, any>, Omit<CheckinListingAttendeePassParams, "queryClient" | "clientApiParams">, unknown>;
3943
+ declare const useCheckinListingAttendeePass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CheckinListingAttendeePass>>, Omit<CheckinListingAttendeePassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CheckinListingAttendeePassParams, "queryClient" | "clientApiParams">, unknown>;
3939
3944
 
3940
3945
  interface UndoCheckinListingAttendeePassParams extends MutationParams {
3941
3946
  eventId: string;
@@ -3943,7 +3948,7 @@ interface UndoCheckinListingAttendeePassParams extends MutationParams {
3943
3948
  passId: string;
3944
3949
  }
3945
3950
  declare const UndoCheckinListingAttendeePass: ({ eventId, accountId, passId, clientApiParams, queryClient, }: UndoCheckinListingAttendeePassParams) => Promise<ConnectedXMResponse<ListingPass>>;
3946
- declare const useUndoCheckinListingAttendeePass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UndoCheckinListingAttendeePass>>, Omit<UndoCheckinListingAttendeePassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ListingPass>, axios.AxiosError<ConnectedXMResponse<ListingPass>, any>, Omit<UndoCheckinListingAttendeePassParams, "queryClient" | "clientApiParams">, unknown>;
3951
+ declare const useUndoCheckinListingAttendeePass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UndoCheckinListingAttendeePass>>, Omit<UndoCheckinListingAttendeePassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ListingPass>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UndoCheckinListingAttendeePassParams, "queryClient" | "clientApiParams">, unknown>;
3947
3952
 
3948
3953
  interface UpdateListingValues {
3949
3954
  eventType?: keyof typeof EventType;
@@ -3979,7 +3984,7 @@ interface UpdateListingParams extends MutationParams {
3979
3984
  base64?: any;
3980
3985
  }
3981
3986
  declare const UpdateListing: ({ eventId, event, base64, clientApiParams, queryClient, }: UpdateListingParams) => Promise<ConnectedXMResponse<EventListing>>;
3982
- declare const useUpdateListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListing>>, Omit<UpdateListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateListingParams, "queryClient" | "clientApiParams">, unknown>;
3987
+ declare const useUpdateListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListing>>, Omit<UpdateListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateListingParams, "queryClient" | "clientApiParams">, unknown>;
3983
3988
 
3984
3989
  interface UpdateEmail {
3985
3990
  body?: string;
@@ -3991,7 +3996,7 @@ interface UpdateListingEmailParams extends MutationParams {
3991
3996
  email: UpdateEmail;
3992
3997
  }
3993
3998
  declare const UpdateListingEmail: ({ eventId, type, email, clientApiParams, queryClient, }: UpdateListingEmailParams) => Promise<ConnectedXMResponse<EventEmail>>;
3994
- declare const useUpdateListingEmail: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingEmail>>, Omit<UpdateListingEmailParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventEmail>, axios.AxiosError<ConnectedXMResponse<EventEmail>, any>, Omit<UpdateListingEmailParams, "queryClient" | "clientApiParams">, unknown>;
3999
+ declare const useUpdateListingEmail: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingEmail>>, Omit<UpdateListingEmailParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventEmail>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateListingEmailParams, "queryClient" | "clientApiParams">, unknown>;
3995
4000
 
3996
4001
  interface UpdateListingQuestionParams extends MutationParams {
3997
4002
  eventId: string;
@@ -4008,7 +4013,7 @@ interface UpdateListingQuestionParams extends MutationParams {
4008
4013
  };
4009
4014
  }
4010
4015
  declare const UpdateListingQuestion: ({ eventId, question, questionId, clientApiParams, queryClient, }: UpdateListingQuestionParams) => Promise<ConnectedXMResponse<RegistrationQuestion>>;
4011
- declare const useUpdateListingQuestion: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingQuestion>>, Omit<UpdateListingQuestionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestion>, axios.AxiosError<ConnectedXMResponse<RegistrationQuestion>, any>, Omit<UpdateListingQuestionParams, "queryClient" | "clientApiParams">, unknown>;
4016
+ declare const useUpdateListingQuestion: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingQuestion>>, Omit<UpdateListingQuestionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestion>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateListingQuestionParams, "queryClient" | "clientApiParams">, unknown>;
4012
4017
 
4013
4018
  interface UpdateListingSessionParams extends MutationParams {
4014
4019
  eventId: string;
@@ -4022,7 +4027,7 @@ interface UpdateListingSessionParams extends MutationParams {
4022
4027
  imageDataUri?: string;
4023
4028
  }
4024
4029
  declare const UpdateListingSession: ({ eventId, session, sessionId, imageDataUri, clientApiParams, queryClient, }: UpdateListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
4025
- declare const useUpdateListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingSession>>, Omit<UpdateListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
4030
+ declare const useUpdateListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingSession>>, Omit<UpdateListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
4026
4031
 
4027
4032
  interface UpdateListingSpeakerParams extends MutationParams {
4028
4033
  eventId: string;
@@ -4037,21 +4042,21 @@ interface UpdateListingSpeakerParams extends MutationParams {
4037
4042
  imageDataUri?: string;
4038
4043
  }
4039
4044
  declare const UpdateListingSpeaker: ({ eventId, speaker, speakerId, imageDataUri, clientApiParams, queryClient, }: UpdateListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
4040
- declare const useUpdateListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingSpeaker>>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
4045
+ declare const useUpdateListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingSpeaker>>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
4041
4046
 
4042
4047
  interface AddListingCoHostParams extends MutationParams {
4043
4048
  eventId: string;
4044
4049
  accountId: string;
4045
4050
  }
4046
4051
  declare const AddListingCoHost: ({ eventId, accountId, clientApiParams, queryClient, }: AddListingCoHostParams) => Promise<ConnectedXMResponse<EventListing>>;
4047
- declare const useAddListingCoHost: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddListingCoHost>>, Omit<AddListingCoHostParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddListingCoHostParams, "queryClient" | "clientApiParams">, unknown>;
4052
+ declare const useAddListingCoHost: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddListingCoHost>>, Omit<AddListingCoHostParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<AddListingCoHostParams, "queryClient" | "clientApiParams">, unknown>;
4048
4053
 
4049
4054
  interface RemoveListingCoHostParams extends MutationParams {
4050
4055
  eventId: string;
4051
4056
  accountId: string;
4052
4057
  }
4053
4058
  declare const RemoveListingCoHost: ({ eventId, accountId, clientApiParams, queryClient, }: RemoveListingCoHostParams) => Promise<ConnectedXMResponse<EventListing>>;
4054
- declare const useRemoveListingCoHost: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveListingCoHost>>, Omit<RemoveListingCoHostParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveListingCoHostParams, "queryClient" | "clientApiParams">, unknown>;
4059
+ declare const useRemoveListingCoHost: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveListingCoHost>>, Omit<RemoveListingCoHostParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<RemoveListingCoHostParams, "queryClient" | "clientApiParams">, unknown>;
4055
4060
 
4056
4061
  interface UpdateListingRegistrationPassResponsesParams extends MutationParams {
4057
4062
  eventId: string;
@@ -4063,7 +4068,7 @@ interface UpdateListingRegistrationPassResponsesParams extends MutationParams {
4063
4068
  }[];
4064
4069
  }
4065
4070
  declare const UpdateListingRegistrationPassResponses: ({ eventId, accountId, passId, questions, clientApiParams, queryClient, }: UpdateListingRegistrationPassResponsesParams) => Promise<ConnectedXMResponse<null>>;
4066
- declare const useUpdateListingRegistrationPassResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingRegistrationPassResponses>>, Omit<UpdateListingRegistrationPassResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateListingRegistrationPassResponsesParams, "queryClient" | "clientApiParams">, unknown>;
4071
+ declare const useUpdateListingRegistrationPassResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingRegistrationPassResponses>>, Omit<UpdateListingRegistrationPassResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateListingRegistrationPassResponsesParams, "queryClient" | "clientApiParams">, unknown>;
4067
4072
 
4068
4073
  interface CreateLoginAccountAccount {
4069
4074
  featured?: boolean;
@@ -4092,30 +4097,30 @@ interface CreateLoginAccountParams extends MutationParams {
4092
4097
  account: CreateLoginAccountAccount;
4093
4098
  }
4094
4099
  declare const CreateLoginAccount: ({ clientApiParams, queryClient, account, }: CreateLoginAccountParams) => Promise<ConnectedXMResponse<Account>>;
4095
- declare const useCreateLoginAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateLoginAccount>>, Omit<CreateLoginAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<CreateLoginAccountParams, "queryClient" | "clientApiParams">, unknown>;
4100
+ declare const useCreateLoginAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateLoginAccount>>, Omit<CreateLoginAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateLoginAccountParams, "queryClient" | "clientApiParams">, unknown>;
4096
4101
 
4097
4102
  interface CheckLoginParams extends MutationParams {
4098
4103
  email: string;
4099
4104
  }
4100
4105
  declare const CheckLogin: ({ email, clientApiParams, }: CheckLoginParams) => Promise<ConnectedXMResponse<string>>;
4101
- declare const useCheckLogin: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CheckLogin>>, Omit<CheckLoginParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<string>, axios.AxiosError<ConnectedXMResponse<string>, any>, Omit<CheckLoginParams, "queryClient" | "clientApiParams">, unknown>;
4106
+ declare const useCheckLogin: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CheckLogin>>, Omit<CheckLoginParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<string>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CheckLoginParams, "queryClient" | "clientApiParams">, unknown>;
4102
4107
 
4103
4108
  interface VerifyLoginAccountParams extends MutationParams {
4104
4109
  }
4105
4110
  declare const VerifyLoginAccount: ({ clientApiParams, queryClient, }: VerifyLoginAccountParams) => Promise<ConnectedXMResponse<null>>;
4106
- declare const useVerifyLoginAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof VerifyLoginAccount>>, Omit<VerifyLoginAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<VerifyLoginAccountParams, "queryClient" | "clientApiParams">, unknown>;
4111
+ declare const useVerifyLoginAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof VerifyLoginAccount>>, Omit<VerifyLoginAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<VerifyLoginAccountParams, "queryClient" | "clientApiParams">, unknown>;
4107
4112
 
4108
4113
  interface AddLoginParams extends MutationParams {
4109
4114
  username: string;
4110
4115
  }
4111
4116
  declare const AddLogin: ({ username, clientApiParams, queryClient, }: AddLoginParams) => Promise<ConnectedXMResponse<null>>;
4112
- declare const useAddLogin: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddLogin>>, Omit<AddLoginParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<AddLoginParams, "queryClient" | "clientApiParams">, unknown>;
4117
+ declare const useAddLogin: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddLogin>>, Omit<AddLoginParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<AddLoginParams, "queryClient" | "clientApiParams">, unknown>;
4113
4118
 
4114
4119
  interface RemoveLoginParams extends MutationParams {
4115
4120
  username: string;
4116
4121
  }
4117
4122
  declare const RemoveLogin: ({ username, clientApiParams, queryClient, }: RemoveLoginParams) => Promise<ConnectedXMResponse<null>>;
4118
- declare const useRemoveLogin: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveLogin>>, Omit<RemoveLoginParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveLoginParams, "queryClient" | "clientApiParams">, unknown>;
4123
+ declare const useRemoveLogin: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveLogin>>, Omit<RemoveLoginParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<RemoveLoginParams, "queryClient" | "clientApiParams">, unknown>;
4119
4124
 
4120
4125
  /**
4121
4126
  * @category Params
@@ -4137,7 +4142,7 @@ declare const JoinMeetingViaCode: ({ meetingId, code, simulateRateLimit, clientA
4137
4142
  */
4138
4143
  declare const useJoinMeetingViaCode: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof JoinMeetingViaCode>>, Omit<JoinMeetingViaCodeParams, "queryClient" | "clientApiParams">>, "mutationFn"> & {
4139
4144
  simulateRateLimit?: boolean;
4140
- }) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<string>, axios.AxiosError<ConnectedXMResponse<string>, any>, Omit<JoinMeetingViaCodeParams, "queryClient" | "clientApiParams">, unknown>;
4145
+ }) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<string>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<JoinMeetingViaCodeParams, "queryClient" | "clientApiParams">, unknown>;
4141
4146
 
4142
4147
  interface JoinMeetingViaEventParams extends MutationParams {
4143
4148
  meetingId: string;
@@ -4147,7 +4152,7 @@ interface JoinMeetingViaEventParams extends MutationParams {
4147
4152
  declare const JoinMeetingViaEvent: ({ meetingId, eventId, simulateRateLimit, clientApiParams, }: JoinMeetingViaEventParams) => Promise<ConnectedXMResponse<string>>;
4148
4153
  declare const useJoinMeetingViaEvent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof JoinMeetingViaEvent>>, Omit<JoinMeetingViaEventParams, "queryClient" | "clientApiParams">>, "mutationFn"> & {
4149
4154
  simulateRateLimit?: boolean;
4150
- }) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<string>, axios.AxiosError<ConnectedXMResponse<string>, any>, Omit<JoinMeetingViaEventParams, "queryClient" | "clientApiParams">, unknown>;
4155
+ }) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<string>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<JoinMeetingViaEventParams, "queryClient" | "clientApiParams">, unknown>;
4151
4156
 
4152
4157
  interface JoinMeetingViaGroupParams extends MutationParams {
4153
4158
  meetingId: string;
@@ -4157,7 +4162,7 @@ interface JoinMeetingViaGroupParams extends MutationParams {
4157
4162
  declare const JoinMeetingViaGroup: ({ meetingId, groupId, simulateRateLimit, clientApiParams, }: JoinMeetingViaGroupParams) => Promise<ConnectedXMResponse<string>>;
4158
4163
  declare const useJoinMeetingViaGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof JoinMeetingViaGroup>>, Omit<JoinMeetingViaGroupParams, "queryClient" | "clientApiParams">>, "mutationFn"> & {
4159
4164
  simulateRateLimit?: boolean;
4160
- }) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<string>, axios.AxiosError<ConnectedXMResponse<string>, any>, Omit<JoinMeetingViaGroupParams, "queryClient" | "clientApiParams">, unknown>;
4165
+ }) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<string>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<JoinMeetingViaGroupParams, "queryClient" | "clientApiParams">, unknown>;
4161
4166
 
4162
4167
  /**
4163
4168
  * @category Params
@@ -4179,7 +4184,7 @@ declare const JoinMeetingViaActivity: ({ meetingId, activityId, simulateRateLimi
4179
4184
  */
4180
4185
  declare const useJoinMeetingViaActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof JoinMeetingViaActivity>>, Omit<JoinMeetingViaActivityParams, "queryClient" | "clientApiParams">>, "mutationFn"> & {
4181
4186
  simulateRateLimit?: boolean;
4182
- }) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<string>, axios.AxiosError<ConnectedXMResponse<string>, any>, Omit<JoinMeetingViaActivityParams, "queryClient" | "clientApiParams">, unknown>;
4187
+ }) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<string>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<JoinMeetingViaActivityParams, "queryClient" | "clientApiParams">, unknown>;
4183
4188
 
4184
4189
  interface JoinMeetingViaBookingParams extends MutationParams {
4185
4190
  meetingId: string;
@@ -4189,14 +4194,14 @@ interface JoinMeetingViaBookingParams extends MutationParams {
4189
4194
  declare const JoinMeetingViaBooking: ({ meetingId, bookingId, simulateRateLimit, clientApiParams, }: JoinMeetingViaBookingParams) => Promise<ConnectedXMResponse<string>>;
4190
4195
  declare const useJoinMeetingViaBooking: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof JoinMeetingViaBooking>>, Omit<JoinMeetingViaBookingParams, "queryClient" | "clientApiParams">>, "mutationFn"> & {
4191
4196
  simulateRateLimit?: boolean;
4192
- }) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<string>, axios.AxiosError<ConnectedXMResponse<string>, any>, Omit<JoinMeetingViaBookingParams, "queryClient" | "clientApiParams">, unknown>;
4197
+ }) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<string>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<JoinMeetingViaBookingParams, "queryClient" | "clientApiParams">, unknown>;
4193
4198
 
4194
4199
  interface UploadFileParams extends MutationParams {
4195
4200
  dataUri: string;
4196
4201
  name?: string;
4197
4202
  }
4198
4203
  declare const UploadFile: ({ clientApiParams, dataUri, name, }: UploadFileParams) => Promise<ConnectedXMResponse<File>>;
4199
- declare const useUploadFile: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UploadFile>>, Omit<UploadFileParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<File>, axios.AxiosError<ConnectedXMResponse<File>, any>, Omit<UploadFileParams, "queryClient" | "clientApiParams">, unknown>;
4204
+ declare const useUploadFile: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UploadFile>>, Omit<UploadFileParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<File>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UploadFileParams, "queryClient" | "clientApiParams">, unknown>;
4200
4205
 
4201
4206
  interface ImageCreateParams {
4202
4207
  type: "activity" | "thread" | "content";
@@ -4208,13 +4213,13 @@ interface UploadImageParams extends MutationParams {
4208
4213
  image: ImageCreateParams;
4209
4214
  }
4210
4215
  declare const UploadImage: ({ image, clientApiParams, }: UploadImageParams) => Promise<ConnectedXMResponse<BaseImage>>;
4211
- declare const useUploadImage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UploadImage>>, Omit<UploadImageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BaseImage>, axios.AxiosError<ConnectedXMResponse<BaseImage>, any>, Omit<UploadImageParams, "queryClient" | "clientApiParams">, unknown>;
4216
+ declare const useUploadImage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UploadImage>>, Omit<UploadImageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BaseImage>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UploadImageParams, "queryClient" | "clientApiParams">, unknown>;
4212
4217
 
4213
4218
  interface UpsertLinkPreviewParams extends MutationParams {
4214
4219
  href: string;
4215
4220
  }
4216
4221
  declare const UpsertLinkPreview: ({ href, clientApiParams, }: UpsertLinkPreviewParams) => Promise<ConnectedXMResponse<LinkPreview | null>>;
4217
- declare const useUpsertLinkPreview: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpsertLinkPreview>>, Omit<UpsertLinkPreviewParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<LinkPreview | null>, axios.AxiosError<ConnectedXMResponse<LinkPreview | null>, any>, Omit<UpsertLinkPreviewParams, "queryClient" | "clientApiParams">, unknown>;
4222
+ declare const useUpsertLinkPreview: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpsertLinkPreview>>, Omit<UpsertLinkPreviewParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<LinkPreview | null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpsertLinkPreviewParams, "queryClient" | "clientApiParams">, unknown>;
4218
4223
 
4219
4224
  interface CreateStreamChatMessageParams extends MutationParams {
4220
4225
  streamId: string;
@@ -4222,7 +4227,7 @@ interface CreateStreamChatMessageParams extends MutationParams {
4222
4227
  message: string;
4223
4228
  }
4224
4229
  declare const CreateStreamChatMessage: ({ streamId, sessionId, message, clientApiParams, queryClient, }: CreateStreamChatMessageParams) => Promise<ConnectedXMResponse<StreamChatMessage>>;
4225
- declare const useCreateStreamChatMessage: (options?: MutationOptions<Awaited<ReturnType<typeof CreateStreamChatMessage>>, Omit<CreateStreamChatMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<StreamChatMessage>, axios.AxiosError<ConnectedXMResponse<StreamChatMessage>, any>, Omit<CreateStreamChatMessageParams, "queryClient" | "clientApiParams">, unknown>;
4230
+ declare const useCreateStreamChatMessage: (options?: MutationOptions<Awaited<ReturnType<typeof CreateStreamChatMessage>>, Omit<CreateStreamChatMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<StreamChatMessage>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateStreamChatMessageParams, "queryClient" | "clientApiParams">, unknown>;
4226
4231
 
4227
4232
  interface UpdateStreamChatMessageParams extends MutationParams {
4228
4233
  streamId: string;
@@ -4231,7 +4236,7 @@ interface UpdateStreamChatMessageParams extends MutationParams {
4231
4236
  message: string;
4232
4237
  }
4233
4238
  declare const UpdateStreamChatMessage: ({ streamId, sessionId, messageId, message, clientApiParams, queryClient, }: UpdateStreamChatMessageParams) => Promise<ConnectedXMResponse<StreamChatMessage>>;
4234
- declare const useUpdateStreamChatMessage: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateStreamChatMessage>>, Omit<UpdateStreamChatMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<StreamChatMessage>, axios.AxiosError<ConnectedXMResponse<StreamChatMessage>, any>, Omit<UpdateStreamChatMessageParams, "queryClient" | "clientApiParams">, unknown>;
4239
+ declare const useUpdateStreamChatMessage: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateStreamChatMessage>>, Omit<UpdateStreamChatMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<StreamChatMessage>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateStreamChatMessageParams, "queryClient" | "clientApiParams">, unknown>;
4235
4240
 
4236
4241
  interface DeleteStreamChatMessageParams extends MutationParams {
4237
4242
  streamId: string;
@@ -4239,7 +4244,7 @@ interface DeleteStreamChatMessageParams extends MutationParams {
4239
4244
  messageId: string;
4240
4245
  }
4241
4246
  declare const DeleteStreamChatMessage: ({ streamId, sessionId, messageId, clientApiParams, queryClient, }: DeleteStreamChatMessageParams) => Promise<ConnectedXMResponse<null>>;
4242
- declare const useDeleteStreamChatMessage: (options?: MutationOptions<Awaited<ReturnType<typeof DeleteStreamChatMessage>>, Omit<DeleteStreamChatMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteStreamChatMessageParams, "queryClient" | "clientApiParams">, unknown>;
4247
+ declare const useDeleteStreamChatMessage: (options?: MutationOptions<Awaited<ReturnType<typeof DeleteStreamChatMessage>>, Omit<DeleteStreamChatMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteStreamChatMessageParams, "queryClient" | "clientApiParams">, unknown>;
4243
4248
 
4244
4249
  interface UpdateThreadParams extends MutationParams {
4245
4250
  threadId: string;
@@ -4247,7 +4252,7 @@ interface UpdateThreadParams extends MutationParams {
4247
4252
  imageId?: string | null;
4248
4253
  }
4249
4254
  declare const UpdateThread: ({ threadId, subject, imageId, clientApiParams, queryClient, }: UpdateThreadParams) => Promise<ConnectedXMResponse<Thread>>;
4250
- declare const useUpdateThread: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateThread>>, Omit<UpdateThreadParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<Thread>, any>, Omit<UpdateThreadParams, "queryClient" | "clientApiParams">, unknown>;
4255
+ declare const useUpdateThread: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateThread>>, Omit<UpdateThreadParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateThreadParams, "queryClient" | "clientApiParams">, unknown>;
4251
4256
 
4252
4257
  interface CreateThreadMessageParams extends MutationParams {
4253
4258
  threadId: string;
@@ -4255,7 +4260,7 @@ interface CreateThreadMessageParams extends MutationParams {
4255
4260
  entities: any[];
4256
4261
  }
4257
4262
  declare const CreateThreadMessage: ({ threadId, body, entities, clientApiParams, queryClient, }: CreateThreadMessageParams) => Promise<ConnectedXMResponse<ThreadMessage>>;
4258
- declare const useCreateThreadMessage: (options?: MutationOptions<Awaited<ReturnType<typeof CreateThreadMessage>>, Omit<CreateThreadMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadMessage>, axios.AxiosError<ConnectedXMResponse<ThreadMessage>, any>, Omit<CreateThreadMessageParams, "queryClient" | "clientApiParams">, unknown>;
4263
+ declare const useCreateThreadMessage: (options?: MutationOptions<Awaited<ReturnType<typeof CreateThreadMessage>>, Omit<CreateThreadMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadMessage>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateThreadMessageParams, "queryClient" | "clientApiParams">, unknown>;
4259
4264
 
4260
4265
  interface UpdateThreadMessageParams extends MutationParams {
4261
4266
  threadId: string;
@@ -4263,14 +4268,14 @@ interface UpdateThreadMessageParams extends MutationParams {
4263
4268
  body?: string;
4264
4269
  }
4265
4270
  declare const UpdateThreadMessage: ({ threadId, messageId, body, clientApiParams, queryClient, }: UpdateThreadMessageParams) => Promise<ConnectedXMResponse<ThreadMessage>>;
4266
- declare const useUpdateThreadMessage: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateThreadMessage>>, Omit<UpdateThreadMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadMessage>, axios.AxiosError<ConnectedXMResponse<ThreadMessage>, any>, Omit<UpdateThreadMessageParams, "queryClient" | "clientApiParams">, unknown>;
4271
+ declare const useUpdateThreadMessage: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateThreadMessage>>, Omit<UpdateThreadMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadMessage>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateThreadMessageParams, "queryClient" | "clientApiParams">, unknown>;
4267
4272
 
4268
4273
  interface DeleteThreadMessageParams extends MutationParams {
4269
4274
  threadId: string;
4270
4275
  messageId: string;
4271
4276
  }
4272
4277
  declare const DeleteThreadMessage: ({ threadId, messageId, clientApiParams, queryClient, }: DeleteThreadMessageParams) => Promise<ConnectedXMResponse<null>>;
4273
- declare const useDeleteThreadMessage: (options?: MutationOptions<Awaited<ReturnType<typeof DeleteThreadMessage>>, Omit<DeleteThreadMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteThreadMessageParams, "queryClient" | "clientApiParams">, unknown>;
4278
+ declare const useDeleteThreadMessage: (options?: MutationOptions<Awaited<ReturnType<typeof DeleteThreadMessage>>, Omit<DeleteThreadMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteThreadMessageParams, "queryClient" | "clientApiParams">, unknown>;
4274
4279
 
4275
4280
  interface AddThreadMessageReactionParams extends MutationParams {
4276
4281
  threadId: string;
@@ -4278,7 +4283,7 @@ interface AddThreadMessageReactionParams extends MutationParams {
4278
4283
  emojiName: string;
4279
4284
  }
4280
4285
  declare const AddThreadMessageReaction: ({ threadId, messageId, emojiName, clientApiParams, queryClient, }: AddThreadMessageReactionParams) => Promise<ConnectedXMResponse<ThreadMessageReaction>>;
4281
- declare const useAddThreadMessageReaction: (options?: MutationOptions<Awaited<ReturnType<typeof AddThreadMessageReaction>>, Omit<AddThreadMessageReactionParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadMessageReaction>, axios.AxiosError<ConnectedXMResponse<ThreadMessageReaction>, any>, Omit<AddThreadMessageReactionParams, "queryClient" | "clientApiParams">, unknown>;
4286
+ declare const useAddThreadMessageReaction: (options?: MutationOptions<Awaited<ReturnType<typeof AddThreadMessageReaction>>, Omit<AddThreadMessageReactionParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadMessageReaction>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<AddThreadMessageReactionParams, "queryClient" | "clientApiParams">, unknown>;
4282
4287
 
4283
4288
  interface RemoveThreadMessageReactionParams extends MutationParams {
4284
4289
  threadId: string;
@@ -4286,14 +4291,14 @@ interface RemoveThreadMessageReactionParams extends MutationParams {
4286
4291
  reactionId: string;
4287
4292
  }
4288
4293
  declare const RemoveThreadMessageReaction: ({ threadId, messageId, reactionId, clientApiParams, queryClient, }: RemoveThreadMessageReactionParams) => Promise<ConnectedXMResponse<null>>;
4289
- declare const useRemoveThreadMessageReaction: (options?: MutationOptions<Awaited<ReturnType<typeof RemoveThreadMessageReaction>>, Omit<RemoveThreadMessageReactionParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveThreadMessageReactionParams, "queryClient" | "clientApiParams">, unknown>;
4294
+ declare const useRemoveThreadMessageReaction: (options?: MutationOptions<Awaited<ReturnType<typeof RemoveThreadMessageReaction>>, Omit<RemoveThreadMessageReactionParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<RemoveThreadMessageReactionParams, "queryClient" | "clientApiParams">, unknown>;
4290
4295
 
4291
4296
  interface UpdateThreadCircleParams extends MutationParams {
4292
4297
  circleId: string;
4293
4298
  name?: string;
4294
4299
  }
4295
4300
  declare const UpdateThreadCircle: ({ circleId, name, clientApiParams, queryClient, }: UpdateThreadCircleParams) => Promise<ConnectedXMResponse<ThreadCircle>>;
4296
- declare const useUpdateThreadCircle: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateThreadCircle>>, Omit<UpdateThreadCircleParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadCircle>, axios.AxiosError<ConnectedXMResponse<ThreadCircle>, any>, Omit<UpdateThreadCircleParams, "queryClient" | "clientApiParams">, unknown>;
4301
+ declare const useUpdateThreadCircle: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateThreadCircle>>, Omit<UpdateThreadCircleParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadCircle>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateThreadCircleParams, "queryClient" | "clientApiParams">, unknown>;
4297
4302
 
4298
4303
  interface AddThreadCircleAccountParams extends MutationParams {
4299
4304
  circleId: string;
@@ -4301,7 +4306,7 @@ interface AddThreadCircleAccountParams extends MutationParams {
4301
4306
  role?: string;
4302
4307
  }
4303
4308
  declare const AddThreadCircleAccount: ({ circleId, accountId, role, clientApiParams, queryClient, }: AddThreadCircleAccountParams) => Promise<ConnectedXMResponse<ThreadCircleAccount>>;
4304
- declare const useAddThreadCircleAccount: (options?: MutationOptions<Awaited<ReturnType<typeof AddThreadCircleAccount>>, Omit<AddThreadCircleAccountParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadCircleAccount>, axios.AxiosError<ConnectedXMResponse<ThreadCircleAccount>, any>, Omit<AddThreadCircleAccountParams, "queryClient" | "clientApiParams">, unknown>;
4309
+ declare const useAddThreadCircleAccount: (options?: MutationOptions<Awaited<ReturnType<typeof AddThreadCircleAccount>>, Omit<AddThreadCircleAccountParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadCircleAccount>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<AddThreadCircleAccountParams, "queryClient" | "clientApiParams">, unknown>;
4305
4310
 
4306
4311
  interface UpdateThreadCircleAccountParams extends MutationParams {
4307
4312
  circleId: string;
@@ -4309,32 +4314,32 @@ interface UpdateThreadCircleAccountParams extends MutationParams {
4309
4314
  role?: string;
4310
4315
  }
4311
4316
  declare const UpdateThreadCircleAccount: ({ circleId, accountId, role, clientApiParams, queryClient, }: UpdateThreadCircleAccountParams) => Promise<ConnectedXMResponse<ThreadCircleAccount>>;
4312
- declare const useUpdateThreadCircleAccount: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateThreadCircleAccount>>, Omit<UpdateThreadCircleAccountParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadCircleAccount>, axios.AxiosError<ConnectedXMResponse<ThreadCircleAccount>, any>, Omit<UpdateThreadCircleAccountParams, "queryClient" | "clientApiParams">, unknown>;
4317
+ declare const useUpdateThreadCircleAccount: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateThreadCircleAccount>>, Omit<UpdateThreadCircleAccountParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadCircleAccount>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateThreadCircleAccountParams, "queryClient" | "clientApiParams">, unknown>;
4313
4318
 
4314
4319
  interface DeleteThreadCircleAccountParams extends MutationParams {
4315
4320
  circleId: string;
4316
4321
  accountId: string;
4317
4322
  }
4318
4323
  declare const DeleteThreadCircleAccount: ({ circleId, accountId, clientApiParams, queryClient, }: DeleteThreadCircleAccountParams) => Promise<ConnectedXMResponse<null>>;
4319
- declare const useDeleteThreadCircleAccount: (options?: MutationOptions<Awaited<ReturnType<typeof DeleteThreadCircleAccount>>, Omit<DeleteThreadCircleAccountParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteThreadCircleAccountParams, "queryClient" | "clientApiParams">, unknown>;
4324
+ declare const useDeleteThreadCircleAccount: (options?: MutationOptions<Awaited<ReturnType<typeof DeleteThreadCircleAccount>>, Omit<DeleteThreadCircleAccountParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteThreadCircleAccountParams, "queryClient" | "clientApiParams">, unknown>;
4320
4325
 
4321
4326
  interface BlockIntegrationParams extends MutationParams {
4322
4327
  type: keyof typeof IntegrationType;
4323
4328
  }
4324
4329
  declare const BlockIntegration: ({ type, clientApiParams, queryClient, }: BlockIntegrationParams) => Promise<ConnectedXMResponse<Integration>>;
4325
- declare const useBlockIntegration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof BlockIntegration>>, Omit<BlockIntegrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Integration>, axios.AxiosError<ConnectedXMResponse<Integration>, any>, Omit<BlockIntegrationParams, "queryClient" | "clientApiParams">, unknown>;
4330
+ declare const useBlockIntegration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof BlockIntegration>>, Omit<BlockIntegrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Integration>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<BlockIntegrationParams, "queryClient" | "clientApiParams">, unknown>;
4326
4331
 
4327
4332
  interface DisableIntegrationParams extends MutationParams {
4328
4333
  type: keyof typeof IntegrationType;
4329
4334
  }
4330
4335
  declare const DisableIntegration: ({ type, clientApiParams, queryClient, }: DisableIntegrationParams) => Promise<ConnectedXMResponse<Integration>>;
4331
- declare const useDisableIntegration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DisableIntegration>>, Omit<DisableIntegrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Integration>, axios.AxiosError<ConnectedXMResponse<Integration>, any>, Omit<DisableIntegrationParams, "queryClient" | "clientApiParams">, unknown>;
4336
+ declare const useDisableIntegration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DisableIntegration>>, Omit<DisableIntegrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Integration>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DisableIntegrationParams, "queryClient" | "clientApiParams">, unknown>;
4332
4337
 
4333
4338
  interface EnableIntegrationParams extends MutationParams {
4334
4339
  type: keyof typeof IntegrationType;
4335
4340
  }
4336
4341
  declare const EnableIntegration: ({ type, clientApiParams, queryClient, }: EnableIntegrationParams) => Promise<ConnectedXMResponse<Integration>>;
4337
- declare const useEnableIntegration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof EnableIntegration>>, Omit<EnableIntegrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Integration>, axios.AxiosError<ConnectedXMResponse<Integration>, any>, Omit<EnableIntegrationParams, "queryClient" | "clientApiParams">, unknown>;
4342
+ declare const useEnableIntegration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof EnableIntegration>>, Omit<EnableIntegrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Integration>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<EnableIntegrationParams, "queryClient" | "clientApiParams">, unknown>;
4338
4343
 
4339
4344
  interface StartSurveyParams extends MutationParams {
4340
4345
  surveyId: string;
@@ -4345,9 +4350,7 @@ declare const StartSurvey: ({ surveyId, passId, clientApiParams, }: StartSurveyP
4345
4350
  }>>;
4346
4351
  declare const useStartSurvey: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof StartSurvey>>, Omit<StartSurveyParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<{
4347
4352
  id: string;
4348
- }>, axios.AxiosError<ConnectedXMResponse<{
4349
- id: string;
4350
- }>, any>, Omit<StartSurveyParams, "queryClient" | "clientApiParams">, unknown>;
4353
+ }>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<StartSurveyParams, "queryClient" | "clientApiParams">, unknown>;
4351
4354
 
4352
4355
  interface SubmitSurveyParams extends MutationParams {
4353
4356
  surveyId: string;
@@ -4358,7 +4361,7 @@ interface SubmitSurveyParams extends MutationParams {
4358
4361
  }[];
4359
4362
  }
4360
4363
  declare const SubmitSurvey: ({ surveyId, submissionId, responses, clientApiParams, queryClient, }: SubmitSurveyParams) => Promise<ConnectedXMResponse<null>>;
4361
- declare const useSubmitSurvey: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SubmitSurvey>>, Omit<SubmitSurveyParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<SubmitSurveyParams, "queryClient" | "clientApiParams">, unknown>;
4364
+ declare const useSubmitSurvey: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SubmitSurvey>>, Omit<SubmitSurveyParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<SubmitSurveyParams, "queryClient" | "clientApiParams">, unknown>;
4362
4365
 
4363
4366
  interface UpdateSurveyResponseParams extends MutationParams {
4364
4367
  surveyId: string;
@@ -4367,7 +4370,7 @@ interface UpdateSurveyResponseParams extends MutationParams {
4367
4370
  response: string;
4368
4371
  }
4369
4372
  declare const UpdateSurveyResponse: ({ surveyId, submissionId, questionId, response, clientApiParams, }: UpdateSurveyResponseParams) => Promise<ConnectedXMResponse<null>>;
4370
- declare const useUpdateSurveyResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSurveyResponse>>, Omit<UpdateSurveyResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSurveyResponseParams, "queryClient" | "clientApiParams">, unknown>;
4373
+ declare const useUpdateSurveyResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSurveyResponse>>, Omit<UpdateSurveyResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSurveyResponseParams, "queryClient" | "clientApiParams">, unknown>;
4371
4374
 
4372
4375
  interface UpdateSurveySearchListResponseParams extends MutationParams {
4373
4376
  surveyId: string;
@@ -4376,13 +4379,13 @@ interface UpdateSurveySearchListResponseParams extends MutationParams {
4376
4379
  searchListValueId: string;
4377
4380
  }
4378
4381
  declare const UpdateSurveySearchListResponse: ({ surveyId, submissionId, questionId, searchListValueId, clientApiParams, }: UpdateSurveySearchListResponseParams) => Promise<ConnectedXMResponse<null>>;
4379
- declare const useUpdateSurveySearchListResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSurveySearchListResponse>>, Omit<UpdateSurveySearchListResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSurveySearchListResponseParams, "queryClient" | "clientApiParams">, unknown>;
4382
+ declare const useUpdateSurveySearchListResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSurveySearchListResponse>>, Omit<UpdateSurveySearchListResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSurveySearchListResponseParams, "queryClient" | "clientApiParams">, unknown>;
4380
4383
 
4381
4384
  interface CancelSeriesRegistrationParams extends MutationParams {
4382
4385
  seriesId: string;
4383
4386
  }
4384
4387
  declare const CancelSeriesRegistration: ({ seriesId, clientApiParams, queryClient, }: CancelSeriesRegistrationParams) => Promise<ConnectedXMResponse<SeriesRegistration>>;
4385
- declare const useCancelSeriesRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelSeriesRegistration>>, Omit<CancelSeriesRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<SeriesRegistration>, axios.AxiosError<ConnectedXMResponse<SeriesRegistration>, any>, Omit<CancelSeriesRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
4388
+ declare const useCancelSeriesRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelSeriesRegistration>>, Omit<CancelSeriesRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<SeriesRegistration>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CancelSeriesRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
4386
4389
 
4387
4390
  interface UpdateSeriesRegistrationResponsesParams extends MutationParams {
4388
4391
  seriesId: string;
@@ -4392,7 +4395,7 @@ interface UpdateSeriesRegistrationResponsesParams extends MutationParams {
4392
4395
  }[];
4393
4396
  }
4394
4397
  declare const UpdateSeriesRegistrationResponses: ({ seriesId, responses, clientApiParams, queryClient, }: UpdateSeriesRegistrationResponsesParams) => Promise<ConnectedXMResponse<Record<string, never>>>;
4395
- declare const useUpdateSeriesRegistrationResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSeriesRegistrationResponses>>, Omit<UpdateSeriesRegistrationResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Record<string, never>>, axios.AxiosError<ConnectedXMResponse<Record<string, never>>, any>, Omit<UpdateSeriesRegistrationResponsesParams, "queryClient" | "clientApiParams">, unknown>;
4398
+ declare const useUpdateSeriesRegistrationResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSeriesRegistrationResponses>>, Omit<UpdateSeriesRegistrationResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Record<string, never>>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSeriesRegistrationResponsesParams, "queryClient" | "clientApiParams">, unknown>;
4396
4399
 
4397
4400
  interface InterestCreateParams {
4398
4401
  name: string;
@@ -4401,7 +4404,7 @@ interface CreateInterestParams extends MutationParams {
4401
4404
  interest: InterestCreateParams;
4402
4405
  }
4403
4406
  declare const CreateInterest: ({ interest, clientApiParams, }: CreateInterestParams) => Promise<ConnectedXMResponse<Interest>>;
4404
- declare const useCreateInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateInterest>>, Omit<CreateInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Interest>, axios.AxiosError<ConnectedXMResponse<Interest>, any>, Omit<CreateInterestParams, "queryClient" | "clientApiParams">, unknown>;
4407
+ declare const useCreateInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateInterest>>, Omit<CreateInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Interest>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateInterestParams, "queryClient" | "clientApiParams">, unknown>;
4405
4408
 
4406
4409
  interface WSChatMessageCreated {
4407
4410
  type: "chat.message.created";
@@ -4532,10 +4535,10 @@ interface ConnectedXMClientContextState {
4532
4535
  sendWSMessage: (message: SendWSMessage) => void;
4533
4536
  lastWSMessage: ReceivedWSMessage | null;
4534
4537
  websocketState: ReadyState;
4535
- onNotAuthorized?: (error: AxiosError<ConnectedXMResponse<any>>, key: QueryKey, shouldRedirect: boolean) => void;
4536
- onModuleForbidden?: (error: AxiosError<ConnectedXMResponse<any>>, key: QueryKey, shouldRedirect: boolean) => void;
4537
- onNotFound?: (error: AxiosError<ConnectedXMResponse<any>>, key: QueryKey, shouldRedirect: boolean) => void;
4538
- onMutationError?: (error: AxiosError<ConnectedXMResponse<null>>, variables: Omit<MutationParams, "queryClient" | "clientApiParams">, context: unknown) => void;
4538
+ onNotAuthorized?: (error: AxiosError<ConnectedXMResponse<ConnectedXMError | null>>, key: QueryKey, shouldRedirect: boolean) => void;
4539
+ onModuleForbidden?: (error: AxiosError<ConnectedXMResponse<ConnectedXMError | null>>, key: QueryKey, shouldRedirect: boolean) => void;
4540
+ onNotFound?: (error: AxiosError<ConnectedXMResponse<ConnectedXMError | null>>, key: QueryKey, shouldRedirect: boolean) => void;
4541
+ onMutationError?: (error: AxiosError<ConnectedXMResponse<ConnectedXMError | null>>, variables: Omit<MutationParams, "queryClient" | "clientApiParams">, context: unknown) => void;
4539
4542
  }
4540
4543
  interface ConnectedProviderProps extends Omit<ConnectedXMClientContextState, "sendWSMessage" | "lastWSMessage" | "websocketState"> {
4541
4544
  useWebSocket: typeof UseWebSocket;
@@ -5155,6 +5158,21 @@ interface GetEventSessionPassIntentProps extends SingleQueryParams {
5155
5158
  declare const GetEventSessionPassIntent: ({ eventId, sessionId, passId, addressId, clientApiParams, }: GetEventSessionPassIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
5156
5159
  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>>;
5157
5160
 
5161
+ interface EventsExploreData {
5162
+ featuredEvents: BaseEvent[];
5163
+ featuredSeries: (Series & {
5164
+ events: BaseEvent[];
5165
+ })[];
5166
+ upcomingEvents: BaseEvent[];
5167
+ pastEvents: BaseEvent[];
5168
+ }
5169
+ declare const EVENTS_EXPLORE_QUERY_KEY: () => QueryKey;
5170
+ 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;
5171
+ interface GetEventsExploreProps extends SingleQueryParams {
5172
+ }
5173
+ declare const GetEventsExplore: ({ clientApiParams, }: GetEventsExploreProps) => Promise<ConnectedXMResponse<EventsExploreData>>;
5174
+ declare const useGetEventsExplore: (options?: SingleQueryOptions<ReturnType<typeof GetEventsExplore>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventsExploreData>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5175
+
5158
5176
  declare const GROUPS_QUERY_KEY: (access?: "public" | "private") => QueryKey;
5159
5177
  declare const SET_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroups>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5160
5178
  interface GetGroupsProps extends InfiniteQueryParams {
@@ -6251,4 +6269,4 @@ declare const GetSupportTicketActivityLog: ({ supportTicketId, pageParam, pageSi
6251
6269
  */
6252
6270
  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>>;
6253
6271
 
6254
- 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, 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_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 ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, 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_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SUMMARY_QUERY_KEY, EVENT_ACTIVITIES_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_QUERY_KEY, EVENT_REGISTRANTS_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, EventActivationType, type EventAddOn, EventAgendaVisibility, type EventAllowlistMember, 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 Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, 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, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventRegistrants, type GetEventRegistrantsProps, 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, 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, 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, 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 RegistrationEventDetails, 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_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVITIES_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_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, 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, 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, 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, useGetEvent, useGetEventActivation, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventRegistrants, useGetEventSessionPassIntent, useGetEventSessionPassSections, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, 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, 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 };
6272
+ 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, 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_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 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_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_QUERY_KEY, EVENT_REGISTRANTS_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, EventActivationType, type EventAddOn, EventAgendaVisibility, type EventAllowlistMember, 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_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, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventRegistrants, type GetEventRegistrantsProps, 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, 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, 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 RegistrationEventDetails, 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_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_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_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, 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, 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, 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, useGetEvent, useGetEventActivation, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventRegistrants, useGetEventSessionPassIntent, useGetEventSessionPassSections, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetEventsExplore, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, 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, 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 };