@connectedxm/client 0.1.8 → 0.1.20
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.mts +79 -75
- package/dist/index.d.ts +79 -75
- package/dist/index.js +114 -161
- package/dist/index.mjs +114 -161
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -919,6 +919,10 @@ interface NotificationPreferences {
|
|
|
919
919
|
chatPush: boolean;
|
|
920
920
|
chatUnreadPush: boolean;
|
|
921
921
|
chatUnreadEmail: boolean;
|
|
922
|
+
organizationAnnouncementEmail: boolean;
|
|
923
|
+
organizationAnnouncementPush: boolean;
|
|
924
|
+
communityAnnouncementEmail: boolean;
|
|
925
|
+
communityAnnouncementPush: boolean;
|
|
922
926
|
eventAnnouncementEmail: boolean;
|
|
923
927
|
eventAnnouncementPush: boolean;
|
|
924
928
|
}
|
|
@@ -1162,6 +1166,7 @@ interface ConnectedXMClientContextState {
|
|
|
1162
1166
|
onNotAuthorized?: (error: AxiosError<ConnectedXMResponse<any>>, key: QueryKey, shouldRedirect: boolean) => void;
|
|
1163
1167
|
onModuleForbidden?: (error: AxiosError<ConnectedXMResponse<any>>, key: QueryKey, shouldRedirect: boolean) => void;
|
|
1164
1168
|
onNotFound?: (error: AxiosError<ConnectedXMResponse<any>>, key: QueryKey, shouldRedirect: boolean) => void;
|
|
1169
|
+
onMutationError?: (error: AxiosError<ConnectedXMResponse<null>>, variables: Omit<MutationParams, "queryClient" | "clientApiParams">, context: unknown) => void;
|
|
1165
1170
|
}
|
|
1166
1171
|
interface ConnectedXMProviderProps extends Omit<ConnectedXMClientContextState, "token" | "setToken" | "executeAs" | "setExecuteAs" | "websocket"> {
|
|
1167
1172
|
children: React.ReactNode;
|
|
@@ -1913,52 +1918,52 @@ interface MutationParams {
|
|
|
1913
1918
|
clientApiParams: ClientApiParams;
|
|
1914
1919
|
queryClient?: QueryClient;
|
|
1915
1920
|
}
|
|
1916
|
-
interface MutationOptions<TResponseData, TMutationParams> extends UseMutationOptions<TResponseData, AxiosError<TResponseData
|
|
1921
|
+
interface MutationOptions<TResponseData, TMutationParams> extends UseMutationOptions<TResponseData, AxiosError<TResponseData>, TMutationParams> {
|
|
1917
1922
|
}
|
|
1918
|
-
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,
|
|
1923
|
+
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>;
|
|
1919
1924
|
|
|
1920
1925
|
interface FollowAccountParams extends MutationParams {
|
|
1921
1926
|
accountId: string;
|
|
1922
1927
|
}
|
|
1923
1928
|
declare const FollowAccount: ({ accountId, clientApiParams, queryClient, }: FollowAccountParams) => Promise<ConnectedXMResponse<Account>>;
|
|
1924
|
-
declare const useFollowAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof FollowAccount>>, Omit<FollowAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>,
|
|
1929
|
+
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>;
|
|
1925
1930
|
|
|
1926
1931
|
interface UnfollowAccountParams extends MutationParams {
|
|
1927
1932
|
accountId: string;
|
|
1928
1933
|
}
|
|
1929
1934
|
declare const UnfollowAccount: ({ accountId, clientApiParams, queryClient, }: UnfollowAccountParams) => Promise<ConnectedXMResponse<Account>>;
|
|
1930
|
-
declare const useUnfollowAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnfollowAccount>>, Omit<UnfollowAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>,
|
|
1935
|
+
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>;
|
|
1931
1936
|
|
|
1932
1937
|
interface DeleteReshareParams extends MutationParams {
|
|
1933
1938
|
activityId: string;
|
|
1934
1939
|
}
|
|
1935
1940
|
declare const DeleteReshare: ({ activityId, clientApiParams, queryClient, }: DeleteReshareParams) => Promise<ConnectedXMResponse<Activity>>;
|
|
1936
|
-
declare const useDeleteReshare: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteReshare>>, Omit<DeleteReshareParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>,
|
|
1941
|
+
declare const useDeleteReshare: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteReshare>>, Omit<DeleteReshareParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<DeleteReshareParams, "queryClient" | "clientApiParams">, unknown>;
|
|
1937
1942
|
|
|
1938
1943
|
interface LikeActivityParams extends MutationParams {
|
|
1939
1944
|
activityId: string;
|
|
1940
1945
|
}
|
|
1941
1946
|
declare const LikeActivity: ({ activityId, clientApiParams, queryClient, }: LikeActivityParams) => Promise<ConnectedXMResponse<Activity>>;
|
|
1942
|
-
declare const useLikeActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof LikeActivity>>, Omit<LikeActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>,
|
|
1947
|
+
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>;
|
|
1943
1948
|
|
|
1944
1949
|
interface ReshareActivityParams extends MutationParams {
|
|
1945
1950
|
activityId: string;
|
|
1946
1951
|
}
|
|
1947
1952
|
declare const ReshareActivity: ({ activityId, queryClient, clientApiParams, }: ReshareActivityParams) => Promise<ConnectedXMResponse<Activity>>;
|
|
1948
|
-
declare const useReshareActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof ReshareActivity>>, Omit<ReshareActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>,
|
|
1953
|
+
declare const useReshareActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof ReshareActivity>>, Omit<ReshareActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<ReshareActivityParams, "queryClient" | "clientApiParams">, unknown>;
|
|
1949
1954
|
|
|
1950
1955
|
interface UnlikeActivityParams extends MutationParams {
|
|
1951
1956
|
activityId: string;
|
|
1952
1957
|
}
|
|
1953
1958
|
declare const UnlikeActivity: ({ activityId, clientApiParams, queryClient, }: UnlikeActivityParams) => Promise<ConnectedXMResponse<Activity>>;
|
|
1954
|
-
declare const useUnlikeActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnlikeActivity>>, Omit<UnlikeActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>,
|
|
1959
|
+
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>;
|
|
1955
1960
|
|
|
1956
1961
|
interface AddCommunityEventParams extends MutationParams {
|
|
1957
1962
|
communityId: string;
|
|
1958
1963
|
eventId: string;
|
|
1959
1964
|
}
|
|
1960
1965
|
declare const AddCommunityEvent: ({ communityId, eventId, clientApiParams, queryClient, }: AddCommunityEventParams) => Promise<ConnectedXMResponse<Event>>;
|
|
1961
|
-
declare const useAddCommunityEvent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddCommunityEvent>>, Omit<AddCommunityEventParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Event>,
|
|
1966
|
+
declare const useAddCommunityEvent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddCommunityEvent>>, Omit<AddCommunityEventParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Event>, axios.AxiosError<ConnectedXMResponse<Event>, any>, Omit<AddCommunityEventParams, "queryClient" | "clientApiParams">, unknown>;
|
|
1962
1967
|
|
|
1963
1968
|
interface CreateCommunityAnnouncementParams extends MutationParams {
|
|
1964
1969
|
communityId: string;
|
|
@@ -1968,14 +1973,14 @@ interface CreateCommunityAnnouncementParams extends MutationParams {
|
|
|
1968
1973
|
push: boolean;
|
|
1969
1974
|
}
|
|
1970
1975
|
declare const CreateCommunityAnnouncement: ({ communityId, title, html, email, push, clientApiParams, queryClient, }: CreateCommunityAnnouncementParams) => Promise<ConnectedXMResponse<Announcement>>;
|
|
1971
|
-
declare const useCreateCommunityAnnouncement: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateCommunityAnnouncement>>, Omit<CreateCommunityAnnouncementParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Announcement>,
|
|
1976
|
+
declare const useCreateCommunityAnnouncement: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateCommunityAnnouncement>>, Omit<CreateCommunityAnnouncementParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<Announcement>, any>, Omit<CreateCommunityAnnouncementParams, "queryClient" | "clientApiParams">, unknown>;
|
|
1972
1977
|
|
|
1973
1978
|
interface RemoveCommunityEventParams extends MutationParams {
|
|
1974
1979
|
communityId: string;
|
|
1975
1980
|
eventId: string;
|
|
1976
1981
|
}
|
|
1977
1982
|
declare const RemoveCommunityEvent: ({ communityId, eventId, clientApiParams, queryClient, }: RemoveCommunityEventParams) => Promise<ConnectedXMResponse<null>>;
|
|
1978
|
-
declare const useRemoveCommunityEvent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveCommunityEvent>>, Omit<RemoveCommunityEventParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>,
|
|
1983
|
+
declare const useRemoveCommunityEvent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveCommunityEvent>>, Omit<RemoveCommunityEventParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveCommunityEventParams, "queryClient" | "clientApiParams">, unknown>;
|
|
1979
1984
|
|
|
1980
1985
|
interface UpdateCommunityParams extends MutationParams {
|
|
1981
1986
|
communityId: string;
|
|
@@ -1984,7 +1989,7 @@ interface UpdateCommunityParams extends MutationParams {
|
|
|
1984
1989
|
base64?: string;
|
|
1985
1990
|
}
|
|
1986
1991
|
declare const UpdateCommunity: ({ communityId, description, externalUrl, base64, clientApiParams, queryClient, }: UpdateCommunityParams) => Promise<ConnectedXMResponse<Community>>;
|
|
1987
|
-
declare const useUpdateCommunity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateCommunity>>, Omit<UpdateCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Community>,
|
|
1992
|
+
declare const useUpdateCommunity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateCommunity>>, Omit<UpdateCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Community>, axios.AxiosError<ConnectedXMResponse<Community>, any>, Omit<UpdateCommunityParams, "queryClient" | "clientApiParams">, unknown>;
|
|
1988
1993
|
|
|
1989
1994
|
interface CompleteEventActivationParams extends MutationParams {
|
|
1990
1995
|
eventId: string;
|
|
@@ -1992,7 +1997,7 @@ interface CompleteEventActivationParams extends MutationParams {
|
|
|
1992
1997
|
code?: string;
|
|
1993
1998
|
}
|
|
1994
1999
|
declare const CompleteEventActivation: ({ eventId, activationId, code, clientApiParams, queryClient, }: CompleteEventActivationParams) => Promise<ConnectedXMResponse<EventActivation>>;
|
|
1995
|
-
declare const useCompleteEventActivation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CompleteEventActivation>>, Omit<CompleteEventActivationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventActivation>,
|
|
2000
|
+
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>;
|
|
1996
2001
|
|
|
1997
2002
|
interface CreateEventLeadParams extends MutationParams {
|
|
1998
2003
|
eventId: string;
|
|
@@ -2000,61 +2005,61 @@ interface CreateEventLeadParams extends MutationParams {
|
|
|
2000
2005
|
note?: string;
|
|
2001
2006
|
}
|
|
2002
2007
|
declare const CreateEventLead: ({ eventId, purchaseId, note, clientApiParams, queryClient, }: CreateEventLeadParams) => Promise<ConnectedXMResponse<Lead>>;
|
|
2003
|
-
declare const useCreateEventLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateEventLead>>, Omit<CreateEventLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>,
|
|
2008
|
+
declare const useCreateEventLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateEventLead>>, Omit<CreateEventLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<CreateEventLeadParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2004
2009
|
|
|
2005
2010
|
interface AddSelfChatChannelMemberParams extends MutationParams {
|
|
2006
2011
|
channelId: string;
|
|
2007
2012
|
accountId: string;
|
|
2008
2013
|
}
|
|
2009
2014
|
declare const AddSelfChatChannelMember: ({ channelId, accountId, clientApiParams, queryClient, }: AddSelfChatChannelMemberParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
|
|
2010
|
-
declare const useAddSelfChatChannelMember: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfChatChannelMember>>, Omit<AddSelfChatChannelMemberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMember>,
|
|
2015
|
+
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>;
|
|
2011
2016
|
|
|
2012
2017
|
interface CreateSelfChatChannelParams extends MutationParams {
|
|
2013
2018
|
name: string;
|
|
2014
2019
|
accountIds: string[];
|
|
2015
2020
|
}
|
|
2016
2021
|
declare const CreateSelfChatChannel: ({ name, accountIds, clientApiParams, queryClient, }: CreateSelfChatChannelParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
|
|
2017
|
-
declare const useCreateSelfChatChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfChatChannel>>, Omit<CreateSelfChatChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMember>,
|
|
2022
|
+
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>;
|
|
2018
2023
|
|
|
2019
2024
|
interface CreateSelfChatChannelMessageParams extends MutationParams {
|
|
2020
2025
|
channelId: string;
|
|
2021
2026
|
text: string;
|
|
2022
2027
|
}
|
|
2023
2028
|
declare const CreateSelfChatChannelMessage: ({ channelId, text, queryClient, clientApiParams, }: CreateSelfChatChannelMessageParams) => Promise<ConnectedXMResponse<ChatChannelMessage>>;
|
|
2024
|
-
declare const useCreateSelfChatChannelMessage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfChatChannelMessage>>, Omit<CreateSelfChatChannelMessageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMessage>,
|
|
2029
|
+
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>;
|
|
2025
2030
|
|
|
2026
2031
|
interface DeleteSelfChatChannelParams extends MutationParams {
|
|
2027
2032
|
channelId: string;
|
|
2028
2033
|
}
|
|
2029
2034
|
declare const DeleteSelfChatChannel: ({ channelId, clientApiParams, queryClient, }: DeleteSelfChatChannelParams) => Promise<ConnectedXMResponse<null>>;
|
|
2030
|
-
declare const useDeleteSelfChatChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfChatChannel>>, Omit<DeleteSelfChatChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>,
|
|
2035
|
+
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>;
|
|
2031
2036
|
|
|
2032
2037
|
interface DeleteSelfChatChannelMessageParams extends MutationParams {
|
|
2033
2038
|
channelId: string;
|
|
2034
2039
|
messageId: string;
|
|
2035
2040
|
}
|
|
2036
2041
|
declare const DeleteSelfChatChannelMessage: ({ channelId, messageId, clientApiParams, queryClient, }: DeleteSelfChatChannelMessageParams) => Promise<ConnectedXMResponse<null>>;
|
|
2037
|
-
declare const useDeleteSelfChatChannelMessage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfChatChannelMessage>>, Omit<DeleteSelfChatChannelMessageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>,
|
|
2042
|
+
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>;
|
|
2038
2043
|
|
|
2039
2044
|
interface LeaveSelfChatChannelParams extends MutationParams {
|
|
2040
2045
|
channelId: string;
|
|
2041
2046
|
}
|
|
2042
2047
|
declare const LeaveSelfChatChannel: ({ channelId, clientApiParams, queryClient, }: LeaveSelfChatChannelParams) => Promise<ConnectedXMResponse<null>>;
|
|
2043
|
-
declare const useLeaveSelfChatChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof LeaveSelfChatChannel>>, Omit<LeaveSelfChatChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>,
|
|
2048
|
+
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>;
|
|
2044
2049
|
|
|
2045
2050
|
interface UpdateSelfChatChannelNotificationsParams extends MutationParams {
|
|
2046
2051
|
channelId: string;
|
|
2047
2052
|
notifications: boolean;
|
|
2048
2053
|
}
|
|
2049
2054
|
declare const UpdateSelfChatChannelNotifications: ({ channelId, notifications, clientApiParams, queryClient, }: UpdateSelfChatChannelNotificationsParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
|
|
2050
|
-
declare const useUpdateSelfChatChannelNotifications: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfChatChannelNotifications>>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMember>,
|
|
2055
|
+
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>;
|
|
2051
2056
|
|
|
2052
2057
|
interface RegisterCancelledEventRegistrationParams extends MutationParams {
|
|
2053
2058
|
eventId: string;
|
|
2054
2059
|
registrationId: string;
|
|
2055
2060
|
}
|
|
2056
2061
|
declare const RegisterCancelledEventRegistration: ({ eventId, registrationId, clientApiParams, queryClient, }: RegisterCancelledEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2057
|
-
declare const useRegisterCancelledEventRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RegisterCancelledEventRegistration>>, Omit<RegisterCancelledEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>,
|
|
2062
|
+
declare const useRegisterCancelledEventRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RegisterCancelledEventRegistration>>, Omit<RegisterCancelledEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RegisterCancelledEventRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2058
2063
|
|
|
2059
2064
|
interface SelectSelfEventRegistrationCouponParams extends MutationParams {
|
|
2060
2065
|
eventId: string;
|
|
@@ -2062,14 +2067,14 @@ interface SelectSelfEventRegistrationCouponParams extends MutationParams {
|
|
|
2062
2067
|
couponId: string;
|
|
2063
2068
|
}
|
|
2064
2069
|
declare const SelectSelfEventRegistrationCoupon: ({ eventId, registrationId, couponId, clientApiParams, queryClient, }: SelectSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2065
|
-
declare const useSelectSelfEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationCoupon>>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>,
|
|
2070
|
+
declare const useSelectSelfEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationCoupon>>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2066
2071
|
|
|
2067
2072
|
interface CaptureSelfEventRegistrationPaymentParams extends MutationParams {
|
|
2068
2073
|
eventId: string;
|
|
2069
2074
|
registrationId: string;
|
|
2070
2075
|
}
|
|
2071
2076
|
declare const CaptureSelfEventRegistrationPayment: ({ eventId, registrationId, clientApiParams, queryClient, }: CaptureSelfEventRegistrationPaymentParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2072
|
-
declare const useCaptureSelfEventRegistrationPayment: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CaptureSelfEventRegistrationPayment>>, Omit<CaptureSelfEventRegistrationPaymentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>,
|
|
2077
|
+
declare const useCaptureSelfEventRegistrationPayment: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CaptureSelfEventRegistrationPayment>>, Omit<CaptureSelfEventRegistrationPaymentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<CaptureSelfEventRegistrationPaymentParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2073
2078
|
|
|
2074
2079
|
interface CreateGuest {
|
|
2075
2080
|
firstName: string;
|
|
@@ -2082,7 +2087,7 @@ interface CreateSelfEventRegistrationGuestParams extends MutationParams {
|
|
|
2082
2087
|
guest: CreateGuest;
|
|
2083
2088
|
}
|
|
2084
2089
|
declare const CreateSelfEventRegistrationGuest: ({ eventId, registrationId, guest, clientApiParams, queryClient, }: CreateSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2085
|
-
declare const useCreateSelfEventRegistrationGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfEventRegistrationGuest>>, Omit<CreateSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>,
|
|
2090
|
+
declare const useCreateSelfEventRegistrationGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfEventRegistrationGuest>>, Omit<CreateSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<CreateSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2086
2091
|
|
|
2087
2092
|
interface DeleteSelfEventRegistrationGuestParams extends MutationParams {
|
|
2088
2093
|
eventId: string;
|
|
@@ -2090,21 +2095,21 @@ interface DeleteSelfEventRegistrationGuestParams extends MutationParams {
|
|
|
2090
2095
|
guestId: string;
|
|
2091
2096
|
}
|
|
2092
2097
|
declare const DeleteSelfEventRegistrationGuest: ({ eventId, registrationId, guestId, clientApiParams, queryClient, }: DeleteSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2093
|
-
declare const useDeleteSelfEventRegistrationGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfEventRegistrationGuest>>, Omit<DeleteSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>,
|
|
2098
|
+
declare const useDeleteSelfEventRegistrationGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfEventRegistrationGuest>>, Omit<DeleteSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<DeleteSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2094
2099
|
|
|
2095
2100
|
interface RemoveSelfEventRegistrationCouponParams extends MutationParams {
|
|
2096
2101
|
eventId: string;
|
|
2097
2102
|
registrationId: string;
|
|
2098
2103
|
}
|
|
2099
2104
|
declare const RemoveSelfEventRegistrationCoupon: ({ eventId, registrationId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2100
|
-
declare const useRemoveSelfEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationCoupon>>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>,
|
|
2105
|
+
declare const useRemoveSelfEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationCoupon>>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2101
2106
|
|
|
2102
2107
|
interface RemoveSelfEventRegistrationTicketParams extends MutationParams {
|
|
2103
2108
|
eventId: string;
|
|
2104
2109
|
registrationId: string;
|
|
2105
2110
|
}
|
|
2106
2111
|
declare const RemoveSelfEventRegistrationTicket: ({ eventId, registrationId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationTicketParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2107
|
-
declare const useRemoveSelfEventRegistrationTicket: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationTicket>>, Omit<RemoveSelfEventRegistrationTicketParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>,
|
|
2112
|
+
declare const useRemoveSelfEventRegistrationTicket: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationTicket>>, Omit<RemoveSelfEventRegistrationTicketParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationTicketParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2108
2113
|
|
|
2109
2114
|
interface SelectSelfEventRegistrationTicketParams extends MutationParams {
|
|
2110
2115
|
eventId: string;
|
|
@@ -2112,7 +2117,7 @@ interface SelectSelfEventRegistrationTicketParams extends MutationParams {
|
|
|
2112
2117
|
ticketId: string;
|
|
2113
2118
|
}
|
|
2114
2119
|
declare const SelectSelfEventRegistrationTicket: ({ eventId, registrationId, ticketId, clientApiParams, queryClient, }: SelectSelfEventRegistrationTicketParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2115
|
-
declare const useSelectSelfEventRegistrationTicket: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationTicket>>, Omit<SelectSelfEventRegistrationTicketParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>,
|
|
2120
|
+
declare const useSelectSelfEventRegistrationTicket: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationTicket>>, Omit<SelectSelfEventRegistrationTicketParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SelectSelfEventRegistrationTicketParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2116
2121
|
|
|
2117
2122
|
interface SubmitStripe {
|
|
2118
2123
|
type: "stripe";
|
|
@@ -2138,7 +2143,7 @@ interface SubmitSelfEventRegistrationParams extends MutationParams {
|
|
|
2138
2143
|
payment?: SubmitPayment;
|
|
2139
2144
|
}
|
|
2140
2145
|
declare const SubmitSelfEventRegistration: ({ eventId, registrationId, payment, clientApiParams, queryClient, }: SubmitSelfEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2141
|
-
declare const useSubmitSelfEventRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SubmitSelfEventRegistration>>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>,
|
|
2146
|
+
declare const useSubmitSelfEventRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SubmitSelfEventRegistration>>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2142
2147
|
|
|
2143
2148
|
interface UpdateSelfEventRegistrationGuestParams extends MutationParams {
|
|
2144
2149
|
eventId: string;
|
|
@@ -2147,7 +2152,7 @@ interface UpdateSelfEventRegistrationGuestParams extends MutationParams {
|
|
|
2147
2152
|
guest: BaseRegistrationGuest;
|
|
2148
2153
|
}
|
|
2149
2154
|
declare const UpdateSelfEventRegistrationGuest: ({ eventId, registrationId, guestId, guest, clientApiParams, queryClient, }: UpdateSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2150
|
-
declare const useUpdateSelfEventRegistrationGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuest>>, Omit<UpdateSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>,
|
|
2155
|
+
declare const useUpdateSelfEventRegistrationGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuest>>, Omit<UpdateSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2151
2156
|
|
|
2152
2157
|
interface UpdateSelfEventRegistrationGuestResponseFileParams extends MutationParams {
|
|
2153
2158
|
eventId: string;
|
|
@@ -2158,7 +2163,7 @@ interface UpdateSelfEventRegistrationGuestResponseFileParams extends MutationPar
|
|
|
2158
2163
|
name: string;
|
|
2159
2164
|
}
|
|
2160
2165
|
declare const UpdateSelfEventRegistrationGuestResponseFile: ({ eventId, registrationId, questionId, guestId, dataUrl, name, clientApiParams, }: UpdateSelfEventRegistrationGuestResponseFileParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
|
|
2161
|
-
declare const useUpdateSelfEventRegistrationGuestResponseFile: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponseFile>>, Omit<UpdateSelfEventRegistrationGuestResponseFileParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>,
|
|
2166
|
+
declare const useUpdateSelfEventRegistrationGuestResponseFile: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponseFile>>, Omit<UpdateSelfEventRegistrationGuestResponseFileParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>, axios.AxiosError<ConnectedXMResponse<RegistrationQuestionResponse>, any>, Omit<UpdateSelfEventRegistrationGuestResponseFileParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2162
2167
|
|
|
2163
2168
|
interface UpdateSelfEventRegistrationGuestResponsesParams extends MutationParams {
|
|
2164
2169
|
eventId: string;
|
|
@@ -2167,7 +2172,7 @@ interface UpdateSelfEventRegistrationGuestResponsesParams extends MutationParams
|
|
|
2167
2172
|
responses: BaseRegistrationQuestionResponse[];
|
|
2168
2173
|
}
|
|
2169
2174
|
declare const UpdateSelfEventRegistrationGuestResponses: ({ eventId, registrationId, guestId, responses, clientApiParams, }: UpdateSelfEventRegistrationGuestResponsesParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
|
|
2170
|
-
declare const useUpdateSelfEventRegistrationGuestResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponses>>, Omit<UpdateSelfEventRegistrationGuestResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>,
|
|
2175
|
+
declare const useUpdateSelfEventRegistrationGuestResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponses>>, Omit<UpdateSelfEventRegistrationGuestResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>, axios.AxiosError<ConnectedXMResponse<RegistrationQuestionResponse>, any>, Omit<UpdateSelfEventRegistrationGuestResponsesParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2171
2176
|
|
|
2172
2177
|
interface UpdateSelfEventRegistrationResponseFileParams extends MutationParams {
|
|
2173
2178
|
eventId: string;
|
|
@@ -2177,7 +2182,7 @@ interface UpdateSelfEventRegistrationResponseFileParams extends MutationParams {
|
|
|
2177
2182
|
questionId: string;
|
|
2178
2183
|
}
|
|
2179
2184
|
declare const UpdateSelfEventRegistrationResponseFile: ({ eventId, registrationId, dataUrl, name, questionId, clientApiParams, }: UpdateSelfEventRegistrationResponseFileParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
|
|
2180
|
-
declare const useUpdateSelfEventRegistrationResponseFile: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponseFile>>, Omit<UpdateSelfEventRegistrationResponseFileParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>,
|
|
2185
|
+
declare const useUpdateSelfEventRegistrationResponseFile: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponseFile>>, Omit<UpdateSelfEventRegistrationResponseFileParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>, axios.AxiosError<ConnectedXMResponse<RegistrationQuestionResponse>, any>, Omit<UpdateSelfEventRegistrationResponseFileParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2181
2186
|
|
|
2182
2187
|
interface UpdateSelfEventRegistrationResponsesParams extends MutationParams {
|
|
2183
2188
|
eventId: string;
|
|
@@ -2185,14 +2190,14 @@ interface UpdateSelfEventRegistrationResponsesParams extends MutationParams {
|
|
|
2185
2190
|
responses: BaseRegistrationQuestionResponse[];
|
|
2186
2191
|
}
|
|
2187
2192
|
declare const UpdateSelfEventRegistrationResponses: ({ eventId, registrationId, responses, clientApiParams, queryClient, }: UpdateSelfEventRegistrationResponsesParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2188
|
-
declare const useUpdateSelfEventRegistrationResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponses>>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>,
|
|
2193
|
+
declare const useUpdateSelfEventRegistrationResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponses>>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2189
2194
|
|
|
2190
2195
|
interface CancelEventRegistrationParams extends MutationParams {
|
|
2191
2196
|
eventId: string;
|
|
2192
2197
|
registrationId: string;
|
|
2193
2198
|
}
|
|
2194
2199
|
declare const CancelEventRegistration: ({ eventId, registrationId, clientApiParams, queryClient, }: CancelEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2195
|
-
declare const useCancelEventRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelEventRegistration>>, Omit<CancelEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>,
|
|
2200
|
+
declare const useCancelEventRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelEventRegistration>>, Omit<CancelEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<CancelEventRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2196
2201
|
|
|
2197
2202
|
interface CancelTransferParams extends MutationParams {
|
|
2198
2203
|
transferId: string;
|
|
@@ -2200,7 +2205,7 @@ interface CancelTransferParams extends MutationParams {
|
|
|
2200
2205
|
registrationId: string;
|
|
2201
2206
|
}
|
|
2202
2207
|
declare const CancelTransfer: ({ transferId, eventId, registrationId, clientApiParams, queryClient, }: CancelTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2203
|
-
declare const useCancelTransfer: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelTransfer>>, Omit<CancelTransferParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Transfer>,
|
|
2208
|
+
declare const useCancelTransfer: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelTransfer>>, Omit<CancelTransferParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Transfer>, axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<CancelTransferParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2204
2209
|
|
|
2205
2210
|
interface TransferPurchaseParams extends MutationParams {
|
|
2206
2211
|
email: string;
|
|
@@ -2209,7 +2214,7 @@ interface TransferPurchaseParams extends MutationParams {
|
|
|
2209
2214
|
registrationId: string;
|
|
2210
2215
|
}
|
|
2211
2216
|
declare const TransferPurchase: ({ email, purchaseId, eventId, registrationId, clientApiParams, queryClient, }: TransferPurchaseParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2212
|
-
declare const useTransferPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof TransferPurchase>>, Omit<TransferPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Transfer>,
|
|
2217
|
+
declare const useTransferPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof TransferPurchase>>, Omit<TransferPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Transfer>, axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<TransferPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2213
2218
|
|
|
2214
2219
|
interface UpdateSelfEventRegistrationResponseParams extends MutationParams {
|
|
2215
2220
|
eventId: string;
|
|
@@ -2218,7 +2223,7 @@ interface UpdateSelfEventRegistrationResponseParams extends MutationParams {
|
|
|
2218
2223
|
response: string;
|
|
2219
2224
|
}
|
|
2220
2225
|
declare const UpdateSelfEventRegistrationResponse: ({ eventId, registrationId, questionId, response, clientApiParams, queryClient, }: UpdateSelfEventRegistrationResponseParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2221
|
-
declare const useUpdateSelfEventRegistrationResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponse>>, Omit<UpdateSelfEventRegistrationResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>,
|
|
2226
|
+
declare const useUpdateSelfEventRegistrationResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponse>>, Omit<UpdateSelfEventRegistrationResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationResponseParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2222
2227
|
|
|
2223
2228
|
interface UpdateSelfEventRegistrationGuestResponseParams extends MutationParams {
|
|
2224
2229
|
eventId: string;
|
|
@@ -2228,16 +2233,15 @@ interface UpdateSelfEventRegistrationGuestResponseParams extends MutationParams
|
|
|
2228
2233
|
response: string;
|
|
2229
2234
|
}
|
|
2230
2235
|
declare const UpdateSelfEventRegistrationGuestResponse: ({ eventId, registrationId, questionId, guestId, response, clientApiParams, queryClient, }: UpdateSelfEventRegistrationGuestResponseParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2231
|
-
declare const useUpdateSelfEventRegistrationGuestResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponse>>, Omit<UpdateSelfEventRegistrationGuestResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>,
|
|
2236
|
+
declare const useUpdateSelfEventRegistrationGuestResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponse>>, Omit<UpdateSelfEventRegistrationGuestResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationGuestResponseParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2232
2237
|
|
|
2233
2238
|
interface CancelSubscriptionParams extends MutationParams {
|
|
2234
2239
|
subscriptionId: string;
|
|
2235
2240
|
}
|
|
2236
2241
|
declare const CancelSubscription: ({ subscriptionId, clientApiParams, queryClient, }: CancelSubscriptionParams) => Promise<ConnectedXMResponse<null>>;
|
|
2237
|
-
declare const useCancelSubscription: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelSubscription>>, Omit<CancelSubscriptionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>,
|
|
2242
|
+
declare const useCancelSubscription: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelSubscription>>, Omit<CancelSubscriptionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<CancelSubscriptionParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2238
2243
|
|
|
2239
2244
|
interface CreateSubscriptionParams extends MutationParams {
|
|
2240
|
-
subscriptionId: string;
|
|
2241
2245
|
productId: string;
|
|
2242
2246
|
priceId: string;
|
|
2243
2247
|
}
|
|
@@ -2246,33 +2250,33 @@ interface CreateSubscriptionResponse {
|
|
|
2246
2250
|
clientSecret: string;
|
|
2247
2251
|
}
|
|
2248
2252
|
declare const CreateSubscription: ({ productId, priceId, clientApiParams, }: CreateSubscriptionParams) => Promise<ConnectedXMResponse<CreateSubscriptionResponse>>;
|
|
2249
|
-
declare const useCreateSubscription: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSubscription>>, Omit<CreateSubscriptionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<CreateSubscriptionResponse>,
|
|
2253
|
+
declare const useCreateSubscription: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSubscription>>, Omit<CreateSubscriptionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<CreateSubscriptionResponse>, axios.AxiosError<ConnectedXMResponse<CreateSubscriptionResponse>, any>, Omit<CreateSubscriptionParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2250
2254
|
|
|
2251
2255
|
interface UpdateSubscriptionPaymentMethodParams extends MutationParams {
|
|
2252
2256
|
subscriptionId: string;
|
|
2253
2257
|
paymentMethodId: string;
|
|
2254
2258
|
}
|
|
2255
2259
|
declare const UpdateSubscriptionPaymentMethod: ({ subscriptionId, paymentMethodId, clientApiParams, queryClient, }: UpdateSubscriptionPaymentMethodParams) => Promise<ConnectedXMResponse<null>>;
|
|
2256
|
-
declare const useUpdateSubscriptionPaymentMethod: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSubscriptionPaymentMethod>>, Omit<UpdateSubscriptionPaymentMethodParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>,
|
|
2260
|
+
declare const useUpdateSubscriptionPaymentMethod: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSubscriptionPaymentMethod>>, Omit<UpdateSubscriptionPaymentMethodParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSubscriptionPaymentMethodParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2257
2261
|
|
|
2258
2262
|
interface AcceptTransferParams extends MutationParams {
|
|
2259
2263
|
transferId: string;
|
|
2260
2264
|
}
|
|
2261
2265
|
declare const AcceptTransfer: ({ transferId, clientApiParams, queryClient, }: AcceptTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2262
|
-
declare const useAcceptTransfer: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptTransfer>>, Omit<AcceptTransferParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Transfer>,
|
|
2266
|
+
declare const useAcceptTransfer: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptTransfer>>, Omit<AcceptTransferParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Transfer>, axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<AcceptTransferParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2263
2267
|
|
|
2264
2268
|
interface AddSelfDelegateParams extends MutationParams {
|
|
2265
2269
|
email: string;
|
|
2266
2270
|
}
|
|
2267
2271
|
declare const AddSelfDelegate: ({ email, clientApiParams, queryClient, }: AddSelfDelegateParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2268
|
-
declare const useAddSelfDelegate: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfDelegate>>, Omit<AddSelfDelegateParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>,
|
|
2272
|
+
declare const useAddSelfDelegate: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfDelegate>>, Omit<AddSelfDelegateParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<AddSelfDelegateParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2269
2273
|
|
|
2270
2274
|
interface AddSelfEventListingSessionParams extends MutationParams {
|
|
2271
2275
|
eventId: string;
|
|
2272
2276
|
session: Omit<Session, "id" | "slug" | "event" | "sortOrder" | "tracks" | "nonSession" | "createdAt" | "updatedAt" | "speakers" | "sponsors" | "longDescription" | "image" | "streamInput">;
|
|
2273
2277
|
}
|
|
2274
2278
|
declare const AddSelfEventListingSession: ({ eventId, session, clientApiParams, queryClient, }: AddSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2275
|
-
declare const useAddSelfEventListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSession>>, Omit<AddSelfEventListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>,
|
|
2279
|
+
declare const useAddSelfEventListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSession>>, Omit<AddSelfEventListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddSelfEventListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2276
2280
|
|
|
2277
2281
|
interface EventListingSpeaker {
|
|
2278
2282
|
firstName: string | null;
|
|
@@ -2286,21 +2290,21 @@ interface AddSelfEventListingSpeakerParams extends MutationParams {
|
|
|
2286
2290
|
speaker: EventListingSpeaker;
|
|
2287
2291
|
}
|
|
2288
2292
|
declare const AddSelfEventListingSpeaker: ({ eventId, speaker, clientApiParams, queryClient, }: AddSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2289
|
-
declare const useAddSelfEventListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSpeaker>>, Omit<AddSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>,
|
|
2293
|
+
declare const useAddSelfEventListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSpeaker>>, Omit<AddSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2290
2294
|
|
|
2291
2295
|
interface AddSelfEventListingSponsorParams extends MutationParams {
|
|
2292
2296
|
eventId: string;
|
|
2293
2297
|
sponsor: Account;
|
|
2294
2298
|
}
|
|
2295
2299
|
declare const AddSelfEventListingSponsor: ({ eventId, sponsor, clientApiParams, queryClient, }: AddSelfEventListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2296
|
-
declare const useAddSelfEventListingSponsor: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSponsor>>, Omit<AddSelfEventListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>,
|
|
2300
|
+
declare const useAddSelfEventListingSponsor: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSponsor>>, Omit<AddSelfEventListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddSelfEventListingSponsorParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2297
2301
|
|
|
2298
2302
|
interface AddSelfEventSessionParams extends MutationParams {
|
|
2299
2303
|
eventId: string;
|
|
2300
2304
|
sessionId: string;
|
|
2301
2305
|
}
|
|
2302
2306
|
declare const AddSelfEventSession: ({ eventId, sessionId, clientApiParams, queryClient, }: AddSelfEventSessionParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2303
|
-
declare const useAddSelfEventSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventSession>>, Omit<AddSelfEventSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>,
|
|
2307
|
+
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>;
|
|
2304
2308
|
|
|
2305
2309
|
interface CreateEventListing {
|
|
2306
2310
|
name: string;
|
|
@@ -2329,65 +2333,65 @@ interface CreateSelfEventListingParams extends MutationParams {
|
|
|
2329
2333
|
sessions?: Session[];
|
|
2330
2334
|
}
|
|
2331
2335
|
declare const CreateSelfEventListing: ({ event, base64, communityId, sponsorIds, speakers, sessions, clientApiParams, queryClient, }: CreateSelfEventListingParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2332
|
-
declare const useCreateSelfEventListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfEventListing>>, Omit<CreateSelfEventListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>,
|
|
2336
|
+
declare const useCreateSelfEventListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfEventListing>>, Omit<CreateSelfEventListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<CreateSelfEventListingParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2333
2337
|
|
|
2334
2338
|
interface DeleteSelfParams extends MutationParams {
|
|
2335
2339
|
}
|
|
2336
2340
|
declare const DeleteSelf: ({ clientApiParams, queryClient, }: DeleteSelfParams) => Promise<any>;
|
|
2337
|
-
declare const useDeleteSelf: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelf>>, Omit<DeleteSelfParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any,
|
|
2341
|
+
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>;
|
|
2338
2342
|
|
|
2339
2343
|
interface DeleteSelfPushDeviceParams extends MutationParams {
|
|
2340
2344
|
pushDeviceId: string;
|
|
2341
2345
|
}
|
|
2342
2346
|
declare const DeleteSelfPushDevice: ({ pushDeviceId, clientApiParams, queryClient, }: DeleteSelfPushDeviceParams) => Promise<ConnectedXMResponse<PushDevice>>;
|
|
2343
|
-
declare const useDeleteSelfPushDevice: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfPushDevice>>, Omit<DeleteSelfPushDeviceParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<PushDevice>,
|
|
2347
|
+
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>;
|
|
2344
2348
|
|
|
2345
2349
|
interface RejectTransferParams extends MutationParams {
|
|
2346
2350
|
transferId: string;
|
|
2347
2351
|
}
|
|
2348
2352
|
declare const RejectTransfer: ({ transferId, clientApiParams, queryClient, }: RejectTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2349
|
-
declare const useRejectTransfer: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectTransfer>>, Omit<RejectTransferParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Transfer>,
|
|
2353
|
+
declare const useRejectTransfer: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectTransfer>>, Omit<RejectTransferParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Transfer>, axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<RejectTransferParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2350
2354
|
|
|
2351
2355
|
interface RemoveSelfDelegateParams extends MutationParams {
|
|
2352
2356
|
accountId: string;
|
|
2353
2357
|
}
|
|
2354
2358
|
declare const RemoveSelfDelegate: ({ accountId, clientApiParams, queryClient, }: RemoveSelfDelegateParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2355
|
-
declare const useRemoveSelfDelegate: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfDelegate>>, Omit<RemoveSelfDelegateParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>,
|
|
2359
|
+
declare const useRemoveSelfDelegate: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfDelegate>>, Omit<RemoveSelfDelegateParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<RemoveSelfDelegateParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2356
2360
|
|
|
2357
2361
|
interface RemoveSelfEventListingSessionParams extends MutationParams {
|
|
2358
2362
|
eventId: string;
|
|
2359
2363
|
sessionId: string;
|
|
2360
2364
|
}
|
|
2361
2365
|
declare const RemoveSelfEventListingSession: ({ eventId, sessionId, clientApiParams, queryClient, }: RemoveSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2362
|
-
declare const useRemoveSelfEventListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSession>>, Omit<RemoveSelfEventListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>,
|
|
2366
|
+
declare const useRemoveSelfEventListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSession>>, Omit<RemoveSelfEventListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveSelfEventListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2363
2367
|
|
|
2364
2368
|
interface RemoveSelfEventListingSpeakerParams extends MutationParams {
|
|
2365
2369
|
eventId: string;
|
|
2366
2370
|
speakerId: string;
|
|
2367
2371
|
}
|
|
2368
2372
|
declare const RemoveSelfEventListingSpeaker: ({ eventId, speakerId, clientApiParams, queryClient, }: RemoveSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2369
|
-
declare const useRemoveSelfEventListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSpeaker>>, Omit<RemoveSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>,
|
|
2373
|
+
declare const useRemoveSelfEventListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSpeaker>>, Omit<RemoveSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2370
2374
|
|
|
2371
2375
|
interface RemoveSelfEventListingSponsorParams extends MutationParams {
|
|
2372
2376
|
eventId: string;
|
|
2373
2377
|
sponsorId: string;
|
|
2374
2378
|
}
|
|
2375
2379
|
declare const RemoveSelfEventListingSponsor: ({ eventId, sponsorId, clientApiParams, queryClient, }: RemoveSelfEventListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2376
|
-
declare const useRemoveSelfEventListingSponsor: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSponsor>>, Omit<RemoveSelfEventListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>,
|
|
2380
|
+
declare const useRemoveSelfEventListingSponsor: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSponsor>>, Omit<RemoveSelfEventListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveSelfEventListingSponsorParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2377
2381
|
|
|
2378
2382
|
interface RemoveSelfEventSessionParams extends MutationParams {
|
|
2379
2383
|
eventId: string;
|
|
2380
2384
|
sessionId: string;
|
|
2381
2385
|
}
|
|
2382
2386
|
declare const RemoveSelfEventSession: ({ eventId, sessionId, clientApiParams, queryClient, }: RemoveSelfEventSessionParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2383
|
-
declare const useRemoveSelfEventSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventSession>>, Omit<RemoveSelfEventSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>,
|
|
2387
|
+
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>;
|
|
2384
2388
|
|
|
2385
2389
|
interface SelfCheckinRegistrationParams extends MutationParams {
|
|
2386
2390
|
accountId: string;
|
|
2387
2391
|
eventId: string;
|
|
2388
2392
|
}
|
|
2389
2393
|
declare const SelfCheckinRegistration: ({ accountId, eventId, clientApiParams, queryClient, }: SelfCheckinRegistrationParams) => Promise<any>;
|
|
2390
|
-
declare const useSelfCheckinRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfCheckinRegistration>>, Omit<SelfCheckinRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any,
|
|
2394
|
+
declare const useSelfCheckinRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfCheckinRegistration>>, Omit<SelfCheckinRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<any, any>, Omit<SelfCheckinRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2391
2395
|
|
|
2392
2396
|
interface CreateActivity {
|
|
2393
2397
|
message: string;
|
|
@@ -2402,32 +2406,32 @@ interface SelfCreateActivityParams extends MutationParams {
|
|
|
2402
2406
|
videoUri?: string;
|
|
2403
2407
|
}
|
|
2404
2408
|
declare const SelfCreateActivity: ({ activity, base64Image, videoUri, clientApiParams, queryClient, }: SelfCreateActivityParams) => Promise<ConnectedXMResponse<Activity>>;
|
|
2405
|
-
declare const useSelfCreateActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfCreateActivity>>, Omit<SelfCreateActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>,
|
|
2409
|
+
declare const useSelfCreateActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfCreateActivity>>, Omit<SelfCreateActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<SelfCreateActivityParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2406
2410
|
|
|
2407
2411
|
interface DeleteActivityParams extends MutationParams {
|
|
2408
2412
|
activityId: string;
|
|
2409
2413
|
}
|
|
2410
2414
|
declare const DeleteActivity: ({ activityId, clientApiParams, queryClient, }: DeleteActivityParams) => Promise<ConnectedXMResponse<null>>;
|
|
2411
|
-
declare const useDeleteActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteActivity>>, Omit<DeleteActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>,
|
|
2415
|
+
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>;
|
|
2412
2416
|
|
|
2413
2417
|
interface SelfJoinCommunityParams extends MutationParams {
|
|
2414
2418
|
communityId: string;
|
|
2415
2419
|
}
|
|
2416
2420
|
declare const SelfJoinCommunity: ({ communityId, clientApiParams, queryClient, }: SelfJoinCommunityParams) => Promise<ConnectedXMResponse<CommunityMembership>>;
|
|
2417
|
-
declare const useSelfJoinCommunity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfJoinCommunity>>, Omit<SelfJoinCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<CommunityMembership>,
|
|
2421
|
+
declare const useSelfJoinCommunity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfJoinCommunity>>, Omit<SelfJoinCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<CommunityMembership>, axios.AxiosError<ConnectedXMResponse<CommunityMembership>, any>, Omit<SelfJoinCommunityParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2418
2422
|
|
|
2419
2423
|
interface SelfLeaveCommunityParams extends MutationParams {
|
|
2420
2424
|
communityId: string;
|
|
2421
2425
|
}
|
|
2422
2426
|
declare const SelfLeaveCommunity: ({ communityId, clientApiParams, queryClient, }: SelfLeaveCommunityParams) => Promise<ConnectedXMResponse<null>>;
|
|
2423
|
-
declare const useSelfLeaveCommunity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfLeaveCommunity>>, Omit<SelfLeaveCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>,
|
|
2427
|
+
declare const useSelfLeaveCommunity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfLeaveCommunity>>, Omit<SelfLeaveCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<SelfLeaveCommunityParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2424
2428
|
|
|
2425
2429
|
interface SelfUpdateCommunityMembershipParams extends MutationParams {
|
|
2426
2430
|
communityId: string;
|
|
2427
2431
|
membership: Partial<CommunityMembership>;
|
|
2428
2432
|
}
|
|
2429
2433
|
declare const SelfUpdateCommunityMembership: ({ communityId, membership, clientApiParams, queryClient, }: SelfUpdateCommunityMembershipParams) => Promise<ConnectedXMResponse<CommunityMembership>>;
|
|
2430
|
-
declare const useSelfUpdateCommunityMembership: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfUpdateCommunityMembership>>, Omit<SelfUpdateCommunityMembershipParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<CommunityMembership>,
|
|
2434
|
+
declare const useSelfUpdateCommunityMembership: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfUpdateCommunityMembership>>, Omit<SelfUpdateCommunityMembershipParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<CommunityMembership>, axios.AxiosError<ConnectedXMResponse<CommunityMembership>, any>, Omit<SelfUpdateCommunityMembershipParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2431
2435
|
|
|
2432
2436
|
interface UpdateSelfParams extends MutationParams {
|
|
2433
2437
|
username?: string;
|
|
@@ -2455,7 +2459,7 @@ interface UpdateSelfParams extends MutationParams {
|
|
|
2455
2459
|
website?: string | null;
|
|
2456
2460
|
}
|
|
2457
2461
|
declare const UpdateSelf: ({ clientApiParams, queryClient, ...params }: UpdateSelfParams) => Promise<ConnectedXMResponse<Self>>;
|
|
2458
|
-
declare const useUpdateSelf: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelf>>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Self>,
|
|
2462
|
+
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>;
|
|
2459
2463
|
|
|
2460
2464
|
interface UpdateListing {
|
|
2461
2465
|
eventType: keyof typeof EventType;
|
|
@@ -2486,7 +2490,7 @@ interface UpdateSelfEventListingParams extends MutationParams {
|
|
|
2486
2490
|
base64?: any;
|
|
2487
2491
|
}
|
|
2488
2492
|
declare const UpdateSelfEventListing: ({ eventId, event, base64, clientApiParams, queryClient, }: UpdateSelfEventListingParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2489
|
-
declare const useUpdateSelfEventListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListing>>, Omit<UpdateSelfEventListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>,
|
|
2493
|
+
declare const useUpdateSelfEventListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListing>>, Omit<UpdateSelfEventListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateSelfEventListingParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2490
2494
|
|
|
2491
2495
|
interface UpdateSelfEventListingSessionParams extends MutationParams {
|
|
2492
2496
|
eventId: string;
|
|
@@ -2494,7 +2498,7 @@ interface UpdateSelfEventListingSessionParams extends MutationParams {
|
|
|
2494
2498
|
sessionId: string;
|
|
2495
2499
|
}
|
|
2496
2500
|
declare const UpdateSelfEventListingSession: ({ eventId, session, sessionId, clientApiParams, queryClient, }: UpdateSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2497
|
-
declare const useUpdateSelfEventListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListingSession>>, Omit<UpdateSelfEventListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>,
|
|
2501
|
+
declare const useUpdateSelfEventListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListingSession>>, Omit<UpdateSelfEventListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateSelfEventListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2498
2502
|
|
|
2499
2503
|
interface UpdateSelfEventListingSpeakerParams extends MutationParams {
|
|
2500
2504
|
eventId: string;
|
|
@@ -2503,20 +2507,20 @@ interface UpdateSelfEventListingSpeakerParams extends MutationParams {
|
|
|
2503
2507
|
buffer?: string;
|
|
2504
2508
|
}
|
|
2505
2509
|
declare const UpdateSelfEventListingSpeaker: ({ eventId, speaker, speakerId, buffer, clientApiParams, queryClient, }: UpdateSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2506
|
-
declare const useUpdateSelfEventListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListingSpeaker>>, Omit<UpdateSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>,
|
|
2510
|
+
declare const useUpdateSelfEventListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListingSpeaker>>, Omit<UpdateSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2507
2511
|
|
|
2508
2512
|
interface UpdateSelfImageParams extends MutationParams {
|
|
2509
2513
|
base64: string;
|
|
2510
2514
|
}
|
|
2511
2515
|
declare const UpdateSelfImage: ({ base64, clientApiParams, queryClient, }: UpdateSelfImageParams) => Promise<ConnectedXMResponse<Self>>;
|
|
2512
|
-
declare const useUpdateSelfImage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfImage>>, Omit<UpdateSelfImageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Self>,
|
|
2516
|
+
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>;
|
|
2513
2517
|
|
|
2514
2518
|
interface UpdateSelfLeadParams extends MutationParams {
|
|
2515
2519
|
leadId: string;
|
|
2516
2520
|
note: string;
|
|
2517
2521
|
}
|
|
2518
2522
|
declare const UpdateSelfLead: ({ leadId, note, clientApiParams, }: UpdateSelfLeadParams) => Promise<ConnectedXMResponse<Lead>>;
|
|
2519
|
-
declare const useUpdateSelfLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfLead>>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>,
|
|
2523
|
+
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>;
|
|
2520
2524
|
|
|
2521
2525
|
interface UpdateSelfNotificationPreferencesParams extends MutationParams {
|
|
2522
2526
|
newFollowerPush?: boolean;
|
|
@@ -2540,14 +2544,14 @@ interface UpdateSelfNotificationPreferencesParams extends MutationParams {
|
|
|
2540
2544
|
communityAnnouncementEmail?: boolean;
|
|
2541
2545
|
}
|
|
2542
2546
|
declare const UpdateSelfNotificationPreferences: ({ clientApiParams, queryClient, ...params }: UpdateSelfNotificationPreferencesParams) => Promise<ConnectedXMResponse<NotificationPreferences>>;
|
|
2543
|
-
declare const useUpdateSelfNotificationPreferences: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfNotificationPreferences>>, Omit<UpdateSelfNotificationPreferencesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<NotificationPreferences>,
|
|
2547
|
+
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>;
|
|
2544
2548
|
|
|
2545
2549
|
interface UpdateSelfPushDeviceParams extends MutationParams {
|
|
2546
2550
|
pushDeviceId: string;
|
|
2547
2551
|
pushDevice: PushDevice;
|
|
2548
2552
|
}
|
|
2549
2553
|
declare const UpdateSelfPushDevice: ({ pushDeviceId, pushDevice, clientApiParams, queryClient, }: UpdateSelfPushDeviceParams) => Promise<ConnectedXMResponse<PushDevice>>;
|
|
2550
|
-
declare const useUpdateSelfPushDevice: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfPushDevice>>, Omit<UpdateSelfPushDeviceParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<PushDevice>,
|
|
2554
|
+
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>;
|
|
2551
2555
|
|
|
2552
2556
|
interface CreateSupportTicketParams extends MutationParams {
|
|
2553
2557
|
type: "support" | "inquiry";
|
|
@@ -2557,13 +2561,13 @@ interface CreateSupportTicketParams extends MutationParams {
|
|
|
2557
2561
|
productId?: string;
|
|
2558
2562
|
}
|
|
2559
2563
|
declare const CreateSupportTicket: ({ type, email, request, eventId, productId, clientApiParams, }: CreateSupportTicketParams) => Promise<ConnectedXMResponse<SupportTicket>>;
|
|
2560
|
-
declare const useCreateSupportTicket: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSupportTicket>>, Omit<CreateSupportTicketParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<SupportTicket>,
|
|
2564
|
+
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>;
|
|
2561
2565
|
|
|
2562
2566
|
interface CreateTeamAccountParams extends MutationParams {
|
|
2563
2567
|
name: string;
|
|
2564
2568
|
email: string;
|
|
2565
2569
|
}
|
|
2566
2570
|
declare const CreateTeamAccount: ({ name, email, clientApiParams, }: CreateTeamAccountParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2567
|
-
declare const useCreateTeamAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateTeamAccount>>, Omit<CreateTeamAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>,
|
|
2571
|
+
declare const useCreateTeamAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateTeamAccount>>, Omit<CreateTeamAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<CreateTeamAccountParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2568
2572
|
|
|
2569
2573
|
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_COMMUNITIES_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddCommunityEvent, type AddCommunityEventParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventListingSession, type AddSelfEventListingSessionParams, AddSelfEventListingSpeaker, type AddSelfEventListingSpeakerParams, AddSelfEventListingSponsor, type AddSelfEventListingSponsorParams, AddSelfEventSession, type AddSelfEventSessionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseCommunity, type BaseCommunityMembership, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventPage, type BaseFaq, type BaseFaqSection, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistrationGuest, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, COMMUNITIES_QUERY_KEY, COMMUNITY_ACTIVITIES_QUERY_KEY, COMMUNITY_ANNOUNCEMENTS_QUERY_KEY, COMMUNITY_EVENTS_QUERY_KEY, COMMUNITY_MEMBERS_QUERY_KEY, COMMUNITY_MODERATORS_QUERY_KEY, COMMUNITY_QUERY_KEY, COMMUNITY_SPONSORS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, type CheckoutResponse, type ClientApiParams, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, CreateEventLead, type CreateEventLeadParams, type CreateEventListing, type CreateGuest, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfEventListing, type CreateSelfEventListingParams, CreateSelfEventRegistrationGuest, type CreateSelfEventRegistrationGuestParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeleteActivity, type DeleteActivityParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfEventRegistrationGuest, type DeleteSelfEventRegistrationGuestParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_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_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAllowlistMember, type EventListing, type EventListingSpeaker, type EventPage, EventSource, EventType, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountCommunities, type GetAccountCommunitiesProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetCommunities, type GetCommunitiesProps, GetCommunity, GetCommunityActivities, type GetCommunityActivitiesProps, GetCommunityAnnouncements, type GetCommunityAnnouncementsProps, GetCommunityEvents, type GetCommunityEventsProps, GetCommunityMembers, type GetCommunityMembersProps, GetCommunityModerators, type GetCommunityModeratorsProps, type GetCommunityProps, GetCommunitySponsors, type GetCommunitySponsorsProps, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfCommunityMembership, type GetSelfCommunityMembershipProps, GetSelfCommunityMemberships, type GetSelfCommunityMembershipsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, type GetSelfEventListingProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSponsor, type GetSponsorProps, GetSponsors, type GetSponsorsProps, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, type Lead, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification$1 as Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, type Purchase, type PushDevice, PushDeviceAppType, PushService, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationGuest, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, type RegistrationSectionQuestion, RegistrationStatus, RejectTransfer, type RejectTransferParams, RemoveCommunityEvent, type RemoveCommunityEventParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventListingSession, type RemoveSelfEventListingSessionParams, RemoveSelfEventListingSpeaker, type RemoveSelfEventListingSpeakerParams, RemoveSelfEventListingSponsor, type RemoveSelfEventListingSponsorParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationTicket, type RemoveSelfEventRegistrationTicketParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_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_COMMUNITY_MEMBERSHIPS_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIP_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_LISTINGS_QUERY_KEY, SELF_EVENT_LISTING_QUERY_KEY, SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_COMMUNITIES_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_COMMUNITIES_QUERY_DATA, SET_COMMUNITY_ACTIVITIES_QUERY_DATA, SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA, SET_COMMUNITY_EVENTS_QUERY_DATA, SET_COMMUNITY_MEMBERS_QUERY_DATA, SET_COMMUNITY_MODERATORS_QUERY_DATA, SET_COMMUNITY_QUERY_DATA, SET_COMMUNITY_SPONSORS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_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_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_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_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_COMMUNITY_MEMBERSHIP_QUERY_DATA, SET_SELF_EVENT_LISTING_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SPONSORS_QUERY_DATA, SET_SPONSOR_QUERY_DATA, SPONSORS_QUERY_KEY, SPONSOR_QUERY_KEY, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationTicket, type SelectSelfEventRegistrationTicketParams, type Self, SelfCheckinRegistration, type SelfCheckinRegistrationParams, SelfCreateActivity, type SelfCreateActivityParams, SelfJoinCommunity, type SelfJoinCommunityParams, SelfLeaveCommunity, type SelfLeaveCommunityParams, SelfUpdateCommunityMembership, type SelfUpdateCommunityMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateCommunity, type UpdateCommunityParams, type UpdateListing, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventListing, type UpdateSelfEventListingParams, UpdateSelfEventListingSession, type UpdateSelfEventListingSessionParams, UpdateSelfEventListingSpeaker, type UpdateSelfEventListingSpeakerParams, UpdateSelfEventRegistrationGuest, type UpdateSelfEventRegistrationGuestParams, UpdateSelfEventRegistrationGuestResponse, UpdateSelfEventRegistrationGuestResponseFile, type UpdateSelfEventRegistrationGuestResponseFileParams, type UpdateSelfEventRegistrationGuestResponseParams, UpdateSelfEventRegistrationGuestResponses, UpdateSelfEventRegistrationResponse, UpdateSelfEventRegistrationResponseFile, type UpdateSelfEventRegistrationResponseFileParams, type UpdateSelfEventRegistrationResponseParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, type User, isListing, isManagedCoupon, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeCommunity, isTypeCommunityMembership, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, setFirstPageData, useAcceptTransfer, useAddCommunityEvent, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventListingSession, useAddSelfEventListingSpeaker, useAddSelfEventListingSponsor, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureSelfEventRegistrationPayment, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateCommunityAnnouncement, useCreateEventLead, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfEventListing, useCreateSelfEventRegistrationGuest, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeleteActivity, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfEventRegistrationGuest, useDeleteSelfPushDevice, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityMembers, useGetCommunityModerators, useGetCommunitySponsors, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfCommunityMembership, useGetSelfCommunityMemberships, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useLeaveSelfChatChannel, useLikeActivity, useRegisterCancelledEventRegistration, useRejectTransfer, useRemoveCommunityEvent, useRemoveSelfDelegate, useRemoveSelfEventListingSession, useRemoveSelfEventListingSpeaker, useRemoveSelfEventListingSponsor, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationTicket, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationTicket, useSelfCheckinRegistration, useSelfCreateActivity, useSelfJoinCommunity, useSelfLeaveCommunity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventListing, useUpdateSelfEventListingSession, useUpdateSelfEventListingSpeaker, useUpdateSelfEventRegistrationGuest, useUpdateSelfEventRegistrationGuestResponse, useUpdateSelfEventRegistrationGuestResponseFile, useUpdateSelfEventRegistrationGuestResponses, useUpdateSelfEventRegistrationResponse, useUpdateSelfEventRegistrationResponseFile, useUpdateSelfEventRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
|