@connectedxm/client 0.5.19 → 0.5.21
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 +135 -2
- package/dist/index.d.ts +135 -2
- package/dist/index.js +161 -2
- package/dist/index.mjs +151 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -56,6 +56,7 @@ interface BaseOrganization {
|
|
|
56
56
|
id: string;
|
|
57
57
|
slug: string;
|
|
58
58
|
name: string;
|
|
59
|
+
description: string;
|
|
59
60
|
email: string;
|
|
60
61
|
address1: string | null;
|
|
61
62
|
address2: string | null;
|
|
@@ -65,6 +66,12 @@ interface BaseOrganization {
|
|
|
65
66
|
zip: string | null;
|
|
66
67
|
logo: BaseImage | null;
|
|
67
68
|
logoId: string | null;
|
|
69
|
+
darkLogo: BaseImage | null;
|
|
70
|
+
darkLogoId: string | null;
|
|
71
|
+
icon: BaseImage | null;
|
|
72
|
+
iconId: string | null;
|
|
73
|
+
darkIcon: BaseImage | null;
|
|
74
|
+
darkIconId: string | null;
|
|
68
75
|
}
|
|
69
76
|
declare enum Currency {
|
|
70
77
|
USD = "USD"
|
|
@@ -1416,7 +1423,7 @@ interface BasePaymentIntent {
|
|
|
1416
1423
|
secret: string;
|
|
1417
1424
|
referenceId: string;
|
|
1418
1425
|
amount: number;
|
|
1419
|
-
metadata: string
|
|
1426
|
+
metadata: Record<string, any>;
|
|
1420
1427
|
eventId: string | null;
|
|
1421
1428
|
registrationId: string | null;
|
|
1422
1429
|
invoiceId: string | null;
|
|
@@ -1441,6 +1448,113 @@ interface BaseFile {
|
|
|
1441
1448
|
}
|
|
1442
1449
|
interface File extends BaseFile {
|
|
1443
1450
|
}
|
|
1451
|
+
declare enum SupportedLocale {
|
|
1452
|
+
en = "en",
|
|
1453
|
+
es = "es",
|
|
1454
|
+
fr = "fr",
|
|
1455
|
+
ja = "ja"
|
|
1456
|
+
}
|
|
1457
|
+
declare enum DefaultAuthAction {
|
|
1458
|
+
signIn = "signIn",
|
|
1459
|
+
signUp = "signUp"
|
|
1460
|
+
}
|
|
1461
|
+
declare enum PrimaryModule {
|
|
1462
|
+
activities = "activities",
|
|
1463
|
+
events = "events",
|
|
1464
|
+
channels = "channels",
|
|
1465
|
+
groups = "groups",
|
|
1466
|
+
threads = "threads"
|
|
1467
|
+
}
|
|
1468
|
+
declare enum OrganizationModuleType {
|
|
1469
|
+
accounts = "accounts",
|
|
1470
|
+
events = "events",
|
|
1471
|
+
listings = "listings",
|
|
1472
|
+
activities = "activities",
|
|
1473
|
+
groups = "groups",
|
|
1474
|
+
contents = "contents",
|
|
1475
|
+
chat = "chat",
|
|
1476
|
+
support = "support",
|
|
1477
|
+
sponsors = "sponsors",
|
|
1478
|
+
benefits = "benefits",
|
|
1479
|
+
advertisements = "advertisements",
|
|
1480
|
+
announcements = "announcements",
|
|
1481
|
+
subscriptions = "subscriptions",
|
|
1482
|
+
threads = "threads"
|
|
1483
|
+
}
|
|
1484
|
+
declare enum OrganizationActionType {
|
|
1485
|
+
create = "create",
|
|
1486
|
+
read = "read",
|
|
1487
|
+
update = "update",
|
|
1488
|
+
delete = "delete"
|
|
1489
|
+
}
|
|
1490
|
+
interface OrganizationConfig {
|
|
1491
|
+
ORGANIZATION_ID: string;
|
|
1492
|
+
SLUG: string;
|
|
1493
|
+
WEBSITE_URL: string;
|
|
1494
|
+
COGNITO_USERPOOL_ID: string;
|
|
1495
|
+
COGNITO_CLIENT_ID: string;
|
|
1496
|
+
COGNITO_HOSTED_URL: string;
|
|
1497
|
+
API_URL: "https://client-api.connectedxm.com" | "https://staging-client-api.connectedxm.com";
|
|
1498
|
+
OPENGRAPH_URL: "https://opengraph-api.connectedxm.com" | "https://staging-opengraph-api.connectedxm.com";
|
|
1499
|
+
CHAT_URL: "wss://chat.connectedxm.com" | "wss://staging-chat.connectedxm.com";
|
|
1500
|
+
APPLE_APPSTORE_LINK: string | null;
|
|
1501
|
+
GOOGLE_PLAYSTORE_LINK: string | null;
|
|
1502
|
+
NAME: string;
|
|
1503
|
+
DESCRIPTION: string;
|
|
1504
|
+
PRIMARY_MODULE: PrimaryModule;
|
|
1505
|
+
PRIMARY_COLOR: string;
|
|
1506
|
+
SECONDARY_COLOR: string;
|
|
1507
|
+
LOGO: {
|
|
1508
|
+
LIGHT: string;
|
|
1509
|
+
DARK?: string;
|
|
1510
|
+
};
|
|
1511
|
+
ICON: {
|
|
1512
|
+
LIGHT: string;
|
|
1513
|
+
DARK?: string;
|
|
1514
|
+
};
|
|
1515
|
+
DEFAULT_LOCALE: SupportedLocale;
|
|
1516
|
+
LANGUAGES: Record<SupportedLocale, Record<string, string>>;
|
|
1517
|
+
AUTH: {
|
|
1518
|
+
DEFAULT_ACTION: DefaultAuthAction;
|
|
1519
|
+
FACEBOOK: boolean;
|
|
1520
|
+
GOOGLE: boolean;
|
|
1521
|
+
APPLE: boolean;
|
|
1522
|
+
CUSTOM: OrganizationOAuth[];
|
|
1523
|
+
FIELDS: {
|
|
1524
|
+
PHONE: boolean;
|
|
1525
|
+
TITLE: boolean;
|
|
1526
|
+
COMPANY: boolean;
|
|
1527
|
+
};
|
|
1528
|
+
};
|
|
1529
|
+
MODULES: Record<keyof typeof OrganizationModuleType, OrganizationModule>;
|
|
1530
|
+
SOCIAL: {
|
|
1531
|
+
facebook: string | null;
|
|
1532
|
+
instagram: string | null;
|
|
1533
|
+
twitter: string | null;
|
|
1534
|
+
linkedIn: string | null;
|
|
1535
|
+
tikTok: string | null;
|
|
1536
|
+
youtube: string | null;
|
|
1537
|
+
discord: string | null;
|
|
1538
|
+
};
|
|
1539
|
+
}
|
|
1540
|
+
interface OrganizationModule {
|
|
1541
|
+
enabled: boolean;
|
|
1542
|
+
requireAuth: boolean;
|
|
1543
|
+
actions: Record<keyof typeof OrganizationActionType, OrganizationAction>;
|
|
1544
|
+
}
|
|
1545
|
+
interface OrganizationAction {
|
|
1546
|
+
enabled: boolean;
|
|
1547
|
+
requireAuth: boolean;
|
|
1548
|
+
tiers: string[];
|
|
1549
|
+
}
|
|
1550
|
+
interface OrganizationOAuth {
|
|
1551
|
+
name: string;
|
|
1552
|
+
text?: string;
|
|
1553
|
+
icon?: string;
|
|
1554
|
+
color: string;
|
|
1555
|
+
textColor: string;
|
|
1556
|
+
borderColor?: string;
|
|
1557
|
+
}
|
|
1444
1558
|
|
|
1445
1559
|
interface ConnectedXMClientContextState {
|
|
1446
1560
|
queryClient: QueryClient;
|
|
@@ -2085,6 +2199,16 @@ interface RegistrationStatusDetails {
|
|
|
2085
2199
|
declare const GetSelfEventRegistrationStatus: ({ eventId, clientApiParams, }: GetSelfEventRegistrationStatusProps) => Promise<ConnectedXMResponse<RegistrationStatusDetails>>;
|
|
2086
2200
|
declare const useGetSelfEventRegistrationStatus: (eventId: string, selfId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationStatus>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationStatusDetails>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2087
2201
|
|
|
2202
|
+
declare const SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string, addOnIds?: string[]) => QueryKey;
|
|
2203
|
+
interface GetSelfEventRegistrationPurchaseAddOnsIntentProps extends SingleQueryParams {
|
|
2204
|
+
eventId: string;
|
|
2205
|
+
registrationId: string;
|
|
2206
|
+
purchaseId: string;
|
|
2207
|
+
addOnIds: string[];
|
|
2208
|
+
}
|
|
2209
|
+
declare const GetSelfEventRegistrationPurchaseAddOnsIntent: ({ eventId, registrationId, purchaseId, addOnIds, clientApiParams, }: GetSelfEventRegistrationPurchaseAddOnsIntentProps) => Promise<ConnectedXMResponse<PaymentIntent>>;
|
|
2210
|
+
declare const useGetSelfEventRegistrationPurchaseAddOnsIntent: (eventId: string, registrationId: string, purchaseId: string, addOnIds: string[], options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseAddOnsIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2211
|
+
|
|
2088
2212
|
declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
|
|
2089
2213
|
interface GetSelfSubcriptionProps extends SingleQueryParams {
|
|
2090
2214
|
subscriptionId: string;
|
|
@@ -2668,6 +2792,15 @@ interface TransferPurchaseParams extends MutationParams {
|
|
|
2668
2792
|
declare const TransferPurchase: ({ email, purchaseId, eventId, registrationId, clientApiParams, queryClient, }: TransferPurchaseParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2669
2793
|
declare const useTransferPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof TransferPurchase>>, Omit<TransferPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Transfer>, axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<TransferPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2670
2794
|
|
|
2795
|
+
interface AddFreePurchaseAddOnsParams extends MutationParams {
|
|
2796
|
+
eventId: string;
|
|
2797
|
+
registrationId: string;
|
|
2798
|
+
purchaseId: string;
|
|
2799
|
+
addOnIds: string[];
|
|
2800
|
+
}
|
|
2801
|
+
declare const AddFreePurchaseAddOns: ({ eventId, registrationId, purchaseId, addOnIds, clientApiParams, queryClient, }: AddFreePurchaseAddOnsParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2802
|
+
declare const useAddFreePurchaseAddOns: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddFreePurchaseAddOns>>, Omit<AddFreePurchaseAddOnsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Transfer>, axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<AddFreePurchaseAddOnsParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2803
|
+
|
|
2671
2804
|
interface CancelSubscriptionParams extends MutationParams {
|
|
2672
2805
|
subscriptionId: string;
|
|
2673
2806
|
}
|
|
@@ -3278,4 +3411,4 @@ interface UploadFileParams extends MutationParams {
|
|
|
3278
3411
|
declare const UploadFile: ({ clientApiParams, dataUri, name, }: UploadFileParams) => Promise<ConnectedXMResponse<File>>;
|
|
3279
3412
|
declare const useUploadFile: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UploadFile>>, Omit<UploadFileParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<File>, axios.AxiosError<ConnectedXMResponse<File>, any>, Omit<UploadFileParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3280
3413
|
|
|
3281
|
-
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChannel, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePaymentIntent, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, CHANNELS_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, ChannelFormat, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, type CreateActivity, CreateEventLead, type CreateEventLeadParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateGroup, type DeactivateGroupParams, DeleteActivity, type DeleteActivityParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteGroupModerator, type DemoteGroupModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type EventWithSessions, type EventWithSpeakers, type EventWithSponsors, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetChannel, GetChannelContents, type GetChannelContentsParams, type GetChannelParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingRegistrationPurchaseSections, type GetListingRegistrationPurchaseSectionsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, type GetSelfEventListingProps, GetSelfEventListingPurchase, type GetSelfEventListingPurchaseProps, GetSelfEventListingPurchases, type GetSelfEventListingPurchasesProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PURCHASES_QUERY_KEY, LISTING_PURCHASE_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ListingPurchase, type ListingRegistration, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, type PaymentIntent, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PURCHASE_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_LISTING_REGISTRATION_QUERY_KEY, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_STATUS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UndoCheckinListingRegistrationPurchase, type UndoCheckinListingRegistrationPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPurchaseResponses, type UpdateListingRegistrationPurchaseResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UploadFile, type UploadFileParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelEventRegistration, useCancelGroupInvitation, useCancelGroupRequest, useCancelSubscription, useCancelTransfer, useCapturePaymentIntent, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetChannel, useGetChannelContents, useGetChannels, useGetContent, useGetContentActivities, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingRegistrationPurchaseSections, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPurchase, useGetSelfEventListingPurchases, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, usePromoteGroupMember, useRegisterCancelledEventRegistration, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUndoCheckinListingRegistrationPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPurchaseResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUploadFile };
|
|
3414
|
+
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddFreePurchaseAddOns, type AddFreePurchaseAddOnsParams, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChannel, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePaymentIntent, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, CHANNELS_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, ChannelFormat, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, type CreateActivity, CreateEventLead, type CreateEventLeadParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteGroupModerator, type DemoteGroupModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type EventWithSessions, type EventWithSpeakers, type EventWithSponsors, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetChannel, GetChannelContents, type GetChannelContentsParams, type GetChannelParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingRegistrationPurchaseSections, type GetListingRegistrationPurchaseSectionsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, type GetSelfEventListingProps, GetSelfEventListingPurchase, type GetSelfEventListingPurchaseProps, GetSelfEventListingPurchases, type GetSelfEventListingPurchasesProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, GetSelfEventRegistrationPurchaseAddOnsIntent, type GetSelfEventRegistrationPurchaseAddOnsIntentProps, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PURCHASES_QUERY_KEY, LISTING_PURCHASE_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ListingPurchase, type ListingRegistration, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationAction, OrganizationActionType, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Page, type PageType, type Payment, type PaymentIntent, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PURCHASE_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_LISTING_REGISTRATION_QUERY_KEY, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_STATUS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, SupportedLocale, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UndoCheckinListingRegistrationPurchase, type UndoCheckinListingRegistrationPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPurchaseResponses, type UpdateListingRegistrationPurchaseResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UploadFile, type UploadFileParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddFreePurchaseAddOns, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelEventRegistration, useCancelGroupInvitation, useCancelGroupRequest, useCancelSubscription, useCancelTransfer, useCapturePaymentIntent, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetChannel, useGetChannelContents, useGetChannels, useGetContent, useGetContentActivities, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingRegistrationPurchaseSections, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPurchase, useGetSelfEventListingPurchases, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseAddOnsIntent, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, usePromoteGroupMember, useRegisterCancelledEventRegistration, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUndoCheckinListingRegistrationPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPurchaseResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUploadFile };
|
package/dist/index.d.ts
CHANGED
|
@@ -56,6 +56,7 @@ interface BaseOrganization {
|
|
|
56
56
|
id: string;
|
|
57
57
|
slug: string;
|
|
58
58
|
name: string;
|
|
59
|
+
description: string;
|
|
59
60
|
email: string;
|
|
60
61
|
address1: string | null;
|
|
61
62
|
address2: string | null;
|
|
@@ -65,6 +66,12 @@ interface BaseOrganization {
|
|
|
65
66
|
zip: string | null;
|
|
66
67
|
logo: BaseImage | null;
|
|
67
68
|
logoId: string | null;
|
|
69
|
+
darkLogo: BaseImage | null;
|
|
70
|
+
darkLogoId: string | null;
|
|
71
|
+
icon: BaseImage | null;
|
|
72
|
+
iconId: string | null;
|
|
73
|
+
darkIcon: BaseImage | null;
|
|
74
|
+
darkIconId: string | null;
|
|
68
75
|
}
|
|
69
76
|
declare enum Currency {
|
|
70
77
|
USD = "USD"
|
|
@@ -1416,7 +1423,7 @@ interface BasePaymentIntent {
|
|
|
1416
1423
|
secret: string;
|
|
1417
1424
|
referenceId: string;
|
|
1418
1425
|
amount: number;
|
|
1419
|
-
metadata: string
|
|
1426
|
+
metadata: Record<string, any>;
|
|
1420
1427
|
eventId: string | null;
|
|
1421
1428
|
registrationId: string | null;
|
|
1422
1429
|
invoiceId: string | null;
|
|
@@ -1441,6 +1448,113 @@ interface BaseFile {
|
|
|
1441
1448
|
}
|
|
1442
1449
|
interface File extends BaseFile {
|
|
1443
1450
|
}
|
|
1451
|
+
declare enum SupportedLocale {
|
|
1452
|
+
en = "en",
|
|
1453
|
+
es = "es",
|
|
1454
|
+
fr = "fr",
|
|
1455
|
+
ja = "ja"
|
|
1456
|
+
}
|
|
1457
|
+
declare enum DefaultAuthAction {
|
|
1458
|
+
signIn = "signIn",
|
|
1459
|
+
signUp = "signUp"
|
|
1460
|
+
}
|
|
1461
|
+
declare enum PrimaryModule {
|
|
1462
|
+
activities = "activities",
|
|
1463
|
+
events = "events",
|
|
1464
|
+
channels = "channels",
|
|
1465
|
+
groups = "groups",
|
|
1466
|
+
threads = "threads"
|
|
1467
|
+
}
|
|
1468
|
+
declare enum OrganizationModuleType {
|
|
1469
|
+
accounts = "accounts",
|
|
1470
|
+
events = "events",
|
|
1471
|
+
listings = "listings",
|
|
1472
|
+
activities = "activities",
|
|
1473
|
+
groups = "groups",
|
|
1474
|
+
contents = "contents",
|
|
1475
|
+
chat = "chat",
|
|
1476
|
+
support = "support",
|
|
1477
|
+
sponsors = "sponsors",
|
|
1478
|
+
benefits = "benefits",
|
|
1479
|
+
advertisements = "advertisements",
|
|
1480
|
+
announcements = "announcements",
|
|
1481
|
+
subscriptions = "subscriptions",
|
|
1482
|
+
threads = "threads"
|
|
1483
|
+
}
|
|
1484
|
+
declare enum OrganizationActionType {
|
|
1485
|
+
create = "create",
|
|
1486
|
+
read = "read",
|
|
1487
|
+
update = "update",
|
|
1488
|
+
delete = "delete"
|
|
1489
|
+
}
|
|
1490
|
+
interface OrganizationConfig {
|
|
1491
|
+
ORGANIZATION_ID: string;
|
|
1492
|
+
SLUG: string;
|
|
1493
|
+
WEBSITE_URL: string;
|
|
1494
|
+
COGNITO_USERPOOL_ID: string;
|
|
1495
|
+
COGNITO_CLIENT_ID: string;
|
|
1496
|
+
COGNITO_HOSTED_URL: string;
|
|
1497
|
+
API_URL: "https://client-api.connectedxm.com" | "https://staging-client-api.connectedxm.com";
|
|
1498
|
+
OPENGRAPH_URL: "https://opengraph-api.connectedxm.com" | "https://staging-opengraph-api.connectedxm.com";
|
|
1499
|
+
CHAT_URL: "wss://chat.connectedxm.com" | "wss://staging-chat.connectedxm.com";
|
|
1500
|
+
APPLE_APPSTORE_LINK: string | null;
|
|
1501
|
+
GOOGLE_PLAYSTORE_LINK: string | null;
|
|
1502
|
+
NAME: string;
|
|
1503
|
+
DESCRIPTION: string;
|
|
1504
|
+
PRIMARY_MODULE: PrimaryModule;
|
|
1505
|
+
PRIMARY_COLOR: string;
|
|
1506
|
+
SECONDARY_COLOR: string;
|
|
1507
|
+
LOGO: {
|
|
1508
|
+
LIGHT: string;
|
|
1509
|
+
DARK?: string;
|
|
1510
|
+
};
|
|
1511
|
+
ICON: {
|
|
1512
|
+
LIGHT: string;
|
|
1513
|
+
DARK?: string;
|
|
1514
|
+
};
|
|
1515
|
+
DEFAULT_LOCALE: SupportedLocale;
|
|
1516
|
+
LANGUAGES: Record<SupportedLocale, Record<string, string>>;
|
|
1517
|
+
AUTH: {
|
|
1518
|
+
DEFAULT_ACTION: DefaultAuthAction;
|
|
1519
|
+
FACEBOOK: boolean;
|
|
1520
|
+
GOOGLE: boolean;
|
|
1521
|
+
APPLE: boolean;
|
|
1522
|
+
CUSTOM: OrganizationOAuth[];
|
|
1523
|
+
FIELDS: {
|
|
1524
|
+
PHONE: boolean;
|
|
1525
|
+
TITLE: boolean;
|
|
1526
|
+
COMPANY: boolean;
|
|
1527
|
+
};
|
|
1528
|
+
};
|
|
1529
|
+
MODULES: Record<keyof typeof OrganizationModuleType, OrganizationModule>;
|
|
1530
|
+
SOCIAL: {
|
|
1531
|
+
facebook: string | null;
|
|
1532
|
+
instagram: string | null;
|
|
1533
|
+
twitter: string | null;
|
|
1534
|
+
linkedIn: string | null;
|
|
1535
|
+
tikTok: string | null;
|
|
1536
|
+
youtube: string | null;
|
|
1537
|
+
discord: string | null;
|
|
1538
|
+
};
|
|
1539
|
+
}
|
|
1540
|
+
interface OrganizationModule {
|
|
1541
|
+
enabled: boolean;
|
|
1542
|
+
requireAuth: boolean;
|
|
1543
|
+
actions: Record<keyof typeof OrganizationActionType, OrganizationAction>;
|
|
1544
|
+
}
|
|
1545
|
+
interface OrganizationAction {
|
|
1546
|
+
enabled: boolean;
|
|
1547
|
+
requireAuth: boolean;
|
|
1548
|
+
tiers: string[];
|
|
1549
|
+
}
|
|
1550
|
+
interface OrganizationOAuth {
|
|
1551
|
+
name: string;
|
|
1552
|
+
text?: string;
|
|
1553
|
+
icon?: string;
|
|
1554
|
+
color: string;
|
|
1555
|
+
textColor: string;
|
|
1556
|
+
borderColor?: string;
|
|
1557
|
+
}
|
|
1444
1558
|
|
|
1445
1559
|
interface ConnectedXMClientContextState {
|
|
1446
1560
|
queryClient: QueryClient;
|
|
@@ -2085,6 +2199,16 @@ interface RegistrationStatusDetails {
|
|
|
2085
2199
|
declare const GetSelfEventRegistrationStatus: ({ eventId, clientApiParams, }: GetSelfEventRegistrationStatusProps) => Promise<ConnectedXMResponse<RegistrationStatusDetails>>;
|
|
2086
2200
|
declare const useGetSelfEventRegistrationStatus: (eventId: string, selfId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationStatus>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationStatusDetails>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2087
2201
|
|
|
2202
|
+
declare const SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string, addOnIds?: string[]) => QueryKey;
|
|
2203
|
+
interface GetSelfEventRegistrationPurchaseAddOnsIntentProps extends SingleQueryParams {
|
|
2204
|
+
eventId: string;
|
|
2205
|
+
registrationId: string;
|
|
2206
|
+
purchaseId: string;
|
|
2207
|
+
addOnIds: string[];
|
|
2208
|
+
}
|
|
2209
|
+
declare const GetSelfEventRegistrationPurchaseAddOnsIntent: ({ eventId, registrationId, purchaseId, addOnIds, clientApiParams, }: GetSelfEventRegistrationPurchaseAddOnsIntentProps) => Promise<ConnectedXMResponse<PaymentIntent>>;
|
|
2210
|
+
declare const useGetSelfEventRegistrationPurchaseAddOnsIntent: (eventId: string, registrationId: string, purchaseId: string, addOnIds: string[], options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseAddOnsIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2211
|
+
|
|
2088
2212
|
declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
|
|
2089
2213
|
interface GetSelfSubcriptionProps extends SingleQueryParams {
|
|
2090
2214
|
subscriptionId: string;
|
|
@@ -2668,6 +2792,15 @@ interface TransferPurchaseParams extends MutationParams {
|
|
|
2668
2792
|
declare const TransferPurchase: ({ email, purchaseId, eventId, registrationId, clientApiParams, queryClient, }: TransferPurchaseParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2669
2793
|
declare const useTransferPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof TransferPurchase>>, Omit<TransferPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Transfer>, axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<TransferPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2670
2794
|
|
|
2795
|
+
interface AddFreePurchaseAddOnsParams extends MutationParams {
|
|
2796
|
+
eventId: string;
|
|
2797
|
+
registrationId: string;
|
|
2798
|
+
purchaseId: string;
|
|
2799
|
+
addOnIds: string[];
|
|
2800
|
+
}
|
|
2801
|
+
declare const AddFreePurchaseAddOns: ({ eventId, registrationId, purchaseId, addOnIds, clientApiParams, queryClient, }: AddFreePurchaseAddOnsParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2802
|
+
declare const useAddFreePurchaseAddOns: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddFreePurchaseAddOns>>, Omit<AddFreePurchaseAddOnsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Transfer>, axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<AddFreePurchaseAddOnsParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2803
|
+
|
|
2671
2804
|
interface CancelSubscriptionParams extends MutationParams {
|
|
2672
2805
|
subscriptionId: string;
|
|
2673
2806
|
}
|
|
@@ -3278,4 +3411,4 @@ interface UploadFileParams extends MutationParams {
|
|
|
3278
3411
|
declare const UploadFile: ({ clientApiParams, dataUri, name, }: UploadFileParams) => Promise<ConnectedXMResponse<File>>;
|
|
3279
3412
|
declare const useUploadFile: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UploadFile>>, Omit<UploadFileParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<File>, axios.AxiosError<ConnectedXMResponse<File>, any>, Omit<UploadFileParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3280
3413
|
|
|
3281
|
-
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChannel, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePaymentIntent, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, CHANNELS_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, ChannelFormat, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, type CreateActivity, CreateEventLead, type CreateEventLeadParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateGroup, type DeactivateGroupParams, DeleteActivity, type DeleteActivityParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteGroupModerator, type DemoteGroupModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type EventWithSessions, type EventWithSpeakers, type EventWithSponsors, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetChannel, GetChannelContents, type GetChannelContentsParams, type GetChannelParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingRegistrationPurchaseSections, type GetListingRegistrationPurchaseSectionsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, type GetSelfEventListingProps, GetSelfEventListingPurchase, type GetSelfEventListingPurchaseProps, GetSelfEventListingPurchases, type GetSelfEventListingPurchasesProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PURCHASES_QUERY_KEY, LISTING_PURCHASE_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ListingPurchase, type ListingRegistration, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, type PaymentIntent, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PURCHASE_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_LISTING_REGISTRATION_QUERY_KEY, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_STATUS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UndoCheckinListingRegistrationPurchase, type UndoCheckinListingRegistrationPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPurchaseResponses, type UpdateListingRegistrationPurchaseResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UploadFile, type UploadFileParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelEventRegistration, useCancelGroupInvitation, useCancelGroupRequest, useCancelSubscription, useCancelTransfer, useCapturePaymentIntent, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetChannel, useGetChannelContents, useGetChannels, useGetContent, useGetContentActivities, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingRegistrationPurchaseSections, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPurchase, useGetSelfEventListingPurchases, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, usePromoteGroupMember, useRegisterCancelledEventRegistration, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUndoCheckinListingRegistrationPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPurchaseResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUploadFile };
|
|
3414
|
+
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddFreePurchaseAddOns, type AddFreePurchaseAddOnsParams, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChannel, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePaymentIntent, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, CHANNELS_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, ChannelFormat, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, type CreateActivity, CreateEventLead, type CreateEventLeadParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteGroupModerator, type DemoteGroupModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type EventWithSessions, type EventWithSpeakers, type EventWithSponsors, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetChannel, GetChannelContents, type GetChannelContentsParams, type GetChannelParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingRegistrationPurchaseSections, type GetListingRegistrationPurchaseSectionsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, type GetSelfEventListingProps, GetSelfEventListingPurchase, type GetSelfEventListingPurchaseProps, GetSelfEventListingPurchases, type GetSelfEventListingPurchasesProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, GetSelfEventRegistrationPurchaseAddOnsIntent, type GetSelfEventRegistrationPurchaseAddOnsIntentProps, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PURCHASES_QUERY_KEY, LISTING_PURCHASE_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ListingPurchase, type ListingRegistration, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationAction, OrganizationActionType, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Page, type PageType, type Payment, type PaymentIntent, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PURCHASE_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_LISTING_REGISTRATION_QUERY_KEY, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_STATUS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, SupportedLocale, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UndoCheckinListingRegistrationPurchase, type UndoCheckinListingRegistrationPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPurchaseResponses, type UpdateListingRegistrationPurchaseResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UploadFile, type UploadFileParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddFreePurchaseAddOns, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelEventRegistration, useCancelGroupInvitation, useCancelGroupRequest, useCancelSubscription, useCancelTransfer, useCapturePaymentIntent, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetChannel, useGetChannelContents, useGetChannels, useGetContent, useGetContentActivities, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingRegistrationPurchaseSections, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPurchase, useGetSelfEventListingPurchases, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseAddOnsIntent, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, usePromoteGroupMember, useRegisterCancelledEventRegistration, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUndoCheckinListingRegistrationPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPurchaseResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUploadFile };
|
package/dist/index.js
CHANGED
|
@@ -46,6 +46,7 @@ __export(src_exports, {
|
|
|
46
46
|
AcceptGroupRequest: () => AcceptGroupRequest,
|
|
47
47
|
AcceptTransfer: () => AcceptTransfer,
|
|
48
48
|
AccountType: () => AccountType,
|
|
49
|
+
AddFreePurchaseAddOns: () => AddFreePurchaseAddOns,
|
|
49
50
|
AddListingCoHost: () => AddListingCoHost,
|
|
50
51
|
AddListingSponsor: () => AddListingSponsor,
|
|
51
52
|
AddSelfChatChannelMember: () => AddSelfChatChannelMember,
|
|
@@ -93,6 +94,7 @@ __export(src_exports, {
|
|
|
93
94
|
CreateTeamAccount: () => CreateTeamAccount,
|
|
94
95
|
Currency: () => Currency,
|
|
95
96
|
DeactivateGroup: () => DeactivateGroup,
|
|
97
|
+
DefaultAuthAction: () => DefaultAuthAction,
|
|
96
98
|
DeleteActivity: () => DeleteActivity,
|
|
97
99
|
DeleteListing: () => DeleteListing,
|
|
98
100
|
DeleteListingQuestion: () => DeleteListingQuestion,
|
|
@@ -233,6 +235,7 @@ __export(src_exports, {
|
|
|
233
235
|
GetSelfEventRegistrationIntent: () => GetSelfEventRegistrationIntent,
|
|
234
236
|
GetSelfEventRegistrationPurchase: () => GetSelfEventRegistrationPurchase,
|
|
235
237
|
GetSelfEventRegistrationPurchaseAddOns: () => GetSelfEventRegistrationPurchaseAddOns,
|
|
238
|
+
GetSelfEventRegistrationPurchaseAddOnsIntent: () => GetSelfEventRegistrationPurchaseAddOnsIntent,
|
|
236
239
|
GetSelfEventRegistrationPurchaseReservationSections: () => GetSelfEventRegistrationPurchaseReservationSections,
|
|
237
240
|
GetSelfEventRegistrationPurchaseSections: () => GetSelfEventRegistrationPurchaseSections,
|
|
238
241
|
GetSelfEventRegistrationStatus: () => GetSelfEventRegistrationStatus,
|
|
@@ -292,6 +295,9 @@ __export(src_exports, {
|
|
|
292
295
|
ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY: () => ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY,
|
|
293
296
|
ORGANIZATION_QUERY_KEY: () => ORGANIZATION_QUERY_KEY,
|
|
294
297
|
ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY: () => ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY,
|
|
298
|
+
OrganizationActionType: () => OrganizationActionType,
|
|
299
|
+
OrganizationModuleType: () => OrganizationModuleType,
|
|
300
|
+
PrimaryModule: () => PrimaryModule,
|
|
295
301
|
PromoteGroupMember: () => PromoteGroupMember,
|
|
296
302
|
PushDeviceAppType: () => PushDeviceAppType,
|
|
297
303
|
PushService: () => PushService,
|
|
@@ -322,6 +328,7 @@ __export(src_exports, {
|
|
|
322
328
|
SELF_DELEGATE_OF_QUERY_KEY: () => SELF_DELEGATE_OF_QUERY_KEY,
|
|
323
329
|
SELF_EVENTS_QUERY_KEY: () => SELF_EVENTS_QUERY_KEY,
|
|
324
330
|
SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY: () => SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY,
|
|
331
|
+
SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY: () => SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY,
|
|
325
332
|
SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY: () => SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY,
|
|
326
333
|
SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY: () => SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY,
|
|
327
334
|
SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY: () => SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY,
|
|
@@ -431,6 +438,7 @@ __export(src_exports, {
|
|
|
431
438
|
SubmitSelfEventRegistration: () => SubmitSelfEventRegistration,
|
|
432
439
|
SubscriptionStatus: () => SubscriptionStatus,
|
|
433
440
|
SupportTicketType: () => SupportTicketType,
|
|
441
|
+
SupportedLocale: () => SupportedLocale,
|
|
434
442
|
TicketEventAccessLevel: () => TicketEventAccessLevel,
|
|
435
443
|
TicketVisibility: () => TicketVisibility,
|
|
436
444
|
TransferPurchase: () => TransferPurchase,
|
|
@@ -496,6 +504,7 @@ __export(src_exports, {
|
|
|
496
504
|
useAcceptGroupInvitation: () => useAcceptGroupInvitation,
|
|
497
505
|
useAcceptGroupRequest: () => useAcceptGroupRequest,
|
|
498
506
|
useAcceptTransfer: () => useAcceptTransfer,
|
|
507
|
+
useAddFreePurchaseAddOns: () => useAddFreePurchaseAddOns,
|
|
499
508
|
useAddListingCoHost: () => useAddListingCoHost,
|
|
500
509
|
useAddListingSponsor: () => useAddListingSponsor,
|
|
501
510
|
useAddSelfChatChannelMember: () => useAddSelfChatChannelMember,
|
|
@@ -632,6 +641,7 @@ __export(src_exports, {
|
|
|
632
641
|
useGetSelfEventRegistrationIntent: () => useGetSelfEventRegistrationIntent,
|
|
633
642
|
useGetSelfEventRegistrationPurchase: () => useGetSelfEventRegistrationPurchase,
|
|
634
643
|
useGetSelfEventRegistrationPurchaseAddOns: () => useGetSelfEventRegistrationPurchaseAddOns,
|
|
644
|
+
useGetSelfEventRegistrationPurchaseAddOnsIntent: () => useGetSelfEventRegistrationPurchaseAddOnsIntent,
|
|
635
645
|
useGetSelfEventRegistrationPurchaseReservationSections: () => useGetSelfEventRegistrationPurchaseReservationSections,
|
|
636
646
|
useGetSelfEventRegistrationPurchaseSections: () => useGetSelfEventRegistrationPurchaseSections,
|
|
637
647
|
useGetSelfEventRegistrationStatus: () => useGetSelfEventRegistrationStatus,
|
|
@@ -1095,6 +1105,50 @@ var EventEmailType = /* @__PURE__ */ ((EventEmailType2) => {
|
|
|
1095
1105
|
EventEmailType2["reminder"] = "reminder";
|
|
1096
1106
|
return EventEmailType2;
|
|
1097
1107
|
})(EventEmailType || {});
|
|
1108
|
+
var SupportedLocale = /* @__PURE__ */ ((SupportedLocale2) => {
|
|
1109
|
+
SupportedLocale2["en"] = "en";
|
|
1110
|
+
SupportedLocale2["es"] = "es";
|
|
1111
|
+
SupportedLocale2["fr"] = "fr";
|
|
1112
|
+
SupportedLocale2["ja"] = "ja";
|
|
1113
|
+
return SupportedLocale2;
|
|
1114
|
+
})(SupportedLocale || {});
|
|
1115
|
+
var DefaultAuthAction = /* @__PURE__ */ ((DefaultAuthAction2) => {
|
|
1116
|
+
DefaultAuthAction2["signIn"] = "signIn";
|
|
1117
|
+
DefaultAuthAction2["signUp"] = "signUp";
|
|
1118
|
+
return DefaultAuthAction2;
|
|
1119
|
+
})(DefaultAuthAction || {});
|
|
1120
|
+
var PrimaryModule = /* @__PURE__ */ ((PrimaryModule2) => {
|
|
1121
|
+
PrimaryModule2["activities"] = "activities";
|
|
1122
|
+
PrimaryModule2["events"] = "events";
|
|
1123
|
+
PrimaryModule2["channels"] = "channels";
|
|
1124
|
+
PrimaryModule2["groups"] = "groups";
|
|
1125
|
+
PrimaryModule2["threads"] = "threads";
|
|
1126
|
+
return PrimaryModule2;
|
|
1127
|
+
})(PrimaryModule || {});
|
|
1128
|
+
var OrganizationModuleType = /* @__PURE__ */ ((OrganizationModuleType2) => {
|
|
1129
|
+
OrganizationModuleType2["accounts"] = "accounts";
|
|
1130
|
+
OrganizationModuleType2["events"] = "events";
|
|
1131
|
+
OrganizationModuleType2["listings"] = "listings";
|
|
1132
|
+
OrganizationModuleType2["activities"] = "activities";
|
|
1133
|
+
OrganizationModuleType2["groups"] = "groups";
|
|
1134
|
+
OrganizationModuleType2["contents"] = "contents";
|
|
1135
|
+
OrganizationModuleType2["chat"] = "chat";
|
|
1136
|
+
OrganizationModuleType2["support"] = "support";
|
|
1137
|
+
OrganizationModuleType2["sponsors"] = "sponsors";
|
|
1138
|
+
OrganizationModuleType2["benefits"] = "benefits";
|
|
1139
|
+
OrganizationModuleType2["advertisements"] = "advertisements";
|
|
1140
|
+
OrganizationModuleType2["announcements"] = "announcements";
|
|
1141
|
+
OrganizationModuleType2["subscriptions"] = "subscriptions";
|
|
1142
|
+
OrganizationModuleType2["threads"] = "threads";
|
|
1143
|
+
return OrganizationModuleType2;
|
|
1144
|
+
})(OrganizationModuleType || {});
|
|
1145
|
+
var OrganizationActionType = /* @__PURE__ */ ((OrganizationActionType2) => {
|
|
1146
|
+
OrganizationActionType2["create"] = "create";
|
|
1147
|
+
OrganizationActionType2["read"] = "read";
|
|
1148
|
+
OrganizationActionType2["update"] = "update";
|
|
1149
|
+
OrganizationActionType2["delete"] = "delete";
|
|
1150
|
+
return OrganizationActionType2;
|
|
1151
|
+
})(OrganizationActionType || {});
|
|
1098
1152
|
|
|
1099
1153
|
// src/utilities/AppendInfiniteQuery.ts
|
|
1100
1154
|
var import_immer = require("immer");
|
|
@@ -4372,6 +4426,65 @@ var useGetSelfEventRegistrationStatus = (eventId, selfId, options = {}) => {
|
|
|
4372
4426
|
);
|
|
4373
4427
|
};
|
|
4374
4428
|
|
|
4429
|
+
// src/queries/self/registration/useGetSelfEventRegistrationPurchaseAddOnsIntent.ts
|
|
4430
|
+
var SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY = (eventId, registrationId, purchaseId, addOnIds) => {
|
|
4431
|
+
const key = [
|
|
4432
|
+
...SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY(
|
|
4433
|
+
eventId,
|
|
4434
|
+
registrationId,
|
|
4435
|
+
purchaseId
|
|
4436
|
+
),
|
|
4437
|
+
"ADD_ONS_INTENT"
|
|
4438
|
+
];
|
|
4439
|
+
if (addOnIds) {
|
|
4440
|
+
key.push(...addOnIds);
|
|
4441
|
+
}
|
|
4442
|
+
return key;
|
|
4443
|
+
};
|
|
4444
|
+
var GetSelfEventRegistrationPurchaseAddOnsIntent = async ({
|
|
4445
|
+
eventId,
|
|
4446
|
+
registrationId,
|
|
4447
|
+
purchaseId,
|
|
4448
|
+
addOnIds,
|
|
4449
|
+
clientApiParams
|
|
4450
|
+
}) => {
|
|
4451
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
4452
|
+
const { data } = await clientApi.get(
|
|
4453
|
+
`/self/events/${eventId}/registration/${registrationId}/registered/purchases/${purchaseId}/addOns/intent`,
|
|
4454
|
+
{
|
|
4455
|
+
params: {
|
|
4456
|
+
addOnIds: addOnIds ? addOnIds.join(",") : ""
|
|
4457
|
+
}
|
|
4458
|
+
}
|
|
4459
|
+
);
|
|
4460
|
+
return data;
|
|
4461
|
+
};
|
|
4462
|
+
var useGetSelfEventRegistrationPurchaseAddOnsIntent = (eventId, registrationId, purchaseId, addOnIds, options = {}) => {
|
|
4463
|
+
const { authenticated } = useConnectedXM();
|
|
4464
|
+
return useConnectedSingleQuery_default(
|
|
4465
|
+
SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY(
|
|
4466
|
+
eventId,
|
|
4467
|
+
registrationId,
|
|
4468
|
+
purchaseId,
|
|
4469
|
+
addOnIds
|
|
4470
|
+
),
|
|
4471
|
+
(params) => GetSelfEventRegistrationPurchaseAddOnsIntent({
|
|
4472
|
+
eventId,
|
|
4473
|
+
registrationId,
|
|
4474
|
+
purchaseId,
|
|
4475
|
+
addOnIds,
|
|
4476
|
+
...params
|
|
4477
|
+
}),
|
|
4478
|
+
{
|
|
4479
|
+
staleTime: Infinity,
|
|
4480
|
+
retry: false,
|
|
4481
|
+
retryOnMount: false,
|
|
4482
|
+
...options,
|
|
4483
|
+
enabled: !!authenticated && !!eventId && !!registrationId && !!purchaseId && !!addOnIds && (options?.enabled ?? true)
|
|
4484
|
+
}
|
|
4485
|
+
);
|
|
4486
|
+
};
|
|
4487
|
+
|
|
4375
4488
|
// src/queries/self/subscriptions/useGetSelfSubscriptions.ts
|
|
4376
4489
|
var SELF_SUBSCRIPTIONS_QUERY_KEY = (status) => {
|
|
4377
4490
|
const key = [...SELF_QUERY_KEY(), "SUBSCRIPTIONS"];
|
|
@@ -6417,11 +6530,15 @@ var CapturePaymentIntent = async ({
|
|
|
6417
6530
|
const { data } = await clientApi.post(
|
|
6418
6531
|
`/organization/intents/${intent.id}/capture`
|
|
6419
6532
|
);
|
|
6420
|
-
console.log(!!queryClient, data.status === "ok", intent);
|
|
6421
6533
|
if (queryClient && data.status === "ok") {
|
|
6422
6534
|
if (intent.eventId && intent.registrationId) {
|
|
6423
6535
|
queryClient.invalidateQueries({
|
|
6424
|
-
|
|
6536
|
+
predicate: ({ queryKey }) => {
|
|
6537
|
+
if (queryKey[0] === "SELF" && queryKey[1] === "EVENT_REGISTRATION" || queryKey[0] === "SELF" && queryKey[1] === "EVENT" && queryKey[3] === "REGISTRATION") {
|
|
6538
|
+
return true;
|
|
6539
|
+
}
|
|
6540
|
+
return false;
|
|
6541
|
+
}
|
|
6425
6542
|
});
|
|
6426
6543
|
}
|
|
6427
6544
|
if (intent.invoiceId) {
|
|
@@ -7130,6 +7247,38 @@ var useTransferPurchase = (options = {}) => {
|
|
|
7130
7247
|
return useConnectedMutation_default(TransferPurchase, options);
|
|
7131
7248
|
};
|
|
7132
7249
|
|
|
7250
|
+
// src/mutations/self/events/registration/registered/useAddFreePurchaseAddOns.ts
|
|
7251
|
+
var AddFreePurchaseAddOns = async ({
|
|
7252
|
+
eventId,
|
|
7253
|
+
registrationId,
|
|
7254
|
+
purchaseId,
|
|
7255
|
+
addOnIds,
|
|
7256
|
+
clientApiParams,
|
|
7257
|
+
queryClient
|
|
7258
|
+
}) => {
|
|
7259
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
7260
|
+
const { data } = await clientApi.post(
|
|
7261
|
+
`/self/events/${eventId}/registration/${registrationId}/registered/purchases/${purchaseId}/addOns/free`,
|
|
7262
|
+
{
|
|
7263
|
+
addOnIds
|
|
7264
|
+
}
|
|
7265
|
+
);
|
|
7266
|
+
if (queryClient && data.status === "ok") {
|
|
7267
|
+
queryClient.invalidateQueries({
|
|
7268
|
+
predicate: ({ queryKey }) => {
|
|
7269
|
+
if (queryKey[0] === "SELF" && queryKey[1] === "EVENT_REGISTRATION" || queryKey[0] === "SELF" && queryKey[1] === "EVENT" && queryKey[3] === "REGISTRATION") {
|
|
7270
|
+
return true;
|
|
7271
|
+
}
|
|
7272
|
+
return false;
|
|
7273
|
+
}
|
|
7274
|
+
});
|
|
7275
|
+
}
|
|
7276
|
+
return data;
|
|
7277
|
+
};
|
|
7278
|
+
var useAddFreePurchaseAddOns = (options = {}) => {
|
|
7279
|
+
return useConnectedMutation_default(AddFreePurchaseAddOns, options);
|
|
7280
|
+
};
|
|
7281
|
+
|
|
7133
7282
|
// src/mutations/self/subscriptions/useCancelSubscription.ts
|
|
7134
7283
|
var CancelSubscription = async ({
|
|
7135
7284
|
subscriptionId,
|
|
@@ -8845,6 +8994,7 @@ var useUploadFile = (options = {}) => {
|
|
|
8845
8994
|
AcceptGroupRequest,
|
|
8846
8995
|
AcceptTransfer,
|
|
8847
8996
|
AccountType,
|
|
8997
|
+
AddFreePurchaseAddOns,
|
|
8848
8998
|
AddListingCoHost,
|
|
8849
8999
|
AddListingSponsor,
|
|
8850
9000
|
AddSelfChatChannelMember,
|
|
@@ -8892,6 +9042,7 @@ var useUploadFile = (options = {}) => {
|
|
|
8892
9042
|
CreateTeamAccount,
|
|
8893
9043
|
Currency,
|
|
8894
9044
|
DeactivateGroup,
|
|
9045
|
+
DefaultAuthAction,
|
|
8895
9046
|
DeleteActivity,
|
|
8896
9047
|
DeleteListing,
|
|
8897
9048
|
DeleteListingQuestion,
|
|
@@ -9032,6 +9183,7 @@ var useUploadFile = (options = {}) => {
|
|
|
9032
9183
|
GetSelfEventRegistrationIntent,
|
|
9033
9184
|
GetSelfEventRegistrationPurchase,
|
|
9034
9185
|
GetSelfEventRegistrationPurchaseAddOns,
|
|
9186
|
+
GetSelfEventRegistrationPurchaseAddOnsIntent,
|
|
9035
9187
|
GetSelfEventRegistrationPurchaseReservationSections,
|
|
9036
9188
|
GetSelfEventRegistrationPurchaseSections,
|
|
9037
9189
|
GetSelfEventRegistrationStatus,
|
|
@@ -9091,6 +9243,9 @@ var useUploadFile = (options = {}) => {
|
|
|
9091
9243
|
ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY,
|
|
9092
9244
|
ORGANIZATION_QUERY_KEY,
|
|
9093
9245
|
ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY,
|
|
9246
|
+
OrganizationActionType,
|
|
9247
|
+
OrganizationModuleType,
|
|
9248
|
+
PrimaryModule,
|
|
9094
9249
|
PromoteGroupMember,
|
|
9095
9250
|
PushDeviceAppType,
|
|
9096
9251
|
PushService,
|
|
@@ -9121,6 +9276,7 @@ var useUploadFile = (options = {}) => {
|
|
|
9121
9276
|
SELF_DELEGATE_OF_QUERY_KEY,
|
|
9122
9277
|
SELF_EVENTS_QUERY_KEY,
|
|
9123
9278
|
SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY,
|
|
9279
|
+
SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY,
|
|
9124
9280
|
SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY,
|
|
9125
9281
|
SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY,
|
|
9126
9282
|
SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY,
|
|
@@ -9230,6 +9386,7 @@ var useUploadFile = (options = {}) => {
|
|
|
9230
9386
|
SubmitSelfEventRegistration,
|
|
9231
9387
|
SubscriptionStatus,
|
|
9232
9388
|
SupportTicketType,
|
|
9389
|
+
SupportedLocale,
|
|
9233
9390
|
TicketEventAccessLevel,
|
|
9234
9391
|
TicketVisibility,
|
|
9235
9392
|
TransferPurchase,
|
|
@@ -9295,6 +9452,7 @@ var useUploadFile = (options = {}) => {
|
|
|
9295
9452
|
useAcceptGroupInvitation,
|
|
9296
9453
|
useAcceptGroupRequest,
|
|
9297
9454
|
useAcceptTransfer,
|
|
9455
|
+
useAddFreePurchaseAddOns,
|
|
9298
9456
|
useAddListingCoHost,
|
|
9299
9457
|
useAddListingSponsor,
|
|
9300
9458
|
useAddSelfChatChannelMember,
|
|
@@ -9431,6 +9589,7 @@ var useUploadFile = (options = {}) => {
|
|
|
9431
9589
|
useGetSelfEventRegistrationIntent,
|
|
9432
9590
|
useGetSelfEventRegistrationPurchase,
|
|
9433
9591
|
useGetSelfEventRegistrationPurchaseAddOns,
|
|
9592
|
+
useGetSelfEventRegistrationPurchaseAddOnsIntent,
|
|
9434
9593
|
useGetSelfEventRegistrationPurchaseReservationSections,
|
|
9435
9594
|
useGetSelfEventRegistrationPurchaseSections,
|
|
9436
9595
|
useGetSelfEventRegistrationStatus,
|
package/dist/index.mjs
CHANGED
|
@@ -388,6 +388,50 @@ var EventEmailType = /* @__PURE__ */ ((EventEmailType2) => {
|
|
|
388
388
|
EventEmailType2["reminder"] = "reminder";
|
|
389
389
|
return EventEmailType2;
|
|
390
390
|
})(EventEmailType || {});
|
|
391
|
+
var SupportedLocale = /* @__PURE__ */ ((SupportedLocale2) => {
|
|
392
|
+
SupportedLocale2["en"] = "en";
|
|
393
|
+
SupportedLocale2["es"] = "es";
|
|
394
|
+
SupportedLocale2["fr"] = "fr";
|
|
395
|
+
SupportedLocale2["ja"] = "ja";
|
|
396
|
+
return SupportedLocale2;
|
|
397
|
+
})(SupportedLocale || {});
|
|
398
|
+
var DefaultAuthAction = /* @__PURE__ */ ((DefaultAuthAction2) => {
|
|
399
|
+
DefaultAuthAction2["signIn"] = "signIn";
|
|
400
|
+
DefaultAuthAction2["signUp"] = "signUp";
|
|
401
|
+
return DefaultAuthAction2;
|
|
402
|
+
})(DefaultAuthAction || {});
|
|
403
|
+
var PrimaryModule = /* @__PURE__ */ ((PrimaryModule2) => {
|
|
404
|
+
PrimaryModule2["activities"] = "activities";
|
|
405
|
+
PrimaryModule2["events"] = "events";
|
|
406
|
+
PrimaryModule2["channels"] = "channels";
|
|
407
|
+
PrimaryModule2["groups"] = "groups";
|
|
408
|
+
PrimaryModule2["threads"] = "threads";
|
|
409
|
+
return PrimaryModule2;
|
|
410
|
+
})(PrimaryModule || {});
|
|
411
|
+
var OrganizationModuleType = /* @__PURE__ */ ((OrganizationModuleType2) => {
|
|
412
|
+
OrganizationModuleType2["accounts"] = "accounts";
|
|
413
|
+
OrganizationModuleType2["events"] = "events";
|
|
414
|
+
OrganizationModuleType2["listings"] = "listings";
|
|
415
|
+
OrganizationModuleType2["activities"] = "activities";
|
|
416
|
+
OrganizationModuleType2["groups"] = "groups";
|
|
417
|
+
OrganizationModuleType2["contents"] = "contents";
|
|
418
|
+
OrganizationModuleType2["chat"] = "chat";
|
|
419
|
+
OrganizationModuleType2["support"] = "support";
|
|
420
|
+
OrganizationModuleType2["sponsors"] = "sponsors";
|
|
421
|
+
OrganizationModuleType2["benefits"] = "benefits";
|
|
422
|
+
OrganizationModuleType2["advertisements"] = "advertisements";
|
|
423
|
+
OrganizationModuleType2["announcements"] = "announcements";
|
|
424
|
+
OrganizationModuleType2["subscriptions"] = "subscriptions";
|
|
425
|
+
OrganizationModuleType2["threads"] = "threads";
|
|
426
|
+
return OrganizationModuleType2;
|
|
427
|
+
})(OrganizationModuleType || {});
|
|
428
|
+
var OrganizationActionType = /* @__PURE__ */ ((OrganizationActionType2) => {
|
|
429
|
+
OrganizationActionType2["create"] = "create";
|
|
430
|
+
OrganizationActionType2["read"] = "read";
|
|
431
|
+
OrganizationActionType2["update"] = "update";
|
|
432
|
+
OrganizationActionType2["delete"] = "delete";
|
|
433
|
+
return OrganizationActionType2;
|
|
434
|
+
})(OrganizationActionType || {});
|
|
391
435
|
|
|
392
436
|
// src/utilities/AppendInfiniteQuery.ts
|
|
393
437
|
import { produce } from "immer";
|
|
@@ -3667,6 +3711,65 @@ var useGetSelfEventRegistrationStatus = (eventId, selfId, options = {}) => {
|
|
|
3667
3711
|
);
|
|
3668
3712
|
};
|
|
3669
3713
|
|
|
3714
|
+
// src/queries/self/registration/useGetSelfEventRegistrationPurchaseAddOnsIntent.ts
|
|
3715
|
+
var SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY = (eventId, registrationId, purchaseId, addOnIds) => {
|
|
3716
|
+
const key = [
|
|
3717
|
+
...SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY(
|
|
3718
|
+
eventId,
|
|
3719
|
+
registrationId,
|
|
3720
|
+
purchaseId
|
|
3721
|
+
),
|
|
3722
|
+
"ADD_ONS_INTENT"
|
|
3723
|
+
];
|
|
3724
|
+
if (addOnIds) {
|
|
3725
|
+
key.push(...addOnIds);
|
|
3726
|
+
}
|
|
3727
|
+
return key;
|
|
3728
|
+
};
|
|
3729
|
+
var GetSelfEventRegistrationPurchaseAddOnsIntent = async ({
|
|
3730
|
+
eventId,
|
|
3731
|
+
registrationId,
|
|
3732
|
+
purchaseId,
|
|
3733
|
+
addOnIds,
|
|
3734
|
+
clientApiParams
|
|
3735
|
+
}) => {
|
|
3736
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
3737
|
+
const { data } = await clientApi.get(
|
|
3738
|
+
`/self/events/${eventId}/registration/${registrationId}/registered/purchases/${purchaseId}/addOns/intent`,
|
|
3739
|
+
{
|
|
3740
|
+
params: {
|
|
3741
|
+
addOnIds: addOnIds ? addOnIds.join(",") : ""
|
|
3742
|
+
}
|
|
3743
|
+
}
|
|
3744
|
+
);
|
|
3745
|
+
return data;
|
|
3746
|
+
};
|
|
3747
|
+
var useGetSelfEventRegistrationPurchaseAddOnsIntent = (eventId, registrationId, purchaseId, addOnIds, options = {}) => {
|
|
3748
|
+
const { authenticated } = useConnectedXM();
|
|
3749
|
+
return useConnectedSingleQuery_default(
|
|
3750
|
+
SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY(
|
|
3751
|
+
eventId,
|
|
3752
|
+
registrationId,
|
|
3753
|
+
purchaseId,
|
|
3754
|
+
addOnIds
|
|
3755
|
+
),
|
|
3756
|
+
(params) => GetSelfEventRegistrationPurchaseAddOnsIntent({
|
|
3757
|
+
eventId,
|
|
3758
|
+
registrationId,
|
|
3759
|
+
purchaseId,
|
|
3760
|
+
addOnIds,
|
|
3761
|
+
...params
|
|
3762
|
+
}),
|
|
3763
|
+
{
|
|
3764
|
+
staleTime: Infinity,
|
|
3765
|
+
retry: false,
|
|
3766
|
+
retryOnMount: false,
|
|
3767
|
+
...options,
|
|
3768
|
+
enabled: !!authenticated && !!eventId && !!registrationId && !!purchaseId && !!addOnIds && (options?.enabled ?? true)
|
|
3769
|
+
}
|
|
3770
|
+
);
|
|
3771
|
+
};
|
|
3772
|
+
|
|
3670
3773
|
// src/queries/self/subscriptions/useGetSelfSubscriptions.ts
|
|
3671
3774
|
var SELF_SUBSCRIPTIONS_QUERY_KEY = (status) => {
|
|
3672
3775
|
const key = [...SELF_QUERY_KEY(), "SUBSCRIPTIONS"];
|
|
@@ -5715,11 +5818,15 @@ var CapturePaymentIntent = async ({
|
|
|
5715
5818
|
const { data } = await clientApi.post(
|
|
5716
5819
|
`/organization/intents/${intent.id}/capture`
|
|
5717
5820
|
);
|
|
5718
|
-
console.log(!!queryClient, data.status === "ok", intent);
|
|
5719
5821
|
if (queryClient && data.status === "ok") {
|
|
5720
5822
|
if (intent.eventId && intent.registrationId) {
|
|
5721
5823
|
queryClient.invalidateQueries({
|
|
5722
|
-
|
|
5824
|
+
predicate: ({ queryKey }) => {
|
|
5825
|
+
if (queryKey[0] === "SELF" && queryKey[1] === "EVENT_REGISTRATION" || queryKey[0] === "SELF" && queryKey[1] === "EVENT" && queryKey[3] === "REGISTRATION") {
|
|
5826
|
+
return true;
|
|
5827
|
+
}
|
|
5828
|
+
return false;
|
|
5829
|
+
}
|
|
5723
5830
|
});
|
|
5724
5831
|
}
|
|
5725
5832
|
if (intent.invoiceId) {
|
|
@@ -6428,6 +6535,38 @@ var useTransferPurchase = (options = {}) => {
|
|
|
6428
6535
|
return useConnectedMutation_default(TransferPurchase, options);
|
|
6429
6536
|
};
|
|
6430
6537
|
|
|
6538
|
+
// src/mutations/self/events/registration/registered/useAddFreePurchaseAddOns.ts
|
|
6539
|
+
var AddFreePurchaseAddOns = async ({
|
|
6540
|
+
eventId,
|
|
6541
|
+
registrationId,
|
|
6542
|
+
purchaseId,
|
|
6543
|
+
addOnIds,
|
|
6544
|
+
clientApiParams,
|
|
6545
|
+
queryClient
|
|
6546
|
+
}) => {
|
|
6547
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
6548
|
+
const { data } = await clientApi.post(
|
|
6549
|
+
`/self/events/${eventId}/registration/${registrationId}/registered/purchases/${purchaseId}/addOns/free`,
|
|
6550
|
+
{
|
|
6551
|
+
addOnIds
|
|
6552
|
+
}
|
|
6553
|
+
);
|
|
6554
|
+
if (queryClient && data.status === "ok") {
|
|
6555
|
+
queryClient.invalidateQueries({
|
|
6556
|
+
predicate: ({ queryKey }) => {
|
|
6557
|
+
if (queryKey[0] === "SELF" && queryKey[1] === "EVENT_REGISTRATION" || queryKey[0] === "SELF" && queryKey[1] === "EVENT" && queryKey[3] === "REGISTRATION") {
|
|
6558
|
+
return true;
|
|
6559
|
+
}
|
|
6560
|
+
return false;
|
|
6561
|
+
}
|
|
6562
|
+
});
|
|
6563
|
+
}
|
|
6564
|
+
return data;
|
|
6565
|
+
};
|
|
6566
|
+
var useAddFreePurchaseAddOns = (options = {}) => {
|
|
6567
|
+
return useConnectedMutation_default(AddFreePurchaseAddOns, options);
|
|
6568
|
+
};
|
|
6569
|
+
|
|
6431
6570
|
// src/mutations/self/subscriptions/useCancelSubscription.ts
|
|
6432
6571
|
var CancelSubscription = async ({
|
|
6433
6572
|
subscriptionId,
|
|
@@ -8142,6 +8281,7 @@ export {
|
|
|
8142
8281
|
AcceptGroupRequest,
|
|
8143
8282
|
AcceptTransfer,
|
|
8144
8283
|
AccountType,
|
|
8284
|
+
AddFreePurchaseAddOns,
|
|
8145
8285
|
AddListingCoHost,
|
|
8146
8286
|
AddListingSponsor,
|
|
8147
8287
|
AddSelfChatChannelMember,
|
|
@@ -8189,6 +8329,7 @@ export {
|
|
|
8189
8329
|
CreateTeamAccount,
|
|
8190
8330
|
Currency,
|
|
8191
8331
|
DeactivateGroup,
|
|
8332
|
+
DefaultAuthAction,
|
|
8192
8333
|
DeleteActivity,
|
|
8193
8334
|
DeleteListing,
|
|
8194
8335
|
DeleteListingQuestion,
|
|
@@ -8329,6 +8470,7 @@ export {
|
|
|
8329
8470
|
GetSelfEventRegistrationIntent,
|
|
8330
8471
|
GetSelfEventRegistrationPurchase,
|
|
8331
8472
|
GetSelfEventRegistrationPurchaseAddOns,
|
|
8473
|
+
GetSelfEventRegistrationPurchaseAddOnsIntent,
|
|
8332
8474
|
GetSelfEventRegistrationPurchaseReservationSections,
|
|
8333
8475
|
GetSelfEventRegistrationPurchaseSections,
|
|
8334
8476
|
GetSelfEventRegistrationStatus,
|
|
@@ -8388,6 +8530,9 @@ export {
|
|
|
8388
8530
|
ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY,
|
|
8389
8531
|
ORGANIZATION_QUERY_KEY,
|
|
8390
8532
|
ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY,
|
|
8533
|
+
OrganizationActionType,
|
|
8534
|
+
OrganizationModuleType,
|
|
8535
|
+
PrimaryModule,
|
|
8391
8536
|
PromoteGroupMember,
|
|
8392
8537
|
PushDeviceAppType,
|
|
8393
8538
|
PushService,
|
|
@@ -8418,6 +8563,7 @@ export {
|
|
|
8418
8563
|
SELF_DELEGATE_OF_QUERY_KEY,
|
|
8419
8564
|
SELF_EVENTS_QUERY_KEY,
|
|
8420
8565
|
SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY,
|
|
8566
|
+
SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY,
|
|
8421
8567
|
SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY,
|
|
8422
8568
|
SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY,
|
|
8423
8569
|
SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY,
|
|
@@ -8527,6 +8673,7 @@ export {
|
|
|
8527
8673
|
SubmitSelfEventRegistration,
|
|
8528
8674
|
SubscriptionStatus,
|
|
8529
8675
|
SupportTicketType,
|
|
8676
|
+
SupportedLocale,
|
|
8530
8677
|
TicketEventAccessLevel,
|
|
8531
8678
|
TicketVisibility,
|
|
8532
8679
|
TransferPurchase,
|
|
@@ -8592,6 +8739,7 @@ export {
|
|
|
8592
8739
|
useAcceptGroupInvitation,
|
|
8593
8740
|
useAcceptGroupRequest,
|
|
8594
8741
|
useAcceptTransfer,
|
|
8742
|
+
useAddFreePurchaseAddOns,
|
|
8595
8743
|
useAddListingCoHost,
|
|
8596
8744
|
useAddListingSponsor,
|
|
8597
8745
|
useAddSelfChatChannelMember,
|
|
@@ -8728,6 +8876,7 @@ export {
|
|
|
8728
8876
|
useGetSelfEventRegistrationIntent,
|
|
8729
8877
|
useGetSelfEventRegistrationPurchase,
|
|
8730
8878
|
useGetSelfEventRegistrationPurchaseAddOns,
|
|
8879
|
+
useGetSelfEventRegistrationPurchaseAddOnsIntent,
|
|
8731
8880
|
useGetSelfEventRegistrationPurchaseReservationSections,
|
|
8732
8881
|
useGetSelfEventRegistrationPurchaseSections,
|
|
8733
8882
|
useGetSelfEventRegistrationStatus,
|