@connectedxm/client 0.5.17 → 0.5.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -839,20 +839,20 @@ interface GroupMembership extends BaseGroupMembership {
839
839
  updatedAt: string;
840
840
  }
841
841
  declare const isTypeGroupMembership: (groupMembership: BaseGroupMembership | GroupMembership) => groupMembership is GroupMembership;
842
- declare enum ContentTypeFormat {
842
+ declare enum ChannelFormat {
843
843
  article = "article",
844
844
  podcast = "podcast",
845
845
  video = "video"
846
846
  }
847
- interface BaseContentType {
847
+ interface BaseChannel {
848
848
  id: string;
849
849
  slug: string;
850
850
  name: string;
851
851
  description: string | null;
852
- format: ContentTypeFormat;
852
+ format: ChannelFormat;
853
853
  image: BaseImage;
854
854
  }
855
- interface ContentType extends BaseContentType {
855
+ interface Channel extends BaseChannel {
856
856
  priority: number;
857
857
  externalUrl: string | null;
858
858
  appleUrl: string | null;
@@ -861,7 +861,7 @@ interface ContentType extends BaseContentType {
861
861
  youtubeUrl: string | null;
862
862
  hosts: BaseAccount[];
863
863
  }
864
- declare const isTypeContentType: (contentType: BaseContentType | ContentType) => contentType is ContentType;
864
+ declare const isTypeChannel: (channel: BaseChannel | Channel) => channel is Channel;
865
865
  interface BaseContent {
866
866
  id: string;
867
867
  featured: boolean;
@@ -872,7 +872,7 @@ interface BaseContent {
872
872
  audioUrl: string | null;
873
873
  videoUrl: string | null;
874
874
  duration: string | null;
875
- contentType: BaseContentType;
875
+ channel: BaseChannel;
876
876
  published: string | null;
877
877
  }
878
878
  interface Content extends BaseContent {
@@ -1120,7 +1120,7 @@ interface LinkPreview {
1120
1120
  siteName: string | null;
1121
1121
  description: string | null;
1122
1122
  mediaType: string | null;
1123
- contentType: string | null;
1123
+ channel: string | null;
1124
1124
  image: string | null;
1125
1125
  imageWidth: number | null;
1126
1126
  imageHeight: number | null;
@@ -1735,28 +1735,28 @@ interface GetContentsParams extends InfiniteQueryParams {
1735
1735
  declare const GetContents: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
1736
1736
  declare const useGetContents: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1737
1737
 
1738
- declare const CONTENT_TYPE_QUERY_KEY: (contentTypeId: string) => QueryKey;
1739
- declare const SET_CONTENT_TYPE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_TYPE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContentType>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1740
- interface GetContentTypeParams extends SingleQueryParams {
1741
- contentTypeId: string;
1738
+ declare const CHANNEL_QUERY_KEY: (channelId: string) => QueryKey;
1739
+ declare const SET_CHANNEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannel>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1740
+ interface GetChannelParams extends SingleQueryParams {
1741
+ channelId: string;
1742
1742
  }
1743
- declare const GetContentType: ({ contentTypeId, clientApiParams, }: GetContentTypeParams) => Promise<ConnectedXMResponse<ContentType>>;
1744
- declare const useGetContentType: (contentTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetContentType>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ContentType>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1743
+ declare const GetChannel: ({ channelId, clientApiParams, }: GetChannelParams) => Promise<ConnectedXMResponse<Channel>>;
1744
+ declare const useGetChannel: (channelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1745
1745
 
1746
- declare const CONTENT_TYPE_CONTENTS_QUERY_KEY: (contentTypeId: string) => QueryKey;
1747
- declare const SET_CONTENT_TYPE_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_TYPE_CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContentTypeContents>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1748
- interface GetContentTypeContentsParams extends InfiniteQueryParams {
1749
- contentTypeId: string;
1746
+ declare const CHANNEL_CONTENTS_QUERY_KEY: (channelId: string) => QueryKey;
1747
+ declare const SET_CHANNEL_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContents>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1748
+ interface GetChannelContentsParams extends InfiniteQueryParams {
1749
+ channelId: string;
1750
1750
  }
1751
- declare const GetContentTypeContents: ({ pageParam, pageSize, orderBy, search, contentTypeId, queryClient, clientApiParams, locale, }: GetContentTypeContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
1752
- declare const useGetContentTypeContents: (contentTypeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContentTypeContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1751
+ declare const GetChannelContents: ({ pageParam, pageSize, orderBy, search, channelId, queryClient, clientApiParams, locale, }: GetChannelContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
1752
+ declare const useGetChannelContents: (channelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1753
1753
 
1754
- declare const CONTENT_TYPES_QUERY_KEY: () => QueryKey;
1755
- declare const SET_CONTENT_TYPES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContentTypes>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1756
- interface GetContentTypesParams extends InfiniteQueryParams {
1754
+ declare const CHANNELS_QUERY_KEY: () => QueryKey;
1755
+ declare const SET_CHANNELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannels>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1756
+ interface GetChannelsParams extends InfiniteQueryParams {
1757
1757
  }
1758
- declare const GetContentTypes: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetContentTypesParams) => Promise<ConnectedXMResponse<ContentType[]>>;
1759
- declare const useGetContentTypes: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContentTypes>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ContentType[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1758
+ declare const GetChannels: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetChannelsParams) => Promise<ConnectedXMResponse<Channel[]>>;
1759
+ declare const useGetChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Channel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1760
1760
 
1761
1761
  declare const EVENT_QUERY_KEY: (eventId: string) => QueryKey;
1762
1762
  declare const SET_EVENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -3262,4 +3262,4 @@ interface UploadFileParams extends MutationParams {
3262
3262
  declare const UploadFile: ({ clientApiParams, dataUri, name, }: UploadFileParams) => Promise<ConnectedXMResponse<File>>;
3263
3263
  declare const useUploadFile: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UploadFile>>, Omit<UploadFileParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<File>, axios.AxiosError<ConnectedXMResponse<File>, any>, Omit<UploadFileParams, "queryClient" | "clientApiParams">, unknown>;
3264
3264
 
3265
- export { 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_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseContentType, 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 BasePayment, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type CheckoutResponse, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, 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, Currency, DeactivateGroup, type DeactivateGroupParams, DeleteActivity, type DeleteActivityParams, 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, DemoteGroupModerator, type DemoteGroupModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type EventWithSessions, type EventWithSpeakers, type EventWithSponsors, 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, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, 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, GetInterests, type GetInterestsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingRegistrationPurchaseSections, type GetListingRegistrationPurchaseSectionsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, 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, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, 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, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, 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, type LinkPreview, type ListingPurchase, type ListingRegistration, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_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_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_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_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_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_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_EVENT_REGISTRATION_STATUS_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, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UndoCheckinListingRegistrationPurchase, type UndoCheckinListingRegistrationPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, 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, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UploadFile, type UploadFileParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeContent, isTypeContentType, 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, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelEventRegistration, useCancelGroupInvitation, useCancelGroupRequest, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetInterests, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingRegistrationPurchaseSections, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPurchase, useGetSelfEventListingPurchases, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, usePromoteGroupMember, useRegisterCancelledEventRegistration, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUndoCheckinListingRegistrationPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPurchaseResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUploadFile };
3265
+ export { 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_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, 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 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 BasePayment, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, CHANNELS_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type Channel, ChannelFormat, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type CheckoutResponse, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, type CreateActivity, 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, Currency, DeactivateGroup, type DeactivateGroupParams, DeleteActivity, type DeleteActivityParams, 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, DemoteGroupModerator, type DemoteGroupModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type EventWithSessions, type EventWithSpeakers, type EventWithSponsors, 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, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetChannel, GetChannelContents, type GetChannelContentsParams, type GetChannelParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, GetContentActivities, type GetContentActivitiesParams, 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, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, 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, GetInterests, type GetInterestsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingRegistrationPurchaseSections, type GetListingRegistrationPurchaseSectionsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, 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, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, 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, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, 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, type LinkPreview, type ListingPurchase, type ListingRegistration, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_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_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_CONTENTS_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_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_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_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_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_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_EVENT_REGISTRATION_STATUS_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, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UndoCheckinListingRegistrationPurchase, type UndoCheckinListingRegistrationPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, 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, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, 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, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelEventRegistration, useCancelGroupInvitation, useCancelGroupRequest, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetChannel, useGetChannelContents, useGetChannels, useGetContent, useGetContentActivities, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetInterests, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingRegistrationPurchaseSections, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPurchase, useGetSelfEventListingPurchases, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, usePromoteGroupMember, useRegisterCancelledEventRegistration, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUndoCheckinListingRegistrationPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPurchaseResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUploadFile };
package/dist/index.d.ts CHANGED
@@ -839,20 +839,20 @@ interface GroupMembership extends BaseGroupMembership {
839
839
  updatedAt: string;
840
840
  }
841
841
  declare const isTypeGroupMembership: (groupMembership: BaseGroupMembership | GroupMembership) => groupMembership is GroupMembership;
842
- declare enum ContentTypeFormat {
842
+ declare enum ChannelFormat {
843
843
  article = "article",
844
844
  podcast = "podcast",
845
845
  video = "video"
846
846
  }
847
- interface BaseContentType {
847
+ interface BaseChannel {
848
848
  id: string;
849
849
  slug: string;
850
850
  name: string;
851
851
  description: string | null;
852
- format: ContentTypeFormat;
852
+ format: ChannelFormat;
853
853
  image: BaseImage;
854
854
  }
855
- interface ContentType extends BaseContentType {
855
+ interface Channel extends BaseChannel {
856
856
  priority: number;
857
857
  externalUrl: string | null;
858
858
  appleUrl: string | null;
@@ -861,7 +861,7 @@ interface ContentType extends BaseContentType {
861
861
  youtubeUrl: string | null;
862
862
  hosts: BaseAccount[];
863
863
  }
864
- declare const isTypeContentType: (contentType: BaseContentType | ContentType) => contentType is ContentType;
864
+ declare const isTypeChannel: (channel: BaseChannel | Channel) => channel is Channel;
865
865
  interface BaseContent {
866
866
  id: string;
867
867
  featured: boolean;
@@ -872,7 +872,7 @@ interface BaseContent {
872
872
  audioUrl: string | null;
873
873
  videoUrl: string | null;
874
874
  duration: string | null;
875
- contentType: BaseContentType;
875
+ channel: BaseChannel;
876
876
  published: string | null;
877
877
  }
878
878
  interface Content extends BaseContent {
@@ -1120,7 +1120,7 @@ interface LinkPreview {
1120
1120
  siteName: string | null;
1121
1121
  description: string | null;
1122
1122
  mediaType: string | null;
1123
- contentType: string | null;
1123
+ channel: string | null;
1124
1124
  image: string | null;
1125
1125
  imageWidth: number | null;
1126
1126
  imageHeight: number | null;
@@ -1735,28 +1735,28 @@ interface GetContentsParams extends InfiniteQueryParams {
1735
1735
  declare const GetContents: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
1736
1736
  declare const useGetContents: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1737
1737
 
1738
- declare const CONTENT_TYPE_QUERY_KEY: (contentTypeId: string) => QueryKey;
1739
- declare const SET_CONTENT_TYPE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_TYPE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContentType>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1740
- interface GetContentTypeParams extends SingleQueryParams {
1741
- contentTypeId: string;
1738
+ declare const CHANNEL_QUERY_KEY: (channelId: string) => QueryKey;
1739
+ declare const SET_CHANNEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannel>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1740
+ interface GetChannelParams extends SingleQueryParams {
1741
+ channelId: string;
1742
1742
  }
1743
- declare const GetContentType: ({ contentTypeId, clientApiParams, }: GetContentTypeParams) => Promise<ConnectedXMResponse<ContentType>>;
1744
- declare const useGetContentType: (contentTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetContentType>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ContentType>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1743
+ declare const GetChannel: ({ channelId, clientApiParams, }: GetChannelParams) => Promise<ConnectedXMResponse<Channel>>;
1744
+ declare const useGetChannel: (channelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1745
1745
 
1746
- declare const CONTENT_TYPE_CONTENTS_QUERY_KEY: (contentTypeId: string) => QueryKey;
1747
- declare const SET_CONTENT_TYPE_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_TYPE_CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContentTypeContents>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1748
- interface GetContentTypeContentsParams extends InfiniteQueryParams {
1749
- contentTypeId: string;
1746
+ declare const CHANNEL_CONTENTS_QUERY_KEY: (channelId: string) => QueryKey;
1747
+ declare const SET_CHANNEL_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContents>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1748
+ interface GetChannelContentsParams extends InfiniteQueryParams {
1749
+ channelId: string;
1750
1750
  }
1751
- declare const GetContentTypeContents: ({ pageParam, pageSize, orderBy, search, contentTypeId, queryClient, clientApiParams, locale, }: GetContentTypeContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
1752
- declare const useGetContentTypeContents: (contentTypeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContentTypeContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1751
+ declare const GetChannelContents: ({ pageParam, pageSize, orderBy, search, channelId, queryClient, clientApiParams, locale, }: GetChannelContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
1752
+ declare const useGetChannelContents: (channelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1753
1753
 
1754
- declare const CONTENT_TYPES_QUERY_KEY: () => QueryKey;
1755
- declare const SET_CONTENT_TYPES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContentTypes>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1756
- interface GetContentTypesParams extends InfiniteQueryParams {
1754
+ declare const CHANNELS_QUERY_KEY: () => QueryKey;
1755
+ declare const SET_CHANNELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannels>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1756
+ interface GetChannelsParams extends InfiniteQueryParams {
1757
1757
  }
1758
- declare const GetContentTypes: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetContentTypesParams) => Promise<ConnectedXMResponse<ContentType[]>>;
1759
- declare const useGetContentTypes: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContentTypes>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ContentType[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1758
+ declare const GetChannels: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetChannelsParams) => Promise<ConnectedXMResponse<Channel[]>>;
1759
+ declare const useGetChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Channel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1760
1760
 
1761
1761
  declare const EVENT_QUERY_KEY: (eventId: string) => QueryKey;
1762
1762
  declare const SET_EVENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -3262,4 +3262,4 @@ interface UploadFileParams extends MutationParams {
3262
3262
  declare const UploadFile: ({ clientApiParams, dataUri, name, }: UploadFileParams) => Promise<ConnectedXMResponse<File>>;
3263
3263
  declare const useUploadFile: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UploadFile>>, Omit<UploadFileParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<File>, axios.AxiosError<ConnectedXMResponse<File>, any>, Omit<UploadFileParams, "queryClient" | "clientApiParams">, unknown>;
3264
3264
 
3265
- export { 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_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseContentType, 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 BasePayment, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type CheckoutResponse, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, 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, Currency, DeactivateGroup, type DeactivateGroupParams, DeleteActivity, type DeleteActivityParams, 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, DemoteGroupModerator, type DemoteGroupModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type EventWithSessions, type EventWithSpeakers, type EventWithSponsors, 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, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, 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, GetInterests, type GetInterestsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingRegistrationPurchaseSections, type GetListingRegistrationPurchaseSectionsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, 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, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, 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, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, 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, type LinkPreview, type ListingPurchase, type ListingRegistration, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_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_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_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_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_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_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_EVENT_REGISTRATION_STATUS_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, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UndoCheckinListingRegistrationPurchase, type UndoCheckinListingRegistrationPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, 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, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UploadFile, type UploadFileParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeContent, isTypeContentType, 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, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelEventRegistration, useCancelGroupInvitation, useCancelGroupRequest, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetInterests, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingRegistrationPurchaseSections, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPurchase, useGetSelfEventListingPurchases, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, usePromoteGroupMember, useRegisterCancelledEventRegistration, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUndoCheckinListingRegistrationPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPurchaseResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUploadFile };
3265
+ export { 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_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, 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 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 BasePayment, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, CHANNELS_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type Channel, ChannelFormat, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type CheckoutResponse, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, type CreateActivity, 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, Currency, DeactivateGroup, type DeactivateGroupParams, DeleteActivity, type DeleteActivityParams, 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, DemoteGroupModerator, type DemoteGroupModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type EventWithSessions, type EventWithSpeakers, type EventWithSponsors, 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, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetChannel, GetChannelContents, type GetChannelContentsParams, type GetChannelParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, GetContentActivities, type GetContentActivitiesParams, 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, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, 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, GetInterests, type GetInterestsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingRegistrationPurchaseSections, type GetListingRegistrationPurchaseSectionsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, 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, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, 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, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, 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, type LinkPreview, type ListingPurchase, type ListingRegistration, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_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_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_CONTENTS_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_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_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_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_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_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_EVENT_REGISTRATION_STATUS_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, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UndoCheckinListingRegistrationPurchase, type UndoCheckinListingRegistrationPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, 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, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, 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, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelEventRegistration, useCancelGroupInvitation, useCancelGroupRequest, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetChannel, useGetChannelContents, useGetChannels, useGetContent, useGetContentActivities, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetInterests, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingRegistrationPurchaseSections, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPurchase, useGetSelfEventListingPurchases, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, usePromoteGroupMember, useRegisterCancelledEventRegistration, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUndoCheckinListingRegistrationPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPurchaseResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUploadFile };
package/dist/index.js CHANGED
@@ -57,12 +57,12 @@ __export(src_exports, {
57
57
  AdvertisementType: () => AdvertisementType,
58
58
  AppendInfiniteQuery: () => AppendInfiniteQuery,
59
59
  BENEFITS_QUERY_KEY: () => BENEFITS_QUERY_KEY,
60
+ CHANNELS_QUERY_KEY: () => CHANNELS_QUERY_KEY,
61
+ CHANNEL_CONTENTS_QUERY_KEY: () => CHANNEL_CONTENTS_QUERY_KEY,
62
+ CHANNEL_QUERY_KEY: () => CHANNEL_QUERY_KEY,
60
63
  CONTENTS_QUERY_KEY: () => CONTENTS_QUERY_KEY,
61
64
  CONTENT_ACTIVITIES_QUERY_KEY: () => CONTENT_ACTIVITIES_QUERY_KEY,
62
65
  CONTENT_QUERY_KEY: () => CONTENT_QUERY_KEY,
63
- CONTENT_TYPES_QUERY_KEY: () => CONTENT_TYPES_QUERY_KEY,
64
- CONTENT_TYPE_CONTENTS_QUERY_KEY: () => CONTENT_TYPE_CONTENTS_QUERY_KEY,
65
- CONTENT_TYPE_QUERY_KEY: () => CONTENT_TYPE_QUERY_KEY,
66
66
  CacheIndividualQueries: () => CacheIndividualQueries,
67
67
  CancelEventRegistration: () => CancelEventRegistration,
68
68
  CancelGroupInvitation: () => CancelGroupInvitation,
@@ -71,11 +71,11 @@ __export(src_exports, {
71
71
  CancelTransfer: () => CancelTransfer,
72
72
  CaptureInvoicePayment: () => CaptureInvoicePayment,
73
73
  CaptureSelfEventRegistrationPayment: () => CaptureSelfEventRegistrationPayment,
74
+ ChannelFormat: () => ChannelFormat,
74
75
  CheckinListingRegistrationPurchase: () => CheckinListingRegistrationPurchase,
75
76
  CompleteEventActivation: () => CompleteEventActivation,
76
77
  ConnectedXMProvider: () => ConnectedXMProvider,
77
78
  ContentGuestType: () => ContentGuestType,
78
- ContentTypeFormat: () => ContentTypeFormat,
79
79
  CouponType: () => CouponType,
80
80
  CreateEventLead: () => CreateEventLead,
81
81
  CreateGroup: () => CreateGroup,
@@ -156,12 +156,12 @@ __export(src_exports, {
156
156
  GetBaseInfiniteQueryKeys: () => GetBaseInfiniteQueryKeys,
157
157
  GetBaseSingleQueryKeys: () => GetBaseSingleQueryKeys,
158
158
  GetBenefits: () => GetBenefits,
159
+ GetChannel: () => GetChannel,
160
+ GetChannelContents: () => GetChannelContents,
161
+ GetChannels: () => GetChannels,
159
162
  GetClientAPI: () => GetClientAPI,
160
163
  GetContent: () => GetContent,
161
164
  GetContentActivities: () => GetContentActivities,
162
- GetContentType: () => GetContentType,
163
- GetContentTypeContents: () => GetContentTypeContents,
164
- GetContentTypes: () => GetContentTypes,
165
165
  GetContents: () => GetContents,
166
166
  GetErrorMessage: () => GetErrorMessage,
167
167
  GetEvent: () => GetEvent,
@@ -361,12 +361,12 @@ __export(src_exports, {
361
361
  SET_ACTIVITY_QUERY_DATA: () => SET_ACTIVITY_QUERY_DATA,
362
362
  SET_ADVERTISEMENT_QUERY_DATA: () => SET_ADVERTISEMENT_QUERY_DATA,
363
363
  SET_BENEFITS_QUERY_DATA: () => SET_BENEFITS_QUERY_DATA,
364
+ SET_CHANNELS_QUERY_DATA: () => SET_CHANNELS_QUERY_DATA,
365
+ SET_CHANNEL_CONTENTS_QUERY_DATA: () => SET_CHANNEL_CONTENTS_QUERY_DATA,
366
+ SET_CHANNEL_QUERY_DATA: () => SET_CHANNEL_QUERY_DATA,
364
367
  SET_CONTENTS_QUERY_DATA: () => SET_CONTENTS_QUERY_DATA,
365
368
  SET_CONTENT_ACTIVITIES_QUERY_DATA: () => SET_CONTENT_ACTIVITIES_QUERY_DATA,
366
369
  SET_CONTENT_QUERY_DATA: () => SET_CONTENT_QUERY_DATA,
367
- SET_CONTENT_TYPES_QUERY_DATA: () => SET_CONTENT_TYPES_QUERY_DATA,
368
- SET_CONTENT_TYPE_CONTENTS_QUERY_DATA: () => SET_CONTENT_TYPE_CONTENTS_QUERY_DATA,
369
- SET_CONTENT_TYPE_QUERY_DATA: () => SET_CONTENT_TYPE_QUERY_DATA,
370
370
  SET_EVENTS_FEATURED_QUERY_DATA: () => SET_EVENTS_FEATURED_QUERY_DATA,
371
371
  SET_EVENTS_QUERY_DATA: () => SET_EVENTS_QUERY_DATA,
372
372
  SET_EVENT_ACTIVITIES_QUERY_DATA: () => SET_EVENT_ACTIVITIES_QUERY_DATA,
@@ -462,8 +462,8 @@ __export(src_exports, {
462
462
  isTypeAdvertisement: () => isTypeAdvertisement,
463
463
  isTypeAnnouncement: () => isTypeAnnouncement,
464
464
  isTypeBenefit: () => isTypeBenefit,
465
+ isTypeChannel: () => isTypeChannel,
465
466
  isTypeContent: () => isTypeContent,
466
- isTypeContentType: () => isTypeContentType,
467
467
  isTypeCoupon: () => isTypeCoupon,
468
468
  isTypeEvent: () => isTypeEvent,
469
469
  isTypeEventActivation: () => isTypeEventActivation,
@@ -556,11 +556,11 @@ __export(src_exports, {
556
556
  useGetActivityComments: () => useGetActivityComments,
557
557
  useGetAdvertisement: () => useGetAdvertisement,
558
558
  useGetBenefits: () => useGetBenefits,
559
+ useGetChannel: () => useGetChannel,
560
+ useGetChannelContents: () => useGetChannelContents,
561
+ useGetChannels: () => useGetChannels,
559
562
  useGetContent: () => useGetContent,
560
563
  useGetContentActivities: () => useGetContentActivities,
561
- useGetContentType: () => useGetContentType,
562
- useGetContentTypeContents: () => useGetContentTypeContents,
563
- useGetContentTypes: () => useGetContentTypes,
564
564
  useGetContents: () => useGetContents,
565
565
  useGetEvent: () => useGetEvent,
566
566
  useGetEventActivities: () => useGetEventActivities,
@@ -1016,14 +1016,14 @@ var GroupMembershipRole = /* @__PURE__ */ ((GroupMembershipRole2) => {
1016
1016
  var isTypeGroupMembership = (groupMembership) => {
1017
1017
  return groupMembership.createdAt !== void 0;
1018
1018
  };
1019
- var ContentTypeFormat = /* @__PURE__ */ ((ContentTypeFormat2) => {
1020
- ContentTypeFormat2["article"] = "article";
1021
- ContentTypeFormat2["podcast"] = "podcast";
1022
- ContentTypeFormat2["video"] = "video";
1023
- return ContentTypeFormat2;
1024
- })(ContentTypeFormat || {});
1025
- var isTypeContentType = (contentType) => {
1026
- return contentType.priority !== void 0;
1019
+ var ChannelFormat = /* @__PURE__ */ ((ChannelFormat2) => {
1020
+ ChannelFormat2["article"] = "article";
1021
+ ChannelFormat2["podcast"] = "podcast";
1022
+ ChannelFormat2["video"] = "video";
1023
+ return ChannelFormat2;
1024
+ })(ChannelFormat || {});
1025
+ var isTypeChannel = (channel) => {
1026
+ return channel.priority !== void 0;
1027
1027
  };
1028
1028
  var isTypeContent = (content) => {
1029
1029
  return content.body !== void 0;
@@ -2821,18 +2821,18 @@ var useGetContentActivities = (contentId = "", params = {}, options = {}) => {
2821
2821
  );
2822
2822
  };
2823
2823
 
2824
- // src/queries/contents/useGetContentTypes.ts
2825
- var CONTENT_TYPES_QUERY_KEY = () => ["CONTENT_TYPES"];
2826
- var SET_CONTENT_TYPES_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
2824
+ // src/queries/contents/useGetChannels.ts
2825
+ var CHANNELS_QUERY_KEY = () => ["CHANNELS"];
2826
+ var SET_CHANNELS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
2827
2827
  client.setQueryData(
2828
2828
  [
2829
- ...CONTENT_TYPES_QUERY_KEY(...keyParams),
2829
+ ...CHANNELS_QUERY_KEY(...keyParams),
2830
2830
  ...GetBaseInfiniteQueryKeys(...baseKeys)
2831
2831
  ],
2832
2832
  setFirstPageData(response)
2833
2833
  );
2834
2834
  };
2835
- var GetContentTypes = async ({
2835
+ var GetChannels = async ({
2836
2836
  pageParam,
2837
2837
  pageSize,
2838
2838
  orderBy,
@@ -2842,7 +2842,7 @@ var GetContentTypes = async ({
2842
2842
  locale
2843
2843
  }) => {
2844
2844
  const clientApi = await GetClientAPI(clientApiParams);
2845
- const { data } = await clientApi.get(`/contentTypes`, {
2845
+ const { data } = await clientApi.get(`/channels`, {
2846
2846
  params: {
2847
2847
  page: pageParam || void 0,
2848
2848
  pageSize: pageSize || void 0,
@@ -2854,87 +2854,87 @@ var GetContentTypes = async ({
2854
2854
  CacheIndividualQueries(
2855
2855
  data,
2856
2856
  queryClient,
2857
- (contentTypeId) => CONTENT_TYPE_QUERY_KEY(contentTypeId),
2857
+ (channelId) => CHANNEL_QUERY_KEY(channelId),
2858
2858
  locale
2859
2859
  );
2860
2860
  }
2861
2861
  return data;
2862
2862
  };
2863
- var useGetContentTypes = (params = {}, options = {}) => {
2863
+ var useGetChannels = (params = {}, options = {}) => {
2864
2864
  return useConnectedInfiniteQuery(
2865
- CONTENT_TYPES_QUERY_KEY(),
2866
- (params2) => GetContentTypes({ ...params2 }),
2865
+ CHANNELS_QUERY_KEY(),
2866
+ (params2) => GetChannels({ ...params2 }),
2867
2867
  params,
2868
2868
  options
2869
2869
  );
2870
2870
  };
2871
2871
 
2872
- // src/queries/contents/useGetContentType.ts
2873
- var CONTENT_TYPE_QUERY_KEY = (contentTypeId) => [
2874
- ...CONTENT_TYPES_QUERY_KEY(),
2875
- contentTypeId
2872
+ // src/queries/contents/useGetChannel.ts
2873
+ var CHANNEL_QUERY_KEY = (channelId) => [
2874
+ ...CHANNELS_QUERY_KEY(),
2875
+ channelId
2876
2876
  ];
2877
- var SET_CONTENT_TYPE_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
2877
+ var SET_CHANNEL_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
2878
2878
  client.setQueryData(
2879
2879
  [
2880
- ...CONTENT_TYPE_QUERY_KEY(...keyParams),
2880
+ ...CHANNEL_QUERY_KEY(...keyParams),
2881
2881
  ...GetBaseSingleQueryKeys(...baseKeys)
2882
2882
  ],
2883
2883
  response
2884
2884
  );
2885
2885
  };
2886
- var GetContentType = async ({
2887
- contentTypeId,
2886
+ var GetChannel = async ({
2887
+ channelId,
2888
2888
  clientApiParams
2889
2889
  }) => {
2890
2890
  const clientApi = await GetClientAPI(clientApiParams);
2891
- const { data } = await clientApi.get(`/contentTypes/${contentTypeId}`);
2891
+ const { data } = await clientApi.get(`/channels/${channelId}`);
2892
2892
  return data;
2893
2893
  };
2894
- var useGetContentType = (contentTypeId = "", options = {}) => {
2894
+ var useGetChannel = (channelId = "", options = {}) => {
2895
2895
  return useConnectedSingleQuery_default(
2896
- CONTENT_TYPE_QUERY_KEY(contentTypeId),
2897
- (params) => GetContentType({ contentTypeId: contentTypeId || "", ...params }),
2896
+ CHANNEL_QUERY_KEY(channelId),
2897
+ (params) => GetChannel({ channelId: channelId || "", ...params }),
2898
2898
  {
2899
2899
  ...options,
2900
- enabled: !!contentTypeId && (options?.enabled ?? true)
2900
+ enabled: !!channelId && (options?.enabled ?? true)
2901
2901
  }
2902
2902
  );
2903
2903
  };
2904
2904
 
2905
- // src/queries/contents/useGetContentTypeContents.ts
2906
- var CONTENT_TYPE_CONTENTS_QUERY_KEY = (contentTypeId) => [...CONTENT_TYPE_QUERY_KEY(contentTypeId), "CONTENTS"];
2907
- var SET_CONTENT_TYPE_CONTENTS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
2905
+ // src/queries/contents/useGetChannelContents.ts
2906
+ var CHANNEL_CONTENTS_QUERY_KEY = (channelId) => [
2907
+ ...CHANNEL_QUERY_KEY(channelId),
2908
+ "CONTENTS"
2909
+ ];
2910
+ var SET_CHANNEL_CONTENTS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
2908
2911
  client.setQueryData(
2909
2912
  [
2910
- ...CONTENT_TYPE_CONTENTS_QUERY_KEY(...keyParams),
2913
+ ...CHANNEL_CONTENTS_QUERY_KEY(...keyParams),
2911
2914
  ...GetBaseInfiniteQueryKeys(...baseKeys)
2912
2915
  ],
2913
2916
  setFirstPageData(response)
2914
2917
  );
2915
2918
  };
2916
- var GetContentTypeContents = async ({
2919
+ var GetChannelContents = async ({
2917
2920
  pageParam,
2918
2921
  pageSize,
2919
2922
  orderBy,
2920
2923
  search,
2921
- contentTypeId,
2924
+ channelId,
2922
2925
  queryClient,
2923
2926
  clientApiParams,
2924
2927
  locale
2925
2928
  }) => {
2926
2929
  const clientApi = await GetClientAPI(clientApiParams);
2927
- const { data } = await clientApi.get(
2928
- `/contentTypes/${contentTypeId}/contents`,
2929
- {
2930
- params: {
2931
- page: pageParam || void 0,
2932
- pageSize: pageSize || void 0,
2933
- orderBy: orderBy || void 0,
2934
- search: search || void 0
2935
- }
2930
+ const { data } = await clientApi.get(`/channels/${channelId}/contents`, {
2931
+ params: {
2932
+ page: pageParam || void 0,
2933
+ pageSize: pageSize || void 0,
2934
+ orderBy: orderBy || void 0,
2935
+ search: search || void 0
2936
2936
  }
2937
- );
2937
+ });
2938
2938
  if (queryClient && data.status === "ok") {
2939
2939
  CacheIndividualQueries(
2940
2940
  data,
@@ -2945,14 +2945,14 @@ var GetContentTypeContents = async ({
2945
2945
  }
2946
2946
  return data;
2947
2947
  };
2948
- var useGetContentTypeContents = (contentTypeId = "", params = {}, options = {}) => {
2948
+ var useGetChannelContents = (channelId = "", params = {}, options = {}) => {
2949
2949
  return useConnectedInfiniteQuery(
2950
- CONTENT_TYPE_CONTENTS_QUERY_KEY(contentTypeId),
2951
- (params2) => GetContentTypeContents({ ...params2, contentTypeId: contentTypeId || "" }),
2950
+ CHANNEL_CONTENTS_QUERY_KEY(channelId),
2951
+ (params2) => GetChannelContents({ ...params2, channelId: channelId || "" }),
2952
2952
  params,
2953
2953
  {
2954
2954
  ...options,
2955
- enabled: !!contentTypeId && (options?.enabled ?? true)
2955
+ enabled: !!channelId && (options?.enabled ?? true)
2956
2956
  }
2957
2957
  );
2958
2958
  };
@@ -8858,12 +8858,12 @@ var useUploadFile = (options = {}) => {
8858
8858
  AdvertisementType,
8859
8859
  AppendInfiniteQuery,
8860
8860
  BENEFITS_QUERY_KEY,
8861
+ CHANNELS_QUERY_KEY,
8862
+ CHANNEL_CONTENTS_QUERY_KEY,
8863
+ CHANNEL_QUERY_KEY,
8861
8864
  CONTENTS_QUERY_KEY,
8862
8865
  CONTENT_ACTIVITIES_QUERY_KEY,
8863
8866
  CONTENT_QUERY_KEY,
8864
- CONTENT_TYPES_QUERY_KEY,
8865
- CONTENT_TYPE_CONTENTS_QUERY_KEY,
8866
- CONTENT_TYPE_QUERY_KEY,
8867
8867
  CacheIndividualQueries,
8868
8868
  CancelEventRegistration,
8869
8869
  CancelGroupInvitation,
@@ -8872,11 +8872,11 @@ var useUploadFile = (options = {}) => {
8872
8872
  CancelTransfer,
8873
8873
  CaptureInvoicePayment,
8874
8874
  CaptureSelfEventRegistrationPayment,
8875
+ ChannelFormat,
8875
8876
  CheckinListingRegistrationPurchase,
8876
8877
  CompleteEventActivation,
8877
8878
  ConnectedXMProvider,
8878
8879
  ContentGuestType,
8879
- ContentTypeFormat,
8880
8880
  CouponType,
8881
8881
  CreateEventLead,
8882
8882
  CreateGroup,
@@ -8957,12 +8957,12 @@ var useUploadFile = (options = {}) => {
8957
8957
  GetBaseInfiniteQueryKeys,
8958
8958
  GetBaseSingleQueryKeys,
8959
8959
  GetBenefits,
8960
+ GetChannel,
8961
+ GetChannelContents,
8962
+ GetChannels,
8960
8963
  GetClientAPI,
8961
8964
  GetContent,
8962
8965
  GetContentActivities,
8963
- GetContentType,
8964
- GetContentTypeContents,
8965
- GetContentTypes,
8966
8966
  GetContents,
8967
8967
  GetErrorMessage,
8968
8968
  GetEvent,
@@ -9162,12 +9162,12 @@ var useUploadFile = (options = {}) => {
9162
9162
  SET_ACTIVITY_QUERY_DATA,
9163
9163
  SET_ADVERTISEMENT_QUERY_DATA,
9164
9164
  SET_BENEFITS_QUERY_DATA,
9165
+ SET_CHANNELS_QUERY_DATA,
9166
+ SET_CHANNEL_CONTENTS_QUERY_DATA,
9167
+ SET_CHANNEL_QUERY_DATA,
9165
9168
  SET_CONTENTS_QUERY_DATA,
9166
9169
  SET_CONTENT_ACTIVITIES_QUERY_DATA,
9167
9170
  SET_CONTENT_QUERY_DATA,
9168
- SET_CONTENT_TYPES_QUERY_DATA,
9169
- SET_CONTENT_TYPE_CONTENTS_QUERY_DATA,
9170
- SET_CONTENT_TYPE_QUERY_DATA,
9171
9171
  SET_EVENTS_FEATURED_QUERY_DATA,
9172
9172
  SET_EVENTS_QUERY_DATA,
9173
9173
  SET_EVENT_ACTIVITIES_QUERY_DATA,
@@ -9263,8 +9263,8 @@ var useUploadFile = (options = {}) => {
9263
9263
  isTypeAdvertisement,
9264
9264
  isTypeAnnouncement,
9265
9265
  isTypeBenefit,
9266
+ isTypeChannel,
9266
9267
  isTypeContent,
9267
- isTypeContentType,
9268
9268
  isTypeCoupon,
9269
9269
  isTypeEvent,
9270
9270
  isTypeEventActivation,
@@ -9357,11 +9357,11 @@ var useUploadFile = (options = {}) => {
9357
9357
  useGetActivityComments,
9358
9358
  useGetAdvertisement,
9359
9359
  useGetBenefits,
9360
+ useGetChannel,
9361
+ useGetChannelContents,
9362
+ useGetChannels,
9360
9363
  useGetContent,
9361
9364
  useGetContentActivities,
9362
- useGetContentType,
9363
- useGetContentTypeContents,
9364
- useGetContentTypes,
9365
9365
  useGetContents,
9366
9366
  useGetEvent,
9367
9367
  useGetEventActivities,
package/dist/index.mjs CHANGED
@@ -310,14 +310,14 @@ var GroupMembershipRole = /* @__PURE__ */ ((GroupMembershipRole2) => {
310
310
  var isTypeGroupMembership = (groupMembership) => {
311
311
  return groupMembership.createdAt !== void 0;
312
312
  };
313
- var ContentTypeFormat = /* @__PURE__ */ ((ContentTypeFormat2) => {
314
- ContentTypeFormat2["article"] = "article";
315
- ContentTypeFormat2["podcast"] = "podcast";
316
- ContentTypeFormat2["video"] = "video";
317
- return ContentTypeFormat2;
318
- })(ContentTypeFormat || {});
319
- var isTypeContentType = (contentType) => {
320
- return contentType.priority !== void 0;
313
+ var ChannelFormat = /* @__PURE__ */ ((ChannelFormat2) => {
314
+ ChannelFormat2["article"] = "article";
315
+ ChannelFormat2["podcast"] = "podcast";
316
+ ChannelFormat2["video"] = "video";
317
+ return ChannelFormat2;
318
+ })(ChannelFormat || {});
319
+ var isTypeChannel = (channel) => {
320
+ return channel.priority !== void 0;
321
321
  };
322
322
  var isTypeContent = (content) => {
323
323
  return content.body !== void 0;
@@ -2117,18 +2117,18 @@ var useGetContentActivities = (contentId = "", params = {}, options = {}) => {
2117
2117
  );
2118
2118
  };
2119
2119
 
2120
- // src/queries/contents/useGetContentTypes.ts
2121
- var CONTENT_TYPES_QUERY_KEY = () => ["CONTENT_TYPES"];
2122
- var SET_CONTENT_TYPES_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
2120
+ // src/queries/contents/useGetChannels.ts
2121
+ var CHANNELS_QUERY_KEY = () => ["CHANNELS"];
2122
+ var SET_CHANNELS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
2123
2123
  client.setQueryData(
2124
2124
  [
2125
- ...CONTENT_TYPES_QUERY_KEY(...keyParams),
2125
+ ...CHANNELS_QUERY_KEY(...keyParams),
2126
2126
  ...GetBaseInfiniteQueryKeys(...baseKeys)
2127
2127
  ],
2128
2128
  setFirstPageData(response)
2129
2129
  );
2130
2130
  };
2131
- var GetContentTypes = async ({
2131
+ var GetChannels = async ({
2132
2132
  pageParam,
2133
2133
  pageSize,
2134
2134
  orderBy,
@@ -2138,7 +2138,7 @@ var GetContentTypes = async ({
2138
2138
  locale
2139
2139
  }) => {
2140
2140
  const clientApi = await GetClientAPI(clientApiParams);
2141
- const { data } = await clientApi.get(`/contentTypes`, {
2141
+ const { data } = await clientApi.get(`/channels`, {
2142
2142
  params: {
2143
2143
  page: pageParam || void 0,
2144
2144
  pageSize: pageSize || void 0,
@@ -2150,87 +2150,87 @@ var GetContentTypes = async ({
2150
2150
  CacheIndividualQueries(
2151
2151
  data,
2152
2152
  queryClient,
2153
- (contentTypeId) => CONTENT_TYPE_QUERY_KEY(contentTypeId),
2153
+ (channelId) => CHANNEL_QUERY_KEY(channelId),
2154
2154
  locale
2155
2155
  );
2156
2156
  }
2157
2157
  return data;
2158
2158
  };
2159
- var useGetContentTypes = (params = {}, options = {}) => {
2159
+ var useGetChannels = (params = {}, options = {}) => {
2160
2160
  return useConnectedInfiniteQuery(
2161
- CONTENT_TYPES_QUERY_KEY(),
2162
- (params2) => GetContentTypes({ ...params2 }),
2161
+ CHANNELS_QUERY_KEY(),
2162
+ (params2) => GetChannels({ ...params2 }),
2163
2163
  params,
2164
2164
  options
2165
2165
  );
2166
2166
  };
2167
2167
 
2168
- // src/queries/contents/useGetContentType.ts
2169
- var CONTENT_TYPE_QUERY_KEY = (contentTypeId) => [
2170
- ...CONTENT_TYPES_QUERY_KEY(),
2171
- contentTypeId
2168
+ // src/queries/contents/useGetChannel.ts
2169
+ var CHANNEL_QUERY_KEY = (channelId) => [
2170
+ ...CHANNELS_QUERY_KEY(),
2171
+ channelId
2172
2172
  ];
2173
- var SET_CONTENT_TYPE_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
2173
+ var SET_CHANNEL_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
2174
2174
  client.setQueryData(
2175
2175
  [
2176
- ...CONTENT_TYPE_QUERY_KEY(...keyParams),
2176
+ ...CHANNEL_QUERY_KEY(...keyParams),
2177
2177
  ...GetBaseSingleQueryKeys(...baseKeys)
2178
2178
  ],
2179
2179
  response
2180
2180
  );
2181
2181
  };
2182
- var GetContentType = async ({
2183
- contentTypeId,
2182
+ var GetChannel = async ({
2183
+ channelId,
2184
2184
  clientApiParams
2185
2185
  }) => {
2186
2186
  const clientApi = await GetClientAPI(clientApiParams);
2187
- const { data } = await clientApi.get(`/contentTypes/${contentTypeId}`);
2187
+ const { data } = await clientApi.get(`/channels/${channelId}`);
2188
2188
  return data;
2189
2189
  };
2190
- var useGetContentType = (contentTypeId = "", options = {}) => {
2190
+ var useGetChannel = (channelId = "", options = {}) => {
2191
2191
  return useConnectedSingleQuery_default(
2192
- CONTENT_TYPE_QUERY_KEY(contentTypeId),
2193
- (params) => GetContentType({ contentTypeId: contentTypeId || "", ...params }),
2192
+ CHANNEL_QUERY_KEY(channelId),
2193
+ (params) => GetChannel({ channelId: channelId || "", ...params }),
2194
2194
  {
2195
2195
  ...options,
2196
- enabled: !!contentTypeId && (options?.enabled ?? true)
2196
+ enabled: !!channelId && (options?.enabled ?? true)
2197
2197
  }
2198
2198
  );
2199
2199
  };
2200
2200
 
2201
- // src/queries/contents/useGetContentTypeContents.ts
2202
- var CONTENT_TYPE_CONTENTS_QUERY_KEY = (contentTypeId) => [...CONTENT_TYPE_QUERY_KEY(contentTypeId), "CONTENTS"];
2203
- var SET_CONTENT_TYPE_CONTENTS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
2201
+ // src/queries/contents/useGetChannelContents.ts
2202
+ var CHANNEL_CONTENTS_QUERY_KEY = (channelId) => [
2203
+ ...CHANNEL_QUERY_KEY(channelId),
2204
+ "CONTENTS"
2205
+ ];
2206
+ var SET_CHANNEL_CONTENTS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
2204
2207
  client.setQueryData(
2205
2208
  [
2206
- ...CONTENT_TYPE_CONTENTS_QUERY_KEY(...keyParams),
2209
+ ...CHANNEL_CONTENTS_QUERY_KEY(...keyParams),
2207
2210
  ...GetBaseInfiniteQueryKeys(...baseKeys)
2208
2211
  ],
2209
2212
  setFirstPageData(response)
2210
2213
  );
2211
2214
  };
2212
- var GetContentTypeContents = async ({
2215
+ var GetChannelContents = async ({
2213
2216
  pageParam,
2214
2217
  pageSize,
2215
2218
  orderBy,
2216
2219
  search,
2217
- contentTypeId,
2220
+ channelId,
2218
2221
  queryClient,
2219
2222
  clientApiParams,
2220
2223
  locale
2221
2224
  }) => {
2222
2225
  const clientApi = await GetClientAPI(clientApiParams);
2223
- const { data } = await clientApi.get(
2224
- `/contentTypes/${contentTypeId}/contents`,
2225
- {
2226
- params: {
2227
- page: pageParam || void 0,
2228
- pageSize: pageSize || void 0,
2229
- orderBy: orderBy || void 0,
2230
- search: search || void 0
2231
- }
2226
+ const { data } = await clientApi.get(`/channels/${channelId}/contents`, {
2227
+ params: {
2228
+ page: pageParam || void 0,
2229
+ pageSize: pageSize || void 0,
2230
+ orderBy: orderBy || void 0,
2231
+ search: search || void 0
2232
2232
  }
2233
- );
2233
+ });
2234
2234
  if (queryClient && data.status === "ok") {
2235
2235
  CacheIndividualQueries(
2236
2236
  data,
@@ -2241,14 +2241,14 @@ var GetContentTypeContents = async ({
2241
2241
  }
2242
2242
  return data;
2243
2243
  };
2244
- var useGetContentTypeContents = (contentTypeId = "", params = {}, options = {}) => {
2244
+ var useGetChannelContents = (channelId = "", params = {}, options = {}) => {
2245
2245
  return useConnectedInfiniteQuery(
2246
- CONTENT_TYPE_CONTENTS_QUERY_KEY(contentTypeId),
2247
- (params2) => GetContentTypeContents({ ...params2, contentTypeId: contentTypeId || "" }),
2246
+ CHANNEL_CONTENTS_QUERY_KEY(channelId),
2247
+ (params2) => GetChannelContents({ ...params2, channelId: channelId || "" }),
2248
2248
  params,
2249
2249
  {
2250
2250
  ...options,
2251
- enabled: !!contentTypeId && (options?.enabled ?? true)
2251
+ enabled: !!channelId && (options?.enabled ?? true)
2252
2252
  }
2253
2253
  );
2254
2254
  };
@@ -8156,12 +8156,12 @@ export {
8156
8156
  AdvertisementType,
8157
8157
  AppendInfiniteQuery,
8158
8158
  BENEFITS_QUERY_KEY,
8159
+ CHANNELS_QUERY_KEY,
8160
+ CHANNEL_CONTENTS_QUERY_KEY,
8161
+ CHANNEL_QUERY_KEY,
8159
8162
  CONTENTS_QUERY_KEY,
8160
8163
  CONTENT_ACTIVITIES_QUERY_KEY,
8161
8164
  CONTENT_QUERY_KEY,
8162
- CONTENT_TYPES_QUERY_KEY,
8163
- CONTENT_TYPE_CONTENTS_QUERY_KEY,
8164
- CONTENT_TYPE_QUERY_KEY,
8165
8165
  CacheIndividualQueries,
8166
8166
  CancelEventRegistration,
8167
8167
  CancelGroupInvitation,
@@ -8170,11 +8170,11 @@ export {
8170
8170
  CancelTransfer,
8171
8171
  CaptureInvoicePayment,
8172
8172
  CaptureSelfEventRegistrationPayment,
8173
+ ChannelFormat,
8173
8174
  CheckinListingRegistrationPurchase,
8174
8175
  CompleteEventActivation,
8175
8176
  ConnectedXMProvider,
8176
8177
  ContentGuestType,
8177
- ContentTypeFormat,
8178
8178
  CouponType,
8179
8179
  CreateEventLead,
8180
8180
  CreateGroup,
@@ -8255,12 +8255,12 @@ export {
8255
8255
  GetBaseInfiniteQueryKeys,
8256
8256
  GetBaseSingleQueryKeys,
8257
8257
  GetBenefits,
8258
+ GetChannel,
8259
+ GetChannelContents,
8260
+ GetChannels,
8258
8261
  GetClientAPI,
8259
8262
  GetContent,
8260
8263
  GetContentActivities,
8261
- GetContentType,
8262
- GetContentTypeContents,
8263
- GetContentTypes,
8264
8264
  GetContents,
8265
8265
  GetErrorMessage,
8266
8266
  GetEvent,
@@ -8460,12 +8460,12 @@ export {
8460
8460
  SET_ACTIVITY_QUERY_DATA,
8461
8461
  SET_ADVERTISEMENT_QUERY_DATA,
8462
8462
  SET_BENEFITS_QUERY_DATA,
8463
+ SET_CHANNELS_QUERY_DATA,
8464
+ SET_CHANNEL_CONTENTS_QUERY_DATA,
8465
+ SET_CHANNEL_QUERY_DATA,
8463
8466
  SET_CONTENTS_QUERY_DATA,
8464
8467
  SET_CONTENT_ACTIVITIES_QUERY_DATA,
8465
8468
  SET_CONTENT_QUERY_DATA,
8466
- SET_CONTENT_TYPES_QUERY_DATA,
8467
- SET_CONTENT_TYPE_CONTENTS_QUERY_DATA,
8468
- SET_CONTENT_TYPE_QUERY_DATA,
8469
8469
  SET_EVENTS_FEATURED_QUERY_DATA,
8470
8470
  SET_EVENTS_QUERY_DATA,
8471
8471
  SET_EVENT_ACTIVITIES_QUERY_DATA,
@@ -8561,8 +8561,8 @@ export {
8561
8561
  isTypeAdvertisement,
8562
8562
  isTypeAnnouncement,
8563
8563
  isTypeBenefit,
8564
+ isTypeChannel,
8564
8565
  isTypeContent,
8565
- isTypeContentType,
8566
8566
  isTypeCoupon,
8567
8567
  isTypeEvent,
8568
8568
  isTypeEventActivation,
@@ -8655,11 +8655,11 @@ export {
8655
8655
  useGetActivityComments,
8656
8656
  useGetAdvertisement,
8657
8657
  useGetBenefits,
8658
+ useGetChannel,
8659
+ useGetChannelContents,
8660
+ useGetChannels,
8658
8661
  useGetContent,
8659
8662
  useGetContentActivities,
8660
- useGetContentType,
8661
- useGetContentTypeContents,
8662
- useGetContentTypes,
8663
8663
  useGetContents,
8664
8664
  useGetEvent,
8665
8665
  useGetEventActivities,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "0.5.17",
3
+ "version": "0.5.18",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {