@connectedxm/client 0.4.3 → 0.4.4
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 +33 -1
- package/dist/index.d.ts +33 -1
- package/dist/index.js +155 -0
- package/dist/index.mjs +144 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2129,6 +2129,22 @@ interface GetSelfEventListingProps extends SingleQueryParams {
|
|
|
2129
2129
|
declare const GetSelfEventListing: ({ eventId, clientApiParams, }: GetSelfEventListingProps) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2130
2130
|
declare const useGetSelfEventListing: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListing>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2131
2131
|
|
|
2132
|
+
declare const LISTING_ANNOUNCEMENT_QUERY_KEY: (eventId: string, announcementId: string) => QueryKey;
|
|
2133
|
+
declare const SET_LISTING_ANNOUNCEMENT_QUERY_KEY: (client: QueryClient, keyParams: [eventId: string, announcementId: string], response: Awaited<ReturnType<typeof GetSelfEventListingAnnouncement>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2134
|
+
interface GetSelfEventListingAnnouncementProps extends SingleQueryParams {
|
|
2135
|
+
eventId: string;
|
|
2136
|
+
announcementId: string;
|
|
2137
|
+
}
|
|
2138
|
+
declare const GetSelfEventListingAnnouncement: ({ eventId, announcementId, clientApiParams, }: GetSelfEventListingAnnouncementProps) => Promise<ConnectedXMResponse<Announcement>>;
|
|
2139
|
+
declare const useGetSelfEventListingAnnouncement: (eventId?: string, announcementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingAnnouncement>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2140
|
+
|
|
2141
|
+
declare const LISTING_ANNOUNCEMENTS_QUERY_KEY: (eventId: string) => unknown[];
|
|
2142
|
+
interface GetSelfEventListingAnnouncementsProps extends InfiniteQueryParams {
|
|
2143
|
+
eventId: string;
|
|
2144
|
+
}
|
|
2145
|
+
declare const GetSelfEventListingAnnouncements: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingAnnouncementsProps) => Promise<ConnectedXMResponse<Announcement[]>>;
|
|
2146
|
+
declare const useGetSelfEventListingAnnouncements: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingAnnouncements>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Announcement[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2147
|
+
|
|
2132
2148
|
declare const LISTING_REGISTRATION_QUERY_KEY: (eventId: string, registrationId: string) => QueryKey;
|
|
2133
2149
|
declare const SET_LISTING_REGISTRATION_QUERY_KEY: (client: QueryClient, keyParams: [eventId: string, registrationId: string], response: Awaited<ReturnType<typeof GetSelfEventListingRegistration>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2134
2150
|
interface GetSelfEventListingRegistrationProps extends SingleQueryParams {
|
|
@@ -2747,6 +2763,12 @@ interface CreateListingSpeakerParams extends MutationParams {
|
|
|
2747
2763
|
declare const CreateListingSpeaker: ({ eventId, speaker, imageDataUri, clientApiParams, queryClient, }: CreateListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2748
2764
|
declare const useCreateListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListingSpeaker>>, Omit<CreateListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<CreateListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2749
2765
|
|
|
2766
|
+
interface DeleteListingParams extends MutationParams {
|
|
2767
|
+
eventId: string;
|
|
2768
|
+
}
|
|
2769
|
+
declare const DeleteListing: ({ eventId, clientApiParams, queryClient, }: DeleteListingParams) => Promise<ConnectedXMResponse<null>>;
|
|
2770
|
+
declare const useDeleteListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteListing>>, Omit<DeleteListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteListingParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2771
|
+
|
|
2750
2772
|
interface AddListingSponsorParams extends MutationParams {
|
|
2751
2773
|
eventId: string;
|
|
2752
2774
|
sponsor: Account;
|
|
@@ -2785,6 +2807,16 @@ interface CreateListing {
|
|
|
2785
2807
|
declare const CreateListing: ({ event, imageDataUri, communityId, sponsorIds, speakers, sessions, clientApiParams, queryClient, }: CreateListingParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2786
2808
|
declare const useCreateListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListing>>, Omit<CreateListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<CreateListingParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2787
2809
|
|
|
2810
|
+
interface CreateListingAnnouncementParams extends MutationParams {
|
|
2811
|
+
eventId: string;
|
|
2812
|
+
title: string;
|
|
2813
|
+
html: string;
|
|
2814
|
+
email: boolean;
|
|
2815
|
+
push: boolean;
|
|
2816
|
+
}
|
|
2817
|
+
declare const CreateListingAnnouncement: ({ eventId, title, html, email, push, clientApiParams, queryClient, }: CreateListingAnnouncementParams) => Promise<ConnectedXMResponse<Announcement>>;
|
|
2818
|
+
declare const useCreateListingAnnouncement: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListingAnnouncement>>, Omit<CreateListingAnnouncementParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<Announcement>, any>, Omit<CreateListingAnnouncementParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2819
|
+
|
|
2788
2820
|
interface DeleteListingSessionParams extends MutationParams {
|
|
2789
2821
|
eventId: string;
|
|
2790
2822
|
sessionId: string;
|
|
@@ -2876,4 +2908,4 @@ interface UpdateListingSpeakerParams extends MutationParams {
|
|
|
2876
2908
|
declare const UpdateListingSpeaker: ({ eventId, speaker, speakerId, imageDataUri, clientApiParams, queryClient, }: UpdateListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2877
2909
|
declare const useUpdateListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingSpeaker>>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2878
2910
|
|
|
2879
|
-
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_COMMUNITIES_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, AcceptCommunityInvitation, type AcceptCommunityInviteParitation, AcceptCommunityRequest, type AcceptCommunityRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseCommunity, type BaseCommunityMembership, type BaseCommunityRequest, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, 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, COMMUNITIES_QUERY_KEY, COMMUNITY_ACTIVITIES_QUERY_KEY, COMMUNITY_ANNOUNCEMENTS_QUERY_KEY, COMMUNITY_EVENTS_QUERY_KEY, COMMUNITY_INVITABLE_ACCOUNTS_QUERY_KEY, COMMUNITY_MEDIA_QUERY_KEY, COMMUNITY_MEMBERS_QUERY_KEY, COMMUNITY_QUERY_KEY, COMMUNITY_REQUESTS_QUERY_KEY, COMMUNITY_REQUEST_QUERY_KEY, COMMUNITY_SPONSORS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type CheckoutResponse, type ClientApiParams, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, type CommunityRequest, CommunityRequestStatus, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, CreateCommunityInvitations, type CreateCommunityInvitationsParams, type CreateCommunityParams, CreateCommunityRequest, type CreateCommunityRequestParams, CreateEventLead, type CreateEventLeadParams, CreateListing, type CreateListingParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateCommunity, type DeactivateCommunityParams, DeleteActivity, type DeleteActivityParams, DeleteCommunityInvitation, type DeleteCommunityInvitationParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteCommunityModerator, type DemoteCommunityModeratorParams, 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 EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountCommunities, type GetAccountCommunitiesProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetCommunities, type GetCommunitiesProps, GetCommunity, GetCommunityActivities, type GetCommunityActivitiesProps, GetCommunityAnnouncements, type GetCommunityAnnouncementsProps, GetCommunityEvents, type GetCommunityEventsProps, GetCommunityInvitableAccounts, type GetCommunityInvitableAccountsProps, GetCommunityMedia, type GetCommunityMediaProps, GetCommunityMembers, type GetCommunityMembersProps, type GetCommunityProps, GetCommunityRequest, type GetCommunityRequestProps, GetCommunityRequests, type GetCommunityRequestsProps, GetCommunitySponsors, type GetCommunitySponsorsProps, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfCommunityMembership, type GetSelfCommunityMembershipProps, GetSelfCommunityMemberships, type GetSelfCommunityMembershipsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, type GetSelfEventListingProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, 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, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSponsor, type GetSponsorProps, GetSponsors, type GetSponsorsProps, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinCommunity, type JoinCommunityParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, type Lead, LeaveCommunity, type LeaveCommunityParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification$1 as Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, PromoteCommunityMember, type PromoteCommunityMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, RejectCommunityInvitation, type RejectCommunityInvitationParams, RejectCommunityRequest, type RejectCommunityRequestParams, RejectTransfer, type RejectTransferParams, RemoveCommunityMember, type RemoveCommunityMemberParams, 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_COMMUNITY_MEMBERSHIPS_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIP_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_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_COMMUNITIES_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_COMMUNITIES_QUERY_DATA, SET_COMMUNITY_ACTIVITIES_QUERY_DATA, SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA, SET_COMMUNITY_EVENTS_QUERY_DATA, SET_COMMUNITY_MEDIA_QUERY_DATA, SET_COMMUNITY_MEMBERS_QUERY_DATA, SET_COMMUNITY_QUERY_DATA, SET_COMMUNITY_REQUESTS_QUERY_DATA, SET_COMMUNITY_REQUEST_QUERY_DATA, SET_COMMUNITY_SPONSORS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_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_COMMUNITY_MEMBERSHIP_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_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SPONSORS_QUERY_DATA, SET_SPONSOR_QUERY_DATA, SPONSORS_QUERY_KEY, SPONSOR_QUERY_KEY, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, SelfUpdateCommunityMembership, type SelfUpdateCommunityMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateCommunity, type UpdateCommunityParams, UpdateListing, type UpdateListingParams, 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, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeCommunity, isTypeCommunityMembership, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, setFirstPageData, useAcceptCommunityInvitation, useAcceptCommunityRequest, useAcceptTransfer, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateCommunity, useCreateCommunityAnnouncement, useCreateCommunityInvitations, useCreateCommunityRequest, useCreateEventLead, useCreateListing, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateCommunity, useDeleteActivity, useDeleteCommunityInvitation, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteCommunityModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityInvitableAccounts, useGetCommunityMedia, useGetCommunityMembers, useGetCommunityRequest, useGetCommunityRequests, useGetCommunitySponsors, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfCommunityMembership, useGetSelfCommunityMemberships, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingRegistration, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useJoinCommunity, useLeaveCommunity, useLeaveSelfChatChannel, useLikeActivity, usePromoteCommunityMember, useRegisterCancelledEventRegistration, useRejectCommunityInvitation, useRejectCommunityRequest, useRejectTransfer, useRemoveCommunityMember, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateListing, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
|
|
2911
|
+
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_COMMUNITIES_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, AcceptCommunityInvitation, type AcceptCommunityInviteParitation, AcceptCommunityRequest, type AcceptCommunityRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseCommunity, type BaseCommunityMembership, type BaseCommunityRequest, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, 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, COMMUNITIES_QUERY_KEY, COMMUNITY_ACTIVITIES_QUERY_KEY, COMMUNITY_ANNOUNCEMENTS_QUERY_KEY, COMMUNITY_EVENTS_QUERY_KEY, COMMUNITY_INVITABLE_ACCOUNTS_QUERY_KEY, COMMUNITY_MEDIA_QUERY_KEY, COMMUNITY_MEMBERS_QUERY_KEY, COMMUNITY_QUERY_KEY, COMMUNITY_REQUESTS_QUERY_KEY, COMMUNITY_REQUEST_QUERY_KEY, COMMUNITY_SPONSORS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type CheckoutResponse, type ClientApiParams, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, type CommunityRequest, CommunityRequestStatus, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, CreateCommunityInvitations, type CreateCommunityInvitationsParams, type CreateCommunityParams, CreateCommunityRequest, type CreateCommunityRequestParams, CreateEventLead, type CreateEventLeadParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateCommunity, type DeactivateCommunityParams, DeleteActivity, type DeleteActivityParams, DeleteCommunityInvitation, type DeleteCommunityInvitationParams, DeleteListing, type DeleteListingParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteCommunityModerator, type DemoteCommunityModeratorParams, 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 EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountCommunities, type GetAccountCommunitiesProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetCommunities, type GetCommunitiesProps, GetCommunity, GetCommunityActivities, type GetCommunityActivitiesProps, GetCommunityAnnouncements, type GetCommunityAnnouncementsProps, GetCommunityEvents, type GetCommunityEventsProps, GetCommunityInvitableAccounts, type GetCommunityInvitableAccountsProps, GetCommunityMedia, type GetCommunityMediaProps, GetCommunityMembers, type GetCommunityMembersProps, type GetCommunityProps, GetCommunityRequest, type GetCommunityRequestProps, GetCommunityRequests, type GetCommunityRequestsProps, GetCommunitySponsors, type GetCommunitySponsorsProps, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfCommunityMembership, type GetSelfCommunityMembershipProps, GetSelfCommunityMemberships, type GetSelfCommunityMembershipsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, type GetSelfEventListingProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, 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, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSponsor, type GetSponsorProps, GetSponsors, type GetSponsorsProps, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinCommunity, type JoinCommunityParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, type Lead, LeaveCommunity, type LeaveCommunityParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification$1 as Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, PromoteCommunityMember, type PromoteCommunityMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, RejectCommunityInvitation, type RejectCommunityInvitationParams, RejectCommunityRequest, type RejectCommunityRequestParams, RejectTransfer, type RejectTransferParams, RemoveCommunityMember, type RemoveCommunityMemberParams, 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_COMMUNITY_MEMBERSHIPS_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIP_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_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_COMMUNITIES_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_COMMUNITIES_QUERY_DATA, SET_COMMUNITY_ACTIVITIES_QUERY_DATA, SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA, SET_COMMUNITY_EVENTS_QUERY_DATA, SET_COMMUNITY_MEDIA_QUERY_DATA, SET_COMMUNITY_MEMBERS_QUERY_DATA, SET_COMMUNITY_QUERY_DATA, SET_COMMUNITY_REQUESTS_QUERY_DATA, SET_COMMUNITY_REQUEST_QUERY_DATA, SET_COMMUNITY_SPONSORS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_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_COMMUNITY_MEMBERSHIP_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_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SPONSORS_QUERY_DATA, SET_SPONSOR_QUERY_DATA, SPONSORS_QUERY_KEY, SPONSOR_QUERY_KEY, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, SelfUpdateCommunityMembership, type SelfUpdateCommunityMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateCommunity, type UpdateCommunityParams, UpdateListing, type UpdateListingParams, 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, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeCommunity, isTypeCommunityMembership, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, setFirstPageData, useAcceptCommunityInvitation, useAcceptCommunityRequest, useAcceptTransfer, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateCommunity, useCreateCommunityAnnouncement, useCreateCommunityInvitations, useCreateCommunityRequest, useCreateEventLead, useCreateListing, useCreateListingAnnouncement, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateCommunity, useDeleteActivity, useDeleteCommunityInvitation, useDeleteListing, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteCommunityModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityInvitableAccounts, useGetCommunityMedia, useGetCommunityMembers, useGetCommunityRequest, useGetCommunityRequests, useGetCommunitySponsors, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfCommunityMembership, useGetSelfCommunityMemberships, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingRegistration, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useJoinCommunity, useLeaveCommunity, useLeaveSelfChatChannel, useLikeActivity, usePromoteCommunityMember, useRegisterCancelledEventRegistration, useRejectCommunityInvitation, useRejectCommunityRequest, useRejectTransfer, useRemoveCommunityMember, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateListing, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
|
package/dist/index.d.ts
CHANGED
|
@@ -2129,6 +2129,22 @@ interface GetSelfEventListingProps extends SingleQueryParams {
|
|
|
2129
2129
|
declare const GetSelfEventListing: ({ eventId, clientApiParams, }: GetSelfEventListingProps) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2130
2130
|
declare const useGetSelfEventListing: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListing>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2131
2131
|
|
|
2132
|
+
declare const LISTING_ANNOUNCEMENT_QUERY_KEY: (eventId: string, announcementId: string) => QueryKey;
|
|
2133
|
+
declare const SET_LISTING_ANNOUNCEMENT_QUERY_KEY: (client: QueryClient, keyParams: [eventId: string, announcementId: string], response: Awaited<ReturnType<typeof GetSelfEventListingAnnouncement>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2134
|
+
interface GetSelfEventListingAnnouncementProps extends SingleQueryParams {
|
|
2135
|
+
eventId: string;
|
|
2136
|
+
announcementId: string;
|
|
2137
|
+
}
|
|
2138
|
+
declare const GetSelfEventListingAnnouncement: ({ eventId, announcementId, clientApiParams, }: GetSelfEventListingAnnouncementProps) => Promise<ConnectedXMResponse<Announcement>>;
|
|
2139
|
+
declare const useGetSelfEventListingAnnouncement: (eventId?: string, announcementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingAnnouncement>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2140
|
+
|
|
2141
|
+
declare const LISTING_ANNOUNCEMENTS_QUERY_KEY: (eventId: string) => unknown[];
|
|
2142
|
+
interface GetSelfEventListingAnnouncementsProps extends InfiniteQueryParams {
|
|
2143
|
+
eventId: string;
|
|
2144
|
+
}
|
|
2145
|
+
declare const GetSelfEventListingAnnouncements: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingAnnouncementsProps) => Promise<ConnectedXMResponse<Announcement[]>>;
|
|
2146
|
+
declare const useGetSelfEventListingAnnouncements: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingAnnouncements>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Announcement[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2147
|
+
|
|
2132
2148
|
declare const LISTING_REGISTRATION_QUERY_KEY: (eventId: string, registrationId: string) => QueryKey;
|
|
2133
2149
|
declare const SET_LISTING_REGISTRATION_QUERY_KEY: (client: QueryClient, keyParams: [eventId: string, registrationId: string], response: Awaited<ReturnType<typeof GetSelfEventListingRegistration>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2134
2150
|
interface GetSelfEventListingRegistrationProps extends SingleQueryParams {
|
|
@@ -2747,6 +2763,12 @@ interface CreateListingSpeakerParams extends MutationParams {
|
|
|
2747
2763
|
declare const CreateListingSpeaker: ({ eventId, speaker, imageDataUri, clientApiParams, queryClient, }: CreateListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2748
2764
|
declare const useCreateListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListingSpeaker>>, Omit<CreateListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<CreateListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2749
2765
|
|
|
2766
|
+
interface DeleteListingParams extends MutationParams {
|
|
2767
|
+
eventId: string;
|
|
2768
|
+
}
|
|
2769
|
+
declare const DeleteListing: ({ eventId, clientApiParams, queryClient, }: DeleteListingParams) => Promise<ConnectedXMResponse<null>>;
|
|
2770
|
+
declare const useDeleteListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteListing>>, Omit<DeleteListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteListingParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2771
|
+
|
|
2750
2772
|
interface AddListingSponsorParams extends MutationParams {
|
|
2751
2773
|
eventId: string;
|
|
2752
2774
|
sponsor: Account;
|
|
@@ -2785,6 +2807,16 @@ interface CreateListing {
|
|
|
2785
2807
|
declare const CreateListing: ({ event, imageDataUri, communityId, sponsorIds, speakers, sessions, clientApiParams, queryClient, }: CreateListingParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2786
2808
|
declare const useCreateListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListing>>, Omit<CreateListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<CreateListingParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2787
2809
|
|
|
2810
|
+
interface CreateListingAnnouncementParams extends MutationParams {
|
|
2811
|
+
eventId: string;
|
|
2812
|
+
title: string;
|
|
2813
|
+
html: string;
|
|
2814
|
+
email: boolean;
|
|
2815
|
+
push: boolean;
|
|
2816
|
+
}
|
|
2817
|
+
declare const CreateListingAnnouncement: ({ eventId, title, html, email, push, clientApiParams, queryClient, }: CreateListingAnnouncementParams) => Promise<ConnectedXMResponse<Announcement>>;
|
|
2818
|
+
declare const useCreateListingAnnouncement: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListingAnnouncement>>, Omit<CreateListingAnnouncementParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<Announcement>, any>, Omit<CreateListingAnnouncementParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2819
|
+
|
|
2788
2820
|
interface DeleteListingSessionParams extends MutationParams {
|
|
2789
2821
|
eventId: string;
|
|
2790
2822
|
sessionId: string;
|
|
@@ -2876,4 +2908,4 @@ interface UpdateListingSpeakerParams extends MutationParams {
|
|
|
2876
2908
|
declare const UpdateListingSpeaker: ({ eventId, speaker, speakerId, imageDataUri, clientApiParams, queryClient, }: UpdateListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2877
2909
|
declare const useUpdateListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingSpeaker>>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2878
2910
|
|
|
2879
|
-
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_COMMUNITIES_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, AcceptCommunityInvitation, type AcceptCommunityInviteParitation, AcceptCommunityRequest, type AcceptCommunityRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseCommunity, type BaseCommunityMembership, type BaseCommunityRequest, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, 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, COMMUNITIES_QUERY_KEY, COMMUNITY_ACTIVITIES_QUERY_KEY, COMMUNITY_ANNOUNCEMENTS_QUERY_KEY, COMMUNITY_EVENTS_QUERY_KEY, COMMUNITY_INVITABLE_ACCOUNTS_QUERY_KEY, COMMUNITY_MEDIA_QUERY_KEY, COMMUNITY_MEMBERS_QUERY_KEY, COMMUNITY_QUERY_KEY, COMMUNITY_REQUESTS_QUERY_KEY, COMMUNITY_REQUEST_QUERY_KEY, COMMUNITY_SPONSORS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type CheckoutResponse, type ClientApiParams, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, type CommunityRequest, CommunityRequestStatus, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, CreateCommunityInvitations, type CreateCommunityInvitationsParams, type CreateCommunityParams, CreateCommunityRequest, type CreateCommunityRequestParams, CreateEventLead, type CreateEventLeadParams, CreateListing, type CreateListingParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateCommunity, type DeactivateCommunityParams, DeleteActivity, type DeleteActivityParams, DeleteCommunityInvitation, type DeleteCommunityInvitationParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteCommunityModerator, type DemoteCommunityModeratorParams, 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 EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountCommunities, type GetAccountCommunitiesProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetCommunities, type GetCommunitiesProps, GetCommunity, GetCommunityActivities, type GetCommunityActivitiesProps, GetCommunityAnnouncements, type GetCommunityAnnouncementsProps, GetCommunityEvents, type GetCommunityEventsProps, GetCommunityInvitableAccounts, type GetCommunityInvitableAccountsProps, GetCommunityMedia, type GetCommunityMediaProps, GetCommunityMembers, type GetCommunityMembersProps, type GetCommunityProps, GetCommunityRequest, type GetCommunityRequestProps, GetCommunityRequests, type GetCommunityRequestsProps, GetCommunitySponsors, type GetCommunitySponsorsProps, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfCommunityMembership, type GetSelfCommunityMembershipProps, GetSelfCommunityMemberships, type GetSelfCommunityMembershipsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, type GetSelfEventListingProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, 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, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSponsor, type GetSponsorProps, GetSponsors, type GetSponsorsProps, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinCommunity, type JoinCommunityParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, type Lead, LeaveCommunity, type LeaveCommunityParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification$1 as Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, PromoteCommunityMember, type PromoteCommunityMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, RejectCommunityInvitation, type RejectCommunityInvitationParams, RejectCommunityRequest, type RejectCommunityRequestParams, RejectTransfer, type RejectTransferParams, RemoveCommunityMember, type RemoveCommunityMemberParams, 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_COMMUNITY_MEMBERSHIPS_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIP_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_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_COMMUNITIES_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_COMMUNITIES_QUERY_DATA, SET_COMMUNITY_ACTIVITIES_QUERY_DATA, SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA, SET_COMMUNITY_EVENTS_QUERY_DATA, SET_COMMUNITY_MEDIA_QUERY_DATA, SET_COMMUNITY_MEMBERS_QUERY_DATA, SET_COMMUNITY_QUERY_DATA, SET_COMMUNITY_REQUESTS_QUERY_DATA, SET_COMMUNITY_REQUEST_QUERY_DATA, SET_COMMUNITY_SPONSORS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_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_COMMUNITY_MEMBERSHIP_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_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SPONSORS_QUERY_DATA, SET_SPONSOR_QUERY_DATA, SPONSORS_QUERY_KEY, SPONSOR_QUERY_KEY, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, SelfUpdateCommunityMembership, type SelfUpdateCommunityMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateCommunity, type UpdateCommunityParams, UpdateListing, type UpdateListingParams, 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, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeCommunity, isTypeCommunityMembership, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, setFirstPageData, useAcceptCommunityInvitation, useAcceptCommunityRequest, useAcceptTransfer, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateCommunity, useCreateCommunityAnnouncement, useCreateCommunityInvitations, useCreateCommunityRequest, useCreateEventLead, useCreateListing, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateCommunity, useDeleteActivity, useDeleteCommunityInvitation, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteCommunityModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityInvitableAccounts, useGetCommunityMedia, useGetCommunityMembers, useGetCommunityRequest, useGetCommunityRequests, useGetCommunitySponsors, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfCommunityMembership, useGetSelfCommunityMemberships, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingRegistration, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useJoinCommunity, useLeaveCommunity, useLeaveSelfChatChannel, useLikeActivity, usePromoteCommunityMember, useRegisterCancelledEventRegistration, useRejectCommunityInvitation, useRejectCommunityRequest, useRejectTransfer, useRemoveCommunityMember, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateListing, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
|
|
2911
|
+
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_COMMUNITIES_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, AcceptCommunityInvitation, type AcceptCommunityInviteParitation, AcceptCommunityRequest, type AcceptCommunityRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseCommunity, type BaseCommunityMembership, type BaseCommunityRequest, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, 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, COMMUNITIES_QUERY_KEY, COMMUNITY_ACTIVITIES_QUERY_KEY, COMMUNITY_ANNOUNCEMENTS_QUERY_KEY, COMMUNITY_EVENTS_QUERY_KEY, COMMUNITY_INVITABLE_ACCOUNTS_QUERY_KEY, COMMUNITY_MEDIA_QUERY_KEY, COMMUNITY_MEMBERS_QUERY_KEY, COMMUNITY_QUERY_KEY, COMMUNITY_REQUESTS_QUERY_KEY, COMMUNITY_REQUEST_QUERY_KEY, COMMUNITY_SPONSORS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type CheckoutResponse, type ClientApiParams, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, type CommunityRequest, CommunityRequestStatus, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, CreateCommunityInvitations, type CreateCommunityInvitationsParams, type CreateCommunityParams, CreateCommunityRequest, type CreateCommunityRequestParams, CreateEventLead, type CreateEventLeadParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateCommunity, type DeactivateCommunityParams, DeleteActivity, type DeleteActivityParams, DeleteCommunityInvitation, type DeleteCommunityInvitationParams, DeleteListing, type DeleteListingParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteCommunityModerator, type DemoteCommunityModeratorParams, 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 EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountCommunities, type GetAccountCommunitiesProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetCommunities, type GetCommunitiesProps, GetCommunity, GetCommunityActivities, type GetCommunityActivitiesProps, GetCommunityAnnouncements, type GetCommunityAnnouncementsProps, GetCommunityEvents, type GetCommunityEventsProps, GetCommunityInvitableAccounts, type GetCommunityInvitableAccountsProps, GetCommunityMedia, type GetCommunityMediaProps, GetCommunityMembers, type GetCommunityMembersProps, type GetCommunityProps, GetCommunityRequest, type GetCommunityRequestProps, GetCommunityRequests, type GetCommunityRequestsProps, GetCommunitySponsors, type GetCommunitySponsorsProps, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfCommunityMembership, type GetSelfCommunityMembershipProps, GetSelfCommunityMemberships, type GetSelfCommunityMembershipsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, type GetSelfEventListingProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, 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, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSponsor, type GetSponsorProps, GetSponsors, type GetSponsorsProps, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinCommunity, type JoinCommunityParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, type Lead, LeaveCommunity, type LeaveCommunityParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification$1 as Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, PromoteCommunityMember, type PromoteCommunityMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, RejectCommunityInvitation, type RejectCommunityInvitationParams, RejectCommunityRequest, type RejectCommunityRequestParams, RejectTransfer, type RejectTransferParams, RemoveCommunityMember, type RemoveCommunityMemberParams, 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_COMMUNITY_MEMBERSHIPS_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIP_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_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_COMMUNITIES_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_COMMUNITIES_QUERY_DATA, SET_COMMUNITY_ACTIVITIES_QUERY_DATA, SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA, SET_COMMUNITY_EVENTS_QUERY_DATA, SET_COMMUNITY_MEDIA_QUERY_DATA, SET_COMMUNITY_MEMBERS_QUERY_DATA, SET_COMMUNITY_QUERY_DATA, SET_COMMUNITY_REQUESTS_QUERY_DATA, SET_COMMUNITY_REQUEST_QUERY_DATA, SET_COMMUNITY_SPONSORS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_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_COMMUNITY_MEMBERSHIP_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_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SPONSORS_QUERY_DATA, SET_SPONSOR_QUERY_DATA, SPONSORS_QUERY_KEY, SPONSOR_QUERY_KEY, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, SelfUpdateCommunityMembership, type SelfUpdateCommunityMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateCommunity, type UpdateCommunityParams, UpdateListing, type UpdateListingParams, 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, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeCommunity, isTypeCommunityMembership, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, setFirstPageData, useAcceptCommunityInvitation, useAcceptCommunityRequest, useAcceptTransfer, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateCommunity, useCreateCommunityAnnouncement, useCreateCommunityInvitations, useCreateCommunityRequest, useCreateEventLead, useCreateListing, useCreateListingAnnouncement, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateCommunity, useDeleteActivity, useDeleteCommunityInvitation, useDeleteListing, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteCommunityModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityInvitableAccounts, useGetCommunityMedia, useGetCommunityMembers, useGetCommunityRequest, useGetCommunityRequests, useGetCommunitySponsors, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfCommunityMembership, useGetSelfCommunityMemberships, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingRegistration, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useJoinCommunity, useLeaveCommunity, useLeaveSelfChatChannel, useLikeActivity, usePromoteCommunityMember, useRegisterCancelledEventRegistration, useRejectCommunityInvitation, useRejectCommunityRequest, useRejectTransfer, useRemoveCommunityMember, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateListing, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
|
package/dist/index.js
CHANGED
|
@@ -91,6 +91,7 @@ __export(src_exports, {
|
|
|
91
91
|
CreateCommunityRequest: () => CreateCommunityRequest,
|
|
92
92
|
CreateEventLead: () => CreateEventLead,
|
|
93
93
|
CreateListing: () => CreateListing,
|
|
94
|
+
CreateListingAnnouncement: () => CreateListingAnnouncement,
|
|
94
95
|
CreateListingSession: () => CreateListingSession,
|
|
95
96
|
CreateListingSpeaker: () => CreateListingSpeaker,
|
|
96
97
|
CreateSelfChatChannel: () => CreateSelfChatChannel,
|
|
@@ -102,6 +103,7 @@ __export(src_exports, {
|
|
|
102
103
|
DeactivateCommunity: () => DeactivateCommunity,
|
|
103
104
|
DeleteActivity: () => DeleteActivity,
|
|
104
105
|
DeleteCommunityInvitation: () => DeleteCommunityInvitation,
|
|
106
|
+
DeleteListing: () => DeleteListing,
|
|
105
107
|
DeleteListingSession: () => DeleteListingSession,
|
|
106
108
|
DeleteListingSpeaker: () => DeleteListingSpeaker,
|
|
107
109
|
DeleteReshare: () => DeleteReshare,
|
|
@@ -203,6 +205,8 @@ __export(src_exports, {
|
|
|
203
205
|
GetSelfDelegateOf: () => GetSelfDelegateOf,
|
|
204
206
|
GetSelfDelegates: () => GetSelfDelegates,
|
|
205
207
|
GetSelfEventListing: () => GetSelfEventListing,
|
|
208
|
+
GetSelfEventListingAnnouncement: () => GetSelfEventListingAnnouncement,
|
|
209
|
+
GetSelfEventListingAnnouncements: () => GetSelfEventListingAnnouncements,
|
|
206
210
|
GetSelfEventListingRegistration: () => GetSelfEventListingRegistration,
|
|
207
211
|
GetSelfEventListingRegistrations: () => GetSelfEventListingRegistrations,
|
|
208
212
|
GetSelfEventListings: () => GetSelfEventListings,
|
|
@@ -241,6 +245,8 @@ __export(src_exports, {
|
|
|
241
245
|
LEVEL_QUERY_KEY: () => LEVEL_QUERY_KEY,
|
|
242
246
|
LEVEL_SPONSORS_QUERY_KEY: () => LEVEL_SPONSORS_QUERY_KEY,
|
|
243
247
|
LISTINGS_QUERY_KEY: () => LISTINGS_QUERY_KEY,
|
|
248
|
+
LISTING_ANNOUNCEMENTS_QUERY_KEY: () => LISTING_ANNOUNCEMENTS_QUERY_KEY,
|
|
249
|
+
LISTING_ANNOUNCEMENT_QUERY_KEY: () => LISTING_ANNOUNCEMENT_QUERY_KEY,
|
|
244
250
|
LISTING_QUERY_KEY: () => LISTING_QUERY_KEY,
|
|
245
251
|
LISTING_REGISTRATIONS_QUERY_KEY: () => LISTING_REGISTRATIONS_QUERY_KEY,
|
|
246
252
|
LISTING_REGISTRATION_QUERY_KEY: () => LISTING_REGISTRATION_QUERY_KEY,
|
|
@@ -356,6 +362,7 @@ __export(src_exports, {
|
|
|
356
362
|
SET_LEVELS_QUERY_DATA: () => SET_LEVELS_QUERY_DATA,
|
|
357
363
|
SET_LEVEL_QUERY_DATA: () => SET_LEVEL_QUERY_DATA,
|
|
358
364
|
SET_LEVEL_SPONSORS_QUERY_DATA: () => SET_LEVEL_SPONSORS_QUERY_DATA,
|
|
365
|
+
SET_LISTING_ANNOUNCEMENT_QUERY_KEY: () => SET_LISTING_ANNOUNCEMENT_QUERY_KEY,
|
|
359
366
|
SET_LISTING_QUERY_DATA: () => SET_LISTING_QUERY_DATA,
|
|
360
367
|
SET_LISTING_REGISTRATION_QUERY_KEY: () => SET_LISTING_REGISTRATION_QUERY_KEY,
|
|
361
368
|
SET_ORGANIZATION_PAGE_QUERY_DATA: () => SET_ORGANIZATION_PAGE_QUERY_DATA,
|
|
@@ -468,6 +475,7 @@ __export(src_exports, {
|
|
|
468
475
|
useCreateCommunityRequest: () => useCreateCommunityRequest,
|
|
469
476
|
useCreateEventLead: () => useCreateEventLead,
|
|
470
477
|
useCreateListing: () => useCreateListing,
|
|
478
|
+
useCreateListingAnnouncement: () => useCreateListingAnnouncement,
|
|
471
479
|
useCreateListingSession: () => useCreateListingSession,
|
|
472
480
|
useCreateListingSpeaker: () => useCreateListingSpeaker,
|
|
473
481
|
useCreateSelfChatChannel: () => useCreateSelfChatChannel,
|
|
@@ -478,6 +486,7 @@ __export(src_exports, {
|
|
|
478
486
|
useDeactivateCommunity: () => useDeactivateCommunity,
|
|
479
487
|
useDeleteActivity: () => useDeleteActivity,
|
|
480
488
|
useDeleteCommunityInvitation: () => useDeleteCommunityInvitation,
|
|
489
|
+
useDeleteListing: () => useDeleteListing,
|
|
481
490
|
useDeleteListingSession: () => useDeleteListingSession,
|
|
482
491
|
useDeleteListingSpeaker: () => useDeleteListingSpeaker,
|
|
483
492
|
useDeleteReshare: () => useDeleteReshare,
|
|
@@ -555,6 +564,8 @@ __export(src_exports, {
|
|
|
555
564
|
useGetSelfDelegateOf: () => useGetSelfDelegateOf,
|
|
556
565
|
useGetSelfDelegates: () => useGetSelfDelegates,
|
|
557
566
|
useGetSelfEventListing: () => useGetSelfEventListing,
|
|
567
|
+
useGetSelfEventListingAnnouncement: () => useGetSelfEventListingAnnouncement,
|
|
568
|
+
useGetSelfEventListingAnnouncements: () => useGetSelfEventListingAnnouncements,
|
|
558
569
|
useGetSelfEventListingRegistration: () => useGetSelfEventListingRegistration,
|
|
559
570
|
useGetSelfEventListings: () => useGetSelfEventListings,
|
|
560
571
|
useGetSelfEventListingsRegistrations: () => useGetSelfEventListingsRegistrations,
|
|
@@ -5239,6 +5250,75 @@ var useGetSelfEventListing = (eventId, options = {}) => {
|
|
|
5239
5250
|
);
|
|
5240
5251
|
};
|
|
5241
5252
|
|
|
5253
|
+
// src/queries/listings/useGetListingAnnouncements.ts
|
|
5254
|
+
var LISTING_ANNOUNCEMENTS_QUERY_KEY = (eventId) => [
|
|
5255
|
+
...LISTING_QUERY_KEY(eventId),
|
|
5256
|
+
"ANNOUNCEMENTS"
|
|
5257
|
+
];
|
|
5258
|
+
var GetSelfEventListingAnnouncements = async ({
|
|
5259
|
+
eventId,
|
|
5260
|
+
pageParam,
|
|
5261
|
+
pageSize,
|
|
5262
|
+
orderBy,
|
|
5263
|
+
search,
|
|
5264
|
+
clientApiParams
|
|
5265
|
+
}) => {
|
|
5266
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
5267
|
+
const { data } = await clientApi.get(`/listings/${eventId}/announcements`, {
|
|
5268
|
+
params: {
|
|
5269
|
+
page: pageParam || void 0,
|
|
5270
|
+
pageSize: pageSize || void 0,
|
|
5271
|
+
orderBy: orderBy || void 0,
|
|
5272
|
+
search: search || void 0
|
|
5273
|
+
}
|
|
5274
|
+
});
|
|
5275
|
+
return data;
|
|
5276
|
+
};
|
|
5277
|
+
var useGetSelfEventListingAnnouncements = (eventId, params = {}, options = {}) => {
|
|
5278
|
+
return useConnectedInfiniteQuery(
|
|
5279
|
+
LISTING_ANNOUNCEMENTS_QUERY_KEY(eventId),
|
|
5280
|
+
(params2) => GetSelfEventListingAnnouncements({ eventId, ...params2 }),
|
|
5281
|
+
params,
|
|
5282
|
+
{
|
|
5283
|
+
...options,
|
|
5284
|
+
enabled: !!eventId && (options?.enabled ?? true)
|
|
5285
|
+
}
|
|
5286
|
+
);
|
|
5287
|
+
};
|
|
5288
|
+
|
|
5289
|
+
// src/queries/listings/useGetListingAnnouncement.ts
|
|
5290
|
+
var LISTING_ANNOUNCEMENT_QUERY_KEY = (eventId, announcementId) => [LISTING_ANNOUNCEMENTS_QUERY_KEY(eventId), announcementId];
|
|
5291
|
+
var SET_LISTING_ANNOUNCEMENT_QUERY_KEY = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
5292
|
+
client.setQueryData(
|
|
5293
|
+
[
|
|
5294
|
+
...LISTING_ANNOUNCEMENT_QUERY_KEY(...keyParams),
|
|
5295
|
+
...GetBaseSingleQueryKeys(...baseKeys)
|
|
5296
|
+
],
|
|
5297
|
+
response
|
|
5298
|
+
);
|
|
5299
|
+
};
|
|
5300
|
+
var GetSelfEventListingAnnouncement = async ({
|
|
5301
|
+
eventId,
|
|
5302
|
+
announcementId,
|
|
5303
|
+
clientApiParams
|
|
5304
|
+
}) => {
|
|
5305
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
5306
|
+
const { data } = await clientApi.get(
|
|
5307
|
+
`/listings/${eventId}/announcements/${announcementId}`
|
|
5308
|
+
);
|
|
5309
|
+
return data;
|
|
5310
|
+
};
|
|
5311
|
+
var useGetSelfEventListingAnnouncement = (eventId = "", announcementId = "", options = {}) => {
|
|
5312
|
+
return useConnectedSingleQuery(
|
|
5313
|
+
LISTING_ANNOUNCEMENT_QUERY_KEY(eventId, announcementId),
|
|
5314
|
+
(params) => GetSelfEventListingAnnouncement({ eventId, announcementId, ...params }),
|
|
5315
|
+
{
|
|
5316
|
+
...options,
|
|
5317
|
+
enabled: !!eventId && !!announcementId
|
|
5318
|
+
}
|
|
5319
|
+
);
|
|
5320
|
+
};
|
|
5321
|
+
|
|
5242
5322
|
// src/queries/listings/useGetListingRegistrations.ts
|
|
5243
5323
|
var LISTING_REGISTRATIONS_QUERY_KEY = (eventId, status) => [...LISTING_QUERY_KEY(eventId), "REGISTRATIONS", status ?? "ALL"];
|
|
5244
5324
|
var GetSelfEventListingRegistrations = async ({
|
|
@@ -7373,6 +7453,39 @@ var useCreateListingSpeaker = (options = {}) => {
|
|
|
7373
7453
|
return useConnectedMutation_default(CreateListingSpeaker, options);
|
|
7374
7454
|
};
|
|
7375
7455
|
|
|
7456
|
+
// src/mutations/listings/useDeleteListing.ts
|
|
7457
|
+
var DeleteListing = async ({
|
|
7458
|
+
eventId,
|
|
7459
|
+
clientApiParams,
|
|
7460
|
+
queryClient
|
|
7461
|
+
}) => {
|
|
7462
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
7463
|
+
const { data } = await clientApi.delete(
|
|
7464
|
+
`/listings/${eventId}`
|
|
7465
|
+
);
|
|
7466
|
+
if (queryClient && data.status === "ok") {
|
|
7467
|
+
queryClient.invalidateQueries({
|
|
7468
|
+
queryKey: EVENTS_QUERY_KEY()
|
|
7469
|
+
});
|
|
7470
|
+
queryClient.removeQueries({
|
|
7471
|
+
queryKey: EVENT_QUERY_KEY(eventId)
|
|
7472
|
+
});
|
|
7473
|
+
queryClient.invalidateQueries({
|
|
7474
|
+
queryKey: LISTINGS_QUERY_KEY(true)
|
|
7475
|
+
});
|
|
7476
|
+
queryClient.invalidateQueries({
|
|
7477
|
+
queryKey: LISTINGS_QUERY_KEY(false)
|
|
7478
|
+
});
|
|
7479
|
+
queryClient.removeQueries({
|
|
7480
|
+
queryKey: LISTING_QUERY_KEY(eventId)
|
|
7481
|
+
});
|
|
7482
|
+
}
|
|
7483
|
+
return data;
|
|
7484
|
+
};
|
|
7485
|
+
var useDeleteListing = (options = {}) => {
|
|
7486
|
+
return useConnectedMutation_default(DeleteListing, options);
|
|
7487
|
+
};
|
|
7488
|
+
|
|
7376
7489
|
// src/mutations/listings/useAddListingSponsor.ts
|
|
7377
7490
|
var AddListingSponsor = async ({
|
|
7378
7491
|
eventId,
|
|
@@ -7445,6 +7558,37 @@ var useCreateListing = (options = {}) => {
|
|
|
7445
7558
|
return useConnectedMutation_default(CreateListing, options);
|
|
7446
7559
|
};
|
|
7447
7560
|
|
|
7561
|
+
// src/mutations/listings/useCreateListingAnnouncement.ts
|
|
7562
|
+
var CreateListingAnnouncement = async ({
|
|
7563
|
+
eventId,
|
|
7564
|
+
title,
|
|
7565
|
+
html,
|
|
7566
|
+
email,
|
|
7567
|
+
push,
|
|
7568
|
+
clientApiParams,
|
|
7569
|
+
queryClient
|
|
7570
|
+
}) => {
|
|
7571
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
7572
|
+
const { data } = await clientApi.post(
|
|
7573
|
+
`/listings/${eventId}/announcements`,
|
|
7574
|
+
{
|
|
7575
|
+
title,
|
|
7576
|
+
html,
|
|
7577
|
+
email,
|
|
7578
|
+
push
|
|
7579
|
+
}
|
|
7580
|
+
);
|
|
7581
|
+
if (queryClient && data.status === "ok") {
|
|
7582
|
+
queryClient.invalidateQueries({
|
|
7583
|
+
queryKey: LISTING_ANNOUNCEMENTS_QUERY_KEY(eventId)
|
|
7584
|
+
});
|
|
7585
|
+
}
|
|
7586
|
+
return data;
|
|
7587
|
+
};
|
|
7588
|
+
var useCreateListingAnnouncement = (options = {}) => {
|
|
7589
|
+
return useConnectedMutation_default(CreateListingAnnouncement, options);
|
|
7590
|
+
};
|
|
7591
|
+
|
|
7448
7592
|
// src/mutations/listings/useDeleteListingSession.ts
|
|
7449
7593
|
var DeleteListingSession = async ({
|
|
7450
7594
|
eventId,
|
|
@@ -7689,6 +7833,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
7689
7833
|
CreateCommunityRequest,
|
|
7690
7834
|
CreateEventLead,
|
|
7691
7835
|
CreateListing,
|
|
7836
|
+
CreateListingAnnouncement,
|
|
7692
7837
|
CreateListingSession,
|
|
7693
7838
|
CreateListingSpeaker,
|
|
7694
7839
|
CreateSelfChatChannel,
|
|
@@ -7700,6 +7845,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
7700
7845
|
DeactivateCommunity,
|
|
7701
7846
|
DeleteActivity,
|
|
7702
7847
|
DeleteCommunityInvitation,
|
|
7848
|
+
DeleteListing,
|
|
7703
7849
|
DeleteListingSession,
|
|
7704
7850
|
DeleteListingSpeaker,
|
|
7705
7851
|
DeleteReshare,
|
|
@@ -7801,6 +7947,8 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
7801
7947
|
GetSelfDelegateOf,
|
|
7802
7948
|
GetSelfDelegates,
|
|
7803
7949
|
GetSelfEventListing,
|
|
7950
|
+
GetSelfEventListingAnnouncement,
|
|
7951
|
+
GetSelfEventListingAnnouncements,
|
|
7804
7952
|
GetSelfEventListingRegistration,
|
|
7805
7953
|
GetSelfEventListingRegistrations,
|
|
7806
7954
|
GetSelfEventListings,
|
|
@@ -7839,6 +7987,8 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
7839
7987
|
LEVEL_QUERY_KEY,
|
|
7840
7988
|
LEVEL_SPONSORS_QUERY_KEY,
|
|
7841
7989
|
LISTINGS_QUERY_KEY,
|
|
7990
|
+
LISTING_ANNOUNCEMENTS_QUERY_KEY,
|
|
7991
|
+
LISTING_ANNOUNCEMENT_QUERY_KEY,
|
|
7842
7992
|
LISTING_QUERY_KEY,
|
|
7843
7993
|
LISTING_REGISTRATIONS_QUERY_KEY,
|
|
7844
7994
|
LISTING_REGISTRATION_QUERY_KEY,
|
|
@@ -7954,6 +8104,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
7954
8104
|
SET_LEVELS_QUERY_DATA,
|
|
7955
8105
|
SET_LEVEL_QUERY_DATA,
|
|
7956
8106
|
SET_LEVEL_SPONSORS_QUERY_DATA,
|
|
8107
|
+
SET_LISTING_ANNOUNCEMENT_QUERY_KEY,
|
|
7957
8108
|
SET_LISTING_QUERY_DATA,
|
|
7958
8109
|
SET_LISTING_REGISTRATION_QUERY_KEY,
|
|
7959
8110
|
SET_ORGANIZATION_PAGE_QUERY_DATA,
|
|
@@ -8066,6 +8217,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8066
8217
|
useCreateCommunityRequest,
|
|
8067
8218
|
useCreateEventLead,
|
|
8068
8219
|
useCreateListing,
|
|
8220
|
+
useCreateListingAnnouncement,
|
|
8069
8221
|
useCreateListingSession,
|
|
8070
8222
|
useCreateListingSpeaker,
|
|
8071
8223
|
useCreateSelfChatChannel,
|
|
@@ -8076,6 +8228,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8076
8228
|
useDeactivateCommunity,
|
|
8077
8229
|
useDeleteActivity,
|
|
8078
8230
|
useDeleteCommunityInvitation,
|
|
8231
|
+
useDeleteListing,
|
|
8079
8232
|
useDeleteListingSession,
|
|
8080
8233
|
useDeleteListingSpeaker,
|
|
8081
8234
|
useDeleteReshare,
|
|
@@ -8153,6 +8306,8 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8153
8306
|
useGetSelfDelegateOf,
|
|
8154
8307
|
useGetSelfDelegates,
|
|
8155
8308
|
useGetSelfEventListing,
|
|
8309
|
+
useGetSelfEventListingAnnouncement,
|
|
8310
|
+
useGetSelfEventListingAnnouncements,
|
|
8156
8311
|
useGetSelfEventListingRegistration,
|
|
8157
8312
|
useGetSelfEventListings,
|
|
8158
8313
|
useGetSelfEventListingsRegistrations,
|
package/dist/index.mjs
CHANGED
|
@@ -4616,6 +4616,75 @@ var useGetSelfEventListing = (eventId, options = {}) => {
|
|
|
4616
4616
|
);
|
|
4617
4617
|
};
|
|
4618
4618
|
|
|
4619
|
+
// src/queries/listings/useGetListingAnnouncements.ts
|
|
4620
|
+
var LISTING_ANNOUNCEMENTS_QUERY_KEY = (eventId) => [
|
|
4621
|
+
...LISTING_QUERY_KEY(eventId),
|
|
4622
|
+
"ANNOUNCEMENTS"
|
|
4623
|
+
];
|
|
4624
|
+
var GetSelfEventListingAnnouncements = async ({
|
|
4625
|
+
eventId,
|
|
4626
|
+
pageParam,
|
|
4627
|
+
pageSize,
|
|
4628
|
+
orderBy,
|
|
4629
|
+
search,
|
|
4630
|
+
clientApiParams
|
|
4631
|
+
}) => {
|
|
4632
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
4633
|
+
const { data } = await clientApi.get(`/listings/${eventId}/announcements`, {
|
|
4634
|
+
params: {
|
|
4635
|
+
page: pageParam || void 0,
|
|
4636
|
+
pageSize: pageSize || void 0,
|
|
4637
|
+
orderBy: orderBy || void 0,
|
|
4638
|
+
search: search || void 0
|
|
4639
|
+
}
|
|
4640
|
+
});
|
|
4641
|
+
return data;
|
|
4642
|
+
};
|
|
4643
|
+
var useGetSelfEventListingAnnouncements = (eventId, params = {}, options = {}) => {
|
|
4644
|
+
return useConnectedInfiniteQuery(
|
|
4645
|
+
LISTING_ANNOUNCEMENTS_QUERY_KEY(eventId),
|
|
4646
|
+
(params2) => GetSelfEventListingAnnouncements({ eventId, ...params2 }),
|
|
4647
|
+
params,
|
|
4648
|
+
{
|
|
4649
|
+
...options,
|
|
4650
|
+
enabled: !!eventId && (options?.enabled ?? true)
|
|
4651
|
+
}
|
|
4652
|
+
);
|
|
4653
|
+
};
|
|
4654
|
+
|
|
4655
|
+
// src/queries/listings/useGetListingAnnouncement.ts
|
|
4656
|
+
var LISTING_ANNOUNCEMENT_QUERY_KEY = (eventId, announcementId) => [LISTING_ANNOUNCEMENTS_QUERY_KEY(eventId), announcementId];
|
|
4657
|
+
var SET_LISTING_ANNOUNCEMENT_QUERY_KEY = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
4658
|
+
client.setQueryData(
|
|
4659
|
+
[
|
|
4660
|
+
...LISTING_ANNOUNCEMENT_QUERY_KEY(...keyParams),
|
|
4661
|
+
...GetBaseSingleQueryKeys(...baseKeys)
|
|
4662
|
+
],
|
|
4663
|
+
response
|
|
4664
|
+
);
|
|
4665
|
+
};
|
|
4666
|
+
var GetSelfEventListingAnnouncement = async ({
|
|
4667
|
+
eventId,
|
|
4668
|
+
announcementId,
|
|
4669
|
+
clientApiParams
|
|
4670
|
+
}) => {
|
|
4671
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
4672
|
+
const { data } = await clientApi.get(
|
|
4673
|
+
`/listings/${eventId}/announcements/${announcementId}`
|
|
4674
|
+
);
|
|
4675
|
+
return data;
|
|
4676
|
+
};
|
|
4677
|
+
var useGetSelfEventListingAnnouncement = (eventId = "", announcementId = "", options = {}) => {
|
|
4678
|
+
return useConnectedSingleQuery(
|
|
4679
|
+
LISTING_ANNOUNCEMENT_QUERY_KEY(eventId, announcementId),
|
|
4680
|
+
(params) => GetSelfEventListingAnnouncement({ eventId, announcementId, ...params }),
|
|
4681
|
+
{
|
|
4682
|
+
...options,
|
|
4683
|
+
enabled: !!eventId && !!announcementId
|
|
4684
|
+
}
|
|
4685
|
+
);
|
|
4686
|
+
};
|
|
4687
|
+
|
|
4619
4688
|
// src/queries/listings/useGetListingRegistrations.ts
|
|
4620
4689
|
var LISTING_REGISTRATIONS_QUERY_KEY = (eventId, status) => [...LISTING_QUERY_KEY(eventId), "REGISTRATIONS", status ?? "ALL"];
|
|
4621
4690
|
var GetSelfEventListingRegistrations = async ({
|
|
@@ -6753,6 +6822,39 @@ var useCreateListingSpeaker = (options = {}) => {
|
|
|
6753
6822
|
return useConnectedMutation_default(CreateListingSpeaker, options);
|
|
6754
6823
|
};
|
|
6755
6824
|
|
|
6825
|
+
// src/mutations/listings/useDeleteListing.ts
|
|
6826
|
+
var DeleteListing = async ({
|
|
6827
|
+
eventId,
|
|
6828
|
+
clientApiParams,
|
|
6829
|
+
queryClient
|
|
6830
|
+
}) => {
|
|
6831
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
6832
|
+
const { data } = await clientApi.delete(
|
|
6833
|
+
`/listings/${eventId}`
|
|
6834
|
+
);
|
|
6835
|
+
if (queryClient && data.status === "ok") {
|
|
6836
|
+
queryClient.invalidateQueries({
|
|
6837
|
+
queryKey: EVENTS_QUERY_KEY()
|
|
6838
|
+
});
|
|
6839
|
+
queryClient.removeQueries({
|
|
6840
|
+
queryKey: EVENT_QUERY_KEY(eventId)
|
|
6841
|
+
});
|
|
6842
|
+
queryClient.invalidateQueries({
|
|
6843
|
+
queryKey: LISTINGS_QUERY_KEY(true)
|
|
6844
|
+
});
|
|
6845
|
+
queryClient.invalidateQueries({
|
|
6846
|
+
queryKey: LISTINGS_QUERY_KEY(false)
|
|
6847
|
+
});
|
|
6848
|
+
queryClient.removeQueries({
|
|
6849
|
+
queryKey: LISTING_QUERY_KEY(eventId)
|
|
6850
|
+
});
|
|
6851
|
+
}
|
|
6852
|
+
return data;
|
|
6853
|
+
};
|
|
6854
|
+
var useDeleteListing = (options = {}) => {
|
|
6855
|
+
return useConnectedMutation_default(DeleteListing, options);
|
|
6856
|
+
};
|
|
6857
|
+
|
|
6756
6858
|
// src/mutations/listings/useAddListingSponsor.ts
|
|
6757
6859
|
var AddListingSponsor = async ({
|
|
6758
6860
|
eventId,
|
|
@@ -6825,6 +6927,37 @@ var useCreateListing = (options = {}) => {
|
|
|
6825
6927
|
return useConnectedMutation_default(CreateListing, options);
|
|
6826
6928
|
};
|
|
6827
6929
|
|
|
6930
|
+
// src/mutations/listings/useCreateListingAnnouncement.ts
|
|
6931
|
+
var CreateListingAnnouncement = async ({
|
|
6932
|
+
eventId,
|
|
6933
|
+
title,
|
|
6934
|
+
html,
|
|
6935
|
+
email,
|
|
6936
|
+
push,
|
|
6937
|
+
clientApiParams,
|
|
6938
|
+
queryClient
|
|
6939
|
+
}) => {
|
|
6940
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
6941
|
+
const { data } = await clientApi.post(
|
|
6942
|
+
`/listings/${eventId}/announcements`,
|
|
6943
|
+
{
|
|
6944
|
+
title,
|
|
6945
|
+
html,
|
|
6946
|
+
email,
|
|
6947
|
+
push
|
|
6948
|
+
}
|
|
6949
|
+
);
|
|
6950
|
+
if (queryClient && data.status === "ok") {
|
|
6951
|
+
queryClient.invalidateQueries({
|
|
6952
|
+
queryKey: LISTING_ANNOUNCEMENTS_QUERY_KEY(eventId)
|
|
6953
|
+
});
|
|
6954
|
+
}
|
|
6955
|
+
return data;
|
|
6956
|
+
};
|
|
6957
|
+
var useCreateListingAnnouncement = (options = {}) => {
|
|
6958
|
+
return useConnectedMutation_default(CreateListingAnnouncement, options);
|
|
6959
|
+
};
|
|
6960
|
+
|
|
6828
6961
|
// src/mutations/listings/useDeleteListingSession.ts
|
|
6829
6962
|
var DeleteListingSession = async ({
|
|
6830
6963
|
eventId,
|
|
@@ -7068,6 +7201,7 @@ export {
|
|
|
7068
7201
|
CreateCommunityRequest,
|
|
7069
7202
|
CreateEventLead,
|
|
7070
7203
|
CreateListing,
|
|
7204
|
+
CreateListingAnnouncement,
|
|
7071
7205
|
CreateListingSession,
|
|
7072
7206
|
CreateListingSpeaker,
|
|
7073
7207
|
CreateSelfChatChannel,
|
|
@@ -7079,6 +7213,7 @@ export {
|
|
|
7079
7213
|
DeactivateCommunity,
|
|
7080
7214
|
DeleteActivity,
|
|
7081
7215
|
DeleteCommunityInvitation,
|
|
7216
|
+
DeleteListing,
|
|
7082
7217
|
DeleteListingSession,
|
|
7083
7218
|
DeleteListingSpeaker,
|
|
7084
7219
|
DeleteReshare,
|
|
@@ -7180,6 +7315,8 @@ export {
|
|
|
7180
7315
|
GetSelfDelegateOf,
|
|
7181
7316
|
GetSelfDelegates,
|
|
7182
7317
|
GetSelfEventListing,
|
|
7318
|
+
GetSelfEventListingAnnouncement,
|
|
7319
|
+
GetSelfEventListingAnnouncements,
|
|
7183
7320
|
GetSelfEventListingRegistration,
|
|
7184
7321
|
GetSelfEventListingRegistrations,
|
|
7185
7322
|
GetSelfEventListings,
|
|
@@ -7218,6 +7355,8 @@ export {
|
|
|
7218
7355
|
LEVEL_QUERY_KEY,
|
|
7219
7356
|
LEVEL_SPONSORS_QUERY_KEY,
|
|
7220
7357
|
LISTINGS_QUERY_KEY,
|
|
7358
|
+
LISTING_ANNOUNCEMENTS_QUERY_KEY,
|
|
7359
|
+
LISTING_ANNOUNCEMENT_QUERY_KEY,
|
|
7221
7360
|
LISTING_QUERY_KEY,
|
|
7222
7361
|
LISTING_REGISTRATIONS_QUERY_KEY,
|
|
7223
7362
|
LISTING_REGISTRATION_QUERY_KEY,
|
|
@@ -7333,6 +7472,7 @@ export {
|
|
|
7333
7472
|
SET_LEVELS_QUERY_DATA,
|
|
7334
7473
|
SET_LEVEL_QUERY_DATA,
|
|
7335
7474
|
SET_LEVEL_SPONSORS_QUERY_DATA,
|
|
7475
|
+
SET_LISTING_ANNOUNCEMENT_QUERY_KEY,
|
|
7336
7476
|
SET_LISTING_QUERY_DATA,
|
|
7337
7477
|
SET_LISTING_REGISTRATION_QUERY_KEY,
|
|
7338
7478
|
SET_ORGANIZATION_PAGE_QUERY_DATA,
|
|
@@ -7445,6 +7585,7 @@ export {
|
|
|
7445
7585
|
useCreateCommunityRequest,
|
|
7446
7586
|
useCreateEventLead,
|
|
7447
7587
|
useCreateListing,
|
|
7588
|
+
useCreateListingAnnouncement,
|
|
7448
7589
|
useCreateListingSession,
|
|
7449
7590
|
useCreateListingSpeaker,
|
|
7450
7591
|
useCreateSelfChatChannel,
|
|
@@ -7455,6 +7596,7 @@ export {
|
|
|
7455
7596
|
useDeactivateCommunity,
|
|
7456
7597
|
useDeleteActivity,
|
|
7457
7598
|
useDeleteCommunityInvitation,
|
|
7599
|
+
useDeleteListing,
|
|
7458
7600
|
useDeleteListingSession,
|
|
7459
7601
|
useDeleteListingSpeaker,
|
|
7460
7602
|
useDeleteReshare,
|
|
@@ -7532,6 +7674,8 @@ export {
|
|
|
7532
7674
|
useGetSelfDelegateOf,
|
|
7533
7675
|
useGetSelfDelegates,
|
|
7534
7676
|
useGetSelfEventListing,
|
|
7677
|
+
useGetSelfEventListingAnnouncement,
|
|
7678
|
+
useGetSelfEventListingAnnouncements,
|
|
7535
7679
|
useGetSelfEventListingRegistration,
|
|
7536
7680
|
useGetSelfEventListings,
|
|
7537
7681
|
useGetSelfEventListingsRegistrations,
|