@connectedxm/client 7.0.13 → 7.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.d.ts +727 -432
  2. package/dist/index.js +3678 -3143
  3. 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 User {
1020
+ interface BaseUser {
1021
+ id: string;
1022
+ firstName: string | null;
1023
+ imageUrl: BaseImage | null;
1018
1024
  }
1019
- interface OrgMembership {
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
- awaitingAdmin = "awaitingAdmin",
1075
- awaitingClient = "awaitingClient",
1078
+ inProgress = "inProgress",
1076
1079
  resolved = "resolved",
1077
1080
  spam = "spam"
1078
1081
  }
1079
- interface SupportTicket extends BaseSupportTicket {
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
- ticket: BasePassType | null;
1086
- state: SupportTicketState;
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
- interface SupportTicketNote extends BaseSupportTicketNote {
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
- declare const isTypeSupportTicketNote: (supportTicketNote: BaseSupportTicketNote | SupportTicketNote) => supportTicketNote is SupportTicketNote;
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;
@@ -1851,6 +1914,16 @@ interface ThreadMessageReaction extends BaseThreadMessageReaction {
1851
1914
  account: BaseAccount;
1852
1915
  createdAt: string;
1853
1916
  }
1917
+ interface StreamChatMessage {
1918
+ messageId: string;
1919
+ streamId: string;
1920
+ sessionId: string;
1921
+ accountId: string;
1922
+ name: string;
1923
+ connectionId: string;
1924
+ message: string;
1925
+ timestamp: number;
1926
+ }
1854
1927
  declare enum DefaultAuthAction {
1855
1928
  signIn = "signIn",
1856
1929
  signUp = "signUp"
@@ -3248,17 +3321,18 @@ declare const useUpdateSelfBanner: (options?: Omit<MutationOptions<Awaited<Retur
3248
3321
  interface UpdateSelfNotificationPreferencesParams extends MutationParams {
3249
3322
  newFollowerPush?: boolean;
3250
3323
  likePush?: boolean;
3251
- resharePush?: boolean;
3252
3324
  commentPush?: boolean;
3253
3325
  transferPush?: boolean;
3254
3326
  transferEmail?: boolean;
3255
- supportTicketConfirmationEmail?: boolean;
3256
3327
  chatPush?: boolean;
3257
3328
  chatUnreadPush?: boolean;
3258
3329
  chatUnreadEmail?: boolean;
3330
+ eventReminderEmail?: boolean;
3259
3331
  activityNotificationPreference?: OrganizationActivityPreference;
3260
3332
  organizationAnnouncementPush?: boolean;
3261
3333
  organizationAnnouncementEmail?: boolean;
3334
+ groupInvitationPush?: boolean;
3335
+ groupInvitationEmail?: boolean;
3262
3336
  }
3263
3337
  declare const UpdateSelfNotificationPreferences: ({ clientApiParams, queryClient, ...params }: UpdateSelfNotificationPreferencesParams) => Promise<ConnectedXMResponse<NotificationPreferences>>;
3264
3338
  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 +3350,49 @@ interface AddSelfInterestsParams extends MutationParams {
3276
3350
  declare const AddSelfInterests: ({ interestIds, clientApiParams, queryClient, }: AddSelfInterestsParams) => Promise<ConnectedXMResponse<Account>>;
3277
3351
  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
3352
 
3353
+ /**
3354
+ * @category Params
3355
+ * @group SupportTickets
3356
+ */
3279
3357
  interface CreateSupportTicketParams extends MutationParams {
3280
- type: keyof typeof SupportTicketType;
3281
- email: string;
3358
+ type: string;
3282
3359
  request: string;
3283
- eventId?: string;
3284
- productId?: string;
3360
+ email: string;
3361
+ state: string;
3362
+ accountId: string | null;
3363
+ orgMembershipId: string | null;
3364
+ eventId: string | null;
3285
3365
  }
3286
- declare const CreateSupportTicket: ({ type, email, request, eventId, productId, clientApiParams, }: CreateSupportTicketParams) => Promise<ConnectedXMResponse<SupportTicket>>;
3366
+ /**
3367
+ * @category Methods
3368
+ * @group SupportTickets
3369
+ */
3370
+ declare const CreateSupportTicket: ({ type, request, email, state, accountId, orgMembershipId, eventId, clientApiParams, queryClient, }: CreateSupportTicketParams) => Promise<ConnectedXMResponse<SupportTicket>>;
3371
+ /**
3372
+ * @category Mutations
3373
+ * @group SupportTickets
3374
+ */
3287
3375
  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
3376
 
3377
+ /**
3378
+ * @category Params
3379
+ * @group SupportTickets
3380
+ */
3381
+ interface CreateSupportTicketMessageParams extends MutationParams {
3382
+ supportTicketId: string;
3383
+ message: string;
3384
+ }
3385
+ /**
3386
+ * @category Methods
3387
+ * @group SupportTickets
3388
+ */
3389
+ declare const CreateSupportTicketMessage: ({ supportTicketId, message, clientApiParams, queryClient, }: CreateSupportTicketMessageParams) => Promise<ConnectedXMResponse<SupportTicketMessage>>;
3390
+ /**
3391
+ * @category Mutations
3392
+ * @group SupportTickets
3393
+ */
3394
+ 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>;
3395
+
3289
3396
  interface AcceptGroupInviteParitation extends MutationParams {
3290
3397
  groupId: string;
3291
3398
  }
@@ -3791,6 +3898,31 @@ interface UploadImageParams extends MutationParams {
3791
3898
  declare const UploadImage: ({ image, clientApiParams, }: UploadImageParams) => Promise<ConnectedXMResponse<BaseImage>>;
3792
3899
  declare const useUploadImage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UploadImage>>, Omit<UploadImageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BaseImage>, axios.AxiosError<ConnectedXMResponse<BaseImage>, any>, Omit<UploadImageParams, "queryClient" | "clientApiParams">, unknown>;
3793
3900
 
3901
+ interface CreateStreamChatMessageParams extends MutationParams {
3902
+ streamId: string;
3903
+ sessionId: string;
3904
+ message: string;
3905
+ }
3906
+ declare const CreateStreamChatMessage: ({ streamId, sessionId, message, clientApiParams, queryClient, }: CreateStreamChatMessageParams) => Promise<ConnectedXMResponse<StreamChatMessage>>;
3907
+ declare const useCreateStreamChatMessage: (options?: MutationOptions<Awaited<ReturnType<typeof CreateStreamChatMessage>>, Omit<CreateStreamChatMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<StreamChatMessage>, axios.AxiosError<ConnectedXMResponse<StreamChatMessage>, any>, Omit<CreateStreamChatMessageParams, "queryClient" | "clientApiParams">, unknown>;
3908
+
3909
+ interface UpdateStreamChatMessageParams extends MutationParams {
3910
+ streamId: string;
3911
+ sessionId: string;
3912
+ messageId: string;
3913
+ message: string;
3914
+ }
3915
+ declare const UpdateStreamChatMessage: ({ streamId, sessionId, messageId, message, clientApiParams, queryClient, }: UpdateStreamChatMessageParams) => Promise<ConnectedXMResponse<StreamChatMessage>>;
3916
+ declare const useUpdateStreamChatMessage: (options?: MutationOptions<Awaited<ReturnType<typeof UpdateStreamChatMessage>>, Omit<UpdateStreamChatMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<StreamChatMessage>, axios.AxiosError<ConnectedXMResponse<StreamChatMessage>, any>, Omit<UpdateStreamChatMessageParams, "queryClient" | "clientApiParams">, unknown>;
3917
+
3918
+ interface DeleteStreamChatMessageParams extends MutationParams {
3919
+ streamId: string;
3920
+ sessionId: string;
3921
+ messageId: string;
3922
+ }
3923
+ declare const DeleteStreamChatMessage: ({ streamId, sessionId, messageId, clientApiParams, queryClient, }: DeleteStreamChatMessageParams) => Promise<ConnectedXMResponse<null>>;
3924
+ declare const useDeleteStreamChatMessage: (options?: MutationOptions<Awaited<ReturnType<typeof DeleteStreamChatMessage>>, Omit<DeleteStreamChatMessageParams, "queryClient" | "clientApiParams">>) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteStreamChatMessageParams, "queryClient" | "clientApiParams">, unknown>;
3925
+
3794
3926
  interface UpdateThreadParams extends MutationParams {
3795
3927
  threadId: string;
3796
3928
  subject?: string;
@@ -3972,17 +4104,74 @@ interface WSThreadMessageDeleted {
3972
4104
  };
3973
4105
  }
3974
4106
 
3975
- interface SendWSMessage {
3976
- type: string;
3977
- body: object;
4107
+ interface WSStreamChatCreated {
4108
+ timestamp: number;
4109
+ type: "stream.chat.created";
4110
+ body: {
4111
+ streamId: string;
4112
+ sessionId: string;
4113
+ message: StreamChatMessage;
4114
+ };
3978
4115
  }
3979
- type ReceivedWSMessage = WSNewChatMessage | WSThreadMessageCreated | WSThreadMessageUpdated | WSThreadMessageDeleted;
4116
+
4117
+ interface WSStreamChatDeleted {
4118
+ timestamp: number;
4119
+ type: "stream.chat.deleted";
4120
+ body: {
4121
+ streamId: string;
4122
+ sessionId: string;
4123
+ messageId: string;
4124
+ };
4125
+ }
4126
+
4127
+ interface WSStreamChatUpdated {
4128
+ timestamp: number;
4129
+ type: "stream.chat.updated";
4130
+ body: {
4131
+ streamId: string;
4132
+ sessionId: string;
4133
+ message: StreamChatMessage;
4134
+ };
4135
+ }
4136
+
4137
+ interface WSStreamConnected {
4138
+ timestamp: number;
4139
+ type: "stream.connected";
4140
+ body: {
4141
+ streamId: string;
4142
+ sessionId: string;
4143
+ };
4144
+ }
4145
+
4146
+ interface WSStreamDisconnected {
4147
+ timestamp: number;
4148
+ type: "stream.disconnected";
4149
+ body: {};
4150
+ }
4151
+
4152
+ interface WSPulseMessage {
4153
+ timestamp?: number;
4154
+ type: "pulse";
4155
+ }
4156
+
4157
+ interface StreamConnectMessage {
4158
+ type: "stream.connect";
4159
+ streamId: string;
4160
+ }
4161
+ interface StreamDisconnectMessage {
4162
+ type: "stream.disconnect";
4163
+ }
4164
+ interface HeartbeatMessage {
4165
+ type: "heartbeat";
4166
+ }
4167
+ type SendWSMessage = StreamConnectMessage | StreamDisconnectMessage | HeartbeatMessage;
4168
+ type ReceivedWSMessage = WSNewChatMessage | WSThreadMessageCreated | WSThreadMessageUpdated | WSThreadMessageDeleted | WSStreamChatCreated | WSStreamChatDeleted | WSStreamChatUpdated | WSStreamConnected | WSStreamDisconnected | WSPulseMessage;
3980
4169
 
3981
4170
  interface ConnectedXMClientContextState {
3982
4171
  queryClient: QueryClient;
3983
4172
  organizationId: string;
3984
4173
  apiUrl: "https://client-api.connected.dev" | "https://staging-client-api.connected.dev" | "http://localhost:4001";
3985
- websocketUrl: "wss://websocket.connected.dev" | "wss://staging-websocket.connected.dev" | "http://0.0.0.0:3005";
4174
+ websocketUrl: "wss://websocket.connected.dev" | "wss://staging-websocket.connected.dev" | "ws://0.0.0.0:3005";
3986
4175
  authenticated: boolean;
3987
4176
  getToken: () => Promise<string | undefined>;
3988
4177
  getExecuteAs?: () => Promise<string | undefined> | string | undefined;
@@ -4250,127 +4439,6 @@ interface GetBenefitsProps extends InfiniteQueryParams {
4250
4439
  declare const GetBenefits: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetBenefitsProps) => Promise<ConnectedXMResponse<Benefit[]>>;
4251
4440
  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
4441
 
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
4442
  declare const CHANNEL_COLLECTION_QUERY_KEY: (channelId: string, collectionId: string) => QueryKey;
4375
4443
  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
4444
  interface GetChannelCollectionParams extends SingleQueryParams {
@@ -4716,16 +4784,328 @@ interface GetEventMediaItemProps extends SingleQueryParams {
4716
4784
  declare const GetEventMediaItem: ({ eventId, mediaItemId, passId, clientApiParams, }: GetEventMediaItemProps) => Promise<ConnectedXMResponse<EventMediaItem>>;
4717
4785
  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
4786
 
4719
- declare const MEETING_QUERY_KEY: (meetingId: string) => QueryKey;
4720
- declare const SET_MEETING_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeeting>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
4721
- interface GetMeetingProps extends SingleQueryParams {
4722
- meetingId: string;
4787
+ declare const GROUPS_QUERY_KEY: (access?: "public" | "private") => QueryKey;
4788
+ declare const SET_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroups>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
4789
+ interface GetGroupsProps extends InfiniteQueryParams {
4790
+ access?: "public" | "private";
4723
4791
  }
4724
- declare const GetMeeting: ({ meetingId, clientApiParams, }: GetMeetingProps) => Promise<ConnectedXMResponse<Meeting>>;
4725
- declare const useGetMeeting: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeeting>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Meeting>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4792
+ declare const GetGroups: ({ pageParam, pageSize, orderBy, search, access, clientApiParams, }: GetGroupsProps) => Promise<ConnectedXMResponse<Group[]>>;
4793
+ 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
4794
 
4727
- declare const ORGANIZATION_QUERY_KEY: () => QueryKey;
4728
- interface GetOrganizationParams extends SingleQueryParams {
4795
+ declare const GROUP_QUERY_KEY: (groupId: string) => QueryKey;
4796
+ 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;
4797
+ interface GetGroupProps extends SingleQueryParams {
4798
+ groupId: string;
4799
+ }
4800
+ declare const GetGroup: ({ groupId, clientApiParams, }: GetGroupProps) => Promise<ConnectedXMResponse<Group>>;
4801
+ declare const useGetGroup: (groupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4802
+
4803
+ declare const GROUP_ACTIVITIES_QUERY_KEY: (groupId: string, featured?: boolean) => QueryKey;
4804
+ 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;
4805
+ interface GetGroupActivitiesProps extends InfiniteQueryParams {
4806
+ groupId: string;
4807
+ featured?: boolean;
4808
+ }
4809
+ declare const GetGroupActivities: ({ pageParam, pageSize, orderBy, search, groupId, featured, clientApiParams, }: GetGroupActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
4810
+ 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>>;
4811
+
4812
+ declare const GROUP_ANNOUNCEMENTS_QUERY_KEY: (groupId: string) => QueryKey;
4813
+ 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;
4814
+ interface GetGroupAnnouncementsProps extends InfiniteQueryParams {
4815
+ groupId: string;
4816
+ }
4817
+ declare const GetGroupAnnouncements: ({ groupId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupAnnouncementsProps) => Promise<ConnectedXMResponse<Announcement[]>>;
4818
+ 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>>;
4819
+
4820
+ declare const GROUP_MEDIA_QUERY_KEY: (groupId: string, type?: "images" | "videos") => QueryKey;
4821
+ 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;
4822
+ interface GetGroupMediaProps extends InfiniteQueryParams {
4823
+ groupId: string;
4824
+ type?: "images" | "videos";
4825
+ }
4826
+ declare const GetGroupMedia: ({ groupId, type, pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupMediaProps) => Promise<ConnectedXMResponse<Activity[]>>;
4827
+ 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>>;
4828
+
4829
+ declare const GROUP_EVENTS_QUERY_KEY: (groupId: string, past?: boolean) => QueryKey;
4830
+ 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;
4831
+ interface GetGroupEventsProps extends InfiniteQueryParams {
4832
+ groupId: string;
4833
+ past?: boolean;
4834
+ }
4835
+ declare const GetGroupEvents: ({ pageParam, pageSize, orderBy, search, groupId, past, clientApiParams, }: GetGroupEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
4836
+ 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>>;
4837
+
4838
+ declare const GROUP_MEMBERS_QUERY_KEY: (groupId: string, role?: keyof typeof GroupMembershipRole) => QueryKey;
4839
+ 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;
4840
+ interface GetGroupMembersProps extends InfiniteQueryParams {
4841
+ groupId: string;
4842
+ role?: keyof typeof GroupMembershipRole;
4843
+ }
4844
+ declare const GetGroupMembers: ({ pageParam, pageSize, orderBy, search, role, groupId, clientApiParams, }: GetGroupMembersProps) => Promise<ConnectedXMResponse<GroupMembership[]>>;
4845
+ 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>>;
4846
+
4847
+ declare const GROUP_SPONSORS_QUERY_KEY: (groupId: string) => QueryKey;
4848
+ 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;
4849
+ interface GetGroupSponsorsProps extends InfiniteQueryParams {
4850
+ groupId: string;
4851
+ }
4852
+ declare const GetGroupSponsors: ({ pageParam, pageSize, orderBy, search, groupId, clientApiParams, }: GetGroupSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
4853
+ 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>>;
4854
+
4855
+ declare const GROUP_REQUEST_QUERY_KEY: (groupId: string, requestId: string) => QueryKey;
4856
+ 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;
4857
+ interface GetGroupRequestProps extends SingleQueryParams {
4858
+ groupId: string;
4859
+ requestId: string;
4860
+ }
4861
+ declare const GetGroupRequest: ({ groupId, requestId, clientApiParams, }: GetGroupRequestProps) => Promise<ConnectedXMResponse<GroupRequest>>;
4862
+ declare const useGetGroupRequest: (groupId?: string, requestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupRequest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupRequest>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4863
+
4864
+ declare const GROUP_REQUESTS_QUERY_KEY: (groupId: string, status?: keyof typeof GroupRequestStatus) => QueryKey;
4865
+ 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;
4866
+ interface GetGroupRequestsProps extends InfiniteQueryParams {
4867
+ groupId: string;
4868
+ status?: keyof typeof GroupRequestStatus;
4869
+ }
4870
+ declare const GetGroupRequests: ({ pageParam, pageSize, orderBy, search, status, groupId, clientApiParams, }: GetGroupRequestsProps) => Promise<ConnectedXMResponse<GroupRequest[]>>;
4871
+ 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>>;
4872
+
4873
+ declare const GROUP_INVITABLE_ACCOUNTS_QUERY_KEY: (groupId: string) => QueryKey;
4874
+ interface GetGroupInvitableAccountsProps extends InfiniteQueryParams {
4875
+ groupId: string;
4876
+ }
4877
+ declare const GetGroupInvitableAccounts: ({ pageParam, pageSize, orderBy, search, groupId, clientApiParams, }: GetGroupInvitableAccountsProps) => Promise<ConnectedXMResponse<InvitableAccount[]>>;
4878
+ 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>>;
4879
+
4880
+ declare const GROUP_INVITATIONS_QUERY_KEY: (groupId: string, status?: keyof typeof GroupInvitationStatus) => QueryKey;
4881
+ 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;
4882
+ interface GetGroupInvitationsProps extends InfiniteQueryParams {
4883
+ groupId: string;
4884
+ status?: keyof typeof GroupInvitationStatus;
4885
+ }
4886
+ declare const GetGroupInvitations: ({ pageParam, pageSize, orderBy, search, status, groupId, clientApiParams, }: GetGroupInvitationsProps) => Promise<ConnectedXMResponse<GroupInvitation[]>>;
4887
+ 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>>;
4888
+
4889
+ declare const GROUPS_FEATURED_QUERY_KEY: () => QueryKey;
4890
+ interface GetGroupsFeaturedProps extends InfiniteQueryParams {
4891
+ }
4892
+ declare const GetGroupsFeatured: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupsFeaturedProps) => Promise<ConnectedXMResponse<Group[]>>;
4893
+ 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>>;
4894
+
4895
+ declare const GROUPS_INVITED_QUERY_KEY: (rejected?: boolean) => QueryKey;
4896
+ interface GetGroupsInvitedProps extends InfiniteQueryParams {
4897
+ rejected?: boolean;
4898
+ }
4899
+ declare const GetGroupsInvited: ({ rejected, pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupsInvitedProps) => Promise<ConnectedXMResponse<Group[]>>;
4900
+ 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>>;
4901
+
4902
+ declare const GROUPS_REQUESTED_QUERY_KEY: () => QueryKey;
4903
+ interface GetGroupsRequestedProps extends InfiniteQueryParams {
4904
+ }
4905
+ declare const GetGroupsRequested: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupsRequestedProps) => Promise<ConnectedXMResponse<Group[]>>;
4906
+ 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>>;
4907
+
4908
+ declare const INTEGRATION_QUERY_KEY: (integrationId: string) => QueryKey;
4909
+ 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;
4910
+ interface GetIntegrationProps extends SingleQueryParams {
4911
+ integrationId: string;
4912
+ }
4913
+ declare const GetIntegration: ({ integrationId, clientApiParams, }: GetIntegrationProps) => Promise<ConnectedXMResponse<Integration>>;
4914
+ declare const useGetIntegration: (integrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetIntegration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Integration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4915
+
4916
+ declare const INTEGRATIONS_QUERY_KEY: () => QueryKey;
4917
+ declare const SET_INTEGRATIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTEGRATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetIntegrations>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
4918
+ interface GetIntegrationsProps extends InfiniteQueryParams {
4919
+ }
4920
+ declare const GetIntegrations: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetIntegrationsProps) => Promise<ConnectedXMResponse<Integration[]>>;
4921
+ 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>>;
4922
+
4923
+ interface IntegrationAuth {
4924
+ token: string;
4925
+ expiration?: string;
4926
+ details: IntegrationDetails;
4927
+ }
4928
+ declare const INTEGRATION_AUTH_QUERY_KEY: (integrationType: keyof typeof IntegrationType) => QueryKey;
4929
+ 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;
4930
+ interface GetIntegrationAuthProps extends SingleQueryParams {
4931
+ integrationType: keyof typeof IntegrationType;
4932
+ }
4933
+ declare const GetIntegrationAuth: ({ integrationType, clientApiParams, }: GetIntegrationAuthProps) => Promise<ConnectedXMResponse<IntegrationAuth>>;
4934
+ 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>>;
4935
+
4936
+ declare const INTERESTS_QUERY_KEY: () => QueryKey;
4937
+ declare const SET_INTERESTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTERESTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetInterests>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
4938
+ interface GetInterestsProps extends InfiniteQueryParams {
4939
+ }
4940
+ declare const GetInterests: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetInterestsProps) => Promise<ConnectedXMResponse<Interest[]>>;
4941
+ 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>>;
4942
+
4943
+ declare const INTEREST_QUERY_KEY: (interest: string) => QueryKey;
4944
+ interface GetInterestProps extends SingleQueryParams {
4945
+ interest: string;
4946
+ }
4947
+ declare const GetInterest: ({ interest, clientApiParams, }: GetInterestProps) => Promise<ConnectedXMResponse<Interest>>;
4948
+ declare const useGetInterest: (interest?: string, options?: SingleQueryOptions<ReturnType<typeof GetInterest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Interest>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4949
+
4950
+ declare const INTEREST_ACTIVITIES_QUERY_KEY: (interest: string) => QueryKey;
4951
+ interface GetInterestActivitiesProps extends InfiniteQueryParams {
4952
+ interest: string;
4953
+ }
4954
+ declare const GetInterestActivities: ({ interest, pageParam, pageSize, orderBy, search, clientApiParams, }: GetInterestActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
4955
+ 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>>;
4956
+
4957
+ declare const INVOICE_QUERY_KEY: (invoiceId: string) => QueryKey;
4958
+ declare const SET_INVOICE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INVOICE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetInvoice>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
4959
+ interface GetInvoiceProps extends SingleQueryParams {
4960
+ invoiceId: string;
4961
+ }
4962
+ declare const GetInvoice: ({ invoiceId, clientApiParams, }: GetInvoiceProps) => Promise<ConnectedXMResponse<Invoice>>;
4963
+ declare const useGetInvoice: (invoiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Invoice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4964
+
4965
+ declare const INVOICES_QUERY_KEY: () => QueryKey;
4966
+ interface GetInvoicesProps extends InfiniteQueryParams {
4967
+ }
4968
+ declare const GetInvoices: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetInvoicesProps) => Promise<ConnectedXMResponse<Invoice[]>>;
4969
+ 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>>;
4970
+
4971
+ declare const SELF_INVOICE_INTENT_QUERY_KEY: (invoiceId: string, addressId: string) => unknown[];
4972
+ interface GetInvoiceIntentProps extends SingleQueryParams {
4973
+ invoiceId: string;
4974
+ addressId: string;
4975
+ }
4976
+ declare const GetInvoiceIntent: ({ invoiceId, addressId, clientApiParams, }: GetInvoiceIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
4977
+ declare const useGetInvoiceIntent: (invoiceId?: string, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoiceIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4978
+
4979
+ declare const LINK_PREVIEW_QUERY_KEY: (url: string) => QueryKey;
4980
+ 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;
4981
+ interface GetLinkPreviewProps extends SingleQueryParams {
4982
+ url: string;
4983
+ }
4984
+ declare const GetLinkPreview: ({ url, clientApiParams, }: GetLinkPreviewProps) => Promise<ConnectedXMResponse<LinkPreview | null>>;
4985
+ declare const useGetLinkPreview: (url?: string, options?: SingleQueryOptions<ReturnType<typeof GetLinkPreview>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<LinkPreview | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4986
+
4987
+ declare const LISTING_QUERY_KEY: (eventId: string) => QueryKey;
4988
+ declare const SET_LISTING_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LISTING_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListing>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
4989
+ interface GetSelfEventListingProps extends SingleQueryParams {
4990
+ eventId: string;
4991
+ }
4992
+ declare const GetSelfEventListing: ({ eventId, clientApiParams, }: GetSelfEventListingProps) => Promise<ConnectedXMResponse<EventListing>>;
4993
+ declare const useGetSelfEventListing: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListing>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4994
+
4995
+ declare const LISTING_ANNOUNCEMENT_QUERY_KEY: (eventId: string, announcementId: string) => QueryKey;
4996
+ 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;
4997
+ interface GetSelfEventListingAnnouncementProps extends SingleQueryParams {
4998
+ eventId: string;
4999
+ announcementId: string;
5000
+ }
5001
+ declare const GetSelfEventListingAnnouncement: ({ eventId, announcementId, clientApiParams, }: GetSelfEventListingAnnouncementProps) => Promise<ConnectedXMResponse<Announcement>>;
5002
+ declare const useGetSelfEventListingAnnouncement: (eventId?: string, announcementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingAnnouncement>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5003
+
5004
+ declare const LISTING_ANNOUNCEMENTS_QUERY_KEY: (eventId: string) => unknown[];
5005
+ interface GetSelfEventListingAnnouncementsProps extends InfiniteQueryParams {
5006
+ eventId: string;
5007
+ }
5008
+ declare const GetSelfEventListingAnnouncements: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingAnnouncementsProps) => Promise<ConnectedXMResponse<Announcement[]>>;
5009
+ 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>>;
5010
+
5011
+ declare const LISTING_EMAIL_QUERY_KEY: (eventId: string, type: EventEmailType) => QueryKey;
5012
+ 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;
5013
+ interface GetSelfEventListingEmailProps extends SingleQueryParams {
5014
+ eventId: string;
5015
+ type: EventEmailType;
5016
+ }
5017
+ declare const GetSelfEventListingEmail: ({ eventId, type, clientApiParams, }: GetSelfEventListingEmailProps) => Promise<ConnectedXMResponse<EventEmail | null>>;
5018
+ 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>>;
5019
+
5020
+ declare const LISTING_QUESTIONS_QUERY_KEY: (eventId: string) => unknown[];
5021
+ interface GetSelfEventListingQuestionsProps extends InfiniteQueryParams {
5022
+ eventId: string;
5023
+ }
5024
+ declare const GetSelfEventListingQuestions: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingQuestionsProps) => Promise<ConnectedXMResponse<RegistrationQuestion[]>>;
5025
+ 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>>;
5026
+
5027
+ declare const LISTING_ATTENDEE_QUERY_KEY: (eventId: string, accountId: string) => QueryKey;
5028
+ 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;
5029
+ interface GetSelfEventListingRegistrationProps extends SingleQueryParams {
5030
+ eventId: string;
5031
+ accountId: string;
5032
+ }
5033
+ declare const GetSelfEventListingRegistration: ({ eventId, accountId, clientApiParams, }: GetSelfEventListingRegistrationProps) => Promise<ConnectedXMResponse<ListingRegistration>>;
5034
+ declare const useGetSelfEventListingRegistration: (eventId?: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ListingRegistration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5035
+
5036
+ declare const LISTING_ATTENDEES_QUERY_KEY: (eventId: string, status?: keyof typeof PurchaseStatus) => unknown[];
5037
+ interface GetSelfEventListingAttendeesProps extends InfiniteQueryParams {
5038
+ eventId: string;
5039
+ status?: keyof typeof PurchaseStatus;
5040
+ }
5041
+ declare const GetSelfEventListingAttendees: ({ eventId, pageParam, pageSize, orderBy, search, status, clientApiParams, }: GetSelfEventListingAttendeesProps) => Promise<ConnectedXMResponse<ListingRegistration[]>>;
5042
+ 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>>;
5043
+
5044
+ declare const LISTING_PASS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
5045
+ 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;
5046
+ interface GetSelfEventListingPassProps extends SingleQueryParams {
5047
+ eventId: string;
5048
+ passId: string;
5049
+ }
5050
+ declare const GetSelfEventListingPass: ({ eventId, passId, clientApiParams, }: GetSelfEventListingPassProps) => Promise<ConnectedXMResponse<ListingPass>>;
5051
+ declare const useGetSelfEventListingPass: (eventId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingPass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ListingPass>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5052
+
5053
+ declare const LISTING_PASSES_QUERY_KEY: (eventId: string, checkedIn?: boolean) => unknown[];
5054
+ interface GetSelfEventListingPassesProps extends InfiniteQueryParams {
5055
+ eventId: string;
5056
+ checkedIn?: boolean;
5057
+ }
5058
+ declare const GetSelfEventListingPasses: ({ eventId, checkedIn, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingPassesProps) => Promise<ConnectedXMResponse<ListingPass[]>>;
5059
+ 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>>;
5060
+
5061
+ declare const LISTINGS_QUERY_KEY: (past: boolean) => QueryKey;
5062
+ interface GetSelfEventListingsProps extends InfiniteQueryParams {
5063
+ past?: boolean;
5064
+ }
5065
+ declare const GetSelfEventListings: ({ pageParam, pageSize, orderBy, search, past, clientApiParams, }: GetSelfEventListingsProps) => Promise<ConnectedXMResponse<EventListing[]>>;
5066
+ 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>>;
5067
+
5068
+ declare const LISTING_CO_HOSTS_QUERY_KEY: (eventId: string) => QueryKey;
5069
+ interface GetSelfEventListingCoHostsProps extends InfiniteQueryParams {
5070
+ eventId: string;
5071
+ }
5072
+ declare const GetSelfEventListingCoHosts: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingCoHostsProps) => Promise<ConnectedXMResponse<Account[]>>;
5073
+ 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>>;
5074
+
5075
+ declare const LISTING_REPORT_QUERY_KEY: (eventId: string) => QueryKey;
5076
+ interface GetSelfEventListingReportProps extends SingleQueryParams {
5077
+ eventId: string;
5078
+ }
5079
+ declare const GetSelfEventListingReport: ({ eventId, clientApiParams, }: GetSelfEventListingReportProps) => Promise<ConnectedXMResponse<any>>;
5080
+ declare const useGetSelfEventListingReport: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingReport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<any>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5081
+
5082
+ declare const LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, accountId: string, passId: string) => QueryKey;
5083
+ 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;
5084
+ interface GetListingAttendeePassQuestionSectionsProps extends SingleQueryParams {
5085
+ eventId: string;
5086
+ accountId: string;
5087
+ passId: string;
5088
+ }
5089
+ declare const GetListingAttendeePassQuestionSections: ({ eventId, accountId, passId, clientApiParams, }: GetListingAttendeePassQuestionSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
5090
+ 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>>;
5091
+
5092
+ declare const LOGIN_QUERY_KEY: () => QueryKey;
5093
+ declare const SET_LOGINS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LOGIN_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLogin>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5094
+ interface GetLoginProps extends SingleQueryParams {
5095
+ }
5096
+ declare const GetLogin: ({ clientApiParams, }: GetLoginProps) => Promise<ConnectedXMResponse<Login>>;
5097
+ declare const useGetLogin: (options?: SingleQueryOptions<ReturnType<typeof GetLogin>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Login>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5098
+
5099
+ declare const MEETING_QUERY_KEY: (meetingId: string) => QueryKey;
5100
+ declare const SET_MEETING_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEETING_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMeeting>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5101
+ interface GetMeetingProps extends SingleQueryParams {
5102
+ meetingId: string;
5103
+ }
5104
+ declare const GetMeeting: ({ meetingId, clientApiParams, }: GetMeetingProps) => Promise<ConnectedXMResponse<Meeting>>;
5105
+ declare const useGetMeeting: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeeting>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Meeting>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5106
+
5107
+ declare const ORGANIZATION_QUERY_KEY: () => QueryKey;
5108
+ interface GetOrganizationParams extends SingleQueryParams {
4729
5109
  }
4730
5110
  declare const GetOrganization: ({ clientApiParams, }: GetOrganizationParams) => Promise<ConnectedXMResponse<Organization>>;
4731
5111
  declare const useGetOrganization: (options?: SingleQueryOptions<ReturnType<typeof GetOrganization>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Organization>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
@@ -4748,6 +5128,20 @@ interface GetOrganizationExploreProps extends SingleQueryParams {
4748
5128
  declare const GetOrganizationExplore: ({ clientApiParams, }: GetOrganizationExploreProps) => Promise<ConnectedXMResponse<Explore>>;
4749
5129
  declare const useGetOrganizationExplore: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationExplore>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Explore>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4750
5130
 
5131
+ declare const PAYMENT_QUERY_KEY: (paymentId: string) => QueryKey;
5132
+ declare const SET_PAYMENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof PAYMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetPayment>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5133
+ interface GetPaymentProps extends SingleQueryParams {
5134
+ paymentId: string;
5135
+ }
5136
+ declare const GetPayment: ({ paymentId, clientApiParams, }: GetPaymentProps) => Promise<ConnectedXMResponse<Payment>>;
5137
+ declare const useGetPayment: (paymentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPayment>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Payment>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5138
+
5139
+ declare const PAYMENTS_QUERY_KEY: () => QueryKey;
5140
+ interface GetPaymentsProps extends InfiniteQueryParams {
5141
+ }
5142
+ declare const GetPayments: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetPaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
5143
+ 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>>;
5144
+
4751
5145
  declare const SEARCH_LIST_QUERY_KEY: (searchListId: string) => string[];
4752
5146
  interface GetSearchListProps extends SingleQueryParams {
4753
5147
  searchListId: string;
@@ -5173,248 +5567,115 @@ interface GetSelfNotificationsProps extends InfiniteQueryParams {
5173
5567
  filters?: string;
5174
5568
  }
5175
5569
  declare const GetSelfNotifications: ({ pageParam, pageSize, orderBy, search, filters, clientApiParams, }: GetSelfNotificationsProps) => Promise<ConnectedXMResponse<Notification[]>>;
5176
- declare const useGetSelfNotifications: (filters?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfNotifications>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Notification[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5177
-
5178
- declare const SELF_PUSH_DEVICE_QUERY_KEY: (pushDeviceId: string) => QueryKey;
5179
- declare const SET_PUSH_DEVICE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_PUSH_DEVICE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfPushDevice>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5180
- interface GetSelfPushDeviceProps extends SingleQueryParams {
5181
- pushDeviceId: string;
5182
- }
5183
- declare const GetSelfPushDevice: ({ pushDeviceId, clientApiParams, }: GetSelfPushDeviceProps) => Promise<ConnectedXMResponse<PushDevice>>;
5184
- declare const useGetSelfPushDevice: (pushDeviceId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfPushDevice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PushDevice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5185
-
5186
- declare const SELF_PUSH_DEVICES_QUERY_KEY: () => QueryKey;
5187
- interface GetSelfPushDevicesProps extends InfiniteQueryParams {
5188
- }
5189
- declare const GetSelfPushDevices: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfPushDevicesProps) => Promise<ConnectedXMResponse<PushDevice[]>>;
5190
- declare const useGetSelfPushDevices: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfPushDevices>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<PushDevice[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5191
-
5192
- declare const SELF_GROUP_ACTIVITIES_QUERY_KEY: () => QueryKey;
5193
- interface GetSelfGroupActivitiesProps extends InfiniteQueryParams {
5194
- }
5195
- declare const GetSelfGroupActivities: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfGroupActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
5196
- declare const useGetSelfGroupActivities: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfGroupActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5197
-
5198
- declare const SELF_LOGINS_QUERY_KEY: () => QueryKey;
5199
- interface GetSelfLoginsProps extends InfiniteQueryParams {
5200
- }
5201
- declare const GetSelfLogins: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfLoginsProps) => Promise<ConnectedXMResponse<Login[]>>;
5202
- declare const useGetSelfLogins: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfLogins>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Login[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5203
-
5204
- interface UsernameAvailability {
5205
- available: boolean;
5206
- message: string;
5207
- }
5208
- declare const USERNAME_AVAILABILITY_QUERY_KEY: (username: string) => QueryKey;
5209
- declare const SET_USERNAME_AVAILABILITY_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof USERNAME_AVAILABILITY_QUERY_KEY>, response: Awaited<ReturnType<typeof GetUsernameAvailability>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5210
- interface GetUsernameAvailabilityProps extends SingleQueryParams {
5211
- username: string;
5212
- }
5213
- declare const GetUsernameAvailability: ({ username, clientApiParams, }: GetUsernameAvailabilityProps) => Promise<ConnectedXMResponse<UsernameAvailability>>;
5214
- declare const useGetUsernameAvailability: (username: string, options?: SingleQueryOptions<ReturnType<typeof GetUsernameAvailability>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<UsernameAvailability>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5215
-
5216
- declare const SERIES_QUERY_KEY: (seriesId: string) => QueryKey;
5217
- declare const SET_SERIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeries>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5218
- interface GetSeriesProps extends SingleQueryParams {
5219
- seriesId: string;
5220
- }
5221
- declare const GetSeries: ({ seriesId, clientApiParams, }: GetSeriesProps) => Promise<ConnectedXMResponse<Series>>;
5222
- declare const useGetSeries: (seriesId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeries>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Series>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5223
-
5224
- declare const SERIES_EVENTS_QUERY_KEY: (seriesId: string, past?: boolean) => QueryKey;
5225
- declare const SET_SERIES_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeriesEvents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5226
- interface GetSeriesEventsProps extends InfiniteQueryParams {
5227
- seriesId: string;
5228
- past?: boolean;
5229
- }
5230
- declare const GetSeriesEvents: ({ seriesId, pageParam, pageSize, orderBy, search, past, clientApiParams, }: GetSeriesEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
5231
- declare const useGetSeriesEvents: (seriesId?: string, past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesEvents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5232
-
5233
- declare const SERIES_LIST_QUERY_KEY: () => QueryKey;
5234
- declare const SET_SERIES_LIST_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_LIST_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeriesList>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5235
- interface GetSeriesListProps extends InfiniteQueryParams {
5236
- past?: boolean;
5237
- }
5238
- declare const GetSeriesList: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSeriesListProps) => Promise<ConnectedXMResponse<Series[]>>;
5239
- declare const useGetSeriesList: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesList>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Series[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5240
-
5241
- declare const LEVEL_QUERY_KEY: (levelId: string) => QueryKey;
5242
- declare const SET_LEVEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVEL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevel>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5243
- interface GetLevelProps extends SingleQueryParams {
5244
- levelId: string;
5245
- }
5246
- 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>>;
5570
+ declare const useGetSelfNotifications: (filters?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfNotifications>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Notification[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5309
5571
 
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;
5572
+ declare const SELF_PUSH_DEVICE_QUERY_KEY: (pushDeviceId: string) => QueryKey;
5573
+ declare const SET_PUSH_DEVICE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_PUSH_DEVICE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfPushDevice>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5574
+ interface GetSelfPushDeviceProps extends SingleQueryParams {
5575
+ pushDeviceId: string;
5315
5576
  }
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>>;
5577
+ declare const GetSelfPushDevice: ({ pushDeviceId, clientApiParams, }: GetSelfPushDeviceProps) => Promise<ConnectedXMResponse<PushDevice>>;
5578
+ declare const useGetSelfPushDevice: (pushDeviceId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfPushDevice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PushDevice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5318
5579
 
5319
- declare const LISTING_QUESTIONS_QUERY_KEY: (eventId: string) => unknown[];
5320
- interface GetSelfEventListingQuestionsProps extends InfiniteQueryParams {
5321
- eventId: string;
5580
+ declare const SELF_PUSH_DEVICES_QUERY_KEY: () => QueryKey;
5581
+ interface GetSelfPushDevicesProps extends InfiniteQueryParams {
5322
5582
  }
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>>;
5583
+ declare const GetSelfPushDevices: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfPushDevicesProps) => Promise<ConnectedXMResponse<PushDevice[]>>;
5584
+ declare const useGetSelfPushDevices: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfPushDevices>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<PushDevice[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5325
5585
 
5326
- declare const LISTING_ATTENDEE_QUERY_KEY: (eventId: string, accountId: string) => QueryKey;
5327
- 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;
5328
- interface GetSelfEventListingRegistrationProps extends SingleQueryParams {
5329
- eventId: string;
5330
- accountId: string;
5586
+ declare const SELF_GROUP_ACTIVITIES_QUERY_KEY: () => QueryKey;
5587
+ interface GetSelfGroupActivitiesProps extends InfiniteQueryParams {
5331
5588
  }
5332
- declare const GetSelfEventListingRegistration: ({ eventId, accountId, clientApiParams, }: GetSelfEventListingRegistrationProps) => Promise<ConnectedXMResponse<ListingRegistration>>;
5333
- declare const useGetSelfEventListingRegistration: (eventId?: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ListingRegistration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5589
+ declare const GetSelfGroupActivities: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfGroupActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
5590
+ declare const useGetSelfGroupActivities: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfGroupActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5334
5591
 
5335
- declare const LISTING_ATTENDEES_QUERY_KEY: (eventId: string, status?: keyof typeof PurchaseStatus) => unknown[];
5336
- interface GetSelfEventListingAttendeesProps extends InfiniteQueryParams {
5337
- eventId: string;
5338
- status?: keyof typeof PurchaseStatus;
5592
+ declare const SELF_LOGINS_QUERY_KEY: () => QueryKey;
5593
+ interface GetSelfLoginsProps extends InfiniteQueryParams {
5339
5594
  }
5340
- declare const GetSelfEventListingAttendees: ({ eventId, pageParam, pageSize, orderBy, search, status, clientApiParams, }: GetSelfEventListingAttendeesProps) => Promise<ConnectedXMResponse<ListingRegistration[]>>;
5341
- 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>>;
5595
+ declare const GetSelfLogins: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfLoginsProps) => Promise<ConnectedXMResponse<Login[]>>;
5596
+ declare const useGetSelfLogins: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfLogins>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Login[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5342
5597
 
5343
- declare const LISTING_PASS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
5344
- 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;
5345
- interface GetSelfEventListingPassProps extends SingleQueryParams {
5346
- eventId: string;
5347
- passId: string;
5598
+ interface UsernameAvailability {
5599
+ available: boolean;
5600
+ message: string;
5348
5601
  }
5349
- declare const GetSelfEventListingPass: ({ eventId, passId, clientApiParams, }: GetSelfEventListingPassProps) => Promise<ConnectedXMResponse<ListingPass>>;
5350
- declare const useGetSelfEventListingPass: (eventId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingPass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ListingPass>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5602
+ declare const USERNAME_AVAILABILITY_QUERY_KEY: (username: string) => QueryKey;
5603
+ declare const SET_USERNAME_AVAILABILITY_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof USERNAME_AVAILABILITY_QUERY_KEY>, response: Awaited<ReturnType<typeof GetUsernameAvailability>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5604
+ interface GetUsernameAvailabilityProps extends SingleQueryParams {
5605
+ username: string;
5606
+ }
5607
+ declare const GetUsernameAvailability: ({ username, clientApiParams, }: GetUsernameAvailabilityProps) => Promise<ConnectedXMResponse<UsernameAvailability>>;
5608
+ declare const useGetUsernameAvailability: (username: string, options?: SingleQueryOptions<ReturnType<typeof GetUsernameAvailability>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<UsernameAvailability>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5351
5609
 
5352
- declare const LISTING_PASSES_QUERY_KEY: (eventId: string, checkedIn?: boolean) => unknown[];
5353
- interface GetSelfEventListingPassesProps extends InfiniteQueryParams {
5354
- eventId: string;
5355
- checkedIn?: boolean;
5610
+ declare const SERIES_QUERY_KEY: (seriesId: string) => QueryKey;
5611
+ declare const SET_SERIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeries>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5612
+ interface GetSeriesProps extends SingleQueryParams {
5613
+ seriesId: string;
5356
5614
  }
5357
- declare const GetSelfEventListingPasses: ({ eventId, checkedIn, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingPassesProps) => Promise<ConnectedXMResponse<ListingPass[]>>;
5358
- 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>>;
5615
+ declare const GetSeries: ({ seriesId, clientApiParams, }: GetSeriesProps) => Promise<ConnectedXMResponse<Series>>;
5616
+ declare const useGetSeries: (seriesId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeries>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Series>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5359
5617
 
5360
- declare const LISTINGS_QUERY_KEY: (past: boolean) => QueryKey;
5361
- interface GetSelfEventListingsProps extends InfiniteQueryParams {
5618
+ declare const SERIES_EVENTS_QUERY_KEY: (seriesId: string, past?: boolean) => QueryKey;
5619
+ declare const SET_SERIES_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeriesEvents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5620
+ interface GetSeriesEventsProps extends InfiniteQueryParams {
5621
+ seriesId: string;
5362
5622
  past?: boolean;
5363
5623
  }
5364
- declare const GetSelfEventListings: ({ pageParam, pageSize, orderBy, search, past, clientApiParams, }: GetSelfEventListingsProps) => Promise<ConnectedXMResponse<EventListing[]>>;
5365
- 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>>;
5624
+ declare const GetSeriesEvents: ({ seriesId, pageParam, pageSize, orderBy, search, past, clientApiParams, }: GetSeriesEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
5625
+ declare const useGetSeriesEvents: (seriesId?: string, past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesEvents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5366
5626
 
5367
- declare const LISTING_CO_HOSTS_QUERY_KEY: (eventId: string) => QueryKey;
5368
- interface GetSelfEventListingCoHostsProps extends InfiniteQueryParams {
5369
- eventId: string;
5627
+ declare const SERIES_LIST_QUERY_KEY: () => QueryKey;
5628
+ declare const SET_SERIES_LIST_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_LIST_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeriesList>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5629
+ interface GetSeriesListProps extends InfiniteQueryParams {
5630
+ past?: boolean;
5370
5631
  }
5371
- declare const GetSelfEventListingCoHosts: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingCoHostsProps) => Promise<ConnectedXMResponse<Account[]>>;
5372
- 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>>;
5632
+ declare const GetSeriesList: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSeriesListProps) => Promise<ConnectedXMResponse<Series[]>>;
5633
+ declare const useGetSeriesList: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesList>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Series[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5373
5634
 
5374
- declare const LISTING_REPORT_QUERY_KEY: (eventId: string) => QueryKey;
5375
- interface GetSelfEventListingReportProps extends SingleQueryParams {
5376
- eventId: string;
5635
+ declare const LEVEL_QUERY_KEY: (levelId: string) => QueryKey;
5636
+ declare const SET_LEVEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVEL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevel>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5637
+ interface GetLevelProps extends SingleQueryParams {
5638
+ levelId: string;
5377
5639
  }
5378
- declare const GetSelfEventListingReport: ({ eventId, clientApiParams, }: GetSelfEventListingReportProps) => Promise<ConnectedXMResponse<any>>;
5379
- declare const useGetSelfEventListingReport: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingReport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<any>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5640
+ declare const GetLevel: ({ levelId, clientApiParams, }: GetLevelProps) => Promise<ConnectedXMResponse<SponsorshipLevel>>;
5641
+ declare const useGetLevel: (levelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLevel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SponsorshipLevel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5380
5642
 
5381
- declare const LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, accountId: string, passId: string) => QueryKey;
5382
- 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;
5383
- interface GetListingAttendeePassQuestionSectionsProps extends SingleQueryParams {
5384
- eventId: string;
5385
- accountId: string;
5386
- passId: string;
5643
+ declare const LEVELS_QUERY_KEY: () => QueryKey;
5644
+ declare const SET_LEVELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevels>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5645
+ interface GetLevelsProps extends InfiniteQueryParams {
5387
5646
  }
5388
- declare const GetListingAttendeePassQuestionSections: ({ eventId, accountId, passId, clientApiParams, }: GetListingAttendeePassQuestionSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
5389
- 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>>;
5647
+ declare const GetLevels: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetLevelsProps) => Promise<ConnectedXMResponse<SponsorshipLevel[]>>;
5648
+ 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>>;
5390
5649
 
5391
- declare const INTERESTS_QUERY_KEY: () => QueryKey;
5392
- declare const SET_INTERESTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTERESTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetInterests>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5393
- interface GetInterestsProps extends InfiniteQueryParams {
5650
+ declare const LEVEL_SPONSORS_QUERY_KEY: (levelId: string) => QueryKey;
5651
+ 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;
5652
+ interface GetLevelSponsorsProps extends InfiniteQueryParams {
5653
+ levelId: string;
5394
5654
  }
5395
- declare const GetInterests: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetInterestsProps) => Promise<ConnectedXMResponse<Interest[]>>;
5396
- 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>>;
5655
+ declare const GetLevelSponsors: ({ levelId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetLevelSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
5656
+ 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>>;
5397
5657
 
5398
- declare const INTEREST_QUERY_KEY: (interest: string) => QueryKey;
5399
- interface GetInterestProps extends SingleQueryParams {
5400
- interest: string;
5658
+ interface CursorQueryParams {
5659
+ clientApiParams: ClientApiParams;
5660
+ cursor: string | number | null;
5661
+ pageSize?: number;
5662
+ search?: string;
5663
+ locale?: string;
5664
+ queryClient?: QueryClient;
5401
5665
  }
5402
- declare const GetInterest: ({ interest, clientApiParams, }: GetInterestProps) => Promise<ConnectedXMResponse<Interest>>;
5403
- declare const useGetInterest: (interest?: string, options?: SingleQueryOptions<ReturnType<typeof GetInterest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Interest>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5404
-
5405
- declare const INTEREST_ACTIVITIES_QUERY_KEY: (interest: string) => QueryKey;
5406
- interface GetInterestActivitiesProps extends InfiniteQueryParams {
5407
- interest: string;
5666
+ interface CursorQueryOptions<TQueryData extends ConnectedXMResponse<any> = ConnectedXMResponse<unknown>> extends Omit<UseInfiniteQueryOptions<TQueryData, AxiosError<ConnectedXMResponse<null>>, InfiniteData<TQueryData, string | number | null>, QueryKey, string | number | null>, "queryKey" | "queryFn" | "getNextPageParam" | "initialPageParam"> {
5667
+ shouldRedirect?: boolean;
5408
5668
  }
5409
- declare const GetInterestActivities: ({ interest, pageParam, pageSize, orderBy, search, clientApiParams, }: GetInterestActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
5410
- 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>>;
5669
+ declare const useConnectedCursorQuery: <TQueryData extends ConnectedXMResponse<any> = ConnectedXMResponse<unknown>>(queryKeys: QueryKey, queryFn: (params: CursorQueryParams) => Promise<TQueryData>, params?: Omit<CursorQueryParams, "cursor" | "queryClient" | "clientApiParams">, options?: CursorQueryOptions<TQueryData>) => _tanstack_react_query.UseInfiniteQueryResult<InfiniteData<TQueryData, string | number | null>, AxiosError<ConnectedXMResponse<null>, any>>;
5411
5670
 
5412
- declare const LOGIN_QUERY_KEY: () => QueryKey;
5413
- declare const SET_LOGINS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LOGIN_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLogin>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
5414
- interface GetLoginProps extends SingleQueryParams {
5671
+ declare const STREAM_CHAT_MESSAGES_QUERY_KEY: (streamId: string, sessionId: string) => QueryKey;
5672
+ declare const SET_STREAM_CHAT_MESSAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof STREAM_CHAT_MESSAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetStreamChatMessages>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5673
+ interface GetStreamChatMessagesProps extends CursorQueryParams {
5674
+ streamId: string;
5675
+ sessionId: string;
5415
5676
  }
5416
- declare const GetLogin: ({ clientApiParams, }: GetLoginProps) => Promise<ConnectedXMResponse<Login>>;
5417
- declare const useGetLogin: (options?: SingleQueryOptions<ReturnType<typeof GetLogin>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Login>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5677
+ declare const GetStreamChatMessages: ({ streamId, sessionId, cursor, pageSize, clientApiParams, }: GetStreamChatMessagesProps) => Promise<ConnectedXMResponse<StreamChatMessage[]>>;
5678
+ declare const useGetStreamChatMessages: (streamId?: string, sessionId?: string, params?: Omit<CursorQueryParams, "cursor" | "queryClient" | "clientApiParams">, options?: CursorQueryOptions<Awaited<ReturnType<typeof GetStreamChatMessages>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<StreamChatMessage[]>, string | number | null>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5418
5679
 
5419
5680
  declare const THREADS_QUERY_KEY: () => QueryKey;
5420
5681
  declare const THREAD_CIRCLES_QUERY_KEY: () => QueryKey;
@@ -5459,19 +5720,6 @@ interface GetThreadProps extends SingleQueryParams {
5459
5720
  declare const GetThread: ({ threadId, clientApiParams, }: GetThreadProps) => Promise<ConnectedXMResponse<Thread>>;
5460
5721
  declare const useGetThread: (threadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThread>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5461
5722
 
5462
- interface CursorQueryParams {
5463
- clientApiParams: ClientApiParams;
5464
- cursor: string | number | null;
5465
- pageSize?: number;
5466
- search?: string;
5467
- locale?: string;
5468
- queryClient?: QueryClient;
5469
- }
5470
- interface CursorQueryOptions<TQueryData extends ConnectedXMResponse<any> = ConnectedXMResponse<unknown>> extends Omit<UseInfiniteQueryOptions<TQueryData, AxiosError<ConnectedXMResponse<null>>, InfiniteData<TQueryData, string | number | null>, QueryKey, string | number | null>, "queryKey" | "queryFn" | "getNextPageParam" | "initialPageParam"> {
5471
- shouldRedirect?: boolean;
5472
- }
5473
- declare const useConnectedCursorQuery: <TQueryData extends ConnectedXMResponse<any> = ConnectedXMResponse<unknown>>(queryKeys: QueryKey, queryFn: (params: CursorQueryParams) => Promise<TQueryData>, params?: Omit<CursorQueryParams, "cursor" | "queryClient" | "clientApiParams">, options?: CursorQueryOptions<TQueryData>) => _tanstack_react_query.UseInfiniteQueryResult<InfiniteData<TQueryData, string | number | null>, AxiosError<ConnectedXMResponse<null>, any>>;
5474
-
5475
5723
  declare const THREAD_MESSAGES_QUERY_KEY: (threadId: string) => QueryKey;
5476
5724
  declare const SET_THREAD_MESSAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_MESSAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreadMessages>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
5477
5725
  interface GetThreadMessagesProps extends CursorQueryParams {
@@ -5490,34 +5738,6 @@ interface GetThreadMessageProps {
5490
5738
  declare const GetThreadMessage: ({ threadId, messageId, clientApiParams, }: GetThreadMessageProps) => Promise<ConnectedXMResponse<ThreadMessage>>;
5491
5739
  declare const useGetThreadMessage: (threadId: string, messageId: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadMessage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ThreadMessage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5492
5740
 
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
5741
  declare const SURVEY_QUERY_KEY: (surveyId: string) => QueryKey;
5522
5742
  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
5743
  interface GetSurveyProps extends SingleQueryParams {
@@ -5552,14 +5772,6 @@ interface GetSurveySubmissionSectionsProps extends SingleQueryParams {
5552
5772
  declare const GetSurveySubmissionSections: ({ surveyId, submissionId, clientApiParams, }: GetSurveySubmissionSectionsProps) => Promise<ConnectedXMResponse<SurveySection[]>>;
5553
5773
  declare const useGetSurveySubmissionSections: (surveyId: string, submissionId: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySubmissionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveySection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5554
5774
 
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
5775
  declare const VIDEO_QUERY_KEY: (videoId: string) => QueryKey;
5564
5776
  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
5777
  interface GetVideoProps extends SingleQueryParams {
@@ -5576,18 +5788,101 @@ interface GetImageProps extends SingleQueryParams {
5576
5788
  declare const GetImage: ({ imageId, clientApiParams, }: GetImageProps) => Promise<ConnectedXMResponse<Image>>;
5577
5789
  declare const useGetImage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Image>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5578
5790
 
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;
5791
+ /**
5792
+ * @category Keys
5793
+ * @group Support Tickets
5794
+ */
5795
+ declare const SUPPORT_TICKET_QUERY_KEY: (supportTicketId: string) => string[];
5796
+ /**
5797
+ * @category Setters
5798
+ * @group Support Tickets
5799
+ */
5800
+ 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;
5801
+ interface GetSupportTicketProps extends SingleQueryParams {
5802
+ supportTicketId: string;
5583
5803
  }
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>>;
5804
+ /**
5805
+ * @category Queries
5806
+ * @group Support Tickets
5807
+ */
5808
+ declare const GetSupportTicket: ({ supportTicketId, clientApiParams, }: GetSupportTicketProps) => Promise<ConnectedXMResponse<SupportTicket>>;
5809
+ /**
5810
+ * @category Hooks
5811
+ * @group Support Tickets
5812
+ */
5813
+ declare const useGetSupportTicket: (supportTicketId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSupportTicket>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SupportTicket>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5586
5814
 
5587
- declare const PAYMENTS_QUERY_KEY: () => QueryKey;
5588
- interface GetPaymentsProps extends InfiniteQueryParams {
5815
+ /**
5816
+ * @category Keys
5817
+ * @group Support Tickets
5818
+ */
5819
+ declare const SUPPORT_TICKETS_QUERY_KEY: (type?: string, state?: string) => QueryKey;
5820
+ /**
5821
+ * @category Setters
5822
+ * @group Support Tickets
5823
+ */
5824
+ 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;
5825
+ interface GetSupportTicketsProps extends InfiniteQueryParams {
5826
+ type?: string;
5827
+ state?: string;
5589
5828
  }
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>>;
5829
+ /**
5830
+ * @category Queries
5831
+ * @group Support Tickets
5832
+ */
5833
+ declare const GetSupportTickets: ({ pageParam, pageSize, orderBy, search, type, state, clientApiParams, }: GetSupportTicketsProps) => Promise<ConnectedXMResponse<SupportTicket[]>>;
5834
+ /**
5835
+ * @category Hooks
5836
+ * @group Support Tickets
5837
+ */
5838
+ 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>>;
5839
+
5840
+ /**
5841
+ * @category Keys
5842
+ * @group Support Tickets
5843
+ */
5844
+ declare const SUPPORT_TICKET_MESSAGES_QUERY_KEY: (supportTicketId: string) => string[];
5845
+ /**
5846
+ * @category Setters
5847
+ * @group Support Tickets
5848
+ */
5849
+ 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;
5850
+ interface GetSupportTicketMessagesProps extends InfiniteQueryParams {
5851
+ supportTicketId: string;
5852
+ }
5853
+ /**
5854
+ * @category Queries
5855
+ * @group Support Tickets
5856
+ */
5857
+ declare const GetSupportTicketMessages: ({ supportTicketId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSupportTicketMessagesProps) => Promise<ConnectedXMResponse<SupportTicketMessage[]>>;
5858
+ /**
5859
+ * @category Hooks
5860
+ * @group Support Tickets
5861
+ */
5862
+ 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>>;
5863
+
5864
+ /**
5865
+ * @category Keys
5866
+ * @group Support Tickets
5867
+ */
5868
+ declare const SUPPORT_TICKET_ACTIVITY_LOG_QUERY_KEY: (supportTicketId: string) => string[];
5869
+ /**
5870
+ * @category Setters
5871
+ * @group Support Tickets
5872
+ */
5873
+ 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;
5874
+ interface GetSupportTicketActivityLogProps extends InfiniteQueryParams {
5875
+ supportTicketId: string;
5876
+ }
5877
+ /**
5878
+ * @category Queries
5879
+ * @group Support Tickets
5880
+ */
5881
+ declare const GetSupportTicketActivityLog: ({ supportTicketId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSupportTicketActivityLogProps) => Promise<ConnectedXMResponse<SupportTicketActivityLog[]>>;
5882
+ /**
5883
+ * @category Hooks
5884
+ * @group Support Tickets
5885
+ */
5886
+ 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>>;
5592
5887
 
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 };
5888
+ 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, CreateStreamChatMessage, type CreateStreamChatMessageParams, 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, DeleteStreamChatMessage, type DeleteStreamChatMessageParams, 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, GetStreamChatMessages, type GetStreamChatMessagesProps, 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_STREAM_CHAT_MESSAGES_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, STREAM_CHAT_MESSAGES_QUERY_KEY, 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 StreamChatMessage, 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, UpdateStreamChatMessage, type UpdateStreamChatMessageParams, 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, useCreateStreamChatMessage, useCreateSupportTicket, useCreateSupportTicketMessage, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteStreamChatMessage, 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, useGetStreamChatMessages, 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, useUpdateStreamChatMessage, useUpdateSurveyResponse, useUpdateSurveySearchListResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage, useVerifyLoginAccount };