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