@connectedxm/client 6.1.4 → 6.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.d.ts +72 -49
  2. package/dist/index.js +188 -145
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -432,6 +432,7 @@ interface BaseRegistrationQuestion {
432
432
  label: string | null;
433
433
  placeholder: string | null;
434
434
  default: string | null;
435
+ searchListId: string | null;
435
436
  span: number;
436
437
  mutable: boolean;
437
438
  min: string | null;
@@ -458,11 +459,24 @@ interface BaseRegistrationQuestionChoice {
458
459
  }
459
460
  interface RegistrationQuestionChoice extends BaseRegistrationQuestionChoice {
460
461
  }
461
- interface BaseRegistrationQuestionSearchValue {
462
+ interface BaseSearchListValue {
462
463
  id: string;
463
464
  value: string;
465
+ top: boolean;
464
466
  }
465
- interface RegistrationQuestionSearchValue extends BaseRegistrationQuestionSearchValue {
467
+ interface SearchListValue extends BaseSearchListValue {
468
+ createdAt: string;
469
+ updatedAt: string;
470
+ }
471
+ interface BaseSearchList {
472
+ id: string;
473
+ name: string;
474
+ values: BaseSearchListValue[];
475
+ }
476
+ interface SearchList extends BaseSearchList {
477
+ values: SearchListValue[];
478
+ createdAt: string;
479
+ updatedAt: string;
466
480
  }
467
481
  interface BaseRegistrationQuestionResponse {
468
482
  questionId: string;
@@ -902,6 +916,7 @@ interface BaseEventSessionQuestion {
902
916
  label: string | null;
903
917
  placeholder: string | null;
904
918
  default: string | null;
919
+ searchListId: string | null;
905
920
  mutable: boolean;
906
921
  min: string | null;
907
922
  max: string | null;
@@ -934,12 +949,6 @@ interface BaseEventSessionQuestionResponse {
934
949
  }
935
950
  interface EventSessionQuestionResponse extends BaseEventSessionQuestionResponse {
936
951
  }
937
- interface BaseEventSessionQuestionSearchValue {
938
- id: string;
939
- value: string;
940
- }
941
- interface EventSessionQuestionSearchValue extends BaseEventSessionQuestionSearchValue {
942
- }
943
952
  interface BaseEventPage {
944
953
  id: string;
945
954
  slug: string;
@@ -1370,10 +1379,6 @@ interface NotificationPreferences {
1370
1379
  groupRequestAcceptedEmail: boolean;
1371
1380
  groupRequestAcceptedPush: boolean;
1372
1381
  }
1373
- declare enum PushDeviceAppType {
1374
- EVENTXM = "EVENTXM",
1375
- COMMUNITYXM = "COMMUNITYXM"
1376
- }
1377
1382
  declare enum PushService {
1378
1383
  apn = "apn",
1379
1384
  firebase = "firebase",
@@ -1383,13 +1388,10 @@ declare enum PushService {
1383
1388
  interface PushDevice {
1384
1389
  id: string;
1385
1390
  deviceToken: string | null;
1386
- accountId: string | null;
1387
- account: BaseAccount | null;
1388
1391
  name: string | null;
1389
1392
  model: string | null;
1390
1393
  brand: string | null;
1391
1394
  manufacturer: string | null;
1392
- appType: PushDeviceAppType;
1393
1395
  pushService: PushService;
1394
1396
  createdAt: string;
1395
1397
  }
@@ -2267,6 +2269,7 @@ interface BaseSurveyQuestion {
2267
2269
  label: string | null;
2268
2270
  placeholder: string | null;
2269
2271
  default: string | null;
2272
+ searchListId: string | null;
2270
2273
  mutable: boolean;
2271
2274
  min: string | null;
2272
2275
  max: string | null;
@@ -2304,12 +2307,6 @@ interface BaseSurveySubmission {
2304
2307
  }
2305
2308
  interface SurveySubmission extends BaseSurveySubmission {
2306
2309
  }
2307
- interface BaseSurveyQuestionSearchValue {
2308
- id: string;
2309
- value: string;
2310
- }
2311
- interface SurveyQuestionSearchValue extends BaseSurveyQuestionSearchValue {
2312
- }
2313
2310
  interface BaseEventMediaItem {
2314
2311
  id: string;
2315
2312
  name: string;
@@ -3003,6 +3000,15 @@ interface UpdateSelfEventRegistrationResponsesParams extends MutationParams {
3003
3000
  declare const UpdateSelfEventRegistrationResponses: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationResponsesParams) => Promise<ConnectedXMResponse<null>>;
3004
3001
  declare const useUpdateSelfEventRegistrationResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponses>>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3005
3002
 
3003
+ interface UpdateSelfEventRegistrationSearchListResponseParams extends MutationParams {
3004
+ eventId: string;
3005
+ passId: string;
3006
+ questionId: string;
3007
+ searchListValueId: string;
3008
+ }
3009
+ declare const UpdateSelfEventRegistrationSearchListResponse: ({ eventId, passId, questionId, searchListValueId, clientApiParams, queryClient, }: UpdateSelfEventRegistrationSearchListResponseParams) => Promise<ConnectedXMResponse<null>>;
3010
+ declare const useUpdateSelfEventRegistrationSearchListResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationSearchListResponse>>, Omit<UpdateSelfEventRegistrationSearchListResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationSearchListResponseParams, "queryClient" | "clientApiParams">, unknown>;
3011
+
3006
3012
  interface UpdateSelfEventSessionRegistrationPassResponseParams extends MutationParams {
3007
3013
  eventId: string;
3008
3014
  sessionId: string;
@@ -3037,6 +3043,16 @@ interface UpdateSelfEventSessionRegistrationResponsesParams extends MutationPara
3037
3043
  declare const UpdateSelfEventSessionRegistrationResponses: ({ eventId, sessionId, accesses, clientApiParams, queryClient, }: UpdateSelfEventSessionRegistrationResponsesParams) => Promise<ConnectedXMResponse<null>>;
3038
3044
  declare const useUpdateSelfEventSessionRegistrationResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventSessionRegistrationResponses>>, Omit<UpdateSelfEventSessionRegistrationResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventSessionRegistrationResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3039
3045
 
3046
+ interface UpdateSelfEventSessionRegistrationSearchListResponseParams extends MutationParams {
3047
+ eventId: string;
3048
+ sessionId: string;
3049
+ passId: string;
3050
+ questionId: string;
3051
+ searchListValueId: string;
3052
+ }
3053
+ declare const UpdateSelfEventSessionRegistrationSearchListResponse: ({ eventId, sessionId, passId, questionId, searchListValueId, clientApiParams, queryClient, }: UpdateSelfEventSessionRegistrationSearchListResponseParams) => Promise<ConnectedXMResponse<null>>;
3054
+ declare const useUpdateSelfEventSessionRegistrationSearchListResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventSessionRegistrationSearchListResponse>>, Omit<UpdateSelfEventSessionRegistrationSearchListResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventSessionRegistrationSearchListResponseParams, "queryClient" | "clientApiParams">, unknown>;
3055
+
3040
3056
  interface UpdateSelfEventAttendeePassResponsesParams extends MutationParams {
3041
3057
  eventId: string;
3042
3058
  passId: string;
@@ -3827,6 +3843,15 @@ interface UpdateSurveyResponseParams extends MutationParams {
3827
3843
  declare const UpdateSurveyResponse: ({ surveyId, submissionId, questionId, response, clientApiParams, }: UpdateSurveyResponseParams) => Promise<ConnectedXMResponse<null>>;
3828
3844
  declare const useUpdateSurveyResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSurveyResponse>>, Omit<UpdateSurveyResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSurveyResponseParams, "queryClient" | "clientApiParams">, unknown>;
3829
3845
 
3846
+ interface UpdateSurveySearchListResponseParams extends MutationParams {
3847
+ surveyId: string;
3848
+ submissionId: string;
3849
+ questionId: string;
3850
+ searchListValueId: string;
3851
+ }
3852
+ declare const UpdateSurveySearchListResponse: ({ surveyId, submissionId, questionId, searchListValueId, clientApiParams, }: UpdateSurveySearchListResponseParams) => Promise<ConnectedXMResponse<null>>;
3853
+ declare const useUpdateSurveySearchListResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSurveySearchListResponse>>, Omit<UpdateSurveySearchListResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSurveySearchListResponseParams, "queryClient" | "clientApiParams">, unknown>;
3854
+
3830
3855
  interface InterestCreateParams {
3831
3856
  name: string;
3832
3857
  }
@@ -4467,14 +4492,6 @@ interface GetEventPagesProps extends InfiniteQueryParams {
4467
4492
  declare const GetEventPages: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventPagesProps) => Promise<ConnectedXMResponse<BaseEventPage[]>>;
4468
4493
  declare const useGetEventPages: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPages>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BaseEventPage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4469
4494
 
4470
- declare const EVENT_QUESTION_VALUES_QUERY_KEY: (eventId: string, questionId: string) => unknown[];
4471
- interface GetEventQuestionSearchValuesProps extends InfiniteQueryParams {
4472
- eventId: string;
4473
- questionId: string;
4474
- }
4475
- declare const GetEventQuestionSearchValues: ({ eventId, questionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventQuestionSearchValuesProps) => Promise<ConnectedXMResponse<RegistrationQuestionSearchValue[]>>;
4476
- declare const useGetEventQuestionSearchValues: (eventId?: string, questionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventQuestionSearchValues>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<RegistrationQuestionSearchValue[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4477
-
4478
4495
  declare const EVENT_SESSIONS_QUERY_KEY: (eventId: string) => QueryKey;
4479
4496
  declare const SET_EVENT_SESSIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SESSIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessions>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
4480
4497
  interface GetEventSessionsProps extends SingleQueryParams {
@@ -4614,15 +4631,6 @@ interface GetEventMediaItemProps extends SingleQueryParams {
4614
4631
  declare const GetEventMediaItem: ({ eventId, mediaItemId, clientApiParams, }: GetEventMediaItemProps) => Promise<ConnectedXMResponse<EventMediaItem>>;
4615
4632
  declare const useGetEventMediaItem: (eventId: string | undefined, mediaItemId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventMediaItem>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventMediaItem>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4616
4633
 
4617
- declare const EVENT_SESSION_QUESTION_VALUES_QUERY_KEY: (eventId: string, sessionId: string, questionId: string) => unknown[];
4618
- interface GetEventSessionQuestionSearchValuesProps extends InfiniteQueryParams {
4619
- eventId: string;
4620
- sessionId: string;
4621
- questionId: string;
4622
- }
4623
- declare const GetEventSessionQuestionSearchValues: ({ eventId, sessionId, questionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventSessionQuestionSearchValuesProps) => Promise<ConnectedXMResponse<EventSessionQuestionSearchValue[]>>;
4624
- declare const useGetEventSessionQuestionSearchValues: (eventId?: string, sessionId?: string, questionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSessionQuestionSearchValues>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventSessionQuestionSearchValue[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4625
-
4626
4634
  declare const ORGANIZATION_QUERY_KEY: () => QueryKey;
4627
4635
  interface GetOrganizationParams extends SingleQueryParams {
4628
4636
  }
@@ -4653,6 +4661,29 @@ interface GetOrganizationSubscriptionProductsProps extends InfiniteQueryParams {
4653
4661
  declare const GetOrganizationSubscriptionProducts: ({ clientApiParams, }: GetOrganizationSubscriptionProductsProps) => Promise<ConnectedXMResponse<SubscriptionProduct[]>>;
4654
4662
  declare const useGetOrganizationSubscriptionProducts: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetOrganizationSubscriptionProducts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<SubscriptionProduct[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4655
4663
 
4664
+ declare const SEARCH_LIST_QUERY_KEY: (searchListId: string) => string[];
4665
+ interface GetSearchListProps extends SingleQueryParams {
4666
+ searchListId: string;
4667
+ }
4668
+ declare const GetSearchList: ({ searchListId, clientApiParams, }: GetSearchListProps) => Promise<ConnectedXMResponse<SearchList>>;
4669
+ declare const useGetSearchList: (searchListId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSearchList>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SearchList>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4670
+
4671
+ declare const SEARCH_LISTS_QUERY_KEY: () => string[];
4672
+ interface GetSearchListsProps extends InfiniteQueryParams {
4673
+ }
4674
+ declare const GetSearchLists: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSearchListsProps) => Promise<ConnectedXMResponse<SearchList[]>>;
4675
+ declare const useGetSearchLists: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSearchLists>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<SearchList[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4676
+
4677
+ declare const SEARCH_LIST_VALUES_QUERY_KEY: (searchListId: string) => string[];
4678
+ interface GetSearchListValuesProps extends InfiniteQueryParams {
4679
+ searchListId: string;
4680
+ top?: boolean;
4681
+ }
4682
+ declare const GetSearchListValues: ({ searchListId, pageParam, pageSize, orderBy, search, top, clientApiParams, }: GetSearchListValuesProps) => Promise<ConnectedXMResponse<SearchListValue[]>>;
4683
+ declare const useGetSearchListValues: (searchListId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams"> & {
4684
+ top?: boolean;
4685
+ }, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSearchListValues>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<SearchListValue[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4686
+
4656
4687
  declare const SELF_ADDRESS_QUERY_KEY: (addressId: string) => QueryKey;
4657
4688
  interface GetSelfAddressProps extends SingleQueryParams {
4658
4689
  addressId: string;
@@ -5434,8 +5465,8 @@ interface GetSurveySubmissionsProps extends InfiniteQueryParams {
5434
5465
  surveyId: string;
5435
5466
  status?: keyof typeof PurchaseStatus;
5436
5467
  }
5437
- declare const GetSurveySubmissions: ({ surveyId, status, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSurveySubmissionsProps) => Promise<ConnectedXMResponse<SurveyQuestionSearchValue[]>>;
5438
- declare const useGetSurveySubmissions: (surveyId?: string, status?: keyof typeof PurchaseStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSurveySubmissions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<SurveyQuestionSearchValue[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5468
+ declare const GetSurveySubmissions: ({ surveyId, status, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSurveySubmissionsProps) => Promise<ConnectedXMResponse<SurveySubmission[]>>;
5469
+ declare const useGetSurveySubmissions: (surveyId?: string, status?: keyof typeof PurchaseStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSurveySubmissions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<SurveySubmission[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5439
5470
 
5440
5471
  declare const SURVEY_SUBMISSION_SECTIONS_QUERY_KEY: (surveyId: string, submissionId: string) => QueryKey;
5441
5472
  declare const SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SURVEY_SUBMISSION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveySubmissionSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -5446,14 +5477,6 @@ interface GetSurveySubmissionSectionsProps extends SingleQueryParams {
5446
5477
  declare const GetSurveySubmissionSections: ({ surveyId, submissionId, clientApiParams, }: GetSurveySubmissionSectionsProps) => Promise<ConnectedXMResponse<SurveySection[]>>;
5447
5478
  declare const useGetSurveySubmissionSections: (surveyId: string, submissionId: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySubmissionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveySection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5448
5479
 
5449
- declare const SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY: (surveyId: string, questionId: string) => unknown[];
5450
- interface GetSurveyQuestionSearchValuesProps extends InfiniteQueryParams {
5451
- surveyId: string;
5452
- questionId: string;
5453
- }
5454
- declare const GetSurveyQuestionSearchValues: ({ surveyId, questionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSurveyQuestionSearchValuesProps) => Promise<ConnectedXMResponse<SurveyQuestionSearchValue[]>>;
5455
- declare const useGetSurveyQuestionSearchValues: (surveyId?: string, questionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSurveyQuestionSearchValues>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<SurveyQuestionSearchValue[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5456
-
5457
5480
  declare const LINK_PREVIEW_QUERY_KEY: (url: string) => QueryKey;
5458
5481
  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;
5459
5482
  interface GetLinkPreviewProps extends SingleQueryParams {
@@ -5491,4 +5514,4 @@ interface GetStreamProps extends SingleQueryParams {
5491
5514
  declare const GetStream: ({ streamId, output, clientApiParams, }: GetStreamProps) => Promise<ConnectedXMResponse<StreamInput>>;
5492
5515
  declare const useGetStream: (streamId?: string, output?: keyof typeof StreamOutput, options?: SingleQueryOptions<ReturnType<typeof GetStream>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StreamInput>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5493
5516
 
5494
- 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 AccountShare, type AccountTier, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityLike, 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 BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionQuestionSearchValue, type BaseEventSessionSection, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseLinkPreview, type BaseLogin, type BaseMatch, type BaseNotification, type BaseOrganization, type BasePass, type BasePassAddon, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntent, type BasePaymentLineItem, type BaseRegistrationFollowup, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseRound, type BaseScan, type BaseSchedule, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveyQuestionSearchValue, type BaseSurveySection, type BaseSurveySubmission, type 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, CancelSubscription, type CancelSubscriptionParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, 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 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, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateThreadMessage, type CreateThreadMessageParams, Currency, 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_SUBSCRIPTION_REQUIRED, 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_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SESSION_QUESTION_VALUES_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_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, type EventSessionQuestionSearchValue, EventSessionQuestionType, type EventSessionSection, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowStats, type GetAccountFollowStatsProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, 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, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessionQuestionSearchValues, type GetEventSessionQuestionSearchValuesProps, 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, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, type GetOrganizationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, 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, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetStream, type GetStreamProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSurvey, type GetSurveyProps, GetSurveyQuestionSearchValues, type GetSurveyQuestionSearchValuesProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, 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, 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, type Login, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PaymentIntentSource, type PaymentLineItem, PaymentLineItemType, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationFollowup, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveLogin, type RemoveLoginParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, type Round, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_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, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_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_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_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_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_QUERY_KEY, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SegmentInput, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, SessionAccess, type SessionLocation, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamInput, StreamOutput, SubmitSurvey, type SubmitSurveyParams, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, type SurveyQuestionSearchValue, SurveyQuestionType, type SurveySection, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, UnblockAccount, type UnblockAccountParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, 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, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassFollowup, type UpdateSelfEventAttendeePassFollowupParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventSessionRegistrationPassResponse, type UpdateSelfEventSessionRegistrationPassResponseParams, UpdateSelfEventSessionRegistrationPasses, type UpdateSelfEventSessionRegistrationPassesParams, UpdateSelfEventSessionRegistrationResponses, type UpdateSelfEventSessionRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, type User, 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, useCancelSubscription, 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, useCreateSubscription, 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, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessionQuestionSearchValues, 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, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, 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, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetStream, useGetSubscribedChannels, useGetSubscribedContents, useGetSurvey, useGetSurveyQuestionSearchValues, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveLogin, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSelfUpdateGroupMembership, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useTransferPass, useUnblockAccount, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassFollowup, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventSessionRegistrationPassResponse, useUpdateSelfEventSessionRegistrationPasses, useUpdateSelfEventSessionRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateSurveyResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage, useVerifyLoginAccount };
5517
+ 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 AccountShare, type AccountTier, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityLike, 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 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 BaseNotification, type BaseOrganization, type BasePass, type BasePassAddon, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntent, type BasePaymentLineItem, type BaseRegistrationFollowup, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationSection, type BaseRound, type BaseScan, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, 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, CancelSubscription, type CancelSubscriptionParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, 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 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, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateThreadMessage, type CreateThreadMessageParams, Currency, 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_SUBSCRIPTION_REQUIRED, 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, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, type GetOrganizationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSearchList, type GetSearchListProps, GetSearchListValues, type GetSearchListValuesProps, GetSearchLists, type GetSearchListsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, 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, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetStream, type GetStreamProps, 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, 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, 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, type Login, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, 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 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_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, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_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_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_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_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_QUERY_KEY, 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, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, SessionAccess, type SessionLocation, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamInput, StreamOutput, SubmitSurvey, type SubmitSurveyParams, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, 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, UnblockAccount, type UnblockAccountParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, 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, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassFollowup, type UpdateSelfEventAttendeePassFollowupParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, 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, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, 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, 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, useCancelSubscription, 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, useCreateSubscription, 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, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetOrganizationSubscriptionProducts, useGetSearchList, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, 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, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetStream, useGetSubscribedChannels, useGetSubscribedContents, useGetSurvey, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveLogin, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSelfUpdateGroupMembership, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useTransferPass, useUnblockAccount, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassFollowup, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventRegistrationSearchListResponse, useUpdateSelfEventSessionRegistrationPassResponse, useUpdateSelfEventSessionRegistrationPasses, useUpdateSelfEventSessionRegistrationResponses, useUpdateSelfEventSessionRegistrationSearchListResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateSurveyResponse, useUpdateSurveySearchListResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage, useVerifyLoginAccount };
package/dist/index.js CHANGED
@@ -2759,47 +2759,6 @@ var useGetEventPage = (eventId = "", pageId, options = {}) => {
2759
2759
  );
2760
2760
  };
2761
2761
 
2762
- // src/queries/events/useGetEventQuestionValues.ts
2763
- var EVENT_QUESTION_VALUES_QUERY_KEY = (eventId, questionId) => [...EVENT_QUERY_KEY(eventId), "QUESTIONS", questionId, "VALUES"];
2764
- var GetEventQuestionSearchValues = async ({
2765
- eventId,
2766
- questionId,
2767
- pageParam,
2768
- pageSize,
2769
- orderBy,
2770
- search,
2771
- clientApiParams
2772
- }) => {
2773
- const clientApi = await GetClientAPI(clientApiParams);
2774
- const { data } = await clientApi.get(
2775
- `/events/${eventId}/questions/${questionId}/values`,
2776
- {
2777
- params: {
2778
- page: pageParam || void 0,
2779
- pageSize: pageSize || void 0,
2780
- orderBy: orderBy || void 0,
2781
- search: search || void 0
2782
- }
2783
- }
2784
- );
2785
- return data;
2786
- };
2787
- var useGetEventQuestionSearchValues = (eventId = "", questionId = "", params = {}, options = {}) => {
2788
- return useConnectedInfiniteQuery(
2789
- EVENT_QUESTION_VALUES_QUERY_KEY(eventId, questionId),
2790
- (params2) => GetEventQuestionSearchValues({
2791
- eventId,
2792
- questionId,
2793
- ...params2
2794
- }),
2795
- params,
2796
- {
2797
- ...options,
2798
- enabled: !!eventId && !!questionId && (options?.enabled ?? true)
2799
- }
2800
- );
2801
- };
2802
-
2803
2762
  // src/queries/events/useGetEventRegistrants.ts
2804
2763
  var EVENT_REGISTRANTS_QUERY_KEY = (eventId) => [
2805
2764
  ...EVENT_QUERY_KEY(eventId),
@@ -3334,54 +3293,6 @@ var useGetEventMediaItem = (eventId = "", mediaItemId, options = {}) => {
3334
3293
  );
3335
3294
  };
3336
3295
 
3337
- // src/queries/events/useGetEventSessionQuestionSearchValues.ts
3338
- var EVENT_SESSION_QUESTION_VALUES_QUERY_KEY = (eventId, sessionId, questionId) => [
3339
- ...EVENT_SESSION_QUERY_KEY(eventId, sessionId),
3340
- "QUESTIONS",
3341
- questionId,
3342
- "VALUES"
3343
- ];
3344
- var GetEventSessionQuestionSearchValues = async ({
3345
- eventId,
3346
- sessionId,
3347
- questionId,
3348
- pageParam,
3349
- pageSize,
3350
- orderBy,
3351
- search,
3352
- clientApiParams
3353
- }) => {
3354
- const clientApi = await GetClientAPI(clientApiParams);
3355
- const { data } = await clientApi.get(
3356
- `/events/${eventId}/sessions/${sessionId}/questions/${questionId}/values`,
3357
- {
3358
- params: {
3359
- page: pageParam || void 0,
3360
- pageSize: pageSize || void 0,
3361
- orderBy: orderBy || void 0,
3362
- search: search || void 0
3363
- }
3364
- }
3365
- );
3366
- return data;
3367
- };
3368
- var useGetEventSessionQuestionSearchValues = (eventId = "", sessionId = "", questionId = "", params = {}, options = {}) => {
3369
- return useConnectedInfiniteQuery(
3370
- EVENT_SESSION_QUESTION_VALUES_QUERY_KEY(eventId, sessionId, questionId),
3371
- (params2) => GetEventSessionQuestionSearchValues({
3372
- eventId,
3373
- sessionId,
3374
- questionId,
3375
- ...params2
3376
- }),
3377
- params,
3378
- {
3379
- ...options,
3380
- enabled: !!eventId && !!sessionId && !!questionId && (options?.enabled ?? true)
3381
- }
3382
- );
3383
- };
3384
-
3385
3296
  // src/queries/organization/useGetOrganization.ts
3386
3297
  var ORGANIZATION_QUERY_KEY = () => ["ORGANIZATION"];
3387
3298
  var GetOrganization = async ({
@@ -3459,6 +3370,104 @@ var useGetOrganizationSubscriptionProducts = (params = {}, options = {}) => {
3459
3370
  );
3460
3371
  };
3461
3372
 
3373
+ // src/queries/searchlists/useGetSearchList.ts
3374
+ var SEARCH_LIST_QUERY_KEY = (searchListId) => [
3375
+ "SEARCH_LISTS",
3376
+ searchListId
3377
+ ];
3378
+ var GetSearchList = async ({
3379
+ searchListId,
3380
+ clientApiParams
3381
+ }) => {
3382
+ const clientApi = await GetClientAPI(clientApiParams);
3383
+ const { data } = await clientApi.get(`/searchlists/${searchListId}`);
3384
+ return data;
3385
+ };
3386
+ var useGetSearchList = (searchListId = "", options = {}) => {
3387
+ return useConnectedSingleQuery(
3388
+ SEARCH_LIST_QUERY_KEY(searchListId),
3389
+ (params) => GetSearchList({
3390
+ searchListId,
3391
+ ...params
3392
+ }),
3393
+ {
3394
+ ...options,
3395
+ enabled: !!searchListId && (options?.enabled ?? true)
3396
+ }
3397
+ );
3398
+ };
3399
+
3400
+ // src/queries/searchlists/useGetSearchLists.ts
3401
+ var SEARCH_LISTS_QUERY_KEY = () => ["SEARCH_LISTS"];
3402
+ var GetSearchLists = async ({
3403
+ pageParam,
3404
+ pageSize,
3405
+ orderBy,
3406
+ search,
3407
+ clientApiParams
3408
+ }) => {
3409
+ const clientApi = await GetClientAPI(clientApiParams);
3410
+ const { data } = await clientApi.get("/searchlists", {
3411
+ params: {
3412
+ page: pageParam || void 0,
3413
+ pageSize: pageSize || void 0,
3414
+ orderBy: orderBy || void 0,
3415
+ search: search || void 0
3416
+ }
3417
+ });
3418
+ return data;
3419
+ };
3420
+ var useGetSearchLists = (params = {}, options = {}) => {
3421
+ return useConnectedInfiniteQuery(
3422
+ SEARCH_LISTS_QUERY_KEY(),
3423
+ (params2) => GetSearchLists(params2),
3424
+ params,
3425
+ options
3426
+ );
3427
+ };
3428
+
3429
+ // src/queries/searchlists/useGetSearchListValues.ts
3430
+ var SEARCH_LIST_VALUES_QUERY_KEY = (searchListId) => [
3431
+ ...SEARCH_LIST_QUERY_KEY(searchListId),
3432
+ "VALUES"
3433
+ ];
3434
+ var GetSearchListValues = async ({
3435
+ searchListId,
3436
+ pageParam,
3437
+ pageSize,
3438
+ orderBy,
3439
+ search,
3440
+ top,
3441
+ clientApiParams
3442
+ }) => {
3443
+ const clientApi = await GetClientAPI(clientApiParams);
3444
+ const { data } = await clientApi.get(`/searchlists/${searchListId}/values`, {
3445
+ params: {
3446
+ page: pageParam || void 0,
3447
+ pageSize: pageSize || void 0,
3448
+ orderBy: orderBy || void 0,
3449
+ search: search || void 0,
3450
+ top: top || void 0
3451
+ }
3452
+ });
3453
+ return data;
3454
+ };
3455
+ var useGetSearchListValues = (searchListId = "", params = {}, options = {}) => {
3456
+ return useConnectedInfiniteQuery(
3457
+ SEARCH_LIST_VALUES_QUERY_KEY(searchListId),
3458
+ (queryParams) => GetSearchListValues({
3459
+ searchListId,
3460
+ ...params,
3461
+ ...queryParams
3462
+ }),
3463
+ params,
3464
+ {
3465
+ ...options,
3466
+ enabled: !!searchListId && (options?.enabled ?? true)
3467
+ }
3468
+ );
3469
+ };
3470
+
3462
3471
  // src/queries/self/useGetSelf.ts
3463
3472
  var SELF_QUERY_KEY = (ignoreExecuteAs) => {
3464
3473
  const keys = ["SELF"];
@@ -7165,47 +7174,6 @@ var useGetSurveySubmissionSections = (surveyId, submissionId, options = {}) => {
7165
7174
  );
7166
7175
  };
7167
7176
 
7168
- // src/queries/surveys/useGetSurveyQuestionSearchValues.ts
7169
- var SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY = (surveyId, questionId) => [...SURVEY_QUERY_KEY(surveyId), "QUESTIONS", questionId, "VALUES"];
7170
- var GetSurveyQuestionSearchValues = async ({
7171
- surveyId,
7172
- questionId,
7173
- pageParam,
7174
- pageSize,
7175
- orderBy,
7176
- search,
7177
- clientApiParams
7178
- }) => {
7179
- const clientApi = await GetClientAPI(clientApiParams);
7180
- const { data } = await clientApi.get(
7181
- `/surveys/${surveyId}/questions/${questionId}/values`,
7182
- {
7183
- params: {
7184
- page: pageParam || void 0,
7185
- pageSize: pageSize || void 0,
7186
- orderBy: orderBy || void 0,
7187
- search: search || void 0
7188
- }
7189
- }
7190
- );
7191
- return data;
7192
- };
7193
- var useGetSurveyQuestionSearchValues = (surveyId = "", questionId = "", params = {}, options = {}) => {
7194
- return useConnectedInfiniteQuery(
7195
- SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY(surveyId, questionId),
7196
- (params2) => GetSurveyQuestionSearchValues({
7197
- surveyId,
7198
- questionId,
7199
- ...params2
7200
- }),
7201
- params,
7202
- {
7203
- ...options,
7204
- enabled: !!surveyId && !!questionId && (options?.enabled ?? true)
7205
- }
7206
- );
7207
- };
7208
-
7209
7177
  // src/queries/link-previews/useGetLinkPreview.ts
7210
7178
  var LINK_PREVIEW_QUERY_KEY = (url) => [
7211
7179
  "LINK_PREVIEW",
@@ -7781,11 +7749,6 @@ var LeadStatus = /* @__PURE__ */ ((LeadStatus2) => {
7781
7749
  var isTypeLead = (lead) => {
7782
7750
  return lead.email !== void 0;
7783
7751
  };
7784
- var PushDeviceAppType = /* @__PURE__ */ ((PushDeviceAppType2) => {
7785
- PushDeviceAppType2["EVENTXM"] = "EVENTXM";
7786
- PushDeviceAppType2["COMMUNITYXM"] = "COMMUNITYXM";
7787
- return PushDeviceAppType2;
7788
- })(PushDeviceAppType || {});
7789
7752
  var PushService = /* @__PURE__ */ ((PushService2) => {
7790
7753
  PushService2["apn"] = "apn";
7791
7754
  PushService2["firebase"] = "firebase";
@@ -9683,6 +9646,32 @@ var useUpdateSelfEventRegistrationResponses = (options = {}) => {
9683
9646
  return useConnectedMutation_default(UpdateSelfEventRegistrationResponses, options);
9684
9647
  };
9685
9648
 
9649
+ // src/mutations/self/events/registration/useUpdateSelfEventRegistrationSearchListResponse.ts
9650
+ var UpdateSelfEventRegistrationSearchListResponse = async ({
9651
+ eventId,
9652
+ passId,
9653
+ questionId,
9654
+ searchListValueId,
9655
+ clientApiParams,
9656
+ queryClient
9657
+ }) => {
9658
+ const clientApi = await GetClientAPI(clientApiParams);
9659
+ const { data } = await clientApi.put(
9660
+ `/self/events/${eventId}/registration/passes/${passId}/questions/${questionId}`,
9661
+ { response: searchListValueId }
9662
+ );
9663
+ if (queryClient && data.status === "ok") {
9664
+ queryClient.removeQueries({
9665
+ queryKey: SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY(eventId),
9666
+ exact: false
9667
+ });
9668
+ }
9669
+ return data;
9670
+ };
9671
+ var useUpdateSelfEventRegistrationSearchListResponse = (options = {}) => {
9672
+ return useConnectedMutation_default(UpdateSelfEventRegistrationSearchListResponse, options);
9673
+ };
9674
+
9686
9675
  // src/mutations/self/events/registration/sessions/useUpdateSelfEventSessionRegistrationPassResponse.ts
9687
9676
  var UpdateSelfEventSessionRegistrationPassResponse = async ({
9688
9677
  eventId,
@@ -9769,6 +9758,36 @@ var useUpdateSelfEventSessionRegistrationResponses = (options = {}) => {
9769
9758
  return useConnectedMutation_default(UpdateSelfEventSessionRegistrationResponses, options);
9770
9759
  };
9771
9760
 
9761
+ // src/mutations/self/events/registration/sessions/useUpdateSelfEventSessionRegistrationSearchListResponse.ts
9762
+ var UpdateSelfEventSessionRegistrationSearchListResponse = async ({
9763
+ eventId,
9764
+ sessionId,
9765
+ passId,
9766
+ questionId,
9767
+ searchListValueId,
9768
+ clientApiParams,
9769
+ queryClient
9770
+ }) => {
9771
+ const clientApi = await GetClientAPI(clientApiParams);
9772
+ const { data } = await clientApi.put(
9773
+ `/self/events/${eventId}/sessions/${sessionId}/registration/passes/${passId}/questions/${questionId}`,
9774
+ { response: searchListValueId }
9775
+ );
9776
+ if (queryClient && data.status === "ok") {
9777
+ queryClient.removeQueries({
9778
+ queryKey: SELF_EVENT_SESSION_REGISTRATION_INTENT_QUERY_KEY(
9779
+ eventId,
9780
+ sessionId
9781
+ ),
9782
+ exact: false
9783
+ });
9784
+ }
9785
+ return data;
9786
+ };
9787
+ var useUpdateSelfEventSessionRegistrationSearchListResponse = (options = {}) => {
9788
+ return useConnectedMutation_default(UpdateSelfEventSessionRegistrationSearchListResponse, options);
9789
+ };
9790
+
9772
9791
  // src/mutations/self/events/attendee/useUpdateSelfEventAttendeePassResponses.ts
9773
9792
  var UpdateSelfEventAttendeePassResponses = async ({
9774
9793
  eventId,
@@ -11879,6 +11898,25 @@ var useUpdateSurveyResponse = (options = {}) => {
11879
11898
  return useConnectedMutation_default(UpdateSurveyResponse, options);
11880
11899
  };
11881
11900
 
11901
+ // src/mutations/surveys/useUpdateSurveySearchListResponse.ts
11902
+ var UpdateSurveySearchListResponse = async ({
11903
+ surveyId,
11904
+ submissionId,
11905
+ questionId,
11906
+ searchListValueId,
11907
+ clientApiParams
11908
+ }) => {
11909
+ const clientApi = await GetClientAPI(clientApiParams);
11910
+ const { data } = await clientApi.put(
11911
+ `/surveys/${surveyId}/submissions/${submissionId}/questions/${questionId}`,
11912
+ { response: searchListValueId }
11913
+ );
11914
+ return data;
11915
+ };
11916
+ var useUpdateSurveySearchListResponse = (options = {}) => {
11917
+ return useConnectedMutation_default(UpdateSurveySearchListResponse, options);
11918
+ };
11919
+
11882
11920
  // src/mutations/insterests/useCreateInterest.ts
11883
11921
  var CreateInterest = async ({
11884
11922
  interest,
@@ -12039,11 +12077,9 @@ export {
12039
12077
  EVENT_PAGES_QUERY_KEY,
12040
12078
  EVENT_PAGE_QUERY_KEY,
12041
12079
  EVENT_QUERY_KEY,
12042
- EVENT_QUESTION_VALUES_QUERY_KEY,
12043
12080
  EVENT_REGISTRANTS_QUERY_KEY,
12044
12081
  EVENT_SESSIONS_QUERY_KEY,
12045
12082
  EVENT_SESSION_QUERY_KEY,
12046
- EVENT_SESSION_QUESTION_VALUES_QUERY_KEY,
12047
12083
  EVENT_SPEAKERS_QUERY_KEY,
12048
12084
  EVENT_SPEAKER_QUERY_KEY,
12049
12085
  EVENT_SPEAKER_SESSIONS_QUERY_KEY,
@@ -12127,10 +12163,8 @@ export {
12127
12163
  GetEventMediaItems,
12128
12164
  GetEventPage,
12129
12165
  GetEventPages,
12130
- GetEventQuestionSearchValues,
12131
12166
  GetEventRegistrants,
12132
12167
  GetEventSession,
12133
- GetEventSessionQuestionSearchValues,
12134
12168
  GetEventSessions,
12135
12169
  GetEventSpeaker,
12136
12170
  GetEventSpeakerSessions,
@@ -12174,6 +12208,9 @@ export {
12174
12208
  GetOrganizationConfig,
12175
12209
  GetOrganizationExplore,
12176
12210
  GetOrganizationSubscriptionProducts,
12211
+ GetSearchList,
12212
+ GetSearchListValues,
12213
+ GetSearchLists,
12177
12214
  GetSelf,
12178
12215
  GetSelfActivities,
12179
12216
  GetSelfAddress,
@@ -12248,7 +12285,6 @@ export {
12248
12285
  GetSubscribedChannels,
12249
12286
  GetSubscribedContents,
12250
12287
  GetSurvey,
12251
- GetSurveyQuestionSearchValues,
12252
12288
  GetSurveySubmission,
12253
12289
  GetSurveySubmissionSections,
12254
12290
  GetSurveySubmissions,
@@ -12313,7 +12349,6 @@ export {
12313
12349
  PrimaryModule,
12314
12350
  PromoteGroupMember,
12315
12351
  PurchaseStatus,
12316
- PushDeviceAppType,
12317
12352
  PushService,
12318
12353
  REMOVE_SELF_RELATIONSHIP,
12319
12354
  RegistrationQuestionType,
@@ -12332,6 +12367,9 @@ export {
12332
12367
  RemoveSelfEventSession,
12333
12368
  RemoveThreadMessageReaction,
12334
12369
  ReportActivity,
12370
+ SEARCH_LISTS_QUERY_KEY,
12371
+ SEARCH_LIST_QUERY_KEY,
12372
+ SEARCH_LIST_VALUES_QUERY_KEY,
12335
12373
  SELF_ACTIVITIES_QUERY_KEY,
12336
12374
  SELF_ADDRESSES_QUERY_KEY,
12337
12375
  SELF_ADDRESS_QUERY_KEY,
@@ -12518,7 +12556,6 @@ export {
12518
12556
  SUBSCRIBED_CHANNELS_QUERY_KEY,
12519
12557
  SUBSCRIBED_CONTENTS_QUERY_KEY,
12520
12558
  SURVEY_QUERY_KEY,
12521
- SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY,
12522
12559
  SURVEY_SUBMISSIONS_QUERY_KEY,
12523
12560
  SURVEY_SUBMISSION_QUERY_KEY,
12524
12561
  SURVEY_SUBMISSION_SECTIONS_QUERY_KEY,
@@ -12575,15 +12612,18 @@ export {
12575
12612
  UpdateSelfEventRegistrationPurchaseAddOn,
12576
12613
  UpdateSelfEventRegistrationReservations,
12577
12614
  UpdateSelfEventRegistrationResponses,
12615
+ UpdateSelfEventRegistrationSearchListResponse,
12578
12616
  UpdateSelfEventSessionRegistrationPassResponse,
12579
12617
  UpdateSelfEventSessionRegistrationPasses,
12580
12618
  UpdateSelfEventSessionRegistrationResponses,
12619
+ UpdateSelfEventSessionRegistrationSearchListResponse,
12581
12620
  UpdateSelfImage,
12582
12621
  UpdateSelfLead,
12583
12622
  UpdateSelfNotificationPreferences,
12584
12623
  UpdateSelfPushDevice,
12585
12624
  UpdateSubscriptionPaymentMethod,
12586
12625
  UpdateSurveyResponse,
12626
+ UpdateSurveySearchListResponse,
12587
12627
  UpdateThread,
12588
12628
  UpdateThreadCircle,
12589
12629
  UpdateThreadCircleAccount,
@@ -12759,10 +12799,8 @@ export {
12759
12799
  useGetEventMediaItems,
12760
12800
  useGetEventPage,
12761
12801
  useGetEventPages,
12762
- useGetEventQuestionSearchValues,
12763
12802
  useGetEventRegistrants,
12764
12803
  useGetEventSession,
12765
- useGetEventSessionQuestionSearchValues,
12766
12804
  useGetEventSessions,
12767
12805
  useGetEventSpeaker,
12768
12806
  useGetEventSpeakerSessions,
@@ -12806,6 +12844,9 @@ export {
12806
12844
  useGetOrganizationConfig,
12807
12845
  useGetOrganizationExplore,
12808
12846
  useGetOrganizationSubscriptionProducts,
12847
+ useGetSearchList,
12848
+ useGetSearchListValues,
12849
+ useGetSearchLists,
12809
12850
  useGetSelf,
12810
12851
  useGetSelfActivities,
12811
12852
  useGetSelfAddress,
@@ -12880,7 +12921,6 @@ export {
12880
12921
  useGetSubscribedChannels,
12881
12922
  useGetSubscribedContents,
12882
12923
  useGetSurvey,
12883
- useGetSurveyQuestionSearchValues,
12884
12924
  useGetSurveySubmission,
12885
12925
  useGetSurveySubmissionSections,
12886
12926
  useGetSurveySubmissions,
@@ -12952,15 +12992,18 @@ export {
12952
12992
  useUpdateSelfEventRegistrationPurchaseAddOn,
12953
12993
  useUpdateSelfEventRegistrationReservations,
12954
12994
  useUpdateSelfEventRegistrationResponses,
12995
+ useUpdateSelfEventRegistrationSearchListResponse,
12955
12996
  useUpdateSelfEventSessionRegistrationPassResponse,
12956
12997
  useUpdateSelfEventSessionRegistrationPasses,
12957
12998
  useUpdateSelfEventSessionRegistrationResponses,
12999
+ useUpdateSelfEventSessionRegistrationSearchListResponse,
12958
13000
  useUpdateSelfImage,
12959
13001
  useUpdateSelfLead,
12960
13002
  useUpdateSelfNotificationPreferences,
12961
13003
  useUpdateSelfPushDevice,
12962
13004
  useUpdateSubscriptionPaymentMethod,
12963
13005
  useUpdateSurveyResponse,
13006
+ useUpdateSurveySearchListResponse,
12964
13007
  useUpdateThread,
12965
13008
  useUpdateThreadCircle,
12966
13009
  useUpdateThreadCircleAccount,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "6.1.4",
3
+ "version": "6.2.0",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",