@connectedxm/client 9.0.1 → 10.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +274 -268
- package/dist/index.js +650 -807
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1704,44 +1704,6 @@ interface BaseLinkPreview {
|
|
|
1704
1704
|
}
|
|
1705
1705
|
interface LinkPreview extends BaseLinkPreview {
|
|
1706
1706
|
}
|
|
1707
|
-
interface BaseChatChannel {
|
|
1708
|
-
id: number;
|
|
1709
|
-
name: string | null;
|
|
1710
|
-
image: BaseImage | null;
|
|
1711
|
-
lastMessageAt: string | null;
|
|
1712
|
-
}
|
|
1713
|
-
interface ChatChannel extends BaseChatChannel {
|
|
1714
|
-
messages: BaseChatChannelMessage[];
|
|
1715
|
-
members: BaseChatChannelMember[];
|
|
1716
|
-
_count: {
|
|
1717
|
-
members: number;
|
|
1718
|
-
};
|
|
1719
|
-
}
|
|
1720
|
-
interface BaseChatChannelMessage {
|
|
1721
|
-
id: number;
|
|
1722
|
-
text: string;
|
|
1723
|
-
html: string;
|
|
1724
|
-
type: "user" | "system";
|
|
1725
|
-
accountId: string;
|
|
1726
|
-
account: BaseAccount | null;
|
|
1727
|
-
createdAt: string;
|
|
1728
|
-
updatedAt: string;
|
|
1729
|
-
}
|
|
1730
|
-
interface ChatChannelMessage extends BaseChatChannelMessage {
|
|
1731
|
-
}
|
|
1732
|
-
interface BaseChatChannelMember {
|
|
1733
|
-
accountId: string;
|
|
1734
|
-
account: BaseAccount;
|
|
1735
|
-
role: "moderator" | "member";
|
|
1736
|
-
read: boolean;
|
|
1737
|
-
notifications: boolean;
|
|
1738
|
-
createdAt: string;
|
|
1739
|
-
updatedAt: string;
|
|
1740
|
-
}
|
|
1741
|
-
interface ChatChannelMember extends BaseChatChannelMember {
|
|
1742
|
-
channelId: number;
|
|
1743
|
-
channel: ChatChannel;
|
|
1744
|
-
}
|
|
1745
1707
|
declare enum SeriesQuestionType {
|
|
1746
1708
|
text = "text",
|
|
1747
1709
|
textarea = "textarea",
|
|
@@ -2022,62 +1984,60 @@ interface BaseFile {
|
|
|
2022
1984
|
}
|
|
2023
1985
|
interface File extends BaseFile {
|
|
2024
1986
|
}
|
|
2025
|
-
declare enum ThreadCircleAccountRole {
|
|
2026
|
-
member = "member",
|
|
2027
|
-
manager = "manager",
|
|
2028
|
-
invited = "invited"
|
|
2029
|
-
}
|
|
2030
|
-
interface BaseThreadCircle {
|
|
2031
|
-
id: string;
|
|
2032
|
-
name: string;
|
|
2033
|
-
createdAt: string;
|
|
2034
|
-
updatedAt: string;
|
|
2035
|
-
}
|
|
2036
|
-
interface ThreadCircle extends BaseThreadCircle {
|
|
2037
|
-
}
|
|
2038
|
-
interface BaseThreadCircleAccount {
|
|
2039
|
-
accountId: string;
|
|
2040
|
-
role: ThreadCircleAccountRole;
|
|
2041
|
-
account: BaseAccount;
|
|
2042
|
-
}
|
|
2043
|
-
interface ThreadCircleAccount extends BaseThreadCircleAccount {
|
|
2044
|
-
}
|
|
2045
1987
|
interface BaseThread {
|
|
2046
1988
|
id: string;
|
|
2047
1989
|
subject: string;
|
|
2048
1990
|
image: BaseImage | null;
|
|
2049
1991
|
lastMessageAt: string | null;
|
|
1992
|
+
lastMessage: string | null;
|
|
2050
1993
|
}
|
|
2051
1994
|
declare enum ThreadMessageType {
|
|
2052
1995
|
user = "user",
|
|
2053
1996
|
bot = "bot",
|
|
2054
1997
|
system = "system"
|
|
2055
1998
|
}
|
|
2056
|
-
interface
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
}
|
|
2062
|
-
interface BaseThreadViewer {
|
|
1999
|
+
interface BaseThreadAccount {
|
|
2000
|
+
id: string;
|
|
2001
|
+
threadId: string;
|
|
2002
|
+
accountId: string;
|
|
2003
|
+
account: BaseAccount;
|
|
2063
2004
|
lastReadAt: string | null;
|
|
2005
|
+
typingAt: string | null;
|
|
2064
2006
|
notifications: boolean;
|
|
2065
|
-
|
|
2007
|
+
blocked: boolean;
|
|
2008
|
+
createdAt: string;
|
|
2009
|
+
updatedAt: string;
|
|
2066
2010
|
}
|
|
2067
|
-
interface
|
|
2068
|
-
|
|
2011
|
+
interface ThreadAccount extends BaseThreadAccount {
|
|
2012
|
+
}
|
|
2013
|
+
interface Thread extends BaseThread {
|
|
2014
|
+
accounts: ThreadAccount[];
|
|
2015
|
+
_count?: {
|
|
2016
|
+
messages?: number;
|
|
2017
|
+
};
|
|
2018
|
+
}
|
|
2019
|
+
interface BaseThreadMessageRead {
|
|
2020
|
+
id: string;
|
|
2021
|
+
threadId: string;
|
|
2022
|
+
messageId: string;
|
|
2023
|
+
accountId: string;
|
|
2024
|
+
readAt: string;
|
|
2025
|
+
}
|
|
2026
|
+
interface ThreadMessageRead extends BaseThreadMessageRead {
|
|
2069
2027
|
}
|
|
2070
2028
|
interface BaseThreadMessage {
|
|
2071
2029
|
id: string;
|
|
2072
2030
|
type: ThreadMessageType;
|
|
2073
2031
|
editedAt: string | null;
|
|
2032
|
+
deletedAt?: string | null;
|
|
2074
2033
|
body: string;
|
|
2075
2034
|
sentAt: string;
|
|
2076
2035
|
accountId: string;
|
|
2077
|
-
|
|
2036
|
+
threadAccount: BaseThreadAccount | null;
|
|
2078
2037
|
}
|
|
2079
2038
|
interface ThreadMessage extends BaseThreadMessage {
|
|
2080
2039
|
reactions: BaseThreadMessageReaction[];
|
|
2040
|
+
reads?: ThreadMessageRead[];
|
|
2081
2041
|
}
|
|
2082
2042
|
interface BaseThreadMessageEntity {
|
|
2083
2043
|
type: ActivityEntityType;
|
|
@@ -3733,53 +3693,6 @@ interface UpdateSelfLeadParams extends MutationParams {
|
|
|
3733
3693
|
declare const UpdateSelfLead: ({ leadId, lead, queryClient, clientApiParams, }: UpdateSelfLeadParams) => Promise<ConnectedXMResponse<Lead>>;
|
|
3734
3694
|
declare const useUpdateSelfLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfLead>>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3735
3695
|
|
|
3736
|
-
interface AddSelfChatChannelMemberParams extends MutationParams {
|
|
3737
|
-
channelId: string;
|
|
3738
|
-
accountId: string;
|
|
3739
|
-
}
|
|
3740
|
-
declare const AddSelfChatChannelMember: ({ channelId, accountId, clientApiParams, queryClient, }: AddSelfChatChannelMemberParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
|
|
3741
|
-
declare const useAddSelfChatChannelMember: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfChatChannelMember>>, Omit<AddSelfChatChannelMemberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<AddSelfChatChannelMemberParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3742
|
-
|
|
3743
|
-
interface CreateSelfChatChannelParams extends MutationParams {
|
|
3744
|
-
name: string;
|
|
3745
|
-
accountIds: string[];
|
|
3746
|
-
}
|
|
3747
|
-
declare const CreateSelfChatChannel: ({ name, accountIds, clientApiParams, queryClient, }: CreateSelfChatChannelParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
|
|
3748
|
-
declare const useCreateSelfChatChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfChatChannel>>, Omit<CreateSelfChatChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateSelfChatChannelParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3749
|
-
|
|
3750
|
-
interface CreateSelfChatChannelMessageParams extends MutationParams {
|
|
3751
|
-
channelId: string;
|
|
3752
|
-
text: string;
|
|
3753
|
-
}
|
|
3754
|
-
declare const CreateSelfChatChannelMessage: ({ channelId, text, queryClient, clientApiParams, }: CreateSelfChatChannelMessageParams) => Promise<ConnectedXMResponse<ChatChannelMessage>>;
|
|
3755
|
-
declare const useCreateSelfChatChannelMessage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfChatChannelMessage>>, Omit<CreateSelfChatChannelMessageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMessage>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateSelfChatChannelMessageParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3756
|
-
|
|
3757
|
-
interface DeleteSelfChatChannelParams extends MutationParams {
|
|
3758
|
-
channelId: string;
|
|
3759
|
-
}
|
|
3760
|
-
declare const DeleteSelfChatChannel: ({ channelId, clientApiParams, queryClient, }: DeleteSelfChatChannelParams) => Promise<ConnectedXMResponse<null>>;
|
|
3761
|
-
declare const useDeleteSelfChatChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfChatChannel>>, Omit<DeleteSelfChatChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteSelfChatChannelParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3762
|
-
|
|
3763
|
-
interface DeleteSelfChatChannelMessageParams extends MutationParams {
|
|
3764
|
-
channelId: string;
|
|
3765
|
-
messageId: string;
|
|
3766
|
-
}
|
|
3767
|
-
declare const DeleteSelfChatChannelMessage: ({ channelId, messageId, clientApiParams, queryClient, }: DeleteSelfChatChannelMessageParams) => Promise<ConnectedXMResponse<null>>;
|
|
3768
|
-
declare const useDeleteSelfChatChannelMessage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfChatChannelMessage>>, Omit<DeleteSelfChatChannelMessageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteSelfChatChannelMessageParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3769
|
-
|
|
3770
|
-
interface LeaveSelfChatChannelParams extends MutationParams {
|
|
3771
|
-
channelId: string;
|
|
3772
|
-
}
|
|
3773
|
-
declare const LeaveSelfChatChannel: ({ channelId, clientApiParams, queryClient, }: LeaveSelfChatChannelParams) => Promise<ConnectedXMResponse<null>>;
|
|
3774
|
-
declare const useLeaveSelfChatChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof LeaveSelfChatChannel>>, Omit<LeaveSelfChatChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<LeaveSelfChatChannelParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3775
|
-
|
|
3776
|
-
interface UpdateSelfChatChannelNotificationsParams extends MutationParams {
|
|
3777
|
-
channelId: string;
|
|
3778
|
-
notifications: boolean;
|
|
3779
|
-
}
|
|
3780
|
-
declare const UpdateSelfChatChannelNotifications: ({ channelId, notifications, clientApiParams, queryClient, }: UpdateSelfChatChannelNotificationsParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
|
|
3781
|
-
declare const useUpdateSelfChatChannelNotifications: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfChatChannelNotifications>>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3782
|
-
|
|
3783
3696
|
interface AddSelfEventSessionParams extends MutationParams {
|
|
3784
3697
|
eventId: string;
|
|
3785
3698
|
sessionId: string;
|
|
@@ -4498,6 +4411,14 @@ interface DeleteStreamChatMessageParams extends MutationParams {
|
|
|
4498
4411
|
declare const DeleteStreamChatMessage: ({ streamId, sessionId, messageId, clientApiParams, queryClient, }: DeleteStreamChatMessageParams) => Promise<ConnectedXMResponse<null>>;
|
|
4499
4412
|
declare const useDeleteStreamChatMessage: (options?: MutationOptions<Awaited<ReturnType<typeof DeleteStreamChatMessage>>, Omit<DeleteStreamChatMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteStreamChatMessageParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4500
4413
|
|
|
4414
|
+
interface CreateThreadParams extends MutationParams {
|
|
4415
|
+
accountIds: string[];
|
|
4416
|
+
subject?: string;
|
|
4417
|
+
imageId?: string;
|
|
4418
|
+
}
|
|
4419
|
+
declare const CreateThread: ({ accountIds, subject, imageId, clientApiParams, queryClient, }: CreateThreadParams) => Promise<ConnectedXMResponse<Thread>>;
|
|
4420
|
+
declare const useCreateThread: (options?: MutationOptions<Awaited<ReturnType<typeof CreateThread>>, Omit<CreateThreadParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateThreadParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4421
|
+
|
|
4501
4422
|
interface UpdateThreadParams extends MutationParams {
|
|
4502
4423
|
threadId: string;
|
|
4503
4424
|
subject?: string;
|
|
@@ -4506,6 +4427,26 @@ interface UpdateThreadParams extends MutationParams {
|
|
|
4506
4427
|
declare const UpdateThread: ({ threadId, subject, imageId, clientApiParams, queryClient, }: UpdateThreadParams) => Promise<ConnectedXMResponse<Thread>>;
|
|
4507
4428
|
declare const useUpdateThread: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateThread>>, Omit<UpdateThreadParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateThreadParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4508
4429
|
|
|
4430
|
+
interface MarkThreadReadParams extends MutationParams {
|
|
4431
|
+
threadId: string;
|
|
4432
|
+
messageId?: string;
|
|
4433
|
+
}
|
|
4434
|
+
declare const MarkThreadRead: ({ threadId, messageId, clientApiParams, }: MarkThreadReadParams) => Promise<ConnectedXMResponse<null>>;
|
|
4435
|
+
declare const useMarkThreadRead: (options?: MutationOptions<Awaited<ReturnType<typeof MarkThreadRead>>, Omit<MarkThreadReadParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<MarkThreadReadParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4436
|
+
|
|
4437
|
+
interface MarkThreadMessageReadParams extends MutationParams {
|
|
4438
|
+
threadId: string;
|
|
4439
|
+
messageId: string;
|
|
4440
|
+
}
|
|
4441
|
+
declare const MarkThreadMessageRead: ({ threadId, messageId, clientApiParams, }: MarkThreadMessageReadParams) => Promise<ConnectedXMResponse<null>>;
|
|
4442
|
+
declare const useMarkThreadMessageRead: (options?: MutationOptions<Awaited<ReturnType<typeof MarkThreadMessageRead>>, Omit<MarkThreadMessageReadParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<MarkThreadMessageReadParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4443
|
+
|
|
4444
|
+
interface SendThreadTypingParams extends MutationParams {
|
|
4445
|
+
threadId: string;
|
|
4446
|
+
}
|
|
4447
|
+
declare const SendThreadTyping: ({ threadId, clientApiParams, }: SendThreadTypingParams) => Promise<ConnectedXMResponse<null>>;
|
|
4448
|
+
declare const useSendThreadTyping: (options?: MutationOptions<Awaited<ReturnType<typeof SendThreadTyping>>, Omit<SendThreadTypingParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<SendThreadTypingParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4449
|
+
|
|
4509
4450
|
interface CreateThreadMessageParams extends MutationParams {
|
|
4510
4451
|
threadId: string;
|
|
4511
4452
|
body: string;
|
|
@@ -4545,36 +4486,6 @@ interface RemoveThreadMessageReactionParams extends MutationParams {
|
|
|
4545
4486
|
declare const RemoveThreadMessageReaction: ({ threadId, messageId, reactionId, clientApiParams, queryClient, }: RemoveThreadMessageReactionParams) => Promise<ConnectedXMResponse<null>>;
|
|
4546
4487
|
declare const useRemoveThreadMessageReaction: (options?: MutationOptions<Awaited<ReturnType<typeof RemoveThreadMessageReaction>>, Omit<RemoveThreadMessageReactionParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<RemoveThreadMessageReactionParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4547
4488
|
|
|
4548
|
-
interface UpdateThreadCircleParams extends MutationParams {
|
|
4549
|
-
circleId: string;
|
|
4550
|
-
name?: string;
|
|
4551
|
-
}
|
|
4552
|
-
declare const UpdateThreadCircle: ({ circleId, name, clientApiParams, queryClient, }: UpdateThreadCircleParams) => Promise<ConnectedXMResponse<ThreadCircle>>;
|
|
4553
|
-
declare const useUpdateThreadCircle: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateThreadCircle>>, Omit<UpdateThreadCircleParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadCircle>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateThreadCircleParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4554
|
-
|
|
4555
|
-
interface AddThreadCircleAccountParams extends MutationParams {
|
|
4556
|
-
circleId: string;
|
|
4557
|
-
accountId: string;
|
|
4558
|
-
role?: string;
|
|
4559
|
-
}
|
|
4560
|
-
declare const AddThreadCircleAccount: ({ circleId, accountId, role, clientApiParams, queryClient, }: AddThreadCircleAccountParams) => Promise<ConnectedXMResponse<ThreadCircleAccount>>;
|
|
4561
|
-
declare const useAddThreadCircleAccount: (options?: MutationOptions<Awaited<ReturnType<typeof AddThreadCircleAccount>>, Omit<AddThreadCircleAccountParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadCircleAccount>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<AddThreadCircleAccountParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4562
|
-
|
|
4563
|
-
interface UpdateThreadCircleAccountParams extends MutationParams {
|
|
4564
|
-
circleId: string;
|
|
4565
|
-
accountId: string;
|
|
4566
|
-
role?: string;
|
|
4567
|
-
}
|
|
4568
|
-
declare const UpdateThreadCircleAccount: ({ circleId, accountId, role, clientApiParams, queryClient, }: UpdateThreadCircleAccountParams) => Promise<ConnectedXMResponse<ThreadCircleAccount>>;
|
|
4569
|
-
declare const useUpdateThreadCircleAccount: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateThreadCircleAccount>>, Omit<UpdateThreadCircleAccountParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadCircleAccount>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateThreadCircleAccountParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4570
|
-
|
|
4571
|
-
interface DeleteThreadCircleAccountParams extends MutationParams {
|
|
4572
|
-
circleId: string;
|
|
4573
|
-
accountId: string;
|
|
4574
|
-
}
|
|
4575
|
-
declare const DeleteThreadCircleAccount: ({ circleId, accountId, clientApiParams, queryClient, }: DeleteThreadCircleAccountParams) => Promise<ConnectedXMResponse<null>>;
|
|
4576
|
-
declare const useDeleteThreadCircleAccount: (options?: MutationOptions<Awaited<ReturnType<typeof DeleteThreadCircleAccount>>, Omit<DeleteThreadCircleAccountParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<DeleteThreadCircleAccountParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4577
|
-
|
|
4578
4489
|
interface BlockIntegrationParams extends MutationParams {
|
|
4579
4490
|
type: keyof typeof IntegrationType;
|
|
4580
4491
|
}
|
|
@@ -4658,60 +4569,6 @@ interface CreateInterestParams extends MutationParams {
|
|
|
4658
4569
|
declare const CreateInterest: ({ interest, clientApiParams, }: CreateInterestParams) => Promise<ConnectedXMResponse<Interest>>;
|
|
4659
4570
|
declare const useCreateInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateInterest>>, Omit<CreateInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Interest>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<CreateInterestParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4660
4571
|
|
|
4661
|
-
interface WSChatMessageCreated {
|
|
4662
|
-
type: "chat.message.created";
|
|
4663
|
-
timestamp: number;
|
|
4664
|
-
body: {
|
|
4665
|
-
channelId: number;
|
|
4666
|
-
message: ChatChannelMessage;
|
|
4667
|
-
};
|
|
4668
|
-
}
|
|
4669
|
-
|
|
4670
|
-
interface WSChatMessageDeleted {
|
|
4671
|
-
type: "chat.message.deleted";
|
|
4672
|
-
timestamp: number;
|
|
4673
|
-
body: {
|
|
4674
|
-
channelId: number;
|
|
4675
|
-
messageId: number;
|
|
4676
|
-
};
|
|
4677
|
-
}
|
|
4678
|
-
|
|
4679
|
-
interface WSChatMessageUpdated {
|
|
4680
|
-
type: "chat.message.updated";
|
|
4681
|
-
timestamp: number;
|
|
4682
|
-
body: {
|
|
4683
|
-
channelId: number;
|
|
4684
|
-
message: ChatChannelMessage;
|
|
4685
|
-
};
|
|
4686
|
-
}
|
|
4687
|
-
|
|
4688
|
-
interface WSThreadMessageCreated {
|
|
4689
|
-
timestamp: number;
|
|
4690
|
-
type: "thread.message.created";
|
|
4691
|
-
body: {
|
|
4692
|
-
threadId: string;
|
|
4693
|
-
message: ThreadMessage;
|
|
4694
|
-
};
|
|
4695
|
-
}
|
|
4696
|
-
|
|
4697
|
-
interface WSThreadMessageUpdated {
|
|
4698
|
-
timestamp: number;
|
|
4699
|
-
type: "thread.message.updated";
|
|
4700
|
-
body: {
|
|
4701
|
-
threadId: string;
|
|
4702
|
-
message: ThreadMessage;
|
|
4703
|
-
};
|
|
4704
|
-
}
|
|
4705
|
-
|
|
4706
|
-
interface WSThreadMessageDeleted {
|
|
4707
|
-
timestamp: number;
|
|
4708
|
-
type: "thread.message.deleted";
|
|
4709
|
-
body: {
|
|
4710
|
-
threadId: string;
|
|
4711
|
-
messageId: string;
|
|
4712
|
-
};
|
|
4713
|
-
}
|
|
4714
|
-
|
|
4715
4572
|
interface WSStreamChatCreated {
|
|
4716
4573
|
timestamp: number;
|
|
4717
4574
|
type: "stream.chat.created";
|
|
@@ -4773,7 +4630,118 @@ interface HeartbeatMessage {
|
|
|
4773
4630
|
type: "heartbeat";
|
|
4774
4631
|
}
|
|
4775
4632
|
type SendWSMessage = StreamConnectMessage | StreamDisconnectMessage | HeartbeatMessage;
|
|
4776
|
-
|
|
4633
|
+
interface WSThreadMessageCreated {
|
|
4634
|
+
timestamp: number;
|
|
4635
|
+
type: "thread.message.created";
|
|
4636
|
+
body: {
|
|
4637
|
+
threadId: string;
|
|
4638
|
+
message: ThreadMessage;
|
|
4639
|
+
};
|
|
4640
|
+
}
|
|
4641
|
+
interface WSThreadMessageUpdated {
|
|
4642
|
+
timestamp: number;
|
|
4643
|
+
type: "thread.message.updated";
|
|
4644
|
+
body: {
|
|
4645
|
+
threadId: string;
|
|
4646
|
+
message: ThreadMessage;
|
|
4647
|
+
};
|
|
4648
|
+
}
|
|
4649
|
+
interface WSThreadMessageDeleted {
|
|
4650
|
+
timestamp: number;
|
|
4651
|
+
type: "thread.message.deleted";
|
|
4652
|
+
body: {
|
|
4653
|
+
threadId: string;
|
|
4654
|
+
messageId: string;
|
|
4655
|
+
};
|
|
4656
|
+
}
|
|
4657
|
+
interface WSThreadRead {
|
|
4658
|
+
timestamp: number;
|
|
4659
|
+
type: "thread.read";
|
|
4660
|
+
body: {
|
|
4661
|
+
threadId: string;
|
|
4662
|
+
accountId: string;
|
|
4663
|
+
messageId?: string;
|
|
4664
|
+
readAt: string;
|
|
4665
|
+
};
|
|
4666
|
+
}
|
|
4667
|
+
interface WSThreadTyping {
|
|
4668
|
+
timestamp: number;
|
|
4669
|
+
type: "thread.typing";
|
|
4670
|
+
body: {
|
|
4671
|
+
threadId: string;
|
|
4672
|
+
accountId: string;
|
|
4673
|
+
typingAt: string;
|
|
4674
|
+
};
|
|
4675
|
+
}
|
|
4676
|
+
type ReceivedWSMessage = WSThreadMessageCreated | WSThreadMessageUpdated | WSThreadMessageDeleted | WSThreadRead | WSThreadTyping | WSStreamChatCreated | WSStreamChatDeleted | WSStreamChatUpdated | WSStreamConnected | WSStreamDisconnected | WSPulseMessage;
|
|
4677
|
+
|
|
4678
|
+
/**
|
|
4679
|
+
* Typed event payload map for socket events broadcast by the backend.
|
|
4680
|
+
*
|
|
4681
|
+
* Add new entries here (NOT via `any`) when introducing new event types.
|
|
4682
|
+
*/
|
|
4683
|
+
interface WSEventPayloadMap {
|
|
4684
|
+
"thread.message.created": {
|
|
4685
|
+
threadId: string;
|
|
4686
|
+
message: ThreadMessage;
|
|
4687
|
+
};
|
|
4688
|
+
"thread.message.updated": {
|
|
4689
|
+
threadId: string;
|
|
4690
|
+
message: ThreadMessage;
|
|
4691
|
+
};
|
|
4692
|
+
"thread.message.deleted": {
|
|
4693
|
+
threadId: string;
|
|
4694
|
+
messageId: string;
|
|
4695
|
+
};
|
|
4696
|
+
"thread.read": {
|
|
4697
|
+
threadId: string;
|
|
4698
|
+
accountId: string;
|
|
4699
|
+
messageId?: string;
|
|
4700
|
+
readAt: string;
|
|
4701
|
+
};
|
|
4702
|
+
"thread.typing": {
|
|
4703
|
+
threadId: string;
|
|
4704
|
+
accountId: string;
|
|
4705
|
+
typingAt: string;
|
|
4706
|
+
};
|
|
4707
|
+
}
|
|
4708
|
+
type WSEventName = keyof WSEventPayloadMap;
|
|
4709
|
+
type WSEventHandler<E extends WSEventName> = (payload: WSEventPayloadMap[E]) => void;
|
|
4710
|
+
/**
|
|
4711
|
+
* Loose envelope describing what comes off the wire. The backend may put the
|
|
4712
|
+
* event name on `event` (new style) or `type` (legacy) - we accept both.
|
|
4713
|
+
*/
|
|
4714
|
+
interface WSEnvelope {
|
|
4715
|
+
event?: string;
|
|
4716
|
+
type?: string;
|
|
4717
|
+
body?: any;
|
|
4718
|
+
payload?: any;
|
|
4719
|
+
[key: string]: any;
|
|
4720
|
+
}
|
|
4721
|
+
/**
|
|
4722
|
+
* Typed pub/sub for socket events.
|
|
4723
|
+
*
|
|
4724
|
+
* Consumers `register(event, handler)` and receive a disposer. Producers
|
|
4725
|
+
* `dispatch(envelope)` and the bus routes it to the handlers registered for
|
|
4726
|
+
* the matching event name.
|
|
4727
|
+
*/
|
|
4728
|
+
declare class WSMessageBus {
|
|
4729
|
+
private handlers;
|
|
4730
|
+
register<E extends WSEventName>(event: E, handler: WSEventHandler<E>): () => void;
|
|
4731
|
+
dispatch(envelope: WSEnvelope | null | undefined): void;
|
|
4732
|
+
clear(): void;
|
|
4733
|
+
}
|
|
4734
|
+
interface WSMessageBusProviderProps {
|
|
4735
|
+
bus?: WSMessageBus;
|
|
4736
|
+
children: React.ReactNode;
|
|
4737
|
+
}
|
|
4738
|
+
declare const WSMessageBusProvider: ({ bus, children, }: WSMessageBusProviderProps) => React.JSX.Element;
|
|
4739
|
+
declare const useWSMessageBus: () => WSMessageBus;
|
|
4740
|
+
/**
|
|
4741
|
+
* Register a typed handler for a socket event. Disposes on unmount or when
|
|
4742
|
+
* `event`/`handler` identity changes.
|
|
4743
|
+
*/
|
|
4744
|
+
declare const useWSEvent: <E extends WSEventName>(event: E, handler: WSEventHandler<E>) => void;
|
|
4777
4745
|
|
|
4778
4746
|
interface ConnectedXMClientContextState {
|
|
4779
4747
|
queryClient: QueryClient;
|
|
@@ -4796,7 +4764,7 @@ interface ConnectedProviderProps extends Omit<ConnectedXMClientContextState, "se
|
|
|
4796
4764
|
useWebSocket: typeof UseWebSocket;
|
|
4797
4765
|
children: React.ReactNode;
|
|
4798
4766
|
}
|
|
4799
|
-
declare const ConnectedProvider: (
|
|
4767
|
+
declare const ConnectedProvider: (props: ConnectedProviderProps) => React.JSX.Element;
|
|
4800
4768
|
|
|
4801
4769
|
declare const useConnected: () => ConnectedXMClientContextState;
|
|
4802
4770
|
|
|
@@ -4808,8 +4776,6 @@ declare const useIsEventRegistered: (eventId: string) => boolean;
|
|
|
4808
4776
|
|
|
4809
4777
|
declare const useIsChannelSubscribed: (channelId?: string) => boolean;
|
|
4810
4778
|
|
|
4811
|
-
declare const AppendInfiniteQuery: <TData>(queryClient: QueryClient, key: QueryKey, newData: any) => void;
|
|
4812
|
-
|
|
4813
4779
|
declare const ERR_NOT_GROUP_MEMBER = 453;
|
|
4814
4780
|
declare const ERR_NOT_EVENT_REGISTERED = 454;
|
|
4815
4781
|
declare const ERR_REGISTRATION_UNAVAILABLE = 455;
|
|
@@ -4831,6 +4797,30 @@ declare function MergeInfinitePages<TData>(data: InfiniteData<ConnectedXMRespons
|
|
|
4831
4797
|
|
|
4832
4798
|
declare const isUUID: (id: string) => boolean;
|
|
4833
4799
|
|
|
4800
|
+
type Identified = {
|
|
4801
|
+
id: string | number;
|
|
4802
|
+
};
|
|
4803
|
+
/** Prepend an item to the first page of an infinite query. */
|
|
4804
|
+
declare const prepend: <TData>(queryClient: QueryClient, key: QueryKey, item: TData) => void;
|
|
4805
|
+
/** Replace an item by id wherever it appears across pages. */
|
|
4806
|
+
declare const update$1: <TData extends Identified>(queryClient: QueryClient, key: QueryKey, item: TData) => void;
|
|
4807
|
+
/** Remove an item by id wherever it appears across pages. */
|
|
4808
|
+
declare const remove$1: <TData extends Identified>(queryClient: QueryClient, key: QueryKey, itemId: TData["id"]) => void;
|
|
4809
|
+
|
|
4810
|
+
declare const InfiniteQueryHelpers_prepend: typeof prepend;
|
|
4811
|
+
declare namespace InfiniteQueryHelpers {
|
|
4812
|
+
export { InfiniteQueryHelpers_prepend as prepend, remove$1 as remove, update$1 as update };
|
|
4813
|
+
}
|
|
4814
|
+
|
|
4815
|
+
declare const update: <TData>(queryClient: QueryClient, key: QueryKey, updater: (draft: TData) => void | TData) => void;
|
|
4816
|
+
declare const remove: (queryClient: QueryClient, key: QueryKey) => void;
|
|
4817
|
+
|
|
4818
|
+
declare const SingleQueryHelpers_remove: typeof remove;
|
|
4819
|
+
declare const SingleQueryHelpers_update: typeof update;
|
|
4820
|
+
declare namespace SingleQueryHelpers {
|
|
4821
|
+
export { SingleQueryHelpers_remove as remove, SingleQueryHelpers_update as update };
|
|
4822
|
+
}
|
|
4823
|
+
|
|
4834
4824
|
interface SingleQueryParams {
|
|
4835
4825
|
clientApiParams: ClientApiParams;
|
|
4836
4826
|
}
|
|
@@ -6046,37 +6036,6 @@ interface GetSelfLeadCountsProps extends SingleQueryParams {
|
|
|
6046
6036
|
declare const GetSelfLeadCounts: ({ clientApiParams, }: GetSelfLeadCountsProps) => Promise<ConnectedXMResponse<Record<LeadStatus, number>>>;
|
|
6047
6037
|
declare const useGetSelfLeadCounts: (options?: SingleQueryOptions<ReturnType<typeof GetSelfLeadCounts>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Record<LeadStatus, number>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
6048
6038
|
|
|
6049
|
-
declare const SELF_CHAT_CHANNEL_QUERY_KEY: (channelId: string) => QueryKey;
|
|
6050
|
-
declare const SET_SELF_CHAT_CHANNEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNEL_QUERY_KEY>, response: Updater<any, Awaited<ReturnType<typeof GetSelfChatChannel>>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
6051
|
-
interface GetSelfChatChannelProps extends SingleQueryParams {
|
|
6052
|
-
channelId: string;
|
|
6053
|
-
}
|
|
6054
|
-
declare const GetSelfChatChannel: ({ channelId, clientApiParams, }: GetSelfChatChannelProps) => Promise<ConnectedXMResponse<ChatChannelMember>>;
|
|
6055
|
-
declare const useGetSelfChatChannel: (channelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfChatChannel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
6056
|
-
|
|
6057
|
-
declare const SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY: (channelId: string) => QueryKey;
|
|
6058
|
-
declare const SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannelMembers>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
6059
|
-
interface GetSelfChatChannelMembersProps extends InfiniteQueryParams {
|
|
6060
|
-
channelId: string;
|
|
6061
|
-
}
|
|
6062
|
-
declare const GetSelfChatChannelMembers: ({ channelId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfChatChannelMembersProps) => Promise<ConnectedXMResponse<ChatChannelMember[]>>;
|
|
6063
|
-
declare const useGetSelfChatChannelMembers: (channelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannelMembers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChatChannelMember[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
6064
|
-
|
|
6065
|
-
declare const SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY: (channelId: string) => QueryKey;
|
|
6066
|
-
declare const SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannelMessages>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
6067
|
-
interface GetSelfChatChannelMessagesProps extends InfiniteQueryParams {
|
|
6068
|
-
channelId: string;
|
|
6069
|
-
}
|
|
6070
|
-
declare const GetSelfChatChannelMessages: ({ channelId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, }: GetSelfChatChannelMessagesProps) => Promise<ConnectedXMResponse<ChatChannelMessage[]>>;
|
|
6071
|
-
declare const useGetSelfChatChannelMessages: (channelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannelMessages>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChatChannelMessage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
6072
|
-
|
|
6073
|
-
declare const SELF_CHAT_CHANNELS_QUERY_KEY: () => QueryKey;
|
|
6074
|
-
declare const SET_SELF_CHAT_CHANNELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannels>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
6075
|
-
interface GetSelfChatChannelsProps extends InfiniteQueryParams {
|
|
6076
|
-
}
|
|
6077
|
-
declare const GetSelfChatChannels: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfChatChannelsProps) => Promise<ConnectedXMResponse<ChatChannelMember[]>>;
|
|
6078
|
-
declare const useGetSelfChatChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChatChannelMember[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
6079
|
-
|
|
6080
6039
|
declare const SELF_QUERY_KEY: (ignoreExecuteAs?: boolean) => QueryKey;
|
|
6081
6040
|
declare const SET_SELF_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelf>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
6082
6041
|
interface GetSelfProps extends SingleQueryParams {
|
|
@@ -6301,39 +6260,11 @@ declare const GetStreamChatMessages: ({ streamId, sessionId, cursor, pageSize, c
|
|
|
6301
6260
|
declare const useGetStreamChatMessages: (streamId?: string, sessionId?: string, params?: Omit<CursorQueryParams, "cursor" | "queryClient" | "clientApiParams">, options?: CursorQueryOptions<Awaited<ReturnType<typeof GetStreamChatMessages>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<StreamChatMessage[]>, string | number | null>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
6302
6261
|
|
|
6303
6262
|
declare const THREADS_QUERY_KEY: () => QueryKey;
|
|
6304
|
-
declare const
|
|
6305
|
-
|
|
6306
|
-
interface GetThreadCirclesProps extends InfiniteQueryParams {
|
|
6307
|
-
type?: string;
|
|
6308
|
-
}
|
|
6309
|
-
declare const GetThreadCircles: ({ pageParam, pageSize, orderBy, search, type, clientApiParams, }: GetThreadCirclesProps) => Promise<ConnectedXMResponse<ThreadCircle[]>>;
|
|
6310
|
-
declare const useGetThreadCircles: (params?: Omit<GetThreadCirclesProps, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreadCircles>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ThreadCircle[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
6311
|
-
|
|
6312
|
-
declare const THREAD_CIRCLE_QUERY_KEY: (circleId: string) => QueryKey;
|
|
6313
|
-
declare const SET_THREAD_CIRCLE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_CIRCLE_QUERY_KEY>, response: Updater<any, Awaited<ReturnType<typeof GetThreadCircle>>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
6314
|
-
interface GetThreadCircleProps extends SingleQueryParams {
|
|
6315
|
-
circleId: string;
|
|
6316
|
-
}
|
|
6317
|
-
declare const GetThreadCircle: ({ circleId, clientApiParams, }: GetThreadCircleProps) => Promise<ConnectedXMResponse<ThreadCircle>>;
|
|
6318
|
-
declare const useGetThreadCircle: (circleId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadCircle>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ThreadCircle>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
6319
|
-
|
|
6320
|
-
declare const THREAD_CIRCLE_ACCOUNTS_QUERY_KEY: (circleId: string) => QueryKey;
|
|
6321
|
-
declare const SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_CIRCLE_ACCOUNTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreadCircleAccounts>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
6322
|
-
interface GetThreadCircleAccountsProps extends InfiniteQueryParams {
|
|
6323
|
-
circleId: string;
|
|
6324
|
-
role?: string;
|
|
6325
|
-
}
|
|
6326
|
-
declare const GetThreadCircleAccounts: ({ circleId, pageParam, pageSize, orderBy, search, role, clientApiParams, }: GetThreadCircleAccountsProps) => Promise<ConnectedXMResponse<ThreadCircleAccount[]>>;
|
|
6327
|
-
declare const useGetThreadCircleAccounts: (circleId?: string, params?: Omit<GetThreadCircleAccountsProps, "circleId" | "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreadCircleAccounts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ThreadCircleAccount[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
6328
|
-
|
|
6329
|
-
declare const THREAD_CIRCLE_ACCOUNT_QUERY_KEY: (circleId: string, accountId: string) => QueryKey;
|
|
6330
|
-
declare const SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_CIRCLE_ACCOUNT_QUERY_KEY>, response: Updater<any, Awaited<ReturnType<typeof GetThreadCircleAccount>>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
6331
|
-
interface GetThreadCircleAccountProps extends SingleQueryParams {
|
|
6332
|
-
circleId: string;
|
|
6333
|
-
accountId: string;
|
|
6263
|
+
declare const SET_THREADS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREADS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreads>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
6264
|
+
interface GetThreadsProps extends InfiniteQueryParams {
|
|
6334
6265
|
}
|
|
6335
|
-
declare const
|
|
6336
|
-
declare const
|
|
6266
|
+
declare const GetThreads: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetThreadsProps) => Promise<ConnectedXMResponse<Thread[]>>;
|
|
6267
|
+
declare const useGetThreads: (params?: Omit<GetThreadsProps, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreads>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Thread[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
6337
6268
|
|
|
6338
6269
|
declare const THREAD_QUERY_KEY: (threadId: string, accountId?: string) => QueryKey;
|
|
6339
6270
|
declare const SET_THREAD_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_QUERY_KEY>, response: Updater<any, Awaited<ReturnType<typeof GetThread>>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
@@ -6343,6 +6274,14 @@ interface GetThreadProps extends SingleQueryParams {
|
|
|
6343
6274
|
declare const GetThread: ({ threadId, clientApiParams, }: GetThreadProps) => Promise<ConnectedXMResponse<Thread>>;
|
|
6344
6275
|
declare const useGetThread: (threadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThread>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
6345
6276
|
|
|
6277
|
+
declare const THREAD_ACCOUNTS_QUERY_KEY: (threadId: string) => QueryKey;
|
|
6278
|
+
declare const SET_THREAD_ACCOUNTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_ACCOUNTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreadAccounts>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
6279
|
+
interface GetThreadAccountsProps extends InfiniteQueryParams {
|
|
6280
|
+
threadId: string;
|
|
6281
|
+
}
|
|
6282
|
+
declare const GetThreadAccounts: ({ threadId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetThreadAccountsProps) => Promise<ConnectedXMResponse<ThreadAccount[]>>;
|
|
6283
|
+
declare const useGetThreadAccounts: (threadId?: string, params?: Omit<GetThreadAccountsProps, "threadId" | "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreadAccounts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ThreadAccount[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
6284
|
+
|
|
6346
6285
|
declare const THREAD_MESSAGES_QUERY_KEY: (threadId: string) => QueryKey;
|
|
6347
6286
|
declare const SET_THREAD_MESSAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_MESSAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreadMessages>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
6348
6287
|
interface GetThreadMessagesProps extends CursorQueryParams {
|
|
@@ -6516,4 +6455,71 @@ declare const GetSupportTicketActivityLog: ({ supportTicketId, pageParam, pageSi
|
|
|
6516
6455
|
*/
|
|
6517
6456
|
declare const useGetSupportTicketActivityLog: (supportTicketId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSupportTicketActivityLog>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<SupportTicketActivityLog[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
6518
6457
|
|
|
6519
|
-
export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_FOLLOW_STATS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountAttribute, AccountAttributeType, type AccountAttributeValue, type AccountShare, type AccountTier, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityLike, ActivityPreference, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddLogin, type AddLoginParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadCircleAccount, type AddThreadCircleAccountParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, ApplyEventRegistrationCoupon, type ApplyEventRegistrationCouponParams, type AttendeePackage, BENEFITS_QUERY_KEY, BOOKINGS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_SPACES_QUERY_KEY, BOOKING_PLACE_SPACE_QUERY_KEY, BOOKING_PLACE_SPACE_QUESTIONS_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountAttribute, type BaseAccountAttributeValue, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlock, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingQuestionResponse, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseBookingSpaceQuestion, type BaseBookingSpaceQuestionChoice, type BaseBookingSpaceQuestionChoiceTranslation, type BaseBookingSpaceQuestionTranslation, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionSection, type BaseEventSessionTime, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseLinkPreview, type BaseLogin, type BaseMatch, type BaseMeeting, type BaseNotification, type BaseOrgMembership, type BaseOrganization, type BasePass, type BasePassAddon, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntegration, type BasePaymentIntent, type BasePaymentLineItem, type BaseRegistrationFollowup, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationSection, type BaseRoom, type BaseRound, type BaseScan, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, type BaseSelf, type BaseSeries, type BaseSeriesQuestion, type BaseSeriesQuestionChoice, type BaseSeriesRegistration, type BaseSeriesRegistrationQuestionResponse, type BaseSession, type BaseSessionBookmark, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSupportTicket, type BaseSupportTicketActivityLog, type BaseSupportTicketMessage, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveySection, type BaseSurveySubmission, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadViewer, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseUser, type BaseVideo, type Benefit, type Block, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingQuestionResponse, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceQuestion, type BookingSpaceQuestionChoice, type BookingSpaceQuestionChoiceTranslation, type BookingSpaceQuestionTranslation, BookingSpaceQuestionType, type BookingSpaceSlot, BookmarkEventAttendeePassSession, type BookmarkEventAttendeePassSessionParams, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIBERS_QUERY_KEY, CONTENTS_EXPLORE_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, CancelEventAttendeePass, CancelEventAttendeePassAccess, type CancelEventAttendeePassAccessParams, type CancelEventAttendeePassParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelSeriesRegistration, type CancelSeriesRegistrationParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckLogin, type CheckLoginParams, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventAttendeePassActivation, type CompleteEventAttendeePassActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, ConnectedProvider, type ConnectedXMError, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type ContentsExploreData, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, type CreateChannelCollectionPayload, CreateChannelContent, type CreateChannelContentParams, type CreateChannelContentPayload, type CreateChannelParams, type CreateChannelPayload, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, type CreateContentGuestPayload, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingInput, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateLoginAccount, type CreateLoginAccountAccount, type CreateLoginAccountParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateStreamChatMessage, type CreateStreamChatMessageParams, CreateSupportTicket, CreateSupportTicketMessage, type CreateSupportTicketMessageParams, type CreateSupportTicketParams, CreateThreadMessage, type CreateThreadMessageParams, type CursorQueryOptions, type CursorQueryParams, DayOfWeek, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteStreamChatMessage, type DeleteStreamChatMessageParams, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_ADDRESS_VALIDATION_REQUIRED, ERR_BANNED_USER, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_NO_ACCOUNT_SELECTED, ERR_NO_BOOKING_FOUND, ERR_NO_PASS_SELECTED, ERR_PRIVATE_CHANNEL, ERR_REGISTER_THROUGH_SERIES, ERR_REGISTRATION_UNAVAILABLE, ERR_TIER_REQUIRED, EVENTS_EXPLORE_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_ATTENDEE_COUPONS_QUERY_KEY, EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, EVENT_ATTENDEE_COUPON_QUERY_KEY, EVENT_ATTENDEE_PASS_ACCESS_QUERY_KEY, EVENT_ATTENDEE_PASS_ACCESS_QUESTION_SECTIONS_QUERY_KEY, EVENT_ATTENDEE_PASS_ACTIVATIONS_QUERY_KEY, EVENT_ATTENDEE_PASS_ACTIVATION_QUERY_KEY, EVENT_ATTENDEE_PASS_ACTIVATION_SUMMARY_QUERY_KEY, EVENT_ATTENDEE_PASS_ADD_ONS_INTENT_QUERY_KEY, EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, EVENT_ATTENDEE_PASS_QUERY_KEY, EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY, EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY, EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, EVENT_ATTENDEE_PASS_SESSIONS_INTENT_QUERY_KEY, EVENT_ATTENDEE_PASS_SESSION_PASS_INTENT_QUERY_KEY, EVENT_ATTENDEE_PASS_SESSION_PASS_QUESTION_SECTIONS_QUERY_KEY, EVENT_ATTENDEE_PAYMENTS_QUERY_KEY, EVENT_ATTENDEE_PAYMENT_QUERY_KEY, EVENT_ATTENDEE_QUERY_KEY, EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY, EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, EVENT_CONFIG_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_GROUP_PASSES_INTENT_QUERY_KEY, EVENT_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_REGISTRATION_INTENT_QUERY_KEY, EVENT_REGISTRATION_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, EventActivationRewardType, EventActivationType, type EventAddOn, EventAgendaVisibility, type EventAllowlistMember, type EventConfig, type EventEmail, EventEmailType, type EventListing, type EventMediaItem, type EventPackage, type EventPackagePass, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, type EventSessionAccess, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionResponse, EventSessionQuestionType, type EventSessionSection, type EventSessionTime, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, type EventsExploreData, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_EXPLORE_QUERY_KEY, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowStats, type GetAccountFollowStatsProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, GetActivityLikes, type GetActivityLikesProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetBooking, GetBookingIntent, type GetBookingIntentProps, GetBookingPlace, type GetBookingPlaceProps, GetBookingPlaceSpace, type GetBookingPlaceSpaceProps, GetBookingPlaceSpaceSlots, type GetBookingPlaceSpaceSlotsProps, GetBookingPlaces, type GetBookingPlacesParams, GetBookingPlacesSpaces, type GetBookingPlacesSpacesProps, type GetBookingProps, GetBookingSpaceQuestions, type GetBookingSpaceQuestionsProps, GetBookings, type GetBookingsParams, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannelSubscribers, type GetChannelSubscribersParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContents, GetContentsExplore, type GetContentsExploreProps, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventAttendee, GetEventAttendeeCoupon, GetEventAttendeeCouponPasses, type GetEventAttendeeCouponPassesProps, type GetEventAttendeeCouponProps, GetEventAttendeeCoupons, type GetEventAttendeeCouponsProps, GetEventAttendeePass, GetEventAttendeePassAccess, type GetEventAttendeePassAccessProps, GetEventAttendeePassAccessQuestionSections, type GetEventAttendeePassAccessQuestionSectionsProps, GetEventAttendeePassActivation, type GetEventAttendeePassActivationProps, GetEventAttendeePassActivationSummary, type GetEventAttendeePassActivationSummaryProps, GetEventAttendeePassActivations, type GetEventAttendeePassActivationsProps, GetEventAttendeePassAddOns, GetEventAttendeePassAddOnsIntent, type GetEventAttendeePassAddOnsIntentProps, type GetEventAttendeePassAddOnsProps, type GetEventAttendeePassProps, GetEventAttendeePassQuestionFollowup, type GetEventAttendeePassQuestionFollowupProps, GetEventAttendeePassQuestionFollowups, type GetEventAttendeePassQuestionFollowupsProps, GetEventAttendeePassQuestionSections, type GetEventAttendeePassQuestionSectionsProps, GetEventAttendeePassSessionPassIntent, type GetEventAttendeePassSessionPassIntentProps, GetEventAttendeePassSessionPassQuestionSections, type GetEventAttendeePassSessionPassQuestionSectionsProps, GetEventAttendeePassSessionsIntent, type GetEventAttendeePassSessionsIntentProps, GetEventAttendeePayment, type GetEventAttendeePaymentProps, GetEventAttendeePayments, type GetEventAttendeePaymentsProps, type GetEventAttendeeProps, GetEventAttendeeTransferAccounts, type GetEventAttendeeTransferAccountsProps, GetEventAttendeeTransfersLogs, type GetEventAttendeeTransfersLogsProps, GetEventConfig, type GetEventConfigProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventGroupPassesIntent, type GetEventGroupPassesIntentProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventRegistration, GetEventRegistrationIntent, type GetEventRegistrationIntentProps, type GetEventRegistrationProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, GetEvents, GetEventsExplore, type GetEventsExploreProps, type GetEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsExplore, type GetGroupsExploreProps, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetImage, type GetImageProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterest, GetInterestActivities, type GetInterestActivitiesProps, type GetInterestProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, GetInvoicePayments, type GetInvoicePaymentsProps, type GetInvoiceProps, GetInvoices, type GetInvoicesProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetLogin, type GetLoginProps, GetMeeting, type GetMeetingProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, type GetOrganizationParams, GetPayment, type GetPaymentProps, GetPayments, type GetPaymentsProps, GetSearchList, type GetSearchListProps, GetSearchListValues, type GetSearchListValuesProps, GetSearchLists, type GetSearchListsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChannelSubscriber, type GetSelfChannelSubscriberParams, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingAttendees, type GetSelfEventListingAttendeesProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, GetSelfEventListingPass, type GetSelfEventListingPassProps, GetSelfEventListingPasses, type GetSelfEventListingPassesProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, GetSelfLeadCounts, type GetSelfLeadCountsProps, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfLogins, type GetSelfLoginsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, GetSelfProfile, type GetSelfProfileProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSeriesRegistration, GetSeriesRegistrationIntent, type GetSeriesRegistrationIntentProps, type GetSeriesRegistrationProps, GetSeriesRegistrationQuestions, type GetSeriesRegistrationQuestionsProps, GetStreamChatMessages, type GetStreamChatMessagesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSupportTicket, GetSupportTicketActivityLog, GetSupportTicketMessages, GetSupportTickets, GetSurvey, type GetSurveyProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetSurveys, type GetSurveysProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetUsernameAvailability, type GetUsernameAvailabilityProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, type GroupsExploreData, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_PAYMENTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InterestInput, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, JoinMeetingViaActivity, type JoinMeetingViaActivityParams, JoinMeetingViaBooking, type JoinMeetingViaBookingParams, JoinMeetingViaCode, type JoinMeetingViaCodeParams, JoinMeetingViaEvent, type JoinMeetingViaEventParams, JoinMeetingViaGroup, type JoinMeetingViaGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, LOGIN_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, LocationQuestionOption, type Login, MEETING_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type Meeting, MeetingType, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_QUERY_KEY, type Order, type Organization, OrganizationActivityPreference, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PaymentIntentSource, type PaymentLineItem, PaymentLineItemType, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationDraft, type RegistrationDraftPackage, type RegistrationDraftPass, type RegistrationDraftReservation, type RegistrationFollowup, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveLogin, type RemoveLoginParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, type Room, type Round, SEARCH_LISTS_QUERY_KEY, SEARCH_LIST_QUERY_KEY, SEARCH_LIST_VALUES_QUERY_KEY, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHANNEL_SUBSCRIBER_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_LEADS_QUERY_KEY, SELF_LEAD_COUNTS_QUERY_KEY, SELF_LEAD_QUERY_KEY, SELF_LOGINS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PROFILE_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SERIES_REGISTRATION_INTENT_QUERY_KEY, SERIES_REGISTRATION_QUERY_KEY, SERIES_REGISTRATION_QUESTIONS_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_SPACES_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUESTIONS_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CONTENTS_EXPLORE_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_EVENTS_EXPLORE_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_ATTENDEE_COUPON_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_ACCESS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_ACTIVATIONS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_ACTIVATION_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_SESSION_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_ATTENDEE_PAYMENT_QUERY_DATA, SET_EVENT_ATTENDEE_QUERY_DATA, SET_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_DATA, SET_EVENT_CONFIG_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_IMAGE_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_GROUPS_EXPLORE_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LOGINS_QUERY_DATA, SET_MEETING_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_PROFILE_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SELF_SURVEY_SUBMISSION_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SERIES_REGISTRATION_QUERY_DATA, SET_SERIES_REGISTRATION_QUESTIONS_QUERY_DATA, SET_STREAM_CHAT_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_ACTIVITY_LOG_QUERY_DATA, SET_SUPPORT_TICKET_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_SURVEYS_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_USERNAME_AVAILABILITY_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_CHAT_MESSAGES_QUERY_KEY, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_ACTIVITY_LOG_QUERY_KEY, SUPPORT_TICKET_MESSAGES_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, SURVEYS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SearchList, type SearchListValue, type SegmentInput, type Self, type SelfRelationships, type Series, type SeriesQuestion, SeriesQuestionType, type SeriesRegistration, type Session, SessionAccess, type SessionBookmark, type SessionLocation, type SessionPrice, SessionVisibility, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamChatMessage, type StreamInput, SubmitSurvey, type SubmitSurveyParams, type SupportTicket, type SupportTicketActivityLog, SupportTicketActivityLogSource, SupportTicketActivityLogType, type SupportTicketMessage, SupportTicketMessageSource, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, SurveyQuestionType, type SurveySection, SurveyStatus, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, TransferEventAttendeePass, type TransferEventAttendeePassParams, type TransferLog, USERNAME_AVAILABILITY_QUERY_KEY, UnblockAccount, type UnblockAccountParams, UnbookmarkEventAttendeePassSession, type UnbookmarkEventAttendeePassSessionParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateActivity, type UpdateActivityParams, UpdateBookingResponses, type UpdateBookingResponsesParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, type UpdateChannelCollectionPayload, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelContentPayload, type UpdateChannelParams, type UpdateChannelPayload, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, type UpdateContentGuestPayload, UpdateEventAttendeePassAccessResponses, type UpdateEventAttendeePassAccessResponsesParams, UpdateEventAttendeePassFollowup, type UpdateEventAttendeePassFollowupParams, UpdateEventAttendeePassResponses, type UpdateEventAttendeePassResponsesParams, UpdateEventAttendeePreferences, type UpdateEventAttendeePreferencesParams, UpdateEventRegistration, type UpdateEventRegistrationParams, UpdateEventSessionRegistrationResponses, type UpdateEventSessionRegistrationResponsesParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, type UpdateListingValues, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfGroupMembership, type UpdateSelfGroupMembershipParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSeriesRegistrationResponses, type UpdateSeriesRegistrationResponsesParams, UpdateStreamChatMessage, type UpdateStreamChatMessageParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateSurveySearchListResponse, type UpdateSurveySearchListResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, UpsertLinkPreview, type UpsertLinkPreviewParams, type UsernameAvailability, VIDEO_QUERY_KEY, VerifyLoginAccount, type VerifyLoginAccountParams, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddListingCoHost, useAddListingSponsor, useAddLogin, useAddSelfChatChannelMember, useAddSelfEventSession, useAddSelfInterests, useAddThreadCircleAccount, useAddThreadMessageReaction, useApplyEventRegistrationCoupon, useBlockAccount, useBlockIntegration, useBookmarkEventAttendeePassSession, useCancelBooking, useCancelEventAttendeePass, useCancelEventAttendeePassAccess, useCancelGroupInvitation, useCancelGroupRequest, useCancelSeriesRegistration, useCapturePaymentIntent, useCheckLogin, useCheckinListingAttendeePass, useCompleteEventAttendeePassActivation, useConfirmBooking, useConnected, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateLoginAccount, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateStreamChatMessage, useCreateSupportTicket, useCreateSupportTicketMessage, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteStreamChatMessage, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityLikes, useGetAdvertisement, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookingSpaceQuestions, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscribers, useGetChannels, useGetContents, useGetContentsExplore, useGetEvent, useGetEventActivities, useGetEventAttendee, useGetEventAttendeeCoupon, useGetEventAttendeeCouponPasses, useGetEventAttendeeCoupons, useGetEventAttendeePass, useGetEventAttendeePassAccess, useGetEventAttendeePassAccessQuestionSections, useGetEventAttendeePassActivation, useGetEventAttendeePassActivationSummary, useGetEventAttendeePassActivations, useGetEventAttendeePassAddOns, useGetEventAttendeePassAddOnsIntent, useGetEventAttendeePassQuestionFollowup, useGetEventAttendeePassQuestionFollowups, useGetEventAttendeePassQuestionSections, useGetEventAttendeePassSessionPassIntent, useGetEventAttendeePassSessionPassQuestionSections, useGetEventAttendeePassSessionsIntent, useGetEventAttendeePayment, useGetEventAttendeePayments, useGetEventAttendeeTransferAccounts, useGetEventAttendeeTransfersLogs, useGetEventConfig, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventGroupPassesIntent, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventRegistrants, useGetEventRegistration, useGetEventRegistrationIntent, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetEventsExplore, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsExplore, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetInvoicePayments, useGetInvoices, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingAttendeePassQuestionSections, useGetLogin, useGetMeeting, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetPayment, useGetPayments, useGetSearchList, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChannelSubscriber, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventSessions, useGetSelfEvents, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfLogins, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfProfile, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSeriesRegistration, useGetSeriesRegistrationIntent, useGetSeriesRegistrationQuestions, useGetStreamChatMessages, useGetSubscribedChannels, useGetSubscribedContents, useGetSupportTicket, useGetSupportTicketActivityLog, useGetSupportTicketMessages, useGetSupportTickets, useGetSurvey, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetSurveys, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetUsernameAvailability, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useJoinMeetingViaActivity, useJoinMeetingViaBooking, useJoinMeetingViaCode, useJoinMeetingViaEvent, useJoinMeetingViaGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveLogin, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useTransferEventAttendeePass, useUnblockAccount, useUnbookmarkEventAttendeePassSession, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateActivity, useUpdateBookingResponses, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateEventAttendeePassAccessResponses, useUpdateEventAttendeePassFollowup, useUpdateEventAttendeePassResponses, useUpdateEventAttendeePreferences, useUpdateEventRegistration, useUpdateEventSessionRegistrationResponses, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfGroupMembership, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSeriesRegistrationResponses, useUpdateStreamChatMessage, useUpdateSurveyResponse, useUpdateSurveySearchListResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage, useUpsertLinkPreview, useVerifyLoginAccount };
|
|
6458
|
+
/**
|
|
6459
|
+
* Subscribes to `thread.message.created` and:
|
|
6460
|
+
* - prepends the incoming message to the messages cache for the thread
|
|
6461
|
+
* - bumps the parent thread's `lastMessageAt` / `lastMessage` so list order
|
|
6462
|
+
* reflects the new activity
|
|
6463
|
+
*/
|
|
6464
|
+
declare const ThreadMessageCreatedEffect: () => null;
|
|
6465
|
+
|
|
6466
|
+
/**
|
|
6467
|
+
* Subscribes to `thread.message.updated` and patches the matching message in
|
|
6468
|
+
* the messages cache for the thread.
|
|
6469
|
+
*/
|
|
6470
|
+
declare const ThreadMessageUpdatedEffect: () => null;
|
|
6471
|
+
|
|
6472
|
+
/**
|
|
6473
|
+
* Subscribes to `thread.message.deleted` and removes the matching message
|
|
6474
|
+
* from the thread's messages cache.
|
|
6475
|
+
*/
|
|
6476
|
+
declare const ThreadMessageDeletedEffect: () => null;
|
|
6477
|
+
|
|
6478
|
+
/**
|
|
6479
|
+
* Subscribes to `thread.read` and updates the thread participants cache so
|
|
6480
|
+
* read-receipts surface in UI. When the reader is self, we also clear the
|
|
6481
|
+
* unread badge on that thread (`_count.messages = 0`) in the threads list.
|
|
6482
|
+
*/
|
|
6483
|
+
declare const ThreadReadEffect: () => null;
|
|
6484
|
+
|
|
6485
|
+
/**
|
|
6486
|
+
* Per-thread typing state, keyed by threadId → (accountId → typingAt ISO).
|
|
6487
|
+
*
|
|
6488
|
+
* `ThreadTypingStore` is instantiated once per `ConnectedProvider` and made
|
|
6489
|
+
* available via context. `ThreadTypingEffect` mounts somewhere in the tree
|
|
6490
|
+
* and feeds the store from the WS message bus; consumers read via
|
|
6491
|
+
* `useThreadTyping(threadId)`.
|
|
6492
|
+
*
|
|
6493
|
+
* The store keeps state in instance fields (not module-scoped) so multiple
|
|
6494
|
+
* provider trees — tests, micro-frontends, dual-org embeds — don't bleed
|
|
6495
|
+
* typing events into each other.
|
|
6496
|
+
*/
|
|
6497
|
+
type TypingMap = Record<string, Record<string, string>>;
|
|
6498
|
+
type Listener = (state: TypingMap) => void;
|
|
6499
|
+
declare class ThreadTypingStore {
|
|
6500
|
+
private state;
|
|
6501
|
+
private listeners;
|
|
6502
|
+
private expiryTimers;
|
|
6503
|
+
private setState;
|
|
6504
|
+
private scheduleExpiry;
|
|
6505
|
+
record(threadId: string, accountId: string, typingAt: string): void;
|
|
6506
|
+
subscribe: (listener: Listener) => (() => void);
|
|
6507
|
+
getSnapshot: () => TypingMap;
|
|
6508
|
+
}
|
|
6509
|
+
interface ThreadTypingStoreProviderProps {
|
|
6510
|
+
store?: ThreadTypingStore;
|
|
6511
|
+
children: React.ReactNode;
|
|
6512
|
+
}
|
|
6513
|
+
declare const ThreadTypingStoreProvider: ({ store, children, }: ThreadTypingStoreProviderProps) => React.JSX.Element;
|
|
6514
|
+
/**
|
|
6515
|
+
* Read the typing-state map for a given thread. Returns `{ [accountId]: ISO }`.
|
|
6516
|
+
* Returns a stable frozen object reference when the thread has no entries.
|
|
6517
|
+
* Entries auto-expire after ~6s of inactivity.
|
|
6518
|
+
*/
|
|
6519
|
+
declare const useThreadTyping: (threadId: string) => Record<string, string>;
|
|
6520
|
+
/**
|
|
6521
|
+
* Mount once at the provider level to wire `thread.typing` → the typing store.
|
|
6522
|
+
*/
|
|
6523
|
+
declare const ThreadTypingEffect: () => null;
|
|
6524
|
+
|
|
6525
|
+
export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_FOLLOW_STATS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountAttribute, AccountAttributeType, type AccountAttributeValue, type AccountShare, type AccountTier, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityLike, ActivityPreference, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddLogin, type AddLoginParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, ApplyEventRegistrationCoupon, type ApplyEventRegistrationCouponParams, type AttendeePackage, BENEFITS_QUERY_KEY, BOOKINGS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_SPACES_QUERY_KEY, BOOKING_PLACE_SPACE_QUERY_KEY, BOOKING_PLACE_SPACE_QUESTIONS_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountAttribute, type BaseAccountAttributeValue, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlock, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingQuestionResponse, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseBookingSpaceQuestion, type BaseBookingSpaceQuestionChoice, type BaseBookingSpaceQuestionChoiceTranslation, type BaseBookingSpaceQuestionTranslation, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionSection, type BaseEventSessionTime, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseLinkPreview, type BaseLogin, type BaseMatch, type BaseMeeting, type BaseNotification, type BaseOrgMembership, type BaseOrganization, type BasePass, type BasePassAddon, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntegration, type BasePaymentIntent, type BasePaymentLineItem, type BaseRegistrationFollowup, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationSection, type BaseRoom, type BaseRound, type BaseScan, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, type BaseSelf, type BaseSeries, type BaseSeriesQuestion, type BaseSeriesQuestionChoice, type BaseSeriesRegistration, type BaseSeriesRegistrationQuestionResponse, type BaseSession, type BaseSessionBookmark, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSupportTicket, type BaseSupportTicketActivityLog, type BaseSupportTicketMessage, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveySection, type BaseSurveySubmission, type BaseThread, type BaseThreadAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadMessageRead, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseUser, type BaseVideo, type Benefit, type Block, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingQuestionResponse, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceQuestion, type BookingSpaceQuestionChoice, type BookingSpaceQuestionChoiceTranslation, type BookingSpaceQuestionTranslation, BookingSpaceQuestionType, type BookingSpaceSlot, BookmarkEventAttendeePassSession, type BookmarkEventAttendeePassSessionParams, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIBERS_QUERY_KEY, CONTENTS_EXPLORE_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, CancelEventAttendeePass, CancelEventAttendeePassAccess, type CancelEventAttendeePassAccessParams, type CancelEventAttendeePassParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelSeriesRegistration, type CancelSeriesRegistrationParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, CheckLogin, type CheckLoginParams, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventAttendeePassActivation, type CompleteEventAttendeePassActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, ConnectedProvider, type ConnectedXMError, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type ContentsExploreData, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, type CreateChannelCollectionPayload, CreateChannelContent, type CreateChannelContentParams, type CreateChannelContentPayload, type CreateChannelParams, type CreateChannelPayload, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, type CreateContentGuestPayload, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingInput, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateLoginAccount, type CreateLoginAccountAccount, type CreateLoginAccountParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfLead, type CreateSelfLeadParams, CreateStreamChatMessage, type CreateStreamChatMessageParams, CreateSupportTicket, CreateSupportTicketMessage, type CreateSupportTicketMessageParams, type CreateSupportTicketParams, CreateThread, CreateThreadMessage, type CreateThreadMessageParams, type CreateThreadParams, type CursorQueryOptions, type CursorQueryParams, DayOfWeek, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteStreamChatMessage, type DeleteStreamChatMessageParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_ADDRESS_VALIDATION_REQUIRED, ERR_BANNED_USER, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_NO_ACCOUNT_SELECTED, ERR_NO_BOOKING_FOUND, ERR_NO_PASS_SELECTED, ERR_PRIVATE_CHANNEL, ERR_REGISTER_THROUGH_SERIES, ERR_REGISTRATION_UNAVAILABLE, ERR_TIER_REQUIRED, EVENTS_EXPLORE_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_ATTENDEE_COUPONS_QUERY_KEY, EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, EVENT_ATTENDEE_COUPON_QUERY_KEY, EVENT_ATTENDEE_PASS_ACCESS_QUERY_KEY, EVENT_ATTENDEE_PASS_ACCESS_QUESTION_SECTIONS_QUERY_KEY, EVENT_ATTENDEE_PASS_ACTIVATIONS_QUERY_KEY, EVENT_ATTENDEE_PASS_ACTIVATION_QUERY_KEY, EVENT_ATTENDEE_PASS_ACTIVATION_SUMMARY_QUERY_KEY, EVENT_ATTENDEE_PASS_ADD_ONS_INTENT_QUERY_KEY, EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, EVENT_ATTENDEE_PASS_QUERY_KEY, EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY, EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY, EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, EVENT_ATTENDEE_PASS_SESSIONS_INTENT_QUERY_KEY, EVENT_ATTENDEE_PASS_SESSION_PASS_INTENT_QUERY_KEY, EVENT_ATTENDEE_PASS_SESSION_PASS_QUESTION_SECTIONS_QUERY_KEY, EVENT_ATTENDEE_PAYMENTS_QUERY_KEY, EVENT_ATTENDEE_PAYMENT_QUERY_KEY, EVENT_ATTENDEE_QUERY_KEY, EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY, EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, EVENT_CONFIG_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_GROUP_PASSES_INTENT_QUERY_KEY, EVENT_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_REGISTRATION_INTENT_QUERY_KEY, EVENT_REGISTRATION_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, EventActivationRewardType, EventActivationType, type EventAddOn, EventAgendaVisibility, type EventAllowlistMember, type EventConfig, type EventEmail, EventEmailType, type EventListing, type EventMediaItem, type EventPackage, type EventPackagePass, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, type EventSessionAccess, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionResponse, EventSessionQuestionType, type EventSessionSection, type EventSessionTime, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, type EventsExploreData, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_EXPLORE_QUERY_KEY, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowStats, type GetAccountFollowStatsProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, GetActivityLikes, type GetActivityLikesProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetBooking, GetBookingIntent, type GetBookingIntentProps, GetBookingPlace, type GetBookingPlaceProps, GetBookingPlaceSpace, type GetBookingPlaceSpaceProps, GetBookingPlaceSpaceSlots, type GetBookingPlaceSpaceSlotsProps, GetBookingPlaces, type GetBookingPlacesParams, GetBookingPlacesSpaces, type GetBookingPlacesSpacesProps, type GetBookingProps, GetBookingSpaceQuestions, type GetBookingSpaceQuestionsProps, GetBookings, type GetBookingsParams, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannelSubscribers, type GetChannelSubscribersParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContents, GetContentsExplore, type GetContentsExploreProps, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventAttendee, GetEventAttendeeCoupon, GetEventAttendeeCouponPasses, type GetEventAttendeeCouponPassesProps, type GetEventAttendeeCouponProps, GetEventAttendeeCoupons, type GetEventAttendeeCouponsProps, GetEventAttendeePass, GetEventAttendeePassAccess, type GetEventAttendeePassAccessProps, GetEventAttendeePassAccessQuestionSections, type GetEventAttendeePassAccessQuestionSectionsProps, GetEventAttendeePassActivation, type GetEventAttendeePassActivationProps, GetEventAttendeePassActivationSummary, type GetEventAttendeePassActivationSummaryProps, GetEventAttendeePassActivations, type GetEventAttendeePassActivationsProps, GetEventAttendeePassAddOns, GetEventAttendeePassAddOnsIntent, type GetEventAttendeePassAddOnsIntentProps, type GetEventAttendeePassAddOnsProps, type GetEventAttendeePassProps, GetEventAttendeePassQuestionFollowup, type GetEventAttendeePassQuestionFollowupProps, GetEventAttendeePassQuestionFollowups, type GetEventAttendeePassQuestionFollowupsProps, GetEventAttendeePassQuestionSections, type GetEventAttendeePassQuestionSectionsProps, GetEventAttendeePassSessionPassIntent, type GetEventAttendeePassSessionPassIntentProps, GetEventAttendeePassSessionPassQuestionSections, type GetEventAttendeePassSessionPassQuestionSectionsProps, GetEventAttendeePassSessionsIntent, type GetEventAttendeePassSessionsIntentProps, GetEventAttendeePayment, type GetEventAttendeePaymentProps, GetEventAttendeePayments, type GetEventAttendeePaymentsProps, type GetEventAttendeeProps, GetEventAttendeeTransferAccounts, type GetEventAttendeeTransferAccountsProps, GetEventAttendeeTransfersLogs, type GetEventAttendeeTransfersLogsProps, GetEventConfig, type GetEventConfigProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventGroupPassesIntent, type GetEventGroupPassesIntentProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventRegistration, GetEventRegistrationIntent, type GetEventRegistrationIntentProps, type GetEventRegistrationProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, GetEvents, GetEventsExplore, type GetEventsExploreProps, type GetEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsExplore, type GetGroupsExploreProps, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetImage, type GetImageProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterest, GetInterestActivities, type GetInterestActivitiesProps, type GetInterestProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, GetInvoicePayments, type GetInvoicePaymentsProps, type GetInvoiceProps, GetInvoices, type GetInvoicesProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetLogin, type GetLoginProps, GetMeeting, type GetMeetingProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, type GetOrganizationParams, GetPayment, type GetPaymentProps, GetPayments, type GetPaymentsProps, GetSearchList, type GetSearchListProps, GetSearchListValues, type GetSearchListValuesProps, GetSearchLists, type GetSearchListsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChannelSubscriber, type GetSelfChannelSubscriberParams, GetSelfContacts, type GetSelfContactsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingAttendees, type GetSelfEventListingAttendeesProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, GetSelfEventListingPass, type GetSelfEventListingPassProps, GetSelfEventListingPasses, type GetSelfEventListingPassesProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, GetSelfLeadCounts, type GetSelfLeadCountsProps, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfLogins, type GetSelfLoginsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, GetSelfProfile, type GetSelfProfileProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSeriesRegistration, GetSeriesRegistrationIntent, type GetSeriesRegistrationIntentProps, type GetSeriesRegistrationProps, GetSeriesRegistrationQuestions, type GetSeriesRegistrationQuestionsProps, GetStreamChatMessages, type GetStreamChatMessagesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSupportTicket, GetSupportTicketActivityLog, GetSupportTicketMessages, GetSupportTickets, GetSurvey, type GetSurveyProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetSurveys, type GetSurveysProps, GetThread, GetThreadAccounts, type GetThreadAccountsProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetThreads, type GetThreadsProps, GetUsernameAvailability, type GetUsernameAvailabilityProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, type GroupsExploreData, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_PAYMENTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, InfiniteQueryHelpers, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InterestInput, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, JoinMeetingViaActivity, type JoinMeetingViaActivityParams, JoinMeetingViaBooking, type JoinMeetingViaBookingParams, JoinMeetingViaCode, type JoinMeetingViaCodeParams, JoinMeetingViaEvent, type JoinMeetingViaEventParams, JoinMeetingViaGroup, type JoinMeetingViaGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, LOGIN_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, LocationQuestionOption, type Login, MEETING_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, MarkThreadMessageRead, type MarkThreadMessageReadParams, MarkThreadRead, type MarkThreadReadParams, type MarkType, type Match, type Meeting, MeetingType, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_QUERY_KEY, type Order, type Organization, OrganizationActivityPreference, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PaymentIntentSource, type PaymentLineItem, PaymentLineItemType, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationDraft, type RegistrationDraftPackage, type RegistrationDraftPass, type RegistrationDraftReservation, type RegistrationFollowup, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveLogin, type RemoveLoginParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, type Room, type Round, SEARCH_LISTS_QUERY_KEY, SEARCH_LIST_QUERY_KEY, SEARCH_LIST_VALUES_QUERY_KEY, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHANNEL_SUBSCRIBER_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_LEADS_QUERY_KEY, SELF_LEAD_COUNTS_QUERY_KEY, SELF_LEAD_QUERY_KEY, SELF_LOGINS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PROFILE_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SERIES_REGISTRATION_INTENT_QUERY_KEY, SERIES_REGISTRATION_QUERY_KEY, SERIES_REGISTRATION_QUESTIONS_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_SPACES_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUESTIONS_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CONTENTS_EXPLORE_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_EVENTS_EXPLORE_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_ATTENDEE_COUPON_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_ACCESS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_ACTIVATIONS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_ACTIVATION_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_ATTENDEE_PASS_SESSION_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_ATTENDEE_PAYMENT_QUERY_DATA, SET_EVENT_ATTENDEE_QUERY_DATA, SET_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_DATA, SET_EVENT_CONFIG_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_IMAGE_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_GROUPS_EXPLORE_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LOGINS_QUERY_DATA, SET_MEETING_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_PROFILE_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SELF_SURVEY_SUBMISSION_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SERIES_REGISTRATION_QUERY_DATA, SET_SERIES_REGISTRATION_QUESTIONS_QUERY_DATA, SET_STREAM_CHAT_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_ACTIVITY_LOG_QUERY_DATA, SET_SUPPORT_TICKET_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_SURVEYS_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREADS_QUERY_DATA, SET_THREAD_ACCOUNTS_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_USERNAME_AVAILABILITY_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_CHAT_MESSAGES_QUERY_KEY, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_ACTIVITY_LOG_QUERY_KEY, SUPPORT_TICKET_MESSAGES_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, SURVEYS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SearchList, type SearchListValue, type SegmentInput, type Self, type SelfRelationships, SendThreadTyping, type SendThreadTypingParams, type Series, type SeriesQuestion, SeriesQuestionType, type SeriesRegistration, type Session, SessionAccess, type SessionBookmark, type SessionLocation, type SessionPrice, SessionVisibility, SetContentPublishSchedule, type SetContentPublishScheduleParams, SingleQueryHelpers, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamChatMessage, type StreamInput, SubmitSurvey, type SubmitSurveyParams, type SupportTicket, type SupportTicketActivityLog, SupportTicketActivityLogSource, SupportTicketActivityLogType, type SupportTicketMessage, SupportTicketMessageSource, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, SurveyQuestionType, type SurveySection, SurveyStatus, type SurveySubmission, THREADS_QUERY_KEY, THREAD_ACCOUNTS_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type Thread, type ThreadAccount, type ThreadMessage, ThreadMessageCreatedEffect, ThreadMessageDeletedEffect, type ThreadMessageEntity, type ThreadMessageReaction, type ThreadMessageRead, ThreadMessageType, ThreadMessageUpdatedEffect, ThreadReadEffect, ThreadTypingEffect, ThreadTypingStore, ThreadTypingStoreProvider, type ThreadTypingStoreProviderProps, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, TransferEventAttendeePass, type TransferEventAttendeePassParams, type TransferLog, USERNAME_AVAILABILITY_QUERY_KEY, UnblockAccount, type UnblockAccountParams, UnbookmarkEventAttendeePassSession, type UnbookmarkEventAttendeePassSessionParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateActivity, type UpdateActivityParams, UpdateBookingResponses, type UpdateBookingResponsesParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, type UpdateChannelCollectionPayload, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelContentPayload, type UpdateChannelParams, type UpdateChannelPayload, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, type UpdateContentGuestPayload, UpdateEventAttendeePassAccessResponses, type UpdateEventAttendeePassAccessResponsesParams, UpdateEventAttendeePassFollowup, type UpdateEventAttendeePassFollowupParams, UpdateEventAttendeePassResponses, type UpdateEventAttendeePassResponsesParams, UpdateEventAttendeePreferences, type UpdateEventAttendeePreferencesParams, UpdateEventRegistration, type UpdateEventRegistrationParams, UpdateEventSessionRegistrationResponses, type UpdateEventSessionRegistrationResponsesParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, type UpdateListingValues, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfGroupMembership, type UpdateSelfGroupMembershipParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSeriesRegistrationResponses, type UpdateSeriesRegistrationResponsesParams, UpdateStreamChatMessage, type UpdateStreamChatMessageParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateSurveySearchListResponse, type UpdateSurveySearchListResponseParams, UpdateThread, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, UpsertLinkPreview, type UpsertLinkPreviewParams, type UsernameAvailability, VIDEO_QUERY_KEY, VerifyLoginAccount, type VerifyLoginAccountParams, type WSEnvelope, type WSEventHandler, type WSEventName, type WSEventPayloadMap, WSMessageBus, WSMessageBusProvider, type WSMessageBusProviderProps, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddListingCoHost, useAddListingSponsor, useAddLogin, useAddSelfEventSession, useAddSelfInterests, useAddThreadMessageReaction, useApplyEventRegistrationCoupon, useBlockAccount, useBlockIntegration, useBookmarkEventAttendeePassSession, useCancelBooking, useCancelEventAttendeePass, useCancelEventAttendeePassAccess, useCancelGroupInvitation, useCancelGroupRequest, useCancelSeriesRegistration, useCapturePaymentIntent, useCheckLogin, useCheckinListingAttendeePass, useCompleteEventAttendeePassActivation, useConfirmBooking, useConnected, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateLoginAccount, useCreateSelfAddress, useCreateSelfLead, useCreateStreamChatMessage, useCreateSupportTicket, useCreateSupportTicketMessage, useCreateThread, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteStreamChatMessage, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityLikes, useGetAdvertisement, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookingSpaceQuestions, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscribers, useGetChannels, useGetContents, useGetContentsExplore, useGetEvent, useGetEventActivities, useGetEventAttendee, useGetEventAttendeeCoupon, useGetEventAttendeeCouponPasses, useGetEventAttendeeCoupons, useGetEventAttendeePass, useGetEventAttendeePassAccess, useGetEventAttendeePassAccessQuestionSections, useGetEventAttendeePassActivation, useGetEventAttendeePassActivationSummary, useGetEventAttendeePassActivations, useGetEventAttendeePassAddOns, useGetEventAttendeePassAddOnsIntent, useGetEventAttendeePassQuestionFollowup, useGetEventAttendeePassQuestionFollowups, useGetEventAttendeePassQuestionSections, useGetEventAttendeePassSessionPassIntent, useGetEventAttendeePassSessionPassQuestionSections, useGetEventAttendeePassSessionsIntent, useGetEventAttendeePayment, useGetEventAttendeePayments, useGetEventAttendeeTransferAccounts, useGetEventAttendeeTransfersLogs, useGetEventConfig, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventGroupPassesIntent, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventRegistrants, useGetEventRegistration, useGetEventRegistrationIntent, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetEventsExplore, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsExplore, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetInvoicePayments, useGetInvoices, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingAttendeePassQuestionSections, useGetLogin, useGetMeeting, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetPayment, useGetPayments, useGetSearchList, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChannelSubscriber, useGetSelfContacts, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventSessions, useGetSelfEvents, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfLogins, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfProfile, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSeriesRegistration, useGetSeriesRegistrationIntent, useGetSeriesRegistrationQuestions, useGetStreamChatMessages, useGetSubscribedChannels, useGetSubscribedContents, useGetSupportTicket, useGetSupportTicketActivityLog, useGetSupportTicketMessages, useGetSupportTickets, useGetSurvey, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetSurveys, useGetThread, useGetThreadAccounts, useGetThreadMessage, useGetThreadMessages, useGetThreads, useGetUsernameAvailability, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useJoinMeetingViaActivity, useJoinMeetingViaBooking, useJoinMeetingViaCode, useJoinMeetingViaEvent, useJoinMeetingViaGroup, useLeaveGroup, useLikeActivity, useLikeContent, useMarkThreadMessageRead, useMarkThreadRead, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveLogin, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSendThreadTyping, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useThreadTyping, useTransferEventAttendeePass, useUnblockAccount, useUnbookmarkEventAttendeePassSession, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateActivity, useUpdateBookingResponses, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateEventAttendeePassAccessResponses, useUpdateEventAttendeePassFollowup, useUpdateEventAttendeePassResponses, useUpdateEventAttendeePreferences, useUpdateEventRegistration, useUpdateEventSessionRegistrationResponses, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfGroupMembership, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSeriesRegistrationResponses, useUpdateStreamChatMessage, useUpdateSurveyResponse, useUpdateSurveySearchListResponse, useUpdateThread, useUpdateThreadMessage, useUploadFile, useUploadImage, useUpsertLinkPreview, useVerifyLoginAccount, useWSEvent, useWSMessageBus };
|