@connectedxm/client 2.4.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +859 -1856
- package/dist/index.d.cts +189 -307
- package/dist/index.d.ts +189 -307
- package/dist/index.js +834 -1809
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1381,8 +1381,12 @@ interface BaseLinkPreview {
|
|
|
1381
1381
|
interface LinkPreview extends BaseLinkPreview {
|
|
1382
1382
|
}
|
|
1383
1383
|
interface StreamInput {
|
|
1384
|
+
id: string;
|
|
1384
1385
|
cloudflareId: string;
|
|
1385
1386
|
connected: boolean;
|
|
1387
|
+
name: string;
|
|
1388
|
+
threads: BaseThread[];
|
|
1389
|
+
image: BaseImage | null;
|
|
1386
1390
|
}
|
|
1387
1391
|
interface BaseChatChannel {
|
|
1388
1392
|
id: number;
|
|
@@ -1660,122 +1664,81 @@ interface BaseFile {
|
|
|
1660
1664
|
}
|
|
1661
1665
|
interface File extends BaseFile {
|
|
1662
1666
|
}
|
|
1663
|
-
declare enum
|
|
1664
|
-
|
|
1665
|
-
|
|
1667
|
+
declare enum ThreadCircleAccountRole {
|
|
1668
|
+
member = "member",
|
|
1669
|
+
manager = "manager",
|
|
1670
|
+
invited = "invited"
|
|
1666
1671
|
}
|
|
1667
|
-
interface
|
|
1672
|
+
interface BaseThreadCircle {
|
|
1668
1673
|
id: string;
|
|
1669
|
-
|
|
1670
|
-
threadId: string;
|
|
1671
|
-
thread: BaseThread;
|
|
1672
|
-
status: ThreadInvitationStatus;
|
|
1673
|
-
role: ThreadMemberRole;
|
|
1674
|
-
invitedById: string;
|
|
1675
|
-
invitedBy: BaseAccount;
|
|
1676
|
-
invitedId: string;
|
|
1677
|
-
invited: BaseAccount;
|
|
1674
|
+
name: string;
|
|
1678
1675
|
createdAt: string;
|
|
1679
1676
|
updatedAt: string;
|
|
1680
1677
|
}
|
|
1681
|
-
interface
|
|
1682
|
-
id: string;
|
|
1683
|
-
name: string;
|
|
1678
|
+
interface ThreadCircle extends BaseThreadCircle {
|
|
1684
1679
|
}
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1680
|
+
interface BaseThreadCircleAccount {
|
|
1681
|
+
accountId: string;
|
|
1682
|
+
role: ThreadCircleAccountRole;
|
|
1683
|
+
account: BaseAccount;
|
|
1688
1684
|
}
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1685
|
+
interface ThreadCircleAccount extends BaseThreadCircleAccount {
|
|
1686
|
+
}
|
|
1687
|
+
interface BaseThread {
|
|
1688
|
+
id: string;
|
|
1689
|
+
subject: string;
|
|
1690
|
+
image: BaseImage | null;
|
|
1691
|
+
lastMessageAt: string | null;
|
|
1692
1692
|
}
|
|
1693
1693
|
declare enum ThreadMessageType {
|
|
1694
1694
|
user = "user",
|
|
1695
1695
|
bot = "bot",
|
|
1696
1696
|
system = "system"
|
|
1697
1697
|
}
|
|
1698
|
-
interface
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
message: BaseThreadMessage;
|
|
1704
|
-
accountId: string;
|
|
1705
|
-
account: BaseAccount;
|
|
1706
|
-
emojiName: string;
|
|
1707
|
-
createdAt: string;
|
|
1708
|
-
updatedAt: string;
|
|
1698
|
+
interface Thread extends BaseThread {
|
|
1699
|
+
viewers: {
|
|
1700
|
+
accountId: string;
|
|
1701
|
+
lastReadAt: string | null;
|
|
1702
|
+
}[];
|
|
1709
1703
|
}
|
|
1710
|
-
interface
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
threadId: string;
|
|
1714
|
-
body: string;
|
|
1715
|
-
createdAt: string;
|
|
1716
|
-
replyToId: string | null;
|
|
1717
|
-
reactions: ThreadMessageReaction[];
|
|
1704
|
+
interface BaseThreadViewer {
|
|
1705
|
+
lastReadAt: string | null;
|
|
1706
|
+
notifications: boolean;
|
|
1718
1707
|
account: BaseAccount;
|
|
1719
1708
|
}
|
|
1720
|
-
interface
|
|
1709
|
+
interface ThreadViewer extends BaseThreadViewer {
|
|
1710
|
+
status: string;
|
|
1711
|
+
}
|
|
1712
|
+
interface BaseThreadMessage {
|
|
1721
1713
|
id: string;
|
|
1722
|
-
organizationId: string;
|
|
1723
|
-
threadId: string;
|
|
1724
|
-
thread: BaseThread;
|
|
1725
|
-
accountId: string;
|
|
1726
|
-
account: BaseAccount;
|
|
1727
1714
|
type: ThreadMessageType;
|
|
1728
|
-
body: string;
|
|
1729
|
-
reactions: ThreadMessageReaction[];
|
|
1730
|
-
replyToId: string | null;
|
|
1731
|
-
replyTo: BaseThreadMessage | null;
|
|
1732
|
-
replies: BaseThreadMessage[];
|
|
1733
|
-
mentions: BaseAccount[];
|
|
1734
|
-
files: BaseFile[];
|
|
1735
|
-
images: BaseImage[];
|
|
1736
|
-
videos: BaseVideo[];
|
|
1737
1715
|
editedAt: string | null;
|
|
1716
|
+
body: string;
|
|
1738
1717
|
sentAt: string;
|
|
1739
|
-
|
|
1740
|
-
|
|
1718
|
+
accountId: string;
|
|
1719
|
+
viewer: BaseThreadViewer;
|
|
1741
1720
|
}
|
|
1742
|
-
interface
|
|
1721
|
+
interface ThreadMessage extends BaseThreadMessage {
|
|
1722
|
+
reactions: BaseThreadMessageReaction[];
|
|
1743
1723
|
}
|
|
1744
|
-
interface
|
|
1724
|
+
interface BaseThreadMessageEntity {
|
|
1725
|
+
type: ActivityEntityType;
|
|
1726
|
+
startIndex: number;
|
|
1727
|
+
endIndex: number;
|
|
1728
|
+
marks: string[];
|
|
1729
|
+
account: BaseAccount | null;
|
|
1730
|
+
linkPreview: BaseLinkPreview | null;
|
|
1731
|
+
}
|
|
1732
|
+
interface ThreadMessageEntity extends BaseThreadMessageEntity {
|
|
1733
|
+
}
|
|
1734
|
+
interface BaseThreadMessageReaction {
|
|
1745
1735
|
id: string;
|
|
1746
|
-
organizationId: string;
|
|
1747
|
-
threadId: string;
|
|
1748
|
-
thread: BaseThread;
|
|
1749
1736
|
accountId: string;
|
|
1750
|
-
|
|
1751
|
-
role: ThreadMemberRole;
|
|
1752
|
-
accepted: boolean;
|
|
1753
|
-
lastReadAt: string | null;
|
|
1754
|
-
notifications: boolean;
|
|
1755
|
-
createdAt: string;
|
|
1756
|
-
updatedAt: string;
|
|
1737
|
+
emojiName: string;
|
|
1757
1738
|
}
|
|
1758
|
-
interface
|
|
1759
|
-
|
|
1760
|
-
organization: BaseOrganization;
|
|
1761
|
-
featured: boolean;
|
|
1762
|
-
visible: boolean;
|
|
1763
|
-
access: ThreadAccessLevel;
|
|
1764
|
-
id: string;
|
|
1765
|
-
name: string;
|
|
1766
|
-
description: string | null;
|
|
1767
|
-
lastMessageAt: string | null;
|
|
1768
|
-
groupId: string | null;
|
|
1769
|
-
group: BaseGroup | null;
|
|
1770
|
-
eventId: string | null;
|
|
1771
|
-
event: BaseEvent | null;
|
|
1772
|
-
members: ThreadMember[];
|
|
1773
|
-
messages: ThreadMessage[];
|
|
1774
|
-
invitations: ThreadInvitation[];
|
|
1775
|
-
image: BaseImage | null;
|
|
1776
|
-
imageId: string | null;
|
|
1739
|
+
interface ThreadMessageReaction extends BaseThreadMessageReaction {
|
|
1740
|
+
account: BaseAccount;
|
|
1777
1741
|
createdAt: string;
|
|
1778
|
-
updatedAt: string;
|
|
1779
1742
|
}
|
|
1780
1743
|
declare enum DefaultAuthAction {
|
|
1781
1744
|
signIn = "signIn",
|
|
@@ -2302,16 +2265,6 @@ declare const GetErrorMessage: (error: any, fallback?: string) => string;
|
|
|
2302
2265
|
|
|
2303
2266
|
declare function MergeInfinitePages<TData>(data: InfiniteData<ConnectedXMResponse<TData[]>>): TData[];
|
|
2304
2267
|
|
|
2305
|
-
interface ItemWithId {
|
|
2306
|
-
id: string;
|
|
2307
|
-
alternateId?: number;
|
|
2308
|
-
slug?: string;
|
|
2309
|
-
username?: string;
|
|
2310
|
-
name?: string | null;
|
|
2311
|
-
code?: string;
|
|
2312
|
-
}
|
|
2313
|
-
declare const CacheIndividualQueries: <TData extends ItemWithId>(page: ConnectedXMResponse<TData[]>, queryClient: QueryClient, queryKeyFn: (id: string) => QueryKey, locale?: string, itemMap?: (item: TData) => TData) => void;
|
|
2314
|
-
|
|
2315
2268
|
declare const isUUID: (id: string) => boolean;
|
|
2316
2269
|
|
|
2317
2270
|
interface ClientApiParams {
|
|
@@ -2375,7 +2328,7 @@ declare const SET_ACCOUNT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams
|
|
|
2375
2328
|
interface GetAccountActivitiesProps extends InfiniteQueryParams {
|
|
2376
2329
|
accountId: string;
|
|
2377
2330
|
}
|
|
2378
|
-
declare const GetAccountActivities: ({ pageParam, pageSize, orderBy, search, accountId,
|
|
2331
|
+
declare const GetAccountActivities: ({ pageParam, pageSize, orderBy, search, accountId, clientApiParams, }: GetAccountActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
2379
2332
|
declare const useGetAccountActivities: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2380
2333
|
|
|
2381
2334
|
declare const ACCOUNT_BY_SHARE_CODE_QUERY_KEY: (shareCode: string) => QueryKey;
|
|
@@ -2391,7 +2344,7 @@ declare const SET_ACCOUNT_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Pa
|
|
|
2391
2344
|
interface GetAccountGroupsProps extends InfiniteQueryParams {
|
|
2392
2345
|
accountId: string;
|
|
2393
2346
|
}
|
|
2394
|
-
declare const GetAccountGroups: ({ pageParam, pageSize, orderBy, search, accountId,
|
|
2347
|
+
declare const GetAccountGroups: ({ pageParam, pageSize, orderBy, search, accountId, clientApiParams, }: GetAccountGroupsProps) => Promise<ConnectedXMResponse<Group[]>>;
|
|
2395
2348
|
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>>;
|
|
2396
2349
|
|
|
2397
2350
|
declare const ACCOUNT_FOLLOWERS_QUERY_KEY: (accountId: string) => QueryKey;
|
|
@@ -2399,7 +2352,7 @@ declare const SET_ACCOUNT_FOLLOWERS_QUERY_DATA: (client: QueryClient, keyParams:
|
|
|
2399
2352
|
interface GetAccountFollowersProps extends InfiniteQueryParams {
|
|
2400
2353
|
accountId: string;
|
|
2401
2354
|
}
|
|
2402
|
-
declare const GetAccountFollowers: ({ pageParam, pageSize, orderBy, search, accountId,
|
|
2355
|
+
declare const GetAccountFollowers: ({ pageParam, pageSize, orderBy, search, accountId, clientApiParams, }: GetAccountFollowersProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
2403
2356
|
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>>;
|
|
2404
2357
|
|
|
2405
2358
|
declare const ACCOUNT_FOLLOWINGS_QUERY_KEY: (accountId: string) => QueryKey;
|
|
@@ -2407,7 +2360,7 @@ declare const SET_ACCOUNT_FOLLOWINGS_QUERY_DATA: (client: QueryClient, keyParams
|
|
|
2407
2360
|
interface GetAccountFollowingsProps extends InfiniteQueryParams {
|
|
2408
2361
|
accountId: string;
|
|
2409
2362
|
}
|
|
2410
|
-
declare const GetAccountFollowings: ({ pageParam, pageSize, orderBy, search, accountId,
|
|
2363
|
+
declare const GetAccountFollowings: ({ pageParam, pageSize, orderBy, search, accountId, clientApiParams, }: GetAccountFollowingsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
2411
2364
|
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>>;
|
|
2412
2365
|
|
|
2413
2366
|
declare const ACCOUNTS_QUERY_KEY: (accountType?: keyof typeof AccountType) => QueryKey;
|
|
@@ -2415,7 +2368,7 @@ declare const SET_ACCOUNTS_QUERY_DATA: (client: QueryClient, keyParams: Paramete
|
|
|
2415
2368
|
interface GetAccountsProps extends InfiniteQueryParams {
|
|
2416
2369
|
accountType?: keyof typeof AccountType;
|
|
2417
2370
|
}
|
|
2418
|
-
declare const GetAccounts: ({ pageParam, pageSize, orderBy, search, accountType,
|
|
2371
|
+
declare const GetAccounts: ({ pageParam, pageSize, orderBy, search, accountType, clientApiParams, }: GetAccountsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
2419
2372
|
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>>;
|
|
2420
2373
|
|
|
2421
2374
|
declare const ACCOUNTS_POPULAR_QUERY_KEY: (accountType?: keyof typeof AccountType) => QueryKey;
|
|
@@ -2423,7 +2376,7 @@ declare const SET_ACCOUNTS_POPULAR_QUERY_DATA: (client: QueryClient, keyParams:
|
|
|
2423
2376
|
interface GetAccountsPopularProps extends InfiniteQueryParams {
|
|
2424
2377
|
accountType?: keyof typeof AccountType;
|
|
2425
2378
|
}
|
|
2426
|
-
declare const GetAccountsPopular: ({ pageParam, pageSize, orderBy, search, accountType,
|
|
2379
|
+
declare const GetAccountsPopular: ({ pageParam, pageSize, orderBy, search, accountType, clientApiParams, }: GetAccountsPopularProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
2427
2380
|
declare const useGetAccountsPopular: (accountType?: keyof typeof AccountType, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountsPopular>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2428
2381
|
|
|
2429
2382
|
declare const ACCOUNT_MEDIA_QUERY_KEY: (accountId: string, type?: "images" | "videos") => QueryKey;
|
|
@@ -2439,7 +2392,7 @@ declare const ACTIVITIES_QUERY_KEY: () => QueryKey;
|
|
|
2439
2392
|
declare const SET_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetActivities>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2440
2393
|
interface GetActivitiesProps extends InfiniteQueryParams {
|
|
2441
2394
|
}
|
|
2442
|
-
declare const GetActivities: ({ pageParam, pageSize, orderBy, search,
|
|
2395
|
+
declare const GetActivities: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
2443
2396
|
declare const useGetActivities: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2444
2397
|
|
|
2445
2398
|
declare const ACTIVITY_QUERY_KEY: (activityId: string) => QueryKey;
|
|
@@ -2455,7 +2408,7 @@ declare const SET_ACTIVITY_COMMENTS_QUERY_DATA: (client: QueryClient, keyParams:
|
|
|
2455
2408
|
interface GetActivityCommentsProps extends InfiniteQueryParams {
|
|
2456
2409
|
activityId: string;
|
|
2457
2410
|
}
|
|
2458
|
-
declare const GetActivityComments: ({ activityId, pageParam, pageSize, orderBy, search,
|
|
2411
|
+
declare const GetActivityComments: ({ activityId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetActivityCommentsProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
2459
2412
|
declare const useGetActivityComments: (activityId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetActivityComments>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2460
2413
|
|
|
2461
2414
|
declare const ADVERTISEMENT_QUERY_KEY: (position: string) => QueryKey;
|
|
@@ -2493,7 +2446,7 @@ declare const BOOKING_PLACES_QUERY_KEY: () => QueryKey;
|
|
|
2493
2446
|
declare const SET_BOOKING_PLACES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BOOKING_PLACES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBookingPlaces>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2494
2447
|
interface GetBookingPlacesParams extends InfiniteQueryParams {
|
|
2495
2448
|
}
|
|
2496
|
-
declare const GetBookingPlaces: ({ pageParam, pageSize, orderBy, search,
|
|
2449
|
+
declare const GetBookingPlaces: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetBookingPlacesParams) => Promise<ConnectedXMResponse<BookingPlace[]>>;
|
|
2497
2450
|
declare const useGetBookingPlaces: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetBookingPlaces>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BookingPlace[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2498
2451
|
|
|
2499
2452
|
declare const BOOKING_PLACE_SPACE_QUERY_KEY: (placeId: string, spaceId: string) => QueryKey;
|
|
@@ -2510,7 +2463,7 @@ declare const SET_BOOKING_PLACE_SPACES_QUERY_DATA: (client: QueryClient, keyPara
|
|
|
2510
2463
|
interface GetBookingPlacesSpacesProps extends InfiniteQueryParams {
|
|
2511
2464
|
bookingId: string;
|
|
2512
2465
|
}
|
|
2513
|
-
declare const GetBookingPlacesSpaces: ({ bookingId, pageParam, pageSize, orderBy, search,
|
|
2466
|
+
declare const GetBookingPlacesSpaces: ({ bookingId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetBookingPlacesSpacesProps) => Promise<ConnectedXMResponse<BookingSpace[]>>;
|
|
2514
2467
|
declare const useGetBookingPlacesSpaces: (bookingId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetBookingPlacesSpaces>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BookingSpace[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2515
2468
|
|
|
2516
2469
|
declare const BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY: (placeId: string, spaceId: string, firstDayOfMonth?: string) => QueryKey;
|
|
@@ -2528,7 +2481,7 @@ interface GetBookingsParams extends InfiniteQueryParams {
|
|
|
2528
2481
|
past?: boolean;
|
|
2529
2482
|
placeId?: string;
|
|
2530
2483
|
}
|
|
2531
|
-
declare const GetBookings: ({ pageParam, pageSize, orderBy, search, past, placeId,
|
|
2484
|
+
declare const GetBookings: ({ pageParam, pageSize, orderBy, search, past, placeId, clientApiParams, }: GetBookingsParams) => Promise<ConnectedXMResponse<Booking[]>>;
|
|
2532
2485
|
declare const useGetBookings: (past?: boolean, placeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetBookings>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Booking[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2533
2486
|
|
|
2534
2487
|
declare const BENEFITS_QUERY_KEY: () => QueryKey;
|
|
@@ -2543,7 +2496,7 @@ declare const SET_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters
|
|
|
2543
2496
|
interface GetGroupsProps extends InfiniteQueryParams {
|
|
2544
2497
|
access?: "public" | "private";
|
|
2545
2498
|
}
|
|
2546
|
-
declare const GetGroups: ({ pageParam, pageSize, orderBy, search, access,
|
|
2499
|
+
declare const GetGroups: ({ pageParam, pageSize, orderBy, search, access, clientApiParams, }: GetGroupsProps) => Promise<ConnectedXMResponse<Group[]>>;
|
|
2547
2500
|
declare const useGetGroups: (access?: "public" | "private", params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroups>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2548
2501
|
|
|
2549
2502
|
declare const GROUP_QUERY_KEY: (groupId: string) => QueryKey;
|
|
@@ -2559,7 +2512,7 @@ declare const SET_GROUP_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams:
|
|
|
2559
2512
|
interface GetGroupActivitiesProps extends InfiniteQueryParams {
|
|
2560
2513
|
groupId: string;
|
|
2561
2514
|
}
|
|
2562
|
-
declare const GetGroupActivities: ({ pageParam, pageSize, orderBy, search, groupId,
|
|
2515
|
+
declare const GetGroupActivities: ({ pageParam, pageSize, orderBy, search, groupId, clientApiParams, }: GetGroupActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
2563
2516
|
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>>;
|
|
2564
2517
|
|
|
2565
2518
|
declare const GROUP_ANNOUNCEMENTS_QUERY_KEY: (groupId: string) => QueryKey;
|
|
@@ -2585,7 +2538,7 @@ interface GetGroupEventsProps extends InfiniteQueryParams {
|
|
|
2585
2538
|
groupId: string;
|
|
2586
2539
|
past?: boolean;
|
|
2587
2540
|
}
|
|
2588
|
-
declare const GetGroupEvents: ({ pageParam, pageSize, orderBy, search, groupId, past,
|
|
2541
|
+
declare const GetGroupEvents: ({ pageParam, pageSize, orderBy, search, groupId, past, clientApiParams, }: GetGroupEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
2589
2542
|
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>>;
|
|
2590
2543
|
|
|
2591
2544
|
declare const GROUP_MEMBERS_QUERY_KEY: (groupId: string, role?: keyof typeof GroupMembershipRole) => QueryKey;
|
|
@@ -2602,7 +2555,7 @@ declare const SET_GROUP_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Pa
|
|
|
2602
2555
|
interface GetGroupSponsorsProps extends InfiniteQueryParams {
|
|
2603
2556
|
groupId: string;
|
|
2604
2557
|
}
|
|
2605
|
-
declare const GetGroupSponsors: ({ pageParam, pageSize, orderBy, search, groupId,
|
|
2558
|
+
declare const GetGroupSponsors: ({ pageParam, pageSize, orderBy, search, groupId, clientApiParams, }: GetGroupSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
2606
2559
|
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>>;
|
|
2607
2560
|
|
|
2608
2561
|
declare const GROUP_REQUEST_QUERY_KEY: (groupId: string, requestId: string) => QueryKey;
|
|
@@ -2620,7 +2573,7 @@ interface GetGroupRequestsProps extends InfiniteQueryParams {
|
|
|
2620
2573
|
groupId: string;
|
|
2621
2574
|
status?: keyof typeof GroupRequestStatus;
|
|
2622
2575
|
}
|
|
2623
|
-
declare const GetGroupRequests: ({ pageParam, pageSize, orderBy, search, status, groupId,
|
|
2576
|
+
declare const GetGroupRequests: ({ pageParam, pageSize, orderBy, search, status, groupId, clientApiParams, }: GetGroupRequestsProps) => Promise<ConnectedXMResponse<GroupRequest[]>>;
|
|
2624
2577
|
declare const useGetGroupRequests: (groupId?: string, status?: keyof typeof GroupRequestStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupRequests>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<GroupRequest[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2625
2578
|
|
|
2626
2579
|
declare const GROUP_INVITABLE_ACCOUNTS_QUERY_KEY: (groupId: string) => QueryKey;
|
|
@@ -2642,20 +2595,20 @@ declare const useGetGroupInvitations: (groupId?: string, status?: keyof typeof G
|
|
|
2642
2595
|
declare const GROUPS_FEATURED_QUERY_KEY: () => QueryKey;
|
|
2643
2596
|
interface GetGroupsFeaturedProps extends InfiniteQueryParams {
|
|
2644
2597
|
}
|
|
2645
|
-
declare const GetGroupsFeatured: ({ pageParam, pageSize, orderBy, search,
|
|
2598
|
+
declare const GetGroupsFeatured: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupsFeaturedProps) => Promise<ConnectedXMResponse<Group[]>>;
|
|
2646
2599
|
declare const useGetGroupsFeatured: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupsFeatured>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2647
2600
|
|
|
2648
2601
|
declare const GROUPS_INVITED_QUERY_KEY: (rejected?: boolean) => QueryKey;
|
|
2649
2602
|
interface GetGroupsInvitedProps extends InfiniteQueryParams {
|
|
2650
2603
|
rejected?: boolean;
|
|
2651
2604
|
}
|
|
2652
|
-
declare const GetGroupsInvited: ({ rejected, pageParam, pageSize, orderBy, search,
|
|
2605
|
+
declare const GetGroupsInvited: ({ rejected, pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupsInvitedProps) => Promise<ConnectedXMResponse<Group[]>>;
|
|
2653
2606
|
declare const useGetGroupsInvited: (rejected?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupsInvited>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2654
2607
|
|
|
2655
2608
|
declare const GROUPS_REQUESTED_QUERY_KEY: () => QueryKey;
|
|
2656
2609
|
interface GetGroupsRequestedProps extends InfiniteQueryParams {
|
|
2657
2610
|
}
|
|
2658
|
-
declare const GetGroupsRequested: ({ pageParam, pageSize, orderBy, search,
|
|
2611
|
+
declare const GetGroupsRequested: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupsRequestedProps) => Promise<ConnectedXMResponse<Group[]>>;
|
|
2659
2612
|
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>>;
|
|
2660
2613
|
|
|
2661
2614
|
declare const ALL_GROUP_EVENTS: (past?: boolean) => QueryKey;
|
|
@@ -2663,7 +2616,7 @@ declare const SET_ALL_GROUP_EVENTS_QUERY_DATA: (client: QueryClient, keyParams:
|
|
|
2663
2616
|
interface GetAllGroupEventsProps extends InfiniteQueryParams {
|
|
2664
2617
|
past?: boolean;
|
|
2665
2618
|
}
|
|
2666
|
-
declare const GetAllGroupEvents: ({ pageParam, pageSize, orderBy, search, past,
|
|
2619
|
+
declare const GetAllGroupEvents: ({ pageParam, pageSize, orderBy, search, past, clientApiParams, }: GetAllGroupEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
2667
2620
|
declare const useGetAllGroupEvents: (past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAllGroupEvents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2668
2621
|
|
|
2669
2622
|
declare const CHANNEL_COLLECTION_QUERY_KEY: (channelId: string, collectionId: string) => QueryKey;
|
|
@@ -2680,7 +2633,7 @@ interface GetChannelCollectionContentsParams extends InfiniteQueryParams {
|
|
|
2680
2633
|
channelId: string;
|
|
2681
2634
|
collectionId: string;
|
|
2682
2635
|
}
|
|
2683
|
-
declare const GetChannelCollectionContents: ({ channelId, collectionId, pageParam, pageSize, orderBy, search,
|
|
2636
|
+
declare const GetChannelCollectionContents: ({ channelId, collectionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetChannelCollectionContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
|
|
2684
2637
|
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>>;
|
|
2685
2638
|
|
|
2686
2639
|
declare const CHANNEL_COLLECTIONS_QUERY_KEY: (channelId: string) => QueryKey;
|
|
@@ -2688,7 +2641,7 @@ declare const SET_CHANNEL_COLLECTIONS_QUERY_DATA: (client: QueryClient, keyParam
|
|
|
2688
2641
|
interface GetChannelCollectionsParams extends InfiniteQueryParams {
|
|
2689
2642
|
channelId: string;
|
|
2690
2643
|
}
|
|
2691
|
-
declare const GetChannelCollections: ({ channelId, pageParam, pageSize, orderBy, search,
|
|
2644
|
+
declare const GetChannelCollections: ({ channelId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetChannelCollectionsParams) => Promise<ConnectedXMResponse<ChannelCollection[]>>;
|
|
2692
2645
|
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>>;
|
|
2693
2646
|
|
|
2694
2647
|
declare const CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
|
|
@@ -2697,7 +2650,7 @@ interface GetChannelContentActivitiesParams extends InfiniteQueryParams {
|
|
|
2697
2650
|
channelId: string;
|
|
2698
2651
|
contentId: string;
|
|
2699
2652
|
}
|
|
2700
|
-
declare const GetChannelContentActivities: ({ channelId, contentId, pageParam, pageSize, orderBy, search,
|
|
2653
|
+
declare const GetChannelContentActivities: ({ channelId, contentId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetChannelContentActivitiesParams) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
2701
2654
|
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>>;
|
|
2702
2655
|
|
|
2703
2656
|
declare const CHANNEL_CONTENT_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
|
|
@@ -2717,7 +2670,7 @@ interface GetChannelContentsParams extends InfiniteQueryParams {
|
|
|
2717
2670
|
featured?: boolean;
|
|
2718
2671
|
past?: boolean;
|
|
2719
2672
|
}
|
|
2720
|
-
declare const GetChannelContents: ({ channelId, type, featured, past, pageParam, pageSize, orderBy, search,
|
|
2673
|
+
declare const GetChannelContents: ({ channelId, type, featured, past, pageParam, pageSize, orderBy, search, clientApiParams, }: GetChannelContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
|
|
2721
2674
|
declare const useGetChannelContents: (channelId?: string, type?: "video" | "audio" | "article", featured?: boolean, past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2722
2675
|
|
|
2723
2676
|
declare const CHANNEL_CONTENT_INTERESTS_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
|
|
@@ -2750,7 +2703,7 @@ interface GetManagedChannelCollectionContentsParams extends InfiniteQueryParams
|
|
|
2750
2703
|
channelId: string;
|
|
2751
2704
|
collectionId: string;
|
|
2752
2705
|
}
|
|
2753
|
-
declare const GetManagedChannelCollectionContents: ({ channelId, collectionId, pageParam, pageSize, orderBy, search,
|
|
2706
|
+
declare const GetManagedChannelCollectionContents: ({ channelId, collectionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetManagedChannelCollectionContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
|
|
2754
2707
|
declare const useGetManagedChannelCollectionContents: (channelId: string, collectionId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetManagedChannelCollectionContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2755
2708
|
|
|
2756
2709
|
declare const MANAGED_CHANNEL_COLLECTIONS_QUERY_KEY: (channelId: string) => QueryKey;
|
|
@@ -2758,7 +2711,7 @@ declare const SET_MANAGED_CHANNEL_COLLECTIONS_QUERY_DATA: (client: QueryClient,
|
|
|
2758
2711
|
interface GetManagedChannelCollectionsParams extends InfiniteQueryParams {
|
|
2759
2712
|
channelId: string;
|
|
2760
2713
|
}
|
|
2761
|
-
declare const GetManagedChannelCollections: ({ channelId, pageParam, pageSize, orderBy, search,
|
|
2714
|
+
declare const GetManagedChannelCollections: ({ channelId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetManagedChannelCollectionsParams) => Promise<ConnectedXMResponse<ChannelCollection[]>>;
|
|
2762
2715
|
declare const useGetManagedChannelCollections: (channelId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetManagedChannelCollections>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChannelCollection[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2763
2716
|
|
|
2764
2717
|
declare const MANAGED_CHANNEL_CONTENT_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
|
|
@@ -2776,7 +2729,7 @@ interface GetManagedChannelContentActivitiesParams extends InfiniteQueryParams {
|
|
|
2776
2729
|
channelId: string;
|
|
2777
2730
|
contentId: string;
|
|
2778
2731
|
}
|
|
2779
|
-
declare const GetManagedChannelContentActivities: ({ channelId, contentId, pageParam, pageSize, orderBy, search,
|
|
2732
|
+
declare const GetManagedChannelContentActivities: ({ channelId, contentId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetManagedChannelContentActivitiesParams) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
2780
2733
|
declare const useGetManagedChannelContentActivities: (channelId?: string, contentId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetManagedChannelContentActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2781
2734
|
|
|
2782
2735
|
declare const MANAGED_CHANNEL_CONTENT_INTERESTS_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
|
|
@@ -2792,7 +2745,7 @@ declare const SET_MANAGED_CHANNEL_CONTENTS_QUERY_DATA: (client: QueryClient, key
|
|
|
2792
2745
|
interface GetManagedChannelContentsParams extends InfiniteQueryParams {
|
|
2793
2746
|
channelId: string;
|
|
2794
2747
|
}
|
|
2795
|
-
declare const GetManagedChannelContents: ({ pageParam, pageSize, orderBy, search, channelId,
|
|
2748
|
+
declare const GetManagedChannelContents: ({ pageParam, pageSize, orderBy, search, channelId, clientApiParams, }: GetManagedChannelContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
|
|
2796
2749
|
declare const useGetManagedChannelContents: (channelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetManagedChannelContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2797
2750
|
|
|
2798
2751
|
declare const MANAGED_CHANNEL_CONTENT_GUESTS_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
|
|
@@ -2815,7 +2768,7 @@ declare const MANAGED_CHANNELS_QUERY_KEY: () => QueryKey;
|
|
|
2815
2768
|
declare const SET_MANAGED_CHANNELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MANAGED_CHANNELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetManagedChannels>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2816
2769
|
interface GetManagedChannelsParams extends InfiniteQueryParams {
|
|
2817
2770
|
}
|
|
2818
|
-
declare const GetManagedChannels: ({ pageParam, pageSize, orderBy, search,
|
|
2771
|
+
declare const GetManagedChannels: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetManagedChannelsParams) => Promise<ConnectedXMResponse<Channel[]>>;
|
|
2819
2772
|
declare const useGetManagedChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetManagedChannels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Channel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2820
2773
|
|
|
2821
2774
|
declare const MANAGED_CHANNEL_SUBSCRIBERS_QUERY_KEY: (channelId: string) => QueryKey;
|
|
@@ -2845,13 +2798,13 @@ declare const CHANNELS_QUERY_KEY: () => QueryKey;
|
|
|
2845
2798
|
declare const SET_CHANNELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannels>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2846
2799
|
interface GetChannelsParams extends InfiniteQueryParams {
|
|
2847
2800
|
}
|
|
2848
|
-
declare const GetChannels: ({ pageParam, pageSize, orderBy, search,
|
|
2801
|
+
declare const GetChannels: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetChannelsParams) => Promise<ConnectedXMResponse<Channel[]>>;
|
|
2849
2802
|
declare const useGetChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Channel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2850
2803
|
|
|
2851
2804
|
declare const SUBSCRIBED_CHANNELS_QUERY_KEY: () => QueryKey;
|
|
2852
2805
|
interface GetSubscribedChannelsParams extends InfiniteQueryParams {
|
|
2853
2806
|
}
|
|
2854
|
-
declare const GetSubscribedChannels: ({ pageParam, pageSize, orderBy, search,
|
|
2807
|
+
declare const GetSubscribedChannels: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSubscribedChannelsParams) => Promise<ConnectedXMResponse<Channel[]>>;
|
|
2855
2808
|
declare const useGetSubscribedChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSubscribedChannels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Channel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2856
2809
|
|
|
2857
2810
|
declare const CHANNEL_INTERESTS_QUERY_KEY: (channelId: string) => QueryKey;
|
|
@@ -2907,7 +2860,7 @@ declare const SET_EVENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams:
|
|
|
2907
2860
|
interface GetEventActivitiesProps extends InfiniteQueryParams {
|
|
2908
2861
|
eventId: string;
|
|
2909
2862
|
}
|
|
2910
|
-
declare const GetEventActivities: ({ eventId, pageParam, pageSize, orderBy, search,
|
|
2863
|
+
declare const GetEventActivities: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
2911
2864
|
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>>;
|
|
2912
2865
|
|
|
2913
2866
|
declare const EVENT_FAQ_SECTION_QUERY_KEY: (eventId: string, sectionId: string) => QueryKey;
|
|
@@ -2935,7 +2888,7 @@ interface GetEventFaqsProps extends InfiniteQueryParams {
|
|
|
2935
2888
|
eventId: string;
|
|
2936
2889
|
sectionId: string;
|
|
2937
2890
|
}
|
|
2938
|
-
declare const GetEventFaqs: ({ eventId, sectionId, pageParam, pageSize, orderBy, search,
|
|
2891
|
+
declare const GetEventFaqs: ({ eventId, sectionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventFaqsProps) => Promise<ConnectedXMResponse<Faq[]>>;
|
|
2939
2892
|
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>>;
|
|
2940
2893
|
|
|
2941
2894
|
declare const EVENT_FAQ_SECTIONS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
@@ -2943,7 +2896,7 @@ declare const SET_EVENT_FAQ_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams
|
|
|
2943
2896
|
interface GetEventFaqSectionsProps extends InfiniteQueryParams {
|
|
2944
2897
|
eventId: string;
|
|
2945
2898
|
}
|
|
2946
|
-
declare const GetEventFaqSections: ({ eventId, pageParam, pageSize, orderBy, search,
|
|
2899
|
+
declare const GetEventFaqSections: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventFaqSectionsProps) => Promise<ConnectedXMResponse<FaqSection[]>>;
|
|
2947
2900
|
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>>;
|
|
2948
2901
|
|
|
2949
2902
|
declare const EVENT_PAGE_QUERY_KEY: (eventId: string, pageId: string) => QueryKey;
|
|
@@ -2960,7 +2913,7 @@ declare const SET_EVENT_PAGES_QUERY_DATA: (client: QueryClient, keyParams: Param
|
|
|
2960
2913
|
interface GetEventPagesProps extends InfiniteQueryParams {
|
|
2961
2914
|
eventId: string;
|
|
2962
2915
|
}
|
|
2963
|
-
declare const GetEventPages: ({ eventId, pageParam, pageSize, orderBy, search,
|
|
2916
|
+
declare const GetEventPages: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventPagesProps) => Promise<ConnectedXMResponse<BaseEventPage[]>>;
|
|
2964
2917
|
declare const useGetEventPages: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPages>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BaseEventPage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2965
2918
|
|
|
2966
2919
|
declare const EVENT_QUESTION_VALUES_QUERY_KEY: (eventId: string, questionId: string) => unknown[];
|
|
@@ -2985,7 +2938,7 @@ declare const SET_EVENT_REGISTRANTS_QUERY_DATA: (client: QueryClient, keyParams:
|
|
|
2985
2938
|
interface GetEventRegistrantsProps extends InfiniteQueryParams {
|
|
2986
2939
|
eventId: string;
|
|
2987
2940
|
}
|
|
2988
|
-
declare const GetEventRegistrants: ({ eventId, pageParam, pageSize, orderBy, search,
|
|
2941
|
+
declare const GetEventRegistrants: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventRegistrantsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
2989
2942
|
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>>;
|
|
2990
2943
|
|
|
2991
2944
|
declare const EVENTS_QUERY_KEY: (past?: boolean) => QueryKey;
|
|
@@ -3019,7 +2972,7 @@ declare const SET_EVENT_SPEAKERS_QUERY_DATA: (client: QueryClient, keyParams: Pa
|
|
|
3019
2972
|
interface GetEventSpeakersProps extends InfiniteQueryParams {
|
|
3020
2973
|
eventId: string;
|
|
3021
2974
|
}
|
|
3022
|
-
declare const GetEventSpeakers: ({ eventId, pageParam, pageSize, orderBy, search,
|
|
2975
|
+
declare const GetEventSpeakers: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventSpeakersProps) => Promise<ConnectedXMResponse<Speaker[]>>;
|
|
3023
2976
|
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>>;
|
|
3024
2977
|
|
|
3025
2978
|
declare const EVENT_SPONSORS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
@@ -3027,7 +2980,7 @@ declare const SET_EVENT_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Pa
|
|
|
3027
2980
|
interface GetEventSponsorsProps extends InfiniteQueryParams {
|
|
3028
2981
|
eventId: string;
|
|
3029
2982
|
}
|
|
3030
|
-
declare const GetEventSponsors: ({ eventId, pageParam, pageSize, orderBy, search,
|
|
2983
|
+
declare const GetEventSponsors: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
3031
2984
|
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>>;
|
|
3032
2985
|
|
|
3033
2986
|
declare const EVENTS_FEATURED_QUERY_KEY: () => QueryKey;
|
|
@@ -3060,7 +3013,7 @@ declare const SET_EVENT_ACTIVATIONS_QUERY_DATA: (client: QueryClient, keyParams:
|
|
|
3060
3013
|
interface GetEventActivationsProps extends InfiniteQueryParams {
|
|
3061
3014
|
eventId: string;
|
|
3062
3015
|
}
|
|
3063
|
-
declare const GetEventActivations: ({ eventId, pageParam, pageSize, orderBy, search,
|
|
3016
|
+
declare const GetEventActivations: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventActivationsProps) => Promise<ConnectedXMResponse<EventActivation[]>>;
|
|
3064
3017
|
declare const useGetEventActivations: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventActivations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventActivation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3065
3018
|
|
|
3066
3019
|
declare const EVENT_ACTIVATIONS_LEADERBOARD_QUERY_KEY: (eventId: string) => QueryKey;
|
|
@@ -3178,7 +3131,7 @@ declare const useGetSelfAddress: (addressId?: string, options?: SingleQueryOptio
|
|
|
3178
3131
|
declare const SELF_ADDRESSES_QUERY_KEY: () => QueryKey;
|
|
3179
3132
|
interface GetSelfAddressesProps extends InfiniteQueryParams {
|
|
3180
3133
|
}
|
|
3181
|
-
declare const GetSelfAddresses: ({ pageParam, pageSize, orderBy, search,
|
|
3134
|
+
declare const GetSelfAddresses: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfAddressesProps) => Promise<ConnectedXMResponse<AccountAddress[]>>;
|
|
3182
3135
|
declare const useGetSelfAddresses: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfAddresses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<AccountAddress[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3183
3136
|
|
|
3184
3137
|
declare const SELF_LEAD_QUERY_KEY: (leadId: string) => QueryKey;
|
|
@@ -3192,7 +3145,7 @@ declare const SELF_LEADS_QUERY_KEY: (status?: keyof typeof LeadStatus) => QueryK
|
|
|
3192
3145
|
interface GetSelfLeadsProps extends InfiniteQueryParams {
|
|
3193
3146
|
status?: keyof typeof LeadStatus;
|
|
3194
3147
|
}
|
|
3195
|
-
declare const GetSelfLeads: ({ status, pageParam, pageSize, orderBy, search,
|
|
3148
|
+
declare const GetSelfLeads: ({ status, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfLeadsProps) => Promise<ConnectedXMResponse<Lead[]>>;
|
|
3196
3149
|
declare const useGetSelfLeads: (status?: keyof typeof LeadStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfLeads>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Lead[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3197
3150
|
|
|
3198
3151
|
declare const SELF_LEAD_COUNTS_QUERY_KEY: () => QueryKey;
|
|
@@ -3229,7 +3182,7 @@ declare const SELF_CHAT_CHANNELS_QUERY_KEY: () => QueryKey;
|
|
|
3229
3182
|
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;
|
|
3230
3183
|
interface GetSelfChatChannelsProps extends InfiniteQueryParams {
|
|
3231
3184
|
}
|
|
3232
|
-
declare const GetSelfChatChannels: ({ pageParam, pageSize, orderBy, search,
|
|
3185
|
+
declare const GetSelfChatChannels: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfChatChannelsProps) => Promise<ConnectedXMResponse<ChatChannelMember[]>>;
|
|
3233
3186
|
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>>;
|
|
3234
3187
|
|
|
3235
3188
|
declare const SELF_EVENT_REGISTRATION_QUERY_KEY: (eventId: string) => QueryKey;
|
|
@@ -3353,7 +3306,7 @@ declare const SELF_SUBSCRIPTIONS_QUERY_KEY: (status?: SubscriptionStatus) => unk
|
|
|
3353
3306
|
interface GetSelfSubscriptionsProps extends InfiniteQueryParams {
|
|
3354
3307
|
status?: SubscriptionStatus;
|
|
3355
3308
|
}
|
|
3356
|
-
declare const GetSelfSubscriptions: ({ status, pageParam, pageSize, orderBy, search,
|
|
3309
|
+
declare const GetSelfSubscriptions: ({ status, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
|
|
3357
3310
|
declare const useGetSelfSubscriptions: (status?: SubscriptionStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfSubscriptions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Subscription[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3358
3311
|
|
|
3359
3312
|
declare const SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY: (subscriptionId: string) => unknown[];
|
|
@@ -3512,7 +3465,7 @@ declare const useGetSelfRelationships: (options?: SingleQueryOptions<ReturnType<
|
|
|
3512
3465
|
declare const SELF_ACTIVITIES_QUERY_KEY: () => QueryKey;
|
|
3513
3466
|
interface GetSelfActivitiesProps extends InfiniteQueryParams {
|
|
3514
3467
|
}
|
|
3515
|
-
declare const GetSelfActivities: ({ pageParam, pageSize, orderBy, search,
|
|
3468
|
+
declare const GetSelfActivities: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
3516
3469
|
declare const useGetSelfActivities: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3517
3470
|
|
|
3518
3471
|
declare const SELF_ANNOUNCEMENT_QUERY_KEY: (announcementId: string) => QueryKey;
|
|
@@ -3540,33 +3493,33 @@ declare const useGetSelfGroupMemberships: (role?: "member" | "moderator", params
|
|
|
3540
3493
|
declare const SELF_DELEGATE_OF_QUERY_KEY: () => QueryKey;
|
|
3541
3494
|
interface GetSelfDelegateOfProps extends InfiniteQueryParams {
|
|
3542
3495
|
}
|
|
3543
|
-
declare const GetSelfDelegateOf: ({ pageParam, pageSize, orderBy, search,
|
|
3496
|
+
declare const GetSelfDelegateOf: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfDelegateOfProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
3544
3497
|
declare const useGetSelfDelegateOf: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfDelegateOf>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3545
3498
|
|
|
3546
3499
|
declare const SELF_DELEGATES_QUERY_KEY: () => QueryKey;
|
|
3547
3500
|
interface GetSelfDelegatesProps extends InfiniteQueryParams {
|
|
3548
3501
|
}
|
|
3549
|
-
declare const GetSelfDelegates: ({ pageParam, pageSize, orderBy, search,
|
|
3502
|
+
declare const GetSelfDelegates: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfDelegatesProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
3550
3503
|
declare const useGetSelfDelegates: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfDelegates>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3551
3504
|
|
|
3552
3505
|
declare const SELF_EVENTS_QUERY_KEY: (past: boolean) => QueryKey;
|
|
3553
3506
|
interface GetSelfEventsProps extends InfiniteQueryParams {
|
|
3554
3507
|
past?: boolean;
|
|
3555
3508
|
}
|
|
3556
|
-
declare const GetSelfEvents: ({ pageParam, pageSize, orderBy, search, past,
|
|
3509
|
+
declare const GetSelfEvents: ({ pageParam, pageSize, orderBy, search, past, clientApiParams, }: GetSelfEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
3557
3510
|
declare const useGetSelfEvents: (past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEvents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3558
3511
|
|
|
3559
3512
|
declare const SELF_EVENT_SESSIONS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
3560
3513
|
interface GetSelfEventSessionsProps extends InfiniteQueryParams {
|
|
3561
3514
|
eventId: string;
|
|
3562
3515
|
}
|
|
3563
|
-
declare const GetSelfEventSessions: ({ eventId, pageParam, pageSize, orderBy, search,
|
|
3516
|
+
declare const GetSelfEventSessions: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventSessionsProps) => Promise<ConnectedXMResponse<Session[]>>;
|
|
3564
3517
|
declare const useGetSelfEventSessions: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventSessions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Session[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3565
3518
|
|
|
3566
3519
|
declare const SELF_FEED_QUERY_KEY: () => QueryKey;
|
|
3567
3520
|
interface GetSelfFeedProps extends InfiniteQueryParams {
|
|
3568
3521
|
}
|
|
3569
|
-
declare const GetSelfFeed: ({ pageParam, pageSize, orderBy, search,
|
|
3522
|
+
declare const GetSelfFeed: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfFeedProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
3570
3523
|
declare const useGetSelfFeed: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfFeed>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3571
3524
|
|
|
3572
3525
|
declare const SELF_INTERESTS_QUERY_KEY: () => QueryKey;
|
|
@@ -3605,7 +3558,7 @@ declare const useGetSelfPushDevice: (pushDeviceId: string, options?: SingleQuery
|
|
|
3605
3558
|
declare const SELF_PUSH_DEVICES_QUERY_KEY: () => QueryKey;
|
|
3606
3559
|
interface GetSelfPushDevicesProps extends InfiniteQueryParams {
|
|
3607
3560
|
}
|
|
3608
|
-
declare const GetSelfPushDevices: ({ pageParam, pageSize, orderBy, search,
|
|
3561
|
+
declare const GetSelfPushDevices: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfPushDevicesProps) => Promise<ConnectedXMResponse<PushDevice[]>>;
|
|
3609
3562
|
declare const useGetSelfPushDevices: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfPushDevices>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<PushDevice[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3610
3563
|
|
|
3611
3564
|
declare const SELF_GROUP_ACTIVITIES_QUERY_KEY: () => QueryKey;
|
|
@@ -3628,7 +3581,7 @@ interface GetSeriesEventsProps extends InfiniteQueryParams {
|
|
|
3628
3581
|
seriesId: string;
|
|
3629
3582
|
past?: boolean;
|
|
3630
3583
|
}
|
|
3631
|
-
declare const GetSeriesEvents: ({ seriesId, pageParam, pageSize, orderBy, search, past,
|
|
3584
|
+
declare const GetSeriesEvents: ({ seriesId, pageParam, pageSize, orderBy, search, past, clientApiParams, }: GetSeriesEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
3632
3585
|
declare const useGetSeriesEvents: (seriesId?: string, past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesEvents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3633
3586
|
|
|
3634
3587
|
declare const SERIES_LIST_QUERY_KEY: () => QueryKey;
|
|
@@ -3636,7 +3589,7 @@ declare const SET_SERIES_LIST_QUERY_DATA: (client: QueryClient, keyParams: Param
|
|
|
3636
3589
|
interface GetSeriesListProps extends InfiniteQueryParams {
|
|
3637
3590
|
past?: boolean;
|
|
3638
3591
|
}
|
|
3639
|
-
declare const GetSeriesList: ({ pageParam, pageSize, orderBy, search,
|
|
3592
|
+
declare const GetSeriesList: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSeriesListProps) => Promise<ConnectedXMResponse<Series[]>>;
|
|
3640
3593
|
declare const useGetSeriesList: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesList>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Series[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3641
3594
|
|
|
3642
3595
|
declare const LEVEL_QUERY_KEY: (levelId: string) => QueryKey;
|
|
@@ -3651,7 +3604,7 @@ declare const LEVELS_QUERY_KEY: () => QueryKey;
|
|
|
3651
3604
|
declare const SET_LEVELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevels>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
3652
3605
|
interface GetLevelsProps extends InfiniteQueryParams {
|
|
3653
3606
|
}
|
|
3654
|
-
declare const GetLevels: ({ pageParam, pageSize, orderBy, search,
|
|
3607
|
+
declare const GetLevels: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetLevelsProps) => Promise<ConnectedXMResponse<SponsorshipLevel[]>>;
|
|
3655
3608
|
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>>;
|
|
3656
3609
|
|
|
3657
3610
|
declare const LEVEL_SPONSORS_QUERY_KEY: (levelId: string) => QueryKey;
|
|
@@ -3659,7 +3612,7 @@ declare const SET_LEVEL_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Pa
|
|
|
3659
3612
|
interface GetLevelSponsorsProps extends InfiniteQueryParams {
|
|
3660
3613
|
levelId: string;
|
|
3661
3614
|
}
|
|
3662
|
-
declare const GetLevelSponsors: ({ levelId, pageParam, pageSize, orderBy, search,
|
|
3615
|
+
declare const GetLevelSponsors: ({ levelId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetLevelSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
3663
3616
|
declare const useGetLevelSponsors: (levelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetLevelSponsors>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3664
3617
|
|
|
3665
3618
|
declare const INVOICE_QUERY_KEY: (invoiceId: string) => QueryKey;
|
|
@@ -3756,7 +3709,7 @@ declare const LISTINGS_QUERY_KEY: (past: boolean) => QueryKey;
|
|
|
3756
3709
|
interface GetSelfEventListingsProps extends InfiniteQueryParams {
|
|
3757
3710
|
past?: boolean;
|
|
3758
3711
|
}
|
|
3759
|
-
declare const GetSelfEventListings: ({ pageParam, pageSize, orderBy, search, past,
|
|
3712
|
+
declare const GetSelfEventListings: ({ pageParam, pageSize, orderBy, search, past, clientApiParams, }: GetSelfEventListingsProps) => Promise<ConnectedXMResponse<EventListing[]>>;
|
|
3760
3713
|
declare const useGetSelfEventListings: (past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListings>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventListing[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3761
3714
|
|
|
3762
3715
|
declare const LISTING_CO_HOSTS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
@@ -3801,52 +3754,58 @@ declare const INTEREST_ACTIVITIES_QUERY_KEY: (interest: string) => QueryKey;
|
|
|
3801
3754
|
interface GetInterestActivitiesProps extends InfiniteQueryParams {
|
|
3802
3755
|
interest: string;
|
|
3803
3756
|
}
|
|
3804
|
-
declare const GetInterestActivities: ({ pageParam, pageSize, orderBy, search,
|
|
3757
|
+
declare const GetInterestActivities: ({ interest, pageParam, pageSize, orderBy, search, clientApiParams, }: GetInterestActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
3805
3758
|
declare const useGetInterestActivities: (interest?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetInterestActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3806
3759
|
|
|
3807
|
-
declare const THREADS_QUERY_KEY: (
|
|
3808
|
-
declare const
|
|
3809
|
-
|
|
3810
|
-
|
|
3811
|
-
|
|
3812
|
-
eventId?: string;
|
|
3760
|
+
declare const THREADS_QUERY_KEY: () => QueryKey;
|
|
3761
|
+
declare const THREAD_CIRCLES_QUERY_KEY: () => QueryKey;
|
|
3762
|
+
declare const SET_THREAD_CIRCLES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_CIRCLES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreadCircles>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
3763
|
+
interface GetThreadCirclesProps extends InfiniteQueryParams {
|
|
3764
|
+
type?: string;
|
|
3813
3765
|
}
|
|
3814
|
-
declare const
|
|
3815
|
-
declare const
|
|
3766
|
+
declare const GetThreadCircles: ({ pageParam, pageSize, orderBy, search, type, clientApiParams, }: GetThreadCirclesProps) => Promise<ConnectedXMResponse<ThreadCircle[]>>;
|
|
3767
|
+
declare const useGetThreadCircles: (params?: Omit<GetThreadCirclesProps, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreadCircles>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ThreadCircle[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3816
3768
|
|
|
3817
|
-
declare const
|
|
3818
|
-
declare const
|
|
3819
|
-
interface
|
|
3820
|
-
|
|
3769
|
+
declare const THREAD_CIRCLE_QUERY_KEY: (circleId: string) => QueryKey;
|
|
3770
|
+
declare const SET_THREAD_CIRCLE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_CIRCLE_QUERY_KEY>, response: Updater<any, Awaited<ReturnType<typeof GetThreadCircle>>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
3771
|
+
interface GetThreadCircleProps extends SingleQueryParams {
|
|
3772
|
+
circleId: string;
|
|
3821
3773
|
}
|
|
3822
|
-
declare const
|
|
3823
|
-
declare const
|
|
3774
|
+
declare const GetThreadCircle: ({ circleId, clientApiParams, }: GetThreadCircleProps) => Promise<ConnectedXMResponse<ThreadCircle>>;
|
|
3775
|
+
declare const useGetThreadCircle: (circleId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadCircle>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ThreadCircle>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3824
3776
|
|
|
3825
|
-
declare const
|
|
3826
|
-
declare const
|
|
3827
|
-
interface
|
|
3828
|
-
|
|
3777
|
+
declare const THREAD_CIRCLE_ACCOUNTS_QUERY_KEY: (circleId: string) => QueryKey;
|
|
3778
|
+
declare const SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_CIRCLE_ACCOUNTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreadCircleAccounts>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
3779
|
+
interface GetThreadCircleAccountsProps extends InfiniteQueryParams {
|
|
3780
|
+
circleId: string;
|
|
3781
|
+
role?: string;
|
|
3782
|
+
}
|
|
3783
|
+
declare const GetThreadCircleAccounts: ({ circleId, pageParam, pageSize, orderBy, search, role, clientApiParams, }: GetThreadCircleAccountsProps) => Promise<ConnectedXMResponse<ThreadCircleAccount[]>>;
|
|
3784
|
+
declare const useGetThreadCircleAccounts: (circleId?: string, params?: Omit<GetThreadCircleAccountsProps, "circleId" | "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreadCircleAccounts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ThreadCircleAccount[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3785
|
+
|
|
3786
|
+
declare const THREAD_CIRCLE_ACCOUNT_QUERY_KEY: (circleId: string, accountId: string) => QueryKey;
|
|
3787
|
+
declare const SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_CIRCLE_ACCOUNT_QUERY_KEY>, response: Updater<any, Awaited<ReturnType<typeof GetThreadCircleAccount>>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
3788
|
+
interface GetThreadCircleAccountProps extends SingleQueryParams {
|
|
3789
|
+
circleId: string;
|
|
3829
3790
|
accountId: string;
|
|
3830
|
-
clientApiParams?: any;
|
|
3831
3791
|
}
|
|
3832
|
-
declare const
|
|
3833
|
-
declare const
|
|
3792
|
+
declare const GetThreadCircleAccount: ({ circleId, accountId, clientApiParams, }: GetThreadCircleAccountProps) => Promise<ConnectedXMResponse<ThreadCircleAccount>>;
|
|
3793
|
+
declare const useGetThreadCircleAccount: (circleId?: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadCircleAccount>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ThreadCircleAccount>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3834
3794
|
|
|
3835
|
-
declare const
|
|
3836
|
-
declare const
|
|
3837
|
-
interface
|
|
3795
|
+
declare const THREAD_QUERY_KEY: (threadId: string, accountId?: string) => QueryKey;
|
|
3796
|
+
declare const SET_THREAD_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_QUERY_KEY>, response: Updater<any, Awaited<ReturnType<typeof GetThread>>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
3797
|
+
interface GetThreadProps extends SingleQueryParams {
|
|
3838
3798
|
threadId: string;
|
|
3839
|
-
role?: keyof typeof ThreadMemberRole;
|
|
3840
3799
|
}
|
|
3841
|
-
declare const
|
|
3842
|
-
declare const
|
|
3800
|
+
declare const GetThread: ({ threadId, clientApiParams, }: GetThreadProps) => Promise<ConnectedXMResponse<Thread>>;
|
|
3801
|
+
declare const useGetThread: (threadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThread>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3843
3802
|
|
|
3844
|
-
declare const THREAD_MESSAGES_QUERY_KEY: (threadId: string
|
|
3803
|
+
declare const THREAD_MESSAGES_QUERY_KEY: (threadId: string) => QueryKey;
|
|
3845
3804
|
declare const SET_THREAD_MESSAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_MESSAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreadMessages>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
3846
3805
|
interface GetThreadMessagesProps extends InfiniteQueryParams {
|
|
3847
3806
|
threadId: string;
|
|
3848
3807
|
}
|
|
3849
|
-
declare const GetThreadMessages: ({ threadId, pageParam, pageSize, orderBy, search,
|
|
3808
|
+
declare const GetThreadMessages: ({ threadId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetThreadMessagesProps) => Promise<ConnectedXMResponse<ThreadMessage[]>>;
|
|
3850
3809
|
declare const useGetThreadMessages: (threadId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreadMessages>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ThreadMessage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3851
3810
|
|
|
3852
3811
|
declare const THREAD_MESSAGE_QUERY_KEY: (threadId: string, messageId: string) => QueryKey;
|
|
@@ -3859,48 +3818,6 @@ interface GetThreadMessageProps {
|
|
|
3859
3818
|
declare const GetThreadMessage: ({ threadId, messageId, clientApiParams, }: GetThreadMessageProps) => Promise<ConnectedXMResponse<ThreadMessage>>;
|
|
3860
3819
|
declare const useGetThreadMessage: (threadId: string, messageId: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadMessage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ThreadMessage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3861
3820
|
|
|
3862
|
-
declare const THREAD_MESSAGE_REPLIES_QUERY_KEY: (threadId: string, messageId: string) => QueryKey;
|
|
3863
|
-
declare const SET_THREAD_MESSAGE_REPLIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_MESSAGE_REPLIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreadMessageReplies>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
3864
|
-
interface GetThreadMessageRepliesProps extends InfiniteQueryParams {
|
|
3865
|
-
threadId: string;
|
|
3866
|
-
messageId: string;
|
|
3867
|
-
}
|
|
3868
|
-
declare const GetThreadMessageReplies: ({ threadId, messageId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetThreadMessageRepliesProps) => Promise<ConnectedXMResponse<ThreadMessage[]>>;
|
|
3869
|
-
declare const useGetThreadMessageReplies: (threadId?: string, messageId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreadMessageReplies>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ThreadMessage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3870
|
-
|
|
3871
|
-
declare const THREAD_GROUPS_QUERY_KEY: (accountId?: string) => QueryKey;
|
|
3872
|
-
declare const SET_THREAD_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_GROUPS_QUERY_KEY>, response: Updater<any, Awaited<ReturnType<typeof GetThreadGroups>>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
3873
|
-
interface GetThreadGroupsProps extends SingleQueryParams {
|
|
3874
|
-
}
|
|
3875
|
-
declare const GetThreadGroups: ({ clientApiParams, }: GetThreadGroupsProps) => Promise<ConnectedXMResponse<Thread[]>>;
|
|
3876
|
-
declare const useGetThreadGroups: (options?: SingleQueryOptions<ReturnType<typeof GetThreadGroups>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Thread[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3877
|
-
|
|
3878
|
-
declare const THREAD_GROUP_QUERY_KEY: (groupId: string) => QueryKey;
|
|
3879
|
-
declare const SET_THREAD_GROUP_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_GROUP_QUERY_KEY>, response: Updater<any, Awaited<ReturnType<typeof GetThreadGroup>>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
3880
|
-
interface GetThreadGroupProps {
|
|
3881
|
-
groupId: string;
|
|
3882
|
-
clientApiParams?: any;
|
|
3883
|
-
}
|
|
3884
|
-
declare const GetThreadGroup: ({ groupId, clientApiParams, }: GetThreadGroupProps) => Promise<ConnectedXMResponse<Thread>>;
|
|
3885
|
-
declare const useGetThreadGroup: (groupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadGroup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3886
|
-
|
|
3887
|
-
declare const THREAD_EVENTS_QUERY_KEY: (threadId: string, accountId?: string) => QueryKey;
|
|
3888
|
-
declare const SET_THREAD_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_EVENTS_QUERY_KEY>, response: Updater<any, Awaited<ReturnType<typeof GetThreadEvents>>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
3889
|
-
interface GetThreadEventsProps extends SingleQueryParams {
|
|
3890
|
-
threadId: string;
|
|
3891
|
-
}
|
|
3892
|
-
declare const GetThreadEvents: ({ threadId, clientApiParams, }: GetThreadEventsProps) => Promise<ConnectedXMResponse<Thread[]>>;
|
|
3893
|
-
declare const useGetThreadEvents: (threadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadEvents>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Thread[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3894
|
-
|
|
3895
|
-
declare const THREAD_EVENT_QUERY_KEY: (eventId: string) => QueryKey;
|
|
3896
|
-
declare const SET_THREAD_EVENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_EVENT_QUERY_KEY>, response: Updater<any, Awaited<ReturnType<typeof GetThreadEvent>>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
3897
|
-
interface GetThreadEventProps {
|
|
3898
|
-
eventId: string;
|
|
3899
|
-
clientApiParams?: any;
|
|
3900
|
-
}
|
|
3901
|
-
declare const GetThreadEvent: ({ eventId, clientApiParams, }: GetThreadEventProps) => Promise<ConnectedXMResponse<Thread>>;
|
|
3902
|
-
declare const useGetThreadEvent: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadEvent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3903
|
-
|
|
3904
3821
|
declare const INTEGRATION_QUERY_KEY: (integrationId: string) => QueryKey;
|
|
3905
3822
|
declare const SET_INTEGRATION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTEGRATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetIntegration>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
3906
3823
|
interface GetIntegrationProps extends SingleQueryParams {
|
|
@@ -3913,7 +3830,7 @@ declare const INTEGRATIONS_QUERY_KEY: () => QueryKey;
|
|
|
3913
3830
|
declare const SET_INTEGRATIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTEGRATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetIntegrations>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
3914
3831
|
interface GetIntegrationsProps extends InfiniteQueryParams {
|
|
3915
3832
|
}
|
|
3916
|
-
declare const GetIntegrations: ({ pageParam, pageSize, orderBy, search,
|
|
3833
|
+
declare const GetIntegrations: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetIntegrationsProps) => Promise<ConnectedXMResponse<Integration[]>>;
|
|
3917
3834
|
declare const useGetIntegrations: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetIntegrations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Integration[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3918
3835
|
|
|
3919
3836
|
interface IntegrationAuth {
|
|
@@ -5300,93 +5217,36 @@ interface UploadImageParams extends MutationParams {
|
|
|
5300
5217
|
declare const UploadImage: ({ image, clientApiParams, }: UploadImageParams) => Promise<ConnectedXMResponse<BaseImage>>;
|
|
5301
5218
|
declare const useUploadImage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UploadImage>>, Omit<UploadImageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BaseImage>, axios.AxiosError<ConnectedXMResponse<BaseImage>, any>, Omit<UploadImageParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5302
5219
|
|
|
5303
|
-
interface CreateThreadParams extends MutationParams {
|
|
5304
|
-
thread: CreateThread;
|
|
5305
|
-
accountIds: string[];
|
|
5306
|
-
firstMessage: string;
|
|
5307
|
-
}
|
|
5308
|
-
interface CreateThread {
|
|
5309
|
-
name: string;
|
|
5310
|
-
description?: string;
|
|
5311
|
-
imageId?: string;
|
|
5312
|
-
eventId?: string;
|
|
5313
|
-
groupId?: string;
|
|
5314
|
-
featured?: boolean;
|
|
5315
|
-
access: keyof typeof ThreadAccessLevel;
|
|
5316
|
-
}
|
|
5317
|
-
declare const CreateThread: ({ thread, accountIds, firstMessage, clientApiParams, queryClient, }: CreateThreadParams) => Promise<ConnectedXMResponse<Thread>>;
|
|
5318
|
-
declare const useCreateThread: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateThread>>, Omit<CreateThreadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<Thread>, any>, Omit<CreateThreadParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5319
|
-
|
|
5320
|
-
interface AddThreadMemberParams extends MutationParams {
|
|
5321
|
-
threadId: string;
|
|
5322
|
-
accountId: string;
|
|
5323
|
-
role: "moderator" | "member";
|
|
5324
|
-
}
|
|
5325
|
-
declare const AddThreadMember: ({ threadId, accountId, role, clientApiParams, queryClient, }: AddThreadMemberParams) => Promise<ConnectedXMResponse<ThreadMember>>;
|
|
5326
|
-
declare const useAddThreadMember: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddThreadMember>>, Omit<AddThreadMemberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadMember>, axios.AxiosError<ConnectedXMResponse<ThreadMember>, any>, Omit<AddThreadMemberParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5327
|
-
|
|
5328
5220
|
interface UpdateThreadParams extends MutationParams {
|
|
5329
5221
|
threadId: string;
|
|
5330
|
-
|
|
5331
|
-
|
|
5332
|
-
}
|
|
5333
|
-
interface UpdateThread {
|
|
5334
|
-
id: string;
|
|
5335
|
-
name?: string;
|
|
5336
|
-
description?: string;
|
|
5337
|
-
imageId?: string;
|
|
5338
|
-
featured?: boolean;
|
|
5339
|
-
eventId?: string;
|
|
5340
|
-
groupId?: string;
|
|
5341
|
-
access?: keyof typeof ThreadAccessLevel;
|
|
5342
|
-
}
|
|
5343
|
-
declare const UpdateThread: ({ threadId, thread, imageDataUri, clientApiParams, queryClient, }: UpdateThreadParams) => Promise<ConnectedXMResponse<Thread>>;
|
|
5344
|
-
declare const useUpdateThread: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateThread>>, Omit<UpdateThreadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<Thread>, any>, Omit<UpdateThreadParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5345
|
-
|
|
5346
|
-
interface UpdateThreadMemberParams extends MutationParams {
|
|
5347
|
-
threadId: string;
|
|
5348
|
-
accountId: string;
|
|
5349
|
-
role?: string;
|
|
5350
|
-
}
|
|
5351
|
-
declare const UpdateThreadMember: ({ threadId, accountId, role, clientApiParams, queryClient, }: UpdateThreadMemberParams) => Promise<ConnectedXMResponse<ThreadMember>>;
|
|
5352
|
-
declare const useUpdateThreadMember: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateThreadMember>>, Omit<UpdateThreadMemberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadMember>, axios.AxiosError<ConnectedXMResponse<ThreadMember>, any>, Omit<UpdateThreadMemberParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5353
|
-
|
|
5354
|
-
interface DeleteThreadMemberParams extends MutationParams {
|
|
5355
|
-
threadId: string;
|
|
5356
|
-
accountId: string;
|
|
5357
|
-
}
|
|
5358
|
-
declare const DeleteThreadMember: ({ threadId, accountId, clientApiParams, queryClient, }: DeleteThreadMemberParams) => Promise<ConnectedXMResponse<null>>;
|
|
5359
|
-
declare const useDeleteThreadMember: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteThreadMember>>, Omit<DeleteThreadMemberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteThreadMemberParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5360
|
-
|
|
5361
|
-
interface MarkUnreadParams extends MutationParams {
|
|
5362
|
-
threadId: string;
|
|
5222
|
+
subject?: string;
|
|
5223
|
+
imageId?: string | null;
|
|
5363
5224
|
}
|
|
5364
|
-
declare const
|
|
5365
|
-
declare const
|
|
5225
|
+
declare const UpdateThread: ({ threadId, subject, imageId, clientApiParams, queryClient, }: UpdateThreadParams) => Promise<ConnectedXMResponse<Thread>>;
|
|
5226
|
+
declare const useUpdateThread: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateThread>>, Omit<UpdateThreadParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<Thread>, any>, Omit<UpdateThreadParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5366
5227
|
|
|
5367
5228
|
interface CreateThreadMessageParams extends MutationParams {
|
|
5368
5229
|
threadId: string;
|
|
5369
5230
|
body: string;
|
|
5231
|
+
entities: any[];
|
|
5370
5232
|
}
|
|
5371
|
-
declare const CreateThreadMessage: ({ threadId, body, clientApiParams, queryClient, }: CreateThreadMessageParams) => Promise<ConnectedXMResponse<ThreadMessage>>;
|
|
5372
|
-
declare const useCreateThreadMessage: (options?:
|
|
5233
|
+
declare const CreateThreadMessage: ({ threadId, body, entities, clientApiParams, queryClient, }: CreateThreadMessageParams) => Promise<ConnectedXMResponse<ThreadMessage>>;
|
|
5234
|
+
declare const useCreateThreadMessage: (options?: MutationOptions<Awaited<ReturnType<typeof CreateThreadMessage>>, Omit<CreateThreadMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadMessage>, axios.AxiosError<ConnectedXMResponse<ThreadMessage>, any>, Omit<CreateThreadMessageParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5373
5235
|
|
|
5374
5236
|
interface UpdateThreadMessageParams extends MutationParams {
|
|
5375
5237
|
threadId: string;
|
|
5376
5238
|
messageId: string;
|
|
5377
|
-
body
|
|
5239
|
+
body?: string;
|
|
5378
5240
|
}
|
|
5379
5241
|
declare const UpdateThreadMessage: ({ threadId, messageId, body, clientApiParams, queryClient, }: UpdateThreadMessageParams) => Promise<ConnectedXMResponse<ThreadMessage>>;
|
|
5380
|
-
declare const useUpdateThreadMessage: (options?:
|
|
5242
|
+
declare const useUpdateThreadMessage: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateThreadMessage>>, Omit<UpdateThreadMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadMessage>, axios.AxiosError<ConnectedXMResponse<ThreadMessage>, any>, Omit<UpdateThreadMessageParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5381
5243
|
|
|
5382
5244
|
interface DeleteThreadMessageParams extends MutationParams {
|
|
5383
5245
|
threadId: string;
|
|
5384
5246
|
messageId: string;
|
|
5385
|
-
body: string;
|
|
5386
|
-
moderator?: boolean;
|
|
5387
5247
|
}
|
|
5388
|
-
declare const DeleteThreadMessage: ({ threadId, messageId,
|
|
5389
|
-
declare const useDeleteThreadMessage: (options?:
|
|
5248
|
+
declare const DeleteThreadMessage: ({ threadId, messageId, clientApiParams, queryClient, }: DeleteThreadMessageParams) => Promise<ConnectedXMResponse<null>>;
|
|
5249
|
+
declare const useDeleteThreadMessage: (options?: MutationOptions<Awaited<ReturnType<typeof DeleteThreadMessage>>, Omit<DeleteThreadMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteThreadMessageParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5390
5250
|
|
|
5391
5251
|
interface AddThreadMessageReactionParams extends MutationParams {
|
|
5392
5252
|
threadId: string;
|
|
@@ -5394,23 +5254,45 @@ interface AddThreadMessageReactionParams extends MutationParams {
|
|
|
5394
5254
|
emojiName: string;
|
|
5395
5255
|
}
|
|
5396
5256
|
declare const AddThreadMessageReaction: ({ threadId, messageId, emojiName, clientApiParams, queryClient, }: AddThreadMessageReactionParams) => Promise<ConnectedXMResponse<ThreadMessageReaction>>;
|
|
5397
|
-
declare const useAddThreadMessageReaction: (options?:
|
|
5257
|
+
declare const useAddThreadMessageReaction: (options?: MutationOptions<Awaited<ReturnType<typeof AddThreadMessageReaction>>, Omit<AddThreadMessageReactionParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadMessageReaction>, axios.AxiosError<ConnectedXMResponse<ThreadMessageReaction>, any>, Omit<AddThreadMessageReactionParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5398
5258
|
|
|
5399
5259
|
interface RemoveThreadMessageReactionParams extends MutationParams {
|
|
5400
5260
|
threadId: string;
|
|
5401
5261
|
messageId: string;
|
|
5402
|
-
|
|
5262
|
+
reactionId: string;
|
|
5403
5263
|
}
|
|
5404
|
-
declare const RemoveThreadMessageReaction: ({ threadId, messageId,
|
|
5405
|
-
declare const useRemoveThreadMessageReaction: (options?:
|
|
5264
|
+
declare const RemoveThreadMessageReaction: ({ threadId, messageId, reactionId, clientApiParams, queryClient, }: RemoveThreadMessageReactionParams) => Promise<ConnectedXMResponse<null>>;
|
|
5265
|
+
declare const useRemoveThreadMessageReaction: (options?: MutationOptions<Awaited<ReturnType<typeof RemoveThreadMessageReaction>>, Omit<RemoveThreadMessageReactionParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveThreadMessageReactionParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5406
5266
|
|
|
5407
|
-
interface
|
|
5408
|
-
|
|
5409
|
-
|
|
5410
|
-
|
|
5267
|
+
interface UpdateThreadCircleParams extends MutationParams {
|
|
5268
|
+
circleId: string;
|
|
5269
|
+
name?: string;
|
|
5270
|
+
}
|
|
5271
|
+
declare const UpdateThreadCircle: ({ circleId, name, clientApiParams, queryClient, }: UpdateThreadCircleParams) => Promise<ConnectedXMResponse<ThreadCircle>>;
|
|
5272
|
+
declare const useUpdateThreadCircle: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateThreadCircle>>, Omit<UpdateThreadCircleParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadCircle>, axios.AxiosError<ConnectedXMResponse<ThreadCircle>, any>, Omit<UpdateThreadCircleParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5273
|
+
|
|
5274
|
+
interface AddThreadCircleAccountParams extends MutationParams {
|
|
5275
|
+
circleId: string;
|
|
5276
|
+
accountId: string;
|
|
5277
|
+
role?: string;
|
|
5278
|
+
}
|
|
5279
|
+
declare const AddThreadCircleAccount: ({ circleId, accountId, role, clientApiParams, queryClient, }: AddThreadCircleAccountParams) => Promise<ConnectedXMResponse<ThreadCircleAccount>>;
|
|
5280
|
+
declare const useAddThreadCircleAccount: (options?: MutationOptions<Awaited<ReturnType<typeof AddThreadCircleAccount>>, Omit<AddThreadCircleAccountParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadCircleAccount>, axios.AxiosError<ConnectedXMResponse<ThreadCircleAccount>, any>, Omit<AddThreadCircleAccountParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5281
|
+
|
|
5282
|
+
interface UpdateThreadCircleAccountParams extends MutationParams {
|
|
5283
|
+
circleId: string;
|
|
5284
|
+
accountId: string;
|
|
5285
|
+
role?: string;
|
|
5286
|
+
}
|
|
5287
|
+
declare const UpdateThreadCircleAccount: ({ circleId, accountId, role, clientApiParams, queryClient, }: UpdateThreadCircleAccountParams) => Promise<ConnectedXMResponse<ThreadCircleAccount>>;
|
|
5288
|
+
declare const useUpdateThreadCircleAccount: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateThreadCircleAccount>>, Omit<UpdateThreadCircleAccountParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ThreadCircleAccount>, axios.AxiosError<ConnectedXMResponse<ThreadCircleAccount>, any>, Omit<UpdateThreadCircleAccountParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5289
|
+
|
|
5290
|
+
interface DeleteThreadCircleAccountParams extends MutationParams {
|
|
5291
|
+
circleId: string;
|
|
5292
|
+
accountId: string;
|
|
5411
5293
|
}
|
|
5412
|
-
declare const
|
|
5413
|
-
declare const
|
|
5294
|
+
declare const DeleteThreadCircleAccount: ({ circleId, accountId, clientApiParams, queryClient, }: DeleteThreadCircleAccountParams) => Promise<ConnectedXMResponse<null>>;
|
|
5295
|
+
declare const useDeleteThreadCircleAccount: (options?: MutationOptions<Awaited<ReturnType<typeof DeleteThreadCircleAccount>>, Omit<DeleteThreadCircleAccountParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteThreadCircleAccountParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5414
5296
|
|
|
5415
5297
|
interface BlockIntegrationParams extends MutationParams {
|
|
5416
5298
|
type: keyof typeof IntegrationType;
|
|
@@ -5471,4 +5353,4 @@ interface CreateInterestParams extends MutationParams {
|
|
|
5471
5353
|
declare const CreateInterest: ({ interest, clientApiParams, }: CreateInterestParams) => Promise<ConnectedXMResponse<Interest>>;
|
|
5472
5354
|
declare const useCreateInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateInterest>>, Omit<CreateInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Interest>, axios.AxiosError<ConnectedXMResponse<Interest>, any>, Omit<CreateInterestParams, "queryClient" | "clientApiParams">, unknown>;
|
|
5473
5355
|
|
|
5474
|
-
export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_FOLLOW_STATS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, ALL_GROUP_EVENTS, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountShare, type AccountTier, AccountType, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, AddContentInterest, type AddContentInterestParams, AddFreePassAddOns, type AddFreePassAddOnsParams, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadMember, type AddThreadMemberParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, AddThreadMessageReply, type AddThreadMessageReplyParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, type AttendeePackage, BENEFITS_QUERY_KEY, BOOKINGS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_SPACES_QUERY_KEY, BOOKING_PLACE_SPACE_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, 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 BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionQuestionSearchValue, type BaseEventSessionSection, type BaseEventSponsorship, type BaseEventSponsorshipLevel, 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 BaseLinkPreview, type BaseNotification, type BaseOrganization, type BasePage, type BasePass, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntent, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSchedule, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveyQuestionSearchValue, type BaseSurveySection, type BaseSurveySubmission, type BaseTeamMember, type BaseThread, type BaseThreadMember, type BaseThreadMessage, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseVideo, type Benefit, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceSlot, 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_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_INTERESTS_QUERY_KEY, CONTENT_QUERY_KEY, CUSTOM_ERROR_CODES, CacheIndividualQueries, CancelBooking, type CancelBookingParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPass, type CancelPassParams, CancelSubscription, type CancelSubscriptionParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, CreateChannelContent, type CreateChannelContentParams, type CreateChannelParams, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, CreateThread, CreateThreadMessage, type CreateThreadMessageParams, type CreateThreadParams, Currency, DayOfWeek, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteThreadMember, type DeleteThreadMemberParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_REGISTRATION_UNAVAILABLE, ERR_SUBSCRIPTION_REQUIRED, ERR_TIER_REQUIRED, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVATIONS_LEADERBOARD_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_COMPLETIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SUMMARY_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_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_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_SESSION_QUESTION_VALUES_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventMediaItem, type EventPackage, type EventPackagePass, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, type EventSessionAccess, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionResponse, type EventSessionQuestionSearchValue, EventSessionQuestionType, type EventSessionSection, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, 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, GetAccountFollowStats, type GetAccountFollowStatsProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetAllGroupEvents, type GetAllGroupEventsProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetBooking, GetBookingIntent, type GetBookingIntentProps, GetBookingPlace, type GetBookingPlaceProps, GetBookingPlaceSpace, type GetBookingPlaceSpaceProps, GetBookingPlaceSpaceSlots, type GetBookingPlaceSpaceSlotsProps, GetBookingPlaces, type GetBookingPlacesParams, GetBookingPlacesSpaces, type GetBookingPlacesSpacesProps, type GetBookingProps, GetBookings, type GetBookingsParams, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, GetContentInterests, type GetContentInterestsParams, type GetContentParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, GetEventActivationCompletions, type GetEventActivationCompletionsProps, GetEventActivationLeaderboards, type GetEventActivationLeaderboardsProps, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessionQuestionSearchValues, type GetEventSessionQuestionSearchValuesProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, 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, GetImage, type GetImageProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterest, GetInterestActivities, type GetInterestActivitiesProps, type GetInterestProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetLinkPreview, type GetLinkPreviewProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetManagedChannel, GetManagedChannelCollection, GetManagedChannelCollectionContents, type GetManagedChannelCollectionContentsParams, type GetManagedChannelCollectionParams, GetManagedChannelCollections, type GetManagedChannelCollectionsParams, GetManagedChannelContent, GetManagedChannelContentActivities, type GetManagedChannelContentActivitiesParams, GetManagedChannelContentGuests, type GetManagedChannelContentGuestsParams, GetManagedChannelContentInterests, type GetManagedChannelContentInterestsParams, type GetManagedChannelContentParams, GetManagedChannelContents, type GetManagedChannelContentsParams, GetManagedChannelInterests, type GetManagedChannelInterestsParams, type GetManagedChannelParams, GetManagedChannelSubscribers, type GetManagedChannelSubscribersParams, GetManagedChannels, type GetManagedChannelsParams, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventAttendee, GetSelfEventAttendeeAccess, type GetSelfEventAttendeeAccessProps, GetSelfEventAttendeeAccessQuestionSections, type GetSelfEventAttendeeAccessQuestionSectionsProps, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, GetSelfEventAttendeePassAvailableSessions, type GetSelfEventAttendeePassAvailableSessionsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, type GetSelfEventAttendeeProps, GetSelfEventAttendeeTransferAccounts, type GetSelfEventAttendeeTransferAccountsProps, GetSelfEventAttendeeTransfersLogs, type GetSelfEventAttendeeTransfersLogsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingAttendees, type GetSelfEventListingAttendeesProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, GetSelfEventListingPass, type GetSelfEventListingPassProps, GetSelfEventListingPasses, type GetSelfEventListingPassesProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationAddOns, type GetSelfEventRegistrationAddOnsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPassTypes, type GetSelfEventRegistrationPassTypesProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationQuestions, type GetSelfEventRegistrationQuestionsProps, GetSelfEventRegistrationRoomTypes, type GetSelfEventRegistrationRoomTypesProps, GetSelfEventSessionRegistration, GetSelfEventSessionRegistrationAvailablePasses, type GetSelfEventSessionRegistrationAvailablePassesProps, GetSelfEventSessionRegistrationIntent, type GetSelfEventSessionRegistrationIntentProps, type GetSelfEventSessionRegistrationProps, GetSelfEventSessionRegistrationQuestions, type GetSelfEventSessionRegistrationQuestionsProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, GetSelfLeadCounts, type GetSelfLeadCountsProps, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSurvey, type GetSurveyProps, GetSurveyQuestionSearchValues, type GetSurveyQuestionSearchValuesProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetThread, GetThreadEvent, type GetThreadEventProps, GetThreadEvents, type GetThreadEventsProps, GetThreadGroup, type GetThreadGroupProps, GetThreadGroups, type GetThreadGroupsProps, GetThreadMember, type GetThreadMemberProps, GetThreadMembers, type GetThreadMembersProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessageReplies, type GetThreadMessageRepliesProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetThreads, type GetThreadsProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InterestInput, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LINK_PREVIEW_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, MANAGED_CHANNELS_QUERY_KEY, MANAGED_CHANNEL_COLLECTIONS_QUERY_KEY, MANAGED_CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, MANAGED_CHANNEL_COLLECTION_QUERY_KEY, MANAGED_CHANNEL_CONTENTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, MANAGED_CHANNEL_CONTENT_GUESTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_INTERESTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_QUERY_KEY, MANAGED_CHANNEL_INTERESTS_QUERY_KEY, MANAGED_CHANNEL_QUERY_KEY, MANAGED_CHANNEL_SUBSCRIBERS_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, MarkUnread, type MarkUnreadParams, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Page, type PageType, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_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_CONTACTS_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY, SELF_EVENT_ATTENDEE_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_LEADS_QUERY_KEY, SELF_LEAD_COUNTS_QUERY_KEY, SELF_LEAD_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, 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_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ALL_GROUP_EVENTS_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_SPACES_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUERY_DATA, SET_BOOKING_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_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETIONS_QUERY_DATA, SET_EVENT_ACTIVATION_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_IMAGE_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_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_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORS_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_IMAGE_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LINK_PREVIEW_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_MANAGED_CHANNELS_QUERY_DATA, SET_MANAGED_CHANNEL_COLLECTIONS_QUERY_DATA, SET_MANAGED_CHANNEL_COLLECTION_QUERY_DATA, SET_MANAGED_CHANNEL_CONTENTS_QUERY_DATA, SET_MANAGED_CHANNEL_CONTENT_QUERY_DATA, SET_MANAGED_CHANNEL_QUERY_DATA, SET_MANAGED_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_MANAGED_CONTENT_ACTIVITIES_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SELF_SURVEY_SUBMISSION_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREADS_QUERY_DATA, SET_THREAD_EVENTS_QUERY_DATA, SET_THREAD_EVENT_QUERY_DATA, SET_THREAD_GROUPS_QUERY_DATA, SET_THREAD_GROUP_QUERY_DATA, SET_THREAD_MEMBERS_QUERY_DATA, SET_THREAD_MEMBER_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_MESSAGE_REPLIES_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_VIDEO_QUERY_DATA, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SegmentInput, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SessionLocation, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamInput, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, SubmitSelfEventSessionRegistration, type SubmitSelfEventSessionRegistrationParams, SubmitSurvey, type SubmitSurveyParams, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, type SurveyQuestionSearchValue, SurveyQuestionType, type SurveySection, type SurveySubmission, THREADS_QUERY_KEY, THREAD_EVENTS_QUERY_KEY, THREAD_EVENT_QUERY_KEY, THREAD_GROUPS_QUERY_KEY, THREAD_GROUP_QUERY_KEY, THREAD_MEMBERS_QUERY_KEY, THREAD_MEMBER_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_MESSAGE_REPLIES_QUERY_KEY, THREAD_QUERY_KEY, type TeamMember, type Thread, ThreadAccessLevel, type ThreadInvitation, ThreadInvitationStatus, type ThreadMember, ThreadMemberRole, type ThreadMessage, type ThreadMessageReaction, ThreadMessageType, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, UnblockAccount, type UnblockAccountParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventSessionRegistrationPassResponse, type UpdateSelfEventSessionRegistrationPassResponseParams, UpdateSelfEventSessionRegistrationPasses, type UpdateSelfEventSessionRegistrationPassesParams, UpdateSelfEventSessionRegistrationResponses, type UpdateSelfEventSessionRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateThread, UpdateThreadMember, type UpdateThreadMemberParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadChannelContentImage, type UploadChannelContentImageParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, UploadVideo, type UploadVideoParams, type User, VIDEO_QUERY_KEY, 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, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddFreePassAddOns, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventSession, useAddSelfInterests, useAddThreadMember, useAddThreadMessageReaction, useAddThreadMessageReply, useBlockAccount, useBlockIntegration, useCancelBooking, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCancelSubscription, useCapturePaymentIntent, useCheckinListingAttendeePass, useCompleteEventActivation, useConfirmBooking, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useCreateThread, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteThreadMember, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetAllGroupEvents, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannels, useGetContent, useGetContentInterests, useGetContents, useGetEvent, useGetEventActivation, useGetEventActivationCompletions, useGetEventActivationLeaderboards, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessionQuestionSearchValues, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetLinkPreview, useGetListingAttendeePassQuestionSections, useGetManagedChannel, useGetManagedChannelCollection, useGetManagedChannelCollectionContents, useGetManagedChannelCollections, useGetManagedChannelContent, useGetManagedChannelContentActivities, useGetManagedChannelContentGuests, useGetManagedChannelContentInterests, useGetManagedChannelContents, useGetManagedChannelInterests, useGetManagedChannelSubscribers, useGetManagedChannels, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventAttendee, useGetSelfEventAttendeeAccess, useGetSelfEventAttendeeAccessQuestionSections, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassAvailableSessions, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeeTransferAccounts, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationAddOns, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPassTypes, useGetSelfEventRegistrationQuestions, useGetSelfEventRegistrationRoomTypes, useGetSelfEventSessionRegistration, useGetSelfEventSessionRegistrationAvailablePasses, useGetSelfEventSessionRegistrationIntent, useGetSelfEventSessionRegistrationQuestions, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSubscribedChannels, useGetSubscribedContents, useGetSurvey, useGetSurveyQuestionSearchValues, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetThread, useGetThreadEvent, useGetThreadEvents, useGetThreadGroup, useGetThreadGroups, useGetThreadMember, useGetThreadMembers, useGetThreadMessage, useGetThreadMessageReplies, useGetThreadMessages, useGetThreads, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, useMarkUnread, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSelfUpdateGroupMembership, useSetContentPublishSchedule, useStartSurvey, useSubmitSelfEventRegistration, useSubmitSelfEventSessionRegistration, useSubmitSurvey, useTransferPass, useUnblockAccount, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventSessionRegistrationPassResponse, useUpdateSelfEventSessionRegistrationPasses, useUpdateSelfEventSessionRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateSurveyResponse, useUpdateThread, useUpdateThreadMember, useUpdateThreadMessage, useUploadChannelContentImage, useUploadFile, useUploadImage, useUploadVideo };
|
|
5356
|
+
export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_FOLLOW_STATS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, ALL_GROUP_EVENTS, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountShare, type AccountTier, AccountType, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, AddContentInterest, type AddContentInterestParams, AddFreePassAddOns, type AddFreePassAddOnsParams, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadCircleAccount, type AddThreadCircleAccountParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, type AttendeePackage, BENEFITS_QUERY_KEY, BOOKINGS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_SPACES_QUERY_KEY, BOOKING_PLACE_SPACE_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, 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 BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionQuestionSearchValue, type BaseEventSessionSection, type BaseEventSponsorship, type BaseEventSponsorshipLevel, 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 BaseLinkPreview, type BaseNotification, type BaseOrganization, type BasePage, type BasePass, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntent, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSchedule, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveyQuestionSearchValue, type BaseSurveySection, type BaseSurveySubmission, type BaseTeamMember, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadViewer, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseVideo, type Benefit, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceSlot, 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_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_INTERESTS_QUERY_KEY, CONTENT_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPass, type CancelPassParams, CancelSubscription, type CancelSubscriptionParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, CreateChannelContent, type CreateChannelContentParams, type CreateChannelParams, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, CreateThreadMessage, type CreateThreadMessageParams, Currency, DayOfWeek, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_REGISTRATION_UNAVAILABLE, ERR_SUBSCRIPTION_REQUIRED, ERR_TIER_REQUIRED, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVATIONS_LEADERBOARD_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_COMPLETIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SUMMARY_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_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_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_SESSION_QUESTION_VALUES_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventMediaItem, type EventPackage, type EventPackagePass, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, type EventSessionAccess, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionResponse, type EventSessionQuestionSearchValue, EventSessionQuestionType, type EventSessionSection, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, 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, GetAccountFollowStats, type GetAccountFollowStatsProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetAllGroupEvents, type GetAllGroupEventsProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetBooking, GetBookingIntent, type GetBookingIntentProps, GetBookingPlace, type GetBookingPlaceProps, GetBookingPlaceSpace, type GetBookingPlaceSpaceProps, GetBookingPlaceSpaceSlots, type GetBookingPlaceSpaceSlotsProps, GetBookingPlaces, type GetBookingPlacesParams, GetBookingPlacesSpaces, type GetBookingPlacesSpacesProps, type GetBookingProps, GetBookings, type GetBookingsParams, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, GetContentInterests, type GetContentInterestsParams, type GetContentParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, GetEventActivationCompletions, type GetEventActivationCompletionsProps, GetEventActivationLeaderboards, type GetEventActivationLeaderboardsProps, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessionQuestionSearchValues, type GetEventSessionQuestionSearchValuesProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, 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, GetImage, type GetImageProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterest, GetInterestActivities, type GetInterestActivitiesProps, type GetInterestProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetLinkPreview, type GetLinkPreviewProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetManagedChannel, GetManagedChannelCollection, GetManagedChannelCollectionContents, type GetManagedChannelCollectionContentsParams, type GetManagedChannelCollectionParams, GetManagedChannelCollections, type GetManagedChannelCollectionsParams, GetManagedChannelContent, GetManagedChannelContentActivities, type GetManagedChannelContentActivitiesParams, GetManagedChannelContentGuests, type GetManagedChannelContentGuestsParams, GetManagedChannelContentInterests, type GetManagedChannelContentInterestsParams, type GetManagedChannelContentParams, GetManagedChannelContents, type GetManagedChannelContentsParams, GetManagedChannelInterests, type GetManagedChannelInterestsParams, type GetManagedChannelParams, GetManagedChannelSubscribers, type GetManagedChannelSubscribersParams, GetManagedChannels, type GetManagedChannelsParams, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventAttendee, GetSelfEventAttendeeAccess, type GetSelfEventAttendeeAccessProps, GetSelfEventAttendeeAccessQuestionSections, type GetSelfEventAttendeeAccessQuestionSectionsProps, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, GetSelfEventAttendeePassAvailableSessions, type GetSelfEventAttendeePassAvailableSessionsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, type GetSelfEventAttendeeProps, GetSelfEventAttendeeTransferAccounts, type GetSelfEventAttendeeTransferAccountsProps, GetSelfEventAttendeeTransfersLogs, type GetSelfEventAttendeeTransfersLogsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingAttendees, type GetSelfEventListingAttendeesProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, GetSelfEventListingPass, type GetSelfEventListingPassProps, GetSelfEventListingPasses, type GetSelfEventListingPassesProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationAddOns, type GetSelfEventRegistrationAddOnsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPassTypes, type GetSelfEventRegistrationPassTypesProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationQuestions, type GetSelfEventRegistrationQuestionsProps, GetSelfEventRegistrationRoomTypes, type GetSelfEventRegistrationRoomTypesProps, GetSelfEventSessionRegistration, GetSelfEventSessionRegistrationAvailablePasses, type GetSelfEventSessionRegistrationAvailablePassesProps, GetSelfEventSessionRegistrationIntent, type GetSelfEventSessionRegistrationIntentProps, type GetSelfEventSessionRegistrationProps, GetSelfEventSessionRegistrationQuestions, type GetSelfEventSessionRegistrationQuestionsProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, GetSelfLeadCounts, type GetSelfLeadCountsProps, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSurvey, type GetSurveyProps, GetSurveyQuestionSearchValues, type GetSurveyQuestionSearchValuesProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InterestInput, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LINK_PREVIEW_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, MANAGED_CHANNELS_QUERY_KEY, MANAGED_CHANNEL_COLLECTIONS_QUERY_KEY, MANAGED_CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, MANAGED_CHANNEL_COLLECTION_QUERY_KEY, MANAGED_CHANNEL_CONTENTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, MANAGED_CHANNEL_CONTENT_GUESTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_INTERESTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_QUERY_KEY, MANAGED_CHANNEL_INTERESTS_QUERY_KEY, MANAGED_CHANNEL_QUERY_KEY, MANAGED_CHANNEL_SUBSCRIBERS_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Page, type PageType, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_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_CONTACTS_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY, SELF_EVENT_ATTENDEE_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_LEADS_QUERY_KEY, SELF_LEAD_COUNTS_QUERY_KEY, SELF_LEAD_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, 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_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ALL_GROUP_EVENTS_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_SPACES_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUERY_DATA, SET_BOOKING_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_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETIONS_QUERY_DATA, SET_EVENT_ACTIVATION_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_IMAGE_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_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_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORS_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_IMAGE_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LINK_PREVIEW_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_MANAGED_CHANNELS_QUERY_DATA, SET_MANAGED_CHANNEL_COLLECTIONS_QUERY_DATA, SET_MANAGED_CHANNEL_COLLECTION_QUERY_DATA, SET_MANAGED_CHANNEL_CONTENTS_QUERY_DATA, SET_MANAGED_CHANNEL_CONTENT_QUERY_DATA, SET_MANAGED_CHANNEL_QUERY_DATA, SET_MANAGED_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_MANAGED_CONTENT_ACTIVITIES_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SELF_SURVEY_SUBMISSION_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_VIDEO_QUERY_DATA, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SegmentInput, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SessionLocation, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamInput, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, SubmitSelfEventSessionRegistration, type SubmitSelfEventSessionRegistrationParams, SubmitSurvey, type SubmitSurveyParams, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, type SurveyQuestionSearchValue, SurveyQuestionType, type SurveySection, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type TeamMember, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, UnblockAccount, type UnblockAccountParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventSessionRegistrationPassResponse, type UpdateSelfEventSessionRegistrationPassResponseParams, UpdateSelfEventSessionRegistrationPasses, type UpdateSelfEventSessionRegistrationPassesParams, UpdateSelfEventSessionRegistrationResponses, type UpdateSelfEventSessionRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadChannelContentImage, type UploadChannelContentImageParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, UploadVideo, type UploadVideoParams, type User, VIDEO_QUERY_KEY, 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, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddFreePassAddOns, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventSession, useAddSelfInterests, useAddThreadCircleAccount, useAddThreadMessageReaction, useBlockAccount, useBlockIntegration, useCancelBooking, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCancelSubscription, useCapturePaymentIntent, useCheckinListingAttendeePass, useCompleteEventActivation, useConfirmBooking, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetAllGroupEvents, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannels, useGetContent, useGetContentInterests, useGetContents, useGetEvent, useGetEventActivation, useGetEventActivationCompletions, useGetEventActivationLeaderboards, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessionQuestionSearchValues, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetLinkPreview, useGetListingAttendeePassQuestionSections, useGetManagedChannel, useGetManagedChannelCollection, useGetManagedChannelCollectionContents, useGetManagedChannelCollections, useGetManagedChannelContent, useGetManagedChannelContentActivities, useGetManagedChannelContentGuests, useGetManagedChannelContentInterests, useGetManagedChannelContents, useGetManagedChannelInterests, useGetManagedChannelSubscribers, useGetManagedChannels, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventAttendee, useGetSelfEventAttendeeAccess, useGetSelfEventAttendeeAccessQuestionSections, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassAvailableSessions, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeeTransferAccounts, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationAddOns, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPassTypes, useGetSelfEventRegistrationQuestions, useGetSelfEventRegistrationRoomTypes, useGetSelfEventSessionRegistration, useGetSelfEventSessionRegistrationAvailablePasses, useGetSelfEventSessionRegistrationIntent, useGetSelfEventSessionRegistrationQuestions, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSubscribedChannels, useGetSubscribedContents, useGetSurvey, useGetSurveyQuestionSearchValues, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSelfUpdateGroupMembership, useSetContentPublishSchedule, useStartSurvey, useSubmitSelfEventRegistration, useSubmitSelfEventSessionRegistration, useSubmitSurvey, useTransferPass, useUnblockAccount, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventSessionRegistrationPassResponse, useUpdateSelfEventSessionRegistrationPasses, useUpdateSelfEventSessionRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateSurveyResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadChannelContentImage, useUploadFile, useUploadImage, useUploadVideo };
|