@connectedxm/client 0.5.24 → 0.5.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +133 -69
- package/dist/index.d.ts +133 -69
- package/dist/index.js +288 -37
- package/dist/index.mjs +271 -37
- package/package.json +7 -4
package/dist/index.d.mts
CHANGED
|
@@ -317,14 +317,17 @@ type EventWithSponsors = Event & {
|
|
|
317
317
|
};
|
|
318
318
|
declare const isTypeEvent: (event: BaseEvent | Event) => event is Event;
|
|
319
319
|
interface RegistrationEventDetails extends BaseEvent {
|
|
320
|
+
externalUrl: string | null;
|
|
320
321
|
registration: boolean;
|
|
321
322
|
registrationCount: number;
|
|
322
323
|
registrationLimit: number;
|
|
323
324
|
registrationStart: string;
|
|
324
325
|
registrationEnd: string;
|
|
326
|
+
tickets: {
|
|
327
|
+
enableCoupons: boolean;
|
|
328
|
+
}[];
|
|
325
329
|
_count: {
|
|
326
330
|
sections: number;
|
|
327
|
-
tickets: number;
|
|
328
331
|
coupons: number;
|
|
329
332
|
addOns: number;
|
|
330
333
|
reservationSections: number;
|
|
@@ -463,12 +466,27 @@ interface BaseTicket {
|
|
|
463
466
|
minReservationEnd: string | null;
|
|
464
467
|
reservationEnd: string | null;
|
|
465
468
|
maxReservationEnd: string | null;
|
|
469
|
+
priceSchedules: BaseTicketPriceSchedule[];
|
|
470
|
+
enableCoupons: boolean;
|
|
471
|
+
minCouponQuantity: number | null;
|
|
472
|
+
maxCouponQuantity: number | null;
|
|
466
473
|
}
|
|
467
474
|
interface Ticket extends BaseTicket {
|
|
468
475
|
visibility: TicketVisibility;
|
|
469
476
|
active: boolean;
|
|
470
477
|
event: BaseEvent;
|
|
471
478
|
}
|
|
479
|
+
interface BaseTicketPriceSchedule {
|
|
480
|
+
id: string;
|
|
481
|
+
ticketId: string;
|
|
482
|
+
price: number;
|
|
483
|
+
startDate: string;
|
|
484
|
+
endDate: string;
|
|
485
|
+
createdAt: string;
|
|
486
|
+
updatedAt: string;
|
|
487
|
+
}
|
|
488
|
+
interface TicketPriceSchedule extends BaseTicketPriceSchedule {
|
|
489
|
+
}
|
|
472
490
|
declare const isTypeTicket: (ticket: BaseTicket | Ticket) => ticket is Ticket;
|
|
473
491
|
interface BasePurchase {
|
|
474
492
|
id: string;
|
|
@@ -581,7 +599,6 @@ interface Coupon extends BaseCoupon {
|
|
|
581
599
|
declare const isTypeCoupon: (coupon: BaseCoupon | Coupon) => coupon is Coupon;
|
|
582
600
|
interface ManagedCoupon extends Coupon {
|
|
583
601
|
active: boolean;
|
|
584
|
-
type: CouponType;
|
|
585
602
|
startDate: string | null;
|
|
586
603
|
endDate: string | null;
|
|
587
604
|
quantityMin: number;
|
|
@@ -589,11 +606,10 @@ interface ManagedCoupon extends Coupon {
|
|
|
589
606
|
amountMin: number;
|
|
590
607
|
amountMax: number | null;
|
|
591
608
|
useLimit: number | null;
|
|
592
|
-
|
|
593
|
-
|
|
609
|
+
emailDomains: string | null;
|
|
610
|
+
createdAt: string;
|
|
594
611
|
_count: {
|
|
595
|
-
|
|
596
|
-
uses: number;
|
|
612
|
+
registrations: number;
|
|
597
613
|
};
|
|
598
614
|
}
|
|
599
615
|
declare const isManagedCoupon: (coupon: BaseCoupon | Coupon | ManagedCoupon) => coupon is ManagedCoupon;
|
|
@@ -964,6 +980,7 @@ interface Registration extends BaseRegistration {
|
|
|
964
980
|
coupon: BaseCoupon | null;
|
|
965
981
|
purchases: BasePurchase[];
|
|
966
982
|
payments: Payment[];
|
|
983
|
+
coupons: ManagedCoupon[];
|
|
967
984
|
createdAt: string;
|
|
968
985
|
}
|
|
969
986
|
interface ListingRegistration extends BaseRegistration {
|
|
@@ -1623,7 +1640,7 @@ interface ItemWithId {
|
|
|
1623
1640
|
name?: string | null;
|
|
1624
1641
|
code?: string;
|
|
1625
1642
|
}
|
|
1626
|
-
declare const CacheIndividualQueries: <TData extends ItemWithId>(page: ConnectedXMResponse<TData[]>, queryClient: QueryClient, queryKeyFn: (id: string) => QueryKey, locale?: string, itemMap?: (
|
|
1643
|
+
declare const CacheIndividualQueries: <TData extends ItemWithId>(page: ConnectedXMResponse<TData[]>, queryClient: QueryClient, queryKeyFn: (id: string) => QueryKey, locale?: string, itemMap?: (item: TData) => TData) => void;
|
|
1627
1644
|
|
|
1628
1645
|
declare const isUUID: (id: string) => boolean;
|
|
1629
1646
|
|
|
@@ -1670,7 +1687,7 @@ declare const setFirstPageData: <TData>(response: ConnectedXMResponse<TData>) =>
|
|
|
1670
1687
|
declare const useConnectedInfiniteQuery: <TQueryData extends ConnectedXMResponse<any> = ConnectedXMResponse<unknown>>(queryKeys: QueryKey, queryFn: (params: InfiniteQueryParams) => Promise<TQueryData>, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<TQueryData>) => _tanstack_react_query.UseInfiniteQueryResult<InfiniteData<TQueryData, number>, AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1671
1688
|
|
|
1672
1689
|
declare const ACCOUNT_ACTIVITIES_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1673
|
-
declare const SET_ACCOUNT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountActivities>>, baseKeys?:
|
|
1690
|
+
declare const SET_ACCOUNT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountActivities>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1674
1691
|
interface GetAccountActivitiesProps extends InfiniteQueryParams {
|
|
1675
1692
|
accountId: string;
|
|
1676
1693
|
}
|
|
@@ -1686,7 +1703,7 @@ declare const GetAccountByShareCode: ({ shareCode, clientApiParams, }: GetAccoun
|
|
|
1686
1703
|
declare const useGetAccountByShareCode: (shareCode?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountByShareCode>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AccountShare>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1687
1704
|
|
|
1688
1705
|
declare const ACCOUNT_GROUPS_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1689
|
-
declare const SET_ACCOUNT_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_GROUPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountGroups>>, baseKeys?:
|
|
1706
|
+
declare const SET_ACCOUNT_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_GROUPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountGroups>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1690
1707
|
interface GetAccountGroupsProps extends InfiniteQueryParams {
|
|
1691
1708
|
accountId: string;
|
|
1692
1709
|
}
|
|
@@ -1694,7 +1711,7 @@ declare const GetAccountGroups: ({ pageParam, pageSize, orderBy, search, account
|
|
|
1694
1711
|
declare const useGetAccountGroups: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountGroups>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1695
1712
|
|
|
1696
1713
|
declare const ACCOUNT_FOLLOWERS_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1697
|
-
declare const SET_ACCOUNT_FOLLOWERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_FOLLOWERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountFollowers>>, baseKeys?:
|
|
1714
|
+
declare const SET_ACCOUNT_FOLLOWERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_FOLLOWERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountFollowers>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1698
1715
|
interface GetAccountFollowersProps extends InfiniteQueryParams {
|
|
1699
1716
|
accountId: string;
|
|
1700
1717
|
}
|
|
@@ -1702,7 +1719,7 @@ declare const GetAccountFollowers: ({ pageParam, pageSize, orderBy, search, acco
|
|
|
1702
1719
|
declare const useGetAccountFollowers: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountFollowers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1703
1720
|
|
|
1704
1721
|
declare const ACCOUNT_FOLLOWINGS_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1705
|
-
declare const SET_ACCOUNT_FOLLOWINGS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_FOLLOWINGS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountFollowings>>, baseKeys?:
|
|
1722
|
+
declare const SET_ACCOUNT_FOLLOWINGS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_FOLLOWINGS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountFollowings>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1706
1723
|
interface GetAccountFollowingsProps extends InfiniteQueryParams {
|
|
1707
1724
|
accountId: string;
|
|
1708
1725
|
}
|
|
@@ -1710,7 +1727,7 @@ declare const GetAccountFollowings: ({ pageParam, pageSize, orderBy, search, acc
|
|
|
1710
1727
|
declare const useGetAccountFollowings: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountFollowings>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1711
1728
|
|
|
1712
1729
|
declare const ACCOUNTS_QUERY_KEY: (accountType?: keyof typeof AccountType) => QueryKey;
|
|
1713
|
-
declare const SET_ACCOUNTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccounts>>, baseKeys?:
|
|
1730
|
+
declare const SET_ACCOUNTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccounts>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1714
1731
|
interface GetAccountsProps extends InfiniteQueryParams {
|
|
1715
1732
|
accountType?: keyof typeof AccountType;
|
|
1716
1733
|
}
|
|
@@ -1718,7 +1735,7 @@ declare const GetAccounts: ({ pageSize, orderBy, search, accountType, queryClien
|
|
|
1718
1735
|
declare const useGetAccounts: (accountType?: keyof typeof AccountType, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccounts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1719
1736
|
|
|
1720
1737
|
declare const ACTIVITIES_QUERY_KEY: () => QueryKey;
|
|
1721
|
-
declare const SET_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetActivities>>, baseKeys?:
|
|
1738
|
+
declare const SET_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetActivities>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1722
1739
|
interface GetActivitiesProps extends InfiniteQueryParams {
|
|
1723
1740
|
}
|
|
1724
1741
|
declare const GetActivities: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
@@ -1733,7 +1750,7 @@ declare const GetActivity: ({ activityId, clientApiParams, }: GetActivityProps)
|
|
|
1733
1750
|
declare const useGetActivity: (activityId?: string, options?: SingleQueryOptions<ReturnType<typeof GetActivity>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SingleActivity>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1734
1751
|
|
|
1735
1752
|
declare const ACTIVITY_COMMENTS_QUERY_KEY: (activityId: string) => QueryKey;
|
|
1736
|
-
declare const SET_ACTIVITY_COMMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACTIVITY_COMMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetActivityComments>>, baseKeys?:
|
|
1753
|
+
declare const SET_ACTIVITY_COMMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACTIVITY_COMMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetActivityComments>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1737
1754
|
interface GetActivityCommentsProps extends InfiniteQueryParams {
|
|
1738
1755
|
activityId: string;
|
|
1739
1756
|
}
|
|
@@ -1748,14 +1765,14 @@ declare const GetAdvertisement: ({ clientApiParams, }: GetAdvertisementProps) =>
|
|
|
1748
1765
|
declare const useGetAdvertisement: (position: string, options?: SingleQueryOptions<ReturnType<typeof GetAdvertisement>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Advertisement>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1749
1766
|
|
|
1750
1767
|
declare const BENEFITS_QUERY_KEY: () => QueryKey;
|
|
1751
|
-
declare const SET_BENEFITS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BENEFITS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBenefits>>, baseKeys?:
|
|
1768
|
+
declare const SET_BENEFITS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BENEFITS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBenefits>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1752
1769
|
interface GetBenefitsProps extends InfiniteQueryParams {
|
|
1753
1770
|
}
|
|
1754
1771
|
declare const GetBenefits: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetBenefitsProps) => Promise<ConnectedXMResponse<Benefit[]>>;
|
|
1755
1772
|
declare const useGetBenefits: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetBenefits>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Benefit[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1756
1773
|
|
|
1757
1774
|
declare const GROUPS_QUERY_KEY: (access?: "public" | "private") => QueryKey;
|
|
1758
|
-
declare const SET_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroups>>, baseKeys?:
|
|
1775
|
+
declare const SET_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroups>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1759
1776
|
interface GetGroupsProps extends InfiniteQueryParams {
|
|
1760
1777
|
access?: "public" | "private";
|
|
1761
1778
|
}
|
|
@@ -1771,7 +1788,7 @@ declare const GetGroup: ({ groupId, clientApiParams, }: GetGroupProps) => Promis
|
|
|
1771
1788
|
declare const useGetGroup: (groupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1772
1789
|
|
|
1773
1790
|
declare const GROUP_ACTIVITIES_QUERY_KEY: (groupId: string) => QueryKey;
|
|
1774
|
-
declare const SET_GROUP_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupActivities>>, baseKeys?:
|
|
1791
|
+
declare const SET_GROUP_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupActivities>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1775
1792
|
interface GetGroupActivitiesProps extends InfiniteQueryParams {
|
|
1776
1793
|
groupId: string;
|
|
1777
1794
|
}
|
|
@@ -1779,7 +1796,7 @@ declare const GetGroupActivities: ({ pageParam, pageSize, orderBy, search, group
|
|
|
1779
1796
|
declare const useGetGroupActivities: (groupId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1780
1797
|
|
|
1781
1798
|
declare const GROUP_ANNOUNCEMENTS_QUERY_KEY: (groupId: string) => QueryKey;
|
|
1782
|
-
declare const SET_GROUP_ANNOUNCEMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_ANNOUNCEMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupAnnouncements>>, baseKeys?:
|
|
1799
|
+
declare const SET_GROUP_ANNOUNCEMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_ANNOUNCEMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupAnnouncements>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1783
1800
|
interface GetGroupAnnouncementsProps extends InfiniteQueryParams {
|
|
1784
1801
|
groupId: string;
|
|
1785
1802
|
}
|
|
@@ -1787,7 +1804,7 @@ declare const GetGroupAnnouncements: ({ groupId, pageParam, pageSize, orderBy, s
|
|
|
1787
1804
|
declare const useGetGroupAnnouncements: (groupId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupAnnouncements>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Announcement[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1788
1805
|
|
|
1789
1806
|
declare const GROUP_MEDIA_QUERY_KEY: (groupId: string, type?: "images" | "videos") => QueryKey;
|
|
1790
|
-
declare const SET_GROUP_MEDIA_QUERY_DATA: (client: QueryClient, keyParams:
|
|
1807
|
+
declare const SET_GROUP_MEDIA_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_MEDIA_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupMedia>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1791
1808
|
interface GetGroupMediaProps extends InfiniteQueryParams {
|
|
1792
1809
|
groupId: string;
|
|
1793
1810
|
type?: "images" | "videos";
|
|
@@ -1796,7 +1813,7 @@ declare const GetGroupMedia: ({ groupId, type, pageParam, pageSize, orderBy, sea
|
|
|
1796
1813
|
declare const useGetGroupMedia: (groupId?: string, type?: "images" | "videos", params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupMedia>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1797
1814
|
|
|
1798
1815
|
declare const GROUP_EVENTS_QUERY_KEY: (groupId: string, past?: boolean) => QueryKey;
|
|
1799
|
-
declare const SET_GROUP_EVENTS_QUERY_DATA: (client: QueryClient, keyParams:
|
|
1816
|
+
declare const SET_GROUP_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupEvents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1800
1817
|
interface GetGroupEventsProps extends InfiniteQueryParams {
|
|
1801
1818
|
groupId: string;
|
|
1802
1819
|
past?: boolean;
|
|
@@ -1805,7 +1822,7 @@ declare const GetGroupEvents: ({ pageParam, pageSize, orderBy, search, groupId,
|
|
|
1805
1822
|
declare const useGetGroupEvents: (groupId?: string, past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupEvents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1806
1823
|
|
|
1807
1824
|
declare const GROUP_MEMBERS_QUERY_KEY: (groupId: string, role?: keyof typeof GroupMembershipRole) => QueryKey;
|
|
1808
|
-
declare const SET_GROUP_MEMBERS_QUERY_DATA: (client: QueryClient, keyParams:
|
|
1825
|
+
declare const SET_GROUP_MEMBERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_MEMBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupMembers>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1809
1826
|
interface GetGroupMembersProps extends InfiniteQueryParams {
|
|
1810
1827
|
groupId: string;
|
|
1811
1828
|
role?: keyof typeof GroupMembershipRole;
|
|
@@ -1814,7 +1831,7 @@ declare const GetGroupMembers: ({ pageParam, pageSize, orderBy, search, role, gr
|
|
|
1814
1831
|
declare const useGetGroupMembers: (groupId?: string, role?: keyof typeof GroupMembershipRole, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupMembers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<GroupMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1815
1832
|
|
|
1816
1833
|
declare const GROUP_SPONSORS_QUERY_KEY: (groupId: string) => QueryKey;
|
|
1817
|
-
declare const SET_GROUP_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupSponsors>>, baseKeys?:
|
|
1834
|
+
declare const SET_GROUP_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupSponsors>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1818
1835
|
interface GetGroupSponsorsProps extends InfiniteQueryParams {
|
|
1819
1836
|
groupId: string;
|
|
1820
1837
|
}
|
|
@@ -1822,7 +1839,7 @@ declare const GetGroupSponsors: ({ pageParam, pageSize, orderBy, search, groupId
|
|
|
1822
1839
|
declare const useGetGroupSponsors: (groupId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupSponsors>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1823
1840
|
|
|
1824
1841
|
declare const GROUP_REQUEST_QUERY_KEY: (groupId: string, requestId: string) => QueryKey;
|
|
1825
|
-
declare const SET_GROUP_REQUEST_QUERY_DATA: (client: QueryClient, keyParams:
|
|
1842
|
+
declare const SET_GROUP_REQUEST_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_REQUEST_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupRequest>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
1826
1843
|
interface GetGroupRequestProps extends SingleQueryParams {
|
|
1827
1844
|
groupId: string;
|
|
1828
1845
|
requestId: string;
|
|
@@ -1831,7 +1848,7 @@ declare const GetGroupRequest: ({ groupId, requestId, clientApiParams, }: GetGro
|
|
|
1831
1848
|
declare const useGetGroupRequest: (groupId?: string, requestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupRequest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupRequest>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1832
1849
|
|
|
1833
1850
|
declare const GROUP_REQUESTS_QUERY_KEY: (groupId: string, status?: keyof typeof GroupRequestStatus) => QueryKey;
|
|
1834
|
-
declare const SET_GROUP_REQUESTS_QUERY_DATA: (client: QueryClient, keyParams:
|
|
1851
|
+
declare const SET_GROUP_REQUESTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_REQUESTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupRequests>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1835
1852
|
interface GetGroupRequestsProps extends InfiniteQueryParams {
|
|
1836
1853
|
groupId: string;
|
|
1837
1854
|
status?: keyof typeof GroupRequestStatus;
|
|
@@ -1847,7 +1864,7 @@ declare const GetGroupInvitableAccounts: ({ pageParam, pageSize, orderBy, search
|
|
|
1847
1864
|
declare const useGetGroupInvitableAccounts: (groupId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupInvitableAccounts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<InvitableAccount[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1848
1865
|
|
|
1849
1866
|
declare const GROUP_INVITATIONS_QUERY_KEY: (groupId: string, status?: keyof typeof GroupInvitationStatus) => QueryKey;
|
|
1850
|
-
declare const SET_GROUP_INVITATIONS_QUERY_DATA: (client: QueryClient, keyParams:
|
|
1867
|
+
declare const SET_GROUP_INVITATIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_INVITATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupInvitations>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1851
1868
|
interface GetGroupInvitationsProps extends InfiniteQueryParams {
|
|
1852
1869
|
groupId: string;
|
|
1853
1870
|
status?: keyof typeof GroupInvitationStatus;
|
|
@@ -1874,7 +1891,7 @@ declare const GetGroupsRequested: ({ pageParam, pageSize, orderBy, search, query
|
|
|
1874
1891
|
declare const useGetGroupsRequested: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupsRequested>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1875
1892
|
|
|
1876
1893
|
declare const CHANNEL_COLLECTION_QUERY_KEY: (channelId: string, collectionId: string) => QueryKey;
|
|
1877
|
-
declare const SET_CHANNEL_COLLECTION_QUERY_DATA: (client: QueryClient, keyParams:
|
|
1894
|
+
declare const SET_CHANNEL_COLLECTION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_COLLECTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelCollection>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1878
1895
|
interface GetChannelCollectionParams extends SingleQueryParams {
|
|
1879
1896
|
channelId: string;
|
|
1880
1897
|
collectionId: string;
|
|
@@ -1891,7 +1908,7 @@ declare const GetChannelCollectionContents: ({ channelId, collectionId, pagePara
|
|
|
1891
1908
|
declare const useGetChannelCollectionContents: (channelId: string, collectionId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelCollectionContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1892
1909
|
|
|
1893
1910
|
declare const CHANNEL_COLLECTIONS_QUERY_KEY: (channelId: string) => QueryKey;
|
|
1894
|
-
declare const SET_CHANNEL_COLLECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_COLLECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelCollections>>, baseKeys?:
|
|
1911
|
+
declare const SET_CHANNEL_COLLECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_COLLECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelCollections>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1895
1912
|
interface GetChannelCollectionsParams extends InfiniteQueryParams {
|
|
1896
1913
|
channelId: string;
|
|
1897
1914
|
}
|
|
@@ -1899,7 +1916,7 @@ declare const GetChannelCollections: ({ channelId, pageParam, pageSize, orderBy,
|
|
|
1899
1916
|
declare const useGetChannelCollections: (channelId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelCollections>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChannelCollection[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1900
1917
|
|
|
1901
1918
|
declare const CHANNEL_CONTENT_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
|
|
1902
|
-
declare const SET_CHANNEL_CONTENT_QUERY_DATA: (client: QueryClient, keyParams:
|
|
1919
|
+
declare const SET_CHANNEL_CONTENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_CONTENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1903
1920
|
interface GetChannelContentParams extends SingleQueryParams {
|
|
1904
1921
|
channelId: string;
|
|
1905
1922
|
contentId: string;
|
|
@@ -1908,7 +1925,7 @@ declare const GetChannelContent: ({ contentId, channelId, clientApiParams, }: Ge
|
|
|
1908
1925
|
declare const useGetChannelContent: (channelId?: string, contentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1909
1926
|
|
|
1910
1927
|
declare const CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
|
|
1911
|
-
declare const SET_CONTENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams:
|
|
1928
|
+
declare const SET_CONTENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContentActivities>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1912
1929
|
interface GetChannelContentActivitiesParams extends InfiniteQueryParams {
|
|
1913
1930
|
channelId: string;
|
|
1914
1931
|
contentId: string;
|
|
@@ -1917,7 +1934,7 @@ declare const GetChannelContentActivities: ({ channelId, contentId, pageParam, p
|
|
|
1917
1934
|
declare const useGetChannelContentActivities: (channelId?: string, contentId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContentActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1918
1935
|
|
|
1919
1936
|
declare const CHANNEL_CONTENTS_QUERY_KEY: (channelId: string) => QueryKey;
|
|
1920
|
-
declare const SET_CHANNEL_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContents>>, baseKeys?:
|
|
1937
|
+
declare const SET_CHANNEL_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1921
1938
|
interface GetChannelContentsParams extends InfiniteQueryParams {
|
|
1922
1939
|
channelId: string;
|
|
1923
1940
|
}
|
|
@@ -1941,7 +1958,7 @@ declare const GetChannel: ({ channelId, clientApiParams, }: GetChannelParams) =>
|
|
|
1941
1958
|
declare const useGetChannel: (channelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1942
1959
|
|
|
1943
1960
|
declare const CHANNELS_QUERY_KEY: () => QueryKey;
|
|
1944
|
-
declare const SET_CHANNELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannels>>, baseKeys?:
|
|
1961
|
+
declare const SET_CHANNELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannels>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1945
1962
|
interface GetChannelsParams extends InfiniteQueryParams {
|
|
1946
1963
|
}
|
|
1947
1964
|
declare const GetChannels: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetChannelsParams) => Promise<ConnectedXMResponse<Channel[]>>;
|
|
@@ -1970,7 +1987,7 @@ declare const GetContent: ({ contentId, clientApiParams, }: GetContentParams) =>
|
|
|
1970
1987
|
declare const useGetContent: (contentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetContent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1971
1988
|
|
|
1972
1989
|
declare const CONTENTS_QUERY_KEY: () => QueryKey;
|
|
1973
|
-
declare const SET_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContents>>, baseKeys?:
|
|
1990
|
+
declare const SET_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1974
1991
|
interface GetContentsParams extends InfiniteQueryParams {
|
|
1975
1992
|
}
|
|
1976
1993
|
declare const GetContents: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
|
|
@@ -1985,7 +2002,7 @@ declare const GetEvent: ({ eventId, clientApiParams, }: GetEventProps) => Promis
|
|
|
1985
2002
|
declare const useGetEvent: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEvent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Event>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1986
2003
|
|
|
1987
2004
|
declare const EVENT_ACTIVITIES_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1988
|
-
declare const SET_EVENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventActivities>>, baseKeys?:
|
|
2005
|
+
declare const SET_EVENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventActivities>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
1989
2006
|
interface GetEventActivitiesProps extends InfiniteQueryParams {
|
|
1990
2007
|
eventId: string;
|
|
1991
2008
|
}
|
|
@@ -1993,7 +2010,7 @@ declare const GetEventActivities: ({ eventId, pageParam, pageSize, orderBy, sear
|
|
|
1993
2010
|
declare const useGetEventActivities: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1994
2011
|
|
|
1995
2012
|
declare const EVENT_FAQ_SECTION_QUERY_KEY: (eventId: string, sectionId: string) => QueryKey;
|
|
1996
|
-
declare const SET_EVENT_FAQ_SECTION_QUERY_DATA: (client: QueryClient, keyParams:
|
|
2013
|
+
declare const SET_EVENT_FAQ_SECTION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFAQSection>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1997
2014
|
interface GetEventFAQSectionProps extends SingleQueryParams {
|
|
1998
2015
|
eventId: string;
|
|
1999
2016
|
sectionId: string;
|
|
@@ -2002,7 +2019,7 @@ declare const GetEventFAQSection: ({ eventId, sectionId, clientApiParams, }: Get
|
|
|
2002
2019
|
declare const useGetEventFAQSection: (eventId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFAQSection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<FaqSection>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2003
2020
|
|
|
2004
2021
|
declare const EVENT_FAQ_SECTION_QUESTION_QUERY_KEY: (eventId: string, sectionId: string, questionId: string) => QueryKey;
|
|
2005
|
-
declare const SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA: (client: QueryClient, keyParams:
|
|
2022
|
+
declare const SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTION_QUESTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFAQSectionQuestion>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2006
2023
|
interface GetEventFAQSectionQuestionProps extends SingleQueryParams {
|
|
2007
2024
|
eventId: string;
|
|
2008
2025
|
sectionId: string;
|
|
@@ -2012,7 +2029,7 @@ declare const GetEventFAQSectionQuestion: ({ eventId, sectionId, questionId, cli
|
|
|
2012
2029
|
declare const useGetEventFAQSectionQuestion: (eventId?: string, sectionId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFAQSectionQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Faq>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2013
2030
|
|
|
2014
2031
|
declare const EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY: (eventId: string, sectionId: string) => QueryKey;
|
|
2015
|
-
declare const SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA: (client: QueryClient, keyParams:
|
|
2032
|
+
declare const SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFaqs>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2016
2033
|
interface GetEventFaqsProps extends InfiniteQueryParams {
|
|
2017
2034
|
eventId: string;
|
|
2018
2035
|
sectionId: string;
|
|
@@ -2021,7 +2038,7 @@ declare const GetEventFaqs: ({ eventId, sectionId, pageParam, pageSize, orderBy,
|
|
|
2021
2038
|
declare const useGetEventFaqs: (eventId?: string, sectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventFaqs>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Faq[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2022
2039
|
|
|
2023
2040
|
declare const EVENT_FAQ_SECTIONS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
2024
|
-
declare const SET_EVENT_FAQ_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFaqSections>>, baseKeys?:
|
|
2041
|
+
declare const SET_EVENT_FAQ_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFaqSections>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2025
2042
|
interface GetEventFaqSectionsProps extends InfiniteQueryParams {
|
|
2026
2043
|
eventId: string;
|
|
2027
2044
|
}
|
|
@@ -2029,7 +2046,7 @@ declare const GetEventFaqSections: ({ eventId, pageParam, pageSize, orderBy, sea
|
|
|
2029
2046
|
declare const useGetEventFaqSections: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventFaqSections>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<FaqSection[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2030
2047
|
|
|
2031
2048
|
declare const EVENT_PAGE_QUERY_KEY: (eventId: string, pageId: string) => QueryKey;
|
|
2032
|
-
declare const SET_EVENT_PAGE_QUERY_DATA: (client: QueryClient, keyParams:
|
|
2049
|
+
declare const SET_EVENT_PAGE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PAGE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPage>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2033
2050
|
interface GetEventPageProps extends SingleQueryParams {
|
|
2034
2051
|
eventId: string;
|
|
2035
2052
|
pageId: string;
|
|
@@ -2038,7 +2055,7 @@ declare const GetEventPage: ({ eventId, pageId, clientApiParams, }: GetEventPage
|
|
|
2038
2055
|
declare const useGetEventPage: (eventId: string | undefined, pageId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2039
2056
|
|
|
2040
2057
|
declare const EVENT_PAGES_QUERY_KEY: (eventId: string) => QueryKey;
|
|
2041
|
-
declare const SET_EVENT_PAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPages>>, baseKeys?:
|
|
2058
|
+
declare const SET_EVENT_PAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPages>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2042
2059
|
interface GetEventPagesProps extends InfiniteQueryParams {
|
|
2043
2060
|
eventId: string;
|
|
2044
2061
|
}
|
|
@@ -2054,7 +2071,7 @@ declare const GetEventQuestionSearchValues: ({ eventId, questionId, pageParam, p
|
|
|
2054
2071
|
declare const useGetEventQuestionSearchValues: (eventId?: string, questionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventQuestionSearchValues>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<RegistrationQuestionSearchValue[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2055
2072
|
|
|
2056
2073
|
declare const EVENT_SESSIONS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
2057
|
-
declare const SET_EVENT_SESSIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SESSIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessions>>, baseKeys?:
|
|
2074
|
+
declare const SET_EVENT_SESSIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SESSIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessions>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2058
2075
|
interface GetEventSessionsProps extends InfiniteQueryParams {
|
|
2059
2076
|
eventId: string;
|
|
2060
2077
|
}
|
|
@@ -2062,7 +2079,7 @@ declare const GetEventSessions: ({ eventId, pageParam, pageSize, orderBy, search
|
|
|
2062
2079
|
declare const useGetEventSessions: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSessions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Session[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2063
2080
|
|
|
2064
2081
|
declare const EVENT_REGISTRANTS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
2065
|
-
declare const SET_EVENT_REGISTRANTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_REGISTRANTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessions>>, baseKeys?:
|
|
2082
|
+
declare const SET_EVENT_REGISTRANTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_REGISTRANTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessions>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2066
2083
|
interface GetEventRegistrantsProps extends InfiniteQueryParams {
|
|
2067
2084
|
eventId: string;
|
|
2068
2085
|
}
|
|
@@ -2070,7 +2087,7 @@ declare const GetEventRegistrants: ({ eventId, pageParam, pageSize, orderBy, sea
|
|
|
2070
2087
|
declare const useGetEventRegistrants: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRegistrants>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2071
2088
|
|
|
2072
2089
|
declare const EVENTS_QUERY_KEY: (past?: boolean) => QueryKey;
|
|
2073
|
-
declare const SET_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvents>>, baseKeys?:
|
|
2090
|
+
declare const SET_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2074
2091
|
interface GetEventsProps extends InfiniteQueryParams {
|
|
2075
2092
|
past?: boolean;
|
|
2076
2093
|
}
|
|
@@ -2078,7 +2095,7 @@ declare const GetEvents: ({ pageParam, pageSize, orderBy, search, past, queryCli
|
|
|
2078
2095
|
declare const useGetEvents: (past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEvents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2079
2096
|
|
|
2080
2097
|
declare const EVENT_SESSION_QUERY_KEY: (eventId: string, sessionId: string) => QueryKey;
|
|
2081
|
-
declare const SET_EVENT_SESSION_QUERY_DATA: (client: QueryClient, keyParams:
|
|
2098
|
+
declare const SET_EVENT_SESSION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SESSION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSession>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2082
2099
|
interface GetEventSessionProps extends SingleQueryParams {
|
|
2083
2100
|
eventId: string;
|
|
2084
2101
|
sessionId: string;
|
|
@@ -2087,7 +2104,7 @@ declare const GetEventSession: ({ eventId, sessionId, clientApiParams, }: GetEve
|
|
|
2087
2104
|
declare const useGetEventSession: (eventId?: string, sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSession>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Session>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2088
2105
|
|
|
2089
2106
|
declare const EVENT_SPEAKER_QUERY_KEY: (eventId: string, speakerId: string) => QueryKey;
|
|
2090
|
-
declare const SET_EVENT_SPEAKER_QUERY_DATA: (client: QueryClient, keyParams:
|
|
2107
|
+
declare const SET_EVENT_SPEAKER_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPEAKER_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSpeaker>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2091
2108
|
interface GetEventSpeakerProps extends SingleQueryParams {
|
|
2092
2109
|
eventId: string;
|
|
2093
2110
|
speakerId: string;
|
|
@@ -2096,7 +2113,7 @@ declare const GetEventSpeaker: ({ eventId, speakerId, clientApiParams, }: GetEve
|
|
|
2096
2113
|
declare const useGetEventSpeaker: (eventId?: string, speakerId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSpeaker>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Speaker>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2097
2114
|
|
|
2098
2115
|
declare const EVENT_SPEAKERS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
2099
|
-
declare const SET_EVENT_SPEAKERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPEAKERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSpeakers>>, baseKeys?:
|
|
2116
|
+
declare const SET_EVENT_SPEAKERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPEAKERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSpeakers>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2100
2117
|
interface GetEventSpeakersProps extends InfiniteQueryParams {
|
|
2101
2118
|
eventId: string;
|
|
2102
2119
|
}
|
|
@@ -2104,7 +2121,7 @@ declare const GetEventSpeakers: ({ eventId, pageParam, pageSize, orderBy, search
|
|
|
2104
2121
|
declare const useGetEventSpeakers: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSpeakers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Speaker[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2105
2122
|
|
|
2106
2123
|
declare const EVENT_SPONSORS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
2107
|
-
declare const SET_EVENT_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSponsors>>, baseKeys?:
|
|
2124
|
+
declare const SET_EVENT_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSponsors>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2108
2125
|
interface GetEventSponsorsProps extends InfiniteQueryParams {
|
|
2109
2126
|
eventId: string;
|
|
2110
2127
|
}
|
|
@@ -2112,7 +2129,7 @@ declare const GetEventSponsors: ({ eventId, pageParam, pageSize, orderBy, search
|
|
|
2112
2129
|
declare const useGetEventSponsors: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSponsors>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2113
2130
|
|
|
2114
2131
|
declare const EVENT_TICKETS_QUERY_KEY: (eventId: string, ticketId?: string) => QueryKey;
|
|
2115
|
-
declare const SET_EVENT_TICKETS_QUERY_DATA: (client: QueryClient, keyParams:
|
|
2132
|
+
declare const SET_EVENT_TICKETS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_TICKETS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventTickets>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2116
2133
|
interface GetEventTicketsProps extends InfiniteQueryParams {
|
|
2117
2134
|
eventId: string;
|
|
2118
2135
|
ticketId?: string;
|
|
@@ -2121,7 +2138,7 @@ declare const GetEventTickets: ({ eventId, ticketId, pageParam, pageSize, orderB
|
|
|
2121
2138
|
declare const useGetEventTickets: (eventId?: string, ticketId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventTickets>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Ticket[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2122
2139
|
|
|
2123
2140
|
declare const EVENTS_FEATURED_QUERY_KEY: () => QueryKey;
|
|
2124
|
-
declare const SET_EVENTS_FEATURED_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENTS_FEATURED_QUERY_KEY>, response: Awaited<ReturnType<typeof GetFeaturedEvents>>, baseKeys?:
|
|
2141
|
+
declare const SET_EVENTS_FEATURED_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENTS_FEATURED_QUERY_KEY>, response: Awaited<ReturnType<typeof GetFeaturedEvents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2125
2142
|
interface GetFeaturedEventsProps extends InfiniteQueryParams {
|
|
2126
2143
|
}
|
|
2127
2144
|
declare const GetFeaturedEvents: ({ pageParam, pageSize, orderBy, queryClient, clientApiParams, locale, }: GetFeaturedEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
@@ -2181,7 +2198,7 @@ declare const GetSelfChatChannel: ({ channelId, clientApiParams, }: GetSelfChatC
|
|
|
2181
2198
|
declare const useGetSelfChatChannel: (channelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfChatChannel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2182
2199
|
|
|
2183
2200
|
declare const SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY: (channelId: string) => QueryKey;
|
|
2184
|
-
declare const SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannelMembers>>, baseKeys?:
|
|
2201
|
+
declare const SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannelMembers>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2185
2202
|
interface GetSelfChatChannelMembersProps extends InfiniteQueryParams {
|
|
2186
2203
|
channelId: string;
|
|
2187
2204
|
}
|
|
@@ -2189,7 +2206,7 @@ declare const GetSelfChatChannelMembers: ({ channelId, pageParam, pageSize, orde
|
|
|
2189
2206
|
declare const useGetSelfChatChannelMembers: (channelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannelMembers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChatChannelMember[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2190
2207
|
|
|
2191
2208
|
declare const SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY: (channelId: string) => QueryKey;
|
|
2192
|
-
declare const SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannelMessages>>, baseKeys?:
|
|
2209
|
+
declare const SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannelMessages>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2193
2210
|
interface GetSelfChatChannelMessagesProps extends InfiniteQueryParams {
|
|
2194
2211
|
channelId: string;
|
|
2195
2212
|
}
|
|
@@ -2197,13 +2214,13 @@ declare const GetSelfChatChannelMessages: ({ channelId, pageParam, pageSize, ord
|
|
|
2197
2214
|
declare const useGetSelfChatChannelMessages: (channelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannelMessages>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChatChannelMessage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2198
2215
|
|
|
2199
2216
|
declare const SELF_CHAT_CHANNELS_QUERY_KEY: () => QueryKey;
|
|
2200
|
-
declare const SET_SELF_CHAT_CHANNELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannels>>, baseKeys?:
|
|
2217
|
+
declare const SET_SELF_CHAT_CHANNELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannels>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2201
2218
|
interface GetSelfChatChannelsProps extends InfiniteQueryParams {
|
|
2202
2219
|
}
|
|
2203
2220
|
declare const GetSelfChatChannels: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfChatChannelsProps) => Promise<ConnectedXMResponse<ChatChannelMember[]>>;
|
|
2204
2221
|
declare const useGetSelfChatChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChatChannelMember[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2205
2222
|
|
|
2206
|
-
declare const SELF_EVENT_REGISTRATION_QUERY_KEY: (eventId: string) => QueryKey;
|
|
2223
|
+
declare const SELF_EVENT_REGISTRATION_QUERY_KEY: (eventId: string, registrationId?: string) => QueryKey;
|
|
2207
2224
|
declare const SET_SELF_EVENT_REGISTRATION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistration>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2208
2225
|
interface GetSelfEventRegistrationProps extends SingleQueryParams {
|
|
2209
2226
|
eventId: string;
|
|
@@ -2219,6 +2236,16 @@ interface GetSelfEventRegistrationIntentProps extends SingleQueryParams {
|
|
|
2219
2236
|
declare const GetSelfEventRegistrationIntent: ({ eventId, registrationId, clientApiParams, }: GetSelfEventRegistrationIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
|
|
2220
2237
|
declare const useGetSelfEventRegistrationIntent: (eventId: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2221
2238
|
|
|
2239
|
+
declare const SELF_EVENT_REGISTRATION_PAYMENT_QUERY_KEY: (eventId: string, paymentId: string) => QueryKey;
|
|
2240
|
+
declare const SET_SELF_EVENT_REGISTRATION_PAYMENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_PAYMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationPayment>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2241
|
+
interface GetSelfEventRegistrationPaymentProps extends SingleQueryParams {
|
|
2242
|
+
eventId: string;
|
|
2243
|
+
registrationId: string;
|
|
2244
|
+
paymentId: string;
|
|
2245
|
+
}
|
|
2246
|
+
declare const GetSelfEventRegistrationPayment: ({ eventId, registrationId, paymentId, clientApiParams, }: GetSelfEventRegistrationPaymentProps) => Promise<ConnectedXMResponse<Payment>>;
|
|
2247
|
+
declare const useGetSelfEventRegistrationPayment: (eventId: string, registrationId: string, paymentId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPayment>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Payment>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2248
|
+
|
|
2222
2249
|
interface ResponseWithQuestion extends RegistrationQuestionResponse {
|
|
2223
2250
|
question: RegistrationQuestion;
|
|
2224
2251
|
}
|
|
@@ -2226,7 +2253,7 @@ interface PurchaseWithResponseQuestions extends Purchase {
|
|
|
2226
2253
|
responses: ResponseWithQuestion[];
|
|
2227
2254
|
}
|
|
2228
2255
|
declare const SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
|
|
2229
|
-
declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA: (client: QueryClient, keyParams:
|
|
2256
|
+
declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationPurchase>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2230
2257
|
interface GetSelfEventRegistrationPurchaseProps extends SingleQueryParams {
|
|
2231
2258
|
eventId: string;
|
|
2232
2259
|
registrationId: string;
|
|
@@ -2236,7 +2263,7 @@ declare const GetSelfEventRegistrationPurchase: ({ eventId, registrationId, purc
|
|
|
2236
2263
|
declare const useGetSelfEventRegistrationPurchase: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchase>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PurchaseWithResponseQuestions>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2237
2264
|
|
|
2238
2265
|
declare const SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
|
|
2239
|
-
declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams:
|
|
2266
|
+
declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationPurchaseSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2240
2267
|
interface GetSelfEventRegistrationPurchaseSectionsProps extends SingleQueryParams {
|
|
2241
2268
|
eventId: string;
|
|
2242
2269
|
registrationId: string;
|
|
@@ -2246,7 +2273,7 @@ declare const GetSelfEventRegistrationPurchaseSections: ({ eventId, registration
|
|
|
2246
2273
|
declare const useGetSelfEventRegistrationPurchaseSections: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2247
2274
|
|
|
2248
2275
|
declare const SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
|
|
2249
|
-
declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA: (client: QueryClient, keyParams:
|
|
2276
|
+
declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationPurchaseAddOns>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2250
2277
|
interface GetSelfEventRegistrationPurchaseAddOnsProps extends SingleQueryParams {
|
|
2251
2278
|
eventId: string;
|
|
2252
2279
|
registrationId: string;
|
|
@@ -2256,7 +2283,7 @@ declare const GetSelfEventRegistrationPurchaseAddOns: ({ eventId, registrationId
|
|
|
2256
2283
|
declare const useGetSelfEventRegistrationPurchaseAddOns: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2257
2284
|
|
|
2258
2285
|
declare const SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
|
|
2259
|
-
declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams:
|
|
2286
|
+
declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationPurchaseReservationSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2260
2287
|
interface GetSelfEventRegistrationPurchaseReservationSectionsProps extends SingleQueryParams {
|
|
2261
2288
|
eventId: string;
|
|
2262
2289
|
registrationId: string;
|
|
@@ -2290,6 +2317,43 @@ interface GetSelfEventRegistrationPurchaseAddOnsIntentProps extends SingleQueryP
|
|
|
2290
2317
|
declare const GetSelfEventRegistrationPurchaseAddOnsIntent: ({ eventId, registrationId, purchaseId, addOnIds, clientApiParams, }: GetSelfEventRegistrationPurchaseAddOnsIntentProps) => Promise<ConnectedXMResponse<PaymentIntent>>;
|
|
2291
2318
|
declare const useGetSelfEventRegistrationPurchaseAddOnsIntent: (eventId: string, registrationId: string, purchaseId: string, addOnIds: string[], options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseAddOnsIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2292
2319
|
|
|
2320
|
+
declare const SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY: (eventId: string, registrationId: string, ticketId: string, quantity: number) => unknown[];
|
|
2321
|
+
interface GetSelfEventTicketCouponIntentProps extends SingleQueryParams {
|
|
2322
|
+
eventId: string;
|
|
2323
|
+
registrationId: string;
|
|
2324
|
+
ticketId: string;
|
|
2325
|
+
quantity: number;
|
|
2326
|
+
}
|
|
2327
|
+
declare const GetSelfEventTicketCouponIntent: ({ eventId, registrationId, ticketId, quantity, clientApiParams, }: GetSelfEventTicketCouponIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
|
|
2328
|
+
declare const useGetSelfEventTicketCouponIntent: (eventId?: string, registrationId?: string, ticketId?: string, quantity?: number, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventTicketCouponIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2329
|
+
|
|
2330
|
+
declare const SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY: (eventId: string, registrationId: string, couponId: string) => QueryKey;
|
|
2331
|
+
declare const SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationCoupon>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2332
|
+
interface GetSelfEventRegistrationCouponProps extends SingleQueryParams {
|
|
2333
|
+
eventId: string;
|
|
2334
|
+
registrationId: string;
|
|
2335
|
+
couponId: string;
|
|
2336
|
+
}
|
|
2337
|
+
declare const GetSelfEventRegistrationCoupon: ({ eventId, registrationId, couponId, clientApiParams, }: GetSelfEventRegistrationCouponProps) => Promise<ConnectedXMResponse<ManagedCoupon>>;
|
|
2338
|
+
declare const useGetSelfEventRegistrationCoupon: (eventId?: string, registrationId?: string, couponId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationCoupon>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ManagedCoupon>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2339
|
+
|
|
2340
|
+
declare const SELF_EVENT_REGISTRATION_COUPONS_QUERY_KEY: (eventId: string, registrationId: string) => QueryKey;
|
|
2341
|
+
interface GetSelfEventRegistrationCouponsProps extends InfiniteQueryParams {
|
|
2342
|
+
eventId: string;
|
|
2343
|
+
registrationId: string;
|
|
2344
|
+
}
|
|
2345
|
+
declare const GetSelfEventRegistrationCoupons: ({ eventId, registrationId, clientApiParams, queryClient, locale, }: GetSelfEventRegistrationCouponsProps) => Promise<ConnectedXMResponse<Coupon[]>>;
|
|
2346
|
+
declare const useGetSelfEventRegistrationCoupons: (eventId: string, registrationId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventRegistrationCoupons>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Coupon[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2347
|
+
|
|
2348
|
+
declare const SELF_EVENT_REGISTRATION_COUPON_REGISTRATIONS_QUERY_KEY: (eventId: string, registrationId: string) => QueryKey;
|
|
2349
|
+
interface GetSelfEventRegistrationCouponRegistrationsProps extends InfiniteQueryParams {
|
|
2350
|
+
eventId: string;
|
|
2351
|
+
registrationId: string;
|
|
2352
|
+
couponId: string;
|
|
2353
|
+
}
|
|
2354
|
+
declare const GetSelfEventRegistrationCouponRegistrations: ({ eventId, registrationId, couponId, clientApiParams, }: GetSelfEventRegistrationCouponRegistrationsProps) => Promise<ConnectedXMResponse<Registration[]>>;
|
|
2355
|
+
declare const useGetSelfEventRegistrationCouponRegistrations: (eventId?: string, registrationId?: string, couponId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventRegistrationCouponRegistrations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Registration[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2356
|
+
|
|
2293
2357
|
declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
|
|
2294
2358
|
interface GetSelfSubcriptionProps extends SingleQueryParams {
|
|
2295
2359
|
subscriptionId: string;
|
|
@@ -2320,8 +2384,8 @@ declare const GetSelf: ({ ignoreExecuteAs, clientApiParams, }: GetSelfProps) =>
|
|
|
2320
2384
|
declare const useGetSelf: (ignoreExecuteAs?: boolean, options?: SingleQueryOptions<ReturnType<typeof GetSelf>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2321
2385
|
|
|
2322
2386
|
declare const SELF_RELATIONSHIPS_QUERY_KEY: () => QueryKey;
|
|
2323
|
-
declare const ADD_SELF_RELATIONSHIP: (client: QueryClient, baseKeys:
|
|
2324
|
-
declare const REMOVE_SELF_RELATIONSHIP: (client: QueryClient, baseKeys:
|
|
2387
|
+
declare const ADD_SELF_RELATIONSHIP: (client: QueryClient, baseKeys: Parameters<typeof GetBaseSingleQueryKeys> | undefined, type: "groups" | "accounts" | "events", id: string, value?: boolean | string) => void;
|
|
2388
|
+
declare const REMOVE_SELF_RELATIONSHIP: (client: QueryClient, baseKeys: Parameters<typeof GetBaseSingleQueryKeys> | undefined, type: "groups" | "accounts" | "events", id: string, value?: boolean | string) => void;
|
|
2325
2389
|
interface GetSelfRelationshipsProps extends SingleQueryParams {
|
|
2326
2390
|
}
|
|
2327
2391
|
declare const GetSelfRelationships: ({ clientApiParams, }: GetSelfRelationshipsProps) => Promise<ConnectedXMResponse<SelfRelationships>>;
|
|
@@ -2463,7 +2527,7 @@ declare const useGetSeries: (seriesId?: string, options?: SingleQueryOptions<Ret
|
|
|
2463
2527
|
|
|
2464
2528
|
type Include = "sessions" | "speakers" | "sponsors";
|
|
2465
2529
|
declare const SERIES_EVENTS_QUERY_KEY: (seriesId: string, past?: boolean, include?: Include) => QueryKey;
|
|
2466
|
-
declare const SET_SERIES_EVENTS_QUERY_DATA: (client: QueryClient, keyParams:
|
|
2530
|
+
declare const SET_SERIES_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeriesEvents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2467
2531
|
interface GetSeriesEventsProps extends InfiniteQueryParams {
|
|
2468
2532
|
seriesId: string;
|
|
2469
2533
|
past?: boolean;
|
|
@@ -2473,7 +2537,7 @@ declare const GetSeriesEvents: ({ seriesId, pageParam, pageSize, orderBy, search
|
|
|
2473
2537
|
declare const useGetSeriesEvents: (seriesId?: string, past?: boolean, include?: Include, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesEvents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<(Event | EventWithSessions | EventWithSpeakers | EventWithSponsors)[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2474
2538
|
|
|
2475
2539
|
declare const SERIES_LIST_QUERY_KEY: () => QueryKey;
|
|
2476
|
-
declare const SET_SERIES_LIST_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_LIST_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeriesList>>, baseKeys?:
|
|
2540
|
+
declare const SET_SERIES_LIST_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_LIST_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeriesList>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2477
2541
|
interface GetSeriesListProps extends InfiniteQueryParams {
|
|
2478
2542
|
past?: boolean;
|
|
2479
2543
|
}
|
|
@@ -2489,14 +2553,14 @@ declare const GetLevel: ({ levelId, clientApiParams, }: GetLevelProps) => Promis
|
|
|
2489
2553
|
declare const useGetLevel: (levelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLevel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SponsorshipLevel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2490
2554
|
|
|
2491
2555
|
declare const LEVELS_QUERY_KEY: () => QueryKey;
|
|
2492
|
-
declare const SET_LEVELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevels>>, baseKeys?:
|
|
2556
|
+
declare const SET_LEVELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevels>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2493
2557
|
interface GetLevelsProps extends InfiniteQueryParams {
|
|
2494
2558
|
}
|
|
2495
2559
|
declare const GetLevels: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetLevelsProps) => Promise<ConnectedXMResponse<SponsorshipLevel[]>>;
|
|
2496
2560
|
declare const useGetLevels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetLevels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<SponsorshipLevel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2497
2561
|
|
|
2498
2562
|
declare const LEVEL_SPONSORS_QUERY_KEY: (levelId: string) => QueryKey;
|
|
2499
|
-
declare const SET_LEVEL_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVEL_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevelSponsors>>, baseKeys?:
|
|
2563
|
+
declare const SET_LEVEL_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVEL_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevelSponsors>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2500
2564
|
interface GetLevelSponsorsProps extends InfiniteQueryParams {
|
|
2501
2565
|
levelId: string;
|
|
2502
2566
|
}
|
|
@@ -2527,7 +2591,7 @@ declare const GetSelfEventListing: ({ eventId, clientApiParams, }: GetSelfEventL
|
|
|
2527
2591
|
declare const useGetSelfEventListing: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListing>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2528
2592
|
|
|
2529
2593
|
declare const LISTING_ANNOUNCEMENT_QUERY_KEY: (eventId: string, announcementId: string) => QueryKey;
|
|
2530
|
-
declare const SET_LISTING_ANNOUNCEMENT_QUERY_KEY: (client: QueryClient, keyParams:
|
|
2594
|
+
declare const SET_LISTING_ANNOUNCEMENT_QUERY_KEY: (client: QueryClient, keyParams: Parameters<typeof LISTING_ANNOUNCEMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListingAnnouncement>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2531
2595
|
interface GetSelfEventListingAnnouncementProps extends SingleQueryParams {
|
|
2532
2596
|
eventId: string;
|
|
2533
2597
|
announcementId: string;
|
|
@@ -2543,7 +2607,7 @@ declare const GetSelfEventListingAnnouncements: ({ eventId, pageParam, pageSize,
|
|
|
2543
2607
|
declare const useGetSelfEventListingAnnouncements: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingAnnouncements>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Announcement[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2544
2608
|
|
|
2545
2609
|
declare const LISTING_EMAIL_QUERY_KEY: (eventId: string, type: EventEmailType) => QueryKey;
|
|
2546
|
-
declare const SET_LISTING_EMAIL_QUERY_DATA: (client: QueryClient, keyParams:
|
|
2610
|
+
declare const SET_LISTING_EMAIL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LISTING_EMAIL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListingEmail>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2547
2611
|
interface GetSelfEventListingEmailProps extends SingleQueryParams {
|
|
2548
2612
|
eventId: string;
|
|
2549
2613
|
type: EventEmailType;
|
|
@@ -2559,7 +2623,7 @@ declare const GetSelfEventListingQuestions: ({ eventId, pageParam, pageSize, ord
|
|
|
2559
2623
|
declare const useGetSelfEventListingQuestions: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingQuestions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<RegistrationQuestion[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2560
2624
|
|
|
2561
2625
|
declare const LISTING_REGISTRATION_QUERY_KEY: (eventId: string, registrationId: string) => QueryKey;
|
|
2562
|
-
declare const SET_LISTING_REGISTRATION_QUERY_KEY: (client: QueryClient, keyParams:
|
|
2626
|
+
declare const SET_LISTING_REGISTRATION_QUERY_KEY: (client: QueryClient, keyParams: Parameters<typeof LISTING_REGISTRATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListingRegistration>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2563
2627
|
interface GetSelfEventListingRegistrationProps extends SingleQueryParams {
|
|
2564
2628
|
eventId: string;
|
|
2565
2629
|
registrationId: string;
|
|
@@ -2576,7 +2640,7 @@ declare const GetSelfEventListingRegistrations: ({ eventId, pageParam, pageSize,
|
|
|
2576
2640
|
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<ListingRegistration[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2577
2641
|
|
|
2578
2642
|
declare const LISTING_PURCHASE_QUERY_KEY: (eventId: string, purchaseId: string) => QueryKey;
|
|
2579
|
-
declare const SET_LISTING_PURCHASE_QUERY_KEY: (client: QueryClient, keyParams:
|
|
2643
|
+
declare const SET_LISTING_PURCHASE_QUERY_KEY: (client: QueryClient, keyParams: Parameters<typeof LISTING_PURCHASE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListingPurchase>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2580
2644
|
interface GetSelfEventListingPurchaseProps extends SingleQueryParams {
|
|
2581
2645
|
eventId: string;
|
|
2582
2646
|
purchaseId: string;
|
|
@@ -2614,7 +2678,7 @@ declare const GetSelfEventListingReport: ({ eventId, clientApiParams, }: GetSelf
|
|
|
2614
2678
|
declare const useGetSelfEventListingReport: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingReport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<any>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2615
2679
|
|
|
2616
2680
|
declare const LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
|
|
2617
|
-
declare const SET_LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams:
|
|
2681
|
+
declare const SET_LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetListingRegistrationPurchaseSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2618
2682
|
interface GetListingRegistrationPurchaseSectionsProps extends SingleQueryParams {
|
|
2619
2683
|
eventId: string;
|
|
2620
2684
|
registrationId: string;
|
|
@@ -2624,7 +2688,7 @@ declare const GetListingRegistrationPurchaseSections: ({ eventId, registrationId
|
|
|
2624
2688
|
declare const useGetListingRegistrationPurchaseSections: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetListingRegistrationPurchaseSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2625
2689
|
|
|
2626
2690
|
declare const INTERESTS_QUERY_KEY: () => QueryKey;
|
|
2627
|
-
declare const SET_INTERESTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTERESTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetInterests>>, baseKeys?:
|
|
2691
|
+
declare const SET_INTERESTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTERESTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetInterests>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2628
2692
|
interface GetInterestsProps extends InfiniteQueryParams {
|
|
2629
2693
|
}
|
|
2630
2694
|
declare const GetInterests: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetInterestsProps) => Promise<ConnectedXMResponse<Interest[]>>;
|
|
@@ -3526,4 +3590,4 @@ interface UploadFileParams extends MutationParams {
|
|
|
3526
3590
|
declare const UploadFile: ({ clientApiParams, dataUri, name, }: UploadFileParams) => Promise<ConnectedXMResponse<File>>;
|
|
3527
3591
|
declare const useUploadFile: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UploadFile>>, Omit<UploadFileParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<File>, axios.AxiosError<ConnectedXMResponse<File>, any>, Omit<UploadFileParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3528
3592
|
|
|
3529
|
-
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddFreePurchaseAddOns, type AddFreePurchaseAddOnsParams, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscription, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePaymentIntent, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIPTIONS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscription, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, ContentType, type Coupon, CouponType, type CreateActivity, CreateChannel, type CreateChannelParams, CreateEventLead, type CreateEventLeadParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, type DeleteChannelParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteGroupModerator, type DemoteGroupModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type EventWithSessions, type EventWithSpeakers, type EventWithSponsors, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannelSubscriptions, type GetChannelSubscriptionsParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, type GetContentParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingRegistrationPurchaseSections, type GetListingRegistrationPurchaseSectionsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, type GetSelfEventListingProps, GetSelfEventListingPurchase, type GetSelfEventListingPurchaseProps, GetSelfEventListingPurchases, type GetSelfEventListingPurchasesProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, GetSelfEventRegistrationPurchaseAddOnsIntent, type GetSelfEventRegistrationPurchaseAddOnsIntentProps, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PURCHASES_QUERY_KEY, LISTING_PURCHASE_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ListingPurchase, type ListingRegistration, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationAction, OrganizationActionType, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Page, type PageType, type Payment, type PaymentIntent, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PURCHASE_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_LISTING_REGISTRATION_QUERY_KEY, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_STATUS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, SupportedLocale, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UndoCheckinListingRegistrationPurchase, type UndoCheckinListingRegistrationPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateChannel, type UpdateChannelParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPurchaseResponses, type UpdateListingRegistrationPurchaseResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UploadFile, type UploadFileParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddFreePurchaseAddOns, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelEventRegistration, useCancelGroupInvitation, useCancelGroupRequest, useCancelSubscription, useCancelTransfer, useCapturePaymentIntent, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateChannel, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscriptions, useGetChannels, useGetContent, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingRegistrationPurchaseSections, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPurchase, useGetSelfEventListingPurchases, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseAddOnsIntent, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, usePromoteGroupMember, useRegisterCancelledEventRegistration, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUndoCheckinListingRegistrationPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateChannel, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPurchaseResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUploadFile };
|
|
3593
|
+
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddFreePurchaseAddOns, type AddFreePurchaseAddOnsParams, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscription, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePaymentIntent, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTicketPriceSchedule, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIPTIONS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscription, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, ContentType, type Coupon, CouponType, type CreateActivity, CreateChannel, type CreateChannelParams, CreateEventLead, type CreateEventLeadParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, type DeleteChannelParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteGroupModerator, type DemoteGroupModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type EventWithSessions, type EventWithSpeakers, type EventWithSponsors, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannelSubscriptions, type GetChannelSubscriptionsParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, type GetContentParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingRegistrationPurchaseSections, type GetListingRegistrationPurchaseSectionsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, type GetSelfEventListingProps, GetSelfEventListingPurchase, type GetSelfEventListingPurchaseProps, GetSelfEventListingPurchases, type GetSelfEventListingPurchasesProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCoupon, type GetSelfEventRegistrationCouponProps, GetSelfEventRegistrationCouponRegistrations, type GetSelfEventRegistrationCouponRegistrationsProps, GetSelfEventRegistrationCoupons, type GetSelfEventRegistrationCouponsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPayment, type GetSelfEventRegistrationPaymentProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, GetSelfEventRegistrationPurchaseAddOnsIntent, type GetSelfEventRegistrationPurchaseAddOnsIntentProps, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PURCHASES_QUERY_KEY, LISTING_PURCHASE_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ListingPurchase, type ListingRegistration, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationAction, OrganizationActionType, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Page, type PageType, type Payment, type PaymentIntent, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PAYMENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PURCHASE_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_LISTING_REGISTRATION_QUERY_KEY, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PAYMENT_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_STATUS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, SupportedLocale, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UndoCheckinListingRegistrationPurchase, type UndoCheckinListingRegistrationPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateChannel, type UpdateChannelParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPurchaseResponses, type UpdateListingRegistrationPurchaseResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UploadFile, type UploadFileParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddFreePurchaseAddOns, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelEventRegistration, useCancelGroupInvitation, useCancelGroupRequest, useCancelSubscription, useCancelTransfer, useCapturePaymentIntent, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateChannel, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscriptions, useGetChannels, useGetContent, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingRegistrationPurchaseSections, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPurchase, useGetSelfEventListingPurchases, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCoupon, useGetSelfEventRegistrationCouponRegistrations, useGetSelfEventRegistrationCoupons, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPayment, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseAddOnsIntent, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, usePromoteGroupMember, useRegisterCancelledEventRegistration, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUndoCheckinListingRegistrationPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateChannel, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPurchaseResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUploadFile };
|