@connectedxm/client 0.5.4 → 0.5.6
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 +61 -23
- package/dist/index.d.ts +61 -23
- package/dist/index.js +128 -23
- package/dist/index.mjs +119 -21
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -337,6 +337,7 @@ declare enum RegistrationQuestionType {
|
|
|
337
337
|
interface BaseRegistrationQuestion {
|
|
338
338
|
id: number;
|
|
339
339
|
eventId: string;
|
|
340
|
+
featured: boolean;
|
|
340
341
|
type: RegistrationQuestionType;
|
|
341
342
|
name: string;
|
|
342
343
|
required: boolean;
|
|
@@ -539,7 +540,7 @@ interface Notification extends BaseNotification {
|
|
|
539
540
|
event: BaseEvent | null;
|
|
540
541
|
announcement: BaseAnnouncement | null;
|
|
541
542
|
group: BaseGroup | null;
|
|
542
|
-
|
|
543
|
+
invitation: BaseGroupInvitation | null;
|
|
543
544
|
createdAt: string;
|
|
544
545
|
updatedAt: string;
|
|
545
546
|
}
|
|
@@ -1291,7 +1292,6 @@ interface EventReservationSectionLocation extends BaseEventReservationSectionLoc
|
|
|
1291
1292
|
}
|
|
1292
1293
|
declare enum GroupRequestStatus {
|
|
1293
1294
|
requested = "requested",
|
|
1294
|
-
invited = "invited",
|
|
1295
1295
|
rejected = "rejected"
|
|
1296
1296
|
}
|
|
1297
1297
|
interface BaseGroupRequest {
|
|
@@ -1300,13 +1300,30 @@ interface BaseGroupRequest {
|
|
|
1300
1300
|
groupId: string;
|
|
1301
1301
|
group: BaseGroup;
|
|
1302
1302
|
account: BaseAccount;
|
|
1303
|
-
inviter: BaseAccount;
|
|
1304
1303
|
createdAt: string;
|
|
1305
1304
|
updatedAt: string;
|
|
1306
1305
|
}
|
|
1307
1306
|
interface GroupRequest extends BaseGroupRequest {
|
|
1308
1307
|
group: BaseGroup;
|
|
1309
1308
|
}
|
|
1309
|
+
declare enum GroupInvitationStatus {
|
|
1310
|
+
invited = "invited",
|
|
1311
|
+
rejected = "rejected",
|
|
1312
|
+
canceled = "canceled"
|
|
1313
|
+
}
|
|
1314
|
+
interface BaseGroupInvitation {
|
|
1315
|
+
id: string;
|
|
1316
|
+
status: GroupInvitationStatus;
|
|
1317
|
+
groupId: string;
|
|
1318
|
+
group: BaseGroup;
|
|
1319
|
+
account: BaseAccount;
|
|
1320
|
+
inviter: BaseAccount;
|
|
1321
|
+
createdAt: string;
|
|
1322
|
+
updatedAt: string;
|
|
1323
|
+
}
|
|
1324
|
+
interface GroupInvitation extends BaseGroupInvitation {
|
|
1325
|
+
group: BaseGroup;
|
|
1326
|
+
}
|
|
1310
1327
|
declare enum EventEmailType {
|
|
1311
1328
|
confirmation = "confirmation",
|
|
1312
1329
|
cancellation = "cancellation",
|
|
@@ -1322,6 +1339,19 @@ interface BaseEventEmail {
|
|
|
1322
1339
|
}
|
|
1323
1340
|
interface EventEmail extends BaseEventEmail {
|
|
1324
1341
|
}
|
|
1342
|
+
interface InvitableAccount extends Account {
|
|
1343
|
+
groupRequests: {
|
|
1344
|
+
id: string;
|
|
1345
|
+
status: GroupRequestStatus;
|
|
1346
|
+
}[];
|
|
1347
|
+
groupInvitations: {
|
|
1348
|
+
id: string;
|
|
1349
|
+
status: GroupInvitationStatus;
|
|
1350
|
+
}[];
|
|
1351
|
+
groups: {
|
|
1352
|
+
role: GroupMembershipRole;
|
|
1353
|
+
}[];
|
|
1354
|
+
}
|
|
1325
1355
|
|
|
1326
1356
|
interface ConnectedXMClientContextState {
|
|
1327
1357
|
queryClient: QueryClient;
|
|
@@ -1574,7 +1604,7 @@ declare const GetGroupRequest: ({ groupId, requestId, clientApiParams, }: GetGro
|
|
|
1574
1604
|
declare const useGetGroupRequest: (groupId?: string, requestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupRequest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupRequest>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1575
1605
|
|
|
1576
1606
|
declare const GROUP_REQUESTS_QUERY_KEY: (groupId: string, status?: keyof typeof GroupRequestStatus) => QueryKey;
|
|
1577
|
-
declare const SET_GROUP_REQUESTS_QUERY_DATA: (client: QueryClient, keyParams: [groupId: string, status?: "
|
|
1607
|
+
declare const SET_GROUP_REQUESTS_QUERY_DATA: (client: QueryClient, keyParams: [groupId: string, status?: "rejected" | "requested" | undefined], response: Awaited<ReturnType<typeof GetGroupRequests>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1578
1608
|
interface GetGroupRequestsProps extends InfiniteQueryParams {
|
|
1579
1609
|
groupId: string;
|
|
1580
1610
|
status?: keyof typeof GroupRequestStatus;
|
|
@@ -1582,14 +1612,6 @@ interface GetGroupRequestsProps extends InfiniteQueryParams {
|
|
|
1582
1612
|
declare const GetGroupRequests: ({ pageParam, pageSize, orderBy, search, status, groupId, queryClient, clientApiParams, locale, }: GetGroupRequestsProps) => Promise<ConnectedXMResponse<GroupRequest[]>>;
|
|
1583
1613
|
declare const useGetGroupRequests: (groupId?: string, status?: keyof typeof GroupRequestStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupRequests>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<GroupRequest[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1584
1614
|
|
|
1585
|
-
interface InvitableAccount extends Account {
|
|
1586
|
-
groupRequests: {
|
|
1587
|
-
status: GroupRequestStatus;
|
|
1588
|
-
}[];
|
|
1589
|
-
groups: {
|
|
1590
|
-
role: GroupMembershipRole;
|
|
1591
|
-
}[];
|
|
1592
|
-
}
|
|
1593
1615
|
declare const GROUP_INVITABLE_ACCOUNTS_QUERY_KEY: (groupId: string) => QueryKey;
|
|
1594
1616
|
interface GetGroupInvitableAccountsProps extends InfiniteQueryParams {
|
|
1595
1617
|
groupId: string;
|
|
@@ -1597,6 +1619,15 @@ interface GetGroupInvitableAccountsProps extends InfiniteQueryParams {
|
|
|
1597
1619
|
declare const GetGroupInvitableAccounts: ({ pageParam, pageSize, orderBy, search, groupId, clientApiParams, }: GetGroupInvitableAccountsProps) => Promise<ConnectedXMResponse<InvitableAccount[]>>;
|
|
1598
1620
|
declare const useGetGroupInvitableAccounts: (groupId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupInvitableAccounts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<InvitableAccount[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1599
1621
|
|
|
1622
|
+
declare const GROUP_INVITATIONS_QUERY_KEY: (groupId: string, status?: keyof typeof GroupInvitationStatus) => QueryKey;
|
|
1623
|
+
declare const SET_GROUP_INVITATIONS_QUERY_DATA: (client: QueryClient, keyParams: [groupId: string, status?: "invited" | "rejected" | "canceled" | undefined], response: Awaited<ReturnType<typeof GetGroupInvitations>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1624
|
+
interface GetGroupInvitationsProps extends InfiniteQueryParams {
|
|
1625
|
+
groupId: string;
|
|
1626
|
+
status?: keyof typeof GroupInvitationStatus;
|
|
1627
|
+
}
|
|
1628
|
+
declare const GetGroupInvitations: ({ pageParam, pageSize, orderBy, search, status, groupId, clientApiParams, }: GetGroupInvitationsProps) => Promise<ConnectedXMResponse<GroupInvitation[]>>;
|
|
1629
|
+
declare const useGetGroupInvitations: (groupId?: string, status?: keyof typeof GroupInvitationStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupInvitations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<GroupInvitation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1630
|
+
|
|
1600
1631
|
declare const CONTENT_QUERY_KEY: (contentId: string) => QueryKey;
|
|
1601
1632
|
declare const SET_CONTENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1602
1633
|
interface GetContentParams extends SingleQueryParams {
|
|
@@ -2698,10 +2729,10 @@ declare const useCreateTeamAccount: (options?: Omit<MutationOptions<Awaited<Retu
|
|
|
2698
2729
|
|
|
2699
2730
|
interface AcceptGroupInviteParitation extends MutationParams {
|
|
2700
2731
|
groupId: string;
|
|
2701
|
-
|
|
2732
|
+
invitationId: string;
|
|
2702
2733
|
}
|
|
2703
|
-
declare const AcceptGroupInvitation: ({ groupId,
|
|
2704
|
-
declare const useAcceptGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptGroupInvitation>>, Omit<AcceptGroupInviteParitation, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<
|
|
2734
|
+
declare const AcceptGroupInvitation: ({ groupId, invitationId, clientApiParams, queryClient, }: AcceptGroupInviteParitation) => Promise<ConnectedXMResponse<null>>;
|
|
2735
|
+
declare const useAcceptGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptGroupInvitation>>, Omit<AcceptGroupInviteParitation, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<AcceptGroupInviteParitation, "queryClient" | "clientApiParams">, unknown>;
|
|
2705
2736
|
|
|
2706
2737
|
interface AcceptGroupRequestParams extends MutationParams {
|
|
2707
2738
|
groupId: string;
|
|
@@ -2744,12 +2775,12 @@ interface DeactivateGroupParams extends MutationParams {
|
|
|
2744
2775
|
declare const DeactivateGroup: ({ groupId, group, imageDataUri, clientApiParams, queryClient, }: DeactivateGroupParams) => Promise<ConnectedXMResponse<Group>>;
|
|
2745
2776
|
declare const useDeactivateGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeactivateGroup>>, Omit<DeactivateGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<Group>, any>, Omit<DeactivateGroupParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2746
2777
|
|
|
2747
|
-
interface
|
|
2778
|
+
interface CancelGroupInvitationParams extends MutationParams {
|
|
2748
2779
|
groupId: string;
|
|
2749
|
-
|
|
2780
|
+
invitationId: string;
|
|
2750
2781
|
}
|
|
2751
|
-
declare const
|
|
2752
|
-
declare const
|
|
2782
|
+
declare const CancelGroupInvitation: ({ groupId, invitationId, clientApiParams, queryClient, }: CancelGroupInvitationParams) => Promise<ConnectedXMResponse<GroupInvitation>>;
|
|
2783
|
+
declare const useCancelGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelGroupInvitation>>, Omit<CancelGroupInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupInvitation>, axios.AxiosError<ConnectedXMResponse<GroupInvitation>, any>, Omit<CancelGroupInvitationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2753
2784
|
|
|
2754
2785
|
interface JoinGroupParams extends MutationParams {
|
|
2755
2786
|
groupId: string;
|
|
@@ -2814,12 +2845,19 @@ interface CreateGroupAnnouncementParams extends MutationParams {
|
|
|
2814
2845
|
declare const CreateGroupAnnouncement: ({ groupId, title, html, email, push, clientApiParams, queryClient, }: CreateGroupAnnouncementParams) => Promise<ConnectedXMResponse<Announcement>>;
|
|
2815
2846
|
declare const useCreateGroupAnnouncement: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateGroupAnnouncement>>, Omit<CreateGroupAnnouncementParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<Announcement>, any>, Omit<CreateGroupAnnouncementParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2816
2847
|
|
|
2848
|
+
interface ReinviteGroupInvitationParams extends MutationParams {
|
|
2849
|
+
groupId: string;
|
|
2850
|
+
invitationId: string;
|
|
2851
|
+
}
|
|
2852
|
+
declare const ReinviteGroupInvitation: ({ groupId, invitationId, clientApiParams, queryClient, }: ReinviteGroupInvitationParams) => Promise<ConnectedXMResponse<GroupInvitation>>;
|
|
2853
|
+
declare const useReinviteGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof ReinviteGroupInvitation>>, Omit<ReinviteGroupInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupInvitation>, axios.AxiosError<ConnectedXMResponse<GroupInvitation>, any>, Omit<ReinviteGroupInvitationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2854
|
+
|
|
2817
2855
|
interface RejectGroupInvitationParams extends MutationParams {
|
|
2818
2856
|
groupId: string;
|
|
2819
|
-
|
|
2857
|
+
invitationId: string;
|
|
2820
2858
|
}
|
|
2821
|
-
declare const RejectGroupInvitation: ({ groupId,
|
|
2822
|
-
declare const useRejectGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectGroupInvitation>>, Omit<RejectGroupInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<
|
|
2859
|
+
declare const RejectGroupInvitation: ({ groupId, invitationId, clientApiParams, queryClient, }: RejectGroupInvitationParams) => Promise<ConnectedXMResponse<GroupInvitation>>;
|
|
2860
|
+
declare const useRejectGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectGroupInvitation>>, Omit<RejectGroupInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupInvitation>, axios.AxiosError<ConnectedXMResponse<GroupInvitation>, any>, Omit<RejectGroupInvitationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2823
2861
|
|
|
2824
2862
|
interface CreateListingSessionParams extends MutationParams {
|
|
2825
2863
|
eventId: string;
|
|
@@ -3047,4 +3085,4 @@ interface UpdateListingSpeakerParams extends MutationParams {
|
|
|
3047
3085
|
declare const UpdateListingSpeaker: ({ eventId, speaker, speakerId, imageDataUri, clientApiParams, queryClient, }: UpdateListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
3048
3086
|
declare const useUpdateListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingSpeaker>>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3049
3087
|
|
|
3050
|
-
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, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, type BaseGroup, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type CheckoutResponse, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateEventLead, type CreateEventLeadParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateGroup, type DeactivateGroupParams, DeleteActivity, type DeleteActivityParams, DeleteGroupInvitation, type DeleteGroupInvitationParams, 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, FollowAccount, type FollowAccountParams, GROUPS_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, type GetGroupsProps, GetInterests, type GetInterestsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, 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 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 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_EMAIL_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, type Lead, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_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_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, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteGroupInvitation, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetInterests, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingEmail, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useIsGroupMember, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, usePromoteGroupMember, useRegisterCancelledEventRegistration, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveGroupMember, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
|
|
3088
|
+
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, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type CheckoutResponse, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateEventLead, type CreateEventLeadParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateGroup, type DeactivateGroupParams, DeleteActivity, type DeleteActivityParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteGroupModerator, type DemoteGroupModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type EventWithSessions, type EventWithSpeakers, type EventWithSponsors, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GROUPS_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, type GetGroupsProps, GetInterests, type GetInterestsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, 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_EMAIL_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, type Lead, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_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, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelEventRegistration, useCancelGroupInvitation, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetInterests, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingEmail, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useIsGroupMember, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, usePromoteGroupMember, useRegisterCancelledEventRegistration, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveGroupMember, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
|
package/dist/index.d.ts
CHANGED
|
@@ -337,6 +337,7 @@ declare enum RegistrationQuestionType {
|
|
|
337
337
|
interface BaseRegistrationQuestion {
|
|
338
338
|
id: number;
|
|
339
339
|
eventId: string;
|
|
340
|
+
featured: boolean;
|
|
340
341
|
type: RegistrationQuestionType;
|
|
341
342
|
name: string;
|
|
342
343
|
required: boolean;
|
|
@@ -539,7 +540,7 @@ interface Notification extends BaseNotification {
|
|
|
539
540
|
event: BaseEvent | null;
|
|
540
541
|
announcement: BaseAnnouncement | null;
|
|
541
542
|
group: BaseGroup | null;
|
|
542
|
-
|
|
543
|
+
invitation: BaseGroupInvitation | null;
|
|
543
544
|
createdAt: string;
|
|
544
545
|
updatedAt: string;
|
|
545
546
|
}
|
|
@@ -1291,7 +1292,6 @@ interface EventReservationSectionLocation extends BaseEventReservationSectionLoc
|
|
|
1291
1292
|
}
|
|
1292
1293
|
declare enum GroupRequestStatus {
|
|
1293
1294
|
requested = "requested",
|
|
1294
|
-
invited = "invited",
|
|
1295
1295
|
rejected = "rejected"
|
|
1296
1296
|
}
|
|
1297
1297
|
interface BaseGroupRequest {
|
|
@@ -1300,13 +1300,30 @@ interface BaseGroupRequest {
|
|
|
1300
1300
|
groupId: string;
|
|
1301
1301
|
group: BaseGroup;
|
|
1302
1302
|
account: BaseAccount;
|
|
1303
|
-
inviter: BaseAccount;
|
|
1304
1303
|
createdAt: string;
|
|
1305
1304
|
updatedAt: string;
|
|
1306
1305
|
}
|
|
1307
1306
|
interface GroupRequest extends BaseGroupRequest {
|
|
1308
1307
|
group: BaseGroup;
|
|
1309
1308
|
}
|
|
1309
|
+
declare enum GroupInvitationStatus {
|
|
1310
|
+
invited = "invited",
|
|
1311
|
+
rejected = "rejected",
|
|
1312
|
+
canceled = "canceled"
|
|
1313
|
+
}
|
|
1314
|
+
interface BaseGroupInvitation {
|
|
1315
|
+
id: string;
|
|
1316
|
+
status: GroupInvitationStatus;
|
|
1317
|
+
groupId: string;
|
|
1318
|
+
group: BaseGroup;
|
|
1319
|
+
account: BaseAccount;
|
|
1320
|
+
inviter: BaseAccount;
|
|
1321
|
+
createdAt: string;
|
|
1322
|
+
updatedAt: string;
|
|
1323
|
+
}
|
|
1324
|
+
interface GroupInvitation extends BaseGroupInvitation {
|
|
1325
|
+
group: BaseGroup;
|
|
1326
|
+
}
|
|
1310
1327
|
declare enum EventEmailType {
|
|
1311
1328
|
confirmation = "confirmation",
|
|
1312
1329
|
cancellation = "cancellation",
|
|
@@ -1322,6 +1339,19 @@ interface BaseEventEmail {
|
|
|
1322
1339
|
}
|
|
1323
1340
|
interface EventEmail extends BaseEventEmail {
|
|
1324
1341
|
}
|
|
1342
|
+
interface InvitableAccount extends Account {
|
|
1343
|
+
groupRequests: {
|
|
1344
|
+
id: string;
|
|
1345
|
+
status: GroupRequestStatus;
|
|
1346
|
+
}[];
|
|
1347
|
+
groupInvitations: {
|
|
1348
|
+
id: string;
|
|
1349
|
+
status: GroupInvitationStatus;
|
|
1350
|
+
}[];
|
|
1351
|
+
groups: {
|
|
1352
|
+
role: GroupMembershipRole;
|
|
1353
|
+
}[];
|
|
1354
|
+
}
|
|
1325
1355
|
|
|
1326
1356
|
interface ConnectedXMClientContextState {
|
|
1327
1357
|
queryClient: QueryClient;
|
|
@@ -1574,7 +1604,7 @@ declare const GetGroupRequest: ({ groupId, requestId, clientApiParams, }: GetGro
|
|
|
1574
1604
|
declare const useGetGroupRequest: (groupId?: string, requestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupRequest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupRequest>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1575
1605
|
|
|
1576
1606
|
declare const GROUP_REQUESTS_QUERY_KEY: (groupId: string, status?: keyof typeof GroupRequestStatus) => QueryKey;
|
|
1577
|
-
declare const SET_GROUP_REQUESTS_QUERY_DATA: (client: QueryClient, keyParams: [groupId: string, status?: "
|
|
1607
|
+
declare const SET_GROUP_REQUESTS_QUERY_DATA: (client: QueryClient, keyParams: [groupId: string, status?: "rejected" | "requested" | undefined], response: Awaited<ReturnType<typeof GetGroupRequests>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1578
1608
|
interface GetGroupRequestsProps extends InfiniteQueryParams {
|
|
1579
1609
|
groupId: string;
|
|
1580
1610
|
status?: keyof typeof GroupRequestStatus;
|
|
@@ -1582,14 +1612,6 @@ interface GetGroupRequestsProps extends InfiniteQueryParams {
|
|
|
1582
1612
|
declare const GetGroupRequests: ({ pageParam, pageSize, orderBy, search, status, groupId, queryClient, clientApiParams, locale, }: GetGroupRequestsProps) => Promise<ConnectedXMResponse<GroupRequest[]>>;
|
|
1583
1613
|
declare const useGetGroupRequests: (groupId?: string, status?: keyof typeof GroupRequestStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupRequests>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<GroupRequest[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1584
1614
|
|
|
1585
|
-
interface InvitableAccount extends Account {
|
|
1586
|
-
groupRequests: {
|
|
1587
|
-
status: GroupRequestStatus;
|
|
1588
|
-
}[];
|
|
1589
|
-
groups: {
|
|
1590
|
-
role: GroupMembershipRole;
|
|
1591
|
-
}[];
|
|
1592
|
-
}
|
|
1593
1615
|
declare const GROUP_INVITABLE_ACCOUNTS_QUERY_KEY: (groupId: string) => QueryKey;
|
|
1594
1616
|
interface GetGroupInvitableAccountsProps extends InfiniteQueryParams {
|
|
1595
1617
|
groupId: string;
|
|
@@ -1597,6 +1619,15 @@ interface GetGroupInvitableAccountsProps extends InfiniteQueryParams {
|
|
|
1597
1619
|
declare const GetGroupInvitableAccounts: ({ pageParam, pageSize, orderBy, search, groupId, clientApiParams, }: GetGroupInvitableAccountsProps) => Promise<ConnectedXMResponse<InvitableAccount[]>>;
|
|
1598
1620
|
declare const useGetGroupInvitableAccounts: (groupId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupInvitableAccounts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<InvitableAccount[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1599
1621
|
|
|
1622
|
+
declare const GROUP_INVITATIONS_QUERY_KEY: (groupId: string, status?: keyof typeof GroupInvitationStatus) => QueryKey;
|
|
1623
|
+
declare const SET_GROUP_INVITATIONS_QUERY_DATA: (client: QueryClient, keyParams: [groupId: string, status?: "invited" | "rejected" | "canceled" | undefined], response: Awaited<ReturnType<typeof GetGroupInvitations>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1624
|
+
interface GetGroupInvitationsProps extends InfiniteQueryParams {
|
|
1625
|
+
groupId: string;
|
|
1626
|
+
status?: keyof typeof GroupInvitationStatus;
|
|
1627
|
+
}
|
|
1628
|
+
declare const GetGroupInvitations: ({ pageParam, pageSize, orderBy, search, status, groupId, clientApiParams, }: GetGroupInvitationsProps) => Promise<ConnectedXMResponse<GroupInvitation[]>>;
|
|
1629
|
+
declare const useGetGroupInvitations: (groupId?: string, status?: keyof typeof GroupInvitationStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupInvitations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<GroupInvitation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1630
|
+
|
|
1600
1631
|
declare const CONTENT_QUERY_KEY: (contentId: string) => QueryKey;
|
|
1601
1632
|
declare const SET_CONTENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1602
1633
|
interface GetContentParams extends SingleQueryParams {
|
|
@@ -2698,10 +2729,10 @@ declare const useCreateTeamAccount: (options?: Omit<MutationOptions<Awaited<Retu
|
|
|
2698
2729
|
|
|
2699
2730
|
interface AcceptGroupInviteParitation extends MutationParams {
|
|
2700
2731
|
groupId: string;
|
|
2701
|
-
|
|
2732
|
+
invitationId: string;
|
|
2702
2733
|
}
|
|
2703
|
-
declare const AcceptGroupInvitation: ({ groupId,
|
|
2704
|
-
declare const useAcceptGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptGroupInvitation>>, Omit<AcceptGroupInviteParitation, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<
|
|
2734
|
+
declare const AcceptGroupInvitation: ({ groupId, invitationId, clientApiParams, queryClient, }: AcceptGroupInviteParitation) => Promise<ConnectedXMResponse<null>>;
|
|
2735
|
+
declare const useAcceptGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptGroupInvitation>>, Omit<AcceptGroupInviteParitation, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<AcceptGroupInviteParitation, "queryClient" | "clientApiParams">, unknown>;
|
|
2705
2736
|
|
|
2706
2737
|
interface AcceptGroupRequestParams extends MutationParams {
|
|
2707
2738
|
groupId: string;
|
|
@@ -2744,12 +2775,12 @@ interface DeactivateGroupParams extends MutationParams {
|
|
|
2744
2775
|
declare const DeactivateGroup: ({ groupId, group, imageDataUri, clientApiParams, queryClient, }: DeactivateGroupParams) => Promise<ConnectedXMResponse<Group>>;
|
|
2745
2776
|
declare const useDeactivateGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeactivateGroup>>, Omit<DeactivateGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<Group>, any>, Omit<DeactivateGroupParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2746
2777
|
|
|
2747
|
-
interface
|
|
2778
|
+
interface CancelGroupInvitationParams extends MutationParams {
|
|
2748
2779
|
groupId: string;
|
|
2749
|
-
|
|
2780
|
+
invitationId: string;
|
|
2750
2781
|
}
|
|
2751
|
-
declare const
|
|
2752
|
-
declare const
|
|
2782
|
+
declare const CancelGroupInvitation: ({ groupId, invitationId, clientApiParams, queryClient, }: CancelGroupInvitationParams) => Promise<ConnectedXMResponse<GroupInvitation>>;
|
|
2783
|
+
declare const useCancelGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelGroupInvitation>>, Omit<CancelGroupInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupInvitation>, axios.AxiosError<ConnectedXMResponse<GroupInvitation>, any>, Omit<CancelGroupInvitationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2753
2784
|
|
|
2754
2785
|
interface JoinGroupParams extends MutationParams {
|
|
2755
2786
|
groupId: string;
|
|
@@ -2814,12 +2845,19 @@ interface CreateGroupAnnouncementParams extends MutationParams {
|
|
|
2814
2845
|
declare const CreateGroupAnnouncement: ({ groupId, title, html, email, push, clientApiParams, queryClient, }: CreateGroupAnnouncementParams) => Promise<ConnectedXMResponse<Announcement>>;
|
|
2815
2846
|
declare const useCreateGroupAnnouncement: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateGroupAnnouncement>>, Omit<CreateGroupAnnouncementParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<Announcement>, any>, Omit<CreateGroupAnnouncementParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2816
2847
|
|
|
2848
|
+
interface ReinviteGroupInvitationParams extends MutationParams {
|
|
2849
|
+
groupId: string;
|
|
2850
|
+
invitationId: string;
|
|
2851
|
+
}
|
|
2852
|
+
declare const ReinviteGroupInvitation: ({ groupId, invitationId, clientApiParams, queryClient, }: ReinviteGroupInvitationParams) => Promise<ConnectedXMResponse<GroupInvitation>>;
|
|
2853
|
+
declare const useReinviteGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof ReinviteGroupInvitation>>, Omit<ReinviteGroupInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupInvitation>, axios.AxiosError<ConnectedXMResponse<GroupInvitation>, any>, Omit<ReinviteGroupInvitationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2854
|
+
|
|
2817
2855
|
interface RejectGroupInvitationParams extends MutationParams {
|
|
2818
2856
|
groupId: string;
|
|
2819
|
-
|
|
2857
|
+
invitationId: string;
|
|
2820
2858
|
}
|
|
2821
|
-
declare const RejectGroupInvitation: ({ groupId,
|
|
2822
|
-
declare const useRejectGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectGroupInvitation>>, Omit<RejectGroupInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<
|
|
2859
|
+
declare const RejectGroupInvitation: ({ groupId, invitationId, clientApiParams, queryClient, }: RejectGroupInvitationParams) => Promise<ConnectedXMResponse<GroupInvitation>>;
|
|
2860
|
+
declare const useRejectGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectGroupInvitation>>, Omit<RejectGroupInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupInvitation>, axios.AxiosError<ConnectedXMResponse<GroupInvitation>, any>, Omit<RejectGroupInvitationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2823
2861
|
|
|
2824
2862
|
interface CreateListingSessionParams extends MutationParams {
|
|
2825
2863
|
eventId: string;
|
|
@@ -3047,4 +3085,4 @@ interface UpdateListingSpeakerParams extends MutationParams {
|
|
|
3047
3085
|
declare const UpdateListingSpeaker: ({ eventId, speaker, speakerId, imageDataUri, clientApiParams, queryClient, }: UpdateListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
3048
3086
|
declare const useUpdateListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingSpeaker>>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3049
3087
|
|
|
3050
|
-
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, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, type BaseGroup, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type CheckoutResponse, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateEventLead, type CreateEventLeadParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateGroup, type DeactivateGroupParams, DeleteActivity, type DeleteActivityParams, DeleteGroupInvitation, type DeleteGroupInvitationParams, 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, FollowAccount, type FollowAccountParams, GROUPS_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, type GetGroupsProps, GetInterests, type GetInterestsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, 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 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 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_EMAIL_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, type Lead, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_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_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, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteGroupInvitation, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetInterests, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingEmail, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useIsGroupMember, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, usePromoteGroupMember, useRegisterCancelledEventRegistration, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveGroupMember, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
|
|
3088
|
+
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, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type CheckoutResponse, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateEventLead, type CreateEventLeadParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateGroup, type DeactivateGroupParams, DeleteActivity, type DeleteActivityParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteGroupModerator, type DemoteGroupModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type EventWithSessions, type EventWithSpeakers, type EventWithSponsors, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GROUPS_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, type GetGroupsProps, GetInterests, type GetInterestsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, 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_EMAIL_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, type Lead, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_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, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelEventRegistration, useCancelGroupInvitation, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetInterests, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingEmail, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useIsGroupMember, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, usePromoteGroupMember, useRegisterCancelledEventRegistration, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveGroupMember, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
|
package/dist/index.js
CHANGED
|
@@ -64,6 +64,7 @@ __export(src_exports, {
|
|
|
64
64
|
CONTENT_TYPE_QUERY_KEY: () => CONTENT_TYPE_QUERY_KEY,
|
|
65
65
|
CacheIndividualQueries: () => CacheIndividualQueries,
|
|
66
66
|
CancelEventRegistration: () => CancelEventRegistration,
|
|
67
|
+
CancelGroupInvitation: () => CancelGroupInvitation,
|
|
67
68
|
CancelSubscription: () => CancelSubscription,
|
|
68
69
|
CancelTransfer: () => CancelTransfer,
|
|
69
70
|
CaptureInvoicePayment: () => CaptureInvoicePayment,
|
|
@@ -91,7 +92,6 @@ __export(src_exports, {
|
|
|
91
92
|
Currency: () => Currency,
|
|
92
93
|
DeactivateGroup: () => DeactivateGroup,
|
|
93
94
|
DeleteActivity: () => DeleteActivity,
|
|
94
|
-
DeleteGroupInvitation: () => DeleteGroupInvitation,
|
|
95
95
|
DeleteListing: () => DeleteListing,
|
|
96
96
|
DeleteListingQuestion: () => DeleteListingQuestion,
|
|
97
97
|
DeleteListingSession: () => DeleteListingSession,
|
|
@@ -129,6 +129,7 @@ __export(src_exports, {
|
|
|
129
129
|
GROUP_ANNOUNCEMENTS_QUERY_KEY: () => GROUP_ANNOUNCEMENTS_QUERY_KEY,
|
|
130
130
|
GROUP_EVENTS_QUERY_KEY: () => GROUP_EVENTS_QUERY_KEY,
|
|
131
131
|
GROUP_INVITABLE_ACCOUNTS_QUERY_KEY: () => GROUP_INVITABLE_ACCOUNTS_QUERY_KEY,
|
|
132
|
+
GROUP_INVITATIONS_QUERY_KEY: () => GROUP_INVITATIONS_QUERY_KEY,
|
|
132
133
|
GROUP_MEDIA_QUERY_KEY: () => GROUP_MEDIA_QUERY_KEY,
|
|
133
134
|
GROUP_MEMBERS_QUERY_KEY: () => GROUP_MEMBERS_QUERY_KEY,
|
|
134
135
|
GROUP_QUERY_KEY: () => GROUP_QUERY_KEY,
|
|
@@ -180,6 +181,7 @@ __export(src_exports, {
|
|
|
180
181
|
GetGroupAnnouncements: () => GetGroupAnnouncements,
|
|
181
182
|
GetGroupEvents: () => GetGroupEvents,
|
|
182
183
|
GetGroupInvitableAccounts: () => GetGroupInvitableAccounts,
|
|
184
|
+
GetGroupInvitations: () => GetGroupInvitations,
|
|
183
185
|
GetGroupMedia: () => GetGroupMedia,
|
|
184
186
|
GetGroupMembers: () => GetGroupMembers,
|
|
185
187
|
GetGroupRequest: () => GetGroupRequest,
|
|
@@ -242,6 +244,7 @@ __export(src_exports, {
|
|
|
242
244
|
GetSeriesEvents: () => GetSeriesEvents,
|
|
243
245
|
GetSeriesList: () => GetSeriesList,
|
|
244
246
|
GroupAccess: () => GroupAccess,
|
|
247
|
+
GroupInvitationStatus: () => GroupInvitationStatus,
|
|
245
248
|
GroupMembershipRole: () => GroupMembershipRole,
|
|
246
249
|
GroupRequestStatus: () => GroupRequestStatus,
|
|
247
250
|
INTERESTS_QUERY_KEY: () => INTERESTS_QUERY_KEY,
|
|
@@ -277,6 +280,7 @@ __export(src_exports, {
|
|
|
277
280
|
RegisterCancelledEventRegistration: () => RegisterCancelledEventRegistration,
|
|
278
281
|
RegistrationQuestionType: () => RegistrationQuestionType,
|
|
279
282
|
RegistrationStatus: () => RegistrationStatus,
|
|
283
|
+
ReinviteGroupInvitation: () => ReinviteGroupInvitation,
|
|
280
284
|
RejectGroupInvitation: () => RejectGroupInvitation,
|
|
281
285
|
RejectGroupRequest: () => RejectGroupRequest,
|
|
282
286
|
RejectTransfer: () => RejectTransfer,
|
|
@@ -364,6 +368,7 @@ __export(src_exports, {
|
|
|
364
368
|
SET_GROUP_ACTIVITIES_QUERY_DATA: () => SET_GROUP_ACTIVITIES_QUERY_DATA,
|
|
365
369
|
SET_GROUP_ANNOUNCEMENTS_QUERY_DATA: () => SET_GROUP_ANNOUNCEMENTS_QUERY_DATA,
|
|
366
370
|
SET_GROUP_EVENTS_QUERY_DATA: () => SET_GROUP_EVENTS_QUERY_DATA,
|
|
371
|
+
SET_GROUP_INVITATIONS_QUERY_DATA: () => SET_GROUP_INVITATIONS_QUERY_DATA,
|
|
367
372
|
SET_GROUP_MEDIA_QUERY_DATA: () => SET_GROUP_MEDIA_QUERY_DATA,
|
|
368
373
|
SET_GROUP_MEMBERS_QUERY_DATA: () => SET_GROUP_MEMBERS_QUERY_DATA,
|
|
369
374
|
SET_GROUP_QUERY_DATA: () => SET_GROUP_QUERY_DATA,
|
|
@@ -473,6 +478,7 @@ __export(src_exports, {
|
|
|
473
478
|
useAddSelfEventSession: () => useAddSelfEventSession,
|
|
474
479
|
useAddSelfInterests: () => useAddSelfInterests,
|
|
475
480
|
useCancelEventRegistration: () => useCancelEventRegistration,
|
|
481
|
+
useCancelGroupInvitation: () => useCancelGroupInvitation,
|
|
476
482
|
useCancelSubscription: () => useCancelSubscription,
|
|
477
483
|
useCancelTransfer: () => useCancelTransfer,
|
|
478
484
|
useCaptureInvoicePayment: () => useCaptureInvoicePayment,
|
|
@@ -500,7 +506,6 @@ __export(src_exports, {
|
|
|
500
506
|
useCreateTeamAccount: () => useCreateTeamAccount,
|
|
501
507
|
useDeactivateGroup: () => useDeactivateGroup,
|
|
502
508
|
useDeleteActivity: () => useDeleteActivity,
|
|
503
|
-
useDeleteGroupInvitation: () => useDeleteGroupInvitation,
|
|
504
509
|
useDeleteListing: () => useDeleteListing,
|
|
505
510
|
useDeleteListingQuestion: () => useDeleteListingQuestion,
|
|
506
511
|
useDeleteListingSession: () => useDeleteListingSession,
|
|
@@ -553,6 +558,7 @@ __export(src_exports, {
|
|
|
553
558
|
useGetGroupAnnouncements: () => useGetGroupAnnouncements,
|
|
554
559
|
useGetGroupEvents: () => useGetGroupEvents,
|
|
555
560
|
useGetGroupInvitableAccounts: () => useGetGroupInvitableAccounts,
|
|
561
|
+
useGetGroupInvitations: () => useGetGroupInvitations,
|
|
556
562
|
useGetGroupMedia: () => useGetGroupMedia,
|
|
557
563
|
useGetGroupMembers: () => useGetGroupMembers,
|
|
558
564
|
useGetGroupRequest: () => useGetGroupRequest,
|
|
@@ -624,6 +630,7 @@ __export(src_exports, {
|
|
|
624
630
|
useLikeActivity: () => useLikeActivity,
|
|
625
631
|
usePromoteGroupMember: () => usePromoteGroupMember,
|
|
626
632
|
useRegisterCancelledEventRegistration: () => useRegisterCancelledEventRegistration,
|
|
633
|
+
useReinviteGroupInvitation: () => useReinviteGroupInvitation,
|
|
627
634
|
useRejectGroupInvitation: () => useRejectGroupInvitation,
|
|
628
635
|
useRejectGroupRequest: () => useRejectGroupRequest,
|
|
629
636
|
useRejectTransfer: () => useRejectTransfer,
|
|
@@ -1032,10 +1039,15 @@ var InvoiceStatus = /* @__PURE__ */ ((InvoiceStatus2) => {
|
|
|
1032
1039
|
})(InvoiceStatus || {});
|
|
1033
1040
|
var GroupRequestStatus = /* @__PURE__ */ ((GroupRequestStatus2) => {
|
|
1034
1041
|
GroupRequestStatus2["requested"] = "requested";
|
|
1035
|
-
GroupRequestStatus2["invited"] = "invited";
|
|
1036
1042
|
GroupRequestStatus2["rejected"] = "rejected";
|
|
1037
1043
|
return GroupRequestStatus2;
|
|
1038
1044
|
})(GroupRequestStatus || {});
|
|
1045
|
+
var GroupInvitationStatus = /* @__PURE__ */ ((GroupInvitationStatus2) => {
|
|
1046
|
+
GroupInvitationStatus2["invited"] = "invited";
|
|
1047
|
+
GroupInvitationStatus2["rejected"] = "rejected";
|
|
1048
|
+
GroupInvitationStatus2["canceled"] = "canceled";
|
|
1049
|
+
return GroupInvitationStatus2;
|
|
1050
|
+
})(GroupInvitationStatus || {});
|
|
1039
1051
|
var EventEmailType = /* @__PURE__ */ ((EventEmailType2) => {
|
|
1040
1052
|
EventEmailType2["confirmation"] = "confirmation";
|
|
1041
1053
|
EventEmailType2["cancellation"] = "cancellation";
|
|
@@ -2437,20 +2449,73 @@ var GetGroupInvitableAccounts = async ({
|
|
|
2437
2449
|
clientApiParams
|
|
2438
2450
|
}) => {
|
|
2439
2451
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
2440
|
-
const { data } = await clientApi.get(
|
|
2452
|
+
const { data } = await clientApi.get(
|
|
2453
|
+
`/groups/${groupId}/invitations/accounts`,
|
|
2454
|
+
{
|
|
2455
|
+
params: {
|
|
2456
|
+
page: pageParam || void 0,
|
|
2457
|
+
pageSize: pageSize || void 0,
|
|
2458
|
+
orderBy: orderBy || void 0,
|
|
2459
|
+
search: search || void 0
|
|
2460
|
+
}
|
|
2461
|
+
}
|
|
2462
|
+
);
|
|
2463
|
+
return data;
|
|
2464
|
+
};
|
|
2465
|
+
var useGetGroupInvitableAccounts = (groupId = "", params = {}, options = {}) => {
|
|
2466
|
+
return useConnectedInfiniteQuery(
|
|
2467
|
+
GROUP_INVITABLE_ACCOUNTS_QUERY_KEY(groupId),
|
|
2468
|
+
(params2) => GetGroupInvitableAccounts({ groupId, ...params2 }),
|
|
2469
|
+
params,
|
|
2470
|
+
{
|
|
2471
|
+
...options,
|
|
2472
|
+
enabled: !!groupId && (options?.enabled ?? true)
|
|
2473
|
+
}
|
|
2474
|
+
);
|
|
2475
|
+
};
|
|
2476
|
+
|
|
2477
|
+
// src/queries/groups/useGetGroupInvitations.ts
|
|
2478
|
+
var GROUP_INVITATIONS_QUERY_KEY = (groupId, status) => {
|
|
2479
|
+
const keys = [...GROUP_QUERY_KEY(groupId), "INVITATIONS"];
|
|
2480
|
+
if (status) {
|
|
2481
|
+
keys.push(status);
|
|
2482
|
+
}
|
|
2483
|
+
return keys;
|
|
2484
|
+
};
|
|
2485
|
+
var SET_GROUP_INVITATIONS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
2486
|
+
client.setQueryData(
|
|
2487
|
+
[
|
|
2488
|
+
...GROUP_INVITATIONS_QUERY_KEY(...keyParams),
|
|
2489
|
+
...GetBaseInfiniteQueryKeys(...baseKeys)
|
|
2490
|
+
],
|
|
2491
|
+
setFirstPageData(response)
|
|
2492
|
+
);
|
|
2493
|
+
};
|
|
2494
|
+
var GetGroupInvitations = async ({
|
|
2495
|
+
pageParam,
|
|
2496
|
+
pageSize,
|
|
2497
|
+
orderBy,
|
|
2498
|
+
search,
|
|
2499
|
+
status,
|
|
2500
|
+
groupId,
|
|
2501
|
+
clientApiParams
|
|
2502
|
+
}) => {
|
|
2503
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
2504
|
+
const { data } = await clientApi.get(`/groups/${groupId}/invitations`, {
|
|
2441
2505
|
params: {
|
|
2442
2506
|
page: pageParam || void 0,
|
|
2443
2507
|
pageSize: pageSize || void 0,
|
|
2444
2508
|
orderBy: orderBy || void 0,
|
|
2445
|
-
search: search || void 0
|
|
2509
|
+
search: search || void 0,
|
|
2510
|
+
status: status || void 0
|
|
2446
2511
|
}
|
|
2447
2512
|
});
|
|
2448
2513
|
return data;
|
|
2449
2514
|
};
|
|
2450
|
-
var
|
|
2515
|
+
var useGetGroupInvitations = (groupId = "", status, params = {}, options = {}) => {
|
|
2451
2516
|
return useConnectedInfiniteQuery(
|
|
2452
|
-
|
|
2453
|
-
(params2) =>
|
|
2517
|
+
GROUP_INVITATIONS_QUERY_KEY(groupId, status),
|
|
2518
|
+
(params2) => GetGroupInvitations({ groupId, status, ...params2 }),
|
|
2454
2519
|
params,
|
|
2455
2520
|
{
|
|
2456
2521
|
...options,
|
|
@@ -7319,13 +7384,13 @@ var useCreateTeamAccount = (options = {}) => {
|
|
|
7319
7384
|
// src/mutations/groups/useAcceptGroupInvitation.ts
|
|
7320
7385
|
var AcceptGroupInvitation = async ({
|
|
7321
7386
|
groupId,
|
|
7322
|
-
|
|
7387
|
+
invitationId,
|
|
7323
7388
|
clientApiParams,
|
|
7324
7389
|
queryClient
|
|
7325
7390
|
}) => {
|
|
7326
7391
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
7327
7392
|
const { data } = await clientApi.post(
|
|
7328
|
-
`/groups/${groupId}/
|
|
7393
|
+
`/groups/${groupId}/invitations/${invitationId}`
|
|
7329
7394
|
);
|
|
7330
7395
|
if (queryClient && data.status === "ok") {
|
|
7331
7396
|
queryClient.invalidateQueries({
|
|
@@ -7356,6 +7421,9 @@ var AcceptGroupRequest = async ({
|
|
|
7356
7421
|
queryClient.invalidateQueries({
|
|
7357
7422
|
queryKey: GROUP_REQUESTS_QUERY_KEY(groupId)
|
|
7358
7423
|
});
|
|
7424
|
+
queryClient.invalidateQueries({
|
|
7425
|
+
queryKey: GROUP_INVITABLE_ACCOUNTS_QUERY_KEY(groupId)
|
|
7426
|
+
});
|
|
7359
7427
|
}
|
|
7360
7428
|
return data;
|
|
7361
7429
|
};
|
|
@@ -7403,7 +7471,7 @@ var CreateGroupInvitations = async ({
|
|
|
7403
7471
|
}) => {
|
|
7404
7472
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
7405
7473
|
const { data } = await clientApi.post(
|
|
7406
|
-
`/groups/${groupId}/
|
|
7474
|
+
`/groups/${groupId}/invitations`,
|
|
7407
7475
|
{
|
|
7408
7476
|
accountIds
|
|
7409
7477
|
}
|
|
@@ -7412,6 +7480,9 @@ var CreateGroupInvitations = async ({
|
|
|
7412
7480
|
queryClient.invalidateQueries({
|
|
7413
7481
|
queryKey: GROUP_INVITABLE_ACCOUNTS_QUERY_KEY(groupId)
|
|
7414
7482
|
});
|
|
7483
|
+
queryClient.invalidateQueries({
|
|
7484
|
+
queryKey: GROUP_INVITATIONS_QUERY_KEY(groupId)
|
|
7485
|
+
});
|
|
7415
7486
|
}
|
|
7416
7487
|
return data;
|
|
7417
7488
|
};
|
|
@@ -7461,26 +7532,29 @@ var useDeactivateGroup = (options = {}) => {
|
|
|
7461
7532
|
return useConnectedMutation_default(DeactivateGroup, options);
|
|
7462
7533
|
};
|
|
7463
7534
|
|
|
7464
|
-
// src/mutations/groups/
|
|
7465
|
-
var
|
|
7535
|
+
// src/mutations/groups/useCancelGroupInvitation.ts
|
|
7536
|
+
var CancelGroupInvitation = async ({
|
|
7466
7537
|
groupId,
|
|
7467
|
-
|
|
7538
|
+
invitationId,
|
|
7468
7539
|
clientApiParams,
|
|
7469
7540
|
queryClient
|
|
7470
7541
|
}) => {
|
|
7471
7542
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
7472
7543
|
const { data } = await clientApi.delete(
|
|
7473
|
-
`/groups/${groupId}/
|
|
7544
|
+
`/groups/${groupId}/invitations/${invitationId}`
|
|
7474
7545
|
);
|
|
7475
7546
|
if (queryClient && data.status === "ok") {
|
|
7476
7547
|
queryClient.invalidateQueries({
|
|
7477
7548
|
queryKey: GROUP_REQUESTS_QUERY_KEY(groupId)
|
|
7478
7549
|
});
|
|
7550
|
+
queryClient.invalidateQueries({
|
|
7551
|
+
queryKey: GROUP_INVITATIONS_QUERY_KEY(groupId)
|
|
7552
|
+
});
|
|
7479
7553
|
}
|
|
7480
7554
|
return data;
|
|
7481
7555
|
};
|
|
7482
|
-
var
|
|
7483
|
-
return useConnectedMutation_default(
|
|
7556
|
+
var useCancelGroupInvitation = (options = {}) => {
|
|
7557
|
+
return useConnectedMutation_default(CancelGroupInvitation, options);
|
|
7484
7558
|
};
|
|
7485
7559
|
|
|
7486
7560
|
// src/mutations/groups/useJoinGroup.ts
|
|
@@ -7564,7 +7638,7 @@ var RejectGroupRequest = async ({
|
|
|
7564
7638
|
queryClient
|
|
7565
7639
|
}) => {
|
|
7566
7640
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
7567
|
-
const { data } = await clientApi.
|
|
7641
|
+
const { data } = await clientApi.put(
|
|
7568
7642
|
`/groups/${groupId}/requests/${requestId}`
|
|
7569
7643
|
);
|
|
7570
7644
|
if (queryClient && data.status === "ok") {
|
|
@@ -7704,19 +7778,43 @@ var useCreateGroupAnnouncement = (options = {}) => {
|
|
|
7704
7778
|
return useConnectedMutation_default(CreateGroupAnnouncement, options);
|
|
7705
7779
|
};
|
|
7706
7780
|
|
|
7781
|
+
// src/mutations/groups/useReinviteGroupInvitation.ts
|
|
7782
|
+
var ReinviteGroupInvitation = async ({
|
|
7783
|
+
groupId,
|
|
7784
|
+
invitationId,
|
|
7785
|
+
clientApiParams,
|
|
7786
|
+
queryClient
|
|
7787
|
+
}) => {
|
|
7788
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
7789
|
+
const { data } = await clientApi.post(
|
|
7790
|
+
`/groups/${groupId}/invitations/${invitationId}/reinvite`
|
|
7791
|
+
);
|
|
7792
|
+
if (queryClient && data.status === "ok") {
|
|
7793
|
+
queryClient.invalidateQueries({
|
|
7794
|
+
queryKey: GROUP_REQUESTS_QUERY_KEY(groupId)
|
|
7795
|
+
});
|
|
7796
|
+
queryClient.invalidateQueries({
|
|
7797
|
+
queryKey: GROUP_INVITATIONS_QUERY_KEY(groupId)
|
|
7798
|
+
});
|
|
7799
|
+
}
|
|
7800
|
+
return data;
|
|
7801
|
+
};
|
|
7802
|
+
var useReinviteGroupInvitation = (options = {}) => {
|
|
7803
|
+
return useConnectedMutation_default(ReinviteGroupInvitation, options);
|
|
7804
|
+
};
|
|
7805
|
+
|
|
7707
7806
|
// src/mutations/groups/useRejectGroupInvitation.ts
|
|
7708
7807
|
var RejectGroupInvitation = async ({
|
|
7709
7808
|
groupId,
|
|
7710
|
-
|
|
7809
|
+
invitationId,
|
|
7711
7810
|
clientApiParams,
|
|
7712
7811
|
queryClient
|
|
7713
7812
|
}) => {
|
|
7714
7813
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
7715
7814
|
const { data } = await clientApi.put(
|
|
7716
|
-
`/groups/${groupId}/
|
|
7815
|
+
`/groups/${groupId}/invitations/${invitationId}`
|
|
7717
7816
|
);
|
|
7718
7817
|
if (queryClient && data.status === "ok") {
|
|
7719
|
-
SET_GROUP_REQUEST_QUERY_DATA(queryClient, [groupId, data.data.id], data);
|
|
7720
7818
|
queryClient.invalidateQueries({
|
|
7721
7819
|
queryKey: SELF_NOTIFICATIONS_QUERY_KEY("")
|
|
7722
7820
|
});
|
|
@@ -8223,6 +8321,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8223
8321
|
CONTENT_TYPE_QUERY_KEY,
|
|
8224
8322
|
CacheIndividualQueries,
|
|
8225
8323
|
CancelEventRegistration,
|
|
8324
|
+
CancelGroupInvitation,
|
|
8226
8325
|
CancelSubscription,
|
|
8227
8326
|
CancelTransfer,
|
|
8228
8327
|
CaptureInvoicePayment,
|
|
@@ -8250,7 +8349,6 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8250
8349
|
Currency,
|
|
8251
8350
|
DeactivateGroup,
|
|
8252
8351
|
DeleteActivity,
|
|
8253
|
-
DeleteGroupInvitation,
|
|
8254
8352
|
DeleteListing,
|
|
8255
8353
|
DeleteListingQuestion,
|
|
8256
8354
|
DeleteListingSession,
|
|
@@ -8288,6 +8386,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8288
8386
|
GROUP_ANNOUNCEMENTS_QUERY_KEY,
|
|
8289
8387
|
GROUP_EVENTS_QUERY_KEY,
|
|
8290
8388
|
GROUP_INVITABLE_ACCOUNTS_QUERY_KEY,
|
|
8389
|
+
GROUP_INVITATIONS_QUERY_KEY,
|
|
8291
8390
|
GROUP_MEDIA_QUERY_KEY,
|
|
8292
8391
|
GROUP_MEMBERS_QUERY_KEY,
|
|
8293
8392
|
GROUP_QUERY_KEY,
|
|
@@ -8339,6 +8438,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8339
8438
|
GetGroupAnnouncements,
|
|
8340
8439
|
GetGroupEvents,
|
|
8341
8440
|
GetGroupInvitableAccounts,
|
|
8441
|
+
GetGroupInvitations,
|
|
8342
8442
|
GetGroupMedia,
|
|
8343
8443
|
GetGroupMembers,
|
|
8344
8444
|
GetGroupRequest,
|
|
@@ -8401,6 +8501,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8401
8501
|
GetSeriesEvents,
|
|
8402
8502
|
GetSeriesList,
|
|
8403
8503
|
GroupAccess,
|
|
8504
|
+
GroupInvitationStatus,
|
|
8404
8505
|
GroupMembershipRole,
|
|
8405
8506
|
GroupRequestStatus,
|
|
8406
8507
|
INTERESTS_QUERY_KEY,
|
|
@@ -8436,6 +8537,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8436
8537
|
RegisterCancelledEventRegistration,
|
|
8437
8538
|
RegistrationQuestionType,
|
|
8438
8539
|
RegistrationStatus,
|
|
8540
|
+
ReinviteGroupInvitation,
|
|
8439
8541
|
RejectGroupInvitation,
|
|
8440
8542
|
RejectGroupRequest,
|
|
8441
8543
|
RejectTransfer,
|
|
@@ -8523,6 +8625,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8523
8625
|
SET_GROUP_ACTIVITIES_QUERY_DATA,
|
|
8524
8626
|
SET_GROUP_ANNOUNCEMENTS_QUERY_DATA,
|
|
8525
8627
|
SET_GROUP_EVENTS_QUERY_DATA,
|
|
8628
|
+
SET_GROUP_INVITATIONS_QUERY_DATA,
|
|
8526
8629
|
SET_GROUP_MEDIA_QUERY_DATA,
|
|
8527
8630
|
SET_GROUP_MEMBERS_QUERY_DATA,
|
|
8528
8631
|
SET_GROUP_QUERY_DATA,
|
|
@@ -8632,6 +8735,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8632
8735
|
useAddSelfEventSession,
|
|
8633
8736
|
useAddSelfInterests,
|
|
8634
8737
|
useCancelEventRegistration,
|
|
8738
|
+
useCancelGroupInvitation,
|
|
8635
8739
|
useCancelSubscription,
|
|
8636
8740
|
useCancelTransfer,
|
|
8637
8741
|
useCaptureInvoicePayment,
|
|
@@ -8659,7 +8763,6 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8659
8763
|
useCreateTeamAccount,
|
|
8660
8764
|
useDeactivateGroup,
|
|
8661
8765
|
useDeleteActivity,
|
|
8662
|
-
useDeleteGroupInvitation,
|
|
8663
8766
|
useDeleteListing,
|
|
8664
8767
|
useDeleteListingQuestion,
|
|
8665
8768
|
useDeleteListingSession,
|
|
@@ -8712,6 +8815,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8712
8815
|
useGetGroupAnnouncements,
|
|
8713
8816
|
useGetGroupEvents,
|
|
8714
8817
|
useGetGroupInvitableAccounts,
|
|
8818
|
+
useGetGroupInvitations,
|
|
8715
8819
|
useGetGroupMedia,
|
|
8716
8820
|
useGetGroupMembers,
|
|
8717
8821
|
useGetGroupRequest,
|
|
@@ -8783,6 +8887,7 @@ var useUpdateListingSpeaker = (options = {}) => {
|
|
|
8783
8887
|
useLikeActivity,
|
|
8784
8888
|
usePromoteGroupMember,
|
|
8785
8889
|
useRegisterCancelledEventRegistration,
|
|
8890
|
+
useReinviteGroupInvitation,
|
|
8786
8891
|
useRejectGroupInvitation,
|
|
8787
8892
|
useRejectGroupRequest,
|
|
8788
8893
|
useRejectTransfer,
|
package/dist/index.mjs
CHANGED
|
@@ -372,10 +372,15 @@ var InvoiceStatus = /* @__PURE__ */ ((InvoiceStatus2) => {
|
|
|
372
372
|
})(InvoiceStatus || {});
|
|
373
373
|
var GroupRequestStatus = /* @__PURE__ */ ((GroupRequestStatus2) => {
|
|
374
374
|
GroupRequestStatus2["requested"] = "requested";
|
|
375
|
-
GroupRequestStatus2["invited"] = "invited";
|
|
376
375
|
GroupRequestStatus2["rejected"] = "rejected";
|
|
377
376
|
return GroupRequestStatus2;
|
|
378
377
|
})(GroupRequestStatus || {});
|
|
378
|
+
var GroupInvitationStatus = /* @__PURE__ */ ((GroupInvitationStatus2) => {
|
|
379
|
+
GroupInvitationStatus2["invited"] = "invited";
|
|
380
|
+
GroupInvitationStatus2["rejected"] = "rejected";
|
|
381
|
+
GroupInvitationStatus2["canceled"] = "canceled";
|
|
382
|
+
return GroupInvitationStatus2;
|
|
383
|
+
})(GroupInvitationStatus || {});
|
|
379
384
|
var EventEmailType = /* @__PURE__ */ ((EventEmailType2) => {
|
|
380
385
|
EventEmailType2["confirmation"] = "confirmation";
|
|
381
386
|
EventEmailType2["cancellation"] = "cancellation";
|
|
@@ -1779,20 +1784,73 @@ var GetGroupInvitableAccounts = async ({
|
|
|
1779
1784
|
clientApiParams
|
|
1780
1785
|
}) => {
|
|
1781
1786
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
1782
|
-
const { data } = await clientApi.get(
|
|
1787
|
+
const { data } = await clientApi.get(
|
|
1788
|
+
`/groups/${groupId}/invitations/accounts`,
|
|
1789
|
+
{
|
|
1790
|
+
params: {
|
|
1791
|
+
page: pageParam || void 0,
|
|
1792
|
+
pageSize: pageSize || void 0,
|
|
1793
|
+
orderBy: orderBy || void 0,
|
|
1794
|
+
search: search || void 0
|
|
1795
|
+
}
|
|
1796
|
+
}
|
|
1797
|
+
);
|
|
1798
|
+
return data;
|
|
1799
|
+
};
|
|
1800
|
+
var useGetGroupInvitableAccounts = (groupId = "", params = {}, options = {}) => {
|
|
1801
|
+
return useConnectedInfiniteQuery(
|
|
1802
|
+
GROUP_INVITABLE_ACCOUNTS_QUERY_KEY(groupId),
|
|
1803
|
+
(params2) => GetGroupInvitableAccounts({ groupId, ...params2 }),
|
|
1804
|
+
params,
|
|
1805
|
+
{
|
|
1806
|
+
...options,
|
|
1807
|
+
enabled: !!groupId && (options?.enabled ?? true)
|
|
1808
|
+
}
|
|
1809
|
+
);
|
|
1810
|
+
};
|
|
1811
|
+
|
|
1812
|
+
// src/queries/groups/useGetGroupInvitations.ts
|
|
1813
|
+
var GROUP_INVITATIONS_QUERY_KEY = (groupId, status) => {
|
|
1814
|
+
const keys = [...GROUP_QUERY_KEY(groupId), "INVITATIONS"];
|
|
1815
|
+
if (status) {
|
|
1816
|
+
keys.push(status);
|
|
1817
|
+
}
|
|
1818
|
+
return keys;
|
|
1819
|
+
};
|
|
1820
|
+
var SET_GROUP_INVITATIONS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
1821
|
+
client.setQueryData(
|
|
1822
|
+
[
|
|
1823
|
+
...GROUP_INVITATIONS_QUERY_KEY(...keyParams),
|
|
1824
|
+
...GetBaseInfiniteQueryKeys(...baseKeys)
|
|
1825
|
+
],
|
|
1826
|
+
setFirstPageData(response)
|
|
1827
|
+
);
|
|
1828
|
+
};
|
|
1829
|
+
var GetGroupInvitations = async ({
|
|
1830
|
+
pageParam,
|
|
1831
|
+
pageSize,
|
|
1832
|
+
orderBy,
|
|
1833
|
+
search,
|
|
1834
|
+
status,
|
|
1835
|
+
groupId,
|
|
1836
|
+
clientApiParams
|
|
1837
|
+
}) => {
|
|
1838
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
1839
|
+
const { data } = await clientApi.get(`/groups/${groupId}/invitations`, {
|
|
1783
1840
|
params: {
|
|
1784
1841
|
page: pageParam || void 0,
|
|
1785
1842
|
pageSize: pageSize || void 0,
|
|
1786
1843
|
orderBy: orderBy || void 0,
|
|
1787
|
-
search: search || void 0
|
|
1844
|
+
search: search || void 0,
|
|
1845
|
+
status: status || void 0
|
|
1788
1846
|
}
|
|
1789
1847
|
});
|
|
1790
1848
|
return data;
|
|
1791
1849
|
};
|
|
1792
|
-
var
|
|
1850
|
+
var useGetGroupInvitations = (groupId = "", status, params = {}, options = {}) => {
|
|
1793
1851
|
return useConnectedInfiniteQuery(
|
|
1794
|
-
|
|
1795
|
-
(params2) =>
|
|
1852
|
+
GROUP_INVITATIONS_QUERY_KEY(groupId, status),
|
|
1853
|
+
(params2) => GetGroupInvitations({ groupId, status, ...params2 }),
|
|
1796
1854
|
params,
|
|
1797
1855
|
{
|
|
1798
1856
|
...options,
|
|
@@ -6664,13 +6722,13 @@ var useCreateTeamAccount = (options = {}) => {
|
|
|
6664
6722
|
// src/mutations/groups/useAcceptGroupInvitation.ts
|
|
6665
6723
|
var AcceptGroupInvitation = async ({
|
|
6666
6724
|
groupId,
|
|
6667
|
-
|
|
6725
|
+
invitationId,
|
|
6668
6726
|
clientApiParams,
|
|
6669
6727
|
queryClient
|
|
6670
6728
|
}) => {
|
|
6671
6729
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
6672
6730
|
const { data } = await clientApi.post(
|
|
6673
|
-
`/groups/${groupId}/
|
|
6731
|
+
`/groups/${groupId}/invitations/${invitationId}`
|
|
6674
6732
|
);
|
|
6675
6733
|
if (queryClient && data.status === "ok") {
|
|
6676
6734
|
queryClient.invalidateQueries({
|
|
@@ -6701,6 +6759,9 @@ var AcceptGroupRequest = async ({
|
|
|
6701
6759
|
queryClient.invalidateQueries({
|
|
6702
6760
|
queryKey: GROUP_REQUESTS_QUERY_KEY(groupId)
|
|
6703
6761
|
});
|
|
6762
|
+
queryClient.invalidateQueries({
|
|
6763
|
+
queryKey: GROUP_INVITABLE_ACCOUNTS_QUERY_KEY(groupId)
|
|
6764
|
+
});
|
|
6704
6765
|
}
|
|
6705
6766
|
return data;
|
|
6706
6767
|
};
|
|
@@ -6748,7 +6809,7 @@ var CreateGroupInvitations = async ({
|
|
|
6748
6809
|
}) => {
|
|
6749
6810
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
6750
6811
|
const { data } = await clientApi.post(
|
|
6751
|
-
`/groups/${groupId}/
|
|
6812
|
+
`/groups/${groupId}/invitations`,
|
|
6752
6813
|
{
|
|
6753
6814
|
accountIds
|
|
6754
6815
|
}
|
|
@@ -6757,6 +6818,9 @@ var CreateGroupInvitations = async ({
|
|
|
6757
6818
|
queryClient.invalidateQueries({
|
|
6758
6819
|
queryKey: GROUP_INVITABLE_ACCOUNTS_QUERY_KEY(groupId)
|
|
6759
6820
|
});
|
|
6821
|
+
queryClient.invalidateQueries({
|
|
6822
|
+
queryKey: GROUP_INVITATIONS_QUERY_KEY(groupId)
|
|
6823
|
+
});
|
|
6760
6824
|
}
|
|
6761
6825
|
return data;
|
|
6762
6826
|
};
|
|
@@ -6806,26 +6870,29 @@ var useDeactivateGroup = (options = {}) => {
|
|
|
6806
6870
|
return useConnectedMutation_default(DeactivateGroup, options);
|
|
6807
6871
|
};
|
|
6808
6872
|
|
|
6809
|
-
// src/mutations/groups/
|
|
6810
|
-
var
|
|
6873
|
+
// src/mutations/groups/useCancelGroupInvitation.ts
|
|
6874
|
+
var CancelGroupInvitation = async ({
|
|
6811
6875
|
groupId,
|
|
6812
|
-
|
|
6876
|
+
invitationId,
|
|
6813
6877
|
clientApiParams,
|
|
6814
6878
|
queryClient
|
|
6815
6879
|
}) => {
|
|
6816
6880
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
6817
6881
|
const { data } = await clientApi.delete(
|
|
6818
|
-
`/groups/${groupId}/
|
|
6882
|
+
`/groups/${groupId}/invitations/${invitationId}`
|
|
6819
6883
|
);
|
|
6820
6884
|
if (queryClient && data.status === "ok") {
|
|
6821
6885
|
queryClient.invalidateQueries({
|
|
6822
6886
|
queryKey: GROUP_REQUESTS_QUERY_KEY(groupId)
|
|
6823
6887
|
});
|
|
6888
|
+
queryClient.invalidateQueries({
|
|
6889
|
+
queryKey: GROUP_INVITATIONS_QUERY_KEY(groupId)
|
|
6890
|
+
});
|
|
6824
6891
|
}
|
|
6825
6892
|
return data;
|
|
6826
6893
|
};
|
|
6827
|
-
var
|
|
6828
|
-
return useConnectedMutation_default(
|
|
6894
|
+
var useCancelGroupInvitation = (options = {}) => {
|
|
6895
|
+
return useConnectedMutation_default(CancelGroupInvitation, options);
|
|
6829
6896
|
};
|
|
6830
6897
|
|
|
6831
6898
|
// src/mutations/groups/useJoinGroup.ts
|
|
@@ -6909,7 +6976,7 @@ var RejectGroupRequest = async ({
|
|
|
6909
6976
|
queryClient
|
|
6910
6977
|
}) => {
|
|
6911
6978
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
6912
|
-
const { data } = await clientApi.
|
|
6979
|
+
const { data } = await clientApi.put(
|
|
6913
6980
|
`/groups/${groupId}/requests/${requestId}`
|
|
6914
6981
|
);
|
|
6915
6982
|
if (queryClient && data.status === "ok") {
|
|
@@ -7049,19 +7116,43 @@ var useCreateGroupAnnouncement = (options = {}) => {
|
|
|
7049
7116
|
return useConnectedMutation_default(CreateGroupAnnouncement, options);
|
|
7050
7117
|
};
|
|
7051
7118
|
|
|
7119
|
+
// src/mutations/groups/useReinviteGroupInvitation.ts
|
|
7120
|
+
var ReinviteGroupInvitation = async ({
|
|
7121
|
+
groupId,
|
|
7122
|
+
invitationId,
|
|
7123
|
+
clientApiParams,
|
|
7124
|
+
queryClient
|
|
7125
|
+
}) => {
|
|
7126
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
7127
|
+
const { data } = await clientApi.post(
|
|
7128
|
+
`/groups/${groupId}/invitations/${invitationId}/reinvite`
|
|
7129
|
+
);
|
|
7130
|
+
if (queryClient && data.status === "ok") {
|
|
7131
|
+
queryClient.invalidateQueries({
|
|
7132
|
+
queryKey: GROUP_REQUESTS_QUERY_KEY(groupId)
|
|
7133
|
+
});
|
|
7134
|
+
queryClient.invalidateQueries({
|
|
7135
|
+
queryKey: GROUP_INVITATIONS_QUERY_KEY(groupId)
|
|
7136
|
+
});
|
|
7137
|
+
}
|
|
7138
|
+
return data;
|
|
7139
|
+
};
|
|
7140
|
+
var useReinviteGroupInvitation = (options = {}) => {
|
|
7141
|
+
return useConnectedMutation_default(ReinviteGroupInvitation, options);
|
|
7142
|
+
};
|
|
7143
|
+
|
|
7052
7144
|
// src/mutations/groups/useRejectGroupInvitation.ts
|
|
7053
7145
|
var RejectGroupInvitation = async ({
|
|
7054
7146
|
groupId,
|
|
7055
|
-
|
|
7147
|
+
invitationId,
|
|
7056
7148
|
clientApiParams,
|
|
7057
7149
|
queryClient
|
|
7058
7150
|
}) => {
|
|
7059
7151
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
7060
7152
|
const { data } = await clientApi.put(
|
|
7061
|
-
`/groups/${groupId}/
|
|
7153
|
+
`/groups/${groupId}/invitations/${invitationId}`
|
|
7062
7154
|
);
|
|
7063
7155
|
if (queryClient && data.status === "ok") {
|
|
7064
|
-
SET_GROUP_REQUEST_QUERY_DATA(queryClient, [groupId, data.data.id], data);
|
|
7065
7156
|
queryClient.invalidateQueries({
|
|
7066
7157
|
queryKey: SELF_NOTIFICATIONS_QUERY_KEY("")
|
|
7067
7158
|
});
|
|
@@ -7567,6 +7658,7 @@ export {
|
|
|
7567
7658
|
CONTENT_TYPE_QUERY_KEY,
|
|
7568
7659
|
CacheIndividualQueries,
|
|
7569
7660
|
CancelEventRegistration,
|
|
7661
|
+
CancelGroupInvitation,
|
|
7570
7662
|
CancelSubscription,
|
|
7571
7663
|
CancelTransfer,
|
|
7572
7664
|
CaptureInvoicePayment,
|
|
@@ -7594,7 +7686,6 @@ export {
|
|
|
7594
7686
|
Currency,
|
|
7595
7687
|
DeactivateGroup,
|
|
7596
7688
|
DeleteActivity,
|
|
7597
|
-
DeleteGroupInvitation,
|
|
7598
7689
|
DeleteListing,
|
|
7599
7690
|
DeleteListingQuestion,
|
|
7600
7691
|
DeleteListingSession,
|
|
@@ -7632,6 +7723,7 @@ export {
|
|
|
7632
7723
|
GROUP_ANNOUNCEMENTS_QUERY_KEY,
|
|
7633
7724
|
GROUP_EVENTS_QUERY_KEY,
|
|
7634
7725
|
GROUP_INVITABLE_ACCOUNTS_QUERY_KEY,
|
|
7726
|
+
GROUP_INVITATIONS_QUERY_KEY,
|
|
7635
7727
|
GROUP_MEDIA_QUERY_KEY,
|
|
7636
7728
|
GROUP_MEMBERS_QUERY_KEY,
|
|
7637
7729
|
GROUP_QUERY_KEY,
|
|
@@ -7683,6 +7775,7 @@ export {
|
|
|
7683
7775
|
GetGroupAnnouncements,
|
|
7684
7776
|
GetGroupEvents,
|
|
7685
7777
|
GetGroupInvitableAccounts,
|
|
7778
|
+
GetGroupInvitations,
|
|
7686
7779
|
GetGroupMedia,
|
|
7687
7780
|
GetGroupMembers,
|
|
7688
7781
|
GetGroupRequest,
|
|
@@ -7745,6 +7838,7 @@ export {
|
|
|
7745
7838
|
GetSeriesEvents,
|
|
7746
7839
|
GetSeriesList,
|
|
7747
7840
|
GroupAccess,
|
|
7841
|
+
GroupInvitationStatus,
|
|
7748
7842
|
GroupMembershipRole,
|
|
7749
7843
|
GroupRequestStatus,
|
|
7750
7844
|
INTERESTS_QUERY_KEY,
|
|
@@ -7780,6 +7874,7 @@ export {
|
|
|
7780
7874
|
RegisterCancelledEventRegistration,
|
|
7781
7875
|
RegistrationQuestionType,
|
|
7782
7876
|
RegistrationStatus,
|
|
7877
|
+
ReinviteGroupInvitation,
|
|
7783
7878
|
RejectGroupInvitation,
|
|
7784
7879
|
RejectGroupRequest,
|
|
7785
7880
|
RejectTransfer,
|
|
@@ -7867,6 +7962,7 @@ export {
|
|
|
7867
7962
|
SET_GROUP_ACTIVITIES_QUERY_DATA,
|
|
7868
7963
|
SET_GROUP_ANNOUNCEMENTS_QUERY_DATA,
|
|
7869
7964
|
SET_GROUP_EVENTS_QUERY_DATA,
|
|
7965
|
+
SET_GROUP_INVITATIONS_QUERY_DATA,
|
|
7870
7966
|
SET_GROUP_MEDIA_QUERY_DATA,
|
|
7871
7967
|
SET_GROUP_MEMBERS_QUERY_DATA,
|
|
7872
7968
|
SET_GROUP_QUERY_DATA,
|
|
@@ -7976,6 +8072,7 @@ export {
|
|
|
7976
8072
|
useAddSelfEventSession,
|
|
7977
8073
|
useAddSelfInterests,
|
|
7978
8074
|
useCancelEventRegistration,
|
|
8075
|
+
useCancelGroupInvitation,
|
|
7979
8076
|
useCancelSubscription,
|
|
7980
8077
|
useCancelTransfer,
|
|
7981
8078
|
useCaptureInvoicePayment,
|
|
@@ -8003,7 +8100,6 @@ export {
|
|
|
8003
8100
|
useCreateTeamAccount,
|
|
8004
8101
|
useDeactivateGroup,
|
|
8005
8102
|
useDeleteActivity,
|
|
8006
|
-
useDeleteGroupInvitation,
|
|
8007
8103
|
useDeleteListing,
|
|
8008
8104
|
useDeleteListingQuestion,
|
|
8009
8105
|
useDeleteListingSession,
|
|
@@ -8056,6 +8152,7 @@ export {
|
|
|
8056
8152
|
useGetGroupAnnouncements,
|
|
8057
8153
|
useGetGroupEvents,
|
|
8058
8154
|
useGetGroupInvitableAccounts,
|
|
8155
|
+
useGetGroupInvitations,
|
|
8059
8156
|
useGetGroupMedia,
|
|
8060
8157
|
useGetGroupMembers,
|
|
8061
8158
|
useGetGroupRequest,
|
|
@@ -8127,6 +8224,7 @@ export {
|
|
|
8127
8224
|
useLikeActivity,
|
|
8128
8225
|
usePromoteGroupMember,
|
|
8129
8226
|
useRegisterCancelledEventRegistration,
|
|
8227
|
+
useReinviteGroupInvitation,
|
|
8130
8228
|
useRejectGroupInvitation,
|
|
8131
8229
|
useRejectGroupRequest,
|
|
8132
8230
|
useRejectTransfer,
|