@connectedxm/client 0.4.2 → 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 +46 -4
- package/dist/index.d.ts +46 -4
- package/dist/index.js +209 -9
- package/dist/index.mjs +192 -7
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2129,6 +2129,31 @@ 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
|
+
|
|
2148
|
+
declare const LISTING_REGISTRATION_QUERY_KEY: (eventId: string, registrationId: string) => QueryKey;
|
|
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;
|
|
2150
|
+
interface GetSelfEventListingRegistrationProps extends SingleQueryParams {
|
|
2151
|
+
eventId: string;
|
|
2152
|
+
registrationId: string;
|
|
2153
|
+
}
|
|
2154
|
+
declare const GetSelfEventListingRegistration: ({ eventId, registrationId, clientApiParams, }: GetSelfEventListingRegistrationProps) => Promise<ConnectedXMResponse<Registration>>;
|
|
2155
|
+
declare const useGetSelfEventListingRegistration: (eventId?: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2156
|
+
|
|
2132
2157
|
declare const LISTING_REGISTRATIONS_QUERY_KEY: (eventId: string, status?: keyof typeof RegistrationStatus) => unknown[];
|
|
2133
2158
|
interface GetSelfEventListingRegistrationsProps extends InfiniteQueryParams {
|
|
2134
2159
|
eventId: string;
|
|
@@ -2738,6 +2763,12 @@ interface CreateListingSpeakerParams extends MutationParams {
|
|
|
2738
2763
|
declare const CreateListingSpeaker: ({ eventId, speaker, imageDataUri, clientApiParams, queryClient, }: CreateListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2739
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>;
|
|
2740
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
|
+
|
|
2741
2772
|
interface AddListingSponsorParams extends MutationParams {
|
|
2742
2773
|
eventId: string;
|
|
2743
2774
|
sponsor: Account;
|
|
@@ -2776,6 +2807,16 @@ interface CreateListing {
|
|
|
2776
2807
|
declare const CreateListing: ({ event, imageDataUri, communityId, sponsorIds, speakers, sessions, clientApiParams, queryClient, }: CreateListingParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2777
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>;
|
|
2778
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
|
+
|
|
2779
2820
|
interface DeleteListingSessionParams extends MutationParams {
|
|
2780
2821
|
eventId: string;
|
|
2781
2822
|
sessionId: string;
|
|
@@ -2797,12 +2838,13 @@ interface RemoveListingSponsorParams extends MutationParams {
|
|
|
2797
2838
|
declare const RemoveListingSponsor: ({ eventId, sponsorId, clientApiParams, queryClient, }: RemoveListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2798
2839
|
declare const useRemoveListingSponsor: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveListingSponsor>>, Omit<RemoveListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveListingSponsorParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2799
2840
|
|
|
2800
|
-
interface
|
|
2841
|
+
interface CheckinListingRegistrationPurchaseParams extends MutationParams {
|
|
2801
2842
|
eventId: string;
|
|
2802
2843
|
registrationId: string;
|
|
2844
|
+
purchaseId: string;
|
|
2803
2845
|
}
|
|
2804
|
-
declare const
|
|
2805
|
-
declare const
|
|
2846
|
+
declare const CheckinListingRegistrationPurchase: ({ eventId, registrationId, purchaseId, clientApiParams, queryClient, }: CheckinListingRegistrationPurchaseParams) => Promise<ConnectedXMResponse<Purchase>>;
|
|
2847
|
+
declare const useCheckinListingRegistrationPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CheckinListingRegistrationPurchase>>, Omit<CheckinListingRegistrationPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Purchase>, axios.AxiosError<ConnectedXMResponse<Purchase>, any>, Omit<CheckinListingRegistrationPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2806
2848
|
|
|
2807
2849
|
interface UpdateListingParams extends MutationParams {
|
|
2808
2850
|
eventId: string;
|
|
@@ -2866,4 +2908,4 @@ interface UpdateListingSpeakerParams extends MutationParams {
|
|
|
2866
2908
|
declare const UpdateListingSpeaker: ({ eventId, speaker, speakerId, imageDataUri, clientApiParams, queryClient, }: UpdateListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2867
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>;
|
|
2868
2910
|
|
|
2869
|
-
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, CheckinListingRegistration, type CheckinListingRegistrationParams, 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, 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, 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_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, useCheckinListingRegistration, 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, 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,31 @@ 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
|
+
|
|
2148
|
+
declare const LISTING_REGISTRATION_QUERY_KEY: (eventId: string, registrationId: string) => QueryKey;
|
|
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;
|
|
2150
|
+
interface GetSelfEventListingRegistrationProps extends SingleQueryParams {
|
|
2151
|
+
eventId: string;
|
|
2152
|
+
registrationId: string;
|
|
2153
|
+
}
|
|
2154
|
+
declare const GetSelfEventListingRegistration: ({ eventId, registrationId, clientApiParams, }: GetSelfEventListingRegistrationProps) => Promise<ConnectedXMResponse<Registration>>;
|
|
2155
|
+
declare const useGetSelfEventListingRegistration: (eventId?: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2156
|
+
|
|
2132
2157
|
declare const LISTING_REGISTRATIONS_QUERY_KEY: (eventId: string, status?: keyof typeof RegistrationStatus) => unknown[];
|
|
2133
2158
|
interface GetSelfEventListingRegistrationsProps extends InfiniteQueryParams {
|
|
2134
2159
|
eventId: string;
|
|
@@ -2738,6 +2763,12 @@ interface CreateListingSpeakerParams extends MutationParams {
|
|
|
2738
2763
|
declare const CreateListingSpeaker: ({ eventId, speaker, imageDataUri, clientApiParams, queryClient, }: CreateListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2739
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>;
|
|
2740
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
|
+
|
|
2741
2772
|
interface AddListingSponsorParams extends MutationParams {
|
|
2742
2773
|
eventId: string;
|
|
2743
2774
|
sponsor: Account;
|
|
@@ -2776,6 +2807,16 @@ interface CreateListing {
|
|
|
2776
2807
|
declare const CreateListing: ({ event, imageDataUri, communityId, sponsorIds, speakers, sessions, clientApiParams, queryClient, }: CreateListingParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2777
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>;
|
|
2778
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
|
+
|
|
2779
2820
|
interface DeleteListingSessionParams extends MutationParams {
|
|
2780
2821
|
eventId: string;
|
|
2781
2822
|
sessionId: string;
|
|
@@ -2797,12 +2838,13 @@ interface RemoveListingSponsorParams extends MutationParams {
|
|
|
2797
2838
|
declare const RemoveListingSponsor: ({ eventId, sponsorId, clientApiParams, queryClient, }: RemoveListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2798
2839
|
declare const useRemoveListingSponsor: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveListingSponsor>>, Omit<RemoveListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveListingSponsorParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2799
2840
|
|
|
2800
|
-
interface
|
|
2841
|
+
interface CheckinListingRegistrationPurchaseParams extends MutationParams {
|
|
2801
2842
|
eventId: string;
|
|
2802
2843
|
registrationId: string;
|
|
2844
|
+
purchaseId: string;
|
|
2803
2845
|
}
|
|
2804
|
-
declare const
|
|
2805
|
-
declare const
|
|
2846
|
+
declare const CheckinListingRegistrationPurchase: ({ eventId, registrationId, purchaseId, clientApiParams, queryClient, }: CheckinListingRegistrationPurchaseParams) => Promise<ConnectedXMResponse<Purchase>>;
|
|
2847
|
+
declare const useCheckinListingRegistrationPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CheckinListingRegistrationPurchase>>, Omit<CheckinListingRegistrationPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Purchase>, axios.AxiosError<ConnectedXMResponse<Purchase>, any>, Omit<CheckinListingRegistrationPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2806
2848
|
|
|
2807
2849
|
interface UpdateListingParams extends MutationParams {
|
|
2808
2850
|
eventId: string;
|
|
@@ -2866,4 +2908,4 @@ interface UpdateListingSpeakerParams extends MutationParams {
|
|
|
2866
2908
|
declare const UpdateListingSpeaker: ({ eventId, speaker, speakerId, imageDataUri, clientApiParams, queryClient, }: UpdateListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2867
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>;
|
|
2868
2910
|
|
|
2869
|
-
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, CheckinListingRegistration, type CheckinListingRegistrationParams, 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, 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, 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_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, useCheckinListingRegistration, 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, 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
|
@@ -77,7 +77,7 @@ __export(src_exports, {
|
|
|
77
77
|
CancelTransfer: () => CancelTransfer,
|
|
78
78
|
CaptureInvoicePayment: () => CaptureInvoicePayment,
|
|
79
79
|
CaptureSelfEventRegistrationPayment: () => CaptureSelfEventRegistrationPayment,
|
|
80
|
-
|
|
80
|
+
CheckinListingRegistrationPurchase: () => CheckinListingRegistrationPurchase,
|
|
81
81
|
CommunityAccess: () => CommunityAccess,
|
|
82
82
|
CommunityMembershipRole: () => CommunityMembershipRole,
|
|
83
83
|
CommunityRequestStatus: () => CommunityRequestStatus,
|
|
@@ -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,9 @@ __export(src_exports, {
|
|
|
203
205
|
GetSelfDelegateOf: () => GetSelfDelegateOf,
|
|
204
206
|
GetSelfDelegates: () => GetSelfDelegates,
|
|
205
207
|
GetSelfEventListing: () => GetSelfEventListing,
|
|
208
|
+
GetSelfEventListingAnnouncement: () => GetSelfEventListingAnnouncement,
|
|
209
|
+
GetSelfEventListingAnnouncements: () => GetSelfEventListingAnnouncements,
|
|
210
|
+
GetSelfEventListingRegistration: () => GetSelfEventListingRegistration,
|
|
206
211
|
GetSelfEventListingRegistrations: () => GetSelfEventListingRegistrations,
|
|
207
212
|
GetSelfEventListings: () => GetSelfEventListings,
|
|
208
213
|
GetSelfEventRegistration: () => GetSelfEventRegistration,
|
|
@@ -240,8 +245,11 @@ __export(src_exports, {
|
|
|
240
245
|
LEVEL_QUERY_KEY: () => LEVEL_QUERY_KEY,
|
|
241
246
|
LEVEL_SPONSORS_QUERY_KEY: () => LEVEL_SPONSORS_QUERY_KEY,
|
|
242
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,
|
|
243
250
|
LISTING_QUERY_KEY: () => LISTING_QUERY_KEY,
|
|
244
251
|
LISTING_REGISTRATIONS_QUERY_KEY: () => LISTING_REGISTRATIONS_QUERY_KEY,
|
|
252
|
+
LISTING_REGISTRATION_QUERY_KEY: () => LISTING_REGISTRATION_QUERY_KEY,
|
|
245
253
|
LeaveCommunity: () => LeaveCommunity,
|
|
246
254
|
LeaveSelfChatChannel: () => LeaveSelfChatChannel,
|
|
247
255
|
LikeActivity: () => LikeActivity,
|
|
@@ -354,7 +362,9 @@ __export(src_exports, {
|
|
|
354
362
|
SET_LEVELS_QUERY_DATA: () => SET_LEVELS_QUERY_DATA,
|
|
355
363
|
SET_LEVEL_QUERY_DATA: () => SET_LEVEL_QUERY_DATA,
|
|
356
364
|
SET_LEVEL_SPONSORS_QUERY_DATA: () => SET_LEVEL_SPONSORS_QUERY_DATA,
|
|
365
|
+
SET_LISTING_ANNOUNCEMENT_QUERY_KEY: () => SET_LISTING_ANNOUNCEMENT_QUERY_KEY,
|
|
357
366
|
SET_LISTING_QUERY_DATA: () => SET_LISTING_QUERY_DATA,
|
|
367
|
+
SET_LISTING_REGISTRATION_QUERY_KEY: () => SET_LISTING_REGISTRATION_QUERY_KEY,
|
|
358
368
|
SET_ORGANIZATION_PAGE_QUERY_DATA: () => SET_ORGANIZATION_PAGE_QUERY_DATA,
|
|
359
369
|
SET_PUSH_DEVICE_QUERY_DATA: () => SET_PUSH_DEVICE_QUERY_DATA,
|
|
360
370
|
SET_SELF_CHAT_CHANNELS_QUERY_DATA: () => SET_SELF_CHAT_CHANNELS_QUERY_DATA,
|
|
@@ -453,7 +463,7 @@ __export(src_exports, {
|
|
|
453
463
|
useCancelTransfer: () => useCancelTransfer,
|
|
454
464
|
useCaptureInvoicePayment: () => useCaptureInvoicePayment,
|
|
455
465
|
useCaptureSelfEventRegistrationPayment: () => useCaptureSelfEventRegistrationPayment,
|
|
456
|
-
|
|
466
|
+
useCheckinListingRegistrationPurchase: () => useCheckinListingRegistrationPurchase,
|
|
457
467
|
useCompleteEventActivation: () => useCompleteEventActivation,
|
|
458
468
|
useConnectedInfiniteQuery: () => useConnectedInfiniteQuery,
|
|
459
469
|
useConnectedMutation: () => useConnectedMutation,
|
|
@@ -465,6 +475,7 @@ __export(src_exports, {
|
|
|
465
475
|
useCreateCommunityRequest: () => useCreateCommunityRequest,
|
|
466
476
|
useCreateEventLead: () => useCreateEventLead,
|
|
467
477
|
useCreateListing: () => useCreateListing,
|
|
478
|
+
useCreateListingAnnouncement: () => useCreateListingAnnouncement,
|
|
468
479
|
useCreateListingSession: () => useCreateListingSession,
|
|
469
480
|
useCreateListingSpeaker: () => useCreateListingSpeaker,
|
|
470
481
|
useCreateSelfChatChannel: () => useCreateSelfChatChannel,
|
|
@@ -475,6 +486,7 @@ __export(src_exports, {
|
|
|
475
486
|
useDeactivateCommunity: () => useDeactivateCommunity,
|
|
476
487
|
useDeleteActivity: () => useDeleteActivity,
|
|
477
488
|
useDeleteCommunityInvitation: () => useDeleteCommunityInvitation,
|
|
489
|
+
useDeleteListing: () => useDeleteListing,
|
|
478
490
|
useDeleteListingSession: () => useDeleteListingSession,
|
|
479
491
|
useDeleteListingSpeaker: () => useDeleteListingSpeaker,
|
|
480
492
|
useDeleteReshare: () => useDeleteReshare,
|
|
@@ -552,6 +564,9 @@ __export(src_exports, {
|
|
|
552
564
|
useGetSelfDelegateOf: () => useGetSelfDelegateOf,
|
|
553
565
|
useGetSelfDelegates: () => useGetSelfDelegates,
|
|
554
566
|
useGetSelfEventListing: () => useGetSelfEventListing,
|
|
567
|
+
useGetSelfEventListingAnnouncement: () => useGetSelfEventListingAnnouncement,
|
|
568
|
+
useGetSelfEventListingAnnouncements: () => useGetSelfEventListingAnnouncements,
|
|
569
|
+
useGetSelfEventListingRegistration: () => useGetSelfEventListingRegistration,
|
|
555
570
|
useGetSelfEventListings: () => useGetSelfEventListings,
|
|
556
571
|
useGetSelfEventListingsRegistrations: () => useGetSelfEventListingsRegistrations,
|
|
557
572
|
useGetSelfEventRegistration: () => useGetSelfEventRegistration,
|
|
@@ -5235,6 +5250,75 @@ var useGetSelfEventListing = (eventId, options = {}) => {
|
|
|
5235
5250
|
);
|
|
5236
5251
|
};
|
|
5237
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
|
+
|
|
5238
5322
|
// src/queries/listings/useGetListingRegistrations.ts
|
|
5239
5323
|
var LISTING_REGISTRATIONS_QUERY_KEY = (eventId, status) => [...LISTING_QUERY_KEY(eventId), "REGISTRATIONS", status ?? "ALL"];
|
|
5240
5324
|
var GetSelfEventListingRegistrations = async ({
|
|
@@ -5270,6 +5354,39 @@ var useGetSelfEventListingsRegistrations = (eventId, status, params = {}, option
|
|
|
5270
5354
|
);
|
|
5271
5355
|
};
|
|
5272
5356
|
|
|
5357
|
+
// src/queries/listings/useGetListingRegistration.ts
|
|
5358
|
+
var LISTING_REGISTRATION_QUERY_KEY = (eventId, registrationId) => [LISTING_REGISTRATIONS_QUERY_KEY(eventId), registrationId];
|
|
5359
|
+
var SET_LISTING_REGISTRATION_QUERY_KEY = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
5360
|
+
client.setQueryData(
|
|
5361
|
+
[
|
|
5362
|
+
...LISTING_REGISTRATION_QUERY_KEY(...keyParams),
|
|
5363
|
+
...GetBaseSingleQueryKeys(...baseKeys)
|
|
5364
|
+
],
|
|
5365
|
+
response
|
|
5366
|
+
);
|
|
5367
|
+
};
|
|
5368
|
+
var GetSelfEventListingRegistration = async ({
|
|
5369
|
+
eventId,
|
|
5370
|
+
registrationId,
|
|
5371
|
+
clientApiParams
|
|
5372
|
+
}) => {
|
|
5373
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
5374
|
+
const { data } = await clientApi.get(
|
|
5375
|
+
`/listings/${eventId}/registrations/${registrationId}`
|
|
5376
|
+
);
|
|
5377
|
+
return data;
|
|
5378
|
+
};
|
|
5379
|
+
var useGetSelfEventListingRegistration = (eventId = "", registrationId = "", options = {}) => {
|
|
5380
|
+
return useConnectedSingleQuery(
|
|
5381
|
+
LISTING_REGISTRATION_QUERY_KEY(eventId, registrationId),
|
|
5382
|
+
(params) => GetSelfEventListingRegistration({ eventId, registrationId, ...params }),
|
|
5383
|
+
{
|
|
5384
|
+
...options,
|
|
5385
|
+
enabled: !!eventId && !!registrationId
|
|
5386
|
+
}
|
|
5387
|
+
);
|
|
5388
|
+
};
|
|
5389
|
+
|
|
5273
5390
|
// src/mutations/useConnectedMutation.ts
|
|
5274
5391
|
var import_react_query4 = require("@tanstack/react-query");
|
|
5275
5392
|
var useConnectedMutation = (mutation, options) => {
|
|
@@ -7336,6 +7453,39 @@ var useCreateListingSpeaker = (options = {}) => {
|
|
|
7336
7453
|
return useConnectedMutation_default(CreateListingSpeaker, options);
|
|
7337
7454
|
};
|
|
7338
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
|
+
|
|
7339
7489
|
// src/mutations/listings/useAddListingSponsor.ts
|
|
7340
7490
|
var AddListingSponsor = async ({
|
|
7341
7491
|
eventId,
|
|
@@ -7408,6 +7558,37 @@ var useCreateListing = (options = {}) => {
|
|
|
7408
7558
|
return useConnectedMutation_default(CreateListing, options);
|
|
7409
7559
|
};
|
|
7410
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
|
+
|
|
7411
7592
|
// src/mutations/listings/useDeleteListingSession.ts
|
|
7412
7593
|
var DeleteListingSession = async ({
|
|
7413
7594
|
eventId,
|
|
@@ -7477,26 +7658,30 @@ var useRemoveListingSponsor = (options = {}) => {
|
|
|
7477
7658
|
return useConnectedMutation_default(RemoveListingSponsor, options);
|
|
7478
7659
|
};
|
|
7479
7660
|
|
|
7480
|
-
// src/mutations/listings/
|
|
7481
|
-
var
|
|
7661
|
+
// src/mutations/listings/useCheckinListingRegistrationPurchase.ts
|
|
7662
|
+
var CheckinListingRegistrationPurchase = async ({
|
|
7482
7663
|
eventId,
|
|
7483
7664
|
registrationId,
|
|
7665
|
+
purchaseId,
|
|
7484
7666
|
clientApiParams,
|
|
7485
7667
|
queryClient
|
|
7486
7668
|
}) => {
|
|
7487
7669
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
7488
7670
|
const { data } = await clientApi.post(
|
|
7489
|
-
`/listings/${eventId}/registrations/${registrationId}`
|
|
7671
|
+
`/listings/${eventId}/registrations/${registrationId}/purchases/${purchaseId}`
|
|
7490
7672
|
);
|
|
7491
7673
|
if (queryClient && data.status === "ok") {
|
|
7492
7674
|
queryClient.invalidateQueries({
|
|
7493
7675
|
queryKey: LISTING_REGISTRATIONS_QUERY_KEY(eventId)
|
|
7494
7676
|
});
|
|
7677
|
+
queryClient.invalidateQueries({
|
|
7678
|
+
queryKey: LISTING_REGISTRATION_QUERY_KEY(eventId, registrationId)
|
|
7679
|
+
});
|
|
7495
7680
|
}
|
|
7496
7681
|
return data;
|
|
7497
7682
|
};
|
|
7498
|
-
var
|
|
7499
|
-
return useConnectedMutation_default(
|
|
7683
|
+
var useCheckinListingRegistrationPurchase = (options = {}) => {
|
|
7684
|
+
return useConnectedMutation_default(CheckinListingRegistrationPurchase, options);
|
|
7500
7685
|
};
|
|
7501
7686
|
|
|
7502
7687
|
// src/mutations/listings/useUpdateListing.ts
|
|
@@ -7634,7 +7819,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
7634
7819
|
CancelTransfer,
|
|
7635
7820
|
CaptureInvoicePayment,
|
|
7636
7821
|
CaptureSelfEventRegistrationPayment,
|
|
7637
|
-
|
|
7822
|
+
CheckinListingRegistrationPurchase,
|
|
7638
7823
|
CommunityAccess,
|
|
7639
7824
|
CommunityMembershipRole,
|
|
7640
7825
|
CommunityRequestStatus,
|
|
@@ -7648,6 +7833,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
7648
7833
|
CreateCommunityRequest,
|
|
7649
7834
|
CreateEventLead,
|
|
7650
7835
|
CreateListing,
|
|
7836
|
+
CreateListingAnnouncement,
|
|
7651
7837
|
CreateListingSession,
|
|
7652
7838
|
CreateListingSpeaker,
|
|
7653
7839
|
CreateSelfChatChannel,
|
|
@@ -7659,6 +7845,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
7659
7845
|
DeactivateCommunity,
|
|
7660
7846
|
DeleteActivity,
|
|
7661
7847
|
DeleteCommunityInvitation,
|
|
7848
|
+
DeleteListing,
|
|
7662
7849
|
DeleteListingSession,
|
|
7663
7850
|
DeleteListingSpeaker,
|
|
7664
7851
|
DeleteReshare,
|
|
@@ -7760,6 +7947,9 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
7760
7947
|
GetSelfDelegateOf,
|
|
7761
7948
|
GetSelfDelegates,
|
|
7762
7949
|
GetSelfEventListing,
|
|
7950
|
+
GetSelfEventListingAnnouncement,
|
|
7951
|
+
GetSelfEventListingAnnouncements,
|
|
7952
|
+
GetSelfEventListingRegistration,
|
|
7763
7953
|
GetSelfEventListingRegistrations,
|
|
7764
7954
|
GetSelfEventListings,
|
|
7765
7955
|
GetSelfEventRegistration,
|
|
@@ -7797,8 +7987,11 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
7797
7987
|
LEVEL_QUERY_KEY,
|
|
7798
7988
|
LEVEL_SPONSORS_QUERY_KEY,
|
|
7799
7989
|
LISTINGS_QUERY_KEY,
|
|
7990
|
+
LISTING_ANNOUNCEMENTS_QUERY_KEY,
|
|
7991
|
+
LISTING_ANNOUNCEMENT_QUERY_KEY,
|
|
7800
7992
|
LISTING_QUERY_KEY,
|
|
7801
7993
|
LISTING_REGISTRATIONS_QUERY_KEY,
|
|
7994
|
+
LISTING_REGISTRATION_QUERY_KEY,
|
|
7802
7995
|
LeaveCommunity,
|
|
7803
7996
|
LeaveSelfChatChannel,
|
|
7804
7997
|
LikeActivity,
|
|
@@ -7911,7 +8104,9 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
7911
8104
|
SET_LEVELS_QUERY_DATA,
|
|
7912
8105
|
SET_LEVEL_QUERY_DATA,
|
|
7913
8106
|
SET_LEVEL_SPONSORS_QUERY_DATA,
|
|
8107
|
+
SET_LISTING_ANNOUNCEMENT_QUERY_KEY,
|
|
7914
8108
|
SET_LISTING_QUERY_DATA,
|
|
8109
|
+
SET_LISTING_REGISTRATION_QUERY_KEY,
|
|
7915
8110
|
SET_ORGANIZATION_PAGE_QUERY_DATA,
|
|
7916
8111
|
SET_PUSH_DEVICE_QUERY_DATA,
|
|
7917
8112
|
SET_SELF_CHAT_CHANNELS_QUERY_DATA,
|
|
@@ -8010,7 +8205,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8010
8205
|
useCancelTransfer,
|
|
8011
8206
|
useCaptureInvoicePayment,
|
|
8012
8207
|
useCaptureSelfEventRegistrationPayment,
|
|
8013
|
-
|
|
8208
|
+
useCheckinListingRegistrationPurchase,
|
|
8014
8209
|
useCompleteEventActivation,
|
|
8015
8210
|
useConnectedInfiniteQuery,
|
|
8016
8211
|
useConnectedMutation,
|
|
@@ -8022,6 +8217,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8022
8217
|
useCreateCommunityRequest,
|
|
8023
8218
|
useCreateEventLead,
|
|
8024
8219
|
useCreateListing,
|
|
8220
|
+
useCreateListingAnnouncement,
|
|
8025
8221
|
useCreateListingSession,
|
|
8026
8222
|
useCreateListingSpeaker,
|
|
8027
8223
|
useCreateSelfChatChannel,
|
|
@@ -8032,6 +8228,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8032
8228
|
useDeactivateCommunity,
|
|
8033
8229
|
useDeleteActivity,
|
|
8034
8230
|
useDeleteCommunityInvitation,
|
|
8231
|
+
useDeleteListing,
|
|
8035
8232
|
useDeleteListingSession,
|
|
8036
8233
|
useDeleteListingSpeaker,
|
|
8037
8234
|
useDeleteReshare,
|
|
@@ -8109,6 +8306,9 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8109
8306
|
useGetSelfDelegateOf,
|
|
8110
8307
|
useGetSelfDelegates,
|
|
8111
8308
|
useGetSelfEventListing,
|
|
8309
|
+
useGetSelfEventListingAnnouncement,
|
|
8310
|
+
useGetSelfEventListingAnnouncements,
|
|
8311
|
+
useGetSelfEventListingRegistration,
|
|
8112
8312
|
useGetSelfEventListings,
|
|
8113
8313
|
useGetSelfEventListingsRegistrations,
|
|
8114
8314
|
useGetSelfEventRegistration,
|
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 ({
|
|
@@ -4651,6 +4720,39 @@ var useGetSelfEventListingsRegistrations = (eventId, status, params = {}, option
|
|
|
4651
4720
|
);
|
|
4652
4721
|
};
|
|
4653
4722
|
|
|
4723
|
+
// src/queries/listings/useGetListingRegistration.ts
|
|
4724
|
+
var LISTING_REGISTRATION_QUERY_KEY = (eventId, registrationId) => [LISTING_REGISTRATIONS_QUERY_KEY(eventId), registrationId];
|
|
4725
|
+
var SET_LISTING_REGISTRATION_QUERY_KEY = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
4726
|
+
client.setQueryData(
|
|
4727
|
+
[
|
|
4728
|
+
...LISTING_REGISTRATION_QUERY_KEY(...keyParams),
|
|
4729
|
+
...GetBaseSingleQueryKeys(...baseKeys)
|
|
4730
|
+
],
|
|
4731
|
+
response
|
|
4732
|
+
);
|
|
4733
|
+
};
|
|
4734
|
+
var GetSelfEventListingRegistration = async ({
|
|
4735
|
+
eventId,
|
|
4736
|
+
registrationId,
|
|
4737
|
+
clientApiParams
|
|
4738
|
+
}) => {
|
|
4739
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
4740
|
+
const { data } = await clientApi.get(
|
|
4741
|
+
`/listings/${eventId}/registrations/${registrationId}`
|
|
4742
|
+
);
|
|
4743
|
+
return data;
|
|
4744
|
+
};
|
|
4745
|
+
var useGetSelfEventListingRegistration = (eventId = "", registrationId = "", options = {}) => {
|
|
4746
|
+
return useConnectedSingleQuery(
|
|
4747
|
+
LISTING_REGISTRATION_QUERY_KEY(eventId, registrationId),
|
|
4748
|
+
(params) => GetSelfEventListingRegistration({ eventId, registrationId, ...params }),
|
|
4749
|
+
{
|
|
4750
|
+
...options,
|
|
4751
|
+
enabled: !!eventId && !!registrationId
|
|
4752
|
+
}
|
|
4753
|
+
);
|
|
4754
|
+
};
|
|
4755
|
+
|
|
4654
4756
|
// src/mutations/useConnectedMutation.ts
|
|
4655
4757
|
import {
|
|
4656
4758
|
useMutation,
|
|
@@ -6720,6 +6822,39 @@ var useCreateListingSpeaker = (options = {}) => {
|
|
|
6720
6822
|
return useConnectedMutation_default(CreateListingSpeaker, options);
|
|
6721
6823
|
};
|
|
6722
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
|
+
|
|
6723
6858
|
// src/mutations/listings/useAddListingSponsor.ts
|
|
6724
6859
|
var AddListingSponsor = async ({
|
|
6725
6860
|
eventId,
|
|
@@ -6792,6 +6927,37 @@ var useCreateListing = (options = {}) => {
|
|
|
6792
6927
|
return useConnectedMutation_default(CreateListing, options);
|
|
6793
6928
|
};
|
|
6794
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
|
+
|
|
6795
6961
|
// src/mutations/listings/useDeleteListingSession.ts
|
|
6796
6962
|
var DeleteListingSession = async ({
|
|
6797
6963
|
eventId,
|
|
@@ -6861,26 +7027,30 @@ var useRemoveListingSponsor = (options = {}) => {
|
|
|
6861
7027
|
return useConnectedMutation_default(RemoveListingSponsor, options);
|
|
6862
7028
|
};
|
|
6863
7029
|
|
|
6864
|
-
// src/mutations/listings/
|
|
6865
|
-
var
|
|
7030
|
+
// src/mutations/listings/useCheckinListingRegistrationPurchase.ts
|
|
7031
|
+
var CheckinListingRegistrationPurchase = async ({
|
|
6866
7032
|
eventId,
|
|
6867
7033
|
registrationId,
|
|
7034
|
+
purchaseId,
|
|
6868
7035
|
clientApiParams,
|
|
6869
7036
|
queryClient
|
|
6870
7037
|
}) => {
|
|
6871
7038
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
6872
7039
|
const { data } = await clientApi.post(
|
|
6873
|
-
`/listings/${eventId}/registrations/${registrationId}`
|
|
7040
|
+
`/listings/${eventId}/registrations/${registrationId}/purchases/${purchaseId}`
|
|
6874
7041
|
);
|
|
6875
7042
|
if (queryClient && data.status === "ok") {
|
|
6876
7043
|
queryClient.invalidateQueries({
|
|
6877
7044
|
queryKey: LISTING_REGISTRATIONS_QUERY_KEY(eventId)
|
|
6878
7045
|
});
|
|
7046
|
+
queryClient.invalidateQueries({
|
|
7047
|
+
queryKey: LISTING_REGISTRATION_QUERY_KEY(eventId, registrationId)
|
|
7048
|
+
});
|
|
6879
7049
|
}
|
|
6880
7050
|
return data;
|
|
6881
7051
|
};
|
|
6882
|
-
var
|
|
6883
|
-
return useConnectedMutation_default(
|
|
7052
|
+
var useCheckinListingRegistrationPurchase = (options = {}) => {
|
|
7053
|
+
return useConnectedMutation_default(CheckinListingRegistrationPurchase, options);
|
|
6884
7054
|
};
|
|
6885
7055
|
|
|
6886
7056
|
// src/mutations/listings/useUpdateListing.ts
|
|
@@ -7017,7 +7187,7 @@ export {
|
|
|
7017
7187
|
CancelTransfer,
|
|
7018
7188
|
CaptureInvoicePayment,
|
|
7019
7189
|
CaptureSelfEventRegistrationPayment,
|
|
7020
|
-
|
|
7190
|
+
CheckinListingRegistrationPurchase,
|
|
7021
7191
|
CommunityAccess,
|
|
7022
7192
|
CommunityMembershipRole,
|
|
7023
7193
|
CommunityRequestStatus,
|
|
@@ -7031,6 +7201,7 @@ export {
|
|
|
7031
7201
|
CreateCommunityRequest,
|
|
7032
7202
|
CreateEventLead,
|
|
7033
7203
|
CreateListing,
|
|
7204
|
+
CreateListingAnnouncement,
|
|
7034
7205
|
CreateListingSession,
|
|
7035
7206
|
CreateListingSpeaker,
|
|
7036
7207
|
CreateSelfChatChannel,
|
|
@@ -7042,6 +7213,7 @@ export {
|
|
|
7042
7213
|
DeactivateCommunity,
|
|
7043
7214
|
DeleteActivity,
|
|
7044
7215
|
DeleteCommunityInvitation,
|
|
7216
|
+
DeleteListing,
|
|
7045
7217
|
DeleteListingSession,
|
|
7046
7218
|
DeleteListingSpeaker,
|
|
7047
7219
|
DeleteReshare,
|
|
@@ -7143,6 +7315,9 @@ export {
|
|
|
7143
7315
|
GetSelfDelegateOf,
|
|
7144
7316
|
GetSelfDelegates,
|
|
7145
7317
|
GetSelfEventListing,
|
|
7318
|
+
GetSelfEventListingAnnouncement,
|
|
7319
|
+
GetSelfEventListingAnnouncements,
|
|
7320
|
+
GetSelfEventListingRegistration,
|
|
7146
7321
|
GetSelfEventListingRegistrations,
|
|
7147
7322
|
GetSelfEventListings,
|
|
7148
7323
|
GetSelfEventRegistration,
|
|
@@ -7180,8 +7355,11 @@ export {
|
|
|
7180
7355
|
LEVEL_QUERY_KEY,
|
|
7181
7356
|
LEVEL_SPONSORS_QUERY_KEY,
|
|
7182
7357
|
LISTINGS_QUERY_KEY,
|
|
7358
|
+
LISTING_ANNOUNCEMENTS_QUERY_KEY,
|
|
7359
|
+
LISTING_ANNOUNCEMENT_QUERY_KEY,
|
|
7183
7360
|
LISTING_QUERY_KEY,
|
|
7184
7361
|
LISTING_REGISTRATIONS_QUERY_KEY,
|
|
7362
|
+
LISTING_REGISTRATION_QUERY_KEY,
|
|
7185
7363
|
LeaveCommunity,
|
|
7186
7364
|
LeaveSelfChatChannel,
|
|
7187
7365
|
LikeActivity,
|
|
@@ -7294,7 +7472,9 @@ export {
|
|
|
7294
7472
|
SET_LEVELS_QUERY_DATA,
|
|
7295
7473
|
SET_LEVEL_QUERY_DATA,
|
|
7296
7474
|
SET_LEVEL_SPONSORS_QUERY_DATA,
|
|
7475
|
+
SET_LISTING_ANNOUNCEMENT_QUERY_KEY,
|
|
7297
7476
|
SET_LISTING_QUERY_DATA,
|
|
7477
|
+
SET_LISTING_REGISTRATION_QUERY_KEY,
|
|
7298
7478
|
SET_ORGANIZATION_PAGE_QUERY_DATA,
|
|
7299
7479
|
SET_PUSH_DEVICE_QUERY_DATA,
|
|
7300
7480
|
SET_SELF_CHAT_CHANNELS_QUERY_DATA,
|
|
@@ -7393,7 +7573,7 @@ export {
|
|
|
7393
7573
|
useCancelTransfer,
|
|
7394
7574
|
useCaptureInvoicePayment,
|
|
7395
7575
|
useCaptureSelfEventRegistrationPayment,
|
|
7396
|
-
|
|
7576
|
+
useCheckinListingRegistrationPurchase,
|
|
7397
7577
|
useCompleteEventActivation,
|
|
7398
7578
|
useConnectedInfiniteQuery,
|
|
7399
7579
|
useConnectedMutation,
|
|
@@ -7405,6 +7585,7 @@ export {
|
|
|
7405
7585
|
useCreateCommunityRequest,
|
|
7406
7586
|
useCreateEventLead,
|
|
7407
7587
|
useCreateListing,
|
|
7588
|
+
useCreateListingAnnouncement,
|
|
7408
7589
|
useCreateListingSession,
|
|
7409
7590
|
useCreateListingSpeaker,
|
|
7410
7591
|
useCreateSelfChatChannel,
|
|
@@ -7415,6 +7596,7 @@ export {
|
|
|
7415
7596
|
useDeactivateCommunity,
|
|
7416
7597
|
useDeleteActivity,
|
|
7417
7598
|
useDeleteCommunityInvitation,
|
|
7599
|
+
useDeleteListing,
|
|
7418
7600
|
useDeleteListingSession,
|
|
7419
7601
|
useDeleteListingSpeaker,
|
|
7420
7602
|
useDeleteReshare,
|
|
@@ -7492,6 +7674,9 @@ export {
|
|
|
7492
7674
|
useGetSelfDelegateOf,
|
|
7493
7675
|
useGetSelfDelegates,
|
|
7494
7676
|
useGetSelfEventListing,
|
|
7677
|
+
useGetSelfEventListingAnnouncement,
|
|
7678
|
+
useGetSelfEventListingAnnouncements,
|
|
7679
|
+
useGetSelfEventListingRegistration,
|
|
7495
7680
|
useGetSelfEventListings,
|
|
7496
7681
|
useGetSelfEventListingsRegistrations,
|
|
7497
7682
|
useGetSelfEventRegistration,
|