@connectedxm/client 0.4.11 → 0.5.1
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 +214 -221
- package/dist/index.d.ts +214 -221
- package/dist/index.js +605 -661
- package/dist/index.mjs +509 -559
- 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,23 @@ 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
1306
|
}
|
|
1307
1307
|
declare enum EventEmailType {
|
|
1308
1308
|
confirmation = "confirmation",
|
|
@@ -1343,7 +1343,7 @@ declare const useConnectedXM: () => ConnectedXMClientContextState;
|
|
|
1343
1343
|
|
|
1344
1344
|
declare const useIsAccountFollowing: (accountId?: string) => boolean;
|
|
1345
1345
|
|
|
1346
|
-
declare const
|
|
1346
|
+
declare const useIsGroupMember: (groupId?: string, role?: "moderator" | "member") => boolean;
|
|
1347
1347
|
|
|
1348
1348
|
declare const useIsEventRegistered: (eventId: string) => boolean;
|
|
1349
1349
|
|
|
@@ -1425,13 +1425,13 @@ interface GetAccountByShareCodeProps extends SingleQueryParams {
|
|
|
1425
1425
|
declare const GetAccountByShareCode: ({ shareCode, clientApiParams, }: GetAccountByShareCodeProps) => Promise<ConnectedXMResponse<AccountShare>>;
|
|
1426
1426
|
declare const useGetAccountByShareCode: (shareCode?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountByShareCode>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AccountShare>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1427
1427
|
|
|
1428
|
-
declare const
|
|
1429
|
-
declare const
|
|
1430
|
-
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 {
|
|
1431
1431
|
accountId: string;
|
|
1432
1432
|
}
|
|
1433
|
-
declare const
|
|
1434
|
-
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>>;
|
|
1435
1435
|
|
|
1436
1436
|
declare const ACCOUNT_FOLLOWERS_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1437
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;
|
|
@@ -1449,12 +1449,13 @@ interface GetAccountFollowingsProps extends InfiniteQueryParams {
|
|
|
1449
1449
|
declare const GetAccountFollowings: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApiParams, locale, }: GetAccountFollowingsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1450
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>>;
|
|
1451
1451
|
|
|
1452
|
-
declare const ACCOUNTS_QUERY_KEY: () => QueryKey;
|
|
1452
|
+
declare const ACCOUNTS_QUERY_KEY: (accountType?: keyof typeof AccountType) => QueryKey;
|
|
1453
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;
|
|
1454
1454
|
interface GetAccountsProps extends InfiniteQueryParams {
|
|
1455
|
+
accountType?: keyof typeof AccountType;
|
|
1455
1456
|
}
|
|
1456
|
-
declare const GetAccounts: ({ pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetAccountsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1457
|
-
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>>;
|
|
1458
1459
|
|
|
1459
1460
|
declare const ACTIVITIES_QUERY_KEY: () => QueryKey;
|
|
1460
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;
|
|
@@ -1493,105 +1494,105 @@ interface GetBenefitsProps extends InfiniteQueryParams {
|
|
|
1493
1494
|
declare const GetBenefits: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetBenefitsProps) => Promise<ConnectedXMResponse<Benefit[]>>;
|
|
1494
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>>;
|
|
1495
1496
|
|
|
1496
|
-
declare const
|
|
1497
|
-
declare const
|
|
1498
|
-
interface
|
|
1499
|
-
|
|
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;
|
|
1500
1501
|
}
|
|
1501
|
-
declare const
|
|
1502
|
-
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>>;
|
|
1503
1504
|
|
|
1504
|
-
declare const
|
|
1505
|
-
declare const
|
|
1506
|
-
interface
|
|
1507
|
-
|
|
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;
|
|
1508
1509
|
}
|
|
1509
|
-
declare const
|
|
1510
|
-
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>>;
|
|
1511
1512
|
|
|
1512
|
-
declare const
|
|
1513
|
-
declare const
|
|
1514
|
-
interface
|
|
1515
|
-
|
|
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;
|
|
1516
1517
|
}
|
|
1517
|
-
declare const
|
|
1518
|
-
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>>;
|
|
1519
1520
|
|
|
1520
|
-
declare const
|
|
1521
|
-
declare const
|
|
1522
|
-
interface
|
|
1523
|
-
|
|
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;
|
|
1524
1525
|
}
|
|
1525
|
-
declare const
|
|
1526
|
-
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>>;
|
|
1527
1528
|
|
|
1528
|
-
declare const
|
|
1529
|
-
declare const
|
|
1530
|
-
interface
|
|
1531
|
-
|
|
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;
|
|
1532
1533
|
type?: "images" | "videos";
|
|
1533
1534
|
}
|
|
1534
|
-
declare const
|
|
1535
|
-
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>>;
|
|
1536
1537
|
|
|
1537
|
-
declare const
|
|
1538
|
-
declare const
|
|
1539
|
-
interface
|
|
1540
|
-
|
|
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;
|
|
1541
1542
|
past?: boolean;
|
|
1542
1543
|
}
|
|
1543
|
-
declare const
|
|
1544
|
-
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>>;
|
|
1545
1546
|
|
|
1546
|
-
declare const
|
|
1547
|
-
declare const
|
|
1548
|
-
interface
|
|
1549
|
-
|
|
1550
|
-
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;
|
|
1551
1552
|
}
|
|
1552
|
-
declare const
|
|
1553
|
-
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>>;
|
|
1554
1555
|
|
|
1555
|
-
declare const
|
|
1556
|
-
declare const
|
|
1557
|
-
interface
|
|
1558
|
-
|
|
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;
|
|
1559
1560
|
}
|
|
1560
|
-
declare const
|
|
1561
|
-
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>>;
|
|
1562
1563
|
|
|
1563
|
-
declare const
|
|
1564
|
-
declare const
|
|
1565
|
-
interface
|
|
1566
|
-
|
|
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;
|
|
1567
1568
|
requestId: string;
|
|
1568
1569
|
}
|
|
1569
|
-
declare const
|
|
1570
|
-
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>>;
|
|
1571
1572
|
|
|
1572
|
-
declare const
|
|
1573
|
-
declare const
|
|
1574
|
-
interface
|
|
1575
|
-
|
|
1576
|
-
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;
|
|
1577
1578
|
}
|
|
1578
|
-
declare const
|
|
1579
|
-
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>>;
|
|
1580
1581
|
|
|
1581
1582
|
interface InvitableAccount extends Account {
|
|
1582
|
-
|
|
1583
|
-
status:
|
|
1583
|
+
groupRequests: {
|
|
1584
|
+
status: GroupRequestStatus;
|
|
1584
1585
|
}[];
|
|
1585
|
-
|
|
1586
|
-
role:
|
|
1586
|
+
groups: {
|
|
1587
|
+
role: GroupMembershipRole;
|
|
1587
1588
|
}[];
|
|
1588
1589
|
}
|
|
1589
|
-
declare const
|
|
1590
|
-
interface
|
|
1591
|
-
|
|
1590
|
+
declare const GROUP_INVITABLE_ACCOUNTS_QUERY_KEY: (groupId: string) => QueryKey;
|
|
1591
|
+
interface GetGroupInvitableAccountsProps extends InfiniteQueryParams {
|
|
1592
|
+
groupId: string;
|
|
1592
1593
|
}
|
|
1593
|
-
declare const
|
|
1594
|
-
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>>;
|
|
1595
1596
|
|
|
1596
1597
|
declare const CONTENT_QUERY_KEY: (contentId: string) => QueryKey;
|
|
1597
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;
|
|
@@ -1800,7 +1801,7 @@ declare const ORGANIZATION_EXPLORE_QUERY_KEY: () => QueryKey;
|
|
|
1800
1801
|
interface Explore {
|
|
1801
1802
|
contents: Content[];
|
|
1802
1803
|
events: BaseEvent[];
|
|
1803
|
-
|
|
1804
|
+
groups: BaseGroup[];
|
|
1804
1805
|
recommendations: BaseAccount[];
|
|
1805
1806
|
}
|
|
1806
1807
|
interface GetOrganizationExploreProps extends SingleQueryParams {
|
|
@@ -1841,7 +1842,7 @@ interface GetSelfChatChannelProps extends SingleQueryParams {
|
|
|
1841
1842
|
channelId: string;
|
|
1842
1843
|
}
|
|
1843
1844
|
declare const GetSelfChatChannel: ({ channelId, clientApiParams, }: GetSelfChatChannelProps) => Promise<ConnectedXMResponse<ChatChannelMember>>;
|
|
1844
|
-
declare const useGetSelfChatChannel: (channelId
|
|
1845
|
+
declare const useGetSelfChatChannel: (channelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfChatChannel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1845
1846
|
|
|
1846
1847
|
declare const SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY: (channelId: string) => QueryKey;
|
|
1847
1848
|
declare const SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannelMembers>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
@@ -1849,7 +1850,7 @@ interface GetSelfChatChannelMembersProps extends InfiniteQueryParams {
|
|
|
1849
1850
|
channelId: string;
|
|
1850
1851
|
}
|
|
1851
1852
|
declare const GetSelfChatChannelMembers: ({ channelId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfChatChannelMembersProps) => Promise<ConnectedXMResponse<ChatChannelMember[]>>;
|
|
1852
|
-
declare const useGetSelfChatChannelMembers: (channelId
|
|
1853
|
+
declare const useGetSelfChatChannelMembers: (channelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannelMembers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChatChannelMember[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1853
1854
|
|
|
1854
1855
|
declare const SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY: (channelId: string) => QueryKey;
|
|
1855
1856
|
declare const SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannelMessages>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
@@ -1857,7 +1858,7 @@ interface GetSelfChatChannelMessagesProps extends InfiniteQueryParams {
|
|
|
1857
1858
|
channelId: string;
|
|
1858
1859
|
}
|
|
1859
1860
|
declare const GetSelfChatChannelMessages: ({ channelId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, }: GetSelfChatChannelMessagesProps) => Promise<ConnectedXMResponse<ChatChannelMessage[]>>;
|
|
1860
|
-
declare const useGetSelfChatChannelMessages: (channelId
|
|
1861
|
+
declare const useGetSelfChatChannelMessages: (channelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannelMessages>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChatChannelMessage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1861
1862
|
|
|
1862
1863
|
declare const SELF_CHAT_CHANNELS_QUERY_KEY: () => QueryKey;
|
|
1863
1864
|
declare const SET_SELF_CHAT_CHANNELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannels>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
@@ -1979,8 +1980,8 @@ declare const GetSelf: ({ ignoreExecuteAs, clientApiParams, }: GetSelfProps) =>
|
|
|
1979
1980
|
declare const useGetSelf: (ignoreExecuteAs?: boolean, options?: SingleQueryOptions<ReturnType<typeof GetSelf>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1980
1981
|
|
|
1981
1982
|
declare const SELF_RELATIONSHIPS_QUERY_KEY: () => QueryKey;
|
|
1982
|
-
declare const ADD_SELF_RELATIONSHIP: (client: QueryClient, baseKeys: [locale: string] | undefined, type: "
|
|
1983
|
-
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;
|
|
1984
1985
|
interface GetSelfRelationshipsProps extends SingleQueryParams {
|
|
1985
1986
|
}
|
|
1986
1987
|
declare const GetSelfRelationships: ({ clientApiParams, }: GetSelfRelationshipsProps) => Promise<ConnectedXMResponse<SelfRelationships>>;
|
|
@@ -1999,19 +2000,19 @@ interface GetSelfAnnouncementProps extends SingleQueryParams {
|
|
|
1999
2000
|
declare const GetSelfAnnouncement: ({ announcementId, clientApiParams, }: GetSelfAnnouncementProps) => Promise<ConnectedXMResponse<Announcement>>;
|
|
2000
2001
|
declare const useGetSelfAnnouncement: (announcementId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfAnnouncement>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2001
2002
|
|
|
2002
|
-
declare const
|
|
2003
|
-
declare const
|
|
2004
|
-
interface
|
|
2005
|
-
|
|
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;
|
|
2006
2007
|
}
|
|
2007
|
-
declare const
|
|
2008
|
-
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>>;
|
|
2009
2010
|
|
|
2010
|
-
declare const
|
|
2011
|
-
interface
|
|
2011
|
+
declare const SELF_GROUP_MEMBERSHIPS_QUERY_KEY: () => QueryKey;
|
|
2012
|
+
interface GetSelfGroupMembershipsProps extends InfiniteQueryParams {
|
|
2012
2013
|
}
|
|
2013
|
-
declare const
|
|
2014
|
-
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>>;
|
|
2015
2016
|
|
|
2016
2017
|
declare const SELF_DELEGATE_OF_QUERY_KEY: () => QueryKey;
|
|
2017
2018
|
interface GetSelfDelegateOfProps extends InfiniteQueryParams {
|
|
@@ -2157,21 +2158,6 @@ interface GetLevelSponsorsProps extends InfiniteQueryParams {
|
|
|
2157
2158
|
declare const GetLevelSponsors: ({ levelId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetLevelSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
2158
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>>;
|
|
2159
2160
|
|
|
2160
|
-
declare const SPONSOR_QUERY_KEY: (sponsorId: string) => QueryKey;
|
|
2161
|
-
declare const SET_SPONSOR_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SPONSOR_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSponsor>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2162
|
-
interface GetSponsorProps extends SingleQueryParams {
|
|
2163
|
-
accountId: string;
|
|
2164
|
-
}
|
|
2165
|
-
declare const GetSponsor: ({ accountId, clientApiParams, }: GetSponsorProps) => Promise<ConnectedXMResponse<Account>>;
|
|
2166
|
-
declare const useGetSponsor: (accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSponsor>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2167
|
-
|
|
2168
|
-
declare const SPONSORS_QUERY_KEY: () => QueryKey;
|
|
2169
|
-
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;
|
|
2170
|
-
interface GetSponsorsProps extends InfiniteQueryParams {
|
|
2171
|
-
}
|
|
2172
|
-
declare const GetSponsors: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
2173
|
-
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>>;
|
|
2174
|
-
|
|
2175
2161
|
declare const INVOICE_QUERY_KEY: (invoiceId: string) => QueryKey;
|
|
2176
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;
|
|
2177
2163
|
interface GetInvoiceProps extends SingleQueryParams {
|
|
@@ -2579,7 +2565,7 @@ interface CreateActivity {
|
|
|
2579
2565
|
message: string;
|
|
2580
2566
|
contentId?: string;
|
|
2581
2567
|
eventId?: string;
|
|
2582
|
-
|
|
2568
|
+
groupId?: string;
|
|
2583
2569
|
commentedId?: string;
|
|
2584
2570
|
}
|
|
2585
2571
|
interface CreateInterest {
|
|
@@ -2601,12 +2587,12 @@ interface DeleteActivityParams extends MutationParams {
|
|
|
2601
2587
|
declare const DeleteActivity: ({ activityId, clientApiParams, queryClient, }: DeleteActivityParams) => Promise<ConnectedXMResponse<null>>;
|
|
2602
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>;
|
|
2603
2589
|
|
|
2604
|
-
interface
|
|
2605
|
-
|
|
2606
|
-
membership: Partial<
|
|
2590
|
+
interface SelfUpdateGroupMembershipParams extends MutationParams {
|
|
2591
|
+
groupId: string;
|
|
2592
|
+
membership: Partial<GroupMembership>;
|
|
2607
2593
|
}
|
|
2608
|
-
declare const
|
|
2609
|
-
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>;
|
|
2610
2596
|
|
|
2611
2597
|
interface UpdateSelfParams extends MutationParams {
|
|
2612
2598
|
username?: string;
|
|
@@ -2667,8 +2653,8 @@ interface UpdateSelfNotificationPreferencesParams extends MutationParams {
|
|
|
2667
2653
|
eventAnnouncementEmail?: boolean;
|
|
2668
2654
|
organizationAnnouncementPush?: boolean;
|
|
2669
2655
|
organizationAnnouncementEmail?: boolean;
|
|
2670
|
-
|
|
2671
|
-
|
|
2656
|
+
groupAnnouncementPush?: boolean;
|
|
2657
|
+
groupAnnouncementEmail?: boolean;
|
|
2672
2658
|
}
|
|
2673
2659
|
declare const UpdateSelfNotificationPreferences: ({ clientApiParams, queryClient, ...params }: UpdateSelfNotificationPreferencesParams) => Promise<ConnectedXMResponse<NotificationPreferences>>;
|
|
2674
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>;
|
|
@@ -2680,6 +2666,12 @@ interface UpdateSelfPushDeviceParams extends MutationParams {
|
|
|
2680
2666
|
declare const UpdateSelfPushDevice: ({ pushDeviceId, pushDevice, clientApiParams, queryClient, }: UpdateSelfPushDeviceParams) => Promise<ConnectedXMResponse<PushDevice>>;
|
|
2681
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>;
|
|
2682
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
|
+
|
|
2683
2675
|
interface CreateSupportTicketParams extends MutationParams {
|
|
2684
2676
|
type: "support" | "inquiry";
|
|
2685
2677
|
email: string;
|
|
@@ -2697,90 +2689,90 @@ interface CreateTeamAccountParams extends MutationParams {
|
|
|
2697
2689
|
declare const CreateTeamAccount: ({ name, email, clientApiParams, }: CreateTeamAccountParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2698
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>;
|
|
2699
2691
|
|
|
2700
|
-
interface
|
|
2701
|
-
|
|
2692
|
+
interface AcceptGroupInviteParitation extends MutationParams {
|
|
2693
|
+
groupId: string;
|
|
2702
2694
|
requestId: string;
|
|
2703
2695
|
}
|
|
2704
|
-
declare const
|
|
2705
|
-
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>;
|
|
2706
2698
|
|
|
2707
|
-
interface
|
|
2708
|
-
|
|
2699
|
+
interface AcceptGroupRequestParams extends MutationParams {
|
|
2700
|
+
groupId: string;
|
|
2709
2701
|
requestId: string;
|
|
2710
2702
|
}
|
|
2711
|
-
declare const
|
|
2712
|
-
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>;
|
|
2713
2705
|
|
|
2714
|
-
interface
|
|
2715
|
-
|
|
2706
|
+
interface CreateGroupParams extends MutationParams {
|
|
2707
|
+
group: CreateGroup;
|
|
2716
2708
|
imageDataUri?: string;
|
|
2717
2709
|
}
|
|
2718
|
-
interface
|
|
2710
|
+
interface CreateGroup {
|
|
2719
2711
|
name: string;
|
|
2720
2712
|
description: string;
|
|
2721
|
-
access: keyof typeof
|
|
2713
|
+
access: keyof typeof GroupAccess;
|
|
2722
2714
|
externalUrl?: string;
|
|
2723
2715
|
}
|
|
2724
|
-
declare const
|
|
2725
|
-
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>;
|
|
2726
2718
|
|
|
2727
|
-
interface
|
|
2728
|
-
|
|
2719
|
+
interface CreateGroupInvitationsParams extends MutationParams {
|
|
2720
|
+
groupId: string;
|
|
2729
2721
|
accountIds: string[];
|
|
2730
2722
|
}
|
|
2731
|
-
declare const
|
|
2732
|
-
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>;
|
|
2733
2725
|
|
|
2734
|
-
interface
|
|
2735
|
-
|
|
2726
|
+
interface CreateGroupRequestParams extends MutationParams {
|
|
2727
|
+
groupId: string;
|
|
2736
2728
|
}
|
|
2737
|
-
declare const
|
|
2738
|
-
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>;
|
|
2739
2731
|
|
|
2740
|
-
interface
|
|
2741
|
-
|
|
2742
|
-
|
|
2732
|
+
interface DeactivateGroupParams extends MutationParams {
|
|
2733
|
+
groupId: string;
|
|
2734
|
+
group: Group;
|
|
2743
2735
|
imageDataUri?: string;
|
|
2744
2736
|
}
|
|
2745
|
-
declare const
|
|
2746
|
-
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>;
|
|
2747
2739
|
|
|
2748
|
-
interface
|
|
2749
|
-
|
|
2740
|
+
interface DeleteGroupInvitationParams extends MutationParams {
|
|
2741
|
+
groupId: string;
|
|
2750
2742
|
requestId: string;
|
|
2751
2743
|
}
|
|
2752
|
-
declare const
|
|
2753
|
-
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>;
|
|
2754
2746
|
|
|
2755
|
-
interface
|
|
2756
|
-
|
|
2747
|
+
interface JoinGroupParams extends MutationParams {
|
|
2748
|
+
groupId: string;
|
|
2757
2749
|
}
|
|
2758
|
-
declare const
|
|
2759
|
-
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>;
|
|
2760
2752
|
|
|
2761
|
-
interface
|
|
2762
|
-
|
|
2753
|
+
interface LeaveGroupParams extends MutationParams {
|
|
2754
|
+
groupId: string;
|
|
2763
2755
|
}
|
|
2764
|
-
declare const
|
|
2765
|
-
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>;
|
|
2766
2758
|
|
|
2767
|
-
interface
|
|
2768
|
-
|
|
2759
|
+
interface RejectGroupRequestParams extends MutationParams {
|
|
2760
|
+
groupId: string;
|
|
2769
2761
|
requestId: string;
|
|
2770
2762
|
}
|
|
2771
|
-
declare const
|
|
2772
|
-
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>;
|
|
2773
2765
|
|
|
2774
|
-
interface
|
|
2775
|
-
|
|
2766
|
+
interface RemoveGroupMemberParams extends MutationParams {
|
|
2767
|
+
groupId: string;
|
|
2776
2768
|
accountId: string;
|
|
2777
2769
|
}
|
|
2778
|
-
declare const
|
|
2779
|
-
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>;
|
|
2780
2772
|
|
|
2781
|
-
interface
|
|
2782
|
-
|
|
2783
|
-
|
|
2773
|
+
interface UpdateGroupParams extends MutationParams {
|
|
2774
|
+
groupId: string;
|
|
2775
|
+
group: {
|
|
2784
2776
|
name?: string;
|
|
2785
2777
|
description?: string;
|
|
2786
2778
|
externalUrl?: string;
|
|
@@ -2788,39 +2780,39 @@ interface UpdateCommunityParams extends MutationParams {
|
|
|
2788
2780
|
};
|
|
2789
2781
|
imageDataUri?: string;
|
|
2790
2782
|
}
|
|
2791
|
-
declare const
|
|
2792
|
-
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>;
|
|
2793
2785
|
|
|
2794
|
-
interface
|
|
2795
|
-
|
|
2786
|
+
interface DemoteGroupModeratorParams extends MutationParams {
|
|
2787
|
+
groupId: string;
|
|
2796
2788
|
accountId: string;
|
|
2797
2789
|
}
|
|
2798
|
-
declare const
|
|
2799
|
-
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>;
|
|
2800
2792
|
|
|
2801
|
-
interface
|
|
2802
|
-
|
|
2793
|
+
interface PromoteGroupMemberParams extends MutationParams {
|
|
2794
|
+
groupId: string;
|
|
2803
2795
|
accountId: string;
|
|
2804
2796
|
}
|
|
2805
|
-
declare const
|
|
2806
|
-
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>;
|
|
2807
2799
|
|
|
2808
|
-
interface
|
|
2809
|
-
|
|
2800
|
+
interface CreateGroupAnnouncementParams extends MutationParams {
|
|
2801
|
+
groupId: string;
|
|
2810
2802
|
title: string;
|
|
2811
2803
|
html: string;
|
|
2812
2804
|
email: boolean;
|
|
2813
2805
|
push: boolean;
|
|
2814
2806
|
}
|
|
2815
|
-
declare const
|
|
2816
|
-
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>;
|
|
2817
2809
|
|
|
2818
|
-
interface
|
|
2819
|
-
|
|
2810
|
+
interface RejectGroupInvitationParams extends MutationParams {
|
|
2811
|
+
groupId: string;
|
|
2820
2812
|
requestId: string;
|
|
2821
2813
|
}
|
|
2822
|
-
declare const
|
|
2823
|
-
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>;
|
|
2824
2816
|
|
|
2825
2817
|
interface CreateListingSessionParams extends MutationParams {
|
|
2826
2818
|
eventId: string;
|
|
@@ -2866,7 +2858,7 @@ declare const useAddListingSponsor: (options?: Omit<MutationOptions<Awaited<Retu
|
|
|
2866
2858
|
interface CreateListingParams extends MutationParams {
|
|
2867
2859
|
event: CreateListing;
|
|
2868
2860
|
imageDataUri?: any;
|
|
2869
|
-
|
|
2861
|
+
groupId?: string;
|
|
2870
2862
|
sponsorIds?: string[];
|
|
2871
2863
|
speakers?: Speaker[];
|
|
2872
2864
|
sessions?: Session[];
|
|
@@ -2891,7 +2883,7 @@ interface CreateListing {
|
|
|
2891
2883
|
registration?: boolean;
|
|
2892
2884
|
registrationLimit?: string;
|
|
2893
2885
|
}
|
|
2894
|
-
declare const CreateListing: ({ event, imageDataUri,
|
|
2886
|
+
declare const CreateListing: ({ event, imageDataUri, groupId, sponsorIds, speakers, sessions, clientApiParams, queryClient, }: CreateListingParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2895
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>;
|
|
2896
2888
|
|
|
2897
2889
|
interface CreateListingAnnouncementParams extends MutationParams {
|
|
@@ -2984,6 +2976,7 @@ interface UpdateListing {
|
|
|
2984
2976
|
registrationLimit?: number | null;
|
|
2985
2977
|
newActivityCreatorEmailNotification: boolean;
|
|
2986
2978
|
newActivityCreatorPushNotification: boolean;
|
|
2979
|
+
slug?: string;
|
|
2987
2980
|
}
|
|
2988
2981
|
declare const UpdateListing: ({ eventId, event, base64, clientApiParams, queryClient, }: UpdateListingParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2989
2982
|
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>;
|
|
@@ -3047,4 +3040,4 @@ interface UpdateListingSpeakerParams extends MutationParams {
|
|
|
3047
3040
|
declare const UpdateListingSpeaker: ({ eventId, speaker, speakerId, imageDataUri, clientApiParams, queryClient, }: UpdateListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
3048
3041
|
declare const useUpdateListingSpeaker: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingSpeaker>>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3049
3042
|
|
|
3050
|
-
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 BaseEventEmail, 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 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, 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, 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, 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_EMAIL_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_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_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, 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, 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, useGetSelfEventListingEmail, 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, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
|
|
3043
|
+
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 };
|