@connectedxm/client 0.4.10 → 0.5.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.d.mts +246 -218
- package/dist/index.d.ts +246 -218
- package/dist/index.js +675 -658
- package/dist/index.mjs +572 -556
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -151,7 +151,7 @@ interface Account extends BaseAccount {
|
|
|
151
151
|
declare const isTypeAccount: (account: BaseAccount | Account) => account is Account;
|
|
152
152
|
interface SelfRelationships {
|
|
153
153
|
accounts: Record<string, boolean>;
|
|
154
|
-
|
|
154
|
+
groups: Record<string, "moderator" | "member" | false>;
|
|
155
155
|
events: Record<string, boolean>;
|
|
156
156
|
channels: Record<string, boolean>;
|
|
157
157
|
}
|
|
@@ -184,7 +184,7 @@ interface BaseActivity {
|
|
|
184
184
|
interface Activity extends BaseActivity {
|
|
185
185
|
html: string;
|
|
186
186
|
text: string;
|
|
187
|
-
|
|
187
|
+
group: BaseGroup | null;
|
|
188
188
|
event: BaseEvent | null;
|
|
189
189
|
interests: BaseInterest[] | null;
|
|
190
190
|
content: BaseContent | null;
|
|
@@ -218,18 +218,18 @@ interface BaseLike {
|
|
|
218
218
|
}
|
|
219
219
|
interface Like extends BaseLike {
|
|
220
220
|
}
|
|
221
|
-
declare enum
|
|
221
|
+
declare enum GroupAccess {
|
|
222
222
|
public = "public",
|
|
223
223
|
private = "private"
|
|
224
224
|
}
|
|
225
|
-
interface
|
|
225
|
+
interface BaseGroup {
|
|
226
226
|
id: string;
|
|
227
227
|
slug: string;
|
|
228
228
|
name: string;
|
|
229
229
|
image: BaseImage | null;
|
|
230
|
-
access:
|
|
230
|
+
access: GroupAccess;
|
|
231
231
|
}
|
|
232
|
-
interface
|
|
232
|
+
interface Group extends BaseGroup {
|
|
233
233
|
description: string;
|
|
234
234
|
externalUrl: string | null;
|
|
235
235
|
active: boolean;
|
|
@@ -238,7 +238,7 @@ interface Community extends BaseCommunity {
|
|
|
238
238
|
members: number;
|
|
239
239
|
};
|
|
240
240
|
}
|
|
241
|
-
declare const
|
|
241
|
+
declare const isTypeGroup: (group: BaseGroup | Group) => group is Group;
|
|
242
242
|
interface BaseEvent {
|
|
243
243
|
id: string;
|
|
244
244
|
slug: string;
|
|
@@ -275,7 +275,7 @@ interface Event extends BaseEvent {
|
|
|
275
275
|
state: string | null;
|
|
276
276
|
country: string | null;
|
|
277
277
|
zip: string | null;
|
|
278
|
-
|
|
278
|
+
groups: BaseGroup[];
|
|
279
279
|
creatorId: string | null;
|
|
280
280
|
creator: BaseAccount;
|
|
281
281
|
registration: boolean;
|
|
@@ -419,7 +419,7 @@ interface Interest extends BaseInterest {
|
|
|
419
419
|
imageId: string | null;
|
|
420
420
|
featured: boolean;
|
|
421
421
|
accounts: BaseAccount[];
|
|
422
|
-
|
|
422
|
+
groups: BaseGroup[];
|
|
423
423
|
events: BaseEvent[];
|
|
424
424
|
createdAt: string;
|
|
425
425
|
updatedAt: string;
|
|
@@ -537,8 +537,8 @@ interface Notification$1 extends BaseNotification {
|
|
|
537
537
|
activity: BaseActivity | null;
|
|
538
538
|
event: BaseEvent | null;
|
|
539
539
|
announcement: BaseAnnouncement | null;
|
|
540
|
-
|
|
541
|
-
request:
|
|
540
|
+
group: BaseGroup | null;
|
|
541
|
+
request: BaseGroupRequest | null;
|
|
542
542
|
createdAt: string;
|
|
543
543
|
updatedAt: string;
|
|
544
544
|
}
|
|
@@ -803,16 +803,16 @@ interface TeamMember extends BaseTeamMember {
|
|
|
803
803
|
startDate: true;
|
|
804
804
|
}
|
|
805
805
|
declare const isTypeTeamMember: (teamMember: BaseTeamMember | TeamMember) => teamMember is TeamMember;
|
|
806
|
-
declare enum
|
|
806
|
+
declare enum GroupMembershipRole {
|
|
807
807
|
member = "member",
|
|
808
808
|
moderator = "moderator"
|
|
809
809
|
}
|
|
810
|
-
interface
|
|
810
|
+
interface BaseGroupMembership {
|
|
811
811
|
accountId: string;
|
|
812
|
-
|
|
813
|
-
role:
|
|
812
|
+
group: BaseGroup;
|
|
813
|
+
role: GroupMembershipRole;
|
|
814
814
|
}
|
|
815
|
-
interface
|
|
815
|
+
interface GroupMembership extends BaseGroupMembership {
|
|
816
816
|
account: BaseAccount;
|
|
817
817
|
following: boolean;
|
|
818
818
|
activityEmailNotification: boolean;
|
|
@@ -825,7 +825,7 @@ interface CommunityMembership extends BaseCommunityMembership {
|
|
|
825
825
|
createdAt: string;
|
|
826
826
|
updatedAt: string;
|
|
827
827
|
}
|
|
828
|
-
declare const
|
|
828
|
+
declare const isTypeGroupMembership: (groupMembership: BaseGroupMembership | GroupMembership) => groupMembership is GroupMembership;
|
|
829
829
|
declare enum ContentTypeFormat {
|
|
830
830
|
article = "article",
|
|
831
831
|
podcast = "podcast",
|
|
@@ -948,14 +948,14 @@ interface NotificationPreferences {
|
|
|
948
948
|
chatUnreadEmail: boolean;
|
|
949
949
|
organizationAnnouncementEmail: boolean;
|
|
950
950
|
organizationAnnouncementPush: boolean;
|
|
951
|
-
|
|
952
|
-
|
|
951
|
+
groupAnnouncementEmail: boolean;
|
|
952
|
+
groupAnnouncementPush: boolean;
|
|
953
953
|
eventAnnouncementEmail: boolean;
|
|
954
954
|
eventAnnouncementPush: boolean;
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
955
|
+
groupInvitationEmail: boolean;
|
|
956
|
+
groupInvitationPush: boolean;
|
|
957
|
+
groupRequestAcceptedEmail: boolean;
|
|
958
|
+
groupRequestAcceptedPush: boolean;
|
|
959
959
|
}
|
|
960
960
|
declare enum PushDeviceAppType {
|
|
961
961
|
EVENTXM = "EVENTXM",
|
|
@@ -987,7 +987,7 @@ interface BaseAnnouncement {
|
|
|
987
987
|
message: string | null;
|
|
988
988
|
html: string | null;
|
|
989
989
|
event: BaseEvent | null;
|
|
990
|
-
|
|
990
|
+
group: BaseGroup | null;
|
|
991
991
|
creator: BaseAccount | null;
|
|
992
992
|
createdAt: string;
|
|
993
993
|
}
|
|
@@ -1286,23 +1286,38 @@ interface BaseEventReservationSectionLocation {
|
|
|
1286
1286
|
interface EventReservationSectionLocation extends BaseEventReservationSectionLocation {
|
|
1287
1287
|
reservationSection: BaseEventReservationSection;
|
|
1288
1288
|
}
|
|
1289
|
-
declare enum
|
|
1289
|
+
declare enum GroupRequestStatus {
|
|
1290
1290
|
requested = "requested",
|
|
1291
1291
|
invited = "invited",
|
|
1292
1292
|
rejected = "rejected"
|
|
1293
1293
|
}
|
|
1294
|
-
interface
|
|
1294
|
+
interface BaseGroupRequest {
|
|
1295
1295
|
id: string;
|
|
1296
|
-
status:
|
|
1297
|
-
|
|
1298
|
-
|
|
1296
|
+
status: GroupRequestStatus;
|
|
1297
|
+
groupId: string;
|
|
1298
|
+
group: BaseGroup;
|
|
1299
1299
|
account: BaseAccount;
|
|
1300
1300
|
inviter: BaseAccount;
|
|
1301
1301
|
createdAt: string;
|
|
1302
1302
|
updatedAt: string;
|
|
1303
1303
|
}
|
|
1304
|
-
interface
|
|
1305
|
-
|
|
1304
|
+
interface GroupRequest extends BaseGroupRequest {
|
|
1305
|
+
group: BaseGroup;
|
|
1306
|
+
}
|
|
1307
|
+
declare enum EventEmailType {
|
|
1308
|
+
confirmation = "confirmation",
|
|
1309
|
+
cancellation = "cancellation",
|
|
1310
|
+
reminder = "reminder"
|
|
1311
|
+
}
|
|
1312
|
+
interface BaseEventEmail {
|
|
1313
|
+
type: EventEmailType;
|
|
1314
|
+
eventId: string;
|
|
1315
|
+
body: string;
|
|
1316
|
+
replyTo: string;
|
|
1317
|
+
createdAt: string;
|
|
1318
|
+
updatedAt: string;
|
|
1319
|
+
}
|
|
1320
|
+
interface EventEmail extends BaseEventEmail {
|
|
1306
1321
|
}
|
|
1307
1322
|
|
|
1308
1323
|
interface ConnectedXMClientContextState {
|
|
@@ -1328,7 +1343,7 @@ declare const useConnectedXM: () => ConnectedXMClientContextState;
|
|
|
1328
1343
|
|
|
1329
1344
|
declare const useIsAccountFollowing: (accountId?: string) => boolean;
|
|
1330
1345
|
|
|
1331
|
-
declare const
|
|
1346
|
+
declare const useIsGroupMember: (groupId?: string, role?: "moderator" | "member") => boolean;
|
|
1332
1347
|
|
|
1333
1348
|
declare const useIsEventRegistered: (eventId: string) => boolean;
|
|
1334
1349
|
|
|
@@ -1410,13 +1425,13 @@ interface GetAccountByShareCodeProps extends SingleQueryParams {
|
|
|
1410
1425
|
declare const GetAccountByShareCode: ({ shareCode, clientApiParams, }: GetAccountByShareCodeProps) => Promise<ConnectedXMResponse<AccountShare>>;
|
|
1411
1426
|
declare const useGetAccountByShareCode: (shareCode?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountByShareCode>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AccountShare>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1412
1427
|
|
|
1413
|
-
declare const
|
|
1414
|
-
declare const
|
|
1415
|
-
interface
|
|
1428
|
+
declare const ACCOUNT_GROUPS_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1429
|
+
declare const SET_ACCOUNT_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_GROUPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountGroups>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1430
|
+
interface GetAccountGroupsProps extends InfiniteQueryParams {
|
|
1416
1431
|
accountId: string;
|
|
1417
1432
|
}
|
|
1418
|
-
declare const
|
|
1419
|
-
declare const
|
|
1433
|
+
declare const GetAccountGroups: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApiParams, locale, }: GetAccountGroupsProps) => Promise<ConnectedXMResponse<Group[]>>;
|
|
1434
|
+
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>>;
|
|
1420
1435
|
|
|
1421
1436
|
declare const ACCOUNT_FOLLOWERS_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1422
1437
|
declare const SET_ACCOUNT_FOLLOWERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_FOLLOWERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountFollowers>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
@@ -1434,12 +1449,13 @@ interface GetAccountFollowingsProps extends InfiniteQueryParams {
|
|
|
1434
1449
|
declare const GetAccountFollowings: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApiParams, locale, }: GetAccountFollowingsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1435
1450
|
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>>;
|
|
1436
1451
|
|
|
1437
|
-
declare const ACCOUNTS_QUERY_KEY: () => QueryKey;
|
|
1452
|
+
declare const ACCOUNTS_QUERY_KEY: (accountType?: keyof typeof AccountType) => QueryKey;
|
|
1438
1453
|
declare const SET_ACCOUNTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccounts>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1439
1454
|
interface GetAccountsProps extends InfiniteQueryParams {
|
|
1455
|
+
accountType?: keyof typeof AccountType;
|
|
1440
1456
|
}
|
|
1441
|
-
declare const GetAccounts: ({ pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetAccountsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1442
|
-
declare const useGetAccounts: (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>>;
|
|
1457
|
+
declare const GetAccounts: ({ pageSize, orderBy, search, accountType, queryClient, clientApiParams, locale, }: GetAccountsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1458
|
+
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>>;
|
|
1443
1459
|
|
|
1444
1460
|
declare const ACTIVITIES_QUERY_KEY: () => QueryKey;
|
|
1445
1461
|
declare const SET_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetActivities>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
@@ -1478,105 +1494,105 @@ interface GetBenefitsProps extends InfiniteQueryParams {
|
|
|
1478
1494
|
declare const GetBenefits: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetBenefitsProps) => Promise<ConnectedXMResponse<Benefit[]>>;
|
|
1479
1495
|
declare const useGetBenefits: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetBenefits>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Benefit[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1480
1496
|
|
|
1481
|
-
declare const
|
|
1482
|
-
declare const
|
|
1483
|
-
interface
|
|
1484
|
-
|
|
1497
|
+
declare const GROUPS_QUERY_KEY: () => QueryKey;
|
|
1498
|
+
declare const SET_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroups>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1499
|
+
interface GetGroupsProps extends InfiniteQueryParams {
|
|
1500
|
+
privateGroups?: boolean;
|
|
1485
1501
|
}
|
|
1486
|
-
declare const
|
|
1487
|
-
declare const
|
|
1502
|
+
declare const GetGroups: ({ pageParam, pageSize, orderBy, search, privateGroups, queryClient, clientApiParams, locale, }: GetGroupsProps) => Promise<ConnectedXMResponse<Group[]>>;
|
|
1503
|
+
declare const useGetGroups: (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>>;
|
|
1488
1504
|
|
|
1489
|
-
declare const
|
|
1490
|
-
declare const
|
|
1491
|
-
interface
|
|
1492
|
-
|
|
1505
|
+
declare const GROUP_QUERY_KEY: (groupId: string) => QueryKey;
|
|
1506
|
+
declare const SET_GROUP_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroup>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
1507
|
+
interface GetGroupProps extends SingleQueryParams {
|
|
1508
|
+
groupId: string;
|
|
1493
1509
|
}
|
|
1494
|
-
declare const
|
|
1495
|
-
declare const
|
|
1510
|
+
declare const GetGroup: ({ groupId, clientApiParams, }: GetGroupProps) => Promise<ConnectedXMResponse<Group>>;
|
|
1511
|
+
declare const useGetGroup: (groupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1496
1512
|
|
|
1497
|
-
declare const
|
|
1498
|
-
declare const
|
|
1499
|
-
interface
|
|
1500
|
-
|
|
1513
|
+
declare const GROUP_ACTIVITIES_QUERY_KEY: (groupId: string) => QueryKey;
|
|
1514
|
+
declare const SET_GROUP_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupActivities>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1515
|
+
interface GetGroupActivitiesProps extends InfiniteQueryParams {
|
|
1516
|
+
groupId: string;
|
|
1501
1517
|
}
|
|
1502
|
-
declare const
|
|
1503
|
-
declare const
|
|
1518
|
+
declare const GetGroupActivities: ({ pageParam, pageSize, orderBy, search, groupId, queryClient, clientApiParams, locale, }: GetGroupActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1519
|
+
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>>;
|
|
1504
1520
|
|
|
1505
|
-
declare const
|
|
1506
|
-
declare const
|
|
1507
|
-
interface
|
|
1508
|
-
|
|
1521
|
+
declare const GROUP_ANNOUNCEMENTS_QUERY_KEY: (groupId: string) => QueryKey;
|
|
1522
|
+
declare const SET_GROUP_ANNOUNCEMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_ANNOUNCEMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupAnnouncements>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1523
|
+
interface GetGroupAnnouncementsProps extends InfiniteQueryParams {
|
|
1524
|
+
groupId: string;
|
|
1509
1525
|
}
|
|
1510
|
-
declare const
|
|
1511
|
-
declare const
|
|
1526
|
+
declare const GetGroupAnnouncements: ({ groupId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupAnnouncementsProps) => Promise<ConnectedXMResponse<Announcement[]>>;
|
|
1527
|
+
declare const useGetGroupAnnouncements: (groupId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupAnnouncements>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Announcement[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1512
1528
|
|
|
1513
|
-
declare const
|
|
1514
|
-
declare const
|
|
1515
|
-
interface
|
|
1516
|
-
|
|
1529
|
+
declare const GROUP_MEDIA_QUERY_KEY: (groupId: string, type?: "images" | "videos") => QueryKey;
|
|
1530
|
+
declare const SET_GROUP_MEDIA_QUERY_DATA: (client: QueryClient, keyParams: [groupId: string, type?: "images" | "videos" | undefined], response: Awaited<ReturnType<typeof GetGroupMedia>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1531
|
+
interface GetGroupMediaProps extends InfiniteQueryParams {
|
|
1532
|
+
groupId: string;
|
|
1517
1533
|
type?: "images" | "videos";
|
|
1518
1534
|
}
|
|
1519
|
-
declare const
|
|
1520
|
-
declare const
|
|
1535
|
+
declare const GetGroupMedia: ({ groupId, type, pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupMediaProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1536
|
+
declare const useGetGroupMedia: (groupId?: string, type?: "images" | "videos", params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupMedia>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1521
1537
|
|
|
1522
|
-
declare const
|
|
1523
|
-
declare const
|
|
1524
|
-
interface
|
|
1525
|
-
|
|
1538
|
+
declare const GROUP_EVENTS_QUERY_KEY: (groupId: string, past?: boolean) => QueryKey;
|
|
1539
|
+
declare const SET_GROUP_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: [groupId: string, past?: boolean | undefined], response: Awaited<ReturnType<typeof GetGroupEvents>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1540
|
+
interface GetGroupEventsProps extends InfiniteQueryParams {
|
|
1541
|
+
groupId: string;
|
|
1526
1542
|
past?: boolean;
|
|
1527
1543
|
}
|
|
1528
|
-
declare const
|
|
1529
|
-
declare const
|
|
1544
|
+
declare const GetGroupEvents: ({ pageParam, pageSize, orderBy, search, groupId, past, queryClient, clientApiParams, locale, }: GetGroupEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
1545
|
+
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>>;
|
|
1530
1546
|
|
|
1531
|
-
declare const
|
|
1532
|
-
declare const
|
|
1533
|
-
interface
|
|
1534
|
-
|
|
1535
|
-
role?: keyof typeof
|
|
1547
|
+
declare const GROUP_MEMBERS_QUERY_KEY: (groupId: string, role?: keyof typeof GroupMembershipRole) => QueryKey;
|
|
1548
|
+
declare const SET_GROUP_MEMBERS_QUERY_DATA: (client: QueryClient, keyParams: [groupId: string, role?: "moderator" | "member" | undefined], response: Awaited<ReturnType<typeof GetGroupMembers>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1549
|
+
interface GetGroupMembersProps extends InfiniteQueryParams {
|
|
1550
|
+
groupId: string;
|
|
1551
|
+
role?: keyof typeof GroupMembershipRole;
|
|
1536
1552
|
}
|
|
1537
|
-
declare const
|
|
1538
|
-
declare const
|
|
1553
|
+
declare const GetGroupMembers: ({ pageParam, pageSize, orderBy, search, role, groupId, clientApiParams, }: GetGroupMembersProps) => Promise<ConnectedXMResponse<GroupMembership[]>>;
|
|
1554
|
+
declare const useGetGroupMembers: (groupId?: string, role?: keyof typeof GroupMembershipRole, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupMembers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<GroupMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1539
1555
|
|
|
1540
|
-
declare const
|
|
1541
|
-
declare const
|
|
1542
|
-
interface
|
|
1543
|
-
|
|
1556
|
+
declare const GROUP_SPONSORS_QUERY_KEY: (groupId: string) => QueryKey;
|
|
1557
|
+
declare const SET_GROUP_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupSponsors>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1558
|
+
interface GetGroupSponsorsProps extends InfiniteQueryParams {
|
|
1559
|
+
groupId: string;
|
|
1544
1560
|
}
|
|
1545
|
-
declare const
|
|
1546
|
-
declare const
|
|
1561
|
+
declare const GetGroupSponsors: ({ pageParam, pageSize, orderBy, search, groupId, queryClient, clientApiParams, locale, }: GetGroupSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1562
|
+
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>>;
|
|
1547
1563
|
|
|
1548
|
-
declare const
|
|
1549
|
-
declare const
|
|
1550
|
-
interface
|
|
1551
|
-
|
|
1564
|
+
declare const GROUP_REQUEST_QUERY_KEY: (groupId: string, requestId: string) => QueryKey;
|
|
1565
|
+
declare const SET_GROUP_REQUEST_QUERY_DATA: (client: QueryClient, keyParams: [groupId: string, requestId: string], response: Awaited<ReturnType<typeof GetGroupRequest>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
1566
|
+
interface GetGroupRequestProps extends SingleQueryParams {
|
|
1567
|
+
groupId: string;
|
|
1552
1568
|
requestId: string;
|
|
1553
1569
|
}
|
|
1554
|
-
declare const
|
|
1555
|
-
declare const
|
|
1570
|
+
declare const GetGroupRequest: ({ groupId, requestId, clientApiParams, }: GetGroupRequestProps) => Promise<ConnectedXMResponse<GroupRequest>>;
|
|
1571
|
+
declare const useGetGroupRequest: (groupId?: string, requestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupRequest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupRequest>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1556
1572
|
|
|
1557
|
-
declare const
|
|
1558
|
-
declare const
|
|
1559
|
-
interface
|
|
1560
|
-
|
|
1561
|
-
status?: keyof typeof
|
|
1573
|
+
declare const GROUP_REQUESTS_QUERY_KEY: (groupId: string, status?: keyof typeof GroupRequestStatus) => QueryKey;
|
|
1574
|
+
declare const SET_GROUP_REQUESTS_QUERY_DATA: (client: QueryClient, keyParams: [groupId: string, status?: "invited" | "rejected" | "requested" | undefined], response: Awaited<ReturnType<typeof GetGroupRequests>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1575
|
+
interface GetGroupRequestsProps extends InfiniteQueryParams {
|
|
1576
|
+
groupId: string;
|
|
1577
|
+
status?: keyof typeof GroupRequestStatus;
|
|
1562
1578
|
}
|
|
1563
|
-
declare const
|
|
1564
|
-
declare const
|
|
1579
|
+
declare const GetGroupRequests: ({ pageParam, pageSize, orderBy, search, status, groupId, queryClient, clientApiParams, locale, }: GetGroupRequestsProps) => Promise<ConnectedXMResponse<GroupRequest[]>>;
|
|
1580
|
+
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>>;
|
|
1565
1581
|
|
|
1566
1582
|
interface InvitableAccount extends Account {
|
|
1567
|
-
|
|
1568
|
-
status:
|
|
1583
|
+
groupRequests: {
|
|
1584
|
+
status: GroupRequestStatus;
|
|
1569
1585
|
}[];
|
|
1570
|
-
|
|
1571
|
-
role:
|
|
1586
|
+
groups: {
|
|
1587
|
+
role: GroupMembershipRole;
|
|
1572
1588
|
}[];
|
|
1573
1589
|
}
|
|
1574
|
-
declare const
|
|
1575
|
-
interface
|
|
1576
|
-
|
|
1590
|
+
declare const GROUP_INVITABLE_ACCOUNTS_QUERY_KEY: (groupId: string) => QueryKey;
|
|
1591
|
+
interface GetGroupInvitableAccountsProps extends InfiniteQueryParams {
|
|
1592
|
+
groupId: string;
|
|
1577
1593
|
}
|
|
1578
|
-
declare const
|
|
1579
|
-
declare const
|
|
1594
|
+
declare const GetGroupInvitableAccounts: ({ pageParam, pageSize, orderBy, search, groupId, clientApiParams, }: GetGroupInvitableAccountsProps) => Promise<ConnectedXMResponse<InvitableAccount[]>>;
|
|
1595
|
+
declare const useGetGroupInvitableAccounts: (groupId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupInvitableAccounts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<InvitableAccount[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1580
1596
|
|
|
1581
1597
|
declare const CONTENT_QUERY_KEY: (contentId: string) => QueryKey;
|
|
1582
1598
|
declare const SET_CONTENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
@@ -1785,7 +1801,7 @@ declare const ORGANIZATION_EXPLORE_QUERY_KEY: () => QueryKey;
|
|
|
1785
1801
|
interface Explore {
|
|
1786
1802
|
contents: Content[];
|
|
1787
1803
|
events: BaseEvent[];
|
|
1788
|
-
|
|
1804
|
+
groups: BaseGroup[];
|
|
1789
1805
|
recommendations: BaseAccount[];
|
|
1790
1806
|
}
|
|
1791
1807
|
interface GetOrganizationExploreProps extends SingleQueryParams {
|
|
@@ -1964,8 +1980,8 @@ declare const GetSelf: ({ ignoreExecuteAs, clientApiParams, }: GetSelfProps) =>
|
|
|
1964
1980
|
declare const useGetSelf: (ignoreExecuteAs?: boolean, options?: SingleQueryOptions<ReturnType<typeof GetSelf>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1965
1981
|
|
|
1966
1982
|
declare const SELF_RELATIONSHIPS_QUERY_KEY: () => QueryKey;
|
|
1967
|
-
declare const ADD_SELF_RELATIONSHIP: (client: QueryClient, baseKeys: [locale: string] | undefined, type: "
|
|
1968
|
-
declare const REMOVE_SELF_RELATIONSHIP: (client: QueryClient, baseKeys: [locale: string] | undefined, type: "
|
|
1983
|
+
declare const ADD_SELF_RELATIONSHIP: (client: QueryClient, baseKeys: [locale: string] | undefined, type: "groups" | "accounts" | "events", id: string, value?: boolean | string) => void;
|
|
1984
|
+
declare const REMOVE_SELF_RELATIONSHIP: (client: QueryClient, baseKeys: [locale: string] | undefined, type: "groups" | "accounts" | "events", id: string, value?: boolean | string) => void;
|
|
1969
1985
|
interface GetSelfRelationshipsProps extends SingleQueryParams {
|
|
1970
1986
|
}
|
|
1971
1987
|
declare const GetSelfRelationships: ({ clientApiParams, }: GetSelfRelationshipsProps) => Promise<ConnectedXMResponse<SelfRelationships>>;
|
|
@@ -1984,19 +2000,19 @@ interface GetSelfAnnouncementProps extends SingleQueryParams {
|
|
|
1984
2000
|
declare const GetSelfAnnouncement: ({ announcementId, clientApiParams, }: GetSelfAnnouncementProps) => Promise<ConnectedXMResponse<Announcement>>;
|
|
1985
2001
|
declare const useGetSelfAnnouncement: (announcementId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfAnnouncement>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1986
2002
|
|
|
1987
|
-
declare const
|
|
1988
|
-
declare const
|
|
1989
|
-
interface
|
|
1990
|
-
|
|
2003
|
+
declare const SELF_GROUP_MEMBERSHIP_QUERY_KEY: (groupId: string) => QueryKey;
|
|
2004
|
+
declare const SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_GROUP_MEMBERSHIP_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfGroupMembership>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2005
|
+
interface GetSelfGroupMembershipProps extends SingleQueryParams {
|
|
2006
|
+
groupId: string;
|
|
1991
2007
|
}
|
|
1992
|
-
declare const
|
|
1993
|
-
declare const
|
|
2008
|
+
declare const GetSelfGroupMembership: ({ groupId, clientApiParams, }: GetSelfGroupMembershipProps) => Promise<ConnectedXMResponse<GroupMembership>>;
|
|
2009
|
+
declare const useGetSelfGroupMembership: (groupId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfGroupMembership>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupMembership>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1994
2010
|
|
|
1995
|
-
declare const
|
|
1996
|
-
interface
|
|
2011
|
+
declare const SELF_GROUP_MEMBERSHIPS_QUERY_KEY: () => QueryKey;
|
|
2012
|
+
interface GetSelfGroupMembershipsProps extends InfiniteQueryParams {
|
|
1997
2013
|
}
|
|
1998
|
-
declare const
|
|
1999
|
-
declare const
|
|
2014
|
+
declare const GetSelfGroupMemberships: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfGroupMembershipsProps) => Promise<ConnectedXMResponse<GroupMembership[]>>;
|
|
2015
|
+
declare const useGetSelfGroupMemberships: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfGroupMemberships>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<GroupMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2000
2016
|
|
|
2001
2017
|
declare const SELF_DELEGATE_OF_QUERY_KEY: () => QueryKey;
|
|
2002
2018
|
interface GetSelfDelegateOfProps extends InfiniteQueryParams {
|
|
@@ -2142,21 +2158,6 @@ interface GetLevelSponsorsProps extends InfiniteQueryParams {
|
|
|
2142
2158
|
declare const GetLevelSponsors: ({ levelId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetLevelSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
2143
2159
|
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>>;
|
|
2144
2160
|
|
|
2145
|
-
declare const SPONSOR_QUERY_KEY: (sponsorId: string) => QueryKey;
|
|
2146
|
-
declare const SET_SPONSOR_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SPONSOR_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSponsor>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2147
|
-
interface GetSponsorProps extends SingleQueryParams {
|
|
2148
|
-
accountId: string;
|
|
2149
|
-
}
|
|
2150
|
-
declare const GetSponsor: ({ accountId, clientApiParams, }: GetSponsorProps) => Promise<ConnectedXMResponse<Account>>;
|
|
2151
|
-
declare const useGetSponsor: (accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSponsor>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2152
|
-
|
|
2153
|
-
declare const SPONSORS_QUERY_KEY: () => QueryKey;
|
|
2154
|
-
declare const SET_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSponsors>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
2155
|
-
interface GetSponsorsProps extends InfiniteQueryParams {
|
|
2156
|
-
}
|
|
2157
|
-
declare const GetSponsors: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
2158
|
-
declare const useGetSponsors: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSponsors>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2159
|
-
|
|
2160
2161
|
declare const INVOICE_QUERY_KEY: (invoiceId: string) => QueryKey;
|
|
2161
2162
|
declare const SET_INVOICE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INVOICE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetInvoice>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2162
2163
|
interface GetInvoiceProps extends SingleQueryParams {
|
|
@@ -2189,6 +2190,15 @@ interface GetSelfEventListingAnnouncementsProps extends InfiniteQueryParams {
|
|
|
2189
2190
|
declare const GetSelfEventListingAnnouncements: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingAnnouncementsProps) => Promise<ConnectedXMResponse<Announcement[]>>;
|
|
2190
2191
|
declare const useGetSelfEventListingAnnouncements: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingAnnouncements>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Announcement[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2191
2192
|
|
|
2193
|
+
declare const LISTING_EMAIL_QUERY_KEY: (eventId: string, type: EventEmailType) => QueryKey;
|
|
2194
|
+
declare const SET_LISTING_EMAIL_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, type: EventEmailType], response: Awaited<ReturnType<typeof GetSelfEventListingEmail>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2195
|
+
interface GetSelfEventListingEmailProps extends SingleQueryParams {
|
|
2196
|
+
eventId: string;
|
|
2197
|
+
type: EventEmailType;
|
|
2198
|
+
}
|
|
2199
|
+
declare const GetSelfEventListingEmail: ({ eventId, type, clientApiParams, }: GetSelfEventListingEmailProps) => Promise<ConnectedXMResponse<EventEmail | null>>;
|
|
2200
|
+
declare const useGetSelfEventListingEmail: (eventId: string | undefined, type: EventEmailType, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingEmail>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventEmail | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2201
|
+
|
|
2192
2202
|
declare const LISTING_QUESTIONS_QUERY_KEY: (eventId: string) => unknown[];
|
|
2193
2203
|
interface GetSelfEventListingQuestionsProps extends InfiniteQueryParams {
|
|
2194
2204
|
eventId: string;
|
|
@@ -2555,7 +2565,7 @@ interface CreateActivity {
|
|
|
2555
2565
|
message: string;
|
|
2556
2566
|
contentId?: string;
|
|
2557
2567
|
eventId?: string;
|
|
2558
|
-
|
|
2568
|
+
groupId?: string;
|
|
2559
2569
|
commentedId?: string;
|
|
2560
2570
|
}
|
|
2561
2571
|
interface CreateInterest {
|
|
@@ -2577,12 +2587,12 @@ interface DeleteActivityParams extends MutationParams {
|
|
|
2577
2587
|
declare const DeleteActivity: ({ activityId, clientApiParams, queryClient, }: DeleteActivityParams) => Promise<ConnectedXMResponse<null>>;
|
|
2578
2588
|
declare const useDeleteActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteActivity>>, Omit<DeleteActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteActivityParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2579
2589
|
|
|
2580
|
-
interface
|
|
2581
|
-
|
|
2582
|
-
membership: Partial<
|
|
2590
|
+
interface SelfUpdateGroupMembershipParams extends MutationParams {
|
|
2591
|
+
groupId: string;
|
|
2592
|
+
membership: Partial<GroupMembership>;
|
|
2583
2593
|
}
|
|
2584
|
-
declare const
|
|
2585
|
-
declare const
|
|
2594
|
+
declare const SelfUpdateGroupMembership: ({ groupId, membership, clientApiParams, queryClient, }: SelfUpdateGroupMembershipParams) => Promise<ConnectedXMResponse<GroupMembership>>;
|
|
2595
|
+
declare const useSelfUpdateGroupMembership: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfUpdateGroupMembership>>, Omit<SelfUpdateGroupMembershipParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupMembership>, axios.AxiosError<ConnectedXMResponse<GroupMembership>, any>, Omit<SelfUpdateGroupMembershipParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2586
2596
|
|
|
2587
2597
|
interface UpdateSelfParams extends MutationParams {
|
|
2588
2598
|
username?: string;
|
|
@@ -2643,8 +2653,8 @@ interface UpdateSelfNotificationPreferencesParams extends MutationParams {
|
|
|
2643
2653
|
eventAnnouncementEmail?: boolean;
|
|
2644
2654
|
organizationAnnouncementPush?: boolean;
|
|
2645
2655
|
organizationAnnouncementEmail?: boolean;
|
|
2646
|
-
|
|
2647
|
-
|
|
2656
|
+
groupAnnouncementPush?: boolean;
|
|
2657
|
+
groupAnnouncementEmail?: boolean;
|
|
2648
2658
|
}
|
|
2649
2659
|
declare const UpdateSelfNotificationPreferences: ({ clientApiParams, queryClient, ...params }: UpdateSelfNotificationPreferencesParams) => Promise<ConnectedXMResponse<NotificationPreferences>>;
|
|
2650
2660
|
declare const useUpdateSelfNotificationPreferences: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfNotificationPreferences>>, Omit<UpdateSelfNotificationPreferencesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<NotificationPreferences>, axios.AxiosError<ConnectedXMResponse<NotificationPreferences>, any>, Omit<UpdateSelfNotificationPreferencesParams, "queryClient" | "clientApiParams">, unknown>;
|
|
@@ -2656,6 +2666,12 @@ interface UpdateSelfPushDeviceParams extends MutationParams {
|
|
|
2656
2666
|
declare const UpdateSelfPushDevice: ({ pushDeviceId, pushDevice, clientApiParams, queryClient, }: UpdateSelfPushDeviceParams) => Promise<ConnectedXMResponse<PushDevice>>;
|
|
2657
2667
|
declare const useUpdateSelfPushDevice: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfPushDevice>>, Omit<UpdateSelfPushDeviceParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<PushDevice>, axios.AxiosError<ConnectedXMResponse<PushDevice>, any>, Omit<UpdateSelfPushDeviceParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2658
2668
|
|
|
2669
|
+
interface AddSelfInterestsParams extends MutationParams {
|
|
2670
|
+
interestIds: string[];
|
|
2671
|
+
}
|
|
2672
|
+
declare const AddSelfInterests: ({ interestIds, clientApiParams, queryClient, }: AddSelfInterestsParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2673
|
+
declare const useAddSelfInterests: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfInterests>>, Omit<AddSelfInterestsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<AddSelfInterestsParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2674
|
+
|
|
2659
2675
|
interface CreateSupportTicketParams extends MutationParams {
|
|
2660
2676
|
type: "support" | "inquiry";
|
|
2661
2677
|
email: string;
|
|
@@ -2673,90 +2689,90 @@ interface CreateTeamAccountParams extends MutationParams {
|
|
|
2673
2689
|
declare const CreateTeamAccount: ({ name, email, clientApiParams, }: CreateTeamAccountParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2674
2690
|
declare const useCreateTeamAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateTeamAccount>>, Omit<CreateTeamAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<CreateTeamAccountParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2675
2691
|
|
|
2676
|
-
interface
|
|
2677
|
-
|
|
2692
|
+
interface AcceptGroupInviteParitation extends MutationParams {
|
|
2693
|
+
groupId: string;
|
|
2678
2694
|
requestId: string;
|
|
2679
2695
|
}
|
|
2680
|
-
declare const
|
|
2681
|
-
declare const
|
|
2696
|
+
declare const AcceptGroupInvitation: ({ groupId, requestId, clientApiParams, queryClient, }: AcceptGroupInviteParitation) => Promise<ConnectedXMResponse<Group>>;
|
|
2697
|
+
declare const useAcceptGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptGroupInvitation>>, Omit<AcceptGroupInviteParitation, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<Group>, any>, Omit<AcceptGroupInviteParitation, "queryClient" | "clientApiParams">, unknown>;
|
|
2682
2698
|
|
|
2683
|
-
interface
|
|
2684
|
-
|
|
2699
|
+
interface AcceptGroupRequestParams extends MutationParams {
|
|
2700
|
+
groupId: string;
|
|
2685
2701
|
requestId: string;
|
|
2686
2702
|
}
|
|
2687
|
-
declare const
|
|
2688
|
-
declare const
|
|
2703
|
+
declare const AcceptGroupRequest: ({ groupId, requestId, clientApiParams, queryClient, }: AcceptGroupRequestParams) => Promise<ConnectedXMResponse<Group>>;
|
|
2704
|
+
declare const useAcceptGroupRequest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptGroupRequest>>, Omit<AcceptGroupRequestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<Group>, any>, Omit<AcceptGroupRequestParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2689
2705
|
|
|
2690
|
-
interface
|
|
2691
|
-
|
|
2706
|
+
interface CreateGroupParams extends MutationParams {
|
|
2707
|
+
group: CreateGroup;
|
|
2692
2708
|
imageDataUri?: string;
|
|
2693
2709
|
}
|
|
2694
|
-
interface
|
|
2710
|
+
interface CreateGroup {
|
|
2695
2711
|
name: string;
|
|
2696
2712
|
description: string;
|
|
2697
|
-
access: keyof typeof
|
|
2713
|
+
access: keyof typeof GroupAccess;
|
|
2698
2714
|
externalUrl?: string;
|
|
2699
2715
|
}
|
|
2700
|
-
declare const
|
|
2701
|
-
declare const
|
|
2716
|
+
declare const CreateGroup: ({ group, imageDataUri, clientApiParams, queryClient, }: CreateGroupParams) => Promise<ConnectedXMResponse<Group>>;
|
|
2717
|
+
declare const useCreateGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateGroup>>, Omit<CreateGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<Group>, any>, Omit<CreateGroupParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2702
2718
|
|
|
2703
|
-
interface
|
|
2704
|
-
|
|
2719
|
+
interface CreateGroupInvitationsParams extends MutationParams {
|
|
2720
|
+
groupId: string;
|
|
2705
2721
|
accountIds: string[];
|
|
2706
2722
|
}
|
|
2707
|
-
declare const
|
|
2708
|
-
declare const
|
|
2723
|
+
declare const CreateGroupInvitations: ({ groupId, accountIds, clientApiParams, queryClient, }: CreateGroupInvitationsParams) => Promise<ConnectedXMResponse<null>>;
|
|
2724
|
+
declare const useCreateGroupInvitations: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateGroupInvitations>>, Omit<CreateGroupInvitationsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<CreateGroupInvitationsParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2709
2725
|
|
|
2710
|
-
interface
|
|
2711
|
-
|
|
2726
|
+
interface CreateGroupRequestParams extends MutationParams {
|
|
2727
|
+
groupId: string;
|
|
2712
2728
|
}
|
|
2713
|
-
declare const
|
|
2714
|
-
declare const
|
|
2729
|
+
declare const CreateGroupRequest: ({ groupId, clientApiParams, }: CreateGroupRequestParams) => Promise<ConnectedXMResponse<null>>;
|
|
2730
|
+
declare const useCreateGroupRequest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateGroupRequest>>, Omit<CreateGroupRequestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<CreateGroupRequestParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2715
2731
|
|
|
2716
|
-
interface
|
|
2717
|
-
|
|
2718
|
-
|
|
2732
|
+
interface DeactivateGroupParams extends MutationParams {
|
|
2733
|
+
groupId: string;
|
|
2734
|
+
group: Group;
|
|
2719
2735
|
imageDataUri?: string;
|
|
2720
2736
|
}
|
|
2721
|
-
declare const
|
|
2722
|
-
declare const
|
|
2737
|
+
declare const DeactivateGroup: ({ groupId, group, imageDataUri, clientApiParams, queryClient, }: DeactivateGroupParams) => Promise<ConnectedXMResponse<Group>>;
|
|
2738
|
+
declare const useDeactivateGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeactivateGroup>>, Omit<DeactivateGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<Group>, any>, Omit<DeactivateGroupParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2723
2739
|
|
|
2724
|
-
interface
|
|
2725
|
-
|
|
2740
|
+
interface DeleteGroupInvitationParams extends MutationParams {
|
|
2741
|
+
groupId: string;
|
|
2726
2742
|
requestId: string;
|
|
2727
2743
|
}
|
|
2728
|
-
declare const
|
|
2729
|
-
declare const
|
|
2744
|
+
declare const DeleteGroupInvitation: ({ groupId, requestId, clientApiParams, queryClient, }: DeleteGroupInvitationParams) => Promise<ConnectedXMResponse<null>>;
|
|
2745
|
+
declare const useDeleteGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteGroupInvitation>>, Omit<DeleteGroupInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteGroupInvitationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2730
2746
|
|
|
2731
|
-
interface
|
|
2732
|
-
|
|
2747
|
+
interface JoinGroupParams extends MutationParams {
|
|
2748
|
+
groupId: string;
|
|
2733
2749
|
}
|
|
2734
|
-
declare const
|
|
2735
|
-
declare const
|
|
2750
|
+
declare const JoinGroup: ({ groupId, clientApiParams, queryClient, }: JoinGroupParams) => Promise<ConnectedXMResponse<GroupMembership>>;
|
|
2751
|
+
declare const useJoinGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof JoinGroup>>, Omit<JoinGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupMembership>, axios.AxiosError<ConnectedXMResponse<GroupMembership>, any>, Omit<JoinGroupParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2736
2752
|
|
|
2737
|
-
interface
|
|
2738
|
-
|
|
2753
|
+
interface LeaveGroupParams extends MutationParams {
|
|
2754
|
+
groupId: string;
|
|
2739
2755
|
}
|
|
2740
|
-
declare const
|
|
2741
|
-
declare const
|
|
2756
|
+
declare const LeaveGroup: ({ groupId, clientApiParams, queryClient, }: LeaveGroupParams) => Promise<ConnectedXMResponse<null>>;
|
|
2757
|
+
declare const useLeaveGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof LeaveGroup>>, Omit<LeaveGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<LeaveGroupParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2742
2758
|
|
|
2743
|
-
interface
|
|
2744
|
-
|
|
2759
|
+
interface RejectGroupRequestParams extends MutationParams {
|
|
2760
|
+
groupId: string;
|
|
2745
2761
|
requestId: string;
|
|
2746
2762
|
}
|
|
2747
|
-
declare const
|
|
2748
|
-
declare const
|
|
2763
|
+
declare const RejectGroupRequest: ({ groupId, requestId, clientApiParams, queryClient, }: RejectGroupRequestParams) => Promise<ConnectedXMResponse<GroupRequest>>;
|
|
2764
|
+
declare const useRejectGroupRequest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectGroupRequest>>, Omit<RejectGroupRequestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupRequest>, axios.AxiosError<ConnectedXMResponse<GroupRequest>, any>, Omit<RejectGroupRequestParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2749
2765
|
|
|
2750
|
-
interface
|
|
2751
|
-
|
|
2766
|
+
interface RemoveGroupMemberParams extends MutationParams {
|
|
2767
|
+
groupId: string;
|
|
2752
2768
|
accountId: string;
|
|
2753
2769
|
}
|
|
2754
|
-
declare const
|
|
2755
|
-
declare const
|
|
2770
|
+
declare const RemoveGroupMember: ({ groupId, accountId, clientApiParams, queryClient, }: RemoveGroupMemberParams) => Promise<ConnectedXMResponse<null>>;
|
|
2771
|
+
declare const useRemoveGroupMember: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveGroupMember>>, Omit<RemoveGroupMemberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveGroupMemberParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2756
2772
|
|
|
2757
|
-
interface
|
|
2758
|
-
|
|
2759
|
-
|
|
2773
|
+
interface UpdateGroupParams extends MutationParams {
|
|
2774
|
+
groupId: string;
|
|
2775
|
+
group: {
|
|
2760
2776
|
name?: string;
|
|
2761
2777
|
description?: string;
|
|
2762
2778
|
externalUrl?: string;
|
|
@@ -2764,39 +2780,39 @@ interface UpdateCommunityParams extends MutationParams {
|
|
|
2764
2780
|
};
|
|
2765
2781
|
imageDataUri?: string;
|
|
2766
2782
|
}
|
|
2767
|
-
declare const
|
|
2768
|
-
declare const
|
|
2783
|
+
declare const UpdateGroup: ({ groupId, group, imageDataUri, clientApiParams, queryClient, }: UpdateGroupParams) => Promise<ConnectedXMResponse<Group>>;
|
|
2784
|
+
declare const useUpdateGroup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateGroup>>, Omit<UpdateGroupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<Group>, any>, Omit<UpdateGroupParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2769
2785
|
|
|
2770
|
-
interface
|
|
2771
|
-
|
|
2786
|
+
interface DemoteGroupModeratorParams extends MutationParams {
|
|
2787
|
+
groupId: string;
|
|
2772
2788
|
accountId: string;
|
|
2773
2789
|
}
|
|
2774
|
-
declare const
|
|
2775
|
-
declare const
|
|
2790
|
+
declare const DemoteGroupModerator: ({ groupId, accountId, clientApiParams, queryClient, }: DemoteGroupModeratorParams) => Promise<ConnectedXMResponse<GroupMembership>>;
|
|
2791
|
+
declare const useDemoteGroupModerator: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DemoteGroupModerator>>, Omit<DemoteGroupModeratorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupMembership>, axios.AxiosError<ConnectedXMResponse<GroupMembership>, any>, Omit<DemoteGroupModeratorParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2776
2792
|
|
|
2777
|
-
interface
|
|
2778
|
-
|
|
2793
|
+
interface PromoteGroupMemberParams extends MutationParams {
|
|
2794
|
+
groupId: string;
|
|
2779
2795
|
accountId: string;
|
|
2780
2796
|
}
|
|
2781
|
-
declare const
|
|
2782
|
-
declare const
|
|
2797
|
+
declare const PromoteGroupMember: ({ groupId, accountId, clientApiParams, queryClient, }: PromoteGroupMemberParams) => Promise<ConnectedXMResponse<GroupMembership>>;
|
|
2798
|
+
declare const usePromoteGroupMember: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof PromoteGroupMember>>, Omit<PromoteGroupMemberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupMembership>, axios.AxiosError<ConnectedXMResponse<GroupMembership>, any>, Omit<PromoteGroupMemberParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2783
2799
|
|
|
2784
|
-
interface
|
|
2785
|
-
|
|
2800
|
+
interface CreateGroupAnnouncementParams extends MutationParams {
|
|
2801
|
+
groupId: string;
|
|
2786
2802
|
title: string;
|
|
2787
2803
|
html: string;
|
|
2788
2804
|
email: boolean;
|
|
2789
2805
|
push: boolean;
|
|
2790
2806
|
}
|
|
2791
|
-
declare const
|
|
2792
|
-
declare const
|
|
2807
|
+
declare const CreateGroupAnnouncement: ({ groupId, title, html, email, push, clientApiParams, queryClient, }: CreateGroupAnnouncementParams) => Promise<ConnectedXMResponse<Announcement>>;
|
|
2808
|
+
declare const useCreateGroupAnnouncement: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateGroupAnnouncement>>, Omit<CreateGroupAnnouncementParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<Announcement>, any>, Omit<CreateGroupAnnouncementParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2793
2809
|
|
|
2794
|
-
interface
|
|
2795
|
-
|
|
2810
|
+
interface RejectGroupInvitationParams extends MutationParams {
|
|
2811
|
+
groupId: string;
|
|
2796
2812
|
requestId: string;
|
|
2797
2813
|
}
|
|
2798
|
-
declare const
|
|
2799
|
-
declare const
|
|
2814
|
+
declare const RejectGroupInvitation: ({ groupId, requestId, clientApiParams, queryClient, }: RejectGroupInvitationParams) => Promise<ConnectedXMResponse<GroupRequest>>;
|
|
2815
|
+
declare const useRejectGroupInvitation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectGroupInvitation>>, Omit<RejectGroupInvitationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<GroupRequest>, axios.AxiosError<ConnectedXMResponse<GroupRequest>, any>, Omit<RejectGroupInvitationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2800
2816
|
|
|
2801
2817
|
interface CreateListingSessionParams extends MutationParams {
|
|
2802
2818
|
eventId: string;
|
|
@@ -2842,7 +2858,7 @@ declare const useAddListingSponsor: (options?: Omit<MutationOptions<Awaited<Retu
|
|
|
2842
2858
|
interface CreateListingParams extends MutationParams {
|
|
2843
2859
|
event: CreateListing;
|
|
2844
2860
|
imageDataUri?: any;
|
|
2845
|
-
|
|
2861
|
+
groupId?: string;
|
|
2846
2862
|
sponsorIds?: string[];
|
|
2847
2863
|
speakers?: Speaker[];
|
|
2848
2864
|
sessions?: Session[];
|
|
@@ -2867,7 +2883,7 @@ interface CreateListing {
|
|
|
2867
2883
|
registration?: boolean;
|
|
2868
2884
|
registrationLimit?: string;
|
|
2869
2885
|
}
|
|
2870
|
-
declare const CreateListing: ({ event, imageDataUri,
|
|
2886
|
+
declare const CreateListing: ({ event, imageDataUri, groupId, sponsorIds, speakers, sessions, clientApiParams, queryClient, }: CreateListingParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2871
2887
|
declare const useCreateListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateListing>>, Omit<CreateListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<CreateListingParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2872
2888
|
|
|
2873
2889
|
interface CreateListingAnnouncementParams extends MutationParams {
|
|
@@ -2964,6 +2980,18 @@ interface UpdateListing {
|
|
|
2964
2980
|
declare const UpdateListing: ({ eventId, event, base64, clientApiParams, queryClient, }: UpdateListingParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2965
2981
|
declare const useUpdateListing: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListing>>, Omit<UpdateListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateListingParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2966
2982
|
|
|
2983
|
+
interface UpdateEmail {
|
|
2984
|
+
body?: string;
|
|
2985
|
+
replyTo?: string;
|
|
2986
|
+
}
|
|
2987
|
+
interface UpdateListingEmailParams extends MutationParams {
|
|
2988
|
+
eventId: string;
|
|
2989
|
+
type: EventEmailType;
|
|
2990
|
+
email: UpdateEmail;
|
|
2991
|
+
}
|
|
2992
|
+
declare const UpdateListingEmail: ({ eventId, type, email, clientApiParams, queryClient, }: UpdateListingEmailParams) => Promise<ConnectedXMResponse<EventEmail>>;
|
|
2993
|
+
declare const useUpdateListingEmail: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingEmail>>, Omit<UpdateListingEmailParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventEmail>, axios.AxiosError<ConnectedXMResponse<EventEmail>, any>, Omit<UpdateListingEmailParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2994
|
+
|
|
2967
2995
|
interface UpdateListingQuestionParams extends MutationParams {
|
|
2968
2996
|
eventId: string;
|
|
2969
2997
|
questionId: string;
|
|
@@ -3011,4 +3039,4 @@ interface UpdateListingSpeakerParams extends MutationParams {
|
|
|
3011
3039
|
declare const UpdateListingSpeaker: ({ eventId, speaker, speakerId, imageDataUri, clientApiParams, queryClient, }: UpdateListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
3012
3040
|
declare const useUpdateListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingSpeaker>>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3013
3041
|
|
|
3014
|
-
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_COMMUNITIES_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptCommunityInvitation, type AcceptCommunityInviteParitation, AcceptCommunityRequest, type AcceptCommunityRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseCommunity, type BaseCommunityMembership, type BaseCommunityRequest, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, COMMUNITIES_QUERY_KEY, COMMUNITY_ACTIVITIES_QUERY_KEY, COMMUNITY_ANNOUNCEMENTS_QUERY_KEY, COMMUNITY_EVENTS_QUERY_KEY, COMMUNITY_INVITABLE_ACCOUNTS_QUERY_KEY, COMMUNITY_MEDIA_QUERY_KEY, COMMUNITY_MEMBERS_QUERY_KEY, COMMUNITY_QUERY_KEY, COMMUNITY_REQUESTS_QUERY_KEY, COMMUNITY_REQUEST_QUERY_KEY, COMMUNITY_SPONSORS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type CheckoutResponse, type ClientApiParams, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, type CommunityRequest, CommunityRequestStatus, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, CreateCommunityInvitations, type CreateCommunityInvitationsParams, type CreateCommunityParams, CreateCommunityRequest, type CreateCommunityRequestParams, CreateEventLead, type CreateEventLeadParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateCommunity, type DeactivateCommunityParams, DeleteActivity, type DeleteActivityParams, DeleteCommunityInvitation, type DeleteCommunityInvitationParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteCommunityModerator, type DemoteCommunityModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type EventWithSessions, type EventWithSpeakers, type EventWithSponsors, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountCommunities, type GetAccountCommunitiesProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetCommunities, type GetCommunitiesProps, GetCommunity, GetCommunityActivities, type GetCommunityActivitiesProps, GetCommunityAnnouncements, type GetCommunityAnnouncementsProps, GetCommunityEvents, type GetCommunityEventsProps, GetCommunityInvitableAccounts, type GetCommunityInvitableAccountsProps, GetCommunityMedia, type GetCommunityMediaProps, GetCommunityMembers, type GetCommunityMembersProps, type GetCommunityProps, GetCommunityRequest, type GetCommunityRequestProps, GetCommunityRequests, type GetCommunityRequestsProps, GetCommunitySponsors, type GetCommunitySponsorsProps, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetInterests, type GetInterestsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfCommunityMembership, type GetSelfCommunityMembershipProps, GetSelfCommunityMemberships, type GetSelfCommunityMembershipsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSponsor, type GetSponsorProps, GetSponsors, type GetSponsorsProps, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinCommunity, type JoinCommunityParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, type Lead, LeaveCommunity, type LeaveCommunityParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification$1 as Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, PromoteCommunityMember, type PromoteCommunityMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, RejectCommunityInvitation, type RejectCommunityInvitationParams, RejectCommunityRequest, type RejectCommunityRequestParams, RejectTransfer, type RejectTransferParams, RemoveCommunityMember, type RemoveCommunityMemberParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIPS_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIP_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_COMMUNITIES_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_COMMUNITIES_QUERY_DATA, SET_COMMUNITY_ACTIVITIES_QUERY_DATA, SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA, SET_COMMUNITY_EVENTS_QUERY_DATA, SET_COMMUNITY_MEDIA_QUERY_DATA, SET_COMMUNITY_MEMBERS_QUERY_DATA, SET_COMMUNITY_QUERY_DATA, SET_COMMUNITY_REQUESTS_QUERY_DATA, SET_COMMUNITY_REQUEST_QUERY_DATA, SET_COMMUNITY_SPONSORS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LISTING_REGISTRATION_QUERY_KEY, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_COMMUNITY_MEMBERSHIP_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_STATUS_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SPONSORS_QUERY_DATA, SET_SPONSOR_QUERY_DATA, SPONSORS_QUERY_KEY, SPONSOR_QUERY_KEY, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateCommunityMembership, type SelfUpdateCommunityMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateCommunity, type UpdateCommunityParams, UpdateListing, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeCommunity, isTypeCommunityMembership, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, isUUID, setFirstPageData, useAcceptCommunityInvitation, useAcceptCommunityRequest, useAcceptTransfer, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateCommunity, useCreateCommunityAnnouncement, useCreateCommunityInvitations, useCreateCommunityRequest, useCreateEventLead, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateCommunity, useDeleteActivity, useDeleteCommunityInvitation, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteCommunityModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityInvitableAccounts, useGetCommunityMedia, useGetCommunityMembers, useGetCommunityRequest, useGetCommunityRequests, useGetCommunitySponsors, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetInterests, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfCommunityMembership, useGetSelfCommunityMemberships, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useIsAccountFollowing, useIsChannelSubscribed, useIsCommunityMember, useIsEventRegistered, useJoinCommunity, useLeaveCommunity, useLeaveSelfChatChannel, useLikeActivity, usePromoteCommunityMember, useRegisterCancelledEventRegistration, useRejectCommunityInvitation, useRejectCommunityRequest, useRejectTransfer, useRemoveCommunityMember, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateListing, useUpdateListingQuestion, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
|
|
3042
|
+
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, type BaseGroup, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type CheckoutResponse, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateEventLead, type CreateEventLeadParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateGroup, type DeactivateGroupParams, DeleteActivity, type DeleteActivityParams, DeleteGroupInvitation, type DeleteGroupInvitationParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteGroupModerator, type DemoteGroupModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type EventWithSessions, type EventWithSpeakers, type EventWithSponsors, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GROUPS_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, type GetGroupsProps, GetInterests, type GetInterestsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, type Group, GroupAccess, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, type Lead, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification$1 as Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_QUERY_DATA, SET_LISTING_REGISTRATION_QUERY_KEY, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_STATUS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteGroupInvitation, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetInterests, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingEmail, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useIsGroupMember, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, usePromoteGroupMember, useRegisterCancelledEventRegistration, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveGroupMember, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
|