@connectedxm/client 1.3.9 → 1.3.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -722,7 +722,7 @@ interface BaseSession {
722
722
  slug: string;
723
723
  name: string;
724
724
  description: string | null;
725
- location: string | null;
725
+ location: BaseSessionLocation | null;
726
726
  image: BaseImage | null;
727
727
  startTime: string;
728
728
  endTime: string;
@@ -736,8 +736,60 @@ interface Session extends BaseSession {
736
736
  sponsors: BaseAccount[];
737
737
  accounts?: BaseAccount[];
738
738
  streamInput: StreamInput | null;
739
+ registrationEnabled: boolean;
740
+ price: number | null;
739
741
  }
740
742
  declare const isTypeSession: (session: BaseSession | Session) => session is Session;
743
+ interface BaseSessionLocation {
744
+ id: string;
745
+ name: string;
746
+ description: string | null;
747
+ address1: string | null;
748
+ address2: string | null;
749
+ zip: string | null;
750
+ city: string | null;
751
+ state: string | null;
752
+ country: string | null;
753
+ image: BaseImage | null;
754
+ googlePlaceId: string | null;
755
+ }
756
+ interface SessionLocation extends BaseSessionLocation {
757
+ createdAt: string | null;
758
+ updatedAt: string | null;
759
+ }
760
+ interface BaseSessionQuestion {
761
+ id: string;
762
+ name: string;
763
+ label: string | null;
764
+ description: string | null;
765
+ required: string;
766
+ }
767
+ interface SessionQuestion extends BaseSessionQuestion {
768
+ createdAt: string | null;
769
+ updatedAt: string | null;
770
+ }
771
+ interface BaseSessionQuestionResponse {
772
+ id: string;
773
+ value: string;
774
+ }
775
+ interface SessionQuestionResponse extends BaseSessionQuestionResponse {
776
+ createdAt: string;
777
+ updatedAt: string;
778
+ }
779
+ declare enum SessionPassStatus {
780
+ draft = "draft",
781
+ ready = "ready",
782
+ canceled = "canceled"
783
+ }
784
+ interface BaseSessionPass {
785
+ id: string;
786
+ status: string;
787
+ }
788
+ interface SessionPass extends BaseSessionPass {
789
+ pass: BasePurchase;
790
+ createdAt: string;
791
+ updatedAt: string;
792
+ }
741
793
  interface BaseEventPage {
742
794
  id: string;
743
795
  slug: string;
@@ -2719,6 +2771,45 @@ interface GetSelfEventTransfersLogsProps extends InfiniteQueryParams {
2719
2771
  declare const GetSelfEventTransfersLogs: ({ pageParam, pageSize, orderBy, search, eventId, clientApiParams, }: GetSelfEventTransfersLogsProps) => Promise<ConnectedXMResponse<TransferLog[]>>;
2720
2772
  declare const useGetSelfEventTransfersLogs: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventTransfersLogs>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<TransferLog[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2721
2773
 
2774
+ declare const SELF_EVENT_REGISTRATION_PURCHASE_SESSION_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string, sessionPassId: string) => QueryKey;
2775
+ declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_SESSION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_PURCHASE_SESSION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationPurchaseSessionPass>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2776
+ interface GetSelfEventRegistrationPurchaseSessionPassProps extends SingleQueryParams {
2777
+ eventId: string;
2778
+ registrationId: string;
2779
+ purchaseId: string;
2780
+ sessionPassId: string;
2781
+ }
2782
+ declare const GetSelfEventRegistrationPurchaseSessionPass: ({ eventId, registrationId, purchaseId, sessionPassId, clientApiParams, }: GetSelfEventRegistrationPurchaseSessionPassProps) => Promise<ConnectedXMResponse<SessionPass>>;
2783
+ declare const useGetSelfEventRegistrationPurchaseSessionPass: (eventId: string, registrationId: string, purchaseId: string, sessionPassId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseSessionPass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SessionPass>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2784
+
2785
+ declare const SELF_EVENT_REGISTRATION_PURCHASE_SESSIONS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
2786
+ declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_SESSIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_PURCHASE_SESSIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationPurchaseSessions>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2787
+ interface GetSelfEventRegistrationPurchaseSessionsProps extends SingleQueryParams {
2788
+ eventId: string;
2789
+ registrationId: string;
2790
+ purchaseId: string;
2791
+ }
2792
+ declare const GetSelfEventRegistrationPurchaseSessions: ({ eventId, registrationId, purchaseId, clientApiParams, }: GetSelfEventRegistrationPurchaseSessionsProps) => Promise<ConnectedXMResponse<SessionPass[]>>;
2793
+ declare const useGetSelfEventRegistrationPurchaseSessions: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseSessions>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SessionPass[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2794
+
2795
+ declare const SELF_EVENT_REGISTRATION_SESSIONS_INTENT_QUERY_KEY: (eventId: string) => QueryKey;
2796
+ declare const SET_SELF_EVENT_REGISTRATION_SESSIONS_INTENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_SESSIONS_INTENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationSessionsIntent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2797
+ interface GetSelfEventRegistrationSessionsIntentProps extends SingleQueryParams {
2798
+ eventId: string;
2799
+ registrationId: string;
2800
+ }
2801
+ declare const GetSelfEventRegistrationSessionsIntent: ({ eventId, registrationId, clientApiParams, }: GetSelfEventRegistrationSessionsIntentProps) => Promise<ConnectedXMResponse<PaymentIntent>>;
2802
+ declare const useGetSelfEventRegistrationSessionsIntent: (eventId: string, registrationId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationSessionsIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2803
+
2804
+ declare const SELF_EVENT_REGISTRATION_SESSION_PASSES_QUERY_KEY: (eventId: string, sessionId: string) => QueryKey;
2805
+ declare const SET_SELF_EVENT_REGISTRATION_SESSION_PASSES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_SESSION_PASSES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationSessionPasses>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2806
+ interface GetSelfEventRegistrationSessionPassesProps extends SingleQueryParams {
2807
+ eventId: string;
2808
+ sessionId: string;
2809
+ }
2810
+ declare const GetSelfEventRegistrationSessionPasses: ({ eventId, sessionId, clientApiParams, }: GetSelfEventRegistrationSessionPassesProps) => Promise<ConnectedXMResponse<SessionPass[]>>;
2811
+ declare const useGetSelfEventRegistrationSessionPasses: (eventId: string, sessionId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationSessionPasses>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SessionPass[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2812
+
2722
2813
  declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
2723
2814
  interface GetSelfSubcriptionProps extends SingleQueryParams {
2724
2815
  subscriptionId: string;
@@ -3725,6 +3816,44 @@ interface CancelPurchaseParams extends MutationParams {
3725
3816
  declare const CancelPurchase: ({ purchaseId, eventId, registrationId, issueRefund, clientApiParams, queryClient, }: CancelPurchaseParams) => Promise<ConnectedXMResponse<Purchase>>;
3726
3817
  declare const useCancelPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelPurchase>>, Omit<CancelPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Purchase>, axios.AxiosError<ConnectedXMResponse<Purchase>, any>, Omit<CancelPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
3727
3818
 
3819
+ interface AddSelfEventRegistrationPurchaseSessionParams extends MutationParams {
3820
+ eventId: string;
3821
+ registrationId: string;
3822
+ purchaseId: string;
3823
+ sessionId: string;
3824
+ }
3825
+ declare const AddSelfEventRegistrationPurchaseSession: ({ eventId, registrationId, purchaseId, sessionId, clientApiParams, queryClient, }: AddSelfEventRegistrationPurchaseSessionParams) => Promise<ConnectedXMResponse<SessionPass>>;
3826
+ declare const useAddSelfEventRegistrationPurchaseSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventRegistrationPurchaseSession>>, Omit<AddSelfEventRegistrationPurchaseSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<SessionPass>, axios.AxiosError<ConnectedXMResponse<SessionPass>, any>, Omit<AddSelfEventRegistrationPurchaseSessionParams, "queryClient" | "clientApiParams">, unknown>;
3827
+
3828
+ interface RemoveSelfEventRegistrationPurchaseSessionParams extends MutationParams {
3829
+ eventId: string;
3830
+ registrationId: string;
3831
+ purchaseId: string;
3832
+ sessionPassId: string;
3833
+ }
3834
+ declare const RemoveSelfEventRegistrationPurchaseSession: ({ eventId, registrationId, purchaseId, sessionPassId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationPurchaseSessionParams) => Promise<ConnectedXMResponse<null>>;
3835
+ declare const useRemoveSelfEventRegistrationPurchaseSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationPurchaseSession>>, Omit<RemoveSelfEventRegistrationPurchaseSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveSelfEventRegistrationPurchaseSessionParams, "queryClient" | "clientApiParams">, unknown>;
3836
+
3837
+ interface SubmitSelfEventRegistrationSessionsParams extends MutationParams {
3838
+ eventId: string;
3839
+ registrationId: string;
3840
+ }
3841
+ declare const SubmitSelfEventRegistrationSessions: ({ eventId, registrationId, clientApiParams, }: SubmitSelfEventRegistrationSessionsParams) => Promise<ConnectedXMResponse<null>>;
3842
+ declare const useSubmitSelfEventRegistrationSessions: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SubmitSelfEventRegistrationSessions>>, Omit<SubmitSelfEventRegistrationSessionsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<SubmitSelfEventRegistrationSessionsParams, "queryClient" | "clientApiParams">, unknown>;
3843
+
3844
+ interface UpdateSelfEventRegistrationPurchaseSessionResponsesParams extends MutationParams {
3845
+ eventId: string;
3846
+ registrationId: string;
3847
+ purchaseId: string;
3848
+ sessionPassId: string;
3849
+ responses: {
3850
+ questionId: string;
3851
+ value: string | undefined;
3852
+ }[];
3853
+ }
3854
+ declare const UpdateSelfEventRegistrationPurchaseSessionResponses: ({ eventId, registrationId, purchaseId, sessionPassId, responses, clientApiParams, }: UpdateSelfEventRegistrationPurchaseSessionResponsesParams) => Promise<ConnectedXMResponse<null>>;
3855
+ declare const useUpdateSelfEventRegistrationPurchaseSessionResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPurchaseSessionResponses>>, Omit<UpdateSelfEventRegistrationPurchaseSessionResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationPurchaseSessionResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3856
+
3728
3857
  interface CancelSubscriptionParams extends MutationParams {
3729
3858
  subscriptionId: string;
3730
3859
  }
@@ -4453,4 +4582,4 @@ interface EnableIntegrationParams extends MutationParams {
4453
4582
  declare const EnableIntegration: ({ type, clientApiParams, queryClient, }: EnableIntegrationParams) => Promise<ConnectedXMResponse<Integration>>;
4454
4583
  declare const useEnableIntegration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof EnableIntegration>>, Omit<EnableIntegrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Integration>, axios.AxiosError<ConnectedXMResponse<Integration>, any>, Omit<EnableIntegrationParams, "queryClient" | "clientApiParams">, unknown>;
4455
4584
 
4456
- 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_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, ALL_GROUP_EVENTS, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, AddContentInterest, type AddContentInterestParams, AddFreePurchaseAddOns, type AddFreePurchaseAddOnsParams, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadMember, type AddThreadMemberParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, AddThreadMessageReply, type AddThreadMessageReplyParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type 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 BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, 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 BaseNotification, type BaseOrganization, type BasePage, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntent, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSchedule, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseThread, type BaseThreadMember, type BaseThreadMessage, type BaseTicket, type BaseTicketPriceSchedule, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseVideo, type Benefit, BlockIntegration, type BlockIntegrationParams, 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, CONTENTS_QUERY_KEY, CONTENT_INTERESTS_QUERY_KEY, CONTENT_QUERY_KEY, CUSTOM_ERROR_CODES, CacheIndividualQueries, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPurchase, type CancelPurchaseParams, CancelSubscription, type CancelSubscriptionParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, type CreateActivity, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, CreateChannelContent, type CreateChannelContentParams, type CreateChannelParams, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, CreateEventLead, type CreateEventLeadParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, CreateThread, CreateThreadMessage, type CreateThreadMessageParams, type CreateThreadParams, Currency, 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, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteThreadMember, type DeleteThreadMemberParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_REGISTRATION_UNAVAILABLE, ERR_SUBSCRIPTION_REQUIRED, ERR_TIER_REQUIRED, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_PASS_TYPES_QUERY_KEY, EVENT_PASS_TYPE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TRANSFER_LOGS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, 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, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetAllGroupEvents, type GetAllGroupEventsProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, 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, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, GetContentInterests, type GetContentInterestsParams, type GetContentParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, GetEventPassType, type GetEventPassTypeProps, GetEventPassTypes, type GetEventPassTypesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingRegistrationPurchaseSections, type GetListingRegistrationPurchaseSectionsProps, GetManagedChannel, GetManagedChannelCollection, GetManagedChannelCollectionContents, type GetManagedChannelCollectionContentsParams, type GetManagedChannelCollectionParams, GetManagedChannelCollections, type GetManagedChannelCollectionsParams, GetManagedChannelContent, GetManagedChannelContentActivities, type GetManagedChannelContentActivitiesParams, GetManagedChannelContentGuests, type GetManagedChannelContentGuestsParams, GetManagedChannelContentInterests, type GetManagedChannelContentInterestsParams, type GetManagedChannelContentParams, GetManagedChannelContents, type GetManagedChannelContentsParams, GetManagedChannelInterests, type GetManagedChannelInterestsParams, type GetManagedChannelParams, GetManagedChannelSubscribers, type GetManagedChannelSubscribersParams, GetManagedChannels, type GetManagedChannelsParams, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventCoupons, type GetSelfEventCouponsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, type GetSelfEventListingProps, GetSelfEventListingPurchase, type GetSelfEventListingPurchaseProps, GetSelfEventListingPurchases, type GetSelfEventListingPurchasesProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventPasses, type GetSelfEventPassesProps, GetSelfEventRegistration, GetSelfEventRegistrationCoupon, type GetSelfEventRegistrationCouponProps, GetSelfEventRegistrationCouponPurchases, type GetSelfEventRegistrationCouponPurchasesProps, GetSelfEventRegistrationCoupons, type GetSelfEventRegistrationCouponsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPayment, type GetSelfEventRegistrationPaymentProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, GetSelfEventRegistrationPurchaseAddOnsIntent, type GetSelfEventRegistrationPurchaseAddOnsIntentProps, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEventTransfersLogs, type GetSelfEventTransfersLogsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetThread, GetThreadEvent, type GetThreadEventProps, GetThreadEvents, type GetThreadEventsProps, GetThreadGroup, type GetThreadGroupProps, GetThreadGroups, type GetThreadGroupsProps, GetThreadMember, type GetThreadMemberProps, GetThreadMembers, type GetThreadMembersProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessageReplies, type GetThreadMessageRepliesProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetThreads, type GetThreadsProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PURCHASES_QUERY_KEY, LISTING_PURCHASE_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkPreview, type ListingPurchase, type ListingRegistration, MANAGED_CHANNELS_QUERY_KEY, MANAGED_CHANNEL_COLLECTIONS_QUERY_KEY, MANAGED_CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, MANAGED_CHANNEL_COLLECTION_QUERY_KEY, MANAGED_CHANNEL_CONTENTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, MANAGED_CHANNEL_CONTENT_GUESTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_INTERESTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_QUERY_KEY, MANAGED_CHANNEL_INTERESTS_QUERY_KEY, MANAGED_CHANNEL_QUERY_KEY, MANAGED_CHANNEL_SUBSCRIBERS_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPurchase, MarkUnread, type MarkUnreadParams, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Page, type PageType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, PurchaseStatus, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_COUPONS_QUERY_KEY, SELF_EVENT_PASSES_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PAYMENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_FEED_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_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_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_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ALL_GROUP_EVENTS_QUERY_DATA, SET_BENEFITS_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_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_PASS_TYPES_QUERY_DATA, SET_EVENT_PASS_TYPE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_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_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_EMAIL_QUERY_DATA, SET_LISTING_PURCHASE_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_LISTING_REGISTRATION_QUERY_KEY, SET_MANAGED_CHANNELS_QUERY_DATA, SET_MANAGED_CHANNEL_COLLECTIONS_QUERY_DATA, SET_MANAGED_CHANNEL_COLLECTION_QUERY_DATA, SET_MANAGED_CHANNEL_CONTENTS_QUERY_DATA, SET_MANAGED_CHANNEL_CONTENT_QUERY_DATA, SET_MANAGED_CHANNEL_QUERY_DATA, SET_MANAGED_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_MANAGED_CONTENT_ACTIVITIES_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_PASSES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PAYMENT_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_THREADS_QUERY_DATA, SET_THREAD_EVENTS_QUERY_DATA, SET_THREAD_EVENT_QUERY_DATA, SET_THREAD_GROUPS_QUERY_DATA, SET_THREAD_GROUP_QUERY_DATA, SET_THREAD_MEMBERS_QUERY_DATA, SET_THREAD_MEMBER_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_MESSAGE_REPLIES_QUERY_DATA, SET_THREAD_QUERY_DATA, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, type Scan, type Schedule, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, SupportedLocale, THREADS_QUERY_KEY, THREAD_EVENTS_QUERY_KEY, THREAD_EVENT_QUERY_KEY, THREAD_GROUPS_QUERY_KEY, THREAD_GROUP_QUERY_KEY, THREAD_MEMBERS_QUERY_KEY, THREAD_MEMBER_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_MESSAGE_REPLIES_QUERY_KEY, THREAD_QUERY_KEY, type TeamMember, type Thread, ThreadAccessLevel, type ThreadInvitation, ThreadInvitationStatus, type ThreadMember, ThreadMemberRole, type ThreadMessage, type ThreadMessageReaction, ThreadMessageType, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPurchase, type TransferPurchaseParams, UndoCheckinListingRegistrationPurchase, type UndoCheckinListingRegistrationPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPurchaseResponses, type UpdateListingRegistrationPurchaseResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationPurchaseResponses, type UpdateSelfEventRegistrationPurchaseResponsesParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UpdateThread, UpdateThreadMember, type UpdateThreadMemberParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadChannelContentImage, type UploadChannelContentImageParams, UploadFile, type UploadFileParams, type User, 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, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddFreePurchaseAddOns, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useAddThreadMember, useAddThreadMessageReaction, useAddThreadMessageReply, useBlockIntegration, useCancelGroupInvitation, useCancelGroupRequest, useCancelPurchase, useCancelSubscription, useCapturePaymentIntent, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useCreateThread, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDeleteThreadMember, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetAllGroupEvents, useGetBenefits, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannels, useGetContent, useGetContentInterests, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventPassType, useGetEventPassTypes, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingRegistrationPurchaseSections, useGetManagedChannel, useGetManagedChannelCollection, useGetManagedChannelCollectionContents, useGetManagedChannelCollections, useGetManagedChannelContent, useGetManagedChannelContentActivities, useGetManagedChannelContentGuests, useGetManagedChannelContentInterests, useGetManagedChannelContents, useGetManagedChannelInterests, useGetManagedChannelSubscribers, useGetManagedChannels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventCoupons, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPurchase, useGetSelfEventListingPurchases, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventPasses, useGetSelfEventRegistration, useGetSelfEventRegistrationCoupon, useGetSelfEventRegistrationCouponPurchases, useGetSelfEventRegistrationCoupons, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPayment, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseAddOnsIntent, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEventTransfersLogs, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSubscribedChannels, useGetSubscribedContents, useGetThread, useGetThreadEvent, useGetThreadEvents, useGetThreadGroup, useGetThreadGroups, useGetThreadMember, useGetThreadMembers, useGetThreadMessage, useGetThreadMessageReplies, useGetThreadMessages, useGetThreads, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, useMarkUnread, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSetContentPublishSchedule, useSubmitSelfEventRegistration, useTransferPurchase, useUndoCheckinListingRegistrationPurchase, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPurchaseResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationPurchaseResponses, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateThread, useUpdateThreadMember, useUpdateThreadMessage, useUploadChannelContentImage, useUploadFile };
4585
+ 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_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, ALL_GROUP_EVENTS, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, AddContentInterest, type AddContentInterestParams, AddFreePurchaseAddOns, type AddFreePurchaseAddOnsParams, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventRegistrationPurchaseSession, type AddSelfEventRegistrationPurchaseSessionParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadMember, type AddThreadMemberParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, AddThreadMessageReply, type AddThreadMessageReplyParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type 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 BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, 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 BaseNotification, type BaseOrganization, type BasePage, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntent, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSchedule, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSessionPass, type BaseSessionQuestion, type BaseSessionQuestionResponse, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseThread, type BaseThreadMember, type BaseThreadMessage, type BaseTicket, type BaseTicketPriceSchedule, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseVideo, type Benefit, BlockIntegration, type BlockIntegrationParams, 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, CONTENTS_QUERY_KEY, CONTENT_INTERESTS_QUERY_KEY, CONTENT_QUERY_KEY, CUSTOM_ERROR_CODES, CacheIndividualQueries, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPurchase, type CancelPurchaseParams, CancelSubscription, type CancelSubscriptionParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, type CreateActivity, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, CreateChannelContent, type CreateChannelContentParams, type CreateChannelParams, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, CreateEventLead, type CreateEventLeadParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, CreateThread, CreateThreadMessage, type CreateThreadMessageParams, type CreateThreadParams, Currency, 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, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteThreadMember, type DeleteThreadMemberParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_REGISTRATION_UNAVAILABLE, ERR_SUBSCRIPTION_REQUIRED, ERR_TIER_REQUIRED, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_PASS_TYPES_QUERY_KEY, EVENT_PASS_TYPE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TRANSFER_LOGS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, 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, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetAllGroupEvents, type GetAllGroupEventsProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, 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, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, GetContentInterests, type GetContentInterestsParams, type GetContentParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, GetEventPassType, type GetEventPassTypeProps, GetEventPassTypes, type GetEventPassTypesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingRegistrationPurchaseSections, type GetListingRegistrationPurchaseSectionsProps, GetManagedChannel, GetManagedChannelCollection, GetManagedChannelCollectionContents, type GetManagedChannelCollectionContentsParams, type GetManagedChannelCollectionParams, GetManagedChannelCollections, type GetManagedChannelCollectionsParams, GetManagedChannelContent, GetManagedChannelContentActivities, type GetManagedChannelContentActivitiesParams, GetManagedChannelContentGuests, type GetManagedChannelContentGuestsParams, GetManagedChannelContentInterests, type GetManagedChannelContentInterestsParams, type GetManagedChannelContentParams, GetManagedChannelContents, type GetManagedChannelContentsParams, GetManagedChannelInterests, type GetManagedChannelInterestsParams, type GetManagedChannelParams, GetManagedChannelSubscribers, type GetManagedChannelSubscribersParams, GetManagedChannels, type GetManagedChannelsParams, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventCoupons, type GetSelfEventCouponsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, type GetSelfEventListingProps, GetSelfEventListingPurchase, type GetSelfEventListingPurchaseProps, GetSelfEventListingPurchases, type GetSelfEventListingPurchasesProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventPasses, type GetSelfEventPassesProps, GetSelfEventRegistration, GetSelfEventRegistrationCoupon, type GetSelfEventRegistrationCouponProps, GetSelfEventRegistrationCouponPurchases, type GetSelfEventRegistrationCouponPurchasesProps, GetSelfEventRegistrationCoupons, type GetSelfEventRegistrationCouponsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPayment, type GetSelfEventRegistrationPaymentProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, GetSelfEventRegistrationPurchaseAddOnsIntent, type GetSelfEventRegistrationPurchaseAddOnsIntentProps, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationPurchaseSessionPass, type GetSelfEventRegistrationPurchaseSessionPassProps, GetSelfEventRegistrationPurchaseSessions, type GetSelfEventRegistrationPurchaseSessionsProps, GetSelfEventRegistrationSessionPasses, type GetSelfEventRegistrationSessionPassesProps, GetSelfEventRegistrationSessionsIntent, type GetSelfEventRegistrationSessionsIntentProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEventTransfersLogs, type GetSelfEventTransfersLogsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetThread, GetThreadEvent, type GetThreadEventProps, GetThreadEvents, type GetThreadEventsProps, GetThreadGroup, type GetThreadGroupProps, GetThreadGroups, type GetThreadGroupsProps, GetThreadMember, type GetThreadMemberProps, GetThreadMembers, type GetThreadMembersProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessageReplies, type GetThreadMessageRepliesProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetThreads, type GetThreadsProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PURCHASES_QUERY_KEY, LISTING_PURCHASE_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkPreview, type ListingPurchase, type ListingRegistration, MANAGED_CHANNELS_QUERY_KEY, MANAGED_CHANNEL_COLLECTIONS_QUERY_KEY, MANAGED_CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, MANAGED_CHANNEL_COLLECTION_QUERY_KEY, MANAGED_CHANNEL_CONTENTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, MANAGED_CHANNEL_CONTENT_GUESTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_INTERESTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_QUERY_KEY, MANAGED_CHANNEL_INTERESTS_QUERY_KEY, MANAGED_CHANNEL_QUERY_KEY, MANAGED_CHANNEL_SUBSCRIBERS_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPurchase, MarkUnread, type MarkUnreadParams, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Page, type PageType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, PurchaseStatus, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventRegistrationPurchaseSession, type RemoveSelfEventRegistrationPurchaseSessionParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_COUPONS_QUERY_KEY, SELF_EVENT_PASSES_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PAYMENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SESSIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SESSION_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_SESSIONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_SESSION_PASSES_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_FEED_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_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_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_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ALL_GROUP_EVENTS_QUERY_DATA, SET_BENEFITS_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_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_PASS_TYPES_QUERY_DATA, SET_EVENT_PASS_TYPE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_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_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_EMAIL_QUERY_DATA, SET_LISTING_PURCHASE_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_LISTING_REGISTRATION_QUERY_KEY, SET_MANAGED_CHANNELS_QUERY_DATA, SET_MANAGED_CHANNEL_COLLECTIONS_QUERY_DATA, SET_MANAGED_CHANNEL_COLLECTION_QUERY_DATA, SET_MANAGED_CHANNEL_CONTENTS_QUERY_DATA, SET_MANAGED_CHANNEL_CONTENT_QUERY_DATA, SET_MANAGED_CHANNEL_QUERY_DATA, SET_MANAGED_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_MANAGED_CONTENT_ACTIVITIES_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_PASSES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PAYMENT_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SESSIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SESSION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_SESSIONS_INTENT_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_SESSION_PASSES_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_THREADS_QUERY_DATA, SET_THREAD_EVENTS_QUERY_DATA, SET_THREAD_EVENT_QUERY_DATA, SET_THREAD_GROUPS_QUERY_DATA, SET_THREAD_GROUP_QUERY_DATA, SET_THREAD_MEMBERS_QUERY_DATA, SET_THREAD_MEMBER_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_MESSAGE_REPLIES_QUERY_DATA, SET_THREAD_QUERY_DATA, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, type Scan, type Schedule, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SessionLocation, type SessionPass, SessionPassStatus, type SessionQuestion, type SessionQuestionResponse, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, SubmitSelfEventRegistrationSessions, type SubmitSelfEventRegistrationSessionsParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, SupportedLocale, THREADS_QUERY_KEY, THREAD_EVENTS_QUERY_KEY, THREAD_EVENT_QUERY_KEY, THREAD_GROUPS_QUERY_KEY, THREAD_GROUP_QUERY_KEY, THREAD_MEMBERS_QUERY_KEY, THREAD_MEMBER_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_MESSAGE_REPLIES_QUERY_KEY, THREAD_QUERY_KEY, type TeamMember, type Thread, ThreadAccessLevel, type ThreadInvitation, ThreadInvitationStatus, type ThreadMember, ThreadMemberRole, type ThreadMessage, type ThreadMessageReaction, ThreadMessageType, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPurchase, type TransferPurchaseParams, UndoCheckinListingRegistrationPurchase, type UndoCheckinListingRegistrationPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPurchaseResponses, type UpdateListingRegistrationPurchaseResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationPurchaseResponses, type UpdateSelfEventRegistrationPurchaseResponsesParams, UpdateSelfEventRegistrationPurchaseSessionResponses, type UpdateSelfEventRegistrationPurchaseSessionResponsesParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UpdateThread, UpdateThreadMember, type UpdateThreadMemberParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadChannelContentImage, type UploadChannelContentImageParams, UploadFile, type UploadFileParams, type User, 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, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddFreePurchaseAddOns, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventRegistrationPurchaseSession, useAddSelfEventSession, useAddSelfInterests, useAddThreadMember, useAddThreadMessageReaction, useAddThreadMessageReply, useBlockIntegration, useCancelGroupInvitation, useCancelGroupRequest, useCancelPurchase, useCancelSubscription, useCapturePaymentIntent, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useCreateThread, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDeleteThreadMember, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetAllGroupEvents, useGetBenefits, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannels, useGetContent, useGetContentInterests, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventPassType, useGetEventPassTypes, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingRegistrationPurchaseSections, useGetManagedChannel, useGetManagedChannelCollection, useGetManagedChannelCollectionContents, useGetManagedChannelCollections, useGetManagedChannelContent, useGetManagedChannelContentActivities, useGetManagedChannelContentGuests, useGetManagedChannelContentInterests, useGetManagedChannelContents, useGetManagedChannelInterests, useGetManagedChannelSubscribers, useGetManagedChannels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventCoupons, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPurchase, useGetSelfEventListingPurchases, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventPasses, useGetSelfEventRegistration, useGetSelfEventRegistrationCoupon, useGetSelfEventRegistrationCouponPurchases, useGetSelfEventRegistrationCoupons, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPayment, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseAddOnsIntent, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationPurchaseSessionPass, useGetSelfEventRegistrationPurchaseSessions, useGetSelfEventRegistrationSessionPasses, useGetSelfEventRegistrationSessionsIntent, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEventTransfersLogs, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSubscribedChannels, useGetSubscribedContents, useGetThread, useGetThreadEvent, useGetThreadEvents, useGetThreadGroup, useGetThreadGroups, useGetThreadMember, useGetThreadMembers, useGetThreadMessage, useGetThreadMessageReplies, useGetThreadMessages, useGetThreads, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, useMarkUnread, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventRegistrationPurchaseSession, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSetContentPublishSchedule, useSubmitSelfEventRegistration, useSubmitSelfEventRegistrationSessions, useTransferPurchase, useUndoCheckinListingRegistrationPurchase, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPurchaseResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationPurchaseResponses, useUpdateSelfEventRegistrationPurchaseSessionResponses, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateThread, useUpdateThreadMember, useUpdateThreadMessage, useUploadChannelContentImage, useUploadFile };