@connectedxm/client 0.2.11 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -302,6 +302,8 @@ interface RegistrationEventDetails extends BaseEvent {
302
302
  sections: number;
303
303
  tickets: number;
304
304
  coupons: number;
305
+ addOns: number;
306
+ reservationSections: number;
305
307
  };
306
308
  }
307
309
  declare enum RegistrationQuestionType {
@@ -420,6 +422,7 @@ interface BaseTicket {
420
422
  minQuantityPerSale: number;
421
423
  maxQuantityPerSale: number;
422
424
  supply: number | null;
425
+ reservationDays: number;
423
426
  }
424
427
  interface Ticket extends BaseTicket {
425
428
  visibility: TicketVisibility;
@@ -444,6 +447,8 @@ interface BasePurchase {
444
447
  registrationId: string;
445
448
  ticketId: string | null;
446
449
  ticket: BaseTicket | null;
450
+ addOns: BaseEventAddOn[];
451
+ reservationSectionLocation: BaseEventReservationSectionLocation | null;
447
452
  responses: BaseRegistrationQuestionResponse[];
448
453
  }
449
454
  interface Purchase extends BasePurchase {
@@ -1184,6 +1189,59 @@ interface InvoiceLineItem extends BaseInvoiceLineItem {
1184
1189
  invoiceId: string;
1185
1190
  invoice: BaseInvoice;
1186
1191
  }
1192
+ interface BaseEventAddOn {
1193
+ id: string;
1194
+ name: string;
1195
+ shortDescription: string;
1196
+ supply: number;
1197
+ price: number;
1198
+ sortOrder: number;
1199
+ eventId: string;
1200
+ reservationDays: number;
1201
+ createdAt: string;
1202
+ updatedAt: string;
1203
+ }
1204
+ interface EventAddOn extends BaseEventAddOn {
1205
+ event: BaseEvent;
1206
+ }
1207
+ interface BaseEventReservationSection {
1208
+ id: string;
1209
+ eventId: string;
1210
+ name: string;
1211
+ price: number;
1212
+ pricePerDay: boolean;
1213
+ shortDescription: string;
1214
+ image: BaseImage | null;
1215
+ createdAt: string;
1216
+ updatedAt: string;
1217
+ }
1218
+ interface EventReservationSection extends BaseEventReservationSection {
1219
+ event: BaseEvent;
1220
+ locations: BaseEventReservationSectionLocation[];
1221
+ }
1222
+ interface BaseEventReservationSectionLocation {
1223
+ id: string;
1224
+ eventId: string;
1225
+ reservationSectionId: string;
1226
+ name: string;
1227
+ shortDescription: string;
1228
+ supply: number;
1229
+ premium: number;
1230
+ createdAt: string;
1231
+ updatedAt: string;
1232
+ reservationSection: {
1233
+ name: string;
1234
+ pricePerDay: boolean;
1235
+ price: number;
1236
+ image: BaseImage | null;
1237
+ };
1238
+ _count: {
1239
+ purchases: number;
1240
+ };
1241
+ }
1242
+ interface EventReservationSectionLocation extends BaseEventReservationSectionLocation {
1243
+ reservationSection: BaseEventReservationSection;
1244
+ }
1187
1245
 
1188
1246
  interface ConnectedXMClientContextState {
1189
1247
  queryClient: QueryClient;
@@ -1732,6 +1790,26 @@ interface GetSelfEventRegistrationPurchaseSectionsProps extends SingleQueryParam
1732
1790
  declare const GetSelfEventRegistrationPurchaseSections: ({ eventId, registrationId, purchaseId, clientApiParams, }: GetSelfEventRegistrationPurchaseSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
1733
1791
  declare const useGetSelfEventRegistrationPurchaseSections: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1734
1792
 
1793
+ declare const SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
1794
+ declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, registrationId: string, purchaseId: string], response: Awaited<ReturnType<typeof GetSelfEventRegistrationPurchaseAddOns>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1795
+ interface GetSelfEventRegistrationPurchaseAddOnsProps extends SingleQueryParams {
1796
+ eventId: string;
1797
+ registrationId: string;
1798
+ purchaseId: string;
1799
+ }
1800
+ declare const GetSelfEventRegistrationPurchaseAddOns: ({ eventId, registrationId, purchaseId, clientApiParams, }: GetSelfEventRegistrationPurchaseAddOnsProps) => Promise<ConnectedXMResponse<EventAddOn[]>>;
1801
+ declare const useGetSelfEventRegistrationPurchaseAddOns: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1802
+
1803
+ declare const SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
1804
+ declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, registrationId: string, purchaseId: string], response: Awaited<ReturnType<typeof GetSelfEventRegistrationPurchaseReservationSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1805
+ interface GetSelfEventRegistrationPurchaseReservationSectionsProps extends SingleQueryParams {
1806
+ eventId: string;
1807
+ registrationId: string;
1808
+ purchaseId: string;
1809
+ }
1810
+ declare const GetSelfEventRegistrationPurchaseReservationSections: ({ eventId, registrationId, purchaseId, clientApiParams, }: GetSelfEventRegistrationPurchaseReservationSectionsProps) => Promise<ConnectedXMResponse<EventReservationSection[]>>;
1811
+ declare const useGetSelfEventRegistrationPurchaseReservationSections: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseReservationSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventReservationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1812
+
1735
1813
  declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
1736
1814
  interface GetSelfSubcriptionProps extends SingleQueryParams {
1737
1815
  subscriptionId: string;
@@ -2151,13 +2229,13 @@ interface RemoveSelfEventRegistrationCouponParams extends MutationParams {
2151
2229
  declare const RemoveSelfEventRegistrationCoupon: ({ eventId, registrationId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
2152
2230
  declare const useRemoveSelfEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationCoupon>>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
2153
2231
 
2154
- interface RemoveSelfEventRegistrationTicketParams extends MutationParams {
2232
+ interface RemoveSelfEventRegistrationPurchaseParams extends MutationParams {
2155
2233
  eventId: string;
2156
2234
  registrationId: string;
2157
- ticketId: string;
2235
+ purchaseId: string;
2158
2236
  }
2159
- declare const RemoveSelfEventRegistrationTicket: ({ eventId, registrationId, ticketId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationTicketParams) => Promise<ConnectedXMResponse<Registration>>;
2160
- declare const useRemoveSelfEventRegistrationTicket: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationTicket>>, Omit<RemoveSelfEventRegistrationTicketParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationTicketParams, "queryClient" | "clientApiParams">, unknown>;
2237
+ declare const RemoveSelfEventRegistrationPurchase: ({ eventId, registrationId, purchaseId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationPurchaseParams) => Promise<ConnectedXMResponse<Registration>>;
2238
+ declare const useRemoveSelfEventRegistrationPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationPurchase>>, Omit<RemoveSelfEventRegistrationPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
2161
2239
 
2162
2240
  interface AddSelfEventRegistrationPurchaseParams extends MutationParams {
2163
2241
  eventId: string;
@@ -2205,6 +2283,33 @@ interface UpdateSelfEventRegistrationQuestionResponseParams extends MutationPara
2205
2283
  declare const UpdateSelfEventRegistrationQuestionResponse: ({ eventId, registrationId, purchaseId, questionId, value, update, clientApiParams, queryClient, }: UpdateSelfEventRegistrationQuestionResponseParams) => Promise<ConnectedXMResponse<Registration>>;
2206
2284
  declare const useUpdateSelfEventRegistrationQuestionResponse: (update?: boolean, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationQuestionResponse>>, Omit<UpdateSelfEventRegistrationQuestionResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationQuestionResponseParams, "queryClient" | "clientApiParams">, unknown>;
2207
2285
 
2286
+ interface AddSelfEventRegistrationPurchaseAddOnParams extends MutationParams {
2287
+ eventId: string;
2288
+ registrationId: string;
2289
+ purchaseId: string;
2290
+ addOnId: string;
2291
+ }
2292
+ declare const AddSelfEventRegistrationPurchaseAddOn: ({ eventId, registrationId, purchaseId, addOnId, clientApiParams, queryClient, }: AddSelfEventRegistrationPurchaseAddOnParams) => Promise<ConnectedXMResponse<Registration>>;
2293
+ declare const useAddSelfEventRegistrationPurchaseAddOn: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventRegistrationPurchaseAddOn>>, Omit<AddSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<AddSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">, unknown>;
2294
+
2295
+ interface RemoveSelfEventRegistrationPurchaseAddOnParams extends MutationParams {
2296
+ eventId: string;
2297
+ registrationId: string;
2298
+ purchaseId: string;
2299
+ addOnId: string;
2300
+ }
2301
+ declare const RemoveSelfEventRegistrationPurchaseAddOn: ({ eventId, registrationId, purchaseId, addOnId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationPurchaseAddOnParams) => Promise<ConnectedXMResponse<Registration>>;
2302
+ declare const useRemoveSelfEventRegistrationPurchaseAddOn: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationPurchaseAddOn>>, Omit<RemoveSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">, unknown>;
2303
+
2304
+ interface SelectSelfEventRegistrationPurchaseReservationParams extends MutationParams {
2305
+ eventId: string;
2306
+ registrationId: string;
2307
+ purchaseId: string;
2308
+ locationId: string;
2309
+ }
2310
+ declare const SelectSelfEventRegistrationPurchaseReservation: ({ eventId, registrationId, purchaseId, locationId, clientApiParams, queryClient, }: SelectSelfEventRegistrationPurchaseReservationParams) => Promise<ConnectedXMResponse<Registration>>;
2311
+ declare const useSelectSelfEventRegistrationPurchaseReservation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationPurchaseReservation>>, Omit<SelectSelfEventRegistrationPurchaseReservationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SelectSelfEventRegistrationPurchaseReservationParams, "queryClient" | "clientApiParams">, unknown>;
2312
+
2208
2313
  interface CancelEventRegistrationParams extends MutationParams {
2209
2314
  eventId: string;
2210
2315
  registrationId: string;
@@ -2565,4 +2670,4 @@ interface CreateTeamAccountParams extends MutationParams {
2565
2670
  declare const CreateTeamAccount: ({ name, email, clientApiParams, }: CreateTeamAccountParams) => Promise<ConnectedXMResponse<Account>>;
2566
2671
  declare const useCreateTeamAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateTeamAccount>>, Omit<CreateTeamAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<CreateTeamAccountParams, "queryClient" | "clientApiParams">, unknown>;
2567
2672
 
2568
- 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, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddCommunityEvent, type AddCommunityEventParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventListingSession, type AddSelfEventListingSessionParams, AddSelfEventListingSpeaker, type AddSelfEventListingSpeakerParams, AddSelfEventListingSponsor, type AddSelfEventListingSponsorParams, AddSelfEventRegistrationPurchase, 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 BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventPage, 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_MEMBERS_QUERY_KEY, COMMUNITY_MODERATORS_QUERY_KEY, COMMUNITY_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, type CheckoutResponse, type ClientApiParams, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, CreateEventLead, type CreateEventLeadParams, type CreateEventListing, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfEventListing, type CreateSelfEventListingParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeleteActivity, type DeleteActivityParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, 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 EventAllowlistMember, type EventListing, type EventListingSpeaker, type EventPage, 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, GetCommunityMembers, type GetCommunityMembersProps, GetCommunityModerators, type GetCommunityModeratorsProps, type GetCommunityProps, 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, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, 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, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, type Lead, 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, 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, RejectTransfer, type RejectTransferParams, RemoveCommunityEvent, type RemoveCommunityEventParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventListingSession, type RemoveSelfEventListingSessionParams, RemoveSelfEventListingSpeaker, type RemoveSelfEventListingSpeakerParams, RemoveSelfEventListingSponsor, type RemoveSelfEventListingSponsorParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationTicket, type RemoveSelfEventRegistrationTicketParams, 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_LISTINGS_QUERY_KEY, SELF_EVENT_LISTING_QUERY_KEY, SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_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_MEMBERS_QUERY_DATA, SET_COMMUNITY_MODERATORS_QUERY_DATA, SET_COMMUNITY_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_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_LISTING_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_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, type Self, SelfCheckinRegistration, type SelfCheckinRegistrationParams, SelfCreateActivity, type SelfCreateActivityParams, SelfJoinCommunity, type SelfJoinCommunityParams, SelfLeaveCommunity, type SelfLeaveCommunityParams, 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, type UpdateListing, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventListing, type UpdateSelfEventListingParams, UpdateSelfEventListingSession, type UpdateSelfEventListingSessionParams, UpdateSelfEventListingSpeaker, type UpdateSelfEventListingSpeakerParams, 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, useAcceptTransfer, useAddCommunityEvent, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventListingSession, useAddSelfEventListingSpeaker, useAddSelfEventListingSponsor, useAddSelfEventRegistrationPurchase, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateCommunityAnnouncement, useCreateEventLead, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfEventListing, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeleteActivity, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityMembers, useGetCommunityModerators, 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, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useLeaveSelfChatChannel, useLikeActivity, useRegisterCancelledEventRegistration, useRejectTransfer, useRemoveCommunityEvent, useRemoveSelfDelegate, useRemoveSelfEventListingSession, useRemoveSelfEventListingSpeaker, useRemoveSelfEventListingSponsor, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationTicket, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelfCheckinRegistration, useSelfCreateActivity, useSelfJoinCommunity, useSelfLeaveCommunity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventListing, useUpdateSelfEventListingSession, useUpdateSelfEventListingSpeaker, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
2673
+ 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, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddCommunityEvent, type AddCommunityEventParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventListingSession, type AddSelfEventListingSessionParams, AddSelfEventListingSpeaker, type AddSelfEventListingSpeakerParams, AddSelfEventListingSponsor, type AddSelfEventListingSponsorParams, 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 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_MEMBERS_QUERY_KEY, COMMUNITY_MODERATORS_QUERY_KEY, COMMUNITY_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, type CheckoutResponse, type ClientApiParams, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, CreateEventLead, type CreateEventLeadParams, type CreateEventListing, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfEventListing, type CreateSelfEventListingParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeleteActivity, type DeleteActivityParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, 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 EventListingSpeaker, 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, GetCommunityMembers, type GetCommunityMembersProps, GetCommunityModerators, type GetCommunityModeratorsProps, type GetCommunityProps, 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, 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, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, type Lead, 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, 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, RejectTransfer, type RejectTransferParams, RemoveCommunityEvent, type RemoveCommunityEventParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventListingSession, type RemoveSelfEventListingSessionParams, RemoveSelfEventListingSpeaker, type RemoveSelfEventListingSpeakerParams, RemoveSelfEventListingSponsor, type RemoveSelfEventListingSponsorParams, 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_LISTINGS_QUERY_KEY, SELF_EVENT_LISTING_QUERY_KEY, SELF_EVENT_LISTING_REGISTRATIONS_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_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_MEMBERS_QUERY_DATA, SET_COMMUNITY_MODERATORS_QUERY_DATA, SET_COMMUNITY_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_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_LISTING_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_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, SelfCheckinRegistration, type SelfCheckinRegistrationParams, SelfCreateActivity, type SelfCreateActivityParams, SelfJoinCommunity, type SelfJoinCommunityParams, SelfLeaveCommunity, type SelfLeaveCommunityParams, 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, type UpdateListing, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventListing, type UpdateSelfEventListingParams, UpdateSelfEventListingSession, type UpdateSelfEventListingSessionParams, UpdateSelfEventListingSpeaker, type UpdateSelfEventListingSpeakerParams, 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, useAcceptTransfer, useAddCommunityEvent, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventListingSession, useAddSelfEventListingSpeaker, useAddSelfEventListingSponsor, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateCommunityAnnouncement, useCreateEventLead, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfEventListing, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeleteActivity, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityMembers, useGetCommunityModerators, 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, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useLeaveSelfChatChannel, useLikeActivity, useRegisterCancelledEventRegistration, useRejectTransfer, useRemoveCommunityEvent, useRemoveSelfDelegate, useRemoveSelfEventListingSession, useRemoveSelfEventListingSpeaker, useRemoveSelfEventListingSponsor, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCheckinRegistration, useSelfCreateActivity, useSelfJoinCommunity, useSelfLeaveCommunity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventListing, useUpdateSelfEventListingSession, useUpdateSelfEventListingSpeaker, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
package/dist/index.d.ts CHANGED
@@ -302,6 +302,8 @@ interface RegistrationEventDetails extends BaseEvent {
302
302
  sections: number;
303
303
  tickets: number;
304
304
  coupons: number;
305
+ addOns: number;
306
+ reservationSections: number;
305
307
  };
306
308
  }
307
309
  declare enum RegistrationQuestionType {
@@ -420,6 +422,7 @@ interface BaseTicket {
420
422
  minQuantityPerSale: number;
421
423
  maxQuantityPerSale: number;
422
424
  supply: number | null;
425
+ reservationDays: number;
423
426
  }
424
427
  interface Ticket extends BaseTicket {
425
428
  visibility: TicketVisibility;
@@ -444,6 +447,8 @@ interface BasePurchase {
444
447
  registrationId: string;
445
448
  ticketId: string | null;
446
449
  ticket: BaseTicket | null;
450
+ addOns: BaseEventAddOn[];
451
+ reservationSectionLocation: BaseEventReservationSectionLocation | null;
447
452
  responses: BaseRegistrationQuestionResponse[];
448
453
  }
449
454
  interface Purchase extends BasePurchase {
@@ -1184,6 +1189,59 @@ interface InvoiceLineItem extends BaseInvoiceLineItem {
1184
1189
  invoiceId: string;
1185
1190
  invoice: BaseInvoice;
1186
1191
  }
1192
+ interface BaseEventAddOn {
1193
+ id: string;
1194
+ name: string;
1195
+ shortDescription: string;
1196
+ supply: number;
1197
+ price: number;
1198
+ sortOrder: number;
1199
+ eventId: string;
1200
+ reservationDays: number;
1201
+ createdAt: string;
1202
+ updatedAt: string;
1203
+ }
1204
+ interface EventAddOn extends BaseEventAddOn {
1205
+ event: BaseEvent;
1206
+ }
1207
+ interface BaseEventReservationSection {
1208
+ id: string;
1209
+ eventId: string;
1210
+ name: string;
1211
+ price: number;
1212
+ pricePerDay: boolean;
1213
+ shortDescription: string;
1214
+ image: BaseImage | null;
1215
+ createdAt: string;
1216
+ updatedAt: string;
1217
+ }
1218
+ interface EventReservationSection extends BaseEventReservationSection {
1219
+ event: BaseEvent;
1220
+ locations: BaseEventReservationSectionLocation[];
1221
+ }
1222
+ interface BaseEventReservationSectionLocation {
1223
+ id: string;
1224
+ eventId: string;
1225
+ reservationSectionId: string;
1226
+ name: string;
1227
+ shortDescription: string;
1228
+ supply: number;
1229
+ premium: number;
1230
+ createdAt: string;
1231
+ updatedAt: string;
1232
+ reservationSection: {
1233
+ name: string;
1234
+ pricePerDay: boolean;
1235
+ price: number;
1236
+ image: BaseImage | null;
1237
+ };
1238
+ _count: {
1239
+ purchases: number;
1240
+ };
1241
+ }
1242
+ interface EventReservationSectionLocation extends BaseEventReservationSectionLocation {
1243
+ reservationSection: BaseEventReservationSection;
1244
+ }
1187
1245
 
1188
1246
  interface ConnectedXMClientContextState {
1189
1247
  queryClient: QueryClient;
@@ -1732,6 +1790,26 @@ interface GetSelfEventRegistrationPurchaseSectionsProps extends SingleQueryParam
1732
1790
  declare const GetSelfEventRegistrationPurchaseSections: ({ eventId, registrationId, purchaseId, clientApiParams, }: GetSelfEventRegistrationPurchaseSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
1733
1791
  declare const useGetSelfEventRegistrationPurchaseSections: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1734
1792
 
1793
+ declare const SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
1794
+ declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, registrationId: string, purchaseId: string], response: Awaited<ReturnType<typeof GetSelfEventRegistrationPurchaseAddOns>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1795
+ interface GetSelfEventRegistrationPurchaseAddOnsProps extends SingleQueryParams {
1796
+ eventId: string;
1797
+ registrationId: string;
1798
+ purchaseId: string;
1799
+ }
1800
+ declare const GetSelfEventRegistrationPurchaseAddOns: ({ eventId, registrationId, purchaseId, clientApiParams, }: GetSelfEventRegistrationPurchaseAddOnsProps) => Promise<ConnectedXMResponse<EventAddOn[]>>;
1801
+ declare const useGetSelfEventRegistrationPurchaseAddOns: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1802
+
1803
+ declare const SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
1804
+ declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, registrationId: string, purchaseId: string], response: Awaited<ReturnType<typeof GetSelfEventRegistrationPurchaseReservationSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1805
+ interface GetSelfEventRegistrationPurchaseReservationSectionsProps extends SingleQueryParams {
1806
+ eventId: string;
1807
+ registrationId: string;
1808
+ purchaseId: string;
1809
+ }
1810
+ declare const GetSelfEventRegistrationPurchaseReservationSections: ({ eventId, registrationId, purchaseId, clientApiParams, }: GetSelfEventRegistrationPurchaseReservationSectionsProps) => Promise<ConnectedXMResponse<EventReservationSection[]>>;
1811
+ declare const useGetSelfEventRegistrationPurchaseReservationSections: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseReservationSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventReservationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1812
+
1735
1813
  declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
1736
1814
  interface GetSelfSubcriptionProps extends SingleQueryParams {
1737
1815
  subscriptionId: string;
@@ -2151,13 +2229,13 @@ interface RemoveSelfEventRegistrationCouponParams extends MutationParams {
2151
2229
  declare const RemoveSelfEventRegistrationCoupon: ({ eventId, registrationId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
2152
2230
  declare const useRemoveSelfEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationCoupon>>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
2153
2231
 
2154
- interface RemoveSelfEventRegistrationTicketParams extends MutationParams {
2232
+ interface RemoveSelfEventRegistrationPurchaseParams extends MutationParams {
2155
2233
  eventId: string;
2156
2234
  registrationId: string;
2157
- ticketId: string;
2235
+ purchaseId: string;
2158
2236
  }
2159
- declare const RemoveSelfEventRegistrationTicket: ({ eventId, registrationId, ticketId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationTicketParams) => Promise<ConnectedXMResponse<Registration>>;
2160
- declare const useRemoveSelfEventRegistrationTicket: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationTicket>>, Omit<RemoveSelfEventRegistrationTicketParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationTicketParams, "queryClient" | "clientApiParams">, unknown>;
2237
+ declare const RemoveSelfEventRegistrationPurchase: ({ eventId, registrationId, purchaseId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationPurchaseParams) => Promise<ConnectedXMResponse<Registration>>;
2238
+ declare const useRemoveSelfEventRegistrationPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationPurchase>>, Omit<RemoveSelfEventRegistrationPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
2161
2239
 
2162
2240
  interface AddSelfEventRegistrationPurchaseParams extends MutationParams {
2163
2241
  eventId: string;
@@ -2205,6 +2283,33 @@ interface UpdateSelfEventRegistrationQuestionResponseParams extends MutationPara
2205
2283
  declare const UpdateSelfEventRegistrationQuestionResponse: ({ eventId, registrationId, purchaseId, questionId, value, update, clientApiParams, queryClient, }: UpdateSelfEventRegistrationQuestionResponseParams) => Promise<ConnectedXMResponse<Registration>>;
2206
2284
  declare const useUpdateSelfEventRegistrationQuestionResponse: (update?: boolean, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationQuestionResponse>>, Omit<UpdateSelfEventRegistrationQuestionResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationQuestionResponseParams, "queryClient" | "clientApiParams">, unknown>;
2207
2285
 
2286
+ interface AddSelfEventRegistrationPurchaseAddOnParams extends MutationParams {
2287
+ eventId: string;
2288
+ registrationId: string;
2289
+ purchaseId: string;
2290
+ addOnId: string;
2291
+ }
2292
+ declare const AddSelfEventRegistrationPurchaseAddOn: ({ eventId, registrationId, purchaseId, addOnId, clientApiParams, queryClient, }: AddSelfEventRegistrationPurchaseAddOnParams) => Promise<ConnectedXMResponse<Registration>>;
2293
+ declare const useAddSelfEventRegistrationPurchaseAddOn: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventRegistrationPurchaseAddOn>>, Omit<AddSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<AddSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">, unknown>;
2294
+
2295
+ interface RemoveSelfEventRegistrationPurchaseAddOnParams extends MutationParams {
2296
+ eventId: string;
2297
+ registrationId: string;
2298
+ purchaseId: string;
2299
+ addOnId: string;
2300
+ }
2301
+ declare const RemoveSelfEventRegistrationPurchaseAddOn: ({ eventId, registrationId, purchaseId, addOnId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationPurchaseAddOnParams) => Promise<ConnectedXMResponse<Registration>>;
2302
+ declare const useRemoveSelfEventRegistrationPurchaseAddOn: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationPurchaseAddOn>>, Omit<RemoveSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">, unknown>;
2303
+
2304
+ interface SelectSelfEventRegistrationPurchaseReservationParams extends MutationParams {
2305
+ eventId: string;
2306
+ registrationId: string;
2307
+ purchaseId: string;
2308
+ locationId: string;
2309
+ }
2310
+ declare const SelectSelfEventRegistrationPurchaseReservation: ({ eventId, registrationId, purchaseId, locationId, clientApiParams, queryClient, }: SelectSelfEventRegistrationPurchaseReservationParams) => Promise<ConnectedXMResponse<Registration>>;
2311
+ declare const useSelectSelfEventRegistrationPurchaseReservation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationPurchaseReservation>>, Omit<SelectSelfEventRegistrationPurchaseReservationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SelectSelfEventRegistrationPurchaseReservationParams, "queryClient" | "clientApiParams">, unknown>;
2312
+
2208
2313
  interface CancelEventRegistrationParams extends MutationParams {
2209
2314
  eventId: string;
2210
2315
  registrationId: string;
@@ -2565,4 +2670,4 @@ interface CreateTeamAccountParams extends MutationParams {
2565
2670
  declare const CreateTeamAccount: ({ name, email, clientApiParams, }: CreateTeamAccountParams) => Promise<ConnectedXMResponse<Account>>;
2566
2671
  declare const useCreateTeamAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateTeamAccount>>, Omit<CreateTeamAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<CreateTeamAccountParams, "queryClient" | "clientApiParams">, unknown>;
2567
2672
 
2568
- 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, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddCommunityEvent, type AddCommunityEventParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventListingSession, type AddSelfEventListingSessionParams, AddSelfEventListingSpeaker, type AddSelfEventListingSpeakerParams, AddSelfEventListingSponsor, type AddSelfEventListingSponsorParams, AddSelfEventRegistrationPurchase, 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 BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventPage, 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_MEMBERS_QUERY_KEY, COMMUNITY_MODERATORS_QUERY_KEY, COMMUNITY_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, type CheckoutResponse, type ClientApiParams, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, CreateEventLead, type CreateEventLeadParams, type CreateEventListing, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfEventListing, type CreateSelfEventListingParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeleteActivity, type DeleteActivityParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, 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 EventAllowlistMember, type EventListing, type EventListingSpeaker, type EventPage, 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, GetCommunityMembers, type GetCommunityMembersProps, GetCommunityModerators, type GetCommunityModeratorsProps, type GetCommunityProps, 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, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, 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, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, type Lead, 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, 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, RejectTransfer, type RejectTransferParams, RemoveCommunityEvent, type RemoveCommunityEventParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventListingSession, type RemoveSelfEventListingSessionParams, RemoveSelfEventListingSpeaker, type RemoveSelfEventListingSpeakerParams, RemoveSelfEventListingSponsor, type RemoveSelfEventListingSponsorParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationTicket, type RemoveSelfEventRegistrationTicketParams, 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_LISTINGS_QUERY_KEY, SELF_EVENT_LISTING_QUERY_KEY, SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_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_MEMBERS_QUERY_DATA, SET_COMMUNITY_MODERATORS_QUERY_DATA, SET_COMMUNITY_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_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_LISTING_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_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, type Self, SelfCheckinRegistration, type SelfCheckinRegistrationParams, SelfCreateActivity, type SelfCreateActivityParams, SelfJoinCommunity, type SelfJoinCommunityParams, SelfLeaveCommunity, type SelfLeaveCommunityParams, 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, type UpdateListing, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventListing, type UpdateSelfEventListingParams, UpdateSelfEventListingSession, type UpdateSelfEventListingSessionParams, UpdateSelfEventListingSpeaker, type UpdateSelfEventListingSpeakerParams, 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, useAcceptTransfer, useAddCommunityEvent, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventListingSession, useAddSelfEventListingSpeaker, useAddSelfEventListingSponsor, useAddSelfEventRegistrationPurchase, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateCommunityAnnouncement, useCreateEventLead, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfEventListing, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeleteActivity, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityMembers, useGetCommunityModerators, 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, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useLeaveSelfChatChannel, useLikeActivity, useRegisterCancelledEventRegistration, useRejectTransfer, useRemoveCommunityEvent, useRemoveSelfDelegate, useRemoveSelfEventListingSession, useRemoveSelfEventListingSpeaker, useRemoveSelfEventListingSponsor, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationTicket, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelfCheckinRegistration, useSelfCreateActivity, useSelfJoinCommunity, useSelfLeaveCommunity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventListing, useUpdateSelfEventListingSession, useUpdateSelfEventListingSpeaker, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
2673
+ 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, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddCommunityEvent, type AddCommunityEventParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventListingSession, type AddSelfEventListingSessionParams, AddSelfEventListingSpeaker, type AddSelfEventListingSpeakerParams, AddSelfEventListingSponsor, type AddSelfEventListingSponsorParams, 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 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_MEMBERS_QUERY_KEY, COMMUNITY_MODERATORS_QUERY_KEY, COMMUNITY_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, type CheckoutResponse, type ClientApiParams, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, CreateEventLead, type CreateEventLeadParams, type CreateEventListing, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfEventListing, type CreateSelfEventListingParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeleteActivity, type DeleteActivityParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, 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 EventListingSpeaker, 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, GetCommunityMembers, type GetCommunityMembersProps, GetCommunityModerators, type GetCommunityModeratorsProps, type GetCommunityProps, 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, 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, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, type Lead, 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, 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, RejectTransfer, type RejectTransferParams, RemoveCommunityEvent, type RemoveCommunityEventParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventListingSession, type RemoveSelfEventListingSessionParams, RemoveSelfEventListingSpeaker, type RemoveSelfEventListingSpeakerParams, RemoveSelfEventListingSponsor, type RemoveSelfEventListingSponsorParams, 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_LISTINGS_QUERY_KEY, SELF_EVENT_LISTING_QUERY_KEY, SELF_EVENT_LISTING_REGISTRATIONS_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_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_MEMBERS_QUERY_DATA, SET_COMMUNITY_MODERATORS_QUERY_DATA, SET_COMMUNITY_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_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_LISTING_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_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, SelfCheckinRegistration, type SelfCheckinRegistrationParams, SelfCreateActivity, type SelfCreateActivityParams, SelfJoinCommunity, type SelfJoinCommunityParams, SelfLeaveCommunity, type SelfLeaveCommunityParams, 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, type UpdateListing, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventListing, type UpdateSelfEventListingParams, UpdateSelfEventListingSession, type UpdateSelfEventListingSessionParams, UpdateSelfEventListingSpeaker, type UpdateSelfEventListingSpeakerParams, 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, useAcceptTransfer, useAddCommunityEvent, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventListingSession, useAddSelfEventListingSpeaker, useAddSelfEventListingSponsor, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateCommunityAnnouncement, useCreateEventLead, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfEventListing, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeleteActivity, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityMembers, useGetCommunityModerators, 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, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useLeaveSelfChatChannel, useLikeActivity, useRegisterCancelledEventRegistration, useRejectTransfer, useRemoveCommunityEvent, useRemoveSelfDelegate, useRemoveSelfEventListingSession, useRemoveSelfEventListingSpeaker, useRemoveSelfEventListingSponsor, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCheckinRegistration, useSelfCreateActivity, useSelfJoinCommunity, useSelfLeaveCommunity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventListing, useUpdateSelfEventListingSession, useUpdateSelfEventListingSpeaker, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
package/dist/index.js CHANGED
@@ -50,6 +50,7 @@ __export(src_exports, {
50
50
  AddSelfEventListingSpeaker: () => AddSelfEventListingSpeaker,
51
51
  AddSelfEventListingSponsor: () => AddSelfEventListingSponsor,
52
52
  AddSelfEventRegistrationPurchase: () => AddSelfEventRegistrationPurchase,
53
+ AddSelfEventRegistrationPurchaseAddOn: () => AddSelfEventRegistrationPurchaseAddOn,
53
54
  AddSelfEventSession: () => AddSelfEventSession,
54
55
  AdvertisementType: () => AdvertisementType,
55
56
  AppendInfiniteQuery: () => AppendInfiniteQuery,
@@ -190,6 +191,8 @@ __export(src_exports, {
190
191
  GetSelfEventRegistration: () => GetSelfEventRegistration,
191
192
  GetSelfEventRegistrationCheckout: () => GetSelfEventRegistrationCheckout,
192
193
  GetSelfEventRegistrationPurchase: () => GetSelfEventRegistrationPurchase,
194
+ GetSelfEventRegistrationPurchaseAddOns: () => GetSelfEventRegistrationPurchaseAddOns,
195
+ GetSelfEventRegistrationPurchaseReservationSections: () => GetSelfEventRegistrationPurchaseReservationSections,
193
196
  GetSelfEventRegistrationPurchaseSections: () => GetSelfEventRegistrationPurchaseSections,
194
197
  GetSelfEventSessions: () => GetSelfEventSessions,
195
198
  GetSelfEvents: () => GetSelfEvents,
@@ -238,7 +241,8 @@ __export(src_exports, {
238
241
  RemoveSelfEventListingSpeaker: () => RemoveSelfEventListingSpeaker,
239
242
  RemoveSelfEventListingSponsor: () => RemoveSelfEventListingSponsor,
240
243
  RemoveSelfEventRegistrationCoupon: () => RemoveSelfEventRegistrationCoupon,
241
- RemoveSelfEventRegistrationTicket: () => RemoveSelfEventRegistrationTicket,
244
+ RemoveSelfEventRegistrationPurchase: () => RemoveSelfEventRegistrationPurchase,
245
+ RemoveSelfEventRegistrationPurchaseAddOn: () => RemoveSelfEventRegistrationPurchaseAddOn,
242
246
  RemoveSelfEventSession: () => RemoveSelfEventSession,
243
247
  ReshareActivity: () => ReshareActivity,
244
248
  SELF_ACTIVITIES_QUERY_KEY: () => SELF_ACTIVITIES_QUERY_KEY,
@@ -256,7 +260,9 @@ __export(src_exports, {
256
260
  SELF_EVENT_LISTING_QUERY_KEY: () => SELF_EVENT_LISTING_QUERY_KEY,
257
261
  SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY: () => SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY,
258
262
  SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY: () => SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY,
263
+ SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY: () => SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY,
259
264
  SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY: () => SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY,
265
+ SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY: () => SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY,
260
266
  SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY: () => SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY,
261
267
  SELF_EVENT_REGISTRATION_QUERY_KEY: () => SELF_EVENT_REGISTRATION_QUERY_KEY,
262
268
  SELF_EVENT_SESSIONS_QUERY_KEY: () => SELF_EVENT_SESSIONS_QUERY_KEY,
@@ -332,7 +338,9 @@ __export(src_exports, {
332
338
  SET_SELF_CHAT_CHANNEL_QUERY_DATA: () => SET_SELF_CHAT_CHANNEL_QUERY_DATA,
333
339
  SET_SELF_COMMUNITY_MEMBERSHIP_QUERY_DATA: () => SET_SELF_COMMUNITY_MEMBERSHIP_QUERY_DATA,
334
340
  SET_SELF_EVENT_LISTING_QUERY_DATA: () => SET_SELF_EVENT_LISTING_QUERY_DATA,
341
+ SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA: () => SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA,
335
342
  SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA: () => SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA,
343
+ SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA: () => SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA,
336
344
  SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA: () => SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA,
337
345
  SET_SELF_EVENT_REGISTRATION_QUERY_DATA: () => SET_SELF_EVENT_REGISTRATION_QUERY_DATA,
338
346
  SET_SELF_QUERY_DATA: () => SET_SELF_QUERY_DATA,
@@ -344,6 +352,7 @@ __export(src_exports, {
344
352
  SPONSORS_QUERY_KEY: () => SPONSORS_QUERY_KEY,
345
353
  SPONSOR_QUERY_KEY: () => SPONSOR_QUERY_KEY,
346
354
  SelectSelfEventRegistrationCoupon: () => SelectSelfEventRegistrationCoupon,
355
+ SelectSelfEventRegistrationPurchaseReservation: () => SelectSelfEventRegistrationPurchaseReservation,
347
356
  SelfCheckinRegistration: () => SelfCheckinRegistration,
348
357
  SelfCreateActivity: () => SelfCreateActivity,
349
358
  SelfJoinCommunity: () => SelfJoinCommunity,
@@ -416,6 +425,7 @@ __export(src_exports, {
416
425
  useAddSelfEventListingSpeaker: () => useAddSelfEventListingSpeaker,
417
426
  useAddSelfEventListingSponsor: () => useAddSelfEventListingSponsor,
418
427
  useAddSelfEventRegistrationPurchase: () => useAddSelfEventRegistrationPurchase,
428
+ useAddSelfEventRegistrationPurchaseAddOn: () => useAddSelfEventRegistrationPurchaseAddOn,
419
429
  useAddSelfEventSession: () => useAddSelfEventSession,
420
430
  useCancelEventRegistration: () => useCancelEventRegistration,
421
431
  useCancelSubscription: () => useCancelSubscription,
@@ -512,6 +522,8 @@ __export(src_exports, {
512
522
  useGetSelfEventRegistration: () => useGetSelfEventRegistration,
513
523
  useGetSelfEventRegistrationCheckout: () => useGetSelfEventRegistrationCheckout,
514
524
  useGetSelfEventRegistrationPurchase: () => useGetSelfEventRegistrationPurchase,
525
+ useGetSelfEventRegistrationPurchaseAddOns: () => useGetSelfEventRegistrationPurchaseAddOns,
526
+ useGetSelfEventRegistrationPurchaseReservationSections: () => useGetSelfEventRegistrationPurchaseReservationSections,
515
527
  useGetSelfEventRegistrationPurchaseSections: () => useGetSelfEventRegistrationPurchaseSections,
516
528
  useGetSelfEventSessions: () => useGetSelfEventSessions,
517
529
  useGetSelfEvents: () => useGetSelfEvents,
@@ -543,10 +555,12 @@ __export(src_exports, {
543
555
  useRemoveSelfEventListingSpeaker: () => useRemoveSelfEventListingSpeaker,
544
556
  useRemoveSelfEventListingSponsor: () => useRemoveSelfEventListingSponsor,
545
557
  useRemoveSelfEventRegistrationCoupon: () => useRemoveSelfEventRegistrationCoupon,
546
- useRemoveSelfEventRegistrationTicket: () => useRemoveSelfEventRegistrationTicket,
558
+ useRemoveSelfEventRegistrationPurchase: () => useRemoveSelfEventRegistrationPurchase,
559
+ useRemoveSelfEventRegistrationPurchaseAddOn: () => useRemoveSelfEventRegistrationPurchaseAddOn,
547
560
  useRemoveSelfEventSession: () => useRemoveSelfEventSession,
548
561
  useReshareActivity: () => useReshareActivity,
549
562
  useSelectSelfEventRegistrationCoupon: () => useSelectSelfEventRegistrationCoupon,
563
+ useSelectSelfEventRegistrationPurchaseReservation: () => useSelectSelfEventRegistrationPurchaseReservation,
550
564
  useSelfCheckinRegistration: () => useSelfCheckinRegistration,
551
565
  useSelfCreateActivity: () => useSelfCreateActivity,
552
566
  useSelfJoinCommunity: () => useSelfJoinCommunity,
@@ -3754,6 +3768,114 @@ var useGetSelfEventRegistrationPurchaseSections = (eventId, registrationId, purc
3754
3768
  );
3755
3769
  };
3756
3770
 
3771
+ // src/queries/self/registration/useGetSelfEventRegistrationPurchaseAddOns.ts
3772
+ var SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY = (eventId, registrationId, purchaseId) => [
3773
+ ...SELF_QUERY_KEY(),
3774
+ "EVENT",
3775
+ eventId,
3776
+ "REGISTRATION",
3777
+ registrationId,
3778
+ "PURCHASE",
3779
+ purchaseId,
3780
+ "ADD_ONS"
3781
+ ];
3782
+ var SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
3783
+ client.setQueryData(
3784
+ [
3785
+ ...SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY(...keyParams),
3786
+ ...GetBaseSingleQueryKeys(...baseKeys)
3787
+ ],
3788
+ response
3789
+ );
3790
+ };
3791
+ var GetSelfEventRegistrationPurchaseAddOns = async ({
3792
+ eventId,
3793
+ registrationId,
3794
+ purchaseId,
3795
+ clientApiParams
3796
+ }) => {
3797
+ const clientApi = await GetClientAPI(clientApiParams);
3798
+ const { data } = await clientApi.get(
3799
+ `/self/events/${eventId}/registration/${registrationId}/draft/purchases/${purchaseId}/addOns`,
3800
+ {}
3801
+ );
3802
+ return data;
3803
+ };
3804
+ var useGetSelfEventRegistrationPurchaseAddOns = (eventId, registrationId, purchaseId, options = {}) => {
3805
+ return useConnectedSingleQuery_default(
3806
+ SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY(
3807
+ eventId,
3808
+ registrationId,
3809
+ purchaseId
3810
+ ),
3811
+ (params) => GetSelfEventRegistrationPurchaseAddOns({
3812
+ eventId,
3813
+ registrationId,
3814
+ purchaseId,
3815
+ ...params
3816
+ }),
3817
+ {
3818
+ ...options,
3819
+ enabled: !!eventId && !!registrationId && !!purchaseId && (options?.enabled ?? true)
3820
+ }
3821
+ );
3822
+ };
3823
+
3824
+ // src/queries/self/registration/useGetSelfEventRegistrationPurchaseReservationSections.ts
3825
+ var SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY = (eventId, registrationId, purchaseId) => [
3826
+ ...SELF_QUERY_KEY(),
3827
+ "EVENT",
3828
+ eventId,
3829
+ "REGISTRATION",
3830
+ registrationId,
3831
+ "PURCHASE",
3832
+ purchaseId,
3833
+ "RESERVATIONS"
3834
+ ];
3835
+ var SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
3836
+ client.setQueryData(
3837
+ [
3838
+ ...SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY(
3839
+ ...keyParams
3840
+ ),
3841
+ ...GetBaseSingleQueryKeys(...baseKeys)
3842
+ ],
3843
+ response
3844
+ );
3845
+ };
3846
+ var GetSelfEventRegistrationPurchaseReservationSections = async ({
3847
+ eventId,
3848
+ registrationId,
3849
+ purchaseId,
3850
+ clientApiParams
3851
+ }) => {
3852
+ const clientApi = await GetClientAPI(clientApiParams);
3853
+ const { data } = await clientApi.get(
3854
+ `/self/events/${eventId}/registration/${registrationId}/draft/purchases/${purchaseId}/reservationSections`,
3855
+ {}
3856
+ );
3857
+ return data;
3858
+ };
3859
+ var useGetSelfEventRegistrationPurchaseReservationSections = (eventId, registrationId, purchaseId, options = {}) => {
3860
+ return useConnectedSingleQuery_default(
3861
+ SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY(
3862
+ eventId,
3863
+ registrationId,
3864
+ purchaseId
3865
+ ),
3866
+ (params) => GetSelfEventRegistrationPurchaseReservationSections({
3867
+ eventId,
3868
+ registrationId,
3869
+ purchaseId,
3870
+ ...params
3871
+ }),
3872
+ {
3873
+ ...options,
3874
+ enabled: !!eventId && !!registrationId && !!purchaseId && (options?.enabled ?? true)
3875
+ }
3876
+ );
3877
+ };
3878
+
3757
3879
  // src/queries/self/subscriptions/useGetSelfSubscriptions.ts
3758
3880
  var SELF_SUBSCRIPTIONS_QUERY_KEY = (status) => {
3759
3881
  const key = [...SELF_QUERY_KEY(), "SUBSCRIPTIONS"];
@@ -5703,17 +5825,17 @@ var useRemoveSelfEventRegistrationCoupon = (options = {}) => {
5703
5825
  return useConnectedMutation_default(RemoveSelfEventRegistrationCoupon, options);
5704
5826
  };
5705
5827
 
5706
- // src/mutations/self/events/registration/draft/useRemoveSelfEventRegistrationTicket.ts
5707
- var RemoveSelfEventRegistrationTicket = async ({
5828
+ // src/mutations/self/events/registration/draft/useRemoveSelfEventRegistrationPurchase.ts
5829
+ var RemoveSelfEventRegistrationPurchase = async ({
5708
5830
  eventId,
5709
5831
  registrationId,
5710
- ticketId,
5832
+ purchaseId,
5711
5833
  clientApiParams,
5712
5834
  queryClient
5713
5835
  }) => {
5714
5836
  const clientApi = await GetClientAPI(clientApiParams);
5715
5837
  const { data } = await clientApi.delete(
5716
- `/self/events/${eventId}/registration/${registrationId}/draft/ticket/${ticketId}`
5838
+ `/self/events/${eventId}/registration/${registrationId}/draft/purchases/${purchaseId}`
5717
5839
  );
5718
5840
  if (queryClient && data.status === "ok") {
5719
5841
  queryClient.removeQueries({
@@ -5728,8 +5850,8 @@ var RemoveSelfEventRegistrationTicket = async ({
5728
5850
  }
5729
5851
  return data;
5730
5852
  };
5731
- var useRemoveSelfEventRegistrationTicket = (options = {}) => {
5732
- return useConnectedMutation_default(RemoveSelfEventRegistrationTicket, options);
5853
+ var useRemoveSelfEventRegistrationPurchase = (options = {}) => {
5854
+ return useConnectedMutation_default(RemoveSelfEventRegistrationPurchase, options);
5733
5855
  };
5734
5856
 
5735
5857
  // src/mutations/self/events/registration/draft/useAddSelfEventRegistrationPurchase.ts
@@ -5897,6 +6019,109 @@ var useUpdateSelfEventRegistrationQuestionResponse = (update, options = {}) => {
5897
6019
  );
5898
6020
  };
5899
6021
 
6022
+ // src/mutations/self/events/registration/draft/useAddSelfEventRegistrationPurchaseAddOn.ts
6023
+ var AddSelfEventRegistrationPurchaseAddOn = async ({
6024
+ eventId,
6025
+ registrationId,
6026
+ purchaseId,
6027
+ addOnId,
6028
+ clientApiParams,
6029
+ queryClient
6030
+ }) => {
6031
+ const clientApi = await GetClientAPI(clientApiParams);
6032
+ const { data } = await clientApi.post(
6033
+ `/self/events/${eventId}/registration/${registrationId}/draft/purchases/${purchaseId}/addOns/${addOnId}`
6034
+ );
6035
+ if (queryClient && data.status === "ok") {
6036
+ SET_SELF_EVENT_REGISTRATION_QUERY_DATA(queryClient, [eventId], data, [
6037
+ clientApiParams.locale
6038
+ ]);
6039
+ queryClient.removeQueries({
6040
+ queryKey: SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY(
6041
+ eventId,
6042
+ registrationId
6043
+ )
6044
+ });
6045
+ queryClient.invalidateQueries({ queryKey: SELF_EVENTS_QUERY_KEY(false) });
6046
+ queryClient.invalidateQueries({ queryKey: SELF_EVENTS_QUERY_KEY(true) });
6047
+ queryClient.invalidateQueries({ queryKey: EVENT_QUERY_KEY(eventId) });
6048
+ queryClient.invalidateQueries({
6049
+ queryKey: EVENT_REGISTRANTS_QUERY_KEY(eventId)
6050
+ });
6051
+ }
6052
+ return data;
6053
+ };
6054
+ var useAddSelfEventRegistrationPurchaseAddOn = (options = {}) => {
6055
+ return useConnectedMutation_default(AddSelfEventRegistrationPurchaseAddOn, options);
6056
+ };
6057
+
6058
+ // src/mutations/self/events/registration/draft/useRemoveSelfEventRegistrationPurchaseAddOn.ts
6059
+ var RemoveSelfEventRegistrationPurchaseAddOn = async ({
6060
+ eventId,
6061
+ registrationId,
6062
+ purchaseId,
6063
+ addOnId,
6064
+ clientApiParams,
6065
+ queryClient
6066
+ }) => {
6067
+ const clientApi = await GetClientAPI(clientApiParams);
6068
+ const { data } = await clientApi.delete(
6069
+ `/self/events/${eventId}/registration/${registrationId}/draft/purchases/${purchaseId}/addOns/${addOnId}`
6070
+ );
6071
+ if (queryClient && data.status === "ok") {
6072
+ queryClient.removeQueries({
6073
+ queryKey: SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY(
6074
+ eventId,
6075
+ registrationId
6076
+ )
6077
+ });
6078
+ SET_SELF_EVENT_REGISTRATION_QUERY_DATA(queryClient, [eventId], data, [
6079
+ clientApiParams.locale
6080
+ ]);
6081
+ }
6082
+ return data;
6083
+ };
6084
+ var useRemoveSelfEventRegistrationPurchaseAddOn = (options = {}) => {
6085
+ return useConnectedMutation_default(RemoveSelfEventRegistrationPurchaseAddOn, options);
6086
+ };
6087
+
6088
+ // src/mutations/self/events/registration/draft/useSelectSelfEventRegistrationPurchaseReservation.ts
6089
+ var SelectSelfEventRegistrationPurchaseReservation = async ({
6090
+ eventId,
6091
+ registrationId,
6092
+ purchaseId,
6093
+ locationId,
6094
+ clientApiParams,
6095
+ queryClient
6096
+ }) => {
6097
+ const clientApi = await GetClientAPI(clientApiParams);
6098
+ const { data } = await clientApi.post(
6099
+ `/self/events/${eventId}/registration/${registrationId}/draft/purchases/${purchaseId}/reservations/${locationId}`
6100
+ );
6101
+ if (queryClient && data.status === "ok") {
6102
+ SET_SELF_EVENT_REGISTRATION_QUERY_DATA(queryClient, [eventId], data, [
6103
+ clientApiParams.locale
6104
+ ]);
6105
+ queryClient.removeQueries({
6106
+ queryKey: SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY(
6107
+ eventId,
6108
+ registrationId
6109
+ )
6110
+ });
6111
+ queryClient.invalidateQueries({
6112
+ queryKey: SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY(
6113
+ eventId,
6114
+ registrationId,
6115
+ purchaseId
6116
+ )
6117
+ });
6118
+ }
6119
+ return data;
6120
+ };
6121
+ var useSelectSelfEventRegistrationPurchaseReservation = (options = {}) => {
6122
+ return useConnectedMutation_default(SelectSelfEventRegistrationPurchaseReservation, options);
6123
+ };
6124
+
5900
6125
  // src/mutations/self/events/registration/registered/useCancelEventRegistration.ts
5901
6126
  var CancelEventRegistration = async ({
5902
6127
  eventId,
@@ -6973,6 +7198,7 @@ var useCreateTeamAccount = (options = {}) => {
6973
7198
  AddSelfEventListingSpeaker,
6974
7199
  AddSelfEventListingSponsor,
6975
7200
  AddSelfEventRegistrationPurchase,
7201
+ AddSelfEventRegistrationPurchaseAddOn,
6976
7202
  AddSelfEventSession,
6977
7203
  AdvertisementType,
6978
7204
  AppendInfiniteQuery,
@@ -7113,6 +7339,8 @@ var useCreateTeamAccount = (options = {}) => {
7113
7339
  GetSelfEventRegistration,
7114
7340
  GetSelfEventRegistrationCheckout,
7115
7341
  GetSelfEventRegistrationPurchase,
7342
+ GetSelfEventRegistrationPurchaseAddOns,
7343
+ GetSelfEventRegistrationPurchaseReservationSections,
7116
7344
  GetSelfEventRegistrationPurchaseSections,
7117
7345
  GetSelfEventSessions,
7118
7346
  GetSelfEvents,
@@ -7161,7 +7389,8 @@ var useCreateTeamAccount = (options = {}) => {
7161
7389
  RemoveSelfEventListingSpeaker,
7162
7390
  RemoveSelfEventListingSponsor,
7163
7391
  RemoveSelfEventRegistrationCoupon,
7164
- RemoveSelfEventRegistrationTicket,
7392
+ RemoveSelfEventRegistrationPurchase,
7393
+ RemoveSelfEventRegistrationPurchaseAddOn,
7165
7394
  RemoveSelfEventSession,
7166
7395
  ReshareActivity,
7167
7396
  SELF_ACTIVITIES_QUERY_KEY,
@@ -7179,7 +7408,9 @@ var useCreateTeamAccount = (options = {}) => {
7179
7408
  SELF_EVENT_LISTING_QUERY_KEY,
7180
7409
  SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY,
7181
7410
  SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY,
7411
+ SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY,
7182
7412
  SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY,
7413
+ SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY,
7183
7414
  SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY,
7184
7415
  SELF_EVENT_REGISTRATION_QUERY_KEY,
7185
7416
  SELF_EVENT_SESSIONS_QUERY_KEY,
@@ -7255,7 +7486,9 @@ var useCreateTeamAccount = (options = {}) => {
7255
7486
  SET_SELF_CHAT_CHANNEL_QUERY_DATA,
7256
7487
  SET_SELF_COMMUNITY_MEMBERSHIP_QUERY_DATA,
7257
7488
  SET_SELF_EVENT_LISTING_QUERY_DATA,
7489
+ SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA,
7258
7490
  SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA,
7491
+ SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA,
7259
7492
  SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA,
7260
7493
  SET_SELF_EVENT_REGISTRATION_QUERY_DATA,
7261
7494
  SET_SELF_QUERY_DATA,
@@ -7267,6 +7500,7 @@ var useCreateTeamAccount = (options = {}) => {
7267
7500
  SPONSORS_QUERY_KEY,
7268
7501
  SPONSOR_QUERY_KEY,
7269
7502
  SelectSelfEventRegistrationCoupon,
7503
+ SelectSelfEventRegistrationPurchaseReservation,
7270
7504
  SelfCheckinRegistration,
7271
7505
  SelfCreateActivity,
7272
7506
  SelfJoinCommunity,
@@ -7339,6 +7573,7 @@ var useCreateTeamAccount = (options = {}) => {
7339
7573
  useAddSelfEventListingSpeaker,
7340
7574
  useAddSelfEventListingSponsor,
7341
7575
  useAddSelfEventRegistrationPurchase,
7576
+ useAddSelfEventRegistrationPurchaseAddOn,
7342
7577
  useAddSelfEventSession,
7343
7578
  useCancelEventRegistration,
7344
7579
  useCancelSubscription,
@@ -7435,6 +7670,8 @@ var useCreateTeamAccount = (options = {}) => {
7435
7670
  useGetSelfEventRegistration,
7436
7671
  useGetSelfEventRegistrationCheckout,
7437
7672
  useGetSelfEventRegistrationPurchase,
7673
+ useGetSelfEventRegistrationPurchaseAddOns,
7674
+ useGetSelfEventRegistrationPurchaseReservationSections,
7438
7675
  useGetSelfEventRegistrationPurchaseSections,
7439
7676
  useGetSelfEventSessions,
7440
7677
  useGetSelfEvents,
@@ -7466,10 +7703,12 @@ var useCreateTeamAccount = (options = {}) => {
7466
7703
  useRemoveSelfEventListingSpeaker,
7467
7704
  useRemoveSelfEventListingSponsor,
7468
7705
  useRemoveSelfEventRegistrationCoupon,
7469
- useRemoveSelfEventRegistrationTicket,
7706
+ useRemoveSelfEventRegistrationPurchase,
7707
+ useRemoveSelfEventRegistrationPurchaseAddOn,
7470
7708
  useRemoveSelfEventSession,
7471
7709
  useReshareActivity,
7472
7710
  useSelectSelfEventRegistrationCoupon,
7711
+ useSelectSelfEventRegistrationPurchaseReservation,
7473
7712
  useSelfCheckinRegistration,
7474
7713
  useSelfCreateActivity,
7475
7714
  useSelfJoinCommunity,
package/dist/index.mjs CHANGED
@@ -3185,6 +3185,114 @@ var useGetSelfEventRegistrationPurchaseSections = (eventId, registrationId, purc
3185
3185
  );
3186
3186
  };
3187
3187
 
3188
+ // src/queries/self/registration/useGetSelfEventRegistrationPurchaseAddOns.ts
3189
+ var SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY = (eventId, registrationId, purchaseId) => [
3190
+ ...SELF_QUERY_KEY(),
3191
+ "EVENT",
3192
+ eventId,
3193
+ "REGISTRATION",
3194
+ registrationId,
3195
+ "PURCHASE",
3196
+ purchaseId,
3197
+ "ADD_ONS"
3198
+ ];
3199
+ var SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
3200
+ client.setQueryData(
3201
+ [
3202
+ ...SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY(...keyParams),
3203
+ ...GetBaseSingleQueryKeys(...baseKeys)
3204
+ ],
3205
+ response
3206
+ );
3207
+ };
3208
+ var GetSelfEventRegistrationPurchaseAddOns = async ({
3209
+ eventId,
3210
+ registrationId,
3211
+ purchaseId,
3212
+ clientApiParams
3213
+ }) => {
3214
+ const clientApi = await GetClientAPI(clientApiParams);
3215
+ const { data } = await clientApi.get(
3216
+ `/self/events/${eventId}/registration/${registrationId}/draft/purchases/${purchaseId}/addOns`,
3217
+ {}
3218
+ );
3219
+ return data;
3220
+ };
3221
+ var useGetSelfEventRegistrationPurchaseAddOns = (eventId, registrationId, purchaseId, options = {}) => {
3222
+ return useConnectedSingleQuery_default(
3223
+ SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY(
3224
+ eventId,
3225
+ registrationId,
3226
+ purchaseId
3227
+ ),
3228
+ (params) => GetSelfEventRegistrationPurchaseAddOns({
3229
+ eventId,
3230
+ registrationId,
3231
+ purchaseId,
3232
+ ...params
3233
+ }),
3234
+ {
3235
+ ...options,
3236
+ enabled: !!eventId && !!registrationId && !!purchaseId && (options?.enabled ?? true)
3237
+ }
3238
+ );
3239
+ };
3240
+
3241
+ // src/queries/self/registration/useGetSelfEventRegistrationPurchaseReservationSections.ts
3242
+ var SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY = (eventId, registrationId, purchaseId) => [
3243
+ ...SELF_QUERY_KEY(),
3244
+ "EVENT",
3245
+ eventId,
3246
+ "REGISTRATION",
3247
+ registrationId,
3248
+ "PURCHASE",
3249
+ purchaseId,
3250
+ "RESERVATIONS"
3251
+ ];
3252
+ var SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
3253
+ client.setQueryData(
3254
+ [
3255
+ ...SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY(
3256
+ ...keyParams
3257
+ ),
3258
+ ...GetBaseSingleQueryKeys(...baseKeys)
3259
+ ],
3260
+ response
3261
+ );
3262
+ };
3263
+ var GetSelfEventRegistrationPurchaseReservationSections = async ({
3264
+ eventId,
3265
+ registrationId,
3266
+ purchaseId,
3267
+ clientApiParams
3268
+ }) => {
3269
+ const clientApi = await GetClientAPI(clientApiParams);
3270
+ const { data } = await clientApi.get(
3271
+ `/self/events/${eventId}/registration/${registrationId}/draft/purchases/${purchaseId}/reservationSections`,
3272
+ {}
3273
+ );
3274
+ return data;
3275
+ };
3276
+ var useGetSelfEventRegistrationPurchaseReservationSections = (eventId, registrationId, purchaseId, options = {}) => {
3277
+ return useConnectedSingleQuery_default(
3278
+ SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY(
3279
+ eventId,
3280
+ registrationId,
3281
+ purchaseId
3282
+ ),
3283
+ (params) => GetSelfEventRegistrationPurchaseReservationSections({
3284
+ eventId,
3285
+ registrationId,
3286
+ purchaseId,
3287
+ ...params
3288
+ }),
3289
+ {
3290
+ ...options,
3291
+ enabled: !!eventId && !!registrationId && !!purchaseId && (options?.enabled ?? true)
3292
+ }
3293
+ );
3294
+ };
3295
+
3188
3296
  // src/queries/self/subscriptions/useGetSelfSubscriptions.ts
3189
3297
  var SELF_SUBSCRIPTIONS_QUERY_KEY = (status) => {
3190
3298
  const key = [...SELF_QUERY_KEY(), "SUBSCRIPTIONS"];
@@ -5137,17 +5245,17 @@ var useRemoveSelfEventRegistrationCoupon = (options = {}) => {
5137
5245
  return useConnectedMutation_default(RemoveSelfEventRegistrationCoupon, options);
5138
5246
  };
5139
5247
 
5140
- // src/mutations/self/events/registration/draft/useRemoveSelfEventRegistrationTicket.ts
5141
- var RemoveSelfEventRegistrationTicket = async ({
5248
+ // src/mutations/self/events/registration/draft/useRemoveSelfEventRegistrationPurchase.ts
5249
+ var RemoveSelfEventRegistrationPurchase = async ({
5142
5250
  eventId,
5143
5251
  registrationId,
5144
- ticketId,
5252
+ purchaseId,
5145
5253
  clientApiParams,
5146
5254
  queryClient
5147
5255
  }) => {
5148
5256
  const clientApi = await GetClientAPI(clientApiParams);
5149
5257
  const { data } = await clientApi.delete(
5150
- `/self/events/${eventId}/registration/${registrationId}/draft/ticket/${ticketId}`
5258
+ `/self/events/${eventId}/registration/${registrationId}/draft/purchases/${purchaseId}`
5151
5259
  );
5152
5260
  if (queryClient && data.status === "ok") {
5153
5261
  queryClient.removeQueries({
@@ -5162,8 +5270,8 @@ var RemoveSelfEventRegistrationTicket = async ({
5162
5270
  }
5163
5271
  return data;
5164
5272
  };
5165
- var useRemoveSelfEventRegistrationTicket = (options = {}) => {
5166
- return useConnectedMutation_default(RemoveSelfEventRegistrationTicket, options);
5273
+ var useRemoveSelfEventRegistrationPurchase = (options = {}) => {
5274
+ return useConnectedMutation_default(RemoveSelfEventRegistrationPurchase, options);
5167
5275
  };
5168
5276
 
5169
5277
  // src/mutations/self/events/registration/draft/useAddSelfEventRegistrationPurchase.ts
@@ -5331,6 +5439,109 @@ var useUpdateSelfEventRegistrationQuestionResponse = (update, options = {}) => {
5331
5439
  );
5332
5440
  };
5333
5441
 
5442
+ // src/mutations/self/events/registration/draft/useAddSelfEventRegistrationPurchaseAddOn.ts
5443
+ var AddSelfEventRegistrationPurchaseAddOn = async ({
5444
+ eventId,
5445
+ registrationId,
5446
+ purchaseId,
5447
+ addOnId,
5448
+ clientApiParams,
5449
+ queryClient
5450
+ }) => {
5451
+ const clientApi = await GetClientAPI(clientApiParams);
5452
+ const { data } = await clientApi.post(
5453
+ `/self/events/${eventId}/registration/${registrationId}/draft/purchases/${purchaseId}/addOns/${addOnId}`
5454
+ );
5455
+ if (queryClient && data.status === "ok") {
5456
+ SET_SELF_EVENT_REGISTRATION_QUERY_DATA(queryClient, [eventId], data, [
5457
+ clientApiParams.locale
5458
+ ]);
5459
+ queryClient.removeQueries({
5460
+ queryKey: SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY(
5461
+ eventId,
5462
+ registrationId
5463
+ )
5464
+ });
5465
+ queryClient.invalidateQueries({ queryKey: SELF_EVENTS_QUERY_KEY(false) });
5466
+ queryClient.invalidateQueries({ queryKey: SELF_EVENTS_QUERY_KEY(true) });
5467
+ queryClient.invalidateQueries({ queryKey: EVENT_QUERY_KEY(eventId) });
5468
+ queryClient.invalidateQueries({
5469
+ queryKey: EVENT_REGISTRANTS_QUERY_KEY(eventId)
5470
+ });
5471
+ }
5472
+ return data;
5473
+ };
5474
+ var useAddSelfEventRegistrationPurchaseAddOn = (options = {}) => {
5475
+ return useConnectedMutation_default(AddSelfEventRegistrationPurchaseAddOn, options);
5476
+ };
5477
+
5478
+ // src/mutations/self/events/registration/draft/useRemoveSelfEventRegistrationPurchaseAddOn.ts
5479
+ var RemoveSelfEventRegistrationPurchaseAddOn = async ({
5480
+ eventId,
5481
+ registrationId,
5482
+ purchaseId,
5483
+ addOnId,
5484
+ clientApiParams,
5485
+ queryClient
5486
+ }) => {
5487
+ const clientApi = await GetClientAPI(clientApiParams);
5488
+ const { data } = await clientApi.delete(
5489
+ `/self/events/${eventId}/registration/${registrationId}/draft/purchases/${purchaseId}/addOns/${addOnId}`
5490
+ );
5491
+ if (queryClient && data.status === "ok") {
5492
+ queryClient.removeQueries({
5493
+ queryKey: SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY(
5494
+ eventId,
5495
+ registrationId
5496
+ )
5497
+ });
5498
+ SET_SELF_EVENT_REGISTRATION_QUERY_DATA(queryClient, [eventId], data, [
5499
+ clientApiParams.locale
5500
+ ]);
5501
+ }
5502
+ return data;
5503
+ };
5504
+ var useRemoveSelfEventRegistrationPurchaseAddOn = (options = {}) => {
5505
+ return useConnectedMutation_default(RemoveSelfEventRegistrationPurchaseAddOn, options);
5506
+ };
5507
+
5508
+ // src/mutations/self/events/registration/draft/useSelectSelfEventRegistrationPurchaseReservation.ts
5509
+ var SelectSelfEventRegistrationPurchaseReservation = async ({
5510
+ eventId,
5511
+ registrationId,
5512
+ purchaseId,
5513
+ locationId,
5514
+ clientApiParams,
5515
+ queryClient
5516
+ }) => {
5517
+ const clientApi = await GetClientAPI(clientApiParams);
5518
+ const { data } = await clientApi.post(
5519
+ `/self/events/${eventId}/registration/${registrationId}/draft/purchases/${purchaseId}/reservations/${locationId}`
5520
+ );
5521
+ if (queryClient && data.status === "ok") {
5522
+ SET_SELF_EVENT_REGISTRATION_QUERY_DATA(queryClient, [eventId], data, [
5523
+ clientApiParams.locale
5524
+ ]);
5525
+ queryClient.removeQueries({
5526
+ queryKey: SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY(
5527
+ eventId,
5528
+ registrationId
5529
+ )
5530
+ });
5531
+ queryClient.invalidateQueries({
5532
+ queryKey: SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY(
5533
+ eventId,
5534
+ registrationId,
5535
+ purchaseId
5536
+ )
5537
+ });
5538
+ }
5539
+ return data;
5540
+ };
5541
+ var useSelectSelfEventRegistrationPurchaseReservation = (options = {}) => {
5542
+ return useConnectedMutation_default(SelectSelfEventRegistrationPurchaseReservation, options);
5543
+ };
5544
+
5334
5545
  // src/mutations/self/events/registration/registered/useCancelEventRegistration.ts
5335
5546
  var CancelEventRegistration = async ({
5336
5547
  eventId,
@@ -6406,6 +6617,7 @@ export {
6406
6617
  AddSelfEventListingSpeaker,
6407
6618
  AddSelfEventListingSponsor,
6408
6619
  AddSelfEventRegistrationPurchase,
6620
+ AddSelfEventRegistrationPurchaseAddOn,
6409
6621
  AddSelfEventSession,
6410
6622
  AdvertisementType,
6411
6623
  AppendInfiniteQuery,
@@ -6546,6 +6758,8 @@ export {
6546
6758
  GetSelfEventRegistration,
6547
6759
  GetSelfEventRegistrationCheckout,
6548
6760
  GetSelfEventRegistrationPurchase,
6761
+ GetSelfEventRegistrationPurchaseAddOns,
6762
+ GetSelfEventRegistrationPurchaseReservationSections,
6549
6763
  GetSelfEventRegistrationPurchaseSections,
6550
6764
  GetSelfEventSessions,
6551
6765
  GetSelfEvents,
@@ -6594,7 +6808,8 @@ export {
6594
6808
  RemoveSelfEventListingSpeaker,
6595
6809
  RemoveSelfEventListingSponsor,
6596
6810
  RemoveSelfEventRegistrationCoupon,
6597
- RemoveSelfEventRegistrationTicket,
6811
+ RemoveSelfEventRegistrationPurchase,
6812
+ RemoveSelfEventRegistrationPurchaseAddOn,
6598
6813
  RemoveSelfEventSession,
6599
6814
  ReshareActivity,
6600
6815
  SELF_ACTIVITIES_QUERY_KEY,
@@ -6612,7 +6827,9 @@ export {
6612
6827
  SELF_EVENT_LISTING_QUERY_KEY,
6613
6828
  SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY,
6614
6829
  SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY,
6830
+ SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY,
6615
6831
  SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY,
6832
+ SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY,
6616
6833
  SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY,
6617
6834
  SELF_EVENT_REGISTRATION_QUERY_KEY,
6618
6835
  SELF_EVENT_SESSIONS_QUERY_KEY,
@@ -6688,7 +6905,9 @@ export {
6688
6905
  SET_SELF_CHAT_CHANNEL_QUERY_DATA,
6689
6906
  SET_SELF_COMMUNITY_MEMBERSHIP_QUERY_DATA,
6690
6907
  SET_SELF_EVENT_LISTING_QUERY_DATA,
6908
+ SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA,
6691
6909
  SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA,
6910
+ SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA,
6692
6911
  SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA,
6693
6912
  SET_SELF_EVENT_REGISTRATION_QUERY_DATA,
6694
6913
  SET_SELF_QUERY_DATA,
@@ -6700,6 +6919,7 @@ export {
6700
6919
  SPONSORS_QUERY_KEY,
6701
6920
  SPONSOR_QUERY_KEY,
6702
6921
  SelectSelfEventRegistrationCoupon,
6922
+ SelectSelfEventRegistrationPurchaseReservation,
6703
6923
  SelfCheckinRegistration,
6704
6924
  SelfCreateActivity,
6705
6925
  SelfJoinCommunity,
@@ -6772,6 +6992,7 @@ export {
6772
6992
  useAddSelfEventListingSpeaker,
6773
6993
  useAddSelfEventListingSponsor,
6774
6994
  useAddSelfEventRegistrationPurchase,
6995
+ useAddSelfEventRegistrationPurchaseAddOn,
6775
6996
  useAddSelfEventSession,
6776
6997
  useCancelEventRegistration,
6777
6998
  useCancelSubscription,
@@ -6868,6 +7089,8 @@ export {
6868
7089
  useGetSelfEventRegistration,
6869
7090
  useGetSelfEventRegistrationCheckout,
6870
7091
  useGetSelfEventRegistrationPurchase,
7092
+ useGetSelfEventRegistrationPurchaseAddOns,
7093
+ useGetSelfEventRegistrationPurchaseReservationSections,
6871
7094
  useGetSelfEventRegistrationPurchaseSections,
6872
7095
  useGetSelfEventSessions,
6873
7096
  useGetSelfEvents,
@@ -6899,10 +7122,12 @@ export {
6899
7122
  useRemoveSelfEventListingSpeaker,
6900
7123
  useRemoveSelfEventListingSponsor,
6901
7124
  useRemoveSelfEventRegistrationCoupon,
6902
- useRemoveSelfEventRegistrationTicket,
7125
+ useRemoveSelfEventRegistrationPurchase,
7126
+ useRemoveSelfEventRegistrationPurchaseAddOn,
6903
7127
  useRemoveSelfEventSession,
6904
7128
  useReshareActivity,
6905
7129
  useSelectSelfEventRegistrationCoupon,
7130
+ useSelectSelfEventRegistrationPurchaseReservation,
6906
7131
  useSelfCheckinRegistration,
6907
7132
  useSelfCreateActivity,
6908
7133
  useSelfJoinCommunity,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "0.2.11",
3
+ "version": "0.3.0",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {