@connectedxm/client 7.0.13 → 7.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +618 -424
- package/dist/index.js +3524 -3260
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -724,7 +724,8 @@ declare enum NotificationType {
|
|
|
724
724
|
ACTIVITY = "ACTIVITY",
|
|
725
725
|
GROUP_INVITATION = "GROUP_INVITATION",
|
|
726
726
|
GROUP_REQUEST_ACCEPTED = "GROUP_REQUEST_ACCEPTED",
|
|
727
|
-
CONTENT = "CONTENT"
|
|
727
|
+
CONTENT = "CONTENT",
|
|
728
|
+
SUPPORT_TICKET_MESSAGE = "SUPPORT_TICKET_MESSAGE"
|
|
728
729
|
}
|
|
729
730
|
interface BaseNotification {
|
|
730
731
|
id: string;
|
|
@@ -734,12 +735,14 @@ interface BaseNotification {
|
|
|
734
735
|
}
|
|
735
736
|
interface Notification extends BaseNotification {
|
|
736
737
|
like: BaseLike | null;
|
|
737
|
-
activity: BaseActivity | null;
|
|
738
738
|
event: BaseEvent | null;
|
|
739
739
|
announcement: BaseAnnouncement | null;
|
|
740
|
+
activity: BaseActivity | null;
|
|
740
741
|
group: BaseGroup | null;
|
|
741
742
|
invitation: BaseGroupInvitation | null;
|
|
742
743
|
content: BaseContent | null;
|
|
744
|
+
orgMembership: BaseOrgMembership | null;
|
|
745
|
+
supportTicket: BaseSupportTicket | null;
|
|
743
746
|
createdAt: string;
|
|
744
747
|
updatedAt: string;
|
|
745
748
|
}
|
|
@@ -1014,9 +1017,13 @@ interface Scan extends BaseScan {
|
|
|
1014
1017
|
updatedAt: string;
|
|
1015
1018
|
}
|
|
1016
1019
|
declare const isTypeScan: (scan: BaseScan | Scan) => scan is Scan;
|
|
1017
|
-
interface
|
|
1020
|
+
interface BaseUser {
|
|
1021
|
+
id: string;
|
|
1022
|
+
firstName: string | null;
|
|
1023
|
+
imageUrl: BaseImage | null;
|
|
1018
1024
|
}
|
|
1019
|
-
interface
|
|
1025
|
+
interface BaseOrgMembership {
|
|
1026
|
+
user: BaseUser;
|
|
1020
1027
|
}
|
|
1021
1028
|
interface BaseSponsorshipLevel {
|
|
1022
1029
|
id: string;
|
|
@@ -1061,9 +1068,6 @@ interface FaqSection extends BaseFaqSection {
|
|
|
1061
1068
|
faqs: BaseFaq[];
|
|
1062
1069
|
}
|
|
1063
1070
|
declare const isTypeFaqSection: (faqSection: BaseFaqSection | FaqSection) => faqSection is FaqSection;
|
|
1064
|
-
interface BaseSupportTicket {
|
|
1065
|
-
id: string;
|
|
1066
|
-
}
|
|
1067
1071
|
declare enum SupportTicketType {
|
|
1068
1072
|
support = "support",
|
|
1069
1073
|
bug = "bug",
|
|
@@ -1071,32 +1075,92 @@ declare enum SupportTicketType {
|
|
|
1071
1075
|
}
|
|
1072
1076
|
declare enum SupportTicketState {
|
|
1073
1077
|
new = "new",
|
|
1074
|
-
|
|
1075
|
-
awaitingClient = "awaitingClient",
|
|
1078
|
+
inProgress = "inProgress",
|
|
1076
1079
|
resolved = "resolved",
|
|
1077
1080
|
spam = "spam"
|
|
1078
1081
|
}
|
|
1079
|
-
interface
|
|
1082
|
+
interface BaseSupportTicket {
|
|
1083
|
+
id: string;
|
|
1080
1084
|
type: SupportTicketType;
|
|
1081
|
-
email: string;
|
|
1082
1085
|
request: string;
|
|
1086
|
+
state: SupportTicketState;
|
|
1087
|
+
message: BaseSupportTicketMessage | null;
|
|
1088
|
+
}
|
|
1089
|
+
interface SupportTicket extends BaseSupportTicket {
|
|
1090
|
+
email: string;
|
|
1091
|
+
accountId: string | null;
|
|
1083
1092
|
account: BaseAccount | null;
|
|
1093
|
+
orgMembershipId: string | null;
|
|
1094
|
+
orgMembership: {
|
|
1095
|
+
userId: string;
|
|
1096
|
+
user: BaseUser;
|
|
1097
|
+
} | null;
|
|
1098
|
+
eventId: string | null;
|
|
1084
1099
|
event: BaseEvent | null;
|
|
1085
|
-
|
|
1086
|
-
|
|
1100
|
+
lastAccountReadAt: string | null;
|
|
1101
|
+
lastMessageAt: string | null;
|
|
1087
1102
|
createdAt: string;
|
|
1088
1103
|
updatedAt: string;
|
|
1089
1104
|
}
|
|
1090
1105
|
declare const isTypeSupportTicket: (supportTicket: BaseSupportTicket | SupportTicket) => supportTicket is SupportTicket;
|
|
1091
1106
|
interface BaseSupportTicketNote {
|
|
1107
|
+
}
|
|
1108
|
+
interface BaseSupportTicketMessage {
|
|
1092
1109
|
id: string;
|
|
1093
1110
|
supportTicketId: string;
|
|
1111
|
+
source: string;
|
|
1112
|
+
message: string;
|
|
1113
|
+
accountId: string | null;
|
|
1114
|
+
account: BaseAccount | null;
|
|
1115
|
+
orgMembershipId: string | null;
|
|
1116
|
+
orgMembership: {
|
|
1117
|
+
userId: string;
|
|
1118
|
+
user: BaseUser;
|
|
1119
|
+
} | null;
|
|
1120
|
+
}
|
|
1121
|
+
interface SupportTicketMessage extends BaseSupportTicketMessage {
|
|
1122
|
+
createdAt: string;
|
|
1123
|
+
updatedAt: string;
|
|
1124
|
+
}
|
|
1125
|
+
declare enum SupportTicketActivityLogType {
|
|
1126
|
+
created = "created",
|
|
1127
|
+
statusChanged = "statusChanged",
|
|
1128
|
+
typeChanged = "typeChanged",
|
|
1129
|
+
eventLinked = "eventLinked"
|
|
1130
|
+
}
|
|
1131
|
+
declare enum SupportTicketActivityLogSource {
|
|
1132
|
+
system = "system",
|
|
1133
|
+
account = "account",
|
|
1134
|
+
org_member = "org_member"
|
|
1094
1135
|
}
|
|
1095
|
-
|
|
1136
|
+
declare enum SupportTicketMessageSource {
|
|
1137
|
+
account = "account",
|
|
1138
|
+
org_member = "org_member",
|
|
1139
|
+
system = "system"
|
|
1140
|
+
}
|
|
1141
|
+
interface BaseSupportTicketActivityLog {
|
|
1142
|
+
id: string;
|
|
1143
|
+
supportTicketId: string;
|
|
1144
|
+
type: SupportTicketActivityLogType;
|
|
1145
|
+
source: SupportTicketActivityLogSource;
|
|
1146
|
+
accountId: string | null;
|
|
1147
|
+
orgMembership: {
|
|
1148
|
+
userId: string;
|
|
1149
|
+
user: BaseUser;
|
|
1150
|
+
} | null;
|
|
1151
|
+
previousState: SupportTicketState | null;
|
|
1152
|
+
newState: SupportTicketState | null;
|
|
1153
|
+
previousType: SupportTicketType | null;
|
|
1154
|
+
newType: SupportTicketType | null;
|
|
1155
|
+
eventId: string | null;
|
|
1156
|
+
event: BaseEvent | null;
|
|
1096
1157
|
createdAt: string;
|
|
1097
1158
|
updatedAt: string;
|
|
1098
1159
|
}
|
|
1099
|
-
|
|
1160
|
+
interface SupportTicketActivityLog extends BaseSupportTicketActivityLog {
|
|
1161
|
+
account: BaseAccount | null;
|
|
1162
|
+
event: BaseEvent | null;
|
|
1163
|
+
}
|
|
1100
1164
|
declare enum AdvertisementType {
|
|
1101
1165
|
square = "square",
|
|
1102
1166
|
rectangle = "rectangle"
|
|
@@ -1407,14 +1471,13 @@ declare const isTypeLead: (lead: BaseLead | Lead) => lead is Lead;
|
|
|
1407
1471
|
interface NotificationPreferences {
|
|
1408
1472
|
newFollowerPush: boolean;
|
|
1409
1473
|
likePush: boolean;
|
|
1410
|
-
resharePush: boolean;
|
|
1411
1474
|
commentPush: boolean;
|
|
1412
1475
|
transferPush: boolean;
|
|
1413
1476
|
transferEmail: boolean;
|
|
1414
|
-
supportTicketConfirmationEmail: boolean;
|
|
1415
1477
|
chatPush: boolean;
|
|
1416
1478
|
chatUnreadPush: boolean;
|
|
1417
1479
|
chatUnreadEmail: boolean;
|
|
1480
|
+
eventReminderEmail: boolean;
|
|
1418
1481
|
activityNotificationPreference: OrganizationActivityPreference;
|
|
1419
1482
|
organizationAnnouncementEmail: boolean;
|
|
1420
1483
|
organizationAnnouncementPush: boolean;
|
|
@@ -3248,17 +3311,18 @@ declare const useUpdateSelfBanner: (options?: Omit<MutationOptions<Awaited<Retur
|
|
|
3248
3311
|
interface UpdateSelfNotificationPreferencesParams extends MutationParams {
|
|
3249
3312
|
newFollowerPush?: boolean;
|
|
3250
3313
|
likePush?: boolean;
|
|
3251
|
-
resharePush?: boolean;
|
|
3252
3314
|
commentPush?: boolean;
|
|
3253
3315
|
transferPush?: boolean;
|
|
3254
3316
|
transferEmail?: boolean;
|
|
3255
|
-
supportTicketConfirmationEmail?: boolean;
|
|
3256
3317
|
chatPush?: boolean;
|
|
3257
3318
|
chatUnreadPush?: boolean;
|
|
3258
3319
|
chatUnreadEmail?: boolean;
|
|
3320
|
+
eventReminderEmail?: boolean;
|
|
3259
3321
|
activityNotificationPreference?: OrganizationActivityPreference;
|
|
3260
3322
|
organizationAnnouncementPush?: boolean;
|
|
3261
3323
|
organizationAnnouncementEmail?: boolean;
|
|
3324
|
+
groupInvitationPush?: boolean;
|
|
3325
|
+
groupInvitationEmail?: boolean;
|
|
3262
3326
|
}
|
|
3263
3327
|
declare const UpdateSelfNotificationPreferences: ({ clientApiParams, queryClient, ...params }: UpdateSelfNotificationPreferencesParams) => Promise<ConnectedXMResponse<NotificationPreferences>>;
|
|
3264
3328
|
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>;
|
|
@@ -3276,16 +3340,49 @@ interface AddSelfInterestsParams extends MutationParams {
|
|
|
3276
3340
|
declare const AddSelfInterests: ({ interestIds, clientApiParams, queryClient, }: AddSelfInterestsParams) => Promise<ConnectedXMResponse<Account>>;
|
|
3277
3341
|
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>;
|
|
3278
3342
|
|
|
3343
|
+
/**
|
|
3344
|
+
* @category Params
|
|
3345
|
+
* @group SupportTickets
|
|
3346
|
+
*/
|
|
3279
3347
|
interface CreateSupportTicketParams extends MutationParams {
|
|
3280
|
-
type:
|
|
3281
|
-
email: string;
|
|
3348
|
+
type: string;
|
|
3282
3349
|
request: string;
|
|
3283
|
-
|
|
3284
|
-
|
|
3350
|
+
email: string;
|
|
3351
|
+
state: string;
|
|
3352
|
+
accountId: string | null;
|
|
3353
|
+
orgMembershipId: string | null;
|
|
3354
|
+
eventId: string | null;
|
|
3285
3355
|
}
|
|
3286
|
-
|
|
3356
|
+
/**
|
|
3357
|
+
* @category Methods
|
|
3358
|
+
* @group SupportTickets
|
|
3359
|
+
*/
|
|
3360
|
+
declare const CreateSupportTicket: ({ type, request, email, state, accountId, orgMembershipId, eventId, clientApiParams, queryClient, }: CreateSupportTicketParams) => Promise<ConnectedXMResponse<SupportTicket>>;
|
|
3361
|
+
/**
|
|
3362
|
+
* @category Mutations
|
|
3363
|
+
* @group SupportTickets
|
|
3364
|
+
*/
|
|
3287
3365
|
declare const useCreateSupportTicket: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSupportTicket>>, Omit<CreateSupportTicketParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<SupportTicket>, axios.AxiosError<ConnectedXMResponse<SupportTicket>, any>, Omit<CreateSupportTicketParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3288
3366
|
|
|
3367
|
+
/**
|
|
3368
|
+
* @category Params
|
|
3369
|
+
* @group SupportTickets
|
|
3370
|
+
*/
|
|
3371
|
+
interface CreateSupportTicketMessageParams extends MutationParams {
|
|
3372
|
+
supportTicketId: string;
|
|
3373
|
+
message: string;
|
|
3374
|
+
}
|
|
3375
|
+
/**
|
|
3376
|
+
* @category Methods
|
|
3377
|
+
* @group SupportTickets
|
|
3378
|
+
*/
|
|
3379
|
+
declare const CreateSupportTicketMessage: ({ supportTicketId, message, clientApiParams, queryClient, }: CreateSupportTicketMessageParams) => Promise<ConnectedXMResponse<SupportTicketMessage>>;
|
|
3380
|
+
/**
|
|
3381
|
+
* @category Mutations
|
|
3382
|
+
* @group SupportTickets
|
|
3383
|
+
*/
|
|
3384
|
+
declare const useCreateSupportTicketMessage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSupportTicketMessage>>, Omit<CreateSupportTicketMessageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<SupportTicketMessage>, axios.AxiosError<ConnectedXMResponse<SupportTicketMessage>, any>, Omit<CreateSupportTicketMessageParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3385
|
+
|
|
3289
3386
|
interface AcceptGroupInviteParitation extends MutationParams {
|
|
3290
3387
|
groupId: string;
|
|
3291
3388
|
}
|
|
@@ -4250,127 +4347,6 @@ interface GetBenefitsProps extends InfiniteQueryParams {
|
|
|
4250
4347
|
declare const GetBenefits: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetBenefitsProps) => Promise<ConnectedXMResponse<Benefit[]>>;
|
|
4251
4348
|
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>>;
|
|
4252
4349
|
|
|
4253
|
-
declare const GROUPS_QUERY_KEY: (access?: "public" | "private") => QueryKey;
|
|
4254
|
-
declare const SET_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroups>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4255
|
-
interface GetGroupsProps extends InfiniteQueryParams {
|
|
4256
|
-
access?: "public" | "private";
|
|
4257
|
-
}
|
|
4258
|
-
declare const GetGroups: ({ pageParam, pageSize, orderBy, search, access, clientApiParams, }: GetGroupsProps) => Promise<ConnectedXMResponse<Group[]>>;
|
|
4259
|
-
declare const useGetGroups: (access?: "public" | "private", params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroups>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4260
|
-
|
|
4261
|
-
declare const GROUP_QUERY_KEY: (groupId: string) => QueryKey;
|
|
4262
|
-
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;
|
|
4263
|
-
interface GetGroupProps extends SingleQueryParams {
|
|
4264
|
-
groupId: string;
|
|
4265
|
-
}
|
|
4266
|
-
declare const GetGroup: ({ groupId, clientApiParams, }: GetGroupProps) => Promise<ConnectedXMResponse<Group>>;
|
|
4267
|
-
declare const useGetGroup: (groupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4268
|
-
|
|
4269
|
-
declare const GROUP_ACTIVITIES_QUERY_KEY: (groupId: string, featured?: boolean) => QueryKey;
|
|
4270
|
-
declare const SET_GROUP_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupActivities>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4271
|
-
interface GetGroupActivitiesProps extends InfiniteQueryParams {
|
|
4272
|
-
groupId: string;
|
|
4273
|
-
featured?: boolean;
|
|
4274
|
-
}
|
|
4275
|
-
declare const GetGroupActivities: ({ pageParam, pageSize, orderBy, search, groupId, featured, clientApiParams, }: GetGroupActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
4276
|
-
declare const useGetGroupActivities: (groupId?: string, featured?: boolean, 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>>;
|
|
4277
|
-
|
|
4278
|
-
declare const GROUP_ANNOUNCEMENTS_QUERY_KEY: (groupId: string) => QueryKey;
|
|
4279
|
-
declare const SET_GROUP_ANNOUNCEMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_ANNOUNCEMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupAnnouncements>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4280
|
-
interface GetGroupAnnouncementsProps extends InfiniteQueryParams {
|
|
4281
|
-
groupId: string;
|
|
4282
|
-
}
|
|
4283
|
-
declare const GetGroupAnnouncements: ({ groupId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupAnnouncementsProps) => Promise<ConnectedXMResponse<Announcement[]>>;
|
|
4284
|
-
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>>;
|
|
4285
|
-
|
|
4286
|
-
declare const GROUP_MEDIA_QUERY_KEY: (groupId: string, type?: "images" | "videos") => QueryKey;
|
|
4287
|
-
declare const SET_GROUP_MEDIA_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_MEDIA_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupMedia>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4288
|
-
interface GetGroupMediaProps extends InfiniteQueryParams {
|
|
4289
|
-
groupId: string;
|
|
4290
|
-
type?: "images" | "videos";
|
|
4291
|
-
}
|
|
4292
|
-
declare const GetGroupMedia: ({ groupId, type, pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupMediaProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
4293
|
-
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>>;
|
|
4294
|
-
|
|
4295
|
-
declare const GROUP_EVENTS_QUERY_KEY: (groupId: string, past?: boolean) => QueryKey;
|
|
4296
|
-
declare const SET_GROUP_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupEvents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4297
|
-
interface GetGroupEventsProps extends InfiniteQueryParams {
|
|
4298
|
-
groupId: string;
|
|
4299
|
-
past?: boolean;
|
|
4300
|
-
}
|
|
4301
|
-
declare const GetGroupEvents: ({ pageParam, pageSize, orderBy, search, groupId, past, clientApiParams, }: GetGroupEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
4302
|
-
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>>;
|
|
4303
|
-
|
|
4304
|
-
declare const GROUP_MEMBERS_QUERY_KEY: (groupId: string, role?: keyof typeof GroupMembershipRole) => QueryKey;
|
|
4305
|
-
declare const SET_GROUP_MEMBERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_MEMBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupMembers>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4306
|
-
interface GetGroupMembersProps extends InfiniteQueryParams {
|
|
4307
|
-
groupId: string;
|
|
4308
|
-
role?: keyof typeof GroupMembershipRole;
|
|
4309
|
-
}
|
|
4310
|
-
declare const GetGroupMembers: ({ pageParam, pageSize, orderBy, search, role, groupId, clientApiParams, }: GetGroupMembersProps) => Promise<ConnectedXMResponse<GroupMembership[]>>;
|
|
4311
|
-
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>>;
|
|
4312
|
-
|
|
4313
|
-
declare const GROUP_SPONSORS_QUERY_KEY: (groupId: string) => QueryKey;
|
|
4314
|
-
declare const SET_GROUP_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupSponsors>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4315
|
-
interface GetGroupSponsorsProps extends InfiniteQueryParams {
|
|
4316
|
-
groupId: string;
|
|
4317
|
-
}
|
|
4318
|
-
declare const GetGroupSponsors: ({ pageParam, pageSize, orderBy, search, groupId, clientApiParams, }: GetGroupSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
4319
|
-
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>>;
|
|
4320
|
-
|
|
4321
|
-
declare const GROUP_REQUEST_QUERY_KEY: (groupId: string, requestId: string) => QueryKey;
|
|
4322
|
-
declare const SET_GROUP_REQUEST_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_REQUEST_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupRequest>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
4323
|
-
interface GetGroupRequestProps extends SingleQueryParams {
|
|
4324
|
-
groupId: string;
|
|
4325
|
-
requestId: string;
|
|
4326
|
-
}
|
|
4327
|
-
declare const GetGroupRequest: ({ groupId, requestId, clientApiParams, }: GetGroupRequestProps) => Promise<ConnectedXMResponse<GroupRequest>>;
|
|
4328
|
-
declare const useGetGroupRequest: (groupId?: string, requestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupRequest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupRequest>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4329
|
-
|
|
4330
|
-
declare const GROUP_REQUESTS_QUERY_KEY: (groupId: string, status?: keyof typeof GroupRequestStatus) => QueryKey;
|
|
4331
|
-
declare const SET_GROUP_REQUESTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_REQUESTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupRequests>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4332
|
-
interface GetGroupRequestsProps extends InfiniteQueryParams {
|
|
4333
|
-
groupId: string;
|
|
4334
|
-
status?: keyof typeof GroupRequestStatus;
|
|
4335
|
-
}
|
|
4336
|
-
declare const GetGroupRequests: ({ pageParam, pageSize, orderBy, search, status, groupId, clientApiParams, }: GetGroupRequestsProps) => Promise<ConnectedXMResponse<GroupRequest[]>>;
|
|
4337
|
-
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>>;
|
|
4338
|
-
|
|
4339
|
-
declare const GROUP_INVITABLE_ACCOUNTS_QUERY_KEY: (groupId: string) => QueryKey;
|
|
4340
|
-
interface GetGroupInvitableAccountsProps extends InfiniteQueryParams {
|
|
4341
|
-
groupId: string;
|
|
4342
|
-
}
|
|
4343
|
-
declare const GetGroupInvitableAccounts: ({ pageParam, pageSize, orderBy, search, groupId, clientApiParams, }: GetGroupInvitableAccountsProps) => Promise<ConnectedXMResponse<InvitableAccount[]>>;
|
|
4344
|
-
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>>;
|
|
4345
|
-
|
|
4346
|
-
declare const GROUP_INVITATIONS_QUERY_KEY: (groupId: string, status?: keyof typeof GroupInvitationStatus) => QueryKey;
|
|
4347
|
-
declare const SET_GROUP_INVITATIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_INVITATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupInvitations>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4348
|
-
interface GetGroupInvitationsProps extends InfiniteQueryParams {
|
|
4349
|
-
groupId: string;
|
|
4350
|
-
status?: keyof typeof GroupInvitationStatus;
|
|
4351
|
-
}
|
|
4352
|
-
declare const GetGroupInvitations: ({ pageParam, pageSize, orderBy, search, status, groupId, clientApiParams, }: GetGroupInvitationsProps) => Promise<ConnectedXMResponse<GroupInvitation[]>>;
|
|
4353
|
-
declare const useGetGroupInvitations: (groupId?: string, status?: keyof typeof GroupInvitationStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupInvitations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<GroupInvitation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4354
|
-
|
|
4355
|
-
declare const GROUPS_FEATURED_QUERY_KEY: () => QueryKey;
|
|
4356
|
-
interface GetGroupsFeaturedProps extends InfiniteQueryParams {
|
|
4357
|
-
}
|
|
4358
|
-
declare const GetGroupsFeatured: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupsFeaturedProps) => Promise<ConnectedXMResponse<Group[]>>;
|
|
4359
|
-
declare const useGetGroupsFeatured: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupsFeatured>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4360
|
-
|
|
4361
|
-
declare const GROUPS_INVITED_QUERY_KEY: (rejected?: boolean) => QueryKey;
|
|
4362
|
-
interface GetGroupsInvitedProps extends InfiniteQueryParams {
|
|
4363
|
-
rejected?: boolean;
|
|
4364
|
-
}
|
|
4365
|
-
declare const GetGroupsInvited: ({ rejected, pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupsInvitedProps) => Promise<ConnectedXMResponse<Group[]>>;
|
|
4366
|
-
declare const useGetGroupsInvited: (rejected?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupsInvited>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4367
|
-
|
|
4368
|
-
declare const GROUPS_REQUESTED_QUERY_KEY: () => QueryKey;
|
|
4369
|
-
interface GetGroupsRequestedProps extends InfiniteQueryParams {
|
|
4370
|
-
}
|
|
4371
|
-
declare const GetGroupsRequested: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupsRequestedProps) => Promise<ConnectedXMResponse<Group[]>>;
|
|
4372
|
-
declare const useGetGroupsRequested: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupsRequested>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4373
|
-
|
|
4374
4350
|
declare const CHANNEL_COLLECTION_QUERY_KEY: (channelId: string, collectionId: string) => QueryKey;
|
|
4375
4351
|
declare const SET_CHANNEL_COLLECTION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_COLLECTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelCollection>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
4376
4352
|
interface GetChannelCollectionParams extends SingleQueryParams {
|
|
@@ -4716,47 +4692,373 @@ interface GetEventMediaItemProps extends SingleQueryParams {
|
|
|
4716
4692
|
declare const GetEventMediaItem: ({ eventId, mediaItemId, passId, clientApiParams, }: GetEventMediaItemProps) => Promise<ConnectedXMResponse<EventMediaItem>>;
|
|
4717
4693
|
declare const useGetEventMediaItem: (eventId: string | undefined, mediaItemId: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventMediaItem>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventMediaItem>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4718
4694
|
|
|
4719
|
-
declare const
|
|
4720
|
-
declare const
|
|
4721
|
-
interface
|
|
4722
|
-
|
|
4695
|
+
declare const GROUPS_QUERY_KEY: (access?: "public" | "private") => QueryKey;
|
|
4696
|
+
declare const SET_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroups>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4697
|
+
interface GetGroupsProps extends InfiniteQueryParams {
|
|
4698
|
+
access?: "public" | "private";
|
|
4723
4699
|
}
|
|
4724
|
-
declare const
|
|
4725
|
-
declare const
|
|
4700
|
+
declare const GetGroups: ({ pageParam, pageSize, orderBy, search, access, clientApiParams, }: GetGroupsProps) => Promise<ConnectedXMResponse<Group[]>>;
|
|
4701
|
+
declare const useGetGroups: (access?: "public" | "private", params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroups>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4726
4702
|
|
|
4727
|
-
declare const
|
|
4728
|
-
|
|
4703
|
+
declare const GROUP_QUERY_KEY: (groupId: string) => QueryKey;
|
|
4704
|
+
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;
|
|
4705
|
+
interface GetGroupProps extends SingleQueryParams {
|
|
4706
|
+
groupId: string;
|
|
4729
4707
|
}
|
|
4730
|
-
declare const
|
|
4731
|
-
declare const
|
|
4708
|
+
declare const GetGroup: ({ groupId, clientApiParams, }: GetGroupProps) => Promise<ConnectedXMResponse<Group>>;
|
|
4709
|
+
declare const useGetGroup: (groupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4732
4710
|
|
|
4733
|
-
declare const
|
|
4734
|
-
|
|
4711
|
+
declare const GROUP_ACTIVITIES_QUERY_KEY: (groupId: string, featured?: boolean) => QueryKey;
|
|
4712
|
+
declare const SET_GROUP_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupActivities>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4713
|
+
interface GetGroupActivitiesProps extends InfiniteQueryParams {
|
|
4714
|
+
groupId: string;
|
|
4715
|
+
featured?: boolean;
|
|
4735
4716
|
}
|
|
4736
|
-
declare const
|
|
4737
|
-
declare const
|
|
4717
|
+
declare const GetGroupActivities: ({ pageParam, pageSize, orderBy, search, groupId, featured, clientApiParams, }: GetGroupActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
4718
|
+
declare const useGetGroupActivities: (groupId?: string, featured?: boolean, 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>>;
|
|
4738
4719
|
|
|
4739
|
-
declare const
|
|
4740
|
-
|
|
4741
|
-
|
|
4742
|
-
|
|
4743
|
-
groups: BaseGroup[];
|
|
4744
|
-
recommendations: BaseAccount[];
|
|
4745
|
-
}
|
|
4746
|
-
interface GetOrganizationExploreProps extends SingleQueryParams {
|
|
4720
|
+
declare const GROUP_ANNOUNCEMENTS_QUERY_KEY: (groupId: string) => QueryKey;
|
|
4721
|
+
declare const SET_GROUP_ANNOUNCEMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_ANNOUNCEMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupAnnouncements>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4722
|
+
interface GetGroupAnnouncementsProps extends InfiniteQueryParams {
|
|
4723
|
+
groupId: string;
|
|
4747
4724
|
}
|
|
4748
|
-
declare const
|
|
4749
|
-
declare const
|
|
4725
|
+
declare const GetGroupAnnouncements: ({ groupId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupAnnouncementsProps) => Promise<ConnectedXMResponse<Announcement[]>>;
|
|
4726
|
+
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>>;
|
|
4750
4727
|
|
|
4751
|
-
declare const
|
|
4752
|
-
|
|
4753
|
-
|
|
4728
|
+
declare const GROUP_MEDIA_QUERY_KEY: (groupId: string, type?: "images" | "videos") => QueryKey;
|
|
4729
|
+
declare const SET_GROUP_MEDIA_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_MEDIA_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupMedia>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4730
|
+
interface GetGroupMediaProps extends InfiniteQueryParams {
|
|
4731
|
+
groupId: string;
|
|
4732
|
+
type?: "images" | "videos";
|
|
4754
4733
|
}
|
|
4755
|
-
declare const
|
|
4756
|
-
declare const
|
|
4734
|
+
declare const GetGroupMedia: ({ groupId, type, pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupMediaProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
4735
|
+
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>>;
|
|
4757
4736
|
|
|
4758
|
-
declare const
|
|
4759
|
-
|
|
4737
|
+
declare const GROUP_EVENTS_QUERY_KEY: (groupId: string, past?: boolean) => QueryKey;
|
|
4738
|
+
declare const SET_GROUP_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupEvents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4739
|
+
interface GetGroupEventsProps extends InfiniteQueryParams {
|
|
4740
|
+
groupId: string;
|
|
4741
|
+
past?: boolean;
|
|
4742
|
+
}
|
|
4743
|
+
declare const GetGroupEvents: ({ pageParam, pageSize, orderBy, search, groupId, past, clientApiParams, }: GetGroupEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
4744
|
+
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>>;
|
|
4745
|
+
|
|
4746
|
+
declare const GROUP_MEMBERS_QUERY_KEY: (groupId: string, role?: keyof typeof GroupMembershipRole) => QueryKey;
|
|
4747
|
+
declare const SET_GROUP_MEMBERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_MEMBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupMembers>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4748
|
+
interface GetGroupMembersProps extends InfiniteQueryParams {
|
|
4749
|
+
groupId: string;
|
|
4750
|
+
role?: keyof typeof GroupMembershipRole;
|
|
4751
|
+
}
|
|
4752
|
+
declare const GetGroupMembers: ({ pageParam, pageSize, orderBy, search, role, groupId, clientApiParams, }: GetGroupMembersProps) => Promise<ConnectedXMResponse<GroupMembership[]>>;
|
|
4753
|
+
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>>;
|
|
4754
|
+
|
|
4755
|
+
declare const GROUP_SPONSORS_QUERY_KEY: (groupId: string) => QueryKey;
|
|
4756
|
+
declare const SET_GROUP_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupSponsors>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4757
|
+
interface GetGroupSponsorsProps extends InfiniteQueryParams {
|
|
4758
|
+
groupId: string;
|
|
4759
|
+
}
|
|
4760
|
+
declare const GetGroupSponsors: ({ pageParam, pageSize, orderBy, search, groupId, clientApiParams, }: GetGroupSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
4761
|
+
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>>;
|
|
4762
|
+
|
|
4763
|
+
declare const GROUP_REQUEST_QUERY_KEY: (groupId: string, requestId: string) => QueryKey;
|
|
4764
|
+
declare const SET_GROUP_REQUEST_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_REQUEST_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupRequest>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
4765
|
+
interface GetGroupRequestProps extends SingleQueryParams {
|
|
4766
|
+
groupId: string;
|
|
4767
|
+
requestId: string;
|
|
4768
|
+
}
|
|
4769
|
+
declare const GetGroupRequest: ({ groupId, requestId, clientApiParams, }: GetGroupRequestProps) => Promise<ConnectedXMResponse<GroupRequest>>;
|
|
4770
|
+
declare const useGetGroupRequest: (groupId?: string, requestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupRequest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupRequest>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4771
|
+
|
|
4772
|
+
declare const GROUP_REQUESTS_QUERY_KEY: (groupId: string, status?: keyof typeof GroupRequestStatus) => QueryKey;
|
|
4773
|
+
declare const SET_GROUP_REQUESTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_REQUESTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupRequests>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4774
|
+
interface GetGroupRequestsProps extends InfiniteQueryParams {
|
|
4775
|
+
groupId: string;
|
|
4776
|
+
status?: keyof typeof GroupRequestStatus;
|
|
4777
|
+
}
|
|
4778
|
+
declare const GetGroupRequests: ({ pageParam, pageSize, orderBy, search, status, groupId, clientApiParams, }: GetGroupRequestsProps) => Promise<ConnectedXMResponse<GroupRequest[]>>;
|
|
4779
|
+
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>>;
|
|
4780
|
+
|
|
4781
|
+
declare const GROUP_INVITABLE_ACCOUNTS_QUERY_KEY: (groupId: string) => QueryKey;
|
|
4782
|
+
interface GetGroupInvitableAccountsProps extends InfiniteQueryParams {
|
|
4783
|
+
groupId: string;
|
|
4784
|
+
}
|
|
4785
|
+
declare const GetGroupInvitableAccounts: ({ pageParam, pageSize, orderBy, search, groupId, clientApiParams, }: GetGroupInvitableAccountsProps) => Promise<ConnectedXMResponse<InvitableAccount[]>>;
|
|
4786
|
+
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>>;
|
|
4787
|
+
|
|
4788
|
+
declare const GROUP_INVITATIONS_QUERY_KEY: (groupId: string, status?: keyof typeof GroupInvitationStatus) => QueryKey;
|
|
4789
|
+
declare const SET_GROUP_INVITATIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_INVITATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupInvitations>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4790
|
+
interface GetGroupInvitationsProps extends InfiniteQueryParams {
|
|
4791
|
+
groupId: string;
|
|
4792
|
+
status?: keyof typeof GroupInvitationStatus;
|
|
4793
|
+
}
|
|
4794
|
+
declare const GetGroupInvitations: ({ pageParam, pageSize, orderBy, search, status, groupId, clientApiParams, }: GetGroupInvitationsProps) => Promise<ConnectedXMResponse<GroupInvitation[]>>;
|
|
4795
|
+
declare const useGetGroupInvitations: (groupId?: string, status?: keyof typeof GroupInvitationStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupInvitations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<GroupInvitation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4796
|
+
|
|
4797
|
+
declare const GROUPS_FEATURED_QUERY_KEY: () => QueryKey;
|
|
4798
|
+
interface GetGroupsFeaturedProps extends InfiniteQueryParams {
|
|
4799
|
+
}
|
|
4800
|
+
declare const GetGroupsFeatured: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupsFeaturedProps) => Promise<ConnectedXMResponse<Group[]>>;
|
|
4801
|
+
declare const useGetGroupsFeatured: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupsFeatured>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4802
|
+
|
|
4803
|
+
declare const GROUPS_INVITED_QUERY_KEY: (rejected?: boolean) => QueryKey;
|
|
4804
|
+
interface GetGroupsInvitedProps extends InfiniteQueryParams {
|
|
4805
|
+
rejected?: boolean;
|
|
4806
|
+
}
|
|
4807
|
+
declare const GetGroupsInvited: ({ rejected, pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupsInvitedProps) => Promise<ConnectedXMResponse<Group[]>>;
|
|
4808
|
+
declare const useGetGroupsInvited: (rejected?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupsInvited>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4809
|
+
|
|
4810
|
+
declare const GROUPS_REQUESTED_QUERY_KEY: () => QueryKey;
|
|
4811
|
+
interface GetGroupsRequestedProps extends InfiniteQueryParams {
|
|
4812
|
+
}
|
|
4813
|
+
declare const GetGroupsRequested: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupsRequestedProps) => Promise<ConnectedXMResponse<Group[]>>;
|
|
4814
|
+
declare const useGetGroupsRequested: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupsRequested>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4815
|
+
|
|
4816
|
+
declare const INTEGRATION_QUERY_KEY: (integrationId: string) => QueryKey;
|
|
4817
|
+
declare const SET_INTEGRATION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTEGRATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetIntegration>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
4818
|
+
interface GetIntegrationProps extends SingleQueryParams {
|
|
4819
|
+
integrationId: string;
|
|
4820
|
+
}
|
|
4821
|
+
declare const GetIntegration: ({ integrationId, clientApiParams, }: GetIntegrationProps) => Promise<ConnectedXMResponse<Integration>>;
|
|
4822
|
+
declare const useGetIntegration: (integrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetIntegration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Integration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4823
|
+
|
|
4824
|
+
declare const INTEGRATIONS_QUERY_KEY: () => QueryKey;
|
|
4825
|
+
declare const SET_INTEGRATIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTEGRATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetIntegrations>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4826
|
+
interface GetIntegrationsProps extends InfiniteQueryParams {
|
|
4827
|
+
}
|
|
4828
|
+
declare const GetIntegrations: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetIntegrationsProps) => Promise<ConnectedXMResponse<Integration[]>>;
|
|
4829
|
+
declare const useGetIntegrations: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetIntegrations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Integration[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4830
|
+
|
|
4831
|
+
interface IntegrationAuth {
|
|
4832
|
+
token: string;
|
|
4833
|
+
expiration?: string;
|
|
4834
|
+
details: IntegrationDetails;
|
|
4835
|
+
}
|
|
4836
|
+
declare const INTEGRATION_AUTH_QUERY_KEY: (integrationType: keyof typeof IntegrationType) => QueryKey;
|
|
4837
|
+
declare const SET_INTEGRATION_AUTH_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTEGRATION_AUTH_QUERY_KEY>, response: Awaited<ReturnType<typeof GetIntegrationAuth>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
4838
|
+
interface GetIntegrationAuthProps extends SingleQueryParams {
|
|
4839
|
+
integrationType: keyof typeof IntegrationType;
|
|
4840
|
+
}
|
|
4841
|
+
declare const GetIntegrationAuth: ({ integrationType, clientApiParams, }: GetIntegrationAuthProps) => Promise<ConnectedXMResponse<IntegrationAuth>>;
|
|
4842
|
+
declare const useGetIntegrationAuth: (integrationType: keyof typeof IntegrationType, expiration?: string, options?: SingleQueryOptions<ReturnType<typeof GetIntegrationAuth>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<IntegrationAuth>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4843
|
+
|
|
4844
|
+
declare const INTERESTS_QUERY_KEY: () => QueryKey;
|
|
4845
|
+
declare const SET_INTERESTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTERESTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetInterests>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4846
|
+
interface GetInterestsProps extends InfiniteQueryParams {
|
|
4847
|
+
}
|
|
4848
|
+
declare const GetInterests: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetInterestsProps) => Promise<ConnectedXMResponse<Interest[]>>;
|
|
4849
|
+
declare const useGetInterests: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetInterests>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Interest[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4850
|
+
|
|
4851
|
+
declare const INTEREST_QUERY_KEY: (interest: string) => QueryKey;
|
|
4852
|
+
interface GetInterestProps extends SingleQueryParams {
|
|
4853
|
+
interest: string;
|
|
4854
|
+
}
|
|
4855
|
+
declare const GetInterest: ({ interest, clientApiParams, }: GetInterestProps) => Promise<ConnectedXMResponse<Interest>>;
|
|
4856
|
+
declare const useGetInterest: (interest?: string, options?: SingleQueryOptions<ReturnType<typeof GetInterest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Interest>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4857
|
+
|
|
4858
|
+
declare const INTEREST_ACTIVITIES_QUERY_KEY: (interest: string) => QueryKey;
|
|
4859
|
+
interface GetInterestActivitiesProps extends InfiniteQueryParams {
|
|
4860
|
+
interest: string;
|
|
4861
|
+
}
|
|
4862
|
+
declare const GetInterestActivities: ({ interest, pageParam, pageSize, orderBy, search, clientApiParams, }: GetInterestActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
4863
|
+
declare const useGetInterestActivities: (interest?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetInterestActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4864
|
+
|
|
4865
|
+
declare const INVOICE_QUERY_KEY: (invoiceId: string) => QueryKey;
|
|
4866
|
+
declare const SET_INVOICE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INVOICE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetInvoice>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
4867
|
+
interface GetInvoiceProps extends SingleQueryParams {
|
|
4868
|
+
invoiceId: string;
|
|
4869
|
+
}
|
|
4870
|
+
declare const GetInvoice: ({ invoiceId, clientApiParams, }: GetInvoiceProps) => Promise<ConnectedXMResponse<Invoice>>;
|
|
4871
|
+
declare const useGetInvoice: (invoiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Invoice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4872
|
+
|
|
4873
|
+
declare const INVOICES_QUERY_KEY: () => QueryKey;
|
|
4874
|
+
interface GetInvoicesProps extends InfiniteQueryParams {
|
|
4875
|
+
}
|
|
4876
|
+
declare const GetInvoices: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetInvoicesProps) => Promise<ConnectedXMResponse<Invoice[]>>;
|
|
4877
|
+
declare const useGetInvoices: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetInvoices>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Invoice[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4878
|
+
|
|
4879
|
+
declare const SELF_INVOICE_INTENT_QUERY_KEY: (invoiceId: string, addressId: string) => unknown[];
|
|
4880
|
+
interface GetInvoiceIntentProps extends SingleQueryParams {
|
|
4881
|
+
invoiceId: string;
|
|
4882
|
+
addressId: string;
|
|
4883
|
+
}
|
|
4884
|
+
declare const GetInvoiceIntent: ({ invoiceId, addressId, clientApiParams, }: GetInvoiceIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
|
|
4885
|
+
declare const useGetInvoiceIntent: (invoiceId?: string, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoiceIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4886
|
+
|
|
4887
|
+
declare const LINK_PREVIEW_QUERY_KEY: (url: string) => QueryKey;
|
|
4888
|
+
declare const SET_LINK_PREVIEW_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LINK_PREVIEW_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLinkPreview>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
4889
|
+
interface GetLinkPreviewProps extends SingleQueryParams {
|
|
4890
|
+
url: string;
|
|
4891
|
+
}
|
|
4892
|
+
declare const GetLinkPreview: ({ url, clientApiParams, }: GetLinkPreviewProps) => Promise<ConnectedXMResponse<LinkPreview | null>>;
|
|
4893
|
+
declare const useGetLinkPreview: (url?: string, options?: SingleQueryOptions<ReturnType<typeof GetLinkPreview>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<LinkPreview | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4894
|
+
|
|
4895
|
+
declare const LISTING_QUERY_KEY: (eventId: string) => QueryKey;
|
|
4896
|
+
declare const SET_LISTING_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LISTING_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListing>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
4897
|
+
interface GetSelfEventListingProps extends SingleQueryParams {
|
|
4898
|
+
eventId: string;
|
|
4899
|
+
}
|
|
4900
|
+
declare const GetSelfEventListing: ({ eventId, clientApiParams, }: GetSelfEventListingProps) => Promise<ConnectedXMResponse<EventListing>>;
|
|
4901
|
+
declare const useGetSelfEventListing: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListing>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4902
|
+
|
|
4903
|
+
declare const LISTING_ANNOUNCEMENT_QUERY_KEY: (eventId: string, announcementId: string) => QueryKey;
|
|
4904
|
+
declare const SET_LISTING_ANNOUNCEMENT_QUERY_KEY: (client: QueryClient, keyParams: Parameters<typeof LISTING_ANNOUNCEMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListingAnnouncement>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
4905
|
+
interface GetSelfEventListingAnnouncementProps extends SingleQueryParams {
|
|
4906
|
+
eventId: string;
|
|
4907
|
+
announcementId: string;
|
|
4908
|
+
}
|
|
4909
|
+
declare const GetSelfEventListingAnnouncement: ({ eventId, announcementId, clientApiParams, }: GetSelfEventListingAnnouncementProps) => Promise<ConnectedXMResponse<Announcement>>;
|
|
4910
|
+
declare const useGetSelfEventListingAnnouncement: (eventId?: string, announcementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingAnnouncement>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4911
|
+
|
|
4912
|
+
declare const LISTING_ANNOUNCEMENTS_QUERY_KEY: (eventId: string) => unknown[];
|
|
4913
|
+
interface GetSelfEventListingAnnouncementsProps extends InfiniteQueryParams {
|
|
4914
|
+
eventId: string;
|
|
4915
|
+
}
|
|
4916
|
+
declare const GetSelfEventListingAnnouncements: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingAnnouncementsProps) => Promise<ConnectedXMResponse<Announcement[]>>;
|
|
4917
|
+
declare const useGetSelfEventListingAnnouncements: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingAnnouncements>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Announcement[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4918
|
+
|
|
4919
|
+
declare const LISTING_EMAIL_QUERY_KEY: (eventId: string, type: EventEmailType) => QueryKey;
|
|
4920
|
+
declare const SET_LISTING_EMAIL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LISTING_EMAIL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListingEmail>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
4921
|
+
interface GetSelfEventListingEmailProps extends SingleQueryParams {
|
|
4922
|
+
eventId: string;
|
|
4923
|
+
type: EventEmailType;
|
|
4924
|
+
}
|
|
4925
|
+
declare const GetSelfEventListingEmail: ({ eventId, type, clientApiParams, }: GetSelfEventListingEmailProps) => Promise<ConnectedXMResponse<EventEmail | null>>;
|
|
4926
|
+
declare const useGetSelfEventListingEmail: (eventId: string | undefined, type: EventEmailType, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingEmail>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventEmail | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4927
|
+
|
|
4928
|
+
declare const LISTING_QUESTIONS_QUERY_KEY: (eventId: string) => unknown[];
|
|
4929
|
+
interface GetSelfEventListingQuestionsProps extends InfiniteQueryParams {
|
|
4930
|
+
eventId: string;
|
|
4931
|
+
}
|
|
4932
|
+
declare const GetSelfEventListingQuestions: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingQuestionsProps) => Promise<ConnectedXMResponse<RegistrationQuestion[]>>;
|
|
4933
|
+
declare const useGetSelfEventListingQuestions: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingQuestions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<RegistrationQuestion[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4934
|
+
|
|
4935
|
+
declare const LISTING_ATTENDEE_QUERY_KEY: (eventId: string, accountId: string) => QueryKey;
|
|
4936
|
+
declare const SET_LISTING_ATTENDEE_QUERY_KEY: (client: QueryClient, keyParams: Parameters<typeof LISTING_ATTENDEE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListingRegistration>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
4937
|
+
interface GetSelfEventListingRegistrationProps extends SingleQueryParams {
|
|
4938
|
+
eventId: string;
|
|
4939
|
+
accountId: string;
|
|
4940
|
+
}
|
|
4941
|
+
declare const GetSelfEventListingRegistration: ({ eventId, accountId, clientApiParams, }: GetSelfEventListingRegistrationProps) => Promise<ConnectedXMResponse<ListingRegistration>>;
|
|
4942
|
+
declare const useGetSelfEventListingRegistration: (eventId?: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ListingRegistration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4943
|
+
|
|
4944
|
+
declare const LISTING_ATTENDEES_QUERY_KEY: (eventId: string, status?: keyof typeof PurchaseStatus) => unknown[];
|
|
4945
|
+
interface GetSelfEventListingAttendeesProps extends InfiniteQueryParams {
|
|
4946
|
+
eventId: string;
|
|
4947
|
+
status?: keyof typeof PurchaseStatus;
|
|
4948
|
+
}
|
|
4949
|
+
declare const GetSelfEventListingAttendees: ({ eventId, pageParam, pageSize, orderBy, search, status, clientApiParams, }: GetSelfEventListingAttendeesProps) => Promise<ConnectedXMResponse<ListingRegistration[]>>;
|
|
4950
|
+
declare const useGetSelfEventListingsRegistrations: (eventId: string, status?: keyof typeof PurchaseStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingAttendees>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ListingRegistration[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4951
|
+
|
|
4952
|
+
declare const LISTING_PASS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
|
|
4953
|
+
declare const SET_LISTING_PASS_QUERY_KEY: (client: QueryClient, keyParams: Parameters<typeof LISTING_PASS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListingPass>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
4954
|
+
interface GetSelfEventListingPassProps extends SingleQueryParams {
|
|
4955
|
+
eventId: string;
|
|
4956
|
+
passId: string;
|
|
4957
|
+
}
|
|
4958
|
+
declare const GetSelfEventListingPass: ({ eventId, passId, clientApiParams, }: GetSelfEventListingPassProps) => Promise<ConnectedXMResponse<ListingPass>>;
|
|
4959
|
+
declare const useGetSelfEventListingPass: (eventId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingPass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ListingPass>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4960
|
+
|
|
4961
|
+
declare const LISTING_PASSES_QUERY_KEY: (eventId: string, checkedIn?: boolean) => unknown[];
|
|
4962
|
+
interface GetSelfEventListingPassesProps extends InfiniteQueryParams {
|
|
4963
|
+
eventId: string;
|
|
4964
|
+
checkedIn?: boolean;
|
|
4965
|
+
}
|
|
4966
|
+
declare const GetSelfEventListingPasses: ({ eventId, checkedIn, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingPassesProps) => Promise<ConnectedXMResponse<ListingPass[]>>;
|
|
4967
|
+
declare const useGetSelfEventListingPasses: (eventId: string, checkedIn?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingPasses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ListingPass[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4968
|
+
|
|
4969
|
+
declare const LISTINGS_QUERY_KEY: (past: boolean) => QueryKey;
|
|
4970
|
+
interface GetSelfEventListingsProps extends InfiniteQueryParams {
|
|
4971
|
+
past?: boolean;
|
|
4972
|
+
}
|
|
4973
|
+
declare const GetSelfEventListings: ({ pageParam, pageSize, orderBy, search, past, clientApiParams, }: GetSelfEventListingsProps) => Promise<ConnectedXMResponse<EventListing[]>>;
|
|
4974
|
+
declare const useGetSelfEventListings: (past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListings>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventListing[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4975
|
+
|
|
4976
|
+
declare const LISTING_CO_HOSTS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
4977
|
+
interface GetSelfEventListingCoHostsProps extends InfiniteQueryParams {
|
|
4978
|
+
eventId: string;
|
|
4979
|
+
}
|
|
4980
|
+
declare const GetSelfEventListingCoHosts: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingCoHostsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
4981
|
+
declare const useGetSelfEventListingCoHosts: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingCoHosts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4982
|
+
|
|
4983
|
+
declare const LISTING_REPORT_QUERY_KEY: (eventId: string) => QueryKey;
|
|
4984
|
+
interface GetSelfEventListingReportProps extends SingleQueryParams {
|
|
4985
|
+
eventId: string;
|
|
4986
|
+
}
|
|
4987
|
+
declare const GetSelfEventListingReport: ({ eventId, clientApiParams, }: GetSelfEventListingReportProps) => Promise<ConnectedXMResponse<any>>;
|
|
4988
|
+
declare const useGetSelfEventListingReport: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingReport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<any>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4989
|
+
|
|
4990
|
+
declare const LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, accountId: string, passId: string) => QueryKey;
|
|
4991
|
+
declare const SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetListingAttendeePassQuestionSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
4992
|
+
interface GetListingAttendeePassQuestionSectionsProps extends SingleQueryParams {
|
|
4993
|
+
eventId: string;
|
|
4994
|
+
accountId: string;
|
|
4995
|
+
passId: string;
|
|
4996
|
+
}
|
|
4997
|
+
declare const GetListingAttendeePassQuestionSections: ({ eventId, accountId, passId, clientApiParams, }: GetListingAttendeePassQuestionSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
|
|
4998
|
+
declare const useGetListingAttendeePassQuestionSections: (eventId: string, accountId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetListingAttendeePassQuestionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4999
|
+
|
|
5000
|
+
declare const LOGIN_QUERY_KEY: () => QueryKey;
|
|
5001
|
+
declare const SET_LOGINS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LOGIN_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLogin>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5002
|
+
interface GetLoginProps extends SingleQueryParams {
|
|
5003
|
+
}
|
|
5004
|
+
declare const GetLogin: ({ clientApiParams, }: GetLoginProps) => Promise<ConnectedXMResponse<Login>>;
|
|
5005
|
+
declare const useGetLogin: (options?: SingleQueryOptions<ReturnType<typeof GetLogin>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Login>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5006
|
+
|
|
5007
|
+
declare const MEETING_QUERY_KEY: (meetingId: string) => QueryKey;
|
|
5008
|
+
declare const SET_MEETING_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeeting>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5009
|
+
interface GetMeetingProps extends SingleQueryParams {
|
|
5010
|
+
meetingId: string;
|
|
5011
|
+
}
|
|
5012
|
+
declare const GetMeeting: ({ meetingId, clientApiParams, }: GetMeetingProps) => Promise<ConnectedXMResponse<Meeting>>;
|
|
5013
|
+
declare const useGetMeeting: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeeting>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Meeting>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5014
|
+
|
|
5015
|
+
declare const ORGANIZATION_QUERY_KEY: () => QueryKey;
|
|
5016
|
+
interface GetOrganizationParams extends SingleQueryParams {
|
|
5017
|
+
}
|
|
5018
|
+
declare const GetOrganization: ({ clientApiParams, }: GetOrganizationParams) => Promise<ConnectedXMResponse<Organization>>;
|
|
5019
|
+
declare const useGetOrganization: (options?: SingleQueryOptions<ReturnType<typeof GetOrganization>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Organization>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5020
|
+
|
|
5021
|
+
declare const ORGANIZATION_CONFIG_QUERY_KEY: () => QueryKey;
|
|
5022
|
+
interface GetOrganizationConfigParams extends SingleQueryParams {
|
|
5023
|
+
}
|
|
5024
|
+
declare const GetOrganizationConfig: ({ clientApiParams, }: GetOrganizationConfigParams) => Promise<ConnectedXMResponse<OrganizationConfig>>;
|
|
5025
|
+
declare const useGetOrganizationConfig: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationConfig>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<OrganizationConfig>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5026
|
+
|
|
5027
|
+
declare const ORGANIZATION_EXPLORE_QUERY_KEY: () => QueryKey;
|
|
5028
|
+
interface Explore {
|
|
5029
|
+
contents: Content[];
|
|
5030
|
+
events: BaseEvent[];
|
|
5031
|
+
groups: BaseGroup[];
|
|
5032
|
+
recommendations: BaseAccount[];
|
|
5033
|
+
}
|
|
5034
|
+
interface GetOrganizationExploreProps extends SingleQueryParams {
|
|
5035
|
+
}
|
|
5036
|
+
declare const GetOrganizationExplore: ({ clientApiParams, }: GetOrganizationExploreProps) => Promise<ConnectedXMResponse<Explore>>;
|
|
5037
|
+
declare const useGetOrganizationExplore: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationExplore>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Explore>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5038
|
+
|
|
5039
|
+
declare const PAYMENT_QUERY_KEY: (paymentId: string) => QueryKey;
|
|
5040
|
+
declare const SET_PAYMENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof PAYMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetPayment>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5041
|
+
interface GetPaymentProps extends SingleQueryParams {
|
|
5042
|
+
paymentId: string;
|
|
5043
|
+
}
|
|
5044
|
+
declare const GetPayment: ({ paymentId, clientApiParams, }: GetPaymentProps) => Promise<ConnectedXMResponse<Payment>>;
|
|
5045
|
+
declare const useGetPayment: (paymentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPayment>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Payment>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5046
|
+
|
|
5047
|
+
declare const PAYMENTS_QUERY_KEY: () => QueryKey;
|
|
5048
|
+
interface GetPaymentsProps extends InfiniteQueryParams {
|
|
5049
|
+
}
|
|
5050
|
+
declare const GetPayments: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetPaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
|
|
5051
|
+
declare const useGetPayments: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetPayments>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Payment[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5052
|
+
|
|
5053
|
+
declare const SEARCH_LIST_QUERY_KEY: (searchListId: string) => string[];
|
|
5054
|
+
interface GetSearchListProps extends SingleQueryParams {
|
|
5055
|
+
searchListId: string;
|
|
5056
|
+
}
|
|
5057
|
+
declare const GetSearchList: ({ searchListId, clientApiParams, }: GetSearchListProps) => Promise<ConnectedXMResponse<SearchList>>;
|
|
5058
|
+
declare const useGetSearchList: (searchListId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSearchList>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SearchList>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5059
|
+
|
|
5060
|
+
declare const SEARCH_LISTS_QUERY_KEY: () => string[];
|
|
5061
|
+
interface GetSearchListsProps extends InfiniteQueryParams {
|
|
4760
5062
|
}
|
|
4761
5063
|
declare const GetSearchLists: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSearchListsProps) => Promise<ConnectedXMResponse<SearchList[]>>;
|
|
4762
5064
|
declare const useGetSearchLists: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSearchLists>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<SearchList[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
@@ -5244,177 +5546,169 @@ interface GetLevelProps extends SingleQueryParams {
|
|
|
5244
5546
|
levelId: string;
|
|
5245
5547
|
}
|
|
5246
5548
|
declare const GetLevel: ({ levelId, clientApiParams, }: GetLevelProps) => Promise<ConnectedXMResponse<SponsorshipLevel>>;
|
|
5247
|
-
declare const useGetLevel: (levelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLevel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SponsorshipLevel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5248
|
-
|
|
5249
|
-
declare const LEVELS_QUERY_KEY: () => QueryKey;
|
|
5250
|
-
declare const SET_LEVELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevels>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
5251
|
-
interface GetLevelsProps extends InfiniteQueryParams {
|
|
5252
|
-
}
|
|
5253
|
-
declare const GetLevels: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetLevelsProps) => Promise<ConnectedXMResponse<SponsorshipLevel[]>>;
|
|
5254
|
-
declare const useGetLevels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetLevels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<SponsorshipLevel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5255
|
-
|
|
5256
|
-
declare const LEVEL_SPONSORS_QUERY_KEY: (levelId: string) => QueryKey;
|
|
5257
|
-
declare const SET_LEVEL_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVEL_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevelSponsors>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
5258
|
-
interface GetLevelSponsorsProps extends InfiniteQueryParams {
|
|
5259
|
-
levelId: string;
|
|
5260
|
-
}
|
|
5261
|
-
declare const GetLevelSponsors: ({ levelId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetLevelSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
5262
|
-
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>>;
|
|
5263
|
-
|
|
5264
|
-
declare const INVOICE_QUERY_KEY: (invoiceId: string) => QueryKey;
|
|
5265
|
-
declare const SET_INVOICE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INVOICE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetInvoice>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5266
|
-
interface GetInvoiceProps extends SingleQueryParams {
|
|
5267
|
-
invoiceId: string;
|
|
5268
|
-
}
|
|
5269
|
-
declare const GetInvoice: ({ invoiceId, clientApiParams, }: GetInvoiceProps) => Promise<ConnectedXMResponse<Invoice>>;
|
|
5270
|
-
declare const useGetInvoice: (invoiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Invoice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5271
|
-
|
|
5272
|
-
declare const INVOICES_QUERY_KEY: () => QueryKey;
|
|
5273
|
-
interface GetInvoicesProps extends InfiniteQueryParams {
|
|
5274
|
-
}
|
|
5275
|
-
declare const GetInvoices: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetInvoicesProps) => Promise<ConnectedXMResponse<Invoice[]>>;
|
|
5276
|
-
declare const useGetInvoices: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetInvoices>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Invoice[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5277
|
-
|
|
5278
|
-
declare const SELF_INVOICE_INTENT_QUERY_KEY: (invoiceId: string, addressId: string) => unknown[];
|
|
5279
|
-
interface GetInvoiceIntentProps extends SingleQueryParams {
|
|
5280
|
-
invoiceId: string;
|
|
5281
|
-
addressId: string;
|
|
5282
|
-
}
|
|
5283
|
-
declare const GetInvoiceIntent: ({ invoiceId, addressId, clientApiParams, }: GetInvoiceIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
|
|
5284
|
-
declare const useGetInvoiceIntent: (invoiceId?: string, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoiceIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5285
|
-
|
|
5286
|
-
declare const LISTING_QUERY_KEY: (eventId: string) => QueryKey;
|
|
5287
|
-
declare const SET_LISTING_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LISTING_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListing>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5288
|
-
interface GetSelfEventListingProps extends SingleQueryParams {
|
|
5289
|
-
eventId: string;
|
|
5290
|
-
}
|
|
5291
|
-
declare const GetSelfEventListing: ({ eventId, clientApiParams, }: GetSelfEventListingProps) => Promise<ConnectedXMResponse<EventListing>>;
|
|
5292
|
-
declare const useGetSelfEventListing: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListing>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5293
|
-
|
|
5294
|
-
declare const LISTING_ANNOUNCEMENT_QUERY_KEY: (eventId: string, announcementId: string) => QueryKey;
|
|
5295
|
-
declare const SET_LISTING_ANNOUNCEMENT_QUERY_KEY: (client: QueryClient, keyParams: Parameters<typeof LISTING_ANNOUNCEMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListingAnnouncement>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5296
|
-
interface GetSelfEventListingAnnouncementProps extends SingleQueryParams {
|
|
5297
|
-
eventId: string;
|
|
5298
|
-
announcementId: string;
|
|
5299
|
-
}
|
|
5300
|
-
declare const GetSelfEventListingAnnouncement: ({ eventId, announcementId, clientApiParams, }: GetSelfEventListingAnnouncementProps) => Promise<ConnectedXMResponse<Announcement>>;
|
|
5301
|
-
declare const useGetSelfEventListingAnnouncement: (eventId?: string, announcementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingAnnouncement>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5302
|
-
|
|
5303
|
-
declare const LISTING_ANNOUNCEMENTS_QUERY_KEY: (eventId: string) => unknown[];
|
|
5304
|
-
interface GetSelfEventListingAnnouncementsProps extends InfiniteQueryParams {
|
|
5305
|
-
eventId: string;
|
|
5306
|
-
}
|
|
5307
|
-
declare const GetSelfEventListingAnnouncements: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingAnnouncementsProps) => Promise<ConnectedXMResponse<Announcement[]>>;
|
|
5308
|
-
declare const useGetSelfEventListingAnnouncements: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingAnnouncements>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Announcement[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5309
|
-
|
|
5310
|
-
declare const LISTING_EMAIL_QUERY_KEY: (eventId: string, type: EventEmailType) => QueryKey;
|
|
5311
|
-
declare const SET_LISTING_EMAIL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LISTING_EMAIL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListingEmail>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5312
|
-
interface GetSelfEventListingEmailProps extends SingleQueryParams {
|
|
5313
|
-
eventId: string;
|
|
5314
|
-
type: EventEmailType;
|
|
5315
|
-
}
|
|
5316
|
-
declare const GetSelfEventListingEmail: ({ eventId, type, clientApiParams, }: GetSelfEventListingEmailProps) => Promise<ConnectedXMResponse<EventEmail | null>>;
|
|
5317
|
-
declare const useGetSelfEventListingEmail: (eventId: string | undefined, type: EventEmailType, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingEmail>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventEmail | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5318
|
-
|
|
5319
|
-
declare const LISTING_QUESTIONS_QUERY_KEY: (eventId: string) => unknown[];
|
|
5320
|
-
interface GetSelfEventListingQuestionsProps extends InfiniteQueryParams {
|
|
5321
|
-
eventId: string;
|
|
5322
|
-
}
|
|
5323
|
-
declare const GetSelfEventListingQuestions: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingQuestionsProps) => Promise<ConnectedXMResponse<RegistrationQuestion[]>>;
|
|
5324
|
-
declare const useGetSelfEventListingQuestions: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingQuestions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<RegistrationQuestion[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5549
|
+
declare const useGetLevel: (levelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLevel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SponsorshipLevel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5325
5550
|
|
|
5326
|
-
declare const
|
|
5327
|
-
declare const
|
|
5328
|
-
interface
|
|
5329
|
-
eventId: string;
|
|
5330
|
-
accountId: string;
|
|
5551
|
+
declare const LEVELS_QUERY_KEY: () => QueryKey;
|
|
5552
|
+
declare const SET_LEVELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevels>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
5553
|
+
interface GetLevelsProps extends InfiniteQueryParams {
|
|
5331
5554
|
}
|
|
5332
|
-
declare const
|
|
5333
|
-
declare const
|
|
5555
|
+
declare const GetLevels: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetLevelsProps) => Promise<ConnectedXMResponse<SponsorshipLevel[]>>;
|
|
5556
|
+
declare const useGetLevels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetLevels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<SponsorshipLevel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5334
5557
|
|
|
5335
|
-
declare const
|
|
5336
|
-
|
|
5337
|
-
|
|
5338
|
-
|
|
5558
|
+
declare const LEVEL_SPONSORS_QUERY_KEY: (levelId: string) => QueryKey;
|
|
5559
|
+
declare const SET_LEVEL_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVEL_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevelSponsors>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
5560
|
+
interface GetLevelSponsorsProps extends InfiniteQueryParams {
|
|
5561
|
+
levelId: string;
|
|
5339
5562
|
}
|
|
5340
|
-
declare const
|
|
5341
|
-
declare const
|
|
5563
|
+
declare const GetLevelSponsors: ({ levelId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetLevelSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
5564
|
+
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>>;
|
|
5342
5565
|
|
|
5343
|
-
declare const
|
|
5344
|
-
declare const
|
|
5345
|
-
interface
|
|
5346
|
-
|
|
5347
|
-
passId: string;
|
|
5566
|
+
declare const VIDEO_QUERY_KEY: (videoId: string) => QueryKey;
|
|
5567
|
+
declare const SET_VIDEO_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof VIDEO_QUERY_KEY>, response: Awaited<ReturnType<typeof GetVideo>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5568
|
+
interface GetVideoProps extends SingleQueryParams {
|
|
5569
|
+
videoId: string;
|
|
5348
5570
|
}
|
|
5349
|
-
declare const
|
|
5350
|
-
declare const
|
|
5571
|
+
declare const GetVideo: ({ videoId, clientApiParams, }: GetVideoProps) => Promise<ConnectedXMResponse<BaseVideo>>;
|
|
5572
|
+
declare const useGetVideo: (videoId?: string, options?: SingleQueryOptions<ReturnType<typeof GetVideo>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseVideo>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5351
5573
|
|
|
5352
|
-
declare const
|
|
5353
|
-
|
|
5354
|
-
|
|
5355
|
-
|
|
5574
|
+
declare const IMAGE_QUERY_KEY: (imageId: string) => QueryKey;
|
|
5575
|
+
declare const SET_IMAGE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof IMAGE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetImage>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5576
|
+
interface GetImageProps extends SingleQueryParams {
|
|
5577
|
+
imageId: string;
|
|
5356
5578
|
}
|
|
5357
|
-
declare const
|
|
5358
|
-
declare const
|
|
5579
|
+
declare const GetImage: ({ imageId, clientApiParams, }: GetImageProps) => Promise<ConnectedXMResponse<Image>>;
|
|
5580
|
+
declare const useGetImage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Image>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5359
5581
|
|
|
5360
|
-
|
|
5361
|
-
|
|
5362
|
-
|
|
5582
|
+
/**
|
|
5583
|
+
* @category Keys
|
|
5584
|
+
* @group Support Tickets
|
|
5585
|
+
*/
|
|
5586
|
+
declare const SUPPORT_TICKET_QUERY_KEY: (supportTicketId: string) => string[];
|
|
5587
|
+
/**
|
|
5588
|
+
* @category Setters
|
|
5589
|
+
* @group Support Tickets
|
|
5590
|
+
*/
|
|
5591
|
+
declare const SET_SUPPORT_TICKET_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUPPORT_TICKET_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSupportTicket>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5592
|
+
interface GetSupportTicketProps extends SingleQueryParams {
|
|
5593
|
+
supportTicketId: string;
|
|
5363
5594
|
}
|
|
5364
|
-
|
|
5365
|
-
|
|
5595
|
+
/**
|
|
5596
|
+
* @category Queries
|
|
5597
|
+
* @group Support Tickets
|
|
5598
|
+
*/
|
|
5599
|
+
declare const GetSupportTicket: ({ supportTicketId, clientApiParams, }: GetSupportTicketProps) => Promise<ConnectedXMResponse<SupportTicket>>;
|
|
5600
|
+
/**
|
|
5601
|
+
* @category Hooks
|
|
5602
|
+
* @group Support Tickets
|
|
5603
|
+
*/
|
|
5604
|
+
declare const useGetSupportTicket: (supportTicketId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSupportTicket>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SupportTicket>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5366
5605
|
|
|
5367
|
-
|
|
5368
|
-
|
|
5369
|
-
|
|
5606
|
+
/**
|
|
5607
|
+
* @category Keys
|
|
5608
|
+
* @group Support Tickets
|
|
5609
|
+
*/
|
|
5610
|
+
declare const SUPPORT_TICKETS_QUERY_KEY: (type?: string, state?: string) => QueryKey;
|
|
5611
|
+
/**
|
|
5612
|
+
* @category Setters
|
|
5613
|
+
* @group Support Tickets
|
|
5614
|
+
*/
|
|
5615
|
+
declare const SET_SUPPORT_TICKETS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUPPORT_TICKETS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSupportTickets>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
5616
|
+
interface GetSupportTicketsProps extends InfiniteQueryParams {
|
|
5617
|
+
type?: string;
|
|
5618
|
+
state?: string;
|
|
5370
5619
|
}
|
|
5371
|
-
|
|
5372
|
-
|
|
5620
|
+
/**
|
|
5621
|
+
* @category Queries
|
|
5622
|
+
* @group Support Tickets
|
|
5623
|
+
*/
|
|
5624
|
+
declare const GetSupportTickets: ({ pageParam, pageSize, orderBy, search, type, state, clientApiParams, }: GetSupportTicketsProps) => Promise<ConnectedXMResponse<SupportTicket[]>>;
|
|
5625
|
+
/**
|
|
5626
|
+
* @category Hooks
|
|
5627
|
+
* @group Support Tickets
|
|
5628
|
+
*/
|
|
5629
|
+
declare const useGetSupportTickets: (type?: string, state?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSupportTickets>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<SupportTicket[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5373
5630
|
|
|
5374
|
-
|
|
5375
|
-
|
|
5376
|
-
|
|
5631
|
+
/**
|
|
5632
|
+
* @category Keys
|
|
5633
|
+
* @group Support Tickets
|
|
5634
|
+
*/
|
|
5635
|
+
declare const SUPPORT_TICKET_MESSAGES_QUERY_KEY: (supportTicketId: string) => string[];
|
|
5636
|
+
/**
|
|
5637
|
+
* @category Setters
|
|
5638
|
+
* @group Support Tickets
|
|
5639
|
+
*/
|
|
5640
|
+
declare const SET_SUPPORT_TICKET_MESSAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUPPORT_TICKET_MESSAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSupportTicketMessages>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
5641
|
+
interface GetSupportTicketMessagesProps extends InfiniteQueryParams {
|
|
5642
|
+
supportTicketId: string;
|
|
5377
5643
|
}
|
|
5378
|
-
|
|
5379
|
-
|
|
5644
|
+
/**
|
|
5645
|
+
* @category Queries
|
|
5646
|
+
* @group Support Tickets
|
|
5647
|
+
*/
|
|
5648
|
+
declare const GetSupportTicketMessages: ({ supportTicketId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSupportTicketMessagesProps) => Promise<ConnectedXMResponse<SupportTicketMessage[]>>;
|
|
5649
|
+
/**
|
|
5650
|
+
* @category Hooks
|
|
5651
|
+
* @group Support Tickets
|
|
5652
|
+
*/
|
|
5653
|
+
declare const useGetSupportTicketMessages: (supportTicketId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSupportTicketMessages>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<SupportTicketMessage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5380
5654
|
|
|
5381
|
-
|
|
5382
|
-
|
|
5383
|
-
|
|
5384
|
-
|
|
5385
|
-
|
|
5386
|
-
|
|
5655
|
+
/**
|
|
5656
|
+
* @category Keys
|
|
5657
|
+
* @group Support Tickets
|
|
5658
|
+
*/
|
|
5659
|
+
declare const SUPPORT_TICKET_ACTIVITY_LOG_QUERY_KEY: (supportTicketId: string) => string[];
|
|
5660
|
+
/**
|
|
5661
|
+
* @category Setters
|
|
5662
|
+
* @group Support Tickets
|
|
5663
|
+
*/
|
|
5664
|
+
declare const SET_SUPPORT_TICKET_ACTIVITY_LOG_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUPPORT_TICKET_ACTIVITY_LOG_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSupportTicketActivityLog>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
5665
|
+
interface GetSupportTicketActivityLogProps extends InfiniteQueryParams {
|
|
5666
|
+
supportTicketId: string;
|
|
5387
5667
|
}
|
|
5388
|
-
|
|
5389
|
-
|
|
5668
|
+
/**
|
|
5669
|
+
* @category Queries
|
|
5670
|
+
* @group Support Tickets
|
|
5671
|
+
*/
|
|
5672
|
+
declare const GetSupportTicketActivityLog: ({ supportTicketId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSupportTicketActivityLogProps) => Promise<ConnectedXMResponse<SupportTicketActivityLog[]>>;
|
|
5673
|
+
/**
|
|
5674
|
+
* @category Hooks
|
|
5675
|
+
* @group Support Tickets
|
|
5676
|
+
*/
|
|
5677
|
+
declare const useGetSupportTicketActivityLog: (supportTicketId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSupportTicketActivityLog>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<SupportTicketActivityLog[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5390
5678
|
|
|
5391
|
-
declare const
|
|
5392
|
-
declare const
|
|
5393
|
-
interface
|
|
5679
|
+
declare const SURVEY_QUERY_KEY: (surveyId: string) => QueryKey;
|
|
5680
|
+
declare const SET_SURVEY_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SURVEY_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurvey>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5681
|
+
interface GetSurveyProps extends SingleQueryParams {
|
|
5682
|
+
surveyId: string;
|
|
5394
5683
|
}
|
|
5395
|
-
declare const
|
|
5396
|
-
declare const
|
|
5684
|
+
declare const GetSurvey: ({ surveyId, clientApiParams, }: GetSurveyProps) => Promise<ConnectedXMResponse<Survey>>;
|
|
5685
|
+
declare const useGetSurvey: (surveyId: string, options?: SingleQueryOptions<ReturnType<typeof GetSurvey>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Survey>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5397
5686
|
|
|
5398
|
-
declare const
|
|
5399
|
-
|
|
5400
|
-
|
|
5687
|
+
declare const SURVEY_SUBMISSION_QUERY_KEY: (surveyId: string, submissionId: string) => QueryKey;
|
|
5688
|
+
declare const SET_SELF_SURVEY_SUBMISSION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SURVEY_SUBMISSION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveySubmission>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5689
|
+
interface GetSurveySubmissionProps extends SingleQueryParams {
|
|
5690
|
+
surveyId: string;
|
|
5691
|
+
submissionId: string;
|
|
5401
5692
|
}
|
|
5402
|
-
declare const
|
|
5403
|
-
declare const
|
|
5693
|
+
declare const GetSurveySubmission: ({ surveyId, submissionId, clientApiParams, }: GetSurveySubmissionProps) => Promise<ConnectedXMResponse<SurveySubmission>>;
|
|
5694
|
+
declare const useGetSurveySubmission: (surveyId: string, submissionId: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySubmission>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveySubmission>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5404
5695
|
|
|
5405
|
-
declare const
|
|
5406
|
-
interface
|
|
5407
|
-
|
|
5696
|
+
declare const SURVEY_SUBMISSIONS_QUERY_KEY: (surveyId: string, status?: keyof typeof PurchaseStatus) => unknown[];
|
|
5697
|
+
interface GetSurveySubmissionsProps extends InfiniteQueryParams {
|
|
5698
|
+
surveyId: string;
|
|
5699
|
+
status?: keyof typeof PurchaseStatus;
|
|
5408
5700
|
}
|
|
5409
|
-
declare const
|
|
5410
|
-
declare const
|
|
5701
|
+
declare const GetSurveySubmissions: ({ surveyId, status, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSurveySubmissionsProps) => Promise<ConnectedXMResponse<SurveySubmission[]>>;
|
|
5702
|
+
declare const useGetSurveySubmissions: (surveyId?: string, status?: keyof typeof PurchaseStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSurveySubmissions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<SurveySubmission[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5411
5703
|
|
|
5412
|
-
declare const
|
|
5413
|
-
declare const
|
|
5414
|
-
interface
|
|
5704
|
+
declare const SURVEY_SUBMISSION_SECTIONS_QUERY_KEY: (surveyId: string, submissionId: string) => QueryKey;
|
|
5705
|
+
declare const SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SURVEY_SUBMISSION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveySubmissionSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5706
|
+
interface GetSurveySubmissionSectionsProps extends SingleQueryParams {
|
|
5707
|
+
surveyId: string;
|
|
5708
|
+
submissionId: string;
|
|
5415
5709
|
}
|
|
5416
|
-
declare const
|
|
5417
|
-
declare const
|
|
5710
|
+
declare const GetSurveySubmissionSections: ({ surveyId, submissionId, clientApiParams, }: GetSurveySubmissionSectionsProps) => Promise<ConnectedXMResponse<SurveySection[]>>;
|
|
5711
|
+
declare const useGetSurveySubmissionSections: (surveyId: string, submissionId: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySubmissionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveySection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5418
5712
|
|
|
5419
5713
|
declare const THREADS_QUERY_KEY: () => QueryKey;
|
|
5420
5714
|
declare const THREAD_CIRCLES_QUERY_KEY: () => QueryKey;
|
|
@@ -5490,104 +5784,4 @@ interface GetThreadMessageProps {
|
|
|
5490
5784
|
declare const GetThreadMessage: ({ threadId, messageId, clientApiParams, }: GetThreadMessageProps) => Promise<ConnectedXMResponse<ThreadMessage>>;
|
|
5491
5785
|
declare const useGetThreadMessage: (threadId: string, messageId: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadMessage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ThreadMessage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5492
5786
|
|
|
5493
|
-
declare const INTEGRATION_QUERY_KEY: (integrationId: string) => QueryKey;
|
|
5494
|
-
declare const SET_INTEGRATION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTEGRATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetIntegration>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
5495
|
-
interface GetIntegrationProps extends SingleQueryParams {
|
|
5496
|
-
integrationId: string;
|
|
5497
|
-
}
|
|
5498
|
-
declare const GetIntegration: ({ integrationId, clientApiParams, }: GetIntegrationProps) => Promise<ConnectedXMResponse<Integration>>;
|
|
5499
|
-
declare const useGetIntegration: (integrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetIntegration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Integration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5500
|
-
|
|
5501
|
-
declare const INTEGRATIONS_QUERY_KEY: () => QueryKey;
|
|
5502
|
-
declare const SET_INTEGRATIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTEGRATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetIntegrations>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
5503
|
-
interface GetIntegrationsProps extends InfiniteQueryParams {
|
|
5504
|
-
}
|
|
5505
|
-
declare const GetIntegrations: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetIntegrationsProps) => Promise<ConnectedXMResponse<Integration[]>>;
|
|
5506
|
-
declare const useGetIntegrations: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetIntegrations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Integration[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5507
|
-
|
|
5508
|
-
interface IntegrationAuth {
|
|
5509
|
-
token: string;
|
|
5510
|
-
expiration?: string;
|
|
5511
|
-
details: IntegrationDetails;
|
|
5512
|
-
}
|
|
5513
|
-
declare const INTEGRATION_AUTH_QUERY_KEY: (integrationType: keyof typeof IntegrationType) => QueryKey;
|
|
5514
|
-
declare const SET_INTEGRATION_AUTH_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTEGRATION_AUTH_QUERY_KEY>, response: Awaited<ReturnType<typeof GetIntegrationAuth>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
5515
|
-
interface GetIntegrationAuthProps extends SingleQueryParams {
|
|
5516
|
-
integrationType: keyof typeof IntegrationType;
|
|
5517
|
-
}
|
|
5518
|
-
declare const GetIntegrationAuth: ({ integrationType, clientApiParams, }: GetIntegrationAuthProps) => Promise<ConnectedXMResponse<IntegrationAuth>>;
|
|
5519
|
-
declare const useGetIntegrationAuth: (integrationType: keyof typeof IntegrationType, expiration?: string, options?: SingleQueryOptions<ReturnType<typeof GetIntegrationAuth>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<IntegrationAuth>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5520
|
-
|
|
5521
|
-
declare const SURVEY_QUERY_KEY: (surveyId: string) => QueryKey;
|
|
5522
|
-
declare const SET_SURVEY_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SURVEY_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurvey>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5523
|
-
interface GetSurveyProps extends SingleQueryParams {
|
|
5524
|
-
surveyId: string;
|
|
5525
|
-
}
|
|
5526
|
-
declare const GetSurvey: ({ surveyId, clientApiParams, }: GetSurveyProps) => Promise<ConnectedXMResponse<Survey>>;
|
|
5527
|
-
declare const useGetSurvey: (surveyId: string, options?: SingleQueryOptions<ReturnType<typeof GetSurvey>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Survey>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5528
|
-
|
|
5529
|
-
declare const SURVEY_SUBMISSION_QUERY_KEY: (surveyId: string, submissionId: string) => QueryKey;
|
|
5530
|
-
declare const SET_SELF_SURVEY_SUBMISSION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SURVEY_SUBMISSION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveySubmission>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5531
|
-
interface GetSurveySubmissionProps extends SingleQueryParams {
|
|
5532
|
-
surveyId: string;
|
|
5533
|
-
submissionId: string;
|
|
5534
|
-
}
|
|
5535
|
-
declare const GetSurveySubmission: ({ surveyId, submissionId, clientApiParams, }: GetSurveySubmissionProps) => Promise<ConnectedXMResponse<SurveySubmission>>;
|
|
5536
|
-
declare const useGetSurveySubmission: (surveyId: string, submissionId: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySubmission>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveySubmission>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5537
|
-
|
|
5538
|
-
declare const SURVEY_SUBMISSIONS_QUERY_KEY: (surveyId: string, status?: keyof typeof PurchaseStatus) => unknown[];
|
|
5539
|
-
interface GetSurveySubmissionsProps extends InfiniteQueryParams {
|
|
5540
|
-
surveyId: string;
|
|
5541
|
-
status?: keyof typeof PurchaseStatus;
|
|
5542
|
-
}
|
|
5543
|
-
declare const GetSurveySubmissions: ({ surveyId, status, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSurveySubmissionsProps) => Promise<ConnectedXMResponse<SurveySubmission[]>>;
|
|
5544
|
-
declare const useGetSurveySubmissions: (surveyId?: string, status?: keyof typeof PurchaseStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSurveySubmissions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<SurveySubmission[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5545
|
-
|
|
5546
|
-
declare const SURVEY_SUBMISSION_SECTIONS_QUERY_KEY: (surveyId: string, submissionId: string) => QueryKey;
|
|
5547
|
-
declare const SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SURVEY_SUBMISSION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveySubmissionSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5548
|
-
interface GetSurveySubmissionSectionsProps extends SingleQueryParams {
|
|
5549
|
-
surveyId: string;
|
|
5550
|
-
submissionId: string;
|
|
5551
|
-
}
|
|
5552
|
-
declare const GetSurveySubmissionSections: ({ surveyId, submissionId, clientApiParams, }: GetSurveySubmissionSectionsProps) => Promise<ConnectedXMResponse<SurveySection[]>>;
|
|
5553
|
-
declare const useGetSurveySubmissionSections: (surveyId: string, submissionId: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySubmissionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveySection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5554
|
-
|
|
5555
|
-
declare const LINK_PREVIEW_QUERY_KEY: (url: string) => QueryKey;
|
|
5556
|
-
declare const SET_LINK_PREVIEW_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LINK_PREVIEW_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLinkPreview>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5557
|
-
interface GetLinkPreviewProps extends SingleQueryParams {
|
|
5558
|
-
url: string;
|
|
5559
|
-
}
|
|
5560
|
-
declare const GetLinkPreview: ({ url, clientApiParams, }: GetLinkPreviewProps) => Promise<ConnectedXMResponse<LinkPreview | null>>;
|
|
5561
|
-
declare const useGetLinkPreview: (url?: string, options?: SingleQueryOptions<ReturnType<typeof GetLinkPreview>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<LinkPreview | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5562
|
-
|
|
5563
|
-
declare const VIDEO_QUERY_KEY: (videoId: string) => QueryKey;
|
|
5564
|
-
declare const SET_VIDEO_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof VIDEO_QUERY_KEY>, response: Awaited<ReturnType<typeof GetVideo>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5565
|
-
interface GetVideoProps extends SingleQueryParams {
|
|
5566
|
-
videoId: string;
|
|
5567
|
-
}
|
|
5568
|
-
declare const GetVideo: ({ videoId, clientApiParams, }: GetVideoProps) => Promise<ConnectedXMResponse<BaseVideo>>;
|
|
5569
|
-
declare const useGetVideo: (videoId?: string, options?: SingleQueryOptions<ReturnType<typeof GetVideo>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseVideo>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5570
|
-
|
|
5571
|
-
declare const IMAGE_QUERY_KEY: (imageId: string) => QueryKey;
|
|
5572
|
-
declare const SET_IMAGE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof IMAGE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetImage>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5573
|
-
interface GetImageProps extends SingleQueryParams {
|
|
5574
|
-
imageId: string;
|
|
5575
|
-
}
|
|
5576
|
-
declare const GetImage: ({ imageId, clientApiParams, }: GetImageProps) => Promise<ConnectedXMResponse<Image>>;
|
|
5577
|
-
declare const useGetImage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Image>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5578
|
-
|
|
5579
|
-
declare const PAYMENT_QUERY_KEY: (paymentId: string) => QueryKey;
|
|
5580
|
-
declare const SET_PAYMENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof PAYMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetPayment>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5581
|
-
interface GetPaymentProps extends SingleQueryParams {
|
|
5582
|
-
paymentId: string;
|
|
5583
|
-
}
|
|
5584
|
-
declare const GetPayment: ({ paymentId, clientApiParams, }: GetPaymentProps) => Promise<ConnectedXMResponse<Payment>>;
|
|
5585
|
-
declare const useGetPayment: (paymentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPayment>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Payment>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5586
|
-
|
|
5587
|
-
declare const PAYMENTS_QUERY_KEY: () => QueryKey;
|
|
5588
|
-
interface GetPaymentsProps extends InfiniteQueryParams {
|
|
5589
|
-
}
|
|
5590
|
-
declare const GetPayments: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetPaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
|
|
5591
|
-
declare const useGetPayments: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetPayments>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Payment[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5592
|
-
|
|
5593
|
-
export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_FOLLOW_STATS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountAttribute, AccountAttributeType, type AccountAttributeValue, type AccountShare, type AccountTier, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityLike, ActivityPreference, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddLogin, type AddLoginParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadCircleAccount, type AddThreadCircleAccountParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, type AttendeePackage, BENEFITS_QUERY_KEY, BOOKINGS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_SPACES_QUERY_KEY, BOOKING_PLACE_SPACE_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountAttribute, type BaseAccountAttributeValue, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionSection, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseLinkPreview, type BaseLogin, type BaseMatch, type BaseMeeting, type BaseNotification, type BaseOrganization, type BasePass, type BasePassAddon, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntegration, type BasePaymentIntent, type BasePaymentLineItem, type BaseRegistrationFollowup, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationSection, type BaseRoom, type BaseRound, type BaseScan, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSupportTicket, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveySection, type BaseSurveySubmission, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadViewer, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseVideo, type Benefit, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceSlot, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIBERS_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPass, type CancelPassParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, ConnectedProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, type CreateChannelCollectionPayload, CreateChannelContent, type CreateChannelContentParams, type CreateChannelContentPayload, type CreateChannelParams, type CreateChannelPayload, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, type CreateContentGuestPayload, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingInput, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateLoginAccount, type CreateLoginAccountAccount, type CreateLoginAccountParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateSupportTicket, type CreateSupportTicketParams, CreateThreadMessage, type CreateThreadMessageParams, type CursorQueryOptions, type CursorQueryParams, DayOfWeek, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_BANNED_USER, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_NO_ACCOUNT_SELECTED, ERR_PRIVATE_CHANNEL, ERR_REGISTRATION_UNAVAILABLE, ERR_TIER_REQUIRED, EVENTS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SUMMARY_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPEAKER_SESSIONS_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, EventActivationType, type EventAddOn, EventAgendaVisibility, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventMediaItem, type EventPackage, type EventPackagePass, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, type EventSessionAccess, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionResponse, EventSessionQuestionType, type EventSessionSection, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowStats, type GetAccountFollowStatsProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, GetActivityLikes, type GetActivityLikesProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetBooking, GetBookingIntent, type GetBookingIntentProps, GetBookingPlace, type GetBookingPlaceProps, GetBookingPlaceSpace, type GetBookingPlaceSpaceProps, GetBookingPlaceSpaceSlots, type GetBookingPlaceSpaceSlotsProps, GetBookingPlaces, type GetBookingPlacesParams, GetBookingPlacesSpaces, type GetBookingPlacesSpacesProps, type GetBookingProps, GetBookings, type GetBookingsParams, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannelSubscribers, type GetChannelSubscribersParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakerSessions, type GetEventSpeakerSessionsProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, GetEvents, type GetEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetImage, type GetImageProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterest, GetInterestActivities, type GetInterestActivitiesProps, type GetInterestProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetInvoices, type GetInvoicesProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetLinkPreview, type GetLinkPreviewProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetLogin, type GetLoginProps, GetMeeting, type GetMeetingProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, type GetOrganizationParams, GetPayment, type GetPaymentProps, GetPayments, type GetPaymentsProps, GetSearchList, type GetSearchListProps, GetSearchListValues, type GetSearchListValuesProps, GetSearchLists, type GetSearchListsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChannelSubscriber, type GetSelfChannelSubscriberParams, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfEventAttendee, GetSelfEventAttendeeAccess, type GetSelfEventAttendeeAccessProps, GetSelfEventAttendeeAccessQuestionSections, type GetSelfEventAttendeeAccessQuestionSectionsProps, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, GetSelfEventAttendeePassAvailableSessions, type GetSelfEventAttendeePassAvailableSessionsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionFollowup, type GetSelfEventAttendeePassQuestionFollowupProps, GetSelfEventAttendeePassQuestionFollowups, type GetSelfEventAttendeePassQuestionFollowupsProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, type GetSelfEventAttendeeProps, GetSelfEventAttendeeTransferAccounts, type GetSelfEventAttendeeTransferAccountsProps, GetSelfEventAttendeeTransfersLogs, type GetSelfEventAttendeeTransfersLogsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingAttendees, type GetSelfEventListingAttendeesProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, GetSelfEventListingPass, type GetSelfEventListingPassProps, GetSelfEventListingPasses, type GetSelfEventListingPassesProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationAddOns, type GetSelfEventRegistrationAddOnsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPassTypes, type GetSelfEventRegistrationPassTypesProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationQuestions, type GetSelfEventRegistrationQuestionsProps, GetSelfEventRegistrationRoomTypes, type GetSelfEventRegistrationRoomTypesProps, GetSelfEventSessionRegistration, GetSelfEventSessionRegistrationAvailablePasses, type GetSelfEventSessionRegistrationAvailablePassesProps, GetSelfEventSessionRegistrationIntent, type GetSelfEventSessionRegistrationIntentProps, type GetSelfEventSessionRegistrationProps, GetSelfEventSessionRegistrationQuestions, type GetSelfEventSessionRegistrationQuestionsProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, GetSelfLeadCounts, type GetSelfLeadCountsProps, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfLogins, type GetSelfLoginsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSurvey, type GetSurveyProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetUsernameAvailability, type GetUsernameAvailabilityProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InterestInput, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, JoinMeetingViaCode, type JoinMeetingViaCodeParams, JoinMeetingViaEvent, type JoinMeetingViaEventParams, JoinMeetingViaGroup, type JoinMeetingViaGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LINK_PREVIEW_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, LOGIN_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, LocationQuestionOption, type Login, MEETING_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type Meeting, MeetingType, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_QUERY_KEY, type Order, type OrgMembership, type Organization, OrganizationActivityPreference, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PaymentIntentSource, type PaymentLineItem, PaymentLineItemType, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationFollowup, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveLogin, type RemoveLoginParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, type Room, type Round, SEARCH_LISTS_QUERY_KEY, SEARCH_LIST_QUERY_KEY, SEARCH_LIST_VALUES_QUERY_KEY, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHANNEL_SUBSCRIBER_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY, SELF_EVENT_ATTENDEE_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_LEADS_QUERY_KEY, SELF_LEAD_COUNTS_QUERY_KEY, SELF_LEAD_QUERY_KEY, SELF_LOGINS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_SPACES_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_IMAGE_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPEAKER_SESSIONS_FIRST_PAGE, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LINK_PREVIEW_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LOGINS_QUERY_DATA, SET_MEETING_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SELF_SURVEY_SUBMISSION_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_USERNAME_AVAILABILITY_QUERY_DATA, SET_VIDEO_QUERY_DATA, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SearchList, type SearchListValue, type SegmentInput, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, type SelfRelationships, type Series, type Session, SessionAccess, type SessionLocation, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamInput, SubmitSurvey, type SubmitSurveyParams, type SupportTicket, type SupportTicketNote, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, SurveyQuestionType, type SurveySection, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, USERNAME_AVAILABILITY_QUERY_KEY, UnblockAccount, type UnblockAccountParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateActivity, type UpdateActivityParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, type UpdateChannelCollectionPayload, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelContentPayload, type UpdateChannelParams, type UpdateChannelPayload, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, type UpdateContentGuestPayload, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, type UpdateListingValues, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassFollowup, type UpdateSelfEventAttendeePassFollowupParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistration, type UpdateSelfEventRegistrationParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventRegistrationSearchListResponse, type UpdateSelfEventRegistrationSearchListResponseParams, UpdateSelfEventSessionRegistrationPassResponse, type UpdateSelfEventSessionRegistrationPassResponseParams, UpdateSelfEventSessionRegistrationPasses, type UpdateSelfEventSessionRegistrationPassesParams, UpdateSelfEventSessionRegistrationResponses, type UpdateSelfEventSessionRegistrationResponsesParams, UpdateSelfEventSessionRegistrationSearchListResponse, type UpdateSelfEventSessionRegistrationSearchListResponseParams, UpdateSelfGroupMembership, type UpdateSelfGroupMembershipParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateSurveySearchListResponse, type UpdateSurveySearchListResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, type User, type UsernameAvailability, VIDEO_QUERY_KEY, VerifyLoginAccount, type VerifyLoginAccountParams, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddListingCoHost, useAddListingSponsor, useAddLogin, useAddSelfChatChannelMember, useAddSelfEventSession, useAddSelfInterests, useAddThreadCircleAccount, useAddThreadMessageReaction, useBlockAccount, useBlockIntegration, useCancelBooking, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCapturePaymentIntent, useCheckinListingAttendeePass, useCompleteEventActivation, useConfirmBooking, useConnected, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateLoginAccount, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateSupportTicket, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityLikes, useGetAdvertisement, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscribers, useGetChannels, useGetContents, useGetEvent, useGetEventActivation, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetInvoices, useGetLevel, useGetLevelSponsors, useGetLevels, useGetLinkPreview, useGetListingAttendeePassQuestionSections, useGetLogin, useGetMeeting, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetPayment, useGetPayments, useGetSearchList, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChannelSubscriber, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfEventAttendee, useGetSelfEventAttendeeAccess, useGetSelfEventAttendeeAccessQuestionSections, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassAvailableSessions, useGetSelfEventAttendeePassQuestionFollowup, useGetSelfEventAttendeePassQuestionFollowups, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeeTransferAccounts, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationAddOns, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPassTypes, useGetSelfEventRegistrationQuestions, useGetSelfEventRegistrationRoomTypes, useGetSelfEventSessionRegistration, useGetSelfEventSessionRegistrationAvailablePasses, useGetSelfEventSessionRegistrationIntent, useGetSelfEventSessionRegistrationQuestions, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfLogins, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSubscribedChannels, useGetSubscribedContents, useGetSurvey, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetUsernameAvailability, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useJoinMeetingViaCode, useJoinMeetingViaEvent, useJoinMeetingViaGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveLogin, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useTransferPass, useUnblockAccount, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateActivity, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassFollowup, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistration, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventRegistrationSearchListResponse, useUpdateSelfEventSessionRegistrationPassResponse, useUpdateSelfEventSessionRegistrationPasses, useUpdateSelfEventSessionRegistrationResponses, useUpdateSelfEventSessionRegistrationSearchListResponse, useUpdateSelfGroupMembership, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSurveyResponse, useUpdateSurveySearchListResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage, useVerifyLoginAccount };
|
|
5787
|
+
export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_FOLLOW_STATS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountAttribute, AccountAttributeType, type AccountAttributeValue, type AccountShare, type AccountTier, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityLike, ActivityPreference, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddLogin, type AddLoginParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadCircleAccount, type AddThreadCircleAccountParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, type AttendeePackage, BENEFITS_QUERY_KEY, BOOKINGS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_SPACES_QUERY_KEY, BOOKING_PLACE_SPACE_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountAttribute, type BaseAccountAttributeValue, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionSection, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseLinkPreview, type BaseLogin, type BaseMatch, type BaseMeeting, type BaseNotification, type BaseOrgMembership, type BaseOrganization, type BasePass, type BasePassAddon, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntegration, type BasePaymentIntent, type BasePaymentLineItem, type BaseRegistrationFollowup, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationSection, type BaseRoom, type BaseRound, type BaseScan, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSupportTicket, type BaseSupportTicketActivityLog, type BaseSupportTicketMessage, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveySection, type BaseSurveySubmission, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadViewer, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseUser, type BaseVideo, type Benefit, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceSlot, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIBERS_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPass, type CancelPassParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, ConnectedProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, type CreateChannelCollectionPayload, CreateChannelContent, type CreateChannelContentParams, type CreateChannelContentPayload, type CreateChannelParams, type CreateChannelPayload, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, type CreateContentGuestPayload, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingInput, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateLoginAccount, type CreateLoginAccountAccount, type CreateLoginAccountParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateSupportTicket, CreateSupportTicketMessage, type CreateSupportTicketMessageParams, type CreateSupportTicketParams, CreateThreadMessage, type CreateThreadMessageParams, type CursorQueryOptions, type CursorQueryParams, DayOfWeek, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_BANNED_USER, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_NO_ACCOUNT_SELECTED, ERR_PRIVATE_CHANNEL, ERR_REGISTRATION_UNAVAILABLE, ERR_TIER_REQUIRED, EVENTS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SUMMARY_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPEAKER_SESSIONS_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, EventActivationType, type EventAddOn, EventAgendaVisibility, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventMediaItem, type EventPackage, type EventPackagePass, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, type EventSessionAccess, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionResponse, EventSessionQuestionType, type EventSessionSection, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowStats, type GetAccountFollowStatsProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, GetActivityLikes, type GetActivityLikesProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetBooking, GetBookingIntent, type GetBookingIntentProps, GetBookingPlace, type GetBookingPlaceProps, GetBookingPlaceSpace, type GetBookingPlaceSpaceProps, GetBookingPlaceSpaceSlots, type GetBookingPlaceSpaceSlotsProps, GetBookingPlaces, type GetBookingPlacesParams, GetBookingPlacesSpaces, type GetBookingPlacesSpacesProps, type GetBookingProps, GetBookings, type GetBookingsParams, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannelSubscribers, type GetChannelSubscribersParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakerSessions, type GetEventSpeakerSessionsProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, GetEvents, type GetEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetImage, type GetImageProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterest, GetInterestActivities, type GetInterestActivitiesProps, type GetInterestProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetInvoices, type GetInvoicesProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetLinkPreview, type GetLinkPreviewProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetLogin, type GetLoginProps, GetMeeting, type GetMeetingProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, type GetOrganizationParams, GetPayment, type GetPaymentProps, GetPayments, type GetPaymentsProps, GetSearchList, type GetSearchListProps, GetSearchListValues, type GetSearchListValuesProps, GetSearchLists, type GetSearchListsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChannelSubscriber, type GetSelfChannelSubscriberParams, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfEventAttendee, GetSelfEventAttendeeAccess, type GetSelfEventAttendeeAccessProps, GetSelfEventAttendeeAccessQuestionSections, type GetSelfEventAttendeeAccessQuestionSectionsProps, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, GetSelfEventAttendeePassAvailableSessions, type GetSelfEventAttendeePassAvailableSessionsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionFollowup, type GetSelfEventAttendeePassQuestionFollowupProps, GetSelfEventAttendeePassQuestionFollowups, type GetSelfEventAttendeePassQuestionFollowupsProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, type GetSelfEventAttendeeProps, GetSelfEventAttendeeTransferAccounts, type GetSelfEventAttendeeTransferAccountsProps, GetSelfEventAttendeeTransfersLogs, type GetSelfEventAttendeeTransfersLogsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingAttendees, type GetSelfEventListingAttendeesProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, GetSelfEventListingPass, type GetSelfEventListingPassProps, GetSelfEventListingPasses, type GetSelfEventListingPassesProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationAddOns, type GetSelfEventRegistrationAddOnsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPassTypes, type GetSelfEventRegistrationPassTypesProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationQuestions, type GetSelfEventRegistrationQuestionsProps, GetSelfEventRegistrationRoomTypes, type GetSelfEventRegistrationRoomTypesProps, GetSelfEventSessionRegistration, GetSelfEventSessionRegistrationAvailablePasses, type GetSelfEventSessionRegistrationAvailablePassesProps, GetSelfEventSessionRegistrationIntent, type GetSelfEventSessionRegistrationIntentProps, type GetSelfEventSessionRegistrationProps, GetSelfEventSessionRegistrationQuestions, type GetSelfEventSessionRegistrationQuestionsProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, GetSelfLeadCounts, type GetSelfLeadCountsProps, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfLogins, type GetSelfLoginsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSupportTicket, GetSupportTicketActivityLog, GetSupportTicketMessages, GetSupportTickets, GetSurvey, type GetSurveyProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetUsernameAvailability, type GetUsernameAvailabilityProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InterestInput, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, JoinMeetingViaCode, type JoinMeetingViaCodeParams, JoinMeetingViaEvent, type JoinMeetingViaEventParams, JoinMeetingViaGroup, type JoinMeetingViaGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LINK_PREVIEW_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, LOGIN_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, LocationQuestionOption, type Login, MEETING_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type Meeting, MeetingType, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_QUERY_KEY, type Order, type Organization, OrganizationActivityPreference, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PaymentIntentSource, type PaymentLineItem, PaymentLineItemType, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationFollowup, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveLogin, type RemoveLoginParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, type Room, type Round, SEARCH_LISTS_QUERY_KEY, SEARCH_LIST_QUERY_KEY, SEARCH_LIST_VALUES_QUERY_KEY, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHANNEL_SUBSCRIBER_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY, SELF_EVENT_ATTENDEE_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_LEADS_QUERY_KEY, SELF_LEAD_COUNTS_QUERY_KEY, SELF_LEAD_QUERY_KEY, SELF_LOGINS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_SPACES_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_IMAGE_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPEAKER_SESSIONS_FIRST_PAGE, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LINK_PREVIEW_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LOGINS_QUERY_DATA, SET_MEETING_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SELF_SURVEY_SUBMISSION_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_ACTIVITY_LOG_QUERY_DATA, SET_SUPPORT_TICKET_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_USERNAME_AVAILABILITY_QUERY_DATA, SET_VIDEO_QUERY_DATA, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_ACTIVITY_LOG_QUERY_KEY, SUPPORT_TICKET_MESSAGES_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SearchList, type SearchListValue, type SegmentInput, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, type SelfRelationships, type Series, type Session, SessionAccess, type SessionLocation, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamInput, SubmitSurvey, type SubmitSurveyParams, type SupportTicket, type SupportTicketActivityLog, SupportTicketActivityLogSource, SupportTicketActivityLogType, type SupportTicketMessage, SupportTicketMessageSource, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, SurveyQuestionType, type SurveySection, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, USERNAME_AVAILABILITY_QUERY_KEY, UnblockAccount, type UnblockAccountParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateActivity, type UpdateActivityParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, type UpdateChannelCollectionPayload, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelContentPayload, type UpdateChannelParams, type UpdateChannelPayload, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, type UpdateContentGuestPayload, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, type UpdateListingValues, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassFollowup, type UpdateSelfEventAttendeePassFollowupParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistration, type UpdateSelfEventRegistrationParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventRegistrationSearchListResponse, type UpdateSelfEventRegistrationSearchListResponseParams, UpdateSelfEventSessionRegistrationPassResponse, type UpdateSelfEventSessionRegistrationPassResponseParams, UpdateSelfEventSessionRegistrationPasses, type UpdateSelfEventSessionRegistrationPassesParams, UpdateSelfEventSessionRegistrationResponses, type UpdateSelfEventSessionRegistrationResponsesParams, UpdateSelfEventSessionRegistrationSearchListResponse, type UpdateSelfEventSessionRegistrationSearchListResponseParams, UpdateSelfGroupMembership, type UpdateSelfGroupMembershipParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateSurveySearchListResponse, type UpdateSurveySearchListResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, type UsernameAvailability, VIDEO_QUERY_KEY, VerifyLoginAccount, type VerifyLoginAccountParams, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddListingCoHost, useAddListingSponsor, useAddLogin, useAddSelfChatChannelMember, useAddSelfEventSession, useAddSelfInterests, useAddThreadCircleAccount, useAddThreadMessageReaction, useBlockAccount, useBlockIntegration, useCancelBooking, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCapturePaymentIntent, useCheckinListingAttendeePass, useCompleteEventActivation, useConfirmBooking, useConnected, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateLoginAccount, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateSupportTicket, useCreateSupportTicketMessage, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityLikes, useGetAdvertisement, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscribers, useGetChannels, useGetContents, useGetEvent, useGetEventActivation, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetInvoices, useGetLevel, useGetLevelSponsors, useGetLevels, useGetLinkPreview, useGetListingAttendeePassQuestionSections, useGetLogin, useGetMeeting, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetPayment, useGetPayments, useGetSearchList, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChannelSubscriber, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfEventAttendee, useGetSelfEventAttendeeAccess, useGetSelfEventAttendeeAccessQuestionSections, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassAvailableSessions, useGetSelfEventAttendeePassQuestionFollowup, useGetSelfEventAttendeePassQuestionFollowups, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeeTransferAccounts, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationAddOns, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPassTypes, useGetSelfEventRegistrationQuestions, useGetSelfEventRegistrationRoomTypes, useGetSelfEventSessionRegistration, useGetSelfEventSessionRegistrationAvailablePasses, useGetSelfEventSessionRegistrationIntent, useGetSelfEventSessionRegistrationQuestions, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfLogins, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSubscribedChannels, useGetSubscribedContents, useGetSupportTicket, useGetSupportTicketActivityLog, useGetSupportTicketMessages, useGetSupportTickets, useGetSurvey, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetUsernameAvailability, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useJoinMeetingViaCode, useJoinMeetingViaEvent, useJoinMeetingViaGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveLogin, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useTransferPass, useUnblockAccount, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateActivity, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassFollowup, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistration, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventRegistrationSearchListResponse, useUpdateSelfEventSessionRegistrationPassResponse, useUpdateSelfEventSessionRegistrationPasses, useUpdateSelfEventSessionRegistrationResponses, useUpdateSelfEventSessionRegistrationSearchListResponse, useUpdateSelfGroupMembership, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSurveyResponse, useUpdateSurveySearchListResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage, useVerifyLoginAccount };
|