@connectedxm/client 0.3.6 → 0.4.2

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.ts CHANGED
@@ -384,6 +384,7 @@ interface RegistrationSection extends BaseRegistrationSection {
384
384
  questions: RegistrationQuestion[];
385
385
  }
386
386
  interface EventListing extends Event {
387
+ visible: boolean;
387
388
  newActivityCreatorEmailNotification: boolean;
388
389
  newActivityCreatorPushNotification: boolean;
389
390
  registrationLimit: number;
@@ -497,7 +498,9 @@ declare enum NotificationType {
497
498
  COMMENT = "COMMENT",
498
499
  RESHARE = "RESHARE",
499
500
  EVENT = "EVENT",
500
- ACTIVITY = "ACTIVITY"
501
+ ACTIVITY = "ACTIVITY",
502
+ GROUP_INVITATION = "GROUP_INVITATION",
503
+ GROUP_REQUEST_ACCEPTED = "GROUP_REQUEST_ACCEPTED"
501
504
  }
502
505
  interface BaseNotification {
503
506
  id: string;
@@ -511,6 +514,8 @@ interface Notification$1 extends BaseNotification {
511
514
  activity: BaseActivity | null;
512
515
  event: BaseEvent | null;
513
516
  announcement: BaseAnnouncement | null;
517
+ community: BaseCommunity | null;
518
+ request: BaseCommunityRequest | null;
514
519
  createdAt: string;
515
520
  updatedAt: string;
516
521
  }
@@ -926,6 +931,10 @@ interface NotificationPreferences {
926
931
  communityAnnouncementPush: boolean;
927
932
  eventAnnouncementEmail: boolean;
928
933
  eventAnnouncementPush: boolean;
934
+ communityInvitationEmail: boolean;
935
+ communityInvitationPush: boolean;
936
+ communityRequestAcceptedEmail: boolean;
937
+ communityRequestAcceptedPush: boolean;
929
938
  }
930
939
  declare enum PushDeviceAppType {
931
940
  EVENTXM = "EVENTXM",
@@ -1256,6 +1265,24 @@ interface BaseEventReservationSectionLocation {
1256
1265
  interface EventReservationSectionLocation extends BaseEventReservationSectionLocation {
1257
1266
  reservationSection: BaseEventReservationSection;
1258
1267
  }
1268
+ declare enum CommunityRequestStatus {
1269
+ requested = "requested",
1270
+ invited = "invited",
1271
+ rejected = "rejected"
1272
+ }
1273
+ interface BaseCommunityRequest {
1274
+ id: string;
1275
+ status: CommunityRequestStatus;
1276
+ communityId: string;
1277
+ community: BaseCommunity;
1278
+ account: BaseAccount;
1279
+ inviter: BaseAccount;
1280
+ createdAt: string;
1281
+ updatedAt: string;
1282
+ }
1283
+ interface CommunityRequest extends BaseCommunityRequest {
1284
+ community: BaseCommunity;
1285
+ }
1259
1286
 
1260
1287
  interface ConnectedXMClientContextState {
1261
1288
  queryClient: QueryClient;
@@ -1468,21 +1495,14 @@ interface GetCommunityEventsProps extends InfiniteQueryParams {
1468
1495
  declare const GetCommunityEvents: ({ pageParam, pageSize, orderBy, search, communityId, past, queryClient, clientApiParams, locale, }: GetCommunityEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
1469
1496
  declare const useGetCommunityEvents: (communityId?: string, past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityEvents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1470
1497
 
1471
- declare const COMMUNITY_MEMBERS_QUERY_KEY: (communityId: string) => QueryKey;
1472
- declare const SET_COMMUNITY_MEMBERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITY_MEMBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunityMembers>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1498
+ declare const COMMUNITY_MEMBERS_QUERY_KEY: (communityId: string, role?: keyof typeof CommunityMembershipRole) => QueryKey;
1499
+ declare const SET_COMMUNITY_MEMBERS_QUERY_DATA: (client: QueryClient, keyParams: [communityId: string, role?: "moderator" | "member" | undefined], response: Awaited<ReturnType<typeof GetCommunityMembers>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1473
1500
  interface GetCommunityMembersProps extends InfiniteQueryParams {
1474
1501
  communityId: string;
1502
+ role?: keyof typeof CommunityMembershipRole;
1475
1503
  }
1476
- declare const GetCommunityMembers: ({ pageParam, pageSize, orderBy, search, communityId, clientApiParams, }: GetCommunityMembersProps) => Promise<ConnectedXMResponse<CommunityMembership[]>>;
1477
- declare const useGetCommunityMembers: (communityId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityMembers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<CommunityMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1478
-
1479
- declare const COMMUNITY_MODERATORS_QUERY_KEY: (communityId: string) => QueryKey;
1480
- declare const SET_COMMUNITY_MODERATORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITY_MODERATORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunityModerators>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1481
- interface GetCommunityModeratorsProps extends InfiniteQueryParams {
1482
- communityId: string;
1483
- }
1484
- declare const GetCommunityModerators: ({ pageParam, pageSize, orderBy, search, communityId, clientApiParams, }: GetCommunityModeratorsProps) => Promise<ConnectedXMResponse<CommunityMembership[]>>;
1485
- declare const useGetCommunityModerators: (communityId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityModerators>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<CommunityMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1504
+ declare const GetCommunityMembers: ({ pageParam, pageSize, orderBy, search, role, communityId, clientApiParams, }: GetCommunityMembersProps) => Promise<ConnectedXMResponse<CommunityMembership[]>>;
1505
+ declare const useGetCommunityMembers: (communityId?: string, role?: keyof typeof CommunityMembershipRole, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityMembers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<CommunityMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1486
1506
 
1487
1507
  declare const COMMUNITY_SPONSORS_QUERY_KEY: (communityId: string) => QueryKey;
1488
1508
  declare const SET_COMMUNITY_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITY_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunitySponsors>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
@@ -1492,6 +1512,39 @@ interface GetCommunitySponsorsProps extends InfiniteQueryParams {
1492
1512
  declare const GetCommunitySponsors: ({ pageParam, pageSize, orderBy, search, communityId, queryClient, clientApiParams, locale, }: GetCommunitySponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
1493
1513
  declare const useGetCommunitySponsors: (communityId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunitySponsors>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1494
1514
 
1515
+ declare const COMMUNITY_REQUEST_QUERY_KEY: (communityId: string, requestId: string) => QueryKey;
1516
+ declare const SET_COMMUNITY_REQUEST_QUERY_DATA: (client: QueryClient, keyParams: [communityId: string, requestId: string], response: Awaited<ReturnType<typeof GetCommunityRequest>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
1517
+ interface GetCommunityRequestProps extends SingleQueryParams {
1518
+ communityId: string;
1519
+ requestId: string;
1520
+ }
1521
+ declare const GetCommunityRequest: ({ communityId, requestId, clientApiParams, }: GetCommunityRequestProps) => Promise<ConnectedXMResponse<CommunityRequest>>;
1522
+ declare const useGetCommunityRequest: (communityId?: string, requestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetCommunityRequest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<CommunityRequest>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1523
+
1524
+ declare const COMMUNITY_REQUESTS_QUERY_KEY: (communityId: string, status?: keyof typeof CommunityRequestStatus) => QueryKey;
1525
+ declare const SET_COMMUNITY_REQUESTS_QUERY_DATA: (client: QueryClient, keyParams: [communityId: string, status?: "invited" | "rejected" | "requested" | undefined], response: Awaited<ReturnType<typeof GetCommunityRequests>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1526
+ interface GetCommunityRequestsProps extends InfiniteQueryParams {
1527
+ communityId: string;
1528
+ status?: keyof typeof CommunityRequestStatus;
1529
+ }
1530
+ declare const GetCommunityRequests: ({ pageParam, pageSize, orderBy, search, status, communityId, queryClient, clientApiParams, locale, }: GetCommunityRequestsProps) => Promise<ConnectedXMResponse<CommunityRequest[]>>;
1531
+ declare const useGetCommunityRequests: (communityId?: string, status?: keyof typeof CommunityRequestStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityRequests>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<CommunityRequest[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1532
+
1533
+ interface InvitableAccount extends Account {
1534
+ communityRequests: {
1535
+ status: CommunityRequestStatus;
1536
+ }[];
1537
+ communities: {
1538
+ role: CommunityMembershipRole;
1539
+ }[];
1540
+ }
1541
+ declare const COMMUNITY_INVITABLE_ACCOUNTS_QUERY_KEY: (communityId: string) => QueryKey;
1542
+ interface GetCommunityInvitableAccountsProps extends InfiniteQueryParams {
1543
+ communityId: string;
1544
+ }
1545
+ declare const GetCommunityInvitableAccounts: ({ pageParam, pageSize, orderBy, search, communityId, clientApiParams, }: GetCommunityInvitableAccountsProps) => Promise<ConnectedXMResponse<InvitableAccount[]>>;
1546
+ declare const useGetCommunityInvitableAccounts: (communityId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityInvitableAccounts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<InvitableAccount[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1547
+
1495
1548
  declare const CONTENT_QUERY_KEY: (contentId: string) => QueryKey;
1496
1549
  declare const SET_CONTENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1497
1550
  interface GetContentParams extends SingleQueryParams {
@@ -1833,6 +1886,21 @@ interface GetSelfEventRegistrationPurchaseReservationSectionsProps extends Singl
1833
1886
  declare const GetSelfEventRegistrationPurchaseReservationSections: ({ eventId, registrationId, purchaseId, clientApiParams, }: GetSelfEventRegistrationPurchaseReservationSectionsProps) => Promise<ConnectedXMResponse<EventReservationSection[]>>;
1834
1887
  declare const useGetSelfEventRegistrationPurchaseReservationSections: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseReservationSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventReservationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1835
1888
 
1889
+ declare const SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY: (eventId: string) => QueryKey;
1890
+ declare const SET_SELF_EVENT_REGISTRATION_STATUS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationStatus>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1891
+ interface GetSelfEventRegistrationStatusProps extends SingleQueryParams {
1892
+ eventId: string;
1893
+ }
1894
+ interface RegistrationStatusDetails {
1895
+ status: RegistrationStatus;
1896
+ purchases: {
1897
+ paid: number;
1898
+ unpaid: number;
1899
+ };
1900
+ }
1901
+ declare const GetSelfEventRegistrationStatus: ({ eventId, clientApiParams, }: GetSelfEventRegistrationStatusProps) => Promise<ConnectedXMResponse<RegistrationStatusDetails>>;
1902
+ declare const useGetSelfEventRegistrationStatus: (eventId: string, selfId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationStatus>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationStatusDetails>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1903
+
1836
1904
  declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
1837
1905
  interface GetSelfSubcriptionProps extends SingleQueryParams {
1838
1906
  subscriptionId: string;
@@ -1901,29 +1969,6 @@ interface GetSelfDelegatesProps extends InfiniteQueryParams {
1901
1969
  declare const GetSelfDelegates: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfDelegatesProps) => Promise<ConnectedXMResponse<Account[]>>;
1902
1970
  declare const useGetSelfDelegates: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfDelegates>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1903
1971
 
1904
- declare const SELF_EVENT_LISTING_QUERY_KEY: (eventId: string) => QueryKey;
1905
- declare const SET_SELF_EVENT_LISTING_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_LISTING_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListing>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1906
- interface GetSelfEventListingProps extends SingleQueryParams {
1907
- eventId: string;
1908
- }
1909
- declare const GetSelfEventListing: ({ eventId, clientApiParams, }: GetSelfEventListingProps) => Promise<ConnectedXMResponse<EventListing>>;
1910
- declare const useGetSelfEventListing: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListing>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1911
-
1912
- declare const SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY: (eventId: string, status?: keyof typeof RegistrationStatus) => unknown[];
1913
- interface GetSelfEventListingRegistrationsProps extends InfiniteQueryParams {
1914
- eventId: string;
1915
- status?: keyof typeof RegistrationStatus;
1916
- }
1917
- declare const GetSelfEventListingRegistrations: ({ eventId, pageParam, pageSize, orderBy, search, status, clientApiParams, }: GetSelfEventListingRegistrationsProps) => Promise<ConnectedXMResponse<Registration[]>>;
1918
- declare const useGetSelfEventListingsRegistrations: (eventId: string, status?: keyof typeof RegistrationStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingRegistrations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Registration[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1919
-
1920
- declare const SELF_EVENT_LISTINGS_QUERY_KEY: (past: boolean) => QueryKey;
1921
- interface GetSelfEventListingsProps extends InfiniteQueryParams {
1922
- past?: boolean;
1923
- }
1924
- declare const GetSelfEventListings: ({ pageParam, pageSize, orderBy, search, past, queryClient, clientApiParams, locale, }: GetSelfEventListingsProps) => Promise<ConnectedXMResponse<EventListing[]>>;
1925
- declare const useGetSelfEventListings: (past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListings>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventListing[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1926
-
1927
1972
  declare const SELF_EVENTS_QUERY_KEY: (past: boolean) => QueryKey;
1928
1973
  interface GetSelfEventsProps extends InfiniteQueryParams {
1929
1974
  past?: boolean;
@@ -2076,6 +2121,29 @@ interface GetInvoiceProps extends SingleQueryParams {
2076
2121
  declare const GetInvoice: ({ invoiceId, clientApiParams, }: GetInvoiceProps) => Promise<ConnectedXMResponse<Invoice>>;
2077
2122
  declare const useGetInvoice: (invoiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Invoice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2078
2123
 
2124
+ declare const LISTING_QUERY_KEY: (eventId: string) => QueryKey;
2125
+ declare const SET_LISTING_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LISTING_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListing>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2126
+ interface GetSelfEventListingProps extends SingleQueryParams {
2127
+ eventId: string;
2128
+ }
2129
+ declare const GetSelfEventListing: ({ eventId, clientApiParams, }: GetSelfEventListingProps) => Promise<ConnectedXMResponse<EventListing>>;
2130
+ declare const useGetSelfEventListing: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListing>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2131
+
2132
+ declare const LISTING_REGISTRATIONS_QUERY_KEY: (eventId: string, status?: keyof typeof RegistrationStatus) => unknown[];
2133
+ interface GetSelfEventListingRegistrationsProps extends InfiniteQueryParams {
2134
+ eventId: string;
2135
+ status?: keyof typeof RegistrationStatus;
2136
+ }
2137
+ declare const GetSelfEventListingRegistrations: ({ eventId, pageParam, pageSize, orderBy, search, status, clientApiParams, }: GetSelfEventListingRegistrationsProps) => Promise<ConnectedXMResponse<Registration[]>>;
2138
+ declare const useGetSelfEventListingsRegistrations: (eventId: string, status?: keyof typeof RegistrationStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingRegistrations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Registration[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2139
+
2140
+ declare const LISTINGS_QUERY_KEY: (past: boolean) => QueryKey;
2141
+ interface GetSelfEventListingsProps extends InfiniteQueryParams {
2142
+ past?: boolean;
2143
+ }
2144
+ declare const GetSelfEventListings: ({ pageParam, pageSize, orderBy, search, past, queryClient, clientApiParams, locale, }: GetSelfEventListingsProps) => Promise<ConnectedXMResponse<EventListing[]>>;
2145
+ declare const useGetSelfEventListings: (past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListings>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventListing[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2146
+
2079
2147
  interface MutationParams {
2080
2148
  clientApiParams: ClientApiParams;
2081
2149
  queryClient?: QueryClient;
@@ -2120,39 +2188,6 @@ interface UnlikeActivityParams extends MutationParams {
2120
2188
  declare const UnlikeActivity: ({ activityId, clientApiParams, queryClient, }: UnlikeActivityParams) => Promise<ConnectedXMResponse<Activity>>;
2121
2189
  declare const useUnlikeActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnlikeActivity>>, Omit<UnlikeActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<UnlikeActivityParams, "queryClient" | "clientApiParams">, unknown>;
2122
2190
 
2123
- interface AddCommunityEventParams extends MutationParams {
2124
- communityId: string;
2125
- eventId: string;
2126
- }
2127
- declare const AddCommunityEvent: ({ communityId, eventId, clientApiParams, queryClient, }: AddCommunityEventParams) => Promise<ConnectedXMResponse<Event>>;
2128
- declare const useAddCommunityEvent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddCommunityEvent>>, Omit<AddCommunityEventParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Event>, axios.AxiosError<ConnectedXMResponse<Event>, any>, Omit<AddCommunityEventParams, "queryClient" | "clientApiParams">, unknown>;
2129
-
2130
- interface CreateCommunityAnnouncementParams extends MutationParams {
2131
- communityId: string;
2132
- title: string;
2133
- html: string;
2134
- email: boolean;
2135
- push: boolean;
2136
- }
2137
- declare const CreateCommunityAnnouncement: ({ communityId, title, html, email, push, clientApiParams, queryClient, }: CreateCommunityAnnouncementParams) => Promise<ConnectedXMResponse<Announcement>>;
2138
- declare const useCreateCommunityAnnouncement: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateCommunityAnnouncement>>, Omit<CreateCommunityAnnouncementParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<Announcement>, any>, Omit<CreateCommunityAnnouncementParams, "queryClient" | "clientApiParams">, unknown>;
2139
-
2140
- interface RemoveCommunityEventParams extends MutationParams {
2141
- communityId: string;
2142
- eventId: string;
2143
- }
2144
- declare const RemoveCommunityEvent: ({ communityId, eventId, clientApiParams, queryClient, }: RemoveCommunityEventParams) => Promise<ConnectedXMResponse<null>>;
2145
- declare const useRemoveCommunityEvent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveCommunityEvent>>, Omit<RemoveCommunityEventParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveCommunityEventParams, "queryClient" | "clientApiParams">, unknown>;
2146
-
2147
- interface UpdateCommunityParams extends MutationParams {
2148
- communityId: string;
2149
- description?: string;
2150
- externalUrl?: string;
2151
- base64?: string;
2152
- }
2153
- declare const UpdateCommunity: ({ communityId, description, externalUrl, base64, clientApiParams, queryClient, }: UpdateCommunityParams) => Promise<ConnectedXMResponse<Community>>;
2154
- declare const useUpdateCommunity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateCommunity>>, Omit<UpdateCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Community>, axios.AxiosError<ConnectedXMResponse<Community>, any>, Omit<UpdateCommunityParams, "queryClient" | "clientApiParams">, unknown>;
2155
-
2156
2191
  interface CompleteEventActivationParams extends MutationParams {
2157
2192
  eventId: string;
2158
2193
  activationId: string;
@@ -2396,34 +2431,6 @@ interface AddSelfDelegateParams extends MutationParams {
2396
2431
  declare const AddSelfDelegate: ({ email, clientApiParams, queryClient, }: AddSelfDelegateParams) => Promise<ConnectedXMResponse<Account>>;
2397
2432
  declare const useAddSelfDelegate: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfDelegate>>, Omit<AddSelfDelegateParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<AddSelfDelegateParams, "queryClient" | "clientApiParams">, unknown>;
2398
2433
 
2399
- interface AddSelfEventListingSessionParams extends MutationParams {
2400
- eventId: string;
2401
- session: Omit<Session, "id" | "slug" | "event" | "sortOrder" | "tracks" | "nonSession" | "createdAt" | "updatedAt" | "speakers" | "sponsors" | "longDescription" | "image" | "streamInput">;
2402
- }
2403
- declare const AddSelfEventListingSession: ({ eventId, session, clientApiParams, queryClient, }: AddSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
2404
- declare const useAddSelfEventListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSession>>, Omit<AddSelfEventListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddSelfEventListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
2405
-
2406
- interface EventListingSpeaker {
2407
- firstName: string | null;
2408
- lastName: string | null;
2409
- title: string | null;
2410
- company: string | null;
2411
- bio: string | null;
2412
- }
2413
- interface AddSelfEventListingSpeakerParams extends MutationParams {
2414
- eventId: string;
2415
- speaker: EventListingSpeaker;
2416
- }
2417
- declare const AddSelfEventListingSpeaker: ({ eventId, speaker, clientApiParams, queryClient, }: AddSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
2418
- declare const useAddSelfEventListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSpeaker>>, Omit<AddSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
2419
-
2420
- interface AddSelfEventListingSponsorParams extends MutationParams {
2421
- eventId: string;
2422
- sponsor: Account;
2423
- }
2424
- declare const AddSelfEventListingSponsor: ({ eventId, sponsor, clientApiParams, queryClient, }: AddSelfEventListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
2425
- declare const useAddSelfEventListingSponsor: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSponsor>>, Omit<AddSelfEventListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddSelfEventListingSponsorParams, "queryClient" | "clientApiParams">, unknown>;
2426
-
2427
2434
  interface AddSelfEventSessionParams extends MutationParams {
2428
2435
  eventId: string;
2429
2436
  sessionId: string;
@@ -2431,35 +2438,6 @@ interface AddSelfEventSessionParams extends MutationParams {
2431
2438
  declare const AddSelfEventSession: ({ eventId, sessionId, clientApiParams, queryClient, }: AddSelfEventSessionParams) => Promise<ConnectedXMResponse<Account>>;
2432
2439
  declare const useAddSelfEventSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventSession>>, Omit<AddSelfEventSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<AddSelfEventSessionParams, "queryClient" | "clientApiParams">, unknown>;
2433
2440
 
2434
- interface CreateEventListing {
2435
- name: string;
2436
- shortDescription: string;
2437
- eventStart: string;
2438
- eventEnd: string;
2439
- eventType: keyof typeof EventType;
2440
- venue?: string;
2441
- address1?: string;
2442
- address2?: string;
2443
- city?: string;
2444
- state?: string;
2445
- zip?: string;
2446
- country?: string;
2447
- externalUrl?: string;
2448
- meetingUrl?: string;
2449
- registration?: boolean;
2450
- registrationLimit?: string;
2451
- }
2452
- interface CreateSelfEventListingParams extends MutationParams {
2453
- event: CreateEventListing;
2454
- base64?: any;
2455
- communityId?: string;
2456
- sponsorIds?: string[];
2457
- speakers?: Speaker[];
2458
- sessions?: Session[];
2459
- }
2460
- declare const CreateSelfEventListing: ({ event, base64, communityId, sponsorIds, speakers, sessions, clientApiParams, queryClient, }: CreateSelfEventListingParams) => Promise<ConnectedXMResponse<EventListing>>;
2461
- declare const useCreateSelfEventListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfEventListing>>, Omit<CreateSelfEventListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<CreateSelfEventListingParams, "queryClient" | "clientApiParams">, unknown>;
2462
-
2463
2441
  interface DeleteSelfParams extends MutationParams {
2464
2442
  }
2465
2443
  declare const DeleteSelf: ({ clientApiParams, queryClient, }: DeleteSelfParams) => Promise<any>;
@@ -2483,27 +2461,6 @@ interface RemoveSelfDelegateParams extends MutationParams {
2483
2461
  declare const RemoveSelfDelegate: ({ accountId, clientApiParams, queryClient, }: RemoveSelfDelegateParams) => Promise<ConnectedXMResponse<Account>>;
2484
2462
  declare const useRemoveSelfDelegate: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfDelegate>>, Omit<RemoveSelfDelegateParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<RemoveSelfDelegateParams, "queryClient" | "clientApiParams">, unknown>;
2485
2463
 
2486
- interface RemoveSelfEventListingSessionParams extends MutationParams {
2487
- eventId: string;
2488
- sessionId: string;
2489
- }
2490
- declare const RemoveSelfEventListingSession: ({ eventId, sessionId, clientApiParams, queryClient, }: RemoveSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
2491
- declare const useRemoveSelfEventListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSession>>, Omit<RemoveSelfEventListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveSelfEventListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
2492
-
2493
- interface RemoveSelfEventListingSpeakerParams extends MutationParams {
2494
- eventId: string;
2495
- speakerId: string;
2496
- }
2497
- declare const RemoveSelfEventListingSpeaker: ({ eventId, speakerId, clientApiParams, queryClient, }: RemoveSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
2498
- declare const useRemoveSelfEventListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSpeaker>>, Omit<RemoveSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
2499
-
2500
- interface RemoveSelfEventListingSponsorParams extends MutationParams {
2501
- eventId: string;
2502
- sponsorId: string;
2503
- }
2504
- declare const RemoveSelfEventListingSponsor: ({ eventId, sponsorId, clientApiParams, queryClient, }: RemoveSelfEventListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
2505
- declare const useRemoveSelfEventListingSponsor: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSponsor>>, Omit<RemoveSelfEventListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveSelfEventListingSponsorParams, "queryClient" | "clientApiParams">, unknown>;
2506
-
2507
2464
  interface RemoveSelfEventSessionParams extends MutationParams {
2508
2465
  eventId: string;
2509
2466
  sessionId: string;
@@ -2511,13 +2468,6 @@ interface RemoveSelfEventSessionParams extends MutationParams {
2511
2468
  declare const RemoveSelfEventSession: ({ eventId, sessionId, clientApiParams, queryClient, }: RemoveSelfEventSessionParams) => Promise<ConnectedXMResponse<Account>>;
2512
2469
  declare const useRemoveSelfEventSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventSession>>, Omit<RemoveSelfEventSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<RemoveSelfEventSessionParams, "queryClient" | "clientApiParams">, unknown>;
2513
2470
 
2514
- interface SelfCheckinRegistrationParams extends MutationParams {
2515
- eventId: string;
2516
- registrationId: string;
2517
- }
2518
- declare const SelfCheckinRegistration: ({ eventId, registrationId, clientApiParams, queryClient, }: SelfCheckinRegistrationParams) => Promise<any>;
2519
- declare const useSelfCheckinRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfCheckinRegistration>>, Omit<SelfCheckinRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<any, any>, Omit<SelfCheckinRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
2520
-
2521
2471
  interface CreateActivity {
2522
2472
  message: string;
2523
2473
  contentId?: string;
@@ -2539,18 +2489,6 @@ interface DeleteActivityParams extends MutationParams {
2539
2489
  declare const DeleteActivity: ({ activityId, clientApiParams, queryClient, }: DeleteActivityParams) => Promise<ConnectedXMResponse<null>>;
2540
2490
  declare const useDeleteActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteActivity>>, Omit<DeleteActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteActivityParams, "queryClient" | "clientApiParams">, unknown>;
2541
2491
 
2542
- interface SelfJoinCommunityParams extends MutationParams {
2543
- communityId: string;
2544
- }
2545
- declare const SelfJoinCommunity: ({ communityId, clientApiParams, queryClient, }: SelfJoinCommunityParams) => Promise<ConnectedXMResponse<CommunityMembership>>;
2546
- declare const useSelfJoinCommunity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfJoinCommunity>>, Omit<SelfJoinCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<CommunityMembership>, axios.AxiosError<ConnectedXMResponse<CommunityMembership>, any>, Omit<SelfJoinCommunityParams, "queryClient" | "clientApiParams">, unknown>;
2547
-
2548
- interface SelfLeaveCommunityParams extends MutationParams {
2549
- communityId: string;
2550
- }
2551
- declare const SelfLeaveCommunity: ({ communityId, clientApiParams, queryClient, }: SelfLeaveCommunityParams) => Promise<ConnectedXMResponse<null>>;
2552
- declare const useSelfLeaveCommunity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfLeaveCommunity>>, Omit<SelfLeaveCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<SelfLeaveCommunityParams, "queryClient" | "clientApiParams">, unknown>;
2553
-
2554
2492
  interface SelfUpdateCommunityMembershipParams extends MutationParams {
2555
2493
  communityId: string;
2556
2494
  membership: Partial<CommunityMembership>;
@@ -2586,54 +2524,6 @@ interface UpdateSelfParams extends MutationParams {
2586
2524
  declare const UpdateSelf: ({ clientApiParams, queryClient, ...params }: UpdateSelfParams) => Promise<ConnectedXMResponse<Self>>;
2587
2525
  declare const useUpdateSelf: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelf>>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">, unknown>;
2588
2526
 
2589
- interface UpdateListing {
2590
- eventType: keyof typeof EventType;
2591
- name: string;
2592
- shortDescription: string;
2593
- longDescription: string | null;
2594
- eventStart: string;
2595
- eventEnd: string;
2596
- registration: boolean;
2597
- publicRegistrants: boolean;
2598
- newActivityCreatorEmailNotification: boolean;
2599
- newActivityCreatorPushNotification: boolean;
2600
- timezone: string | null;
2601
- meetingUrl: string | null;
2602
- venue: string | null;
2603
- address1: string | null;
2604
- address2: string | null;
2605
- city: string | null;
2606
- state: string | null;
2607
- zip: string | null;
2608
- country: string | null;
2609
- registrationLimit: number | null;
2610
- externalUrl: string | null;
2611
- }
2612
- interface UpdateSelfEventListingParams extends MutationParams {
2613
- eventId: string;
2614
- event: UpdateListing;
2615
- base64?: any;
2616
- }
2617
- declare const UpdateSelfEventListing: ({ eventId, event, base64, clientApiParams, queryClient, }: UpdateSelfEventListingParams) => Promise<ConnectedXMResponse<EventListing>>;
2618
- declare const useUpdateSelfEventListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListing>>, Omit<UpdateSelfEventListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateSelfEventListingParams, "queryClient" | "clientApiParams">, unknown>;
2619
-
2620
- interface UpdateSelfEventListingSessionParams extends MutationParams {
2621
- eventId: string;
2622
- session: any;
2623
- sessionId: string;
2624
- }
2625
- declare const UpdateSelfEventListingSession: ({ eventId, session, sessionId, clientApiParams, queryClient, }: UpdateSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
2626
- declare const useUpdateSelfEventListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListingSession>>, Omit<UpdateSelfEventListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateSelfEventListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
2627
-
2628
- interface UpdateSelfEventListingSpeakerParams extends MutationParams {
2629
- eventId: string;
2630
- speaker: any;
2631
- speakerId: string;
2632
- buffer?: string;
2633
- }
2634
- declare const UpdateSelfEventListingSpeaker: ({ eventId, speaker, speakerId, buffer, clientApiParams, queryClient, }: UpdateSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
2635
- declare const useUpdateSelfEventListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListingSpeaker>>, Omit<UpdateSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
2636
-
2637
2527
  interface UpdateSelfImageParams extends MutationParams {
2638
2528
  base64: string;
2639
2529
  }
@@ -2695,4 +2585,285 @@ interface CreateTeamAccountParams extends MutationParams {
2695
2585
  declare const CreateTeamAccount: ({ name, email, clientApiParams, }: CreateTeamAccountParams) => Promise<ConnectedXMResponse<Account>>;
2696
2586
  declare const useCreateTeamAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateTeamAccount>>, Omit<CreateTeamAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<CreateTeamAccountParams, "queryClient" | "clientApiParams">, unknown>;
2697
2587
 
2698
- export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_COMMUNITIES_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddCommunityEvent, type AddCommunityEventParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventListingSession, type AddSelfEventListingSessionParams, AddSelfEventListingSpeaker, type AddSelfEventListingSpeakerParams, AddSelfEventListingSponsor, type AddSelfEventListingSponsorParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseCommunity, type BaseCommunityMembership, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, COMMUNITIES_QUERY_KEY, COMMUNITY_ACTIVITIES_QUERY_KEY, COMMUNITY_ANNOUNCEMENTS_QUERY_KEY, COMMUNITY_EVENTS_QUERY_KEY, COMMUNITY_MEDIA_QUERY_KEY, COMMUNITY_MEMBERS_QUERY_KEY, COMMUNITY_MODERATORS_QUERY_KEY, COMMUNITY_QUERY_KEY, COMMUNITY_SPONSORS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, type CheckoutResponse, type ClientApiParams, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, CreateEventLead, type CreateEventLeadParams, type CreateEventListing, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfEventListing, type CreateSelfEventListingParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeleteActivity, type DeleteActivityParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventListing, type EventListingSpeaker, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountCommunities, type GetAccountCommunitiesProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetCommunities, type GetCommunitiesProps, GetCommunity, GetCommunityActivities, type GetCommunityActivitiesProps, GetCommunityAnnouncements, type GetCommunityAnnouncementsProps, GetCommunityEvents, type GetCommunityEventsProps, GetCommunityMedia, type GetCommunityMediaProps, GetCommunityMembers, type GetCommunityMembersProps, GetCommunityModerators, type GetCommunityModeratorsProps, type GetCommunityProps, GetCommunitySponsors, type GetCommunitySponsorsProps, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfCommunityMembership, type GetSelfCommunityMembershipProps, GetSelfCommunityMemberships, type GetSelfCommunityMembershipsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, type GetSelfEventListingProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSponsor, type GetSponsorProps, GetSponsors, type GetSponsorsProps, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type Invoice, type InvoiceLineItem, InvoiceStatus, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, type Lead, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification$1 as Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, type Purchase, type PushDevice, PushDeviceAppType, PushService, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, RejectTransfer, type RejectTransferParams, RemoveCommunityEvent, type RemoveCommunityEventParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventListingSession, type RemoveSelfEventListingSessionParams, RemoveSelfEventListingSpeaker, type RemoveSelfEventListingSpeakerParams, RemoveSelfEventListingSponsor, type RemoveSelfEventListingSponsorParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIPS_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIP_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_LISTINGS_QUERY_KEY, SELF_EVENT_LISTING_QUERY_KEY, SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_COMMUNITIES_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_COMMUNITIES_QUERY_DATA, SET_COMMUNITY_ACTIVITIES_QUERY_DATA, SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA, SET_COMMUNITY_EVENTS_QUERY_DATA, SET_COMMUNITY_MEDIA_QUERY_DATA, SET_COMMUNITY_MEMBERS_QUERY_DATA, SET_COMMUNITY_MODERATORS_QUERY_DATA, SET_COMMUNITY_QUERY_DATA, SET_COMMUNITY_SPONSORS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_COMMUNITY_MEMBERSHIP_QUERY_DATA, SET_SELF_EVENT_LISTING_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SPONSORS_QUERY_DATA, SET_SPONSOR_QUERY_DATA, SPONSORS_QUERY_KEY, SPONSOR_QUERY_KEY, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCheckinRegistration, type SelfCheckinRegistrationParams, SelfCreateActivity, type SelfCreateActivityParams, SelfJoinCommunity, type SelfJoinCommunityParams, SelfLeaveCommunity, type SelfLeaveCommunityParams, SelfUpdateCommunityMembership, type SelfUpdateCommunityMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateCommunity, type UpdateCommunityParams, type UpdateListing, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventListing, type UpdateSelfEventListingParams, UpdateSelfEventListingSession, type UpdateSelfEventListingSessionParams, UpdateSelfEventListingSpeaker, type UpdateSelfEventListingSpeakerParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeCommunity, isTypeCommunityMembership, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, setFirstPageData, useAcceptTransfer, useAddCommunityEvent, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventListingSession, useAddSelfEventListingSpeaker, useAddSelfEventListingSponsor, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateCommunityAnnouncement, useCreateEventLead, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfEventListing, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeleteActivity, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityMedia, useGetCommunityMembers, useGetCommunityModerators, useGetCommunitySponsors, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfCommunityMembership, useGetSelfCommunityMemberships, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useLeaveSelfChatChannel, useLikeActivity, useRegisterCancelledEventRegistration, useRejectTransfer, useRemoveCommunityEvent, useRemoveSelfDelegate, useRemoveSelfEventListingSession, useRemoveSelfEventListingSpeaker, useRemoveSelfEventListingSponsor, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCheckinRegistration, useSelfCreateActivity, useSelfJoinCommunity, useSelfLeaveCommunity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventListing, useUpdateSelfEventListingSession, useUpdateSelfEventListingSpeaker, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
2588
+ interface AcceptCommunityInviteParitation extends MutationParams {
2589
+ communityId: string;
2590
+ requestId: string;
2591
+ }
2592
+ declare const AcceptCommunityInvitation: ({ communityId, requestId, clientApiParams, queryClient, }: AcceptCommunityInviteParitation) => Promise<ConnectedXMResponse<Community>>;
2593
+ declare const useAcceptCommunityInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptCommunityInvitation>>, Omit<AcceptCommunityInviteParitation, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Community>, axios.AxiosError<ConnectedXMResponse<Community>, any>, Omit<AcceptCommunityInviteParitation, "queryClient" | "clientApiParams">, unknown>;
2594
+
2595
+ interface AcceptCommunityRequestParams extends MutationParams {
2596
+ communityId: string;
2597
+ requestId: string;
2598
+ }
2599
+ declare const AcceptCommunityRequest: ({ communityId, requestId, clientApiParams, queryClient, }: AcceptCommunityRequestParams) => Promise<ConnectedXMResponse<Community>>;
2600
+ declare const useAcceptCommunityRequest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptCommunityRequest>>, Omit<AcceptCommunityRequestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Community>, axios.AxiosError<ConnectedXMResponse<Community>, any>, Omit<AcceptCommunityRequestParams, "queryClient" | "clientApiParams">, unknown>;
2601
+
2602
+ interface CreateCommunityParams extends MutationParams {
2603
+ community: CreateCommunity;
2604
+ imageDataUri?: string;
2605
+ }
2606
+ interface CreateCommunity {
2607
+ name: string;
2608
+ description: string;
2609
+ access: keyof typeof CommunityAccess;
2610
+ externalUrl?: string;
2611
+ }
2612
+ declare const CreateCommunity: ({ community, imageDataUri, clientApiParams, queryClient, }: CreateCommunityParams) => Promise<ConnectedXMResponse<Community>>;
2613
+ declare const useCreateCommunity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateCommunity>>, Omit<CreateCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Community>, axios.AxiosError<ConnectedXMResponse<Community>, any>, Omit<CreateCommunityParams, "queryClient" | "clientApiParams">, unknown>;
2614
+
2615
+ interface CreateCommunityInvitationsParams extends MutationParams {
2616
+ communityId: string;
2617
+ accountIds: string[];
2618
+ }
2619
+ declare const CreateCommunityInvitations: ({ communityId, accountIds, clientApiParams, queryClient, }: CreateCommunityInvitationsParams) => Promise<ConnectedXMResponse<null>>;
2620
+ declare const useCreateCommunityInvitations: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateCommunityInvitations>>, Omit<CreateCommunityInvitationsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<CreateCommunityInvitationsParams, "queryClient" | "clientApiParams">, unknown>;
2621
+
2622
+ interface CreateCommunityRequestParams extends MutationParams {
2623
+ communityId: string;
2624
+ }
2625
+ declare const CreateCommunityRequest: ({ communityId, clientApiParams, }: CreateCommunityRequestParams) => Promise<ConnectedXMResponse<null>>;
2626
+ declare const useCreateCommunityRequest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateCommunityRequest>>, Omit<CreateCommunityRequestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<CreateCommunityRequestParams, "queryClient" | "clientApiParams">, unknown>;
2627
+
2628
+ interface DeactivateCommunityParams extends MutationParams {
2629
+ communityId: string;
2630
+ community: Community;
2631
+ imageDataUri?: string;
2632
+ }
2633
+ declare const DeactivateCommunity: ({ communityId, community, imageDataUri, clientApiParams, queryClient, }: DeactivateCommunityParams) => Promise<ConnectedXMResponse<Community>>;
2634
+ declare const useDeactivateCommunity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeactivateCommunity>>, Omit<DeactivateCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Community>, axios.AxiosError<ConnectedXMResponse<Community>, any>, Omit<DeactivateCommunityParams, "queryClient" | "clientApiParams">, unknown>;
2635
+
2636
+ interface DeleteCommunityInvitationParams extends MutationParams {
2637
+ communityId: string;
2638
+ requestId: string;
2639
+ }
2640
+ declare const DeleteCommunityInvitation: ({ communityId, requestId, clientApiParams, queryClient, }: DeleteCommunityInvitationParams) => Promise<ConnectedXMResponse<null>>;
2641
+ declare const useDeleteCommunityInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteCommunityInvitation>>, Omit<DeleteCommunityInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteCommunityInvitationParams, "queryClient" | "clientApiParams">, unknown>;
2642
+
2643
+ interface JoinCommunityParams extends MutationParams {
2644
+ communityId: string;
2645
+ }
2646
+ declare const JoinCommunity: ({ communityId, clientApiParams, queryClient, }: JoinCommunityParams) => Promise<ConnectedXMResponse<CommunityMembership>>;
2647
+ declare const useJoinCommunity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof JoinCommunity>>, Omit<JoinCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<CommunityMembership>, axios.AxiosError<ConnectedXMResponse<CommunityMembership>, any>, Omit<JoinCommunityParams, "queryClient" | "clientApiParams">, unknown>;
2648
+
2649
+ interface LeaveCommunityParams extends MutationParams {
2650
+ communityId: string;
2651
+ }
2652
+ declare const LeaveCommunity: ({ communityId, clientApiParams, queryClient, }: LeaveCommunityParams) => Promise<ConnectedXMResponse<null>>;
2653
+ declare const useLeaveCommunity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof LeaveCommunity>>, Omit<LeaveCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<LeaveCommunityParams, "queryClient" | "clientApiParams">, unknown>;
2654
+
2655
+ interface RejectCommunityRequestParams extends MutationParams {
2656
+ communityId: string;
2657
+ requestId: string;
2658
+ }
2659
+ declare const RejectCommunityRequest: ({ communityId, requestId, clientApiParams, queryClient, }: RejectCommunityRequestParams) => Promise<ConnectedXMResponse<CommunityRequest>>;
2660
+ declare const useRejectCommunityRequest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectCommunityRequest>>, Omit<RejectCommunityRequestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<CommunityRequest>, axios.AxiosError<ConnectedXMResponse<CommunityRequest>, any>, Omit<RejectCommunityRequestParams, "queryClient" | "clientApiParams">, unknown>;
2661
+
2662
+ interface RemoveCommunityMemberParams extends MutationParams {
2663
+ communityId: string;
2664
+ accountId: string;
2665
+ }
2666
+ declare const RemoveCommunityMember: ({ communityId, accountId, clientApiParams, queryClient, }: RemoveCommunityMemberParams) => Promise<ConnectedXMResponse<null>>;
2667
+ declare const useRemoveCommunityMember: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveCommunityMember>>, Omit<RemoveCommunityMemberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveCommunityMemberParams, "queryClient" | "clientApiParams">, unknown>;
2668
+
2669
+ interface UpdateCommunityParams extends MutationParams {
2670
+ communityId: string;
2671
+ community: {
2672
+ name?: string;
2673
+ description?: string;
2674
+ externalUrl?: string;
2675
+ access?: "public" | "private";
2676
+ };
2677
+ imageDataUri?: string;
2678
+ }
2679
+ declare const UpdateCommunity: ({ communityId, community, imageDataUri, clientApiParams, queryClient, }: UpdateCommunityParams) => Promise<ConnectedXMResponse<Community>>;
2680
+ declare const useUpdateCommunity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateCommunity>>, Omit<UpdateCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Community>, axios.AxiosError<ConnectedXMResponse<Community>, any>, Omit<UpdateCommunityParams, "queryClient" | "clientApiParams">, unknown>;
2681
+
2682
+ interface DemoteCommunityModeratorParams extends MutationParams {
2683
+ communityId: string;
2684
+ accountId: string;
2685
+ }
2686
+ declare const DemoteCommunityModerator: ({ communityId, accountId, clientApiParams, queryClient, }: DemoteCommunityModeratorParams) => Promise<ConnectedXMResponse<CommunityMembership>>;
2687
+ declare const useDemoteCommunityModerator: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DemoteCommunityModerator>>, Omit<DemoteCommunityModeratorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<CommunityMembership>, axios.AxiosError<ConnectedXMResponse<CommunityMembership>, any>, Omit<DemoteCommunityModeratorParams, "queryClient" | "clientApiParams">, unknown>;
2688
+
2689
+ interface PromoteCommunityMemberParams extends MutationParams {
2690
+ communityId: string;
2691
+ accountId: string;
2692
+ }
2693
+ declare const PromoteCommunityMember: ({ communityId, accountId, clientApiParams, queryClient, }: PromoteCommunityMemberParams) => Promise<ConnectedXMResponse<CommunityMembership>>;
2694
+ declare const usePromoteCommunityMember: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof PromoteCommunityMember>>, Omit<PromoteCommunityMemberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<CommunityMembership>, axios.AxiosError<ConnectedXMResponse<CommunityMembership>, any>, Omit<PromoteCommunityMemberParams, "queryClient" | "clientApiParams">, unknown>;
2695
+
2696
+ interface CreateCommunityAnnouncementParams extends MutationParams {
2697
+ communityId: string;
2698
+ title: string;
2699
+ html: string;
2700
+ email: boolean;
2701
+ push: boolean;
2702
+ }
2703
+ declare const CreateCommunityAnnouncement: ({ communityId, title, html, email, push, clientApiParams, queryClient, }: CreateCommunityAnnouncementParams) => Promise<ConnectedXMResponse<Announcement>>;
2704
+ declare const useCreateCommunityAnnouncement: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateCommunityAnnouncement>>, Omit<CreateCommunityAnnouncementParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<Announcement>, any>, Omit<CreateCommunityAnnouncementParams, "queryClient" | "clientApiParams">, unknown>;
2705
+
2706
+ interface RejectCommunityInvitationParams extends MutationParams {
2707
+ communityId: string;
2708
+ requestId: string;
2709
+ }
2710
+ declare const RejectCommunityInvitation: ({ communityId, requestId, clientApiParams, queryClient, }: RejectCommunityInvitationParams) => Promise<ConnectedXMResponse<CommunityRequest>>;
2711
+ declare const useRejectCommunityInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectCommunityInvitation>>, Omit<RejectCommunityInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<CommunityRequest>, axios.AxiosError<ConnectedXMResponse<CommunityRequest>, any>, Omit<RejectCommunityInvitationParams, "queryClient" | "clientApiParams">, unknown>;
2712
+
2713
+ interface CreateListingSessionParams extends MutationParams {
2714
+ eventId: string;
2715
+ session: {
2716
+ name: string;
2717
+ description: string;
2718
+ location: string | null;
2719
+ startTime: Date;
2720
+ endTime: Date;
2721
+ };
2722
+ imageDataUri?: string;
2723
+ }
2724
+ declare const CreateListingSession: ({ eventId, session, imageDataUri, clientApiParams, queryClient, }: CreateListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
2725
+ declare const useCreateListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListingSession>>, Omit<CreateListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<CreateListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
2726
+
2727
+ interface CreateListingSpeakerParams extends MutationParams {
2728
+ eventId: string;
2729
+ speaker: {
2730
+ firstName: string | null;
2731
+ lastName: string | null;
2732
+ title: string | null;
2733
+ company: string | null;
2734
+ bio: string | null;
2735
+ };
2736
+ imageDataUri?: string;
2737
+ }
2738
+ declare const CreateListingSpeaker: ({ eventId, speaker, imageDataUri, clientApiParams, queryClient, }: CreateListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
2739
+ declare const useCreateListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListingSpeaker>>, Omit<CreateListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<CreateListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
2740
+
2741
+ interface AddListingSponsorParams extends MutationParams {
2742
+ eventId: string;
2743
+ sponsor: Account;
2744
+ }
2745
+ declare const AddListingSponsor: ({ eventId, sponsor, clientApiParams, queryClient, }: AddListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
2746
+ declare const useAddListingSponsor: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddListingSponsor>>, Omit<AddListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddListingSponsorParams, "queryClient" | "clientApiParams">, unknown>;
2747
+
2748
+ interface CreateListingParams extends MutationParams {
2749
+ event: CreateListing;
2750
+ imageDataUri?: any;
2751
+ communityId?: string;
2752
+ sponsorIds?: string[];
2753
+ speakers?: Speaker[];
2754
+ sessions?: Session[];
2755
+ }
2756
+ interface CreateListing {
2757
+ eventType: keyof typeof EventType;
2758
+ visible: boolean;
2759
+ name: string;
2760
+ shortDescription: string;
2761
+ eventStart: string;
2762
+ eventEnd: string;
2763
+ timezone: string;
2764
+ venue?: string;
2765
+ address1?: string;
2766
+ address2?: string;
2767
+ city?: string;
2768
+ state?: string;
2769
+ zip?: string;
2770
+ country?: string;
2771
+ externalUrl?: string;
2772
+ meetingUrl?: string;
2773
+ registration?: boolean;
2774
+ registrationLimit?: string;
2775
+ }
2776
+ declare const CreateListing: ({ event, imageDataUri, communityId, sponsorIds, speakers, sessions, clientApiParams, queryClient, }: CreateListingParams) => Promise<ConnectedXMResponse<EventListing>>;
2777
+ declare const useCreateListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListing>>, Omit<CreateListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<CreateListingParams, "queryClient" | "clientApiParams">, unknown>;
2778
+
2779
+ interface DeleteListingSessionParams extends MutationParams {
2780
+ eventId: string;
2781
+ sessionId: string;
2782
+ }
2783
+ declare const DeleteListingSession: ({ eventId, sessionId, clientApiParams, queryClient, }: DeleteListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
2784
+ declare const useDeleteListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteListingSession>>, Omit<DeleteListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<DeleteListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
2785
+
2786
+ interface DeleteListingSpeakerParams extends MutationParams {
2787
+ eventId: string;
2788
+ speakerId: string;
2789
+ }
2790
+ declare const DeleteListingSpeaker: ({ eventId, speakerId, clientApiParams, queryClient, }: DeleteListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
2791
+ declare const useDeleteListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteListingSpeaker>>, Omit<DeleteListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<DeleteListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
2792
+
2793
+ interface RemoveListingSponsorParams extends MutationParams {
2794
+ eventId: string;
2795
+ sponsorId: string;
2796
+ }
2797
+ declare const RemoveListingSponsor: ({ eventId, sponsorId, clientApiParams, queryClient, }: RemoveListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
2798
+ declare const useRemoveListingSponsor: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveListingSponsor>>, Omit<RemoveListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveListingSponsorParams, "queryClient" | "clientApiParams">, unknown>;
2799
+
2800
+ interface CheckinListingRegistrationParams extends MutationParams {
2801
+ eventId: string;
2802
+ registrationId: string;
2803
+ }
2804
+ declare const CheckinListingRegistration: ({ eventId, registrationId, clientApiParams, queryClient, }: CheckinListingRegistrationParams) => Promise<any>;
2805
+ declare const useCheckinListingRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CheckinListingRegistration>>, Omit<CheckinListingRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<any, any>, Omit<CheckinListingRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
2806
+
2807
+ interface UpdateListingParams extends MutationParams {
2808
+ eventId: string;
2809
+ event: UpdateListing;
2810
+ base64?: any;
2811
+ }
2812
+ interface UpdateListing {
2813
+ eventType?: keyof typeof EventType;
2814
+ visible?: boolean;
2815
+ name?: string;
2816
+ shortDescription?: string;
2817
+ longDescription?: string | null;
2818
+ eventStart?: string;
2819
+ eventEnd?: string;
2820
+ timezone?: string | null;
2821
+ meetingUrl?: string | null;
2822
+ venue?: string | null;
2823
+ address1?: string | null;
2824
+ address2?: string | null;
2825
+ city?: string | null;
2826
+ state?: string | null;
2827
+ zip?: string | null;
2828
+ country?: string | null;
2829
+ externalUrl?: string | null;
2830
+ registration?: boolean;
2831
+ publicRegistrants?: boolean;
2832
+ registrationLimit?: number | null;
2833
+ newActivityCreatorEmailNotification: boolean;
2834
+ newActivityCreatorPushNotification: boolean;
2835
+ }
2836
+ declare const UpdateListing: ({ eventId, event, base64, clientApiParams, queryClient, }: UpdateListingParams) => Promise<ConnectedXMResponse<EventListing>>;
2837
+ declare const useUpdateListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListing>>, Omit<UpdateListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateListingParams, "queryClient" | "clientApiParams">, unknown>;
2838
+
2839
+ interface UpdateListingSessionParams extends MutationParams {
2840
+ eventId: string;
2841
+ sessionId: string;
2842
+ session: {
2843
+ name: string;
2844
+ description: string;
2845
+ location: string | null;
2846
+ startTime: Date;
2847
+ endTime: Date;
2848
+ };
2849
+ imageDataUri?: string;
2850
+ }
2851
+ declare const UpdateListingSession: ({ eventId, session, sessionId, imageDataUri, clientApiParams, queryClient, }: UpdateListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
2852
+ declare const useUpdateListingSession: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingSession>>, Omit<UpdateListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
2853
+
2854
+ interface UpdateListingSpeakerParams extends MutationParams {
2855
+ eventId: string;
2856
+ speakerId: string;
2857
+ speaker: {
2858
+ firstName: string | null;
2859
+ lastName: string | null;
2860
+ title: string | null;
2861
+ company: string | null;
2862
+ bio: string | null;
2863
+ };
2864
+ imageDataUri?: string;
2865
+ }
2866
+ declare const UpdateListingSpeaker: ({ eventId, speaker, speakerId, imageDataUri, clientApiParams, queryClient, }: UpdateListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
2867
+ declare const useUpdateListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingSpeaker>>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
2868
+
2869
+ export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_COMMUNITIES_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, AcceptCommunityInvitation, type AcceptCommunityInviteParitation, AcceptCommunityRequest, type AcceptCommunityRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseCommunity, type BaseCommunityMembership, type BaseCommunityRequest, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, COMMUNITIES_QUERY_KEY, COMMUNITY_ACTIVITIES_QUERY_KEY, COMMUNITY_ANNOUNCEMENTS_QUERY_KEY, COMMUNITY_EVENTS_QUERY_KEY, COMMUNITY_INVITABLE_ACCOUNTS_QUERY_KEY, COMMUNITY_MEDIA_QUERY_KEY, COMMUNITY_MEMBERS_QUERY_KEY, COMMUNITY_QUERY_KEY, COMMUNITY_REQUESTS_QUERY_KEY, COMMUNITY_REQUEST_QUERY_KEY, COMMUNITY_SPONSORS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistration, type CheckinListingRegistrationParams, type CheckoutResponse, type ClientApiParams, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, type CommunityRequest, CommunityRequestStatus, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, CreateCommunityInvitations, type CreateCommunityInvitationsParams, type CreateCommunityParams, CreateCommunityRequest, type CreateCommunityRequestParams, CreateEventLead, type CreateEventLeadParams, CreateListing, type CreateListingParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateCommunity, type DeactivateCommunityParams, DeleteActivity, type DeleteActivityParams, DeleteCommunityInvitation, type DeleteCommunityInvitationParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteCommunityModerator, type DemoteCommunityModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountCommunities, type GetAccountCommunitiesProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetCommunities, type GetCommunitiesProps, GetCommunity, GetCommunityActivities, type GetCommunityActivitiesProps, GetCommunityAnnouncements, type GetCommunityAnnouncementsProps, GetCommunityEvents, type GetCommunityEventsProps, GetCommunityInvitableAccounts, type GetCommunityInvitableAccountsProps, GetCommunityMedia, type GetCommunityMediaProps, GetCommunityMembers, type GetCommunityMembersProps, type GetCommunityProps, GetCommunityRequest, type GetCommunityRequestProps, GetCommunityRequests, type GetCommunityRequestsProps, GetCommunitySponsors, type GetCommunitySponsorsProps, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfCommunityMembership, type GetSelfCommunityMembershipProps, GetSelfCommunityMemberships, type GetSelfCommunityMembershipsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, type GetSelfEventListingProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSponsor, type GetSponsorProps, GetSponsors, type GetSponsorsProps, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinCommunity, type JoinCommunityParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, type Lead, LeaveCommunity, type LeaveCommunityParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification$1 as Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, PromoteCommunityMember, type PromoteCommunityMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, RejectCommunityInvitation, type RejectCommunityInvitationParams, RejectCommunityRequest, type RejectCommunityRequestParams, RejectTransfer, type RejectTransferParams, RemoveCommunityMember, type RemoveCommunityMemberParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIPS_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIP_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_COMMUNITIES_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_COMMUNITIES_QUERY_DATA, SET_COMMUNITY_ACTIVITIES_QUERY_DATA, SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA, SET_COMMUNITY_EVENTS_QUERY_DATA, SET_COMMUNITY_MEDIA_QUERY_DATA, SET_COMMUNITY_MEMBERS_QUERY_DATA, SET_COMMUNITY_QUERY_DATA, SET_COMMUNITY_REQUESTS_QUERY_DATA, SET_COMMUNITY_REQUEST_QUERY_DATA, SET_COMMUNITY_SPONSORS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_COMMUNITY_MEMBERSHIP_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_STATUS_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SPONSORS_QUERY_DATA, SET_SPONSOR_QUERY_DATA, SPONSORS_QUERY_KEY, SPONSOR_QUERY_KEY, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, SelfUpdateCommunityMembership, type SelfUpdateCommunityMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateCommunity, type UpdateCommunityParams, UpdateListing, type UpdateListingParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeCommunity, isTypeCommunityMembership, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, setFirstPageData, useAcceptCommunityInvitation, useAcceptCommunityRequest, useAcceptTransfer, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCheckinListingRegistration, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateCommunity, useCreateCommunityAnnouncement, useCreateCommunityInvitations, useCreateCommunityRequest, useCreateEventLead, useCreateListing, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateCommunity, useDeleteActivity, useDeleteCommunityInvitation, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteCommunityModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityInvitableAccounts, useGetCommunityMedia, useGetCommunityMembers, useGetCommunityRequest, useGetCommunityRequests, useGetCommunitySponsors, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfCommunityMembership, useGetSelfCommunityMemberships, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useJoinCommunity, useLeaveCommunity, useLeaveSelfChatChannel, useLikeActivity, usePromoteCommunityMember, useRegisterCancelledEventRegistration, useRejectCommunityInvitation, useRejectCommunityRequest, useRejectTransfer, useRemoveCommunityMember, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateListing, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };